summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-04-04 03:41:18 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-04-04 03:41:18 +0000
commit9e555a53b531cf1dd49762d2815cb6bbfca55bfa (patch)
treeb0fcb3f010943def92b1d663e2263cc6686211e5 /community
parent86953d17fbdfc3b8b89878f1ec5f911568657761 (diff)
Fri Apr 4 03:35:25 UTC 2014
Diffstat (limited to 'community')
-rw-r--r--community/julia/PKGBUILD13
-rw-r--r--community/luaexpat/PKGBUILD25
-rw-r--r--community/marisa/PKGBUILD10
-rw-r--r--community/medit/PKGBUILD8
-rw-r--r--community/prosody/PKGBUILD12
-rw-r--r--community/rust/PKGBUILD16
-rw-r--r--community/vagrant/PKGBUILD6
7 files changed, 45 insertions, 45 deletions
diff --git a/community/julia/PKGBUILD b/community/julia/PKGBUILD
index 6781c7591..d98e4e93f 100644
--- a/community/julia/PKGBUILD
+++ b/community/julia/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 108745 2014-04-02 16:15:39Z arodseth $
+# $Id: PKGBUILD 108789 2014-04-03 21:29:31Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Lex Black <autumn-wind at web dot de>
# Contributor: Michael Jakl <jakl.michael@gmail.com>
@@ -6,7 +6,7 @@
pkgname=julia
pkgver=0.3.0_prerelease
-pkgrel=1
+pkgrel=2
pkgdesc='High-level, high-performance, dynamic programming language'
arch=('x86_64' 'i686')
url='http://julialang.org'
@@ -14,10 +14,8 @@ license=('GPL')
depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'readline' 'zlib' 'llvm') # 'suitesparse' 'utf8proc' (AUR) 'intel-mkl' (AUR)
makedepends=('gcc-fortran')
optdepends=('gnuplot: If using the Gaston Package from julia')
-provides=('julia')
-conflicts=('julia')
options=('!emptydirs' 'staticlibs')
-source=("git://github.com/JuliaLang/julia.git#commit=0684a320da")
+source=("git://github.com/JuliaLang/julia.git#commit=cb1d140f62")
sha256sums=('SKIP')
build() {
@@ -74,7 +72,10 @@ package() {
install
# Remove duplicate man-page from julia/doc
- rm -rv $pkgdir/usr/share/julia/doc/man
+ rm -rv "$pkgdir/usr/share/julia/doc/man"
+
+ # Remove this file in order for Julia to start
+ rm -v "$pkgdir/usr/lib/julia/sys.so"
}
# vim:set ts=2 sw=2 et:
diff --git a/community/luaexpat/PKGBUILD b/community/luaexpat/PKGBUILD
index 9ae182732..1bf2abbff 100644
--- a/community/luaexpat/PKGBUILD
+++ b/community/luaexpat/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 81392 2012-12-19 13:28:13Z seblu $
+# $Id: PKGBUILD 108781 2014-04-03 16:52:35Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Lucas Hermann Negri <kkndrox@gmail.com>
pkgbase=luaexpat
pkgname=(lua-expat lua51-expat)
-pkgver=1.2.0
-pkgrel=4
+pkgver=1.3.0
+pkgrel=1
pkgdesc='SAX XML parser based on the Expat library'
arch=('i686' 'x86_64')
url='http://matthewwild.co.uk/projects/luaexpat/'
@@ -13,12 +13,10 @@ license=('MIT')
makedepends=('gcc' 'lua' 'lua51' 'expat')
source=("http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz"
'config.51'
- 'config.52'
- 'lua52.patch')
-md5sums=('03efe50c7f30a34580701e6527d7bfee'
+ 'config.52')
+md5sums=('3c20b5795e7107f847f8da844fbfe2da'
'64abbf5b602e0e31b68db2925a5e6b2f'
- '60ae0633ac6f829cc3359f3533252eb0'
- '21da93cbf0d3cef80d00e2380b7c2679')
+ '60ae0633ac6f829cc3359f3533252eb0')
build() {
# 5.1
@@ -26,21 +24,19 @@ build() {
cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51
cd $pkgbase-$pkgver-51
cp -L "$srcdir/config.51" config
- make LUA_INC=/usr/include/lua5.1
+ make LUA_V=5.1
# 5.2
msg2 "Building $pkgbase with lua 5.2"
cd "$srcdir/$pkgbase-$pkgver"
- patch -p1 < "$srcdir/lua52.patch"
cp -L "$srcdir/config.52" config
- make
+ make LUA_V=5.2
}
package_lua-expat() {
depends=('lua' 'expat')
cd $pkgbase-$pkgver
- make DESTDIR="$pkgdir" install
- mv usr "$pkgdir"
+ make LUA_V=5.2 DESTDIR="$pkgdir" install
install -Dm0644 doc/us/license.html "$pkgdir/usr/share/licenses/$pkgname/license.html"
}
@@ -50,7 +46,6 @@ package_lua51-expat() {
conflicts=('luaexpat')
cd $pkgbase-$pkgver-51
- make DESTDIR="$pkgdir" install
- mv usr "$pkgdir"
+ make LUA_V=5.1 DESTDIR="$pkgdir" install
install -Dm0644 doc/us/license.html "$pkgdir/usr/share/licenses/$pkgname/license.html"
}
diff --git a/community/marisa/PKGBUILD b/community/marisa/PKGBUILD
index 85b813490..a90208c51 100644
--- a/community/marisa/PKGBUILD
+++ b/community/marisa/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 104883 2014-01-28 03:34:13Z td123 $
+# $Id: PKGBUILD 108769 2014-04-03 09:22:59Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: ponsfoot <cabezon dot hashimoto at gmail dot com>
pkgbase=marisa
pkgname=('marisa' 'perl-marisa' 'python2-marisa' 'ruby-marisa')
pkgver=0.2.4
-pkgrel=3
+pkgrel=4
arch=('i686' 'x86_64')
url="https://code.google.com/p/marisa-trie/"
license=('BSD' 'LGPL')
@@ -83,7 +83,7 @@ package_python2-marisa() {
depends=('python2' 'marisa')
cd "${pkgbase}-${pkgver}/bindings/python"
- python2 setup.py install --root="$pkgdir"
+ python2 setup.py install -O1 --root="$pkgdir"
cd ../..
install -d "${pkgdir}/usr/share/licenses/$pkgname"
@@ -95,8 +95,8 @@ package_ruby-marisa() {
depends=('ruby' 'marisa')
cd "${pkgbase}-${pkgver}/bindings/ruby"
- _hdrdir=`pkg-config --variable=rubyhdrdir ruby-2.1`
- _arch=`pkg-config --variable=arch ruby-2.1`
+ _hdrdir=$(pkg-config --variable=rubyhdrdir ruby-2.1)
+ _arch=$(pkg-config --variable=arch ruby-2.1)
make DESTDIR="$pkgdir" install \
hdrdir="$_hdrdir" \
arch_hdrdir="${_hdrdir}/${_arch}" \
diff --git a/community/medit/PKGBUILD b/community/medit/PKGBUILD
index 640c95682..ed987bce9 100644
--- a/community/medit/PKGBUILD
+++ b/community/medit/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 104071 2014-01-15 09:49:11Z spupykin $
+# $Id: PKGBUILD 108779 2014-04-03 16:28:13Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=medit
-pkgver=1.1.1
-pkgrel=2
+pkgver=1.2.0
+pkgrel=1
pkgdesc="A GTK text editor"
arch=('i686' 'x86_64')
url="http://mooedit.sourceforge.net"
@@ -15,7 +15,7 @@ optdepends=('ctags' 'vte: terminal emulator')
makedepends=(pkgconfig perlxml intltool gcc-objc)
install=medit.install
source=(http://downloads.sourceforge.net/mooedit/medit-$pkgver.tar.bz2)
-md5sums=('9ea0d396a3bf3ee6ce220365bffb7358')
+md5sums=('8388a8e275d0e1fa6cd19f7bb081279a')
build() {
cd $srcdir/medit-$pkgver
diff --git a/community/prosody/PKGBUILD b/community/prosody/PKGBUILD
index c1f4a60ff..f9e77e89c 100644
--- a/community/prosody/PKGBUILD
+++ b/community/prosody/PKGBUILD
@@ -1,12 +1,12 @@
-# $Id: PKGBUILD 105722 2014-02-14 11:30:55Z spupykin $
+# $Id: PKGBUILD 108773 2014-04-03 10:22:59Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Dwayne Bent <dbb@dbb.io>
# Contributor: Paul-Sebastian Manole <brokenthorn@gmail.com>
# Contributor: Timothée Ravier <tim@siosm.fr>
pkgname=prosody
-pkgver=0.9.3
-pkgrel=2
+pkgver=0.9.4
+pkgrel=1
pkgdesc="Lightweight and extensible Jabber/XMPP server written in Lua"
arch=('i686' 'x86_64')
url="http://prosody.im/"
@@ -28,6 +28,12 @@ sha256sums=('22d2427fae4858d15b4f695348fb7781e4c65c04a24171837985024e76799ea0'
'db37b1b6bcd648f264164c5db5e754fc077671c74df6079c101384e146f4d6da'
'3f5cc5db2cfe74c4edf91f60e692e04c3504025e893d0880114d52728a2c4bc4'
'16fbfb54bf21bb73ce9d9acacb60d47f237c35e842c5a00f1153f72f0d2f7f6b')
+sha256sums=('be87cf31901a25477869b4ebd52e298f63a5effacae526911a0be876cc82e1c6'
+ 'SKIP'
+ '5a2466b73bd069fb73be97a4e23b24e4c8dd1adb7db871cb8f5ab4094c1f967f'
+ 'db37b1b6bcd648f264164c5db5e754fc077671c74df6079c101384e146f4d6da'
+ '3f5cc5db2cfe74c4edf91f60e692e04c3504025e893d0880114d52728a2c4bc4'
+ '16fbfb54bf21bb73ce9d9acacb60d47f237c35e842c5a00f1153f72f0d2f7f6b')
prepare() {
cd ${pkgname}-${pkgver}
diff --git a/community/rust/PKGBUILD b/community/rust/PKGBUILD
index fb1832001..2d9a7e105 100644
--- a/community/rust/PKGBUILD
+++ b/community/rust/PKGBUILD
@@ -1,17 +1,17 @@
-# $Id: PKGBUILD 103695 2014-01-10 03:08:10Z thestinger $
+# $Id: PKGBUILD 108786 2014-04-03 20:27:41Z thestinger $
# Maintainer: Daniel Micay <danielmicay@gmail.com>
pkgname=rust
-pkgver=0.9
-pkgrel=2
+pkgver=0.10
+pkgrel=1
arch=('i686' 'x86_64')
pkgdesc='A safe, concurrent, practical language'
url='http://www.rust-lang.org/'
license=('MIT' 'Apache')
depends=(gcc shared-mime-info)
-makedepends=(libffi perl python2 curl chrpath)
+makedepends=(libffi perl python2 curl)
source=("http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz"
"http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc")
-sha256sums=('c0911c3545b797a1ca16f3d76bf5ed234754b828efd1e22c182c7300ac7dd5d1'
+sha256sums=('c72cfbbf03016804a81d7b68e8258ffaf018f8f5a25550ad64571ce6c2642cf9'
'SKIP')
install=rust.install
options=(staticlibs)
@@ -19,7 +19,7 @@ options=(staticlibs)
build() {
cd rust-$pkgver
- ./configure --prefix=/usr --disable-docs
+ ./configure --prefix=/usr --disable-docs --disable-rpath --disable-verify-install
# avoid python makedepend (force fallback to python2)
sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
@@ -57,9 +57,7 @@ package() {
cd "$pkgdir/usr"
- # https://github.com/mozilla/rust/issues/5219
- chrpath -d bin/* lib/*.so lib/rustlib/*/lib/*.so
-
cd lib
+ rm rustlib/manifest
ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/* .
}
diff --git a/community/vagrant/PKGBUILD b/community/vagrant/PKGBUILD
index 233fbedf9..5a43bcb3d 100644
--- a/community/vagrant/PKGBUILD
+++ b/community/vagrant/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 108009 2014-03-20 20:53:49Z jsteel $
+# $Id: PKGBUILD 108784 2014-04-03 17:58:29Z jsteel $
# Maintainer: Jonathan Steel <jsteel at aur.archlinux.org>
# Contributor: Ido Rosen <ido@kernel.org>
# Contributor: Brett Hoerner <brett@bretthoerner.com>
@@ -10,8 +10,8 @@
# Contributor: Steven Nance <steven@devtrw.com>
pkgname=vagrant
-pkgver=1.5.1
-pkgrel=5
+pkgver=1.5.2
+pkgrel=1
pkgdesc="Build and distribute virtualized development environments"
arch=('i686' 'x86_64')
url="http://vagrantup.com"