summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--community/nimrod/PKGBUILD37
-rw-r--r--community/picard/PKGBUILD6
-rw-r--r--community/pluma/PKGBUILD8
-rw-r--r--community/python-numexpr/PKGBUILD8
-rw-r--r--community/python2-gevent/PKGBUILD2
-rw-r--r--community/stone-soup/PKGBUILD4
-rw-r--r--core/procps-ng/PKGBUILD7
-rw-r--r--extra/libevdev/PKGBUILD12
-rw-r--r--extra/php/PKGBUILD14
-rw-r--r--extra/php/logrotate.d.php-fpm2
-rw-r--r--extra/php/php-fpm.conf.in.patch8
-rw-r--r--extra/php/php.ini.patch12
12 files changed, 60 insertions, 60 deletions
diff --git a/community/nimrod/PKGBUILD b/community/nimrod/PKGBUILD
index 34459b89d..5fcba4933 100644
--- a/community/nimrod/PKGBUILD
+++ b/community/nimrod/PKGBUILD
@@ -1,44 +1,39 @@
-# $Id: PKGBUILD 108697 2014-04-01 13:44:04Z arodseth $
+# $Id: PKGBUILD 110486 2014-04-30 23:43:57Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Dominik Picheta <morfeusz8@gmail.com>
# Contributor: Sven-Hendrik Haase <sh@lutzhaase.com>
pkgname=nimrod
-pkgver=0.9.2
-pkgrel=4
+pkgver=0.9.4
+pkgrel=1
pkgdesc='Imperative, multi-paradigm, compiled programming language'
arch=('x86_64' 'i686')
url='http://nimrod-code.org/'
license=('MIT')
-makedepends=('setconf')
-source=("http://nimrod-code.org/download/${pkgname}_$pkgver.zip")
+makedepends=('git')
options=('!emptydirs')
-sha256sums=('4903ff46b90caa61194551f66fdff291b1ecba8bb4eec1611373cd34ecaf7090')
+source=("$pkgname::git://github.com/Araq/${pkgname/n/N}.git")
+md5sums=('SKIP')
prepare() {
cd "$pkgname"
-
- setconf install.sh bindir "$pkgdir/usr/bin"
- setconf install.sh configdir "$pkgdir/etc"
- setconf install.sh libdir "$pkgdir/usr/lib/$pkgname"
- setconf install.sh docdir "$pkgdir/usr/share/doc/$pkgname"
- setconf install.sh datadir "$pkgdir/usr/share/$pkgname"
+ git clone git://github.com/nimrod-code/csources --depth=1
}
build() {
- cd "$pkgname"
-
+ cd "$pkgname/csources"
sh build.sh
- ./bin/nimrod c -d:release koch
- PATH="$PATH":./bin/nimrod ./koch boot -d:release -d:useGnuReadline
+ cd ..
+ ./bin/nimrod c koch
+ PATH="$PATH":./bin/nimrod ./koch boot -d:release
}
package() {
- cd "$pkgname"
-
- install -d "$pkgdir/"{etc,usr/{bin,"lib/$pkgname",share/{"doc/$pkgname","$pkgname"}}}
- sh install.sh /usr/bin
- install -Dm644 copying.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+ install -Dm755 "$pkgname/bin/$pkgname" "$pkgdir/usr/bin/$pkgname"
+ install -Dm644 "$pkgname/copying.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+ install -d "$pkgdir/usr/lib/$pkgname"
+ cp -r "$pkgname/" "$pkgdir/usr/lib/"
+ rm -r "$pkgdir/usr/lib/$pkgname/"{bin,csources,.git}
}
# vim:set ts=2 sw=2 et:
diff --git a/community/picard/PKGBUILD b/community/picard/PKGBUILD
index b7a984255..cfebf43cf 100644
--- a/community/picard/PKGBUILD
+++ b/community/picard/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 110442 2014-04-30 00:52:28Z bisson $
+# $Id: PKGBUILD 110501 2014-05-01 17:09:17Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Mateusz Herych <heniekk@gmail.com>
# Contributor: sysrq
pkgname=picard
pkgver=1.2
-pkgrel=2
+pkgrel=3
pkgdesc='Official MusicBrainz tagger'
url='http://musicbrainz.org/doc/MusicBrainz_Picard'
license=('GPL')
@@ -26,5 +26,5 @@ build() {
package() {
cd "${srcdir}/picard-${pkgver}"
python2 setup.py install --root="${pkgdir}"
- cp -r contrib/* "${pkgdir}/usr/lib/python2.7/site-packages/picard/plugins/"
+ cp -r contrib/plugins/* "${pkgdir}/usr/lib/python2.7/site-packages/picard/plugins/"
}
diff --git a/community/pluma/PKGBUILD b/community/pluma/PKGBUILD
index f9594715d..f02c0f3aa 100644
--- a/community/pluma/PKGBUILD
+++ b/community/pluma/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 107797 2014-03-19 18:14:08Z flexiondotorg $
+# $Id: PKGBUILD 110490 2014-05-01 08:48:04Z flexiondotorg $
# Maintainer : Martin Wimpress <code@flexion.org>
pkgname=pluma
-pkgver=1.8.0
-pkgrel=3
+pkgver=1.8.1
+pkgrel=1
pkgdesc="A powerful text editor for MATE"
url="http://mate-desktop.org"
arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@ provides=('mate-text-editor')
conflicts=('mate-text-editor')
groups=('mate-extra')
source=("http://pub.mate-desktop.org/releases/1.8/${pkgname}-${pkgver}.tar.xz")
-sha1sums=('858e3edaee698b3f99189d3285061ab56b21828c')
+sha1sums=('3bd3f7a5197ac96db9142a7f3bb9a10009312c22')
install=${pkgname}.install
prepare() {
diff --git a/community/python-numexpr/PKGBUILD b/community/python-numexpr/PKGBUILD
index afcea2446..c59ef2bcd 100644
--- a/community/python-numexpr/PKGBUILD
+++ b/community/python-numexpr/PKGBUILD
@@ -1,18 +1,18 @@
-# $Id: PKGBUILD 108458 2014-03-27 14:47:55Z fyan $
+# $Id: PKGBUILD 110499 2014-05-01 13:45:33Z aginiewicz $
# Maintainer: Andrzej Giniewicz <gginiu@gmail.com>
# Contributor: Sebastien Binet <binet@lblbox>
pkgbase=python-numexpr
pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.3.1
-pkgrel=2
+pkgver=2.4
+pkgrel=1
pkgdesc="Fast numerical array expression evaluator for Python, NumPy, PyTables, pandas"
url="https://github.com/pydata/numexpr"
arch=('i686' 'x86_64')
license=('MIT')
makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 'python2-numpy')
source=(https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
-md5sums=('eda267543a8594b9979b71dc56199b71')
+md5sums=('c9357862a304b9ad614afaf9e9c8dc78')
build() {
cd "$srcdir"
diff --git a/community/python2-gevent/PKGBUILD b/community/python2-gevent/PKGBUILD
index 7cffa0137..231b4930b 100644
--- a/community/python2-gevent/PKGBUILD
+++ b/community/python2-gevent/PKGBUILD
@@ -4,7 +4,7 @@
# Contributor: Ralf Schmitt <ralf@systemexit.de>
pkgname=python2-gevent
-pkgver=1.0
+pkgver=1.0.1
pkgrel=1
arch=('i686' 'x86_64')
pkgdesc="Python network library that uses greenlet and libev for easy and scalable concurrency"
diff --git a/community/stone-soup/PKGBUILD b/community/stone-soup/PKGBUILD
index 4ae0f41ae..8f2ef3170 100644
--- a/community/stone-soup/PKGBUILD
+++ b/community/stone-soup/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Jakob Gruber <jakob.gruber@gmail.com>
pkgname=stone-soup
-pkgver=0.14.0
+pkgver=0.14.1
pkgrel=1
pkgdesc='Open-source, single-player, role-playing roguelike game of exploration and treasure-hunting'
arch=('i686' 'x86_64')
@@ -66,4 +66,4 @@ package() {
}
-md5sums=('d71cd86cda1e00fd52c3a6d009fa3fcb')
+md5sums=('9b234ce692aae1adea727e0ed54d47f9')
diff --git a/core/procps-ng/PKGBUILD b/core/procps-ng/PKGBUILD
index 8e11e303d..e2359b6ff 100644
--- a/core/procps-ng/PKGBUILD
+++ b/core/procps-ng/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id: PKGBUILD 204689 2014-01-25 04:07:27Z bisson $
+# $Id: PKGBUILD 211944 2014-05-01 17:45:56Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Eric Bélanger <eric@archlinux.org>
pkgname=procps-ng
pkgver=3.3.9
-pkgrel=2
+pkgrel=3
pkgdesc='Utilities for monitoring your system and its processes'
url='http://sourceforge.net/projects/procps-ng/'
license=('GPL' 'LGPL')
arch=('i686' 'x86_64')
-depends=('ncurses')
+depends=('ncurses' 'systemd')
source=("http://downloads.sourceforge.net/project/${pkgname}/Production/${pkgname}-${pkgver}.tar.xz")
sha1sums=('088c77631745fc75ee41fc29c254a4069be4869a')
@@ -36,6 +36,7 @@ build() {
--bindir=/usr/bin \
--sbindir=/usr/bin \
--enable-watch8bit \
+ --with-systemd \
make
}
diff --git a/extra/libevdev/PKGBUILD b/extra/libevdev/PKGBUILD
index dfb2f649d..691e09c04 100644
--- a/extra/libevdev/PKGBUILD
+++ b/extra/libevdev/PKGBUILD
@@ -1,17 +1,17 @@
-# $Id: PKGBUILD 208899 2014-03-28 15:18:06Z andyrtr $
+# $Id: PKGBUILD 211939 2014-05-01 14:51:57Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgname=libevdev
-pkgver=1.1
+pkgver=1.2
pkgrel=1
pkgdesc="Wrapper library for evdev devices"
arch=(i686 x86_64)
url="http://www.freedesktop.org/wiki/Software/libevdev/"
license=(custom:X11)
depends=('glibc')
-makedepends=('python')
+makedepends=('python2' 'check' 'valgrind' 'doxygen')
source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('3b0cf29342c7beaae47c0fc5eaff434cc821b64af68367908d0c306c2284ce04')
+sha256sums=('4195618067c01d915f67ad3034e89aaa597f5d548dbdd31fa12c569d4bf5a440')
build() {
cd $pkgname-$pkgver
@@ -19,6 +19,10 @@ build() {
--disable-static
make
}
+check() {
+ cd $pkgname-$pkgver
+ make check || /bin/true
+}
package() {
cd $pkgname-$pkgver
diff --git a/extra/php/PKGBUILD b/extra/php/PKGBUILD
index b1693331a..184dbecc3 100644
--- a/extra/php/PKGBUILD
+++ b/extra/php/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 211313 2014-04-18 17:28:16Z andyrtr $
+# $Id: PKGBUILD 211933 2014-05-01 11:34:12Z pierre $
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
pkgbase=php
@@ -21,8 +21,8 @@ pkgname=('php'
'php-sqlite'
'php-tidy'
'php-xsl')
-pkgver=5.5.11
-pkgrel=2
+pkgver=5.5.12
+pkgrel=1
arch=('i686' 'x86_64')
license=('PHP')
url='http://www.php.net'
@@ -34,12 +34,12 @@ source=("http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.gz"
"http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.gz.asc"
'php.ini.patch' 'apache.conf' 'php-fpm.conf.in.patch'
'logrotate.d.php-fpm' 'php-fpm.service' 'php-fpm.tmpfiles')
-md5sums=('9156fcd4b254cbfa9a7535f931da29d5'
+md5sums=('b6a6e9c72589c265aafb7b3353a34030'
'SKIP'
- '799cd5f91f5253f4b47ec4fd7fccf4f1'
+ '510f9092ebfe6e378e12817e197a88b6'
'dec2cbaad64e3abf4f0ec70e1de4e8e9'
- '9f8263996836e27f5be1483e86ac2e33'
- 'e036c721e5ad927cd1613c7475a58b3a'
+ '6bc1fc4ceee039d21ff3b56aa845cc5a'
+ '25bc67ad828e8147a817410b68d8016c'
'cc2940f5312ba42e7aa1ddfab74b84c4'
'c60343df74f8e1afb13b084d5c0e47ed')
diff --git a/extra/php/logrotate.d.php-fpm b/extra/php/logrotate.d.php-fpm
index 1895c5b97..2146ddd39 100644
--- a/extra/php/logrotate.d.php-fpm
+++ b/extra/php/logrotate.d.php-fpm
@@ -3,6 +3,6 @@
notifempty
delaycompress
postrotate
- systemctl reload php-fpm.service || true
+ /bin/kill -SIGUSR1 `cat /run/php-fpm/php-fpm.pid 2>/dev/null` 2>/dev/null || true
endscript
}
diff --git a/extra/php/php-fpm.conf.in.patch b/extra/php/php-fpm.conf.in.patch
index 4bcdb73d5..81eabf73f 100644
--- a/extra/php/php-fpm.conf.in.patch
+++ b/extra/php/php-fpm.conf.in.patch
@@ -1,5 +1,5 @@
---- sapi/fpm/php-fpm.conf.in 2013-11-12 15:17:27.000000000 +0100
-+++ sapi/fpm/php-fpm.conf.in 2013-11-12 17:27:21.283279538 +0100
+--- sapi/fpm/php-fpm.conf.in 2014-04-29 10:04:30.000000000 +0200
++++ sapi/fpm/php-fpm.conf.in 2014-05-01 07:36:14.762839158 +0200
@@ -12,7 +12,7 @@
; Relative path can also be used. They will be prefixed by:
; - the global prefix if it's been set (-p argument)
@@ -31,10 +31,10 @@
@@ -167,9 +168,9 @@
; BSD-derived systems allow connections regardless of permissions.
; Default Values: user and group are set as the running user
- ; mode is set to 0666
+ ; mode is set to 0660
-;listen.owner = @php_fpm_user@
-;listen.group = @php_fpm_group@
--;listen.mode = 0666
+-;listen.mode = 0660
+listen.owner = @php_fpm_user@
+listen.group = @php_fpm_group@
+listen.mode = 0660
diff --git a/extra/php/php.ini.patch b/extra/php/php.ini.patch
index aa8100ecc..3c6d11785 100644
--- a/extra/php/php.ini.patch
+++ b/extra/php/php.ini.patch
@@ -1,6 +1,6 @@
---- php.ini-production 2013-11-12 15:17:27.000000000 +0100
-+++ php.ini-production 2013-11-12 17:28:12.715321014 +0100
-@@ -306,7 +306,7 @@
+--- php.ini-production 2014-04-29 10:04:30.000000000 +0200
++++ php.ini-production 2014-05-01 07:32:06.928871679 +0200
+@@ -296,7 +296,7 @@
; or per-virtualhost web server configuration file. This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
; http://php.net/open-basedir
@@ -9,7 +9,7 @@
; This directive allows you to disable certain functions for security reasons.
; It receives a comma-delimited list of function names. This directive is
-@@ -703,7 +703,7 @@
+@@ -693,7 +693,7 @@
;;;;;;;;;;;;;;;;;;;;;;;;;
; UNIX: "/path1:/path2"
@@ -18,7 +18,7 @@
;
; Windows: "\path1;\path2"
;include_path = ".;c:\php\includes"
-@@ -726,7 +726,7 @@
+@@ -716,7 +716,7 @@
; Directory in which the loadable extensions (modules) reside.
; http://php.net/extension-dir
@@ -27,7 +27,7 @@
; On windows:
; extension_dir = "ext"
-@@ -864,50 +864,48 @@
+@@ -854,50 +854,48 @@
; If you only provide the name of the extension, PHP will look for it in its
; default extension directory.
;