diff options
48 files changed, 209 insertions, 501 deletions
diff --git a/community-testing/connman/PKGBUILD b/community-testing/connman/PKGBUILD deleted file mode 100644 index a52740fca..000000000 --- a/community-testing/connman/PKGBUILD +++ /dev/null @@ -1,46 +0,0 @@ -#$Id: PKGBUILD 78716 2012-10-23 04:26:25Z dwallace $ -# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com> -# Contributor: Lucas De Marchi <lucas.de.marchi@gmail.com> - -pkgname=connman -pkgver=1.8 -pkgrel=2 -pkgdesc="Wireless LAN network manager" -url="http://connman.net/" -arch=('i686' 'x86_64') -license=('GPL2') -depends=('dbus-core' 'iptables' 'glib2' 'gnutls') -conflicts=('openresolv') -optdepends=('bluez: Support for Bluetooth devices' - 'wpa_supplicant: For WiFi devices') -makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn') -options=('!libtool') -source=('connmand-daemon' - "http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.bz2" - 'allow_group_network.diff') - -md5sums=('88ece7cbf1d0d289545ce4f8553fdab8' - '689468f92a1dcb2c0e30d7d00410ad87' - 'a8d22ee089fb0ed725130d16ad393047') -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - patch -Np1 -i "${srcdir}/allow_group_network.diff" - - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --with-systemdunitdir=/usr/lib/systemd/system \ - --enable-threads \ - --enable-openconnect \ - --enable-openvpn \ - --enable-polkit \ - --enable-client - - make -} - -package(){ - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}" install - install -Dm755 "$srcdir"/connmand-daemon "$pkgdir"/etc/rc.d/connmand -} diff --git a/community-testing/connman/allow_group_network.diff b/community-testing/connman/allow_group_network.diff deleted file mode 100644 index 027d933f7..000000000 --- a/community-testing/connman/allow_group_network.diff +++ /dev/null @@ -1,12 +0,0 @@ ---- a/src/connman-polkit.conf 2010-11-05 12:09:04.285423955 -0200 -+++ b/src/connman-polkit.conf 2010-11-05 12:10:53.041423934 -0200 -@@ -5,6 +5,9 @@ - <allow own="net.connman"/> - <allow send_interface="net.connman.Agent"/> - </policy> -+ <policy group="network"> -+ <allow send_interface="net.connman.Agent"/> -+ </policy> - <policy context="default"> - <allow send_destination="net.connman"/> - </policy> diff --git a/community-testing/connman/connmand-daemon b/community-testing/connman/connmand-daemon deleted file mode 100755 index aff1ddeb2..000000000 --- a/community-testing/connman/connmand-daemon +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -DESC="Connection Manager" -NAME="connmand" -ARGS="" -DAEMON="/usr/sbin/$NAME" - -PID=`pidof -o %PPID ${DAEMON}` -case "$1" in - start) - stat_busy "Starting ${DESC}" - if [ -z "$PID" ]; then - ${DAEMON} ${ARGS} - fi - if [ ! -z "$PID" -o $? -gt 0 ]; then - stat_fail - else - add_daemon ${NAME} - stat_done - fi - ;; - stop) - stat_busy "Stopping ${DESC}" - [ ! -z "$PID" ] && killall ${DAEMON} &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon ${NAME} - stat_done - fi - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" - ;; -esac -exit 0 diff --git a/community-testing/unbound/PKGBUILD b/community-testing/unbound/PKGBUILD deleted file mode 100644 index cefb077c0..000000000 --- a/community-testing/unbound/PKGBUILD +++ /dev/null @@ -1,54 +0,0 @@ -# $Id: PKGBUILD 78747 2012-10-23 22:58:34Z bisson $ -# Maintainer: Gaetan Bisson <bisson@archlinux.org> -# Contributor: Hisato Tatekura <hisato_tatekura@excentrics.net> -# Contributor: Massimiliano Torromeo <massimiliano DOT torromeo AT google mail service> - -pkgname=unbound -pkgver=1.4.18 -pkgrel=2 -pkgdesc='Validating, recursive, and caching DNS resolver' -url='http://unbound.net/' -license=('custom:BSD') -arch=('i686' 'x86_64') -options=('!libtool') -depends=('openssl' 'ldns') -makedepends=('expat') -optdepends=('expat: unbound-anchor') -backup=('etc/unbound/unbound.conf') -source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz" - 'unbound.service' - 'unbound.conf' - 'rc.d') -sha1sums=('b64b4c9f7981df4e7589ebb770a31352a09db3fb' - '5bc313cd978e4d6efe8c13600e838c70629be477' - '5d473ec2943fd85367cdb653fcd58e186f07383f' - 'dc96e772f467b32555df21d16fdb15e98194c228') - -install=install - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --enable-static=no \ - --disable-rpath \ - --with-conf-file=/etc/unbound/unbound.conf \ - --with-pidfile=/run/unbound.pid \ - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}" install - - install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -D -m755 ../rc.d "${pkgdir}/etc/rc.d/${pkgname}" - install -D -m644 ../unbound.conf "${pkgdir}/etc/unbound/unbound.conf" - install -D -m644 doc/example.conf.in "${pkgdir}/etc/unbound/unbound.conf.example" - install -D -m644 ../unbound.service "${pkgdir}/usr/lib/systemd/system/unbound.service" -} diff --git a/community-testing/unbound/install b/community-testing/unbound/install deleted file mode 100644 index 964792592..000000000 --- a/community-testing/unbound/install +++ /dev/null @@ -1,10 +0,0 @@ -post_install() { - getent group unbound &>/dev/null || groupadd -r unbound >/dev/null - getent passwd unbound &>/dev/null || useradd -r -g unbound -d /etc/unbound -s /bin/false -c unbound unbound >/dev/null -} - -post_remove() { - getent passwd unbound &>/dev/null && userdel unbound >/dev/null - getent group unbound &>/dev/null && groupdel unbound >/dev/null - return 0 -} diff --git a/community-testing/unbound/rc.d b/community-testing/unbound/rc.d deleted file mode 100644 index b5b6466de..000000000 --- a/community-testing/unbound/rc.d +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -name=unbound -prog="/usr/sbin/unbound" - -PID=$(pidof -o %PPID $prog) - -case "$1" in -start) - stat_busy "Starting $name daemon" - [[ -z "$PID" ]] && eval $prog &>/dev/null \ - && { add_daemon $name; stat_done; } \ - || { stat_fail; exit 1; } - ;; -stop) - stat_busy "Stopping $name daemon" - [[ -n "$PID" ]] && kill $PID &>/dev/null \ - && { rm_daemon $name; stat_done; } \ - || { stat_fail; exit 1; } - ;; -reload) - stat_busy "Reloading $name daemon" - [[ -n "$PID" ]] && kill -SIGHUP $PID &>/dev/null \ - && { stat_done; } \ - || { stat_fail; exit 1; } - ;; -restart) - $0 stop - sleep 2 - $0 start - ;; -*) - echo "usage: $0 {start|stop|restart|reload}" - exit 1 - ;; -esac diff --git a/community-testing/unbound/unbound.conf b/community-testing/unbound/unbound.conf deleted file mode 100644 index 445bceff1..000000000 --- a/community-testing/unbound/unbound.conf +++ /dev/null @@ -1,4 +0,0 @@ -server: - username: "unbound" - directory: "/etc/unbound" - use-syslog: yes diff --git a/community-testing/unbound/unbound.service b/community-testing/unbound/unbound.service deleted file mode 100644 index 8b3c9576b..000000000 --- a/community-testing/unbound/unbound.service +++ /dev/null @@ -1,11 +0,0 @@ -[Unit] -Description=Unbound DNS Resolver - -[Service] -PIDFile=/run/unbound.pid -ExecStart=/usr/sbin/unbound -d -ExecReload=/bin/kill -HUP $MAINPID -Restart=always - -[Install] -WantedBy=multi-user.target diff --git a/community/audit/PKGBUILD b/community/audit/PKGBUILD index e40031472..c0cad6e22 100644 --- a/community/audit/PKGBUILD +++ b/community/audit/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 74552 2012-07-30 13:59:54Z mtorromeo $ +# $Id: PKGBUILD 78779 2012-10-24 13:52:59Z mtorromeo $ # Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> # Contributor: Connor Behan <connor.behan@gmail.com> # Contributor: henning mueller <henning@orgizm.net> pkgname=audit pkgver=2.2.1 -pkgrel=2 +pkgrel=3 pkgdesc='User space utilities for storing and searching the audit records generated by the audit subsystem in the Linux kernel.' url=http://people.redhat.com/sgrubb/$pkgname arch=(i686 x86_64 mips64el) @@ -31,10 +31,6 @@ source=( auditd.service python2.patch ) -md5sums=('dc099fcb2f9242d47ecc35b46d71dfd1' - '5f86e87354d0c3b9b408a26daed7a906' - '67f6c51891120da038cb790693d8eba1' - '45a33c6bef84f8e1701cb0b5e187336b') build() { cd "$srcdir/$pkgname-$pkgver" @@ -59,5 +55,9 @@ package() { install -m755 "$srcdir/auditd.rc" etc/rc.d/auditd install -d var/log/audit rm -rf etc/rc.d/init.d etc/sysconfig - mv usr/sbin sbin } + +sha256sums=('9865ca89f5b975ccf25441ddf45a874448f2bba944005aa8cd5e3c3148713a63' + '42c0a4f6ebbd185f783320fd552541d15eb91029b83add21d1e0289ac2dda7ba' + '3c7179f40216b594675f26bb73884406c8ac91577b609dd1ab9837f889954007' + 'e60c031c6354f41938447c439eadee77127307687a2c487a54fab884eeafd9c2') diff --git a/community/audit/auditd.service b/community/audit/auditd.service index 199b0dcbe..208b5c38e 100644 --- a/community/audit/auditd.service +++ b/community/audit/auditd.service @@ -1,12 +1,10 @@ [Unit] -Description=Audit Daemon +Description=Security Auditing Service +After=syslog.target [Service] -ExecStartPre=/sbin/auditctl -R /etc/audit/audit.rules -ExecStart=/sbin/auditd -n -ExecStop=/bin/kill -15 $MAINPID -ExecReload=/bin/kill -HUP $MAINPID -Restart=always +ExecStart=/usr/sbin/auditd -n +ExecStartPost=/usr/sbin/auditctl -R /etc/audit/audit.rules [Install] -WantedBy=multi-user.target +WantedBy=multi-user.target
\ No newline at end of file diff --git a/community/espeakup/PKGBUILD b/community/espeakup/PKGBUILD index 8fe21af60..0947ef7bd 100644 --- a/community/espeakup/PKGBUILD +++ b/community/espeakup/PKGBUILD @@ -1,26 +1,31 @@ -# $Id: PKGBUILD 65675 2012-02-21 21:13:11Z cbrannon $ -# Maintainer: Chris Brannon <chris@the-brannons.com> +# $Id: PKGBUILD 78791 2012-10-24 23:06:54Z tomegun $ +# Contributor: Chris Brannon <chris@the-brannons.com> +# Contributor: Kyle <kyle@gmx.ca> pkgname=espeakup pkgver=0.71 -pkgrel=4 +pkgrel=5 pkgdesc='Allows the Speakup screen review system to use the ESpeak synthesizer.' arch=('i686' 'x86_64' 'mips64el') url="http://github.com/williamh/espeakup" license=('GPL3') source=("ftp://linux-speakup.org/pub/linux/goodies/${pkgname}-${pkgver}.tar.bz2" - espeakup espeakup.conf.d) -md5sums=('03daa70b3db3f4f6fbb42c2ee428eda7' - '7cf0abd493710ed924b7bb7c8d279fb3' - '0f93974845b15efa12f5e7a74cc0eecd') + espeakup espeakup.conf.d espeakup.service) depends=(speakup-utils espeak) backup=(etc/conf.d/espeakup) build() { - cd "$srcdir" - install -m755 -D espeakup "${pkgdir}/etc/rc.d/espeakup" - install -m644 -D espeakup.conf.d "${pkgdir}/etc/conf.d/espeakup" cd "$srcdir/$pkgname-$pkgver" - make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" make DESTDIR="${pkgdir}" install + install -m755 -D "${srcdir}/espeakup" "${pkgdir}/etc/rc.d/espeakup" + install -m644 -D "${srcdir}/espeakup.conf.d" "${pkgdir}/etc/conf.d/espeakup" + install -m644 -D "${srcdir}/espeakup.service" "${pkgdir}/usr/lib/systemd/system/espeakup.service" } +md5sums=('03daa70b3db3f4f6fbb42c2ee428eda7' + '7cf0abd493710ed924b7bb7c8d279fb3' + '0f93974845b15efa12f5e7a74cc0eecd' + '0c11c50b128234cda8e1357e88cf7c43') diff --git a/community/espeakup/espeakup.service b/community/espeakup/espeakup.service new file mode 100644 index 000000000..58d7d47fa --- /dev/null +++ b/community/espeakup/espeakup.service @@ -0,0 +1,12 @@ +[Unit] +Description=Software speech output for Speakup + +[Service] +Type=forking +PIDFile=/run/espeakup.pid +ExecStart=/usr/bin/espeakup +ExecReload=/bin/kill -HUP $MAINPID +Restart=always + +[Install] +WantedBy=multi-user.target diff --git a/community/libextractor/PKGBUILD b/community/libextractor/PKGBUILD index 2c1c982c5..99c911799 100644 --- a/community/libextractor/PKGBUILD +++ b/community/libextractor/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 78664 2012-10-22 14:19:49Z spupykin $ +# $Id: PKGBUILD 78771 2012-10-24 12:21:52Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s@gmail.com> # Contributor: damir <damir@archlinux.org> pkgname=libextractor pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="A library used to extract meta-data from files of arbitrary type" arch=("i686" "x86_64" 'mips64el') license=('GPL') diff --git a/community/libextractor/libextractor.install b/community/libextractor/libextractor.install index 1cf51e095..27002d556 100644 --- a/community/libextractor/libextractor.install +++ b/community/libextractor/libextractor.install @@ -1,5 +1,5 @@ infodir=usr/share/info -filelist=(extractor.info.gz) +filelist=(libextractor.info.gz) post_install() { [ -x usr/bin/install-info ] || return 0 diff --git a/community/libmediainfo/PKGBUILD b/community/libmediainfo/PKGBUILD index b0edb06ba..0522a68cb 100644 --- a/community/libmediainfo/PKGBUILD +++ b/community/libmediainfo/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 75876 2012-09-04 15:28:30Z spupykin $ +# $Id: PKGBUILD 78757 2012-10-24 10:01:02Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: hydro <hydro@freenet.de> pkgname=libmediainfo -pkgver=0.7.60 +pkgver=0.7.61 pkgrel=1 pkgdesc="shared library for mediainfo" arch=('i686' 'x86_64' 'mips64el') @@ -14,7 +14,7 @@ makedepends=('libtool' 'automake' 'autoconf') options=(!libtool) source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2 libmediainfo-0.7.50-libmms.patch) -md5sums=('f2a8e921814fc188ada7a236c8a2073e' +md5sums=('371519c1c24e4de84448d6624fc41aa8' '2f4b21cc250f663d52b497dedb963e3b') build() { diff --git a/community/mediainfo-gui/PKGBUILD b/community/mediainfo-gui/PKGBUILD index 1f58d64b5..e4c12194e 100644 --- a/community/mediainfo-gui/PKGBUILD +++ b/community/mediainfo-gui/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 75882 2012-09-04 15:30:42Z spupykin $ +# $Id: PKGBUILD 78761 2012-10-24 10:02:27Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: hydro <hydro@freenet.de> pkgname=mediainfo-gui -pkgver=0.7.60 +pkgver=0.7.61 pkgrel=1 pkgdesc="GUI for mediainfo" arch=('i686' 'x86_64' 'mips64el') @@ -13,7 +13,7 @@ depends=('libmediainfo' 'wxgtk') makedepends=('libtool' 'automake' 'autoconf') install=mediainfo-gui.install source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2) -md5sums=('ed1e1baf50ac101ef5c41b6b32ada36e') +md5sums=('46fd776968ec1047cd2a5056a906cdf2') build() { cd $srcdir/MediaInfo/Project/GNU/GUI diff --git a/community/mediainfo/PKGBUILD b/community/mediainfo/PKGBUILD index fb6895c14..ed5af89c5 100644 --- a/community/mediainfo/PKGBUILD +++ b/community/mediainfo/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 75880 2012-09-04 15:30:01Z spupykin $ +# $Id: PKGBUILD 78759 2012-10-24 10:01:48Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: hydro <hydro@freenet.de> pkgname=mediainfo -pkgver=0.7.60 +pkgver=0.7.61 pkgrel=1 pkgdesc="supplies technical and tag information about a video or audio file" arch=('i686' 'x86_64' 'mips64el') @@ -12,7 +12,7 @@ license=('GPL') depends=('libmediainfo') makedepends=('libtool' 'automake' 'autoconf') source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2) -md5sums=('ed1e1baf50ac101ef5c41b6b32ada36e') +md5sums=('46fd776968ec1047cd2a5056a906cdf2') build() { cd $srcdir/MediaInfo/Project/GNU/CLI diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD index 59db457f8..5ae5cddce 100644 --- a/community/nodejs/PKGBUILD +++ b/community/nodejs/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 77604 2012-10-13 08:08:33Z bpiotrowski $ +# $Id: PKGBUILD 78788 2012-10-24 19:44:32Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: James Campos <james.r.campos@gmail.com> @@ -9,12 +9,12 @@ pkgname=nodejs pkgver=0.8.12 -pkgrel=1 +pkgrel=2 pkgdesc='Evented I/O for V8 javascript' arch=('i686' 'x86_64' 'mips64el') url='http://nodejs.org/' license=('MIT') -depends=('openssl' 'python2') #'v8') +depends=('openssl' 'python2' 'v8') checkdepends=('curl') # curl used for check() options=('!emptydirs') source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz) @@ -24,18 +24,21 @@ build() { cd node-v${pkgver} msg 'Fixing for python2 name' - find -type f -exec sed -e 's_^#!/usr/bin/env python$_&2_' -e 's_^\(#!/usr/bin/python2\).[45]$_\1_' -e 's_^#!/usr/bin/python$_&2_' -e "s_'python'_'python2'_" -i {} \; - find test -type f -exec sed -e "s|python |python2 |" -i {} \; - sed -i "s|python |python2 |" Makefile + find -type f -exec \ + sed -e 's_^#!/usr/bin/env python$_&2_' \ + -e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \ + -e 's_^#!/usr/bin/python$_&2_' \ + -e "s_'python'_'python2'_" \ + -e 's_python _python2 _' -i {} \; export PYTHON=python2 ./configure \ --prefix=/usr \ --shared-openssl \ -# --shared-v8 \ -# --shared-v8-libpath=/usr/lib \ -# --shared-v8-includes=/usr/include + --shared-v8 \ + --shared-v8-libpath=/usr/lib \ + --shared-v8-includes=/usr/include make } diff --git a/community/plan9port/PKGBUILD b/community/plan9port/PKGBUILD index fa8b45e8b..7d454558f 100644 --- a/community/plan9port/PKGBUILD +++ b/community/plan9port/PKGBUILD @@ -1,11 +1,13 @@ -# $Id: PKGBUILD 73814 2012-07-15 22:19:23Z cbrannon $ +# $Id: PKGBUILD 78790 2012-10-24 21:59:59Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: phrakture <aaronmgriffin--gmail--com> # Contributor: Fazlul Shahriar # Contributor: Chris Brannon <cmbrannon79@gmail.com> + pkgname=plan9port -pkgver=20120715 +pkgver=20121022 pkgrel=1 -pkgdesc="A port of many programs from Plan 9 to Unix-like operating systems" +pkgdesc='Port of many programs from Plan 9' arch=('i686' 'x86_64' 'mips64el') url="http://swtch.com/plan9port/" license=('custom') @@ -14,17 +16,28 @@ optdepends=('python2: for the codereview script') provides=('plan9') install=plan9.install source=(http://swtch.com/$pkgname/$pkgname-$pkgver.tgz plan9.sh) +sha256sums=('1293b5d2e46d0d6f7be2adbdb285ce278a25c77e88b5cd7c230e16a47d0f8638' + '0247c4446497359d305aaec069b07180fbf79ce4fa5191464cd9ebb8c7f0228d') + +build() { + cd "$srcdir/plan9" + + ./INSTALL -b +} + +package() { + cd "$srcdir/plan9" -build() -{ - install -Dm755 "$srcdir/plan9.sh" "$pkgdir/etc/profile.d/plan9.sh" || return 1 + install -Dm755 ../plan9.sh $pkgdir/etc/profile.d/plan9.sh - install -dm755 "$pkgdir/opt" "$pkgdir/usr/share/doc/$pkgname" || return 1 - mv "$srcdir/plan9" "$pkgdir/opt" + mkdir -p "$pkgdir/opt" + cp -r $srcdir/plan9 $pkgdir/opt/ + mkdir -p $pkgdir/usr/share/doc/$pkgname cd "$pkgdir/opt/plan9" - ./INSTALL || return 1 - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" || return 1 + ./INSTALL -c -r "$pkgdir/opt/plan9" + + install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE # Don't need these under /opt/plan9. rm -rf .hg/ @@ -33,21 +46,18 @@ build() rm -f config install.log install.sum install.txt configure Makefile INSTALL \ LICENSE - borkedfiles=`grep -r "$pkgdir"/opt/plan9 * | grep -v Binary | cut -d\: -f1` - for f in $borkedfiles; do - echo "fixing hardcoded paths in $f" - sed -i "s@$pkgdir/opt/plan9@/opt/plan9@" $f || return 1 + msg2 "Fixing hardcoded paths..." + for f in `grep -H -r "$pkgdir/opt/plan9" | cut -d: -f1`; do + echo -n "\t$f" + [ -e "$f" ] && sed -i "s:$pkgdir/opt/plan9:/opt/plan9:" "$f" || true done find "$pkgdir" -name '*.py' -print0 |xargs -0 \ - sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \ + sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/python2,' \ -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,' - for i in CHANGES CONTRIBUTORS README TODO - do - install -m644 $i "$pkgdir/usr/share/doc/$pkgname" || return 1 + for i in CHANGES CONTRIBUTORS README TODO; do + install -m644 $i "$pkgdir/usr/share/doc/$pkgname" rm -f $i done } -md5sums=('1e0698aa5f652a1a47227be2b25fa8fd' - '9695eb15a247e23140e8a35ff52a5c20') diff --git a/community/plan9port/plan9.install b/community/plan9port/plan9.install index 63b8dd0da..97ca74fa6 100644 --- a/community/plan9port/plan9.install +++ b/community/plan9port/plan9.install @@ -1,7 +1,3 @@ -pre_install() { - /bin/true -} - post_install() { echo "==> Decompressing plan9 man pages" for i in `find /opt/plan9/man -type f`; do @@ -17,26 +13,18 @@ post_install() { echo "==> Please log off or 'source /etc/profile.d/plan9.sh'" echo "==> Run '9 man 1 intro | less' to begin" source /etc/profile.d/plan9.sh - /bin/true } pre_upgrade() { post_remove - /bin/true } post_upgrade() { post_install - /bin/true -} - -pre_remove() { - /bin/true } post_remove() { #we had to unpack them so they won't get removed.... rm -rf /opt/plan9/man - /bin/true } diff --git a/community/rocksndiamonds/PKGBUILD b/community/rocksndiamonds/PKGBUILD index 0906105a0..52a52e4c1 100644 --- a/community/rocksndiamonds/PKGBUILD +++ b/community/rocksndiamonds/PKGBUILD @@ -1,18 +1,20 @@ -# $Id: PKGBUILD 65505 2012-02-21 06:44:27Z spupykin $ +# $Id: PKGBUILD 78773 2012-10-24 12:38:16Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Jacek Poplawski <jacekpoplawski@gmail.com> pkgname=rocksndiamonds pkgver=3.3.0.1 -pkgrel=2 +pkgrel=3 pkgdesc="game similiar to Boulderdash with lots of levels" arch=(i686 x86_64 'mips64el') url="http://www.artsoft.org/rocksndiamonds/" license=('GPL') depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg') makedepends=('unzip' 'p7zip') -source=(http://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-$pkgver.tar.gz) -md5sums=('813ced99d54f89db7c593c518d197d18') +source=(http://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-$pkgver.tar.gz + rocksndiamonds.desktop) +md5sums=('813ced99d54f89db7c593c518d197d18' + '18a3541db4d71feb0ad3b50ea4006738') build() { depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg' 'rocksndiamonds-data') @@ -27,4 +29,6 @@ build() { install -d $pkgdir/usr/share/man/man1 cp $srcdir/rocksndiamonds-$pkgver/rocksndiamonds $pkgdir/usr/bin/rocksndiamonds cp $srcdir/rocksndiamonds-$pkgver/rocksndiamonds.1 $pkgdir/usr/share/man/man1 + + install -Dm0644 $srcdir/rocksndiamonds.desktop $pkgdir/usr/share/applications/rocksndiamonds.desktop } diff --git a/community/rocksndiamonds/rocksndiamonds.desktop b/community/rocksndiamonds/rocksndiamonds.desktop new file mode 100644 index 000000000..79de3f1d1 --- /dev/null +++ b/community/rocksndiamonds/rocksndiamonds.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Rocks'N'Diamonds +GenericName=Rocks'N'Diamonds +Comment=Arcade game +Exec=rocksndiamonds +Terminal=false +Type=Application +Categories=Application;Game; +StartupNotify=false diff --git a/community/sshguard/PKGBUILD b/community/sshguard/PKGBUILD index 41ec998c9..739e3836d 100644 --- a/community/sshguard/PKGBUILD +++ b/community/sshguard/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 76846 2012-10-01 07:36:10Z mtorromeo $ +# $Id: PKGBUILD 78777 2012-10-24 13:36:34Z mtorromeo $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=sshguard pkgver=1.5 -pkgrel=6 +pkgrel=7 pkgdesc="brute force detector for SSH, Exim, VSFTPD and more. Blocks by ip with iptables" arch=('i686' 'x86_64' 'mips64el') #url="http://sourceforge.net/projects/sshguard/" @@ -22,7 +22,7 @@ source=("http://downloads.sourceforge.net/sourceforge/sshguard/sshguard-$pkgver. sha256sums=('b537f8765455fdf8424f87d4bd695e5b675b88e5d164865452137947093e7e19' 'a810da878e40be8616a93c9984e7dbd3700367d665b78b8aa2498228bb33cb6e' '66f28e2cc81e5686f8fd5c0d5a5015d7feecbe018a259f4032cfbacf6fe8d1c3' - '53bcf72340495bea19e15a0d80771028e933fceb08789243fef47884b7507075' + '12e576713f7ed9c87cc36417fd8bb8dd613b9d27f06cae9dd0a1aae9ca65acd7' 'b1ebc5dd10374a790c7d06419694143bffa019a7c65c8a7b2541487aecec574d') build() { diff --git a/community/sshguard/sshguard.service b/community/sshguard/sshguard.service index c317d0932..72e76be40 100644 --- a/community/sshguard/sshguard.service +++ b/community/sshguard/sshguard.service @@ -1,10 +1,9 @@ [Unit] Description=Block hacking attempts -After=iptables.service +After=iptables.service network.target [Service] -EnvironmentFile=/etc/conf.d/sshguard -ExecStart=/usr/lib/systemd/scripts/sshguard-journalctl -b /var/db/sshguard/blacklist.db ${SSHGUARD_ARGS} +ExecStart=/usr/lib/systemd/scripts/sshguard-journalctl -b /var/db/sshguard/blacklist.db [Install] WantedBy=multi-user.target diff --git a/community/unbound/PKGBUILD b/community/unbound/PKGBUILD index f4a92c8e3..494f52824 100644 --- a/community/unbound/PKGBUILD +++ b/community/unbound/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 74727 2012-08-02 13:31:20Z bisson $ +# $Id: PKGBUILD 78792 2012-10-24 23:47:43Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Hisato Tatekura <hisato_tatekura@excentrics.net> # Contributor: Massimiliano Torromeo <massimiliano DOT torromeo AT google mail service> pkgname=unbound pkgver=1.4.18 -pkgrel=1 +pkgrel=2 pkgdesc='Validating, recursive, and caching DNS resolver' url='http://unbound.net/' license=('custom:BSD') diff --git a/community/unbound/install b/community/unbound/install index 34e7026d1..964792592 100644 --- a/community/unbound/install +++ b/community/unbound/install @@ -1,14 +1,6 @@ post_install() { getent group unbound &>/dev/null || groupadd -r unbound >/dev/null getent passwd unbound &>/dev/null || useradd -r -g unbound -d /etc/unbound -s /bin/false -c unbound unbound >/dev/null - cat <<EOF -==> Start with: /etc/rc.d/unbound start -==> Then, add "nameserver 127.0.0.1" to /etc/resolv.conf.head -EOF -} - -pre_remove() { - /etc/rc.d/unbound stop } post_remove() { diff --git a/community/v8/PKGBUILD b/community/v8/PKGBUILD index 039c2061e..9dcf911b9 100644 --- a/community/v8/PKGBUILD +++ b/community/v8/PKGBUILD @@ -1,41 +1,51 @@ -# $Id: PKGBUILD 75499 2012-08-26 09:56:04Z jelle $ +# $Id: PKGBUILD 78786 2012-10-24 19:28:22Z bpiotrowski $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: tocer <tocer.deng@gmail.com> pkgname=v8 -pkgver=3.13.0 +pkgver=3.14.0 pkgrel=1 -pkgdesc='A fast and modern javascript engine' -arch=('i686' 'x86_64' 'mips64el') +pkgdesc='Fast and modern javascript engine' +arch=('i686' 'x86_64') url='http://code.google.com/p/v8' license=('BSD') -depends=('gcc-libs') -makedepends=('scons') -source=("v8.tar.gz::https://github.com/v8/v8/tarball/$pkgver") -md5sums=('55878a54d5dc5674a5ade223d55965f6') +depends=('gcc-libs' 'readline') +makedepends=('subversion' 'python2') +source=($pkgname-$pkgver.tar.gz::https://github.com/v8/v8/tarball/$pkgver) +md5sums=('bcfec8d90a1d72d9962f3effa15e56c0') -build() { +[[ "$CARCH" = 'i686' ]] && ARCH=ia32 +[[ "$CARCH" = 'x86_64' ]] && ARCH=x64 +build() { cd $srcdir/$pkgname-$pkgname-* - [ "$CARCH" = 'i686' ] && SCONS_ARCH=ia32 - [ "$CARCH" = 'x86_64' ] && SCONS_ARCH=x64 + # Fetch gyp + make dependencies - scons mode=release library=shared arch=$SCONS_ARCH - scons d8 arch=$SCONS_ARCH + # The world isn't ready for python2 + export PYTHON=python2 + find build/ test/ tools/ src/ -type f \ + -exec sed -e 's_^#!/usr/bin/env python$_&2_' \ + -e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \ + -e 's_^#!/usr/bin/python$_&2_' \ + -e "s_'python'_'python2'_" -i {} \; + sed -i 's/python /python2 /' Makefile + make $ARCH.release library=shared console=readline } package() { - cd ${srcdir}/${pkgname}-$pkgname-* + cd $srcdir/$pkgname-$pkgname-* - install -Dm755 d8 "${pkgdir}/usr/bin/d8" - install -Dm755 libv8.so "${pkgdir}/usr/lib/libv8.so" + install -Dm755 out/$ARCH.release/d8 $pkgdir/usr/bin/d8 + install -Dm755 out/$ARCH.release/lib.target/libv8.so $pkgdir/usr/lib/libv8.so - # Include headers install -d $pkgdir/usr/include - install -Dm755 include/*.h $pkgdir/usr/include + install -Dm644 include/*.h $pkgdir/usr/include - install -d ${pkgdir}/usr/share/licenses/v8 + install -d $pkgdir/usr/share/licenses/v8 install -m644 LICENSE* ${pkgdir}/usr/share/licenses/v8 } + +# vim:set ts=2 sw=2 et: diff --git a/community/virtualbox-modules/PKGBUILD b/community/virtualbox-modules/PKGBUILD index 6850f7879..7a49a61e8 100644 --- a/community/virtualbox-modules/PKGBUILD +++ b/community/virtualbox-modules/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 78539 2012-10-20 11:51:18Z seblu $ +# $Id: PKGBUILD 78754 2012-10-24 07:11:32Z tpowa $ # Maintainer: Ionut Biru <ibiru@archlinux.org> # Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> pkgbase=virtualbox-modules pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules') pkgver=4.2.2 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') url='http://virtualbox.org' license=('GPL') diff --git a/core/btrfs-progs/PKGBUILD b/core/btrfs-progs/PKGBUILD index 786df5dd1..8dc1ad4fe 100644 --- a/core/btrfs-progs/PKGBUILD +++ b/core/btrfs-progs/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 168061 2012-10-05 15:07:13Z tomegun $ +# $Id: PKGBUILD 169609 2012-10-24 12:46:01Z tomegun $ # Maintainer: Tom Gundersen <teg@jklm.no> # Contributor: Tobias Powalowski <tpowa@archlinux.org> pkgname=btrfs-progs -pkgver=0.19.20120904 -pkgrel=7 +pkgver=0.19.20121005 +pkgrel=2 pkgdesc="btrfs filesystem utilities" arch=(i686 x86_64 mips64el) depends=('glibc' 'e2fsprogs') @@ -15,9 +15,11 @@ provides=('btrfs-progs-unstable') license=('GPL2') source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.xz initcpio-install-btrfs - initcpio-hook-btrfs - 70-btrfs.rules) -#install=btrfs-progs.install + initcpio-hook-btrfs) +install=btrfs-progs.install +md5sums=('7fb014324954ee073b039dc0066de960' + 'd7ad825b0b25f2be73289a20e7afcdb7' + 'b09688a915a0ec8f40e2f5aacbabc9ad') build() { cd $srcdir/$pkgname-$pkgver @@ -28,8 +30,6 @@ build() { "$pkgdir/usr/lib/initcpio/install/btrfs" install -Dm644 "$srcdir/initcpio-hook-btrfs" \ "$pkgdir/usr/lib/initcpio/hooks/btrfs" - install -Dm644 "$srcdir/70-btrfs.rules" \ - "$pkgdir/usr/lib/udev/rules.d/70-btrfs.rules" } package() { @@ -41,7 +41,3 @@ package() { mkdir -p ${pkgdir}/sbin ln -sf /usr/bin/btrfs ${pkgdir}/sbin/btrfs } -md5sums=('d9c96e670fac7c2098a9e7ef98d4b2e2' - 'e5186ec3fe8a809b7473470128d1c4ab' - '9fb35142755b477a96cb7292f3d64839' - '345c62c8b267082361729ca5b647518f') diff --git a/core/btrfs-progs/btrfs-progs.install b/core/btrfs-progs/btrfs-progs.install index 077d7529a..d6c0698a0 100644 --- a/core/btrfs-progs/btrfs-progs.install +++ b/core/btrfs-progs/btrfs-progs.install @@ -1,7 +1,7 @@ #!/bin/sh post_upgrade() { - if [ "$(vercmp 0.19.20120904-6 "$2")" -eq 1 ]; then + if [ "$(vercmp 0.19.20121005 "$2")" -eq 1 ]; then echo "btrfs multi-device support now relies on linux 3.6 or later" fi } diff --git a/core/btrfs-progs/initcpio-hook-btrfs b/core/btrfs-progs/initcpio-hook-btrfs index 913cec528..7965d0a8a 100644 --- a/core/btrfs-progs/initcpio-hook-btrfs +++ b/core/btrfs-progs/initcpio-hook-btrfs @@ -1,10 +1,7 @@ #!/usr/bin/ash run_hook() { - # if udevd is running, this is done async by add/change events - if [ "$udevd_running" -ne 1 ]; then - btrfs device scan - fi + btrfs device scan } # vim: set ft=sh ts=4 sw=4 et: diff --git a/core/btrfs-progs/initcpio-install-btrfs b/core/btrfs-progs/initcpio-install-btrfs index aad263378..aa06e55ac 100644 --- a/core/btrfs-progs/initcpio-install-btrfs +++ b/core/btrfs-progs/initcpio-install-btrfs @@ -4,13 +4,12 @@ build() { add_module btrfs add_binary btrfs add_runscript - - add_file /usr/lib/udev/rules.d/70-btrfs.rules } help() { cat <<HELPEOF -This hook provides support for multi-device btrfs volumes. +This hook provides support for multi-device btrfs volumes. This hook +is only needed for initramfs images which do not use udev. HELPEOF } diff --git a/core/iputils/PKGBUILD b/core/iputils/PKGBUILD index c3db8818b..ffe6511a2 100644 --- a/core/iputils/PKGBUILD +++ b/core/iputils/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 168366 2012-10-09 12:53:03Z stephane $ +# $Id: PKGBUILD 169611 2012-10-24 12:55:26Z stephane $ # Maintainer: Stéphane Gaudreault <stephane@archlinux.org> # Maintainer: Tobias Powalowski <tpowa@archlinux.org> # Contributor: Aaron Griffin <aaron@archlinux.org> pkgname=iputils -pkgver=20101006 -pkgrel=7 +pkgver=20121011 +pkgrel=1 pkgdesc="IP Configuration Utilities (and Ping)" arch=('i686' 'x86_64' 'mips64el') license=('GPL') @@ -20,7 +20,7 @@ backup=(etc/xinetd.d/tftp) install=${pkgname}.install source=(http://www.skbuff.net/${pkgname}/${pkgname}-s${pkgver}.tar.bz2 tftp.xinetd iputils-20101006-ping-integer-overflow.patch) -sha1sums=('a08cc5423a7bf940205f2353fe3d129cd39ff242' +sha1sums=('3e85179746fd93000d6267bd55addfe97f321ba7' 'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd' 'ec78574d798b53e4f8bdd37e42514fc17ed71667') diff --git a/core/ldns/PKGBUILD b/core/ldns/PKGBUILD index 827ca787c..66e20c82a 100644 --- a/core/ldns/PKGBUILD +++ b/core/ldns/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 159413 2012-05-23 22:28:28Z bisson $ +# $Id: PKGBUILD 169625 2012-10-24 23:47:25Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: mathieui <mathieui@mathieui.net> # Contributor: jiribb <jiribb@gmail.com> pkgname=ldns -pkgver=1.6.13 +pkgver=1.6.14 pkgrel=1 pkgdesc='Fast DNS library supporting recent RFCs' url='http://www.nlnetlabs.nl/projects/ldns/' @@ -15,7 +15,7 @@ depends=('openssl' 'dnssec-anchors') optdepends=('libpcap: ldns-dpa tool') makedepends=('libpcap') source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz") -sha1sums=('859f633d10b763f06b602e2113828cbbd964c7eb') +sha1sums=('2ef5fbf33b25d2f7b736c332ebccc0862dd12d02') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/core/openssh/PKGBUILD b/core/openssh/PKGBUILD index 6d3313bfe..d7d4ce5bd 100644 --- a/core/openssh/PKGBUILD +++ b/core/openssh/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 166025 2012-09-04 14:40:23Z bisson $ +# $Id: PKGBUILD 169626 2012-10-24 23:47:29Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Aaron Griffin <aaron@archlinux.org> # Contributor: judd <jvinet@zeroflux.org> pkgname=openssh pkgver=6.1p1 -pkgrel=2 +pkgrel=3 pkgdesc='Free version of the SSH connectivity tools' url='http://www.openssh.org/portable.html' license=('custom:BSD') @@ -25,10 +25,10 @@ source=("ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver} 'sshd') sha1sums=('751c92c912310c3aa9cadc113e14458f843fc7b3' '954bf1660aa32620c37034320877f4511b767ccb' - '6c71de2c2ca9622aa8e863acd94b135555e11125' + '6df5be396f8c593bb511a249a1453294d18a01a6' 'bd6eae36c7ef9efb7147778baad7858b81f2d660' - '1fd209980ee2fcdd7b219883e8add0f5ca63388a' - 'b7acfce018efc111e7ce80dbe37b932caf7c2d53' + 'f9af4a442b804ab661cec0edb25dd76dee16d8d2' + 'e12fa910b26a5634e5a6ac39ce1399a132cf6796' 'ec102deb69cad7d14f406289d2fc11fee6eddbdd' '659e3ee95c269014783ff8b318c6f50bf7496fbd' '1488d4ed33cf3037accf4b0e1c7a7e90b6a097c7') diff --git a/core/openssh/sshd.service b/core/openssh/sshd.service index b5c098b73..633164e5d 100644 --- a/core/openssh/sshd.service +++ b/core/openssh/sshd.service @@ -11,7 +11,6 @@ Restart=always [Install] WantedBy=multi-user.target -Also=sshdgenkeys.service # This service file runs an SSH daemon that forks for each incoming connection. # If you prefer to spawn on-demand daemons, use sshd.socket and sshd@.service. diff --git a/core/openssh/sshd.socket b/core/openssh/sshd.socket index 1b9403c99..e09e32869 100644 --- a/core/openssh/sshd.socket +++ b/core/openssh/sshd.socket @@ -8,4 +8,3 @@ Accept=yes [Install] WantedBy=sockets.target -Also=sshdgenkeys.service diff --git a/core/openssh/sshdgenkeys.service b/core/openssh/sshdgenkeys.service index 47c1c3fd6..8c27d7110 100644 --- a/core/openssh/sshdgenkeys.service +++ b/core/openssh/sshdgenkeys.service @@ -13,6 +13,3 @@ ConditionPathExists=|!/etc/ssh/ssh_host_rsa_key.pub ExecStart=/usr/bin/ssh-keygen -A Type=oneshot RemainAfterExit=yes - -[Install] -WantedBy=multi-user.target diff --git a/extra/cifs-utils/PKGBUILD b/extra/cifs-utils/PKGBUILD index 0814a9b6d..34cc4f141 100644 --- a/extra/cifs-utils/PKGBUILD +++ b/extra/cifs-utils/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 164812 2012-08-06 16:16:22Z tpowa $ +# $Id: PKGBUILD 169599 2012-10-24 07:18:13Z tpowa $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=cifs-utils -pkgver=5.6 -pkgrel=2 +pkgver=5.7 +pkgrel=1 pkgdesc="CIFS filesystem user-space tools" arch=(i686 x86_64 'mips64el') url="http://wiki.samba.org/index.php/LinuxCIFS_utils" @@ -24,4 +24,4 @@ package() { # set mount.cifs uid, to enable none root mounting form fstab chmod +s $pkgdir/usr/bin/mount.cifs } -md5sums=('89c94ff512e375b92899b79622604c39') +md5sums=('4215f12be8663f65d2c21dbbbafbc7f8') diff --git a/extra/cups-pk-helper/PKGBUILD b/extra/cups-pk-helper/PKGBUILD index 405874d97..b07530b05 100644 --- a/extra/cups-pk-helper/PKGBUILD +++ b/extra/cups-pk-helper/PKGBUILD @@ -1,7 +1,7 @@ -#$Id: PKGBUILD 156732 2012-04-23 09:04:15Z ibiru $ +#$Id: PKGBUILD 169617 2012-10-24 17:03:25Z ibiru $ # Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=cups-pk-helper -pkgver=0.2.2 +pkgver=0.2.4 pkgrel=1 pkgdesc="A helper that makes system-config-printer use PolicyKit" arch=(i686 x86_64 'mips64el') @@ -10,17 +10,17 @@ license=('GPL') depends=(polkit libcups) makedepends=(intltool) source=(http://www.freedesktop.org/software/$pkgname/releases/$pkgname-$pkgver.tar.xz) -sha256sums=('56a10efbc0f37db39a940d99d549c7f37fa95f1af4745b30b79c240b0f37cfd7') +sha256sums=('d187dc994ff64621aa090d114170b292daa11122481d8b8adb7613b32ca4e3c3') build() { - cd "$pkgname-$pkgver" + cd $pkgname-$pkgver ./configure --prefix=/usr --sysconfdir=/etc \ --libexecdir=/usr/lib/cups-pk-helper make } package() { - cd "$pkgname-$pkgver" + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install } diff --git a/extra/libtorrent-rasterbar/PKGBUILD b/extra/libtorrent-rasterbar/PKGBUILD index a22fdf1ac..b83b9babd 100644 --- a/extra/libtorrent-rasterbar/PKGBUILD +++ b/extra/libtorrent-rasterbar/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 169448 2012-10-21 11:01:54Z ibiru $ +# $Id: PKGBUILD 169612 2012-10-24 12:56:39Z ibiru $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Hugo Doria <hugo@archlinux.org> pkgname=libtorrent-rasterbar -pkgver=0.16.4 +pkgver=0.16.5 pkgrel=1 epoch=1 pkgdesc="A C++ library that aims to be a good alternative to all the other bittorrent implementations around" @@ -14,7 +14,7 @@ depends=('boost-libs' 'geoip' 'python2') makedepends=('boost') options=('!libtool' '!emptydirs') source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz) -sha1sums=('f8695373c574a6801b4dfe7030e0a0c4bb610abd') +sha1sums=('dde29c7a51392d9098de23e2e69a993a5c380016') build() { cd $pkgname-$pkgver diff --git a/extra/usermin/PKGBUILD b/extra/usermin/PKGBUILD index 33e1931ab..ec40288ad 100644 --- a/extra/usermin/PKGBUILD +++ b/extra/usermin/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 167307 2012-09-30 20:46:00Z tpowa $ +# $Id: PKGBUILD 169610 2012-10-24 12:47:17Z tomegun $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=usermin pkgver=1.520 -pkgrel=1 +pkgrel=2 pkgdesc="a web interface that can be used to easily perform tasks like reading mail, setting up SSH or configuring mail forwarding" arch=(i686 x86_64 'mips64el') license=('custom:usermin') @@ -45,6 +45,7 @@ backup=('etc/usermin/miniserv.conf' 'etc/usermin/miniserv.users' 'etc/usermin/co install=usermin.install source=(http://downloads.sourceforge.net/sourceforge/webadmin/$pkgname-$pkgver.tar.gz usermin.rc + usermin.service ftp://ftp.archlinux.org/other/usermin/usermin-config.tar.bz2) build() { @@ -116,7 +117,10 @@ build() { # enable user and password login sed -i -e '/localauth/d' $startdir/pkg/etc/usermin/miniserv.conf - #install rc file + #install systemd service file + install -D -m 644 $startdir/src/usermin.service $startdir/pkg/usr/lib/systemd/system/usermin.service + + #install rc file install -D -m 755 $startdir/src/usermin.rc $startdir/pkg/etc/rc.d/usermin # delete temp dir @@ -126,4 +130,5 @@ build() { } md5sums=('5819ba87796d9373a92116e90d1a35d4' 'cfef4490cd1ef9517c0b39a7bd75c968' + 'a5bd5e5ee779f8a3cf3d776ca77ee36e' 'ec37a79f948f778224550930d2a7ca07') diff --git a/extra/usermin/usermin.service b/extra/usermin/usermin.service new file mode 100644 index 000000000..e91164c63 --- /dev/null +++ b/extra/usermin/usermin.service @@ -0,0 +1,9 @@ +[Unit] +Description=Usermin + +[Service] +Type=forking +ExecStart=/opt/usermin/miniserv.pl /etc/usermin/miniserv.conf + +[Install] +WantedBy=multi-user.target diff --git a/extra/xterm/PKGBUILD b/extra/xterm/PKGBUILD index d0f433cbe..e26c2b5aa 100644 --- a/extra/xterm/PKGBUILD +++ b/extra/xterm/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 168924 2012-10-16 15:02:37Z andyrtr $ +# $Id: PKGBUILD 169622 2012-10-24 19:19:13Z andyrtr $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: Alexander Baldeck <alexander@archlinux.org> pkgname=xterm -pkgver=284 +pkgver=285 pkgrel=1 pkgdesc="X Terminal Emulator" arch=('i686' 'x86_64' 'mips64el') @@ -12,7 +12,7 @@ license=('custom') depends=('libxft' 'libxaw' 'ncurses' 'xorg-luit' 'xbitmaps') source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver}.tgz LICENSE) -md5sums=('fa6bd90b91365f41c6bb895bee054c12' +md5sums=('8863bb871edcaf84560bb37eaedd4bee' '10ecc3f8ee91e3189863a172f68282d2') build() { diff --git a/libre/parabola-keyring/PKGBUILD b/libre/parabola-keyring/PKGBUILD index cb0930c8c..fb048355c 100644 --- a/libre/parabola-keyring/PKGBUILD +++ b/libre/parabola-keyring/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: André Silva <emulatorman@lavabit.com> pkgname=parabola-keyring -pkgver=20121023 +pkgver=20121024 pkgrel=1 pkgdesc='Parabola GNU/Linux-libre PGP keyring' arch=('any') @@ -16,5 +16,5 @@ package() { cd "${srcdir}/${pkgname}-${pkgver}" make PREFIX=/usr DESTDIR=${pkgdir} install } -md5sums=('8a9036ae921c4f94fbadfaa264801a68' - '187123f4517f90ac325da8b58fc6e3e5') +md5sums=('7aebac7b4735117617f718058e0602f5' + '3b0183f30e786ea7197427199f9fa4f6') diff --git a/testing/ldns/PKGBUILD b/testing/ldns/PKGBUILD deleted file mode 100644 index 4613191f4..000000000 --- a/testing/ldns/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 169587 2012-10-23 22:55:24Z bisson $ -# Maintainer: Gaetan Bisson <bisson@archlinux.org> -# Contributor: mathieui <mathieui@mathieui.net> -# Contributor: jiribb <jiribb@gmail.com> - -pkgname=ldns -pkgver=1.6.14 -pkgrel=1 -pkgdesc='Fast DNS library supporting recent RFCs' -url='http://www.nlnetlabs.nl/projects/ldns/' -license=('custom:BSD') -arch=('i686' 'x86_64') -options=('!libtool') -depends=('openssl' 'dnssec-anchors') -optdepends=('libpcap: ldns-dpa tool') -makedepends=('libpcap') -source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz") -sha1sums=('2ef5fbf33b25d2f7b736c332ebccc0862dd12d02') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --enable-static=no \ - --disable-rpath \ - --with-drill \ - --with-examples \ - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}" install - - install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} diff --git a/testing/nss-myhostname/PKGBUILD b/testing/nss-myhostname/PKGBUILD deleted file mode 100644 index 18b582043..000000000 --- a/testing/nss-myhostname/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 169556 2012-10-23 14:16:38Z tomegun $ -# Maintainer: Tom Gundersen <teg@jklm.no> -# Contributor: Mantas M. <grawity@gmail.com> -pkgname="nss-myhostname" -pkgver=0.3 -pkgrel=3 -pkgdesc="NSS plugin providing host name resolution for the locally configured system hostname" -arch=(i686 x86_64) -url="http://0pointer.de/lennart/projects/nss-myhostname/" -license=('LGPL2.1') -depends=('glibc') -groups=('base') -source=("http://0pointer.de/lennart/projects/${pkgname}/${pkgname}-${pkgver}.tar.gz") - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-lynx - make -} - -package() { - cd "$srcdir/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install -} - -md5sums=('d4ab9ac36c053ab8fb836db1cbd4a48f') diff --git a/testing/ptlib/PKGBUILD b/testing/ptlib/PKGBUILD deleted file mode 100644 index ed26e6d29..000000000 --- a/testing/ptlib/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 169545 2012-10-23 11:47:51Z jgc $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -pkgname=ptlib -pkgver=2.10.7 -pkgrel=2 -pkgdesc="Portable Windows Library" -arch=('i686' 'x86_64') -url="http://www.opalvoip.org" -license=('GPL') -depends=('sdl' 'libpulse' 'v4l-utils' 'libldap') -replaces=('pwlib') -conflicts=('pwlib') -source=(http://downloads.sourceforge.net/sourceforge/opalvoip/$pkgname-$pkgver.tar.bz2) -md5sums=('7fb74a97743fcc5f33d0f97dec7bc878') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib \ - --sysconfdir=/etc --localstatedir=/var \ - --enable-opal --enable-plugins \ - --enable-oss --enable-v4l2 \ - --disable-avc --enable-sdl \ - --enable-ipv6 --enable-v4l \ - --enable-dc --disable-odbc \ - --enable-expat --enable-httpforms - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install -} |