diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-01-26 10:54:14 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-01-26 10:54:14 -0300 |
commit | 38e7e59a562c5f8ea83719e4dfd5cd4c9917d5b1 (patch) | |
tree | 8097f94554cc6e2c64d19db24e56e70e041e7757 | |
parent | 328b5407de9f088d32c429b1b37f6efde3da06f8 (diff) | |
parent | 7d3e94229ca9849421d263542eb2c61f64a91c10 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/bird/PKGBUILD
community/gmic/PKGBUILD
community/linux-tools/PKGBUILD
community/linux-tools/cpupower.systemd
community/linux-tools/usbipd.service
community/macchanger/PKGBUILD
community/ndisc6/PKGBUILD
community/nemiver/PKGBUILD
core/gpgme/PKGBUILD
extra/amarok/PKGBUILD
extra/java-commons-daemon/PKGBUILD
extra/libao/PKGBUILD
extra/liblastfm/PKGBUILD
81 files changed, 819 insertions, 366 deletions
diff --git a/community/acpid/0001-Fix-format-of-video-tabletmode-event-string.patch b/community/acpid/0001-Fix-format-of-video-tabletmode-event-string.patch new file mode 100644 index 000000000..d111214d3 --- /dev/null +++ b/community/acpid/0001-Fix-format-of-video-tabletmode-event-string.patch @@ -0,0 +1,45 @@ +From ddf5be1f8fc35c38dc241ca935bf4d408f2ff61d Mon Sep 17 00:00:00 2001 +From: Ted Felix <ted@tedfelix.com> +Date: Thu, 17 Jan 2013 20:03:54 -0500 +Subject: [PATCH] Fix format of video/tabletmode event string + +The previous format caused Xorg's xserver to crash in +lnxACPIGetEventFromOs() because it doesn't check for NULL +returns from strtok(). +--- + input_layer.c | 12 ++++++++++-- + 1 file changed, 10 insertions(+), 2 deletions(-) + +diff --git a/input_layer.c b/input_layer.c +index 591ad64..db410c0 100644 +--- a/input_layer.c ++++ b/input_layer.c +@@ -56,6 +56,14 @@ struct evtab_entry { + evtest.c, acpi_genl, or kacpimon to find new events to add to this + table. */ + ++/* ++ * The two numbers (e.g. "00000080 00000000") in each string is a format ++ * that Xorg and maybe others expect. ++ * ++ * See hw/xfree86/os-support/linux/lnx_acpi.c in xserver and specifically ++ * lnxACPIGetEventFromOs(). ++ */ ++ + static struct evtab_entry evtab[] = { + + /*** COMMON EVENTS ***/ +@@ -66,8 +74,8 @@ static struct evtab_entry evtab[] = { + {{{0,0}, EV_KEY, KEY_SLEEP, 1}, "button/sleep SBTN 00000080 00000000"}, + {{{0,0}, EV_SW, SW_LID, 1}, "button/lid LID close"}, + {{{0,0}, EV_SW, SW_LID, 0}, "button/lid LID open"}, +- {{{0,0}, EV_SW, SW_TABLET_MODE, 0}, "video/tabletmode TBLT off"}, +- {{{0,0}, EV_SW, SW_TABLET_MODE, 1}, "video/tabletmode TBLT on"}, ++ {{{0,0}, EV_SW, SW_TABLET_MODE, 0}, "video/tabletmode TBLT 0000008A 00000000"}, ++ {{{0,0}, EV_SW, SW_TABLET_MODE, 1}, "video/tabletmode TBLT 0000008A 00000001"}, + + + /*** VIDEO ***/ +-- +1.8.1.1 + diff --git a/community/acpid/PKGBUILD b/community/acpid/PKGBUILD index 5bf2b9974..355f848fb 100644 --- a/community/acpid/PKGBUILD +++ b/community/acpid/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 77739 2012-10-14 03:02:21Z seblu $ +# $Id: PKGBUILD 82787 2013-01-24 12:57:51Z seblu $ # Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> # Contributor: xduugu # Contributor: Manolis Tzanidakis @@ -6,7 +6,7 @@ pkgname=acpid pkgver=2.0.17 -pkgrel=3 +pkgrel=4 pkgdesc='A daemon for delivering ACPI power management events with netlink support' arch=('i686' 'x86_64' 'mips64el') url='http://tedfelix.com/linux/acpid-netlink.html' @@ -14,24 +14,23 @@ license=('GPL') depends=('bash') optdepends=('perl: use perl based examples') replaces=('acpid2') -backup=('etc/acpi/handler.sh' 'etc/acpi/events/anything' 'etc/conf.d/acpid') +backup=('etc/acpi/handler.sh' 'etc/acpi/events/anything') source=("http://www.tedfelix.com/linux/$pkgname-$pkgver.tar.xz" - 'acpid.rc' - 'acpid.conf' 'acpid.socket' 'acpid.service' 'anything' - 'handler.sh') + 'handler.sh' + '0001-Fix-format-of-video-tabletmode-event-string.patch') md5sums=('d858729b7d984c5e3a0c7558e9de1584' - '077475c75fbdd9de75f9a397130ccd91' - '929c6d2e91295c22ed9ec6212d7eabef' 'ee6cb99e50e580c50331a73045412ae9' - '7f545754db5be7296d2dd97c049062ee' + '10290f69491206cd104654e5b900b661' '2d37b98d6e74bab815604b8b48c6cfd4' - '47f44ff5f02685dce8bcdab8568f0c38') + '47f44ff5f02685dce8bcdab8568f0c38' + 'a813e00553104f2129f64cae95a7983f') build() { cd $pkgname-$pkgver + patch -p1 -i "$srcdir/0001-Fix-format-of-video-tabletmode-event-string.patch" ./configure --prefix=/usr make } @@ -45,9 +44,7 @@ package() { install -Dm644 anything "$pkgdir/etc/acpi/events/anything" install -Dm755 handler.sh "$pkgdir/etc/acpi/handler.sh" - # initscripts - install -Dm755 acpid.rc "$pkgdir/etc/rc.d/acpid" - install -Dm644 acpid.conf "$pkgdir/etc/conf.d/acpid" + # systemd install -Dm644 acpid.socket "$pkgdir/usr/lib/systemd/system/acpid.socket" install -Dm644 acpid.service "$pkgdir/usr/lib/systemd/system/acpid.service" @@ -55,4 +52,4 @@ package() { chmod 755 "$pkgdir/usr/sbin/acpid" } -# vim:set ts=2 sw=2 ft=sh et: +# vim:set ts=2 sw=2 et: diff --git a/community/acpid/acpid.service b/community/acpid/acpid.service index 4c0e073b0..e4ddacdbe 100644 --- a/community/acpid/acpid.service +++ b/community/acpid/acpid.service @@ -3,8 +3,7 @@ Description=ACPI event daemon Requires=acpid.socket [Service] -EnvironmentFile=/etc/conf.d/acpid -ExecStart=/usr/sbin/acpid -f $ACPID_ARGS +ExecStart=/usr/sbin/acpid -f [Install] WantedBy=multi-user.target diff --git a/community/arptables/PKGBUILD b/community/arptables/PKGBUILD index 21023214b..03485a112 100644 --- a/community/arptables/PKGBUILD +++ b/community/arptables/PKGBUILD @@ -1,26 +1,22 @@ -# $Id: PKGBUILD 71317 2012-05-26 14:59:39Z seblu $ +# $Id: PKGBUILD 82774 2013-01-24 11:14:44Z seblu $ # Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> # Contributor: Daniel Micay <danielmicay@gmail.com> # Contributor: Michal Soltys <soltys@ziu.info> pkgname=arptables -pkgver=0.0.3_4 -pkgrel=3 +pkgver=0.0.4 +pkgrel=1 pkgdesc='ARP filtering utility' arch=('i686' 'x86_64' 'mips64el') url='http://ebtables.sourceforge.net/' +depends=('glibc' 'perl' 'bash') license=('GPL') -backup=("etc/$pkgname.conf" "etc/conf.d/$pkgname") -install=$pkgname.install +backup=("etc/$pkgname.conf") source=("http://downloads.sourceforge.net/ebtables/$pkgname-v${pkgver//_/-}.tar.gz" - "$pkgname.conf" - "$pkgname.rc" "$pkgname.systemd" "$pkgname.service") -md5sums=('1d4ab05761f063b0751645d8f2b8f8e5' - '00bfb5bd8a83a5b466c650ee5d8f86f3' - '60e0319b55b1ef9e13d9ac03dd98c8d4' - '65a9ed0b866f727184a87e4d480975bd' +md5sums=('c2e99c3aa9d78c9dfa30710ca3168182' + 'e54342a833c52b2bc67e7985e8f8fdfd' 'b26771191e52905d8aea6333c26cb1c3') build() { @@ -39,16 +35,15 @@ package() { INITDIR=/etc/rc.d \ SYSCONFIGDIR=/etc popd - # install initscripts - install -Dm 755 $pkgname.rc "$pkgdir/etc/rc.d/$pkgname" - install -Dm 644 $pkgname.conf "$pkgdir/etc/conf.d/$pkgname" - # install systemd service + # systemd install -Dm 755 $pkgname.systemd \ "$pkgdir/usr/lib/systemd/scripts/$pkgname" install -Dm 644 $pkgname.service \ "$pkgdir/usr/lib/systemd/system/$pkgname.service" # default config file install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf" + # remove upstream rc + rm -rf "$pkgdir/etc/rc.d" } -# vim:set ts=2 sw=2 ft=sh et: +# vim:set ts=2 sw=2 et: diff --git a/community/arptables/arptables.systemd b/community/arptables/arptables.systemd index bc5acdbcf..6a4019257 100644 --- a/community/arptables/arptables.systemd +++ b/community/arptables/arptables.systemd @@ -1,13 +1,12 @@ #!/bin/bash -. /etc/conf.d/arptables +CONFIG_FILE='/etc/arptables.conf' case $1 in start) arptables-restore < "$CONFIG_FILE" ;; stop) - [[ $SAVE_ON_STOP =~ [yY][eE][sS] ]] && $0 save arptables-restore < /dev/null ;; save) diff --git a/community/bird/PKGBUILD b/community/bird/PKGBUILD index d25f71aa7..332b9fd78 100644 --- a/community/bird/PKGBUILD +++ b/community/bird/PKGBUILD @@ -1,24 +1,20 @@ -# $Id: PKGBUILD 75510 2012-08-26 17:46:55Z seblu $ +# $Id: PKGBUILD 82772 2013-01-24 11:12:07Z seblu $ # Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> pkgbase=bird pkgname=('bird' 'bird6') -pkgver=1.3.8 -pkgrel=2 +pkgver=1.3.9 +pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url='http://bird.network.cz/' license=('GPL2') depends=('readline' 'ncurses') source=("ftp://bird.network.cz/pub/bird/${pkgname}-${pkgver}.tar.gz" - 'bird.rc' - 'bird.conf' 'bird.service' 'bird6.service') -md5sums=('965fee1be1d5cd45ceef3926e49c18ce' - '5e5346a057f187f56cce928b7e423636' - '25241a4d7ef639506e0080431b2c1690' - '14e684c84249b8f7748d94eee6df155a' - '4988006fc8169c5e00771c75ca67e78f') +md5sums=('86042560b5053dd008ba0b5ecbdde136' + 'ccd12c994501e28a7256a6a2a17154b2' + '631eea3de9be2f259aaf91f281d2d39a') build() { cd $pkgbase-$pkgver @@ -48,10 +44,7 @@ package_bird () { # no /var inside pkg rm -r "$pkgdir/var" - # iniscripts files - install -D -m 755 "$srcdir/bird.rc" "$pkgdir/etc/rc.d/bird" - install -D -m 644 "$srcdir/bird.conf" "$pkgdir/etc/conf.d/bird" - # systemd file + # systemd install -D -m 644 "$srcdir/bird.service" "$pkgdir/usr/lib/systemd/system/bird.service" } @@ -66,11 +59,8 @@ package_bird6 () { # no /var inside pkg rm -r "$pkgdir/var" - # iniscripts files - install -D -m 755 "$srcdir/bird.rc" "$pkgdir/etc/rc.d/bird6" - install -D -m 644 "$srcdir/bird.conf" "$pkgdir/etc/conf.d/bird6" - # systemd config file + # systemd install -D -m 644 "$srcdir/bird6.service" "$pkgdir/usr/lib/systemd/system/bird6.service" } -# vim:set ts=2 sw=2 ft=sh et: +# vim:set ts=2 sw=2 et: diff --git a/community/bird/bird.service b/community/bird/bird.service index b72247208..f40068646 100644 --- a/community/bird/bird.service +++ b/community/bird/bird.service @@ -1,5 +1,6 @@ [Unit] Description=BIRD routing daemon +After=network.target [Service] ExecStart=/usr/sbin/bird -d diff --git a/community/bird/bird6.service b/community/bird/bird6.service index 4d245d187..284c75842 100644 --- a/community/bird/bird6.service +++ b/community/bird/bird6.service @@ -1,5 +1,6 @@ [Unit] Description=BIRD IPv6 routing daemon +After=network.target [Service] ExecStart=/usr/sbin/bird6 -d diff --git a/community/gdal/PKGBUILD b/community/gdal/PKGBUILD index f788a3902..a3eb291c0 100644 --- a/community/gdal/PKGBUILD +++ b/community/gdal/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 63578 2012-02-05 11:57:36Z ibiru $ +# $Id: PKGBUILD 82847 2013-01-25 01:53:13Z svenstaro $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org # Contributor: William Rea <sillywilly@gmail.com> pkgname=gdal -pkgver=1.9.0 +pkgver=1.9.1 pkgrel=1 pkgdesc="A translator library for raster geospatial data formats" arch=('i686' 'x86_64' 'mips64el') url="http://www.gdal.org/" license=('custom') -depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg' 'libpng' 'libtiff' 'netcdf' 'python2' 'python2-numpy' 'cfitsio' 'sqlite3' 'libmysqlclient' 'postgresql-libs') +depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg' 'libpng' 'libtiff' 'netcdf' 'python2' 'python2-numpy' 'cfitsio' 'sqlite' 'libmysqlclient' 'postgresql-libs') makedepends=('perl' 'swig') optdepends=('postgresql: postgresql database support' 'mysql: mysql database support' @@ -20,7 +20,7 @@ options=('!libtool') changelog=$pkgname.changelog source=(http://download.osgeo.org/${pkgname}/${pkgname}-${pkgver}.tar.gz gdal-1.5.1-python-install.patch) -md5sums=('1853f3d8eb5232ae030abe007840cade' +md5sums=('c5cf09b92dac1f5775db056e165b34f5' '81afc1c26d29cee84aadb6924fe33861') build() { diff --git a/community/gmic/PKGBUILD b/community/gmic/PKGBUILD index 91e89eee3..56e2f337c 100644 --- a/community/gmic/PKGBUILD +++ b/community/gmic/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 78931 2012-10-27 23:44:41Z ebelanger $ +# $Id: PKGBUILD 82913 2013-01-25 17:29:35Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> # Contributor: farid <farid at archlinuc-br.org> @@ -6,8 +6,8 @@ pkgbase=gmic pkgname=("gmic" "gimp-plugin-gmic" "zart") -pkgver=1.5.1.8 -pkgrel=4 +pkgver=1.5.3.0 +pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url="http://gmic.sourceforge.net" license=("custom:CeCILL") @@ -15,8 +15,8 @@ makedepends=("gimp" "qt" "fftw" "openexr" "opencv") #options=('!emptydirs') source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz" "opencv-buildfix.patch") -md5sums=('1fc38346269bdd829dd7c4864a27fbc3' - '8d1cf5000239099255d25c7d3dbe5728') +md5sums=('2b3c385d727556d201767d338d97946f' + '120319b0d6c81c5af186abe2281b79ca') build() { cd "${srcdir}/gmic-${pkgver}" diff --git a/community/gmic/opencv-buildfix.patch b/community/gmic/opencv-buildfix.patch index b204cb721..ae6f71487 100644 --- a/community/gmic/opencv-buildfix.patch +++ b/community/gmic/opencv-buildfix.patch @@ -18,15 +18,3 @@ diff -wbBur gmic-1.5.1.7/src/Makefile gmic-1.5.1.7.q/src/Makefile if test -d /etc/bash_completion.d/; then mkdir -p $(DESTDIR)/etc/bash_completion.d/; cp -f gmic_bashcompletion.sh $(DESTDIR)/etc/bash_completion.d/gmic; fi if test -d /opt/local/etc/bash_completion.d/; then mkdir -p $(DESTDIR)/opt/local/etc/bash_completion.d/; cp -f gmic_bashcompletion.sh $(DESTDIR)/opt/local/etc/bash_completion.d/gmic; fi -diff -wbBur gmic-1.5.1.7/zart/zart.pro gmic-1.5.1.7.q/zart/zart.pro ---- gmic-1.5.1.7/zart/zart.pro 2012-07-26 12:59:33.000000000 +0400 -+++ gmic-1.5.1.7.q/zart/zart.pro 2012-08-03 12:32:27.000000000 +0400 -@@ -34,7 +34,7 @@ - FORMS = ui/MainWindow.ui ui/DialogAbout.ui ui/DialogLicence.ui - - !macx { -- LIBS += -lX11 ../src/libgmic.a -lcxcore -lcv -lml -lhighgui -lml -lfftw3 -+ LIBS += -lX11 ../src/libgmic.a `pkg-config --libs opencv` -lopencv_core -lopencv_ml -lopencv_highgui -lfftw3 - } else { - LIBS += -lX11 ../src/libgmic.a `pkg-config opencv --libs` -lfftw3 - } diff --git a/community/gnote/PKGBUILD b/community/gnote/PKGBUILD index 71a0e4a0c..b94941c8e 100644 --- a/community/gnote/PKGBUILD +++ b/community/gnote/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 79122 2012-10-30 23:06:42Z heftig $ +# $Id: PKGBUILD 82837 2013-01-24 20:04:23Z ioni $ # Maintainer: Ionut Biru <ibiru@archlinux.org> # Contributor: uastasi <uastasi@archlinux.us> pkgname=gnote -pkgver=3.6.1 +pkgver=3.6.2 pkgrel=1 pkgdesc="A note taking application." arch=('i686' 'x86_64' 'mips64el') @@ -13,7 +13,7 @@ makedepends=('intltool' 'itstool' 'boost') options=('!libtool') install=gnote.install source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('f1f62ccf9cce1eef2ee2b41039360f946f3b4223983ca52223ccb6687a59f2f9') +sha256sums=('38f3b069874658f281445e04b8376d946580e4a5e39620f7e30fdd8216d46c1e') build() { cd $pkgname-$pkgver diff --git a/community/inn/PKGBUILD b/community/inn/PKGBUILD index ab6e3ca69..9ec3784ca 100644 --- a/community/inn/PKGBUILD +++ b/community/inn/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 76159 2012-09-12 10:42:46Z spupykin $ +# $Id: PKGBUILD 82923 2013-01-25 21:39:24Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Edward Tjörnhammar <xhemi@cube2.se> # Contributor: Edward Tjörnhammar <xhemi@cube2.se> pkgname=inn pkgver=2.5.3 -pkgrel=1 +pkgrel=2 pkgdesc="Complete open source Usenet system. De facto standard for handling news routing, news spool and serving the spool to customers." url="http://www.isc.org/software/inn/" arch=('i686' 'x86_64' 'mips64el') @@ -52,6 +52,7 @@ source=(http://ftp.isc.org/isc/inn/inn-$pkgver.tar.gz innd.conf nnrpd.conf innd.service + inn.tmpfiles site.make.patch) md5sums=('353fe95232828ddbc80debff86c240bc' 'a243d9498568f1beee20da5684b5fbfc' @@ -59,6 +60,7 @@ md5sums=('353fe95232828ddbc80debff86c240bc' 'fbf1d2c5b3c5a08ae3e515c71c2e2e4a' 'bb4bbe86ae52fbbf08b0f6f370dea052' '9da925a486fcf0cd67fdf462cbb9c0b4' + '050b7bffff3361c673a118739e42349e' '960c800026ed6e03901cf0bafdfd53d8') build() { @@ -133,4 +135,5 @@ package() { chmod 05555 $pkgdir/usr/bin/innbind install -Dm0644 $srcdir/innd.service $pkgdir/usr/lib/systemd/system/innd.service + install -Dm0644 $srcdir/inn.tmpfiles $pkgdir/usr/lib/tmpfiles.d/inn.conf } diff --git a/community/inn/inn.tmpfiles b/community/inn/inn.tmpfiles new file mode 100644 index 000000000..234b97c2c --- /dev/null +++ b/community/inn/inn.tmpfiles @@ -0,0 +1 @@ +d /run/inn 0755 news news - diff --git a/community/iperf/PKGBUILD b/community/iperf/PKGBUILD index 58fe40947..7c98b4f7a 100644 --- a/community/iperf/PKGBUILD +++ b/community/iperf/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 80971 2012-12-08 03:52:17Z seblu $ +# $Id: PKGBUILD 82783 2013-01-24 12:34:05Z seblu $ # Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> # Contributor: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Dale Blount <dale@archlinux.org> pkgname=iperf pkgver=2.0.5 -pkgrel=6 +pkgrel=7 pkgdesc='A tool to measure maximum TCP bandwidth' arch=('i686' 'x86_64' 'mips64el') license=('custom') @@ -13,16 +13,12 @@ url='http://iperf.sourceforge.net' depends=('gcc-libs') install=iperf.install source=("http://downloads.sourceforge.net/iperf/iperf-$pkgver.tar.gz" - 'iperf.rc' - 'iperf.conf' 'iperf-tcp.service' 'iperf-udp.service' 'client.cpp.patch') md5sums=('44b5536b67719f4250faed632a3cd016' - 'e99dc0d41eb800970390dd149d70b544' - 'c75cb18434c6bf19fdc89b9caa766d7d' - 'd2203fb26bb50a3378c2699714ada8e5' - '573964ec1b1558a78cd667459676cdb7' + '1d8660b540aa0db2e627d3d400cb8de4' + 'a27a8d27b1585bc999a04a2f082e2726' '82ce63c87cc8bb2f0f94069857ac14a9') build() { @@ -41,9 +37,7 @@ package() { make DESTDIR="$pkgdir" install install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE" popd - # install initscripts - install -Dm755 iperf.rc "$pkgdir/etc/rc.d/iperf" - install -Dm644 iperf.conf "$pkgdir/etc/conf.d/iperf" + # systemd install -Dm644 iperf-tcp.service "$pkgdir/usr/lib/systemd/system/iperf-tcp.service" install -Dm644 iperf-udp.service "$pkgdir/usr/lib/systemd/system/iperf-udp.service" } diff --git a/community/iperf/iperf-tcp.service b/community/iperf/iperf-tcp.service index 29967815a..ccb8401c8 100644 --- a/community/iperf/iperf-tcp.service +++ b/community/iperf/iperf-tcp.service @@ -1,5 +1,6 @@ [Unit] Description=Iperf TCP Server +After=network.target [Service] ExecStart=/usr/bin/iperf -s -V diff --git a/community/iperf/iperf-udp.service b/community/iperf/iperf-udp.service index 2253f9c45..b3c5d2686 100644 --- a/community/iperf/iperf-udp.service +++ b/community/iperf/iperf-udp.service @@ -1,5 +1,6 @@ [Unit] Description=Iperf UDP Server +After=network.target [Service] ExecStart=/usr/bin/iperf -u -s -V diff --git a/community/ipset/PKGBUILD b/community/ipset/PKGBUILD index 30f3e07e4..93dfedb16 100644 --- a/community/ipset/PKGBUILD +++ b/community/ipset/PKGBUILD @@ -1,25 +1,21 @@ -# $Id: PKGBUILD 80651 2012-11-28 16:13:35Z seblu $ +# $Id: PKGBUILD 82785 2013-01-24 12:55:11Z seblu $ # Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> pkgname=ipset pkgver=6.16.1 -pkgrel=1 +pkgrel=2 pkgdesc='Administration tool for IP sets' arch=('i686' 'x86_64' 'mips64el') url='http://ipset.netfilter.org' license=('GPL2') -depends=('libmnl') -backup=("etc/$pkgname.conf" "etc/conf.d/$pkgname") +depends=('libmnl' 'bash') +backup=("etc/$pkgname.conf") options=('!libtool') source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2" - "$pkgname.conf" - "$pkgname.rc" "$pkgname.systemd" "$pkgname.service") md5sums=('9fd70c825f052db7dc9d5ba0562b7083' - '3e606a2823a700b4e9c5f17511a6f6a5' - 'de89b054d967036e08b13bc6a7235286' - 'dfc3105b89ed41fc4a1feb4f4f13f2a3' + '7daa4f163eef9db216cb4c428e0342a3' 'b032241b96b5802975fe4321cc511c6b') build() { @@ -34,11 +30,10 @@ package() { # install doc install -dm755 "$pkgdir/usr/share/doc/$pkgname" install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname" + # install pkgconfig file + install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc" popd - # install initscripts - install -Dm 755 $pkgname.rc "$pkgdir/etc/rc.d/$pkgname" - install -Dm 644 $pkgname.conf "$pkgdir/etc/conf.d/$pkgname" - # install systemd service + # systemd install -Dm 755 $pkgname.systemd \ "$pkgdir/usr/lib/systemd/scripts/$pkgname" install -Dm 644 $pkgname.service \ @@ -47,4 +42,4 @@ package() { install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf" } -# vim:set ts=2 sw=2 ft=sh et: +# vim:set ts=2 sw=2 et: diff --git a/community/ipset/ipset.systemd b/community/ipset/ipset.systemd index 92397f3a7..c28086322 100644 --- a/community/ipset/ipset.systemd +++ b/community/ipset/ipset.systemd @@ -1,13 +1,12 @@ #!/bin/bash -. /etc/conf.d/ipset +CONFIG_FILE='/etc/ipset.conf' case $1 in start) ipset restore < "$CONFIG_FILE" ;; stop) - [[ $SAVE_ON_STOP =~ [yY][eE][sS] ]] && $0 save ipset destroy ;; save) diff --git a/community/librime/PKGBUILD b/community/librime/PKGBUILD index 5b9445720..d1899bb58 100644 --- a/community/librime/PKGBUILD +++ b/community/librime/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 82381 2013-01-16 11:25:08Z fyan $ +# $Id: PKGBUILD 82860 2013-01-25 04:19:04Z svenstaro $ # Maintainer: Felix Yan <felixonmars@gmail.com> # Contributor: GONG Chen <chen dot sst at gmail dot com> # Contributor: 網軍總司令 pkgname=librime pkgver=0.9.7 -pkgrel=1 +pkgrel=3 pkgdesc="Rime input method engine" arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/rimeime/" license=('GPL3') -depends=('boost>=1.46' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp') +depends=('boost>=1.46' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp0.3') optdepends=('brise: Rime schema repository') makedepends=('cmake') source=("http://rimeime.googlecode.com/files/$pkgname-$pkgver.tar.gz") diff --git a/community/linux-tools/cpupower.default b/community/linux-tools/cpupower.default new file mode 100644 index 000000000..b5c522ea1 --- /dev/null +++ b/community/linux-tools/cpupower.default @@ -0,0 +1,29 @@ +# Define CPUs governor +# valid governors: ondemand, performance, powersave, conservative, userspace. +#governor='ondemand' + +# Limit frequency range +# Valid suffixes: Hz, kHz (default), MHz, GHz, THz +#min_freq="2.25GHz" +#max_freq="3GHz" + +# Specific frequency to be set. +# Requires userspace governor to be available. +# Do not set governor field if you use this one. +#freq= + +# Utilizes cores in one processor package/socket first before processes are +# scheduled to other processor packages/sockets. +# See man (1) CPUPOWER-SET for additional details. +#mc_scheduler= + +# Utilizes thread siblings of one processor core first before processes are +# scheduled to other cores. See man (1) CPUPOWER-SET for additional details. +#smp_scheduler= + +# Sets a register on supported Intel processore which allows software to convey +# its policy for the relative importance of performance versus energy savings to +# the processor. See man (1) CPUPOWER-SET for additional details. +#perf_bias= + +# vim:set ts=2 sw=2 ft=sh et: diff --git a/community/lksctp-tools/0001-Modernize-autotools.patch b/community/lksctp-tools/0001-Modernize-autotools.patch new file mode 100644 index 000000000..2fa0b23c6 --- /dev/null +++ b/community/lksctp-tools/0001-Modernize-autotools.patch @@ -0,0 +1,257 @@ +From 6812d5ed157869d466058ad7383e1a94c3ead65c Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= <seblu@seblu.net> +Date: Thu, 24 Jan 2013 12:41:49 +0100 +Subject: [PATCH] Modernize autotools +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Allow compilation with last version of autotools +- libtool 2.4.2 +- m4 1.4.16 +- autoconf 2.69 +- automake 1.13.1 +- make 3.82 + +Signed-off-by: Sébastien Luttringer <seblu@seblu.net> +--- + Makefile.am | 2 ++ + configure.ac | 75 ++++++++++++++++++++++++++++++++++++++++++++++ + configure.in | 74 --------------------------------------------- + src/apps/Makefile.am | 2 +- + src/func_tests/Makefile.am | 2 +- + src/lib/Makefile.am | 2 +- + src/testlib/Makefile.am | 2 +- + 7 files changed, 81 insertions(+), 78 deletions(-) + create mode 100644 configure.ac + delete mode 100644 configure.in + +diff --git a/Makefile.am b/Makefile.am +index 109f01d..2c9c8c6 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -12,6 +12,8 @@ EXTRA_DIST += ChangeLog AUTHORS COPYING COPYING.lib INSTALL \ + # bin or src products may be required to generate stuff in test/ + SUBDIRS = man bin src doc + ++ACLOCAL_AMFLAGS=-I m4 ++ + # Libtool support + LIBTOOL_DEPS = @LIBTOOL_DEPS@ + libtool: $(LIBTOOL_DEPS) +diff --git a/configure.ac b/configure.ac +new file mode 100644 +index 0000000..9af138b +--- /dev/null ++++ b/configure.ac +@@ -0,0 +1,75 @@ ++dnl -*-autoconf-*- ++ ++dnl lksctp-tools: Autoconf script ++dnl ++dnl $Id: configure.in,v 1.1.1.2 2002/08/06 23:55:45 inaky Exp $ ++ ++dnl (C) 2002 Intel Corporation ++dnl Iaky Prez-Gonzlez <inaky.perez-gonzalez@intel.com> ++dnl - Initial packaging ++ ++dnl Package info ++dnl (CONFIG_AUX_DIR is for putting stuff in $TOPSRCDIR/bin, so we ++dnl reduce clutter in the root; if we put it below AM_INIT_AUTOMAKE, ++dnl configure will fail ...) ++ ++AC_INIT([lksctp-tools], [1.0.13]) ++AC_CONFIG_AUX_DIR(bin) ++AC_CONFIG_SRCDIR([src/apps/sctp_darn.c]) ++AC_CONFIG_HEADERS([config.h]) ++AC_CONFIG_MACRO_DIR([m4]) ++AC_REVISION($Revision: 1.1.1.2 $) ++AM_INIT_AUTOMAKE ++AM_SILENT_RULES([yes]) ++ ++dnl Set defaults ++dnl CFLAGS="$CFLAGS -g -Wall" ++ ++dnl Checks for programs. ++AC_PROG_AWK ++AC_PROG_CC ++AC_PROG_INSTALL ++AC_PROG_LN_S ++AC_ISC_POSIX ++ ++dnl Checks for libraries. ++AC_LIBTOOL_DLOPEN ++AC_PROG_LIBTOOL ++AC_SUBST(LIBTOOL_DEPS) ++ ++dnl Checks for header files. ++AC_HEADER_STDC ++AC_HEADER_SYS_WAIT ++AC_CHECK_HEADERS([arpa/inet.h fcntl.h malloc.h netdb.h netinet/in.h stdint.h stdlib.h string.h sys/ioctl.h sys/param.h sys/socket.h sys/time.h unistd.h]) ++ ++dnl Checks for typedefs, structures, and compiler characteristics. ++AC_C_CONST ++AC_C_INLINE ++AC_TYPE_SIZE_T ++AC_HEADER_TIME ++AC_STRUCT_TM ++AC_C_VOLATILE ++ ++# Checks for library functions. ++AC_FUNC_MALLOC ++AC_FUNC_MEMCMP ++AC_FUNC_REALLOC ++AC_FUNC_SELECT_ARGTYPES ++AC_FUNC_SETVBUF_REVERSED ++AC_FUNC_VPRINTF ++AC_CHECK_FUNCS([bzero gethostbyname gettimeofday memmove memset select socket strchr strerror strtol strtoul]) ++ ++AC_CONFIG_FILES([lksctp-tools.spec ++ Makefile ++ bin/Makefile ++ man/Makefile ++ src/Makefile ++ src/apps/Makefile ++ src/func_tests/Makefile ++ src/include/Makefile ++ src/include/netinet/Makefile ++ src/lib/Makefile ++ src/testlib/Makefile ++ src/withsctp/Makefile ++ doc/Makefile]) ++AC_OUTPUT +diff --git a/configure.in b/configure.in +deleted file mode 100644 +index c43ed9d..0000000 +--- a/configure.in ++++ /dev/null +@@ -1,74 +0,0 @@ +-dnl -*-autoconf-*- +- +-dnl lksctp-tools: Autoconf script +-dnl +-dnl $Id: configure.in,v 1.1.1.2 2002/08/06 23:55:45 inaky Exp $ +- +-dnl (C) 2002 Intel Corporation +-dnl Iaky Prez-Gonzlez <inaky.perez-gonzalez@intel.com> +-dnl - Initial packaging +- +-dnl Package info +-dnl (CONFIG_AUX_DIR is for putting stuff in $TOPSRCDIR/bin, so we +-dnl reduce clutter in the root; if we put it below AM_INIT_AUTOMAKE, +-dnl configure will fail ...) +- +-AC_INIT([src/apps/sctp_darn.c]) +-AC_CONFIG_AUX_DIR(bin) +-AM_INIT_AUTOMAKE(lksctp-tools,1.0.13) +-AC_CONFIG_SRCDIR([config.h.in]) +-AM_CONFIG_HEADER([config.h]) +-AC_REVISION($Revision: 1.1.1.2 $) +-AM_SILENT_RULES([yes]) +- +-dnl Set defaults +-dnl CFLAGS="$CFLAGS -g -Wall" +- +-dnl Checks for programs. +-AC_PROG_AWK +-AC_PROG_CC +-AC_PROG_INSTALL +-AC_PROG_LN_S +-AC_ISC_POSIX +- +-dnl Checks for libraries. +-AC_LIBTOOL_DLOPEN +-AC_PROG_LIBTOOL +-AC_SUBST(LIBTOOL_DEPS) +- +-dnl Checks for header files. +-AC_HEADER_STDC +-AC_HEADER_SYS_WAIT +-AC_CHECK_HEADERS([arpa/inet.h fcntl.h malloc.h netdb.h netinet/in.h stdint.h stdlib.h string.h sys/ioctl.h sys/param.h sys/socket.h sys/time.h unistd.h]) +- +-dnl Checks for typedefs, structures, and compiler characteristics. +-AC_C_CONST +-AC_C_INLINE +-AC_TYPE_SIZE_T +-AC_HEADER_TIME +-AC_STRUCT_TM +-AC_C_VOLATILE +- +-# Checks for library functions. +-AC_FUNC_MALLOC +-AC_FUNC_MEMCMP +-AC_FUNC_REALLOC +-AC_FUNC_SELECT_ARGTYPES +-AC_FUNC_SETVBUF_REVERSED +-AC_FUNC_VPRINTF +-AC_CHECK_FUNCS([bzero gethostbyname gettimeofday memmove memset select socket strchr strerror strtol strtoul]) +- +-AC_CONFIG_FILES([lksctp-tools.spec +- Makefile +- bin/Makefile +- man/Makefile +- src/Makefile +- src/apps/Makefile +- src/func_tests/Makefile +- src/include/Makefile +- src/include/netinet/Makefile +- src/lib/Makefile +- src/testlib/Makefile +- src/withsctp/Makefile +- doc/Makefile]) +-AC_OUTPUT +diff --git a/src/apps/Makefile.am b/src/apps/Makefile.am +index c2e34e4..6d53e6d 100644 +--- a/src/apps/Makefile.am ++++ b/src/apps/Makefile.am +@@ -5,7 +5,7 @@ include $(top_srcdir)/Makefile.rules + include $(top_srcdir)/Makefile.dirs + + # General compilation flags +-INCLUDES = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib ++AM_CPPFLAGS = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib + AM_CFLAGS = -g -O2 -fno-strict-aliasing -Wall -Wstrict-prototypes -Wimplicit-function-declaration + AM_LDFLAGS = + LDADD = $(top_builddir)/src/testlib/libsctputil.la \ +diff --git a/src/func_tests/Makefile.am b/src/func_tests/Makefile.am +index 9092ffb..b21e151 100644 +--- a/src/func_tests/Makefile.am ++++ b/src/func_tests/Makefile.am +@@ -5,7 +5,7 @@ include $(top_srcdir)/Makefile.rules + include $(top_srcdir)/Makefile.dirs + + # General compilation flags +-INCLUDES = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib ++AM_CPPFLAGS = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib + AM_CFLAGS = -g -O2 -fno-strict-aliasing -Wall -Wstrict-prototypes -Wimplicit-function-declaration + AM_LDFLAGS = -lpthread + LDADD = $(top_builddir)/src/testlib/libsctputil.la \ +diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am +index 81cc814..af8bb51 100644 +--- a/src/lib/Makefile.am ++++ b/src/lib/Makefile.am +@@ -5,7 +5,7 @@ include $(top_srcdir)/Makefile.rules + include $(top_srcdir)/Makefile.dirs + + # General compilation flags +-INCLUDES = -I$(top_srcdir)/src/include ++AM_CPPFLAGS = -I$(top_srcdir)/src/include + + lib_LTLIBRARIES = libsctp.la + libsctp_la_SOURCES = bindx.c connectx.c peeloff.c opt_info.c addrs.c sendmsg.c recvmsg.c Versions.map +diff --git a/src/testlib/Makefile.am b/src/testlib/Makefile.am +index 3d7fd49..fae6bbc 100644 +--- a/src/testlib/Makefile.am ++++ b/src/testlib/Makefile.am +@@ -5,7 +5,7 @@ include $(top_srcdir)/Makefile.rules + include $(top_srcdir)/Makefile.dirs + + # General compilation flags +-INCLUDES = -I$(top_srcdir)/src/include ++AM_CPPFLAGS = -I$(top_srcdir)/src/include + + noinst_LTLIBRARIES = libsctputil.la + libsctputil_la_SOURCES = sctputil.c sctputil.h +-- +1.8.1.1 + diff --git a/community/lksctp-tools/PKGBUILD b/community/lksctp-tools/PKGBUILD index 658a7565e..9ac4b38d3 100644 --- a/community/lksctp-tools/PKGBUILD +++ b/community/lksctp-tools/PKGBUILD @@ -1,28 +1,39 @@ # $Id$ -# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> +# Maintainer: Sébastien Luttringer <seblu@archlinux.org> # Contributer: Nicolas Martyanoff <khaelin@gmail.com> pkgname=lksctp-tools -pkgver=1.0.11 +pkgver=1.0.13 pkgrel=1 pkgdesc='An implementation of the SCTP protocol' arch=('i686' 'x86_64' 'mips64el') url='http://lksctp.sourceforge.net/' -license=('GPL2') +license=('GPL2' 'LGPL2.1') depends=('bash') options=('!libtool') -source=("http://downloads.sourceforge.net/sourceforge/lksctp/$pkgname-$pkgver.tar.gz") -md5sums=('e9cf6c57402c9d4f1173a9529466e16d') +source=("http://downloads.sourceforge.net/sourceforge/lksctp/$pkgname-$pkgver.tar.gz" + '0001-Modernize-autotools.patch') +md5sums=('96436a1b0d30ae588d0a13f6b646549a' + '84635abc83bcd85ef263160b6f435336') build() { cd $pkgname-$pkgver + # fix autotools + patch -p1 -i "$srcdir/0001-Modernize-autotools.patch" + ./bootstrap ./configure --prefix=/usr make } +#check() { +# cd $pkgname-$pkgver/src/func_tests +# make v4test +# make v6test +#} + package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install } -# vim:set ts=2 sw=2 ft=sh et: +# vim:set ts=2 sw=2 et: diff --git a/community/macchanger/PKGBUILD b/community/macchanger/PKGBUILD index b1a96f587..4d9b37ea1 100644 --- a/community/macchanger/PKGBUILD +++ b/community/macchanger/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 67090 2012-03-03 20:37:59Z kkeen $ +# $Id: PKGBUILD 82851 2013-01-25 02:08:04Z kkeen $ # Maintainer: Kyle Keen <keenerd@gmail.com> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=macchanger pkgver=1.5.0 -pkgrel=5 -pkgdesc="A small utility to change you NIC's MAC address" +pkgrel=6 +pkgdesc="A small utility to change your NIC's MAC address" arch=('i686' 'x86_64' 'mips64el') url="http://ftp.gnu.org/gnu/macchanger" license=('GPL') @@ -23,5 +23,5 @@ build() { package() { cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install + make DESTDIR="${pkgdir}" install } diff --git a/community/multitail/PKGBUILD b/community/multitail/PKGBUILD index 28090b541..3a1815863 100644 --- a/community/multitail/PKGBUILD +++ b/community/multitail/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 81978 2013-01-05 08:30:36Z kkeen $ +# $Id: PKGBUILD 82845 2013-01-25 01:03:39Z kkeen $ # Maintainer: Kyle Keen <keenerd@gmail.com> # Contributor: Kevin Piche <kevin@archlinux.org> # Contributor: Roberto Carvajal <roberto@archlinux.org> pkgname=multitail -pkgver=5.2.11 +pkgver=5.2.12 pkgrel=1 pkgdesc="Lets you view one or multiple files like the original tail program" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ url="http://www.vanheusden.com/multitail" depends=('ncurses') backup=('etc/multitail.conf') source=("${url}/${pkgname}-${pkgver}.tgz") -md5sums=('2dc525c718ed99265ad3f6e09e6d2e4a') +md5sums=('15fc4a54778327192b0b5f1c0005a1b3') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/ndisc6/PKGBUILD b/community/ndisc6/PKGBUILD index e61d42718..a84eac204 100644 --- a/community/ndisc6/PKGBUILD +++ b/community/ndisc6/PKGBUILD @@ -1,42 +1,38 @@ -# $Id: PKGBUILD 73033 2012-06-28 18:43:36Z cbrannon $ -# Maintainer: Chris Brannon <chris@the-brannons.com> +# $Id: PKGBUILD 82792 2013-01-24 13:20:12Z seblu $ +# Maintainer: Sébastien Luttringer <seblu@archlinux.org> +# Contributor: Chris Brannon <chris@the-brannons.com> # Contributor: Mark Smith <markzzzsmith@yahoo.com.au> + pkgname=ndisc6 pkgver=1.0.2 -pkgrel=4 -pkgdesc="A collection of IPv6 networking utilities - ndisc6, rdisc6, tcptraceroute6, tracert6, rltraceroute6, tcpspray6" +pkgrel=5 +pkgdesc='Collection of IPv6 networking utilities' arch=('i686' 'x86_64' 'mips64el') -url="http://www.remlab.net/ndisc6/" -license=("GPL") +url='http://www.remlab.net/ndisc6/' +license=('GPL') depends=('glibc' 'perl') makedepends=('glibc' 'gcc') options=(!emptydirs) install=ndisc6.install -source=(http://www.remlab.net/files/ndisc6/$pkgname-$pkgver.tar.bz2 - rdnssd.rc.d - rdnssd.confd - rdnssd.service) +source=("http://www.remlab.net/files/ndisc6/$pkgname-$pkgver.tar.bz2" + 'rdnssd.service') md5sums=('50cb4c19606cf6ff2b7388e71832f579' - '3421fd731c4da4f9e07fc6b6ff4e5084' - 'f1910902932e2622fc166960819db6c4' 'beeb4f033e9eb951e2de962f609c7c2a') build() { - cd "$srcdir/$pkgname-$pkgver" - + cd $pkgname-$pkgver + # patch invalid path + sed -ri 's,PATH=/sbin:/bin,PATH=/sbin:/bin:/usr/sbin:/usr/bin,' rdnssd/merge-hook.in ./configure --localstatedir=/var --sysconfdir=/etc --prefix=/usr make } package() { - cd "$srcdir/$pkgname-$pkgver" - + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install - install -Dm755 "$srcdir/rdnssd.rc.d" "$pkgdir/etc/rc.d/rdnssd" - install -Dm644 "$srcdir/rdnssd.confd" "$pkgdir/etc/conf.d/rdnssd" - install -Dm644 "$srcdir/rdnssd.service" \ - "$pkgdir/usr/lib/systemd/system/rdnssd.service" - - install -d "$pkgdir/usr/lib/tmpfiles.d" - echo "d /run/rdnssd 0755 nobody root" > "$pkgdir/usr/lib/tmpfiles.d/ndisc6.conf" + install -Dm644 "$srcdir/rdnssd.service" "$pkgdir/usr/lib/systemd/system/rdnssd.service" + install -Dm644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf" + echo 'd /run/rdnssd 0755 nobody root' > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf" } + +# vim:set ts=2 sw=2 et: diff --git a/community/ndisc6/ndisc6.install b/community/ndisc6/ndisc6.install index 086fb6829..7d917ca19 100644 --- a/community/ndisc6/ndisc6.install +++ b/community/ndisc6/ndisc6.install @@ -1,3 +1,8 @@ +#!/bin/sh + +# arg 1: the new package version post_install() { systemd-tmpfiles --create usr/lib/tmpfiles.d/ndisc6.conf } + +# vim:set ts=2 sw=2 ft=sh et: diff --git a/community/nemiver/PKGBUILD b/community/nemiver/PKGBUILD index 41af771dc..64fce4172 100644 --- a/community/nemiver/PKGBUILD +++ b/community/nemiver/PKGBUILD @@ -1,20 +1,20 @@ -# $Id: PKGBUILD 79336 2012-11-03 04:08:33Z bgyorgy $ +# $Id: PKGBUILD 82907 2013-01-25 12:43:46Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: jordz <jordz@archlinux.us> pkgname=nemiver -pkgver=0.9.3 -pkgrel=2 -pkgdesc="C/C++ debugger for GNOME" +pkgver=0.9.4 +pkgrel=1 +pkgdesc='C/C++ debugger for GNOME' arch=('x86_64' 'i686' 'mips64el') license=('GPL') -url="http://www.gnome.org/projects/nemiver/" -depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'dconf' 'gsettings-desktop-schemas') +url='http://www.gnome.org/projects/nemiver/' +depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'dconf' 'gsettings-desktop-schemas' 'itstool') makedepends=('boost' 'intltool' 'gnome-doc-utils') install=nemiver.install source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz") options=('!libtool' '!emptydirs') -sha256sums=('27b8845e54a61ba597050eb16640aaaf2bf21be3191081c9ddd3a34fc2ae617d') +sha256sums=('12cc5b6092ba720f2524f59928bee4d736e5e5ffeeffb6fd06f99695f17d683f') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/opendkim/PKGBUILD b/community/opendkim/PKGBUILD index 6e11bf0f4..edd1ed051 100644 --- a/community/opendkim/PKGBUILD +++ b/community/opendkim/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 78840 2012-10-25 13:10:38Z spupykin $ +# $Id: PKGBUILD 82828 2013-01-24 15:21:21Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Thomas Jost <schnouki@schnouki.net> pkgname=opendkim -pkgver=2.7.0 +pkgver=2.7.4 pkgrel=1 pkgdesc="An open source implementation of the DKIM sender authentication system. Based on a fork of dkim-milter." arch=(i686 x86_64) @@ -18,7 +18,7 @@ source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.g opendkim.conf opendkim.rc opendkim.service) -md5sums=('ec3f38e6b612c58cd3b4dabfd923274a' +md5sums=('310063cabe530eb0b5c16103334b3bb0' '3e2bb1058ac0662f01e675aa6ac7ee8f' '093f5c098a45cc68753f97e45a5b374c' 'bc1b73856bc1941faaa4842e00437cb5') diff --git a/community/os-prober/PKGBUILD b/community/os-prober/PKGBUILD index ebaa922de..7e69e7cd7 100644 --- a/community/os-prober/PKGBUILD +++ b/community/os-prober/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 79823 2012-11-13 13:48:38Z tredaelli $ +# $Id: PKGBUILD 82903 2013-01-25 12:14:34Z tredaelli $ # Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com> # Contributor: darkcoder <mario_vazq@hotmail.com> pkgname=os-prober -pkgver=1.56 -pkgrel=1 +pkgver=1.57 +pkgrel=2 pkgdesc="Utility to detect other OSes on a set of drives" url="http://joey.kitenet.net/code/os-prober/" arch=('i686' 'x86_64' 'mips64el') license=('GPL3') depends=('sh') source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz) -md5sums=('bd9c1a7fc49a2499d79977cf2c1ec68d') -sha256sums=('88a79a04617f4ecbeb9c4d318cd9cf8fcb4ae7a724bd503942354011c7da5719') +md5sums=('67548b17d55cc32c1168bb5a4061170d') +sha256sums=('d63c6cbb825a7e411aac5e4805edc6db2fbf77a59282b71c10bd29723b8d860c') build() { cd "$srcdir/$pkgname-$pkgver" @@ -39,9 +39,4 @@ package() { done install -Dm755 os-probes/mounted/powerpc/20macosx $pkgdir/usr/lib/os-probes/mounted/20macosx - - # create a empty labels file, will be used by os-prober at execution - mkdir -p $pkgdir/var/lib/os-prober - touch $pkgdir/var/lib/os-prober/labels - chmod 644 $pkgdir/var/lib/os-prober/labels } diff --git a/community/perl-dbd-odbc/PKGBUILD b/community/perl-dbd-odbc/PKGBUILD index 3796a6802..dfedd37cb 100644 --- a/community/perl-dbd-odbc/PKGBUILD +++ b/community/perl-dbd-odbc/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 73845 2012-07-16 05:41:01Z spupykin $ +# $Id: PKGBUILD 82878 2013-01-25 09:55:32Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: François Charette <firmicus ατ gmx δοτ net> pkgname=perl-dbd-odbc -pkgver=1.39 +pkgver=1.41 pkgrel=1 pkgdesc="ODBC Driver for DBI" arch=('i686' 'x86_64' 'mips64el') @@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic') depends=('perl-dbi' 'perl' 'unixodbc') options=('!emptydirs') source=("http://search.cpan.org/CPAN/authors/id/M/MJ/MJEVANS/DBD-ODBC-${pkgver}.tar.gz") -md5sums=('d73b16258ec13c811763eafc7813a435') +md5sums=('94bce7246d69df1ea5b2f8a702f35554') build() { cd DBD-ODBC-${pkgver} diff --git a/community/perl-dbd-pg/PKGBUILD b/community/perl-dbd-pg/PKGBUILD index 1bd8cb1cc..afdc17312 100644 --- a/community/perl-dbd-pg/PKGBUILD +++ b/community/perl-dbd-pg/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 71769 2012-06-02 10:30:06Z bluewind $ +# $Id: PKGBUILD 82880 2013-01-25 09:55:54Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: François Charette <firmicus ατ gmx δοτ net> pkgname=perl-dbd-pg -pkgver=2.19.2 -pkgrel=2 +pkgver=2.19.3 +pkgrel=1 pkgdesc="Postgres Driver for DBI" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/DBD-Pg" @@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic') depends=('perl-dbi>=1.52' 'postgresql-libs') options=('!emptydirs') source=("http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-${pkgver}.tar.gz") -md5sums=('67c859593e40959b42b3ef23ce6b581e') +md5sums=('026ea19f89aee12051bce23d797e824b') build() { cd DBD-Pg-${pkgver} diff --git a/community/perl-json-xs/PKGBUILD b/community/perl-json-xs/PKGBUILD index 7396840ec..773cf0b9e 100644 --- a/community/perl-json-xs/PKGBUILD +++ b/community/perl-json-xs/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 71805 2012-06-02 10:31:18Z bluewind $ +# $Id: PKGBUILD 82882 2013-01-25 09:56:15Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Tor Krill <tor@krill.nu> pkgname=perl-json-xs -pkgver=2.32 -pkgrel=2 +pkgver=2.33 +pkgrel=1 pkgdesc="JSON::XS - JSON serialising/deserialising, done correctly and fast" url="http://search.cpan.org/dist/JSON-XS/" license=("GPL") @@ -12,7 +12,7 @@ arch=('i686' 'x86_64' 'mips64el') depends=('perl' 'perl-common-sense') options=('!emptydirs') source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-$pkgver.tar.gz) -md5sums=('87f71c78010083ad4d158b5765c4a609') +md5sums=('6a1eafeadc1680a806ec2eb1798f6084') build() { cd $srcdir/JSON-XS-$pkgver diff --git a/community/processing/PKGBUILD b/community/processing/PKGBUILD index 2549f2832..940517a8a 100644 --- a/community/processing/PKGBUILD +++ b/community/processing/PKGBUILD @@ -1,20 +1,27 @@ -# $Id: PKGBUILD 82430 2013-01-17 14:54:20Z arodseth $ +# $Id: PKGBUILD 82915 2013-01-25 17:38:23Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> pkgname=processing pkgver=2.0b7 -pkgrel=2 +pkgrel=3 pkgdesc='Programming language and environment for creating images, animations and interactions' arch=('x86_64' 'i686') url='http://www.processing.org/' license=('GPL' 'LGPL') -depends=('libgl' 'libxxf86vm') +depends=('libgl' 'sh' 'libxxf86vm') makedepends=('gendesk') options=(!strip) -source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver-linux32.tgz" - "$pkgname.png::http://wiki.$pkgname.org/skins/${pkgname}skin/${pkgname}_wiki_logo.png") -sha256sums=('55db8370672f9e2658443a7fe577e23f06ca1ab2435719c865a059a0e65cdc83' - '019ae700333409acbc628779747ab8f153f6647de25e4de3a9bd4a42d0d8056a') + +_bits=64 +sha256sums=('844b4280b242176107f6c40fef47fa420695111cdb2b80294570297f63b1186f') +if [[ "$CARCH" != "x86_64" ]]; then + _bits=32 + sha256sums=('55db8370672f9e2658443a7fe577e23f06ca1ab2435719c865a059a0e65cdc83') +fi +source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver-linux$_bits.tgz") + +source+=("$pkgname.png::http://wiki.$pkgname.org/skins/${pkgname}skin/${pkgname}_wiki_logo.png") +sha256sums+=('019ae700333409acbc628779747ab8f153f6647de25e4de3a9bd4a42d0d8056a') build() { cd "$srcdir" diff --git a/community/python-pymongo/PKGBUILD b/community/python-pymongo/PKGBUILD index 8d257716f..7f62f72e5 100644 --- a/community/python-pymongo/PKGBUILD +++ b/community/python-pymongo/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 81246 2012-12-14 12:47:15Z arodseth $ +# $Id: PKGBUILD 82839 2013-01-24 23:13:20Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Thomas S Hatch <thatch45@gmail.com> # Contributor: Jelle van der Waa <jelle@vdwaa.nl> pkgbase=python-pymongo pkgname=('python-pymongo' 'python2-pymongo') -pkgver=2.4.1 +pkgver=2.4.2 pkgrel=1 pkgdesc='Python driver for MongoDB' arch=('x86_64' 'i686' 'mips64el') @@ -13,7 +13,7 @@ license=('APACHE') url='http://pypi.python.org/pypi/pymongo/' makedepends=('python-distribute' 'python2-distribute') source=("http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz") -sha256sums=('dae8a074137ade3c854c47f76853792b69d1cbc263d9e74aaca50a02842da970') +sha256sums=('6862c85844f1766c261a39022ec7a6b631988cb5528a31f8d20e78181398aa5f') build() { cd $srcdir diff --git a/community/python-simplejson/PKGBUILD b/community/python-simplejson/PKGBUILD index bab14945c..6fab1f149 100644 --- a/community/python-simplejson/PKGBUILD +++ b/community/python-simplejson/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 74926 2012-08-09 22:02:03Z jlichtblau $ +# $Id: PKGBUILD 82843 2013-01-25 00:09:28Z arodseth $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Allan McRae <allan@archlinux.org> # Contributor: David Moore <davidm@sjsoft.com> diff --git a/community/python2-tagpy/PKGBUILD b/community/python2-tagpy/PKGBUILD new file mode 100644 index 000000000..160e3e143 --- /dev/null +++ b/community/python2-tagpy/PKGBUILD @@ -0,0 +1,47 @@ +# $Id: PKGBUILD 82869 2013-01-25 08:19:37Z andrea $ +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Callan Barrett <wizzomafizzo@gmail.com> +# Contributor: Scott Horowitz <stonecrest@gmail.com> + +pkgname=python2-tagpy +pkgver=0.94.8 +pkgrel=1 +pkgdesc="Python bindings for TagLib" +arch=('i686' 'x86_64') +url="http://pypi.python.org/pypi/tagpy" +license=('MIT') +depends=('python2' 'taglib' 'boost-libs') +makedepends=('python2-distribute' 'boost') +replaces=('tagpy') +conflicts=('tagpy') +source=("http://pypi.python.org/packages/source/t/tagpy/tagpy-$pkgver.tar.gz" + 'taglib1.7.patch') +md5sums=('6baff63318cf90b9bc5a2497a0597802' + '5b47cefe5fad98a093232256779da345') + +build() { + cd tagpy-${pkgver} + + patch -p1 -i "${srcdir}"/taglib1.7.patch + + sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \ + $(find . -name '*.py') + + ./configure.py --taglib-lib-dir=/usr/lib/ \ + --taglib-inc-dir=/usr/include/taglib/ \ + --boost-inc-dir=/usr/include/boost/ \ + --boost-lib-dir=/usr/lib/ \ + --boost-python-libname=boost_python + python2 setup.py build +} + +package(){ + cd tagpy-${pkgver} + python2 setup.py install --root="${pkgdir}" --optimize=1 + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE" +} + +check(){ + cd tagpy-${pkgver} + python2 setup.py test +} diff --git a/community/python2-tagpy/taglib1.7.patch b/community/python2-tagpy/taglib1.7.patch new file mode 100644 index 000000000..df1d6e886 --- /dev/null +++ b/community/python2-tagpy/taglib1.7.patch @@ -0,0 +1,37 @@ +From: Andreas Kloeckner <inform@tiker.net> +Date: Tue, 25 Dec 2012 19:36:42 +0000 (+0100) +Subject: Update tagpy for TagLib 1.7 compatibility. (patch by unknown Gentoo user, via Lars... +X-Git-Tag: v2013.1~6 +X-Git-Url: http://git.tiker.net/tagpy.git/commitdiff_plain/d0759c0ec7d24ae8d1af395a1032521eb00b4d1f?hp=c2801c31493f77d7c33d20fa20f0b298b0f322ef + +Update tagpy for TagLib 1.7 compatibility. (patch by unknown Gentoo user, via Lars Wendler) +--- + +diff --git a/src/wrapper/id3.cpp b/src/wrapper/id3.cpp +index a76f7ef..5c08ae1 100644 +--- a/src/wrapper/id3.cpp ++++ b/src/wrapper/id3.cpp +@@ -79,6 +79,10 @@ namespace + MF_OL(setVolumeAdjustment, 1, 2); + MF_OL(setPeakVolume, 1, 2); + ++ #if (TAGPY_TAGLIB_HEX_VERSION >= 0x10700) ++ MF_OL(render, 0, 1) ++ #endif ++ + // ------------------------------------------------------------- + // MPEG + // ------------------------------------------------------------- +@@ -212,7 +216,11 @@ void exposeID3() + .DEF_SIMPLE_METHOD(removeFrame) + .DEF_SIMPLE_METHOD(removeFrames) + +- .DEF_SIMPLE_METHOD(render) ++ #if (TAGPY_TAGLIB_HEX_VERSION >= 0x10700) ++ .DEF_OVERLOADED_METHOD(render, ByteVector (cl::*)(int) const) ++ #else ++ .DEF_SIMPLE_METHOD(render) ++ #endif + ; + } + diff --git a/community/yaml-cpp/PKGBUILD b/community/yaml-cpp/PKGBUILD index ee79f87fb..e87b249b8 100644 --- a/community/yaml-cpp/PKGBUILD +++ b/community/yaml-cpp/PKGBUILD @@ -1,25 +1,26 @@ +# $Id: PKGBUILD 82853 2013-01-25 03:41:30Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Markus Martin <markus@archwyrm.net> pkgname=yaml-cpp -pkgver=0.3.0 +pkgver=0.5.0 pkgrel=1 pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec" url="http://code.google.com/p/yaml-cpp/" arch=('i686' 'x86_64' 'mips64el') license=('MIT') -makedepends=('cmake') +makedepends=('cmake' 'boost') source=(http://yaml-cpp.googlecode.com/files/$pkgname-$pkgver.tar.gz) -md5sums=('9aa519205a543f9372bf4179071c8ac6') +md5sums=('c6d96190434d5959d814c603f98512c6') build() { - cd $srcdir/$pkgname + cd $srcdir/$pkgname-$pkgver cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON make } package() { - cd $srcdir/$pkgname + cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir install } diff --git a/community/yaml-cpp0.3/PKGBUILD b/community/yaml-cpp0.3/PKGBUILD new file mode 100644 index 000000000..f8f7da315 --- /dev/null +++ b/community/yaml-cpp0.3/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 82852 2013-01-25 03:41:20Z svenstaro $ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Markus Martin <markus@archwyrm.net> +pkgname=yaml-cpp0.3 +_pkgname=yaml-cpp +pkgver=0.3.0 +pkgrel=2 +pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec" +url="http://code.google.com/p/yaml-cpp/" +arch=('i686' 'x86_64') +license=('MIT') +conflicts=('yaml-cpp') +provides=('yaml-cpp=0.3') +makedepends=('cmake') +source=(http://yaml-cpp.googlecode.com/files/$_pkgname-$pkgver.tar.gz) +md5sums=('9aa519205a543f9372bf4179071c8ac6') + +build() { + cd $srcdir/$_pkgname + + cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON + make +} + +package() { + cd $srcdir/$_pkgname + + make DESTDIR=$pkgdir install +} diff --git a/core/gnupg/PKGBUILD b/core/gnupg/PKGBUILD index 3ad7f8ef5..2f48266bb 100644 --- a/core/gnupg/PKGBUILD +++ b/core/gnupg/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 173102 2012-12-11 00:42:05Z bisson $ +# $Id: PKGBUILD 175919 2013-01-25 01:06:48Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Tobias Powalowski <tpowa@archlinux.org> # Contributor: Andreas Radke <andyrtr@archlinux.org> @@ -6,7 +6,7 @@ pkgname=gnupg pkgver=2.0.19 -pkgrel=3 +pkgrel=4 pkgdesc='Complete and free implementation of the OpenPGP standard' url='http://www.gnupg.org/' license=('GPL') @@ -44,6 +44,7 @@ package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install ln -s gpg2 "${pkgdir}"/usr/bin/gpg - ln -s gpg2 "${pkgdir}"/usr/bin/gpgv + ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz + rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059 } diff --git a/core/gpgme/PKGBUILD b/core/gpgme/PKGBUILD index 2b073b1c3..b8110e0e2 100644 --- a/core/gpgme/PKGBUILD +++ b/core/gpgme/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 154388 2012-03-27 12:00:19Z bisson $ +# $Id: PKGBUILD 175920 2013-01-25 01:06:49Z bisson $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> # Contributor: Roman Kyrylych <roman@archlinux.org> # Contributor: Sarah Hay <sarah@archlinux.org> pkgname=gpgme pkgver=1.3.1 -pkgrel=4.1 +pkgrel=5 pkgdesc="A C wrapper library for GnuPG" arch=('i686' 'x86_64' 'mips64el') url="http://www.gnupg.org/related_software/gpgme/" diff --git a/core/gpgme/gpgme.install b/core/gpgme/gpgme.install index b54620d9a..cd0db94e0 100644 --- a/core/gpgme/gpgme.install +++ b/core/gpgme/gpgme.install @@ -1,9 +1,10 @@ -infodir=/usr/share/info +infodir=usr/share/info filelist=(gpgme.info gpgme.info-1 gpgme.info-2) post_install() { + [ -x usr/bin/install-info ] || return 0 for file in ${filelist[@]}; do - install-info $infodir/$file $infodir/dir 2> /dev/null + install-info $infodir/$file.gz $infodir/dir 2> /dev/null done } @@ -12,7 +13,8 @@ post_upgrade() { } pre_remove() { + [ -x usr/bin/install-info ] || return 0 for file in ${filelist[@]}; do - install-info --delete $infodir/$file $infodir/dir 2> /dev/null + install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null done } diff --git a/extra/amarok/PKGBUILD b/extra/amarok/PKGBUILD index 0d905661b..be08ac168 100644 --- a/extra/amarok/PKGBUILD +++ b/extra/amarok/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 175688 2013-01-19 15:34:07Z andrea $ +# $Id: PKGBUILD 175977 2013-01-25 14:45:04Z andrea $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: damir <damir@archlinux.org> @@ -6,27 +6,26 @@ pkgname=amarok replaces=('amarok-base' 'amarok-engine-xine' 'amarok-base-mysqlfree') pkgver=2.7.0 -pkgrel=1 +pkgrel=2 pkgdesc="The powerful music player for KDE" arch=("i686" "x86_64" 'mips64el') -url="http://amarok.kde.org" +url="http://amarok.kde.org/" license=('GPL2' 'LGPL2.1' 'FDL') depends=('kdebase-runtime' 'mysql' 'qtscriptgenerator' 'taglib-extras' 'liblastfm' 'ffmpeg' 'libofa' 'qjson') makedepends=('pkgconfig' 'automoc4' 'cmake' 'libgpod' 'libmtp' 'loudmouth' - 'libmygpo-qt' 'mesa') + 'libmygpo-qt' 'mesa' 'clamz') optdepends=("libgpod: support for Apple iPod audio devices" "libmtp: support for portable media devices" "loudmouth: backend needed by mp3tunes for syncing" "ifuse: support for Apple iPod Touch and iPhone" - "libmygpo-qt: gpodder.net Internet Service") + "libmygpo-qt: gpodder.net Internet Service" + "clamz: allow to download songs from Amazon.com") install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") sha1sums=('d0ae4a2cb81a54ae94ca24fdb3aed88d7f3a921e') build() { - cd "${srcdir}" - mkdir build cd build cmake ../${pkgname}-${pkgver} \ @@ -37,6 +36,6 @@ build() { } package(){ - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install } diff --git a/extra/bigloo/PKGBUILD b/extra/bigloo/PKGBUILD index 6d6075c7b..8bcb8f06d 100644 --- a/extra/bigloo/PKGBUILD +++ b/extra/bigloo/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 171315 2012-11-17 05:25:07Z eric $ +# $Id: PKGBUILD 175916 2013-01-24 12:57:16Z juergen $ # Maintainer: Jürgen Hötzel <juergen@archlinux.org> # Contributor: John Proctor <jproctor@prium.net> # Contributor: Kevin Piche <kevin@archlinux.org> pkgname=bigloo -_pkgver=3.9a +_pkgver=4.0a pkgver=${_pkgver/-/_} pkgrel=1 pkgdesc="Fast scheme compiler" @@ -17,7 +17,7 @@ optdepends=('emacs' 'java-environment' 'zip' 'sqlite' 'alsa-lib' 'flac' 'avahi') options=('!makeflags') install=bigloo.install source=(ftp://ftp-sop.inria.fr/indes/fp/Bigloo/${pkgname}${_pkgver}.tar.gz) -md5sums=('7091f6f54cb5f63768a8152085d1bd02') +md5sums=('e98c882a79d5fa1373aa4da6b61c55c8') build() { cd "${srcdir}/${pkgname}${_pkgver}" diff --git a/extra/clutter-gst/PKGBUILD b/extra/clutter-gst/PKGBUILD index ce41e576f..200686e98 100644 --- a/extra/clutter-gst/PKGBUILD +++ b/extra/clutter-gst/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 169856 2012-10-30 22:24:31Z heftig $ +# $Id: PKGBUILD 176007 2013-01-25 17:41:45Z ioni $ # Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> pkgname=clutter-gst -pkgver=1.9.92 +pkgver=2.0.0 pkgrel=1 pkgdesc="GStreamer bindings for clutter" arch=('i686' 'x86_64' 'mips64el') @@ -12,7 +12,7 @@ depends=('clutter' 'gst-plugins-base-libs' 'libxdamage') makedepends=('gobject-introspection') options=('!libtool') source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('5c09dce218f711a44bd4d741e2dd10ffc47e7fcd7b0cf514ca0e92b825c76c45') +sha256sums=('c612926f1e0bbd3c1ad748192cfccf0f15fdff0113db3b983d9f58989431f99a') build() { cd $pkgname-$pkgver diff --git a/extra/clutter-gtk/PKGBUILD b/extra/clutter-gtk/PKGBUILD index c885bf834..e892d95a1 100644 --- a/extra/clutter-gtk/PKGBUILD +++ b/extra/clutter-gtk/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 169855 2012-10-30 22:24:27Z heftig $ +# $Id: PKGBUILD 175998 2013-01-25 16:33:00Z ioni $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=clutter-gtk -pkgver=1.4.0 +pkgver=1.4.2 pkgrel=1 pkgdesc="GTK clutter widget" arch=('i686' 'x86_64' 'mips64el') @@ -12,15 +12,15 @@ license=('LGPL') depends=('clutter' 'gtk3') makedepends=('gobject-introspection') source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('d51c4bb6a6ad0a337976766383f97a1c905a37bd77b3dbf484a7314130d97b6e') +sha256sums=('dc3ec6e90bc742c8a68ed7fa4c0d25b9b376828f1a7f013c363fbaf14f3a6974') build() { - cd "$pkgname-$pkgver" + cd $pkgname-$pkgver ./configure --prefix=/usr make } package() { - cd "$pkgname-$pkgver" + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install } diff --git a/extra/colord-gtk/PKGBUILD b/extra/colord-gtk/PKGBUILD index 0cca84791..2cf608a6e 100644 --- a/extra/colord-gtk/PKGBUILD +++ b/extra/colord-gtk/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 169858 2012-10-30 22:24:38Z heftig $ +# $Id: PKGBUILD 175994 2013-01-25 16:27:49Z ioni $ # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Contributor: Ionut Biru <ibiru@archlinux.org> pkgname=colord-gtk -pkgver=0.1.23 +pkgver=0.1.24 pkgrel=1 pkgdesc="GTK integration for libcolord" arch=('i686' 'x86_64' 'mips64el') @@ -13,14 +13,14 @@ depends=('lcms2' 'gtk3' 'colord') makedepends=('intltool' 'gobject-introspection' 'vala' 'gtk-doc') source=($url/releases/$pkgname-$pkgver.tar.xz) options=('!libtool') -sha1sums=('71fd56b34ba91ddf76c1ac394c2a31fa5e24770c') +sha1sums=('6711d50d45150e54ebcfcd8d242b6a0d83ac73c2') build() { cd "$pkgname-$pkgver" ./configure --prefix=/usr \ --sysconfdir=/etc --libexecdir=/usr/lib/colord \ - --localstatedir=/var --disable-static + --localstatedir=/var --disable-static --enable-vala make } diff --git a/extra/colord/PKGBUILD b/extra/colord/PKGBUILD index 229c69358..5f59b773b 100644 --- a/extra/colord/PKGBUILD +++ b/extra/colord/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 171432 2012-11-17 14:39:23Z jgc $ +# $Id: PKGBUILD 175992 2013-01-25 16:22:30Z ioni $ # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Contributor: Ionut Biru <ibiru@archlinux.org> pkgname=colord -pkgver=0.1.24 -pkgrel=3 +pkgver=0.1.28 +pkgrel=1 pkgdesc="System daemon for managing color devices" arch=('i686' 'x86_64' 'mips64el') url="http://www.freedesktop.org/software/colord" @@ -13,7 +13,8 @@ depends=('lcms2' 'libgusb' 'polkit' 'shared-color-profiles' 'sqlite' 'udev') makedepends=('intltool' 'gobject-introspection' 'vala' 'docbook2x') source=($url/releases/$pkgname-$pkgver.tar.xz) options=('!libtool') -sha1sums=('52089b72d79cd4358a86b7e646c42d23157bbcf9') +install=colord.install +sha1sums=('d53167727ab0f1014ded86675ac8b518c188a88b') build() { cd "$pkgname-$pkgver" diff --git a/extra/colord/colord.install b/extra/colord/colord.install new file mode 100644 index 000000000..c25dff2d3 --- /dev/null +++ b/extra/colord/colord.install @@ -0,0 +1,11 @@ +post_install() { + glib-compile-schemas /usr/share/glib-2.0/schemas +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/extra/cvsps/PKGBUILD b/extra/cvsps/PKGBUILD index 9908e2202..ef6a59d2c 100644 --- a/extra/cvsps/PKGBUILD +++ b/extra/cvsps/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 174991 2013-01-10 01:36:13Z dan $ +# $Id: PKGBUILD 176011 2013-01-25 18:19:34Z dan $ # Maintainer: Dan McGee <dan@archlinux.org> # Contributor: Jeff 'codemac' Mickey <jeff@archlinux.org> pkgname=cvsps -pkgver=3.7 +pkgver=3.10 pkgrel=1 pkgdesc="Generating 'patchset' information from a CVS repository" url="http://www.catb.org/esr/cvsps/" @@ -12,7 +12,7 @@ arch=('i686' 'x86_64' 'mips64el') depends=('zlib') makedepends=('asciidoc') source=("http://www.catb.org/~esr/cvsps/cvsps-${pkgver}.tar.gz") -md5sums=('93c4e696a95a65f0b2d475ef10fbedbb') +md5sums=('eafd64ba9359105d950462552750cc51') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/extra/empathy/PKGBUILD b/extra/empathy/PKGBUILD index 03b07d76a..225d7a86a 100644 --- a/extra/empathy/PKGBUILD +++ b/extra/empathy/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 170935 2012-11-13 16:33:01Z heftig $ +# $Id: PKGBUILD 175978 2013-01-25 14:51:01Z ioni $ # Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=empathy -pkgver=3.6.2 +pkgver=3.6.3 pkgrel=1 pkgdesc="A GNOME instant messaging client using the Telepathy framework." arch=('i686' 'x86_64' 'mips64el') @@ -20,7 +20,7 @@ options=('!libtool' '!makeflags') groups=('gnome-extra') install=empathy.install source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz) -sha256sums=('707bf283f37e8b91816c78742d9ebf9e3effc4206a3ecc3e4c0cfbbf8ce0fd26') +sha256sums=('eaae20e8e9b8660979ed7a9a65deba61d6d795c6f698e684f21c3821f042704d') build() { cd $pkgname-$pkgver diff --git a/extra/ethtool/PKGBUILD b/extra/ethtool/PKGBUILD index 0ab6d86a8..549a5c6ba 100644 --- a/extra/ethtool/PKGBUILD +++ b/extra/ethtool/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 169444 2012-10-21 10:28:57Z ibiru $ +# $Id: PKGBUILD 175975 2013-01-25 14:44:35Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Paul Mattal <paul@archlinux.org> # Contributor: Martin Kemp <mdkemp@elys.com> pkgname=ethtool -pkgver=3.6 +pkgver=3.7 pkgrel=1 epoch=1 pkgdesc="Utility for controlling network drivers and hardware" @@ -13,7 +13,7 @@ url="http://www.kernel.org/pub/software/network/ethtool/" license=('GPL') depends=('glibc') source=(http://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz) -md5sums=('b897aa2e7eeafb5d69a571b48a1b354f') +md5sums=('f16c8416e6ec917e5753918dc23a60bd') build() { cd $pkgname-$pkgver diff --git a/extra/evolution-data-server/PKGBUILD b/extra/evolution-data-server/PKGBUILD index d7c535073..db565741b 100644 --- a/extra/evolution-data-server/PKGBUILD +++ b/extra/evolution-data-server/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 170810 2012-11-12 02:17:49Z heftig $ +# $Id: PKGBUILD 176001 2013-01-25 17:18:47Z ioni $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=evolution-data-server -pkgver=3.6.2 +pkgver=3.6.3 pkgrel=1 pkgdesc="Centralized access to appointments and contacts" arch=('i686' 'x86_64' 'mips64el') @@ -13,7 +13,7 @@ install=$pkgname.install url="http://www.gnome.org" license=('GPL') source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('bc94d8b9f1a6fb81a630cf38abec303b87a87ce2fd880f9519c23e5de2ce88f0') +sha256sums=('37a0d0d4f6c8515e70e34f1e7e1f457f4c7736f35ba0f18c4b4bca0a17db7de0') build() { cd "$pkgname-$pkgver" diff --git a/extra/evolution-ews/PKGBUILD b/extra/evolution-ews/PKGBUILD index c4b80b6c1..57c2ee4c0 100644 --- a/extra/evolution-ews/PKGBUILD +++ b/extra/evolution-ews/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 170812 2012-11-12 02:30:11Z heftig $ +# $Id: PKGBUILD 176004 2013-01-25 17:34:07Z ioni $ # Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=evolution-ews -pkgver=3.6.1 +pkgver=3.6.3 pkgrel=1 pkgdesc="MS Exchange integration through Exchange Web Services" arch=('i686' 'x86_64' 'mips64el') @@ -12,7 +12,7 @@ depends=('evolution-data-server' 'gtkhtml4' 'gnome-desktop') makedepends=('intltool' 'evolution') options=('!libtool' '!emptydirs') source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('77931879da57a0721fb3bdc383eab961bf1f20040f309b7be329f19488e5f836') +sha256sums=('d044bf8f7753d9489d65a5b94b117cef1369d78c57810125fab229368d01fec6') build() { cd $pkgname-$pkgver diff --git a/extra/evolution/PKGBUILD b/extra/evolution/PKGBUILD index bd19a8cfe..10d632a0e 100644 --- a/extra/evolution/PKGBUILD +++ b/extra/evolution/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 170811 2012-11-12 02:28:56Z heftig $ +# $Id: PKGBUILD 176002 2013-01-25 17:24:35Z ioni $ # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Contributor: Jan de Groot <jgc@archlinux.org> pkgname=evolution -pkgver=3.6.2 +pkgver=3.6.3 pkgrel=1 pkgdesc="Manage your email, contacts and schedule" arch=('i686' 'x86_64' 'mips64el') @@ -17,7 +17,7 @@ options=('!libtool' '!emptydirs') install=evolution.install url=http://www.gnome.org/projects/evolution/ source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz) -sha256sums=('40b326c63abc33ccc1393c9e3b60c747234ab14a46fc4690255b523942ea8983') +sha256sums=('2c564f3e59cb26663d3e3992c881842815fb8fbc037074475f906030c8c5fd25') build() { cd $pkgname-$pkgver diff --git a/extra/java-commons-daemon/PKGBUILD b/extra/java-commons-daemon/PKGBUILD index a37658b7f..f4db99a74 100644 --- a/extra/java-commons-daemon/PKGBUILD +++ b/extra/java-commons-daemon/PKGBUILD @@ -1,19 +1,20 @@ # Maintainer: Guillaume ALAUX <guillaume@archlinux.org> pkgname=('java-commons-daemon' 'java-jsvc') pkgbase=java-commons-daemon -pkgver=1.0.8 +pkgver=1.0.12 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') -url="http://commons.apache.org/daemon/" +url='http://commons.apache.org/daemon/' license=('APACHE') _libname=commons-daemon source=(http://archive.apache.org/dist/commons/daemon/source/${_libname}-${pkgver}-src.tar.gz) -md5sums=('323a0bd9e2786256f02c5aed4e887fed') +sha256sums=('09135e4f3a26ebdd6d3035e2e7f631568af06beae32808527217373e3e31a9d0') makedepends=('apache-ant' 'docbook2x' 'docbook-xsl') build() { # commons-daemon.jar cd "${srcdir}/${_libname}-${pkgver}-src" + . /etc/profile.d/jdk.sh ant # jsvc @@ -24,7 +25,7 @@ build() { } package_java-commons-daemon() { - pkgdesc="Alternative invocation mechanism for unix-daemon-like java code" + pkgdesc='Alternative invocation mechanism for unix-daemon-like java code' depends=('java-runtime') cd "${srcdir}/${_libname}-${pkgver}-src" @@ -36,7 +37,7 @@ package_java-commons-daemon() { } package_java-jsvc() { - pkgdesc="Apache application for making Java applications run on UNIX more easily" + pkgdesc='Apache application for making Java applications run on UNIX more easily' depends=("java-${_libname}" 'libcap') cd "${srcdir}/${_libname}-${pkgver}-src/src/native/unix" diff --git a/extra/libao/PKGBUILD b/extra/libao/PKGBUILD index b65a3a2aa..ef95c76a7 100644 --- a/extra/libao/PKGBUILD +++ b/extra/libao/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 149069 2012-02-05 16:27:23Z bisson $ +# $Id: PKGBUILD 175921 2013-01-25 01:07:36Z bisson $ # Contributor: dorphell <dorphell@archlinux.org> # Maintainer: Gaetan Bisson <bisson@archlinux.org> pkgname=libao pkgver=1.1.0 -pkgrel=2.1 +pkgrel=3 pkgdesc='Cross-platform audio output library and plugins' url='http://xiph.org/ao/' arch=('i686' 'x86_64' 'mips64el') @@ -16,7 +16,7 @@ backup=('etc/libao.conf') source=("http://downloads.xiph.org/releases/ao/${pkgname}-${pkgver}.tar.gz" 'libao.conf') sha1sums=('9301bc4886f170c7122ab62677fb71cf001c04fd' - '558b3d297e0956af6959565db477023dbd492ca0') + '603f5e6715e7e50e1c8e8c1935c45a897c46e9af') conflicts=('libao-pulse') provides=("libao-pulse=${pkgver}-${pkgrel}") diff --git a/extra/libao/libao.conf b/extra/libao/libao.conf index c4eb5cdc3..abddf7593 100644 --- a/extra/libao/libao.conf +++ b/extra/libao/libao.conf @@ -1 +1,2 @@ default_driver=alsa +dev=default diff --git a/extra/libdmapsharing/PKGBUILD b/extra/libdmapsharing/PKGBUILD index 2539d70f4..72589e32f 100644 --- a/extra/libdmapsharing/PKGBUILD +++ b/extra/libdmapsharing/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 167260 2012-09-29 13:02:54Z ibiru $ +# $Id: PKGBUILD 175982 2013-01-25 15:12:09Z ioni $ #Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=libdmapsharing -pkgver=2.9.15 +pkgver=2.9.16 pkgrel=1 pkgdesc="A library that implements the DMAP family of protocols" arch=('i686' 'x86_64' 'mips64el') url="http://www.flyn.org/projects/libdmapsharing/index.html" license=('LGPL2.1') -depends=('libsoup' 'avahi' 'gstreamer0.10-base' 'gdk-pixbuf2') +depends=('libsoup' 'avahi' 'gst-plugins-base-libs' 'gdk-pixbuf2') options=('!libtool') source=(http://www.flyn.org/projects/libdmapsharing/$pkgname-$pkgver.tar.gz) -md5sums=('52c9e4d3de931d9013eeaccf7371bb2d') +md5sums=('5b2fbf46efc95a503ed95094c72b34d2') build() { cd $pkgname-$pkgver diff --git a/extra/libgee/PKGBUILD b/extra/libgee/PKGBUILD index 0b836937d..370eb783c 100644 --- a/extra/libgee/PKGBUILD +++ b/extra/libgee/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 170755 2012-11-10 23:14:19Z heftig $ +# $Id: PKGBUILD 175984 2013-01-25 15:31:43Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=libgee -pkgver=0.6.6.1 +pkgver=0.6.7 pkgrel=1 pkgdesc="GObject collection library" url="http://live.gnome.org/Libgee" @@ -13,7 +13,7 @@ depends=('glib2') makedepends=('gobject-introspection') options=('!libtool') source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz) -sha256sums=('ac6598776cda8d1c8689930f48df074e88f17e9f5832bc300902ded5ab8144dd') +sha256sums=('b512bf1785fbbb6a264be5fac325c42d4e96cc560b22e3f19ea5b01b1414106d') build() { cd $pkgname-$pkgver diff --git a/extra/liblastfm/PKGBUILD b/extra/liblastfm/PKGBUILD index d6dc74481..aeadccd9f 100644 --- a/extra/liblastfm/PKGBUILD +++ b/extra/liblastfm/PKGBUILD @@ -1,32 +1,32 @@ -# $Id: PKGBUILD 150615 2012-02-18 22:58:30Z pierre $ -# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# $Id: PKGBUILD 175971 2013-01-25 14:23:37Z andrea $ +# Maintainer: +# Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: XazZ <xazz.xazz [AT] googlemail.com> pkgname=liblastfm -pkgver=0.3.3 -pkgrel=3 -pkgdesc="A collection of libraries to help you integrate Last.fm services into your rich desktop software" +pkgver=1.0.6 +pkgrel=1 +pkgdesc="A Qt C++ library for the Last.fm webservices" arch=('i686' 'x86_64' 'mips64el') -url="http://github.com/mxcl/liblastfm/" +url='https://github.com/lastfm/liblastfm/' license=('GPL') -depends=('libsamplerate' 'fftw' 'qt') -makedepends=('ruby') -options=('!libtool') -source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/mxcl/${pkgname}/tarball/${pkgver}" - 'no-ftools.patch') -sha1sums=('f2e9705c9c2cbeaa14f46da9bd35ab36fe710392' - 'ba344601d29091fb88123f80592359369efdf338') +depends=('qt' 'fftw' 'libsamplerate') +makedepends=('cmake') +source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/lastfm/${pkgname}/tarball/${pkgver}") +sha1sums=('cd84cf61d315c9739b3b65e31c2854a6b1a38630') build() { - cd ${srcdir}/mxcl-${pkgname}-1c739eb - - patch -Np1 -i ${srcdir}/no-ftools.patch - - ruby configure --release --prefix /usr + mkdir build + cd build + cmake ../lastfm-${pkgname}-5826fe6 \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ + -DBUILD_TESTS=OFF make } package(){ - cd ${srcdir}/mxcl-${pkgname}-1c739eb - make DESTDIR=${pkgdir} install + cd build + make DESTDIR="${pkgdir}" install } diff --git a/extra/libtorrent-rasterbar/PKGBUILD b/extra/libtorrent-rasterbar/PKGBUILD index 73aa25371..7110e0d7d 100644 --- a/extra/libtorrent-rasterbar/PKGBUILD +++ b/extra/libtorrent-rasterbar/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 175075 2013-01-12 16:47:42Z eric $ +# $Id: PKGBUILD 175959 2013-01-25 11:52:36Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Hugo Doria <hugo@archlinux.org> pkgname=libtorrent-rasterbar -pkgver=0.16.6 +pkgver=0.16.7 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=('baf95f53be99a90c4bb1488a72e9d625684bbbd2') +sha1sums=('94b132a17d8f6a5345937731343398be8d31f170') build() { cd $pkgname-$pkgver diff --git a/extra/opennx/PKGBUILD b/extra/opennx/PKGBUILD index ffc945687..e7abfa9ee 100644 --- a/extra/opennx/PKGBUILD +++ b/extra/opennx/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 165912 2012-09-03 19:20:05Z andyrtr $ +# $Id: PKGBUILD 175949 2013-01-25 09:52:43Z andyrtr $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: Armin Luntzer # Original opennx PKGBUILD: Tomas Groth tomasgroth.at.yahoo.dk pkgname=opennx -pkgver=0.16.0.724 -pkgrel=2 +pkgver=0.16.0.725 +pkgrel=1 pkgdesc="A GPL replacement for the NoMachine client, patched to always show the session chooser" url="http://opennx.sf.net/" arch=('i686' 'x86_64' 'mips64el') @@ -14,7 +14,7 @@ depends=('wxgtk' 'libcups' 'libxext' 'libxft' 'xorg-xauth' 'curl' 'nx-common') makedepends=('zip' 'opensc' 'libpulse' 'smbclient' 'libusb-compat') #optdepends=('cups: for full local printing support') source=(http://downloads.sourceforge.net/project/opennx/opennx/CI-source/opennx-$pkgver.tar.gz) -md5sums=('ad3962cda69e38857b244a1b7eb41f2c') +md5sums=('6bfe389638ac9c14fa89ca56b0c671b6') build() { cd $srcdir/opennx* diff --git a/extra/perl-dbd-mysql/PKGBUILD b/extra/perl-dbd-mysql/PKGBUILD index 7372de086..fe3af375d 100644 --- a/extra/perl-dbd-mysql/PKGBUILD +++ b/extra/perl-dbd-mysql/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 161944 2012-06-16 19:18:00Z eric $ +# $Id: PKGBUILD 175923 2013-01-25 03:51:01Z eric $ # Maintainer: kevin <kevin@archlinux.org> # Contributor: Eric Johnson <eric@coding-zone.com> pkgname=perl-dbd-mysql _realname=DBD-mysql -pkgver=4.021 +pkgver=4.022 pkgrel=1 pkgdesc="Perl/CPAN DBD::mysql module for interacting with MySQL via DBD" arch=('i686' 'x86_64' 'mips64el') @@ -14,7 +14,7 @@ depends=('libmysqlclient' 'perl-dbi') makedepends=('mysql') options=('!emptydirs') source=(http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/${_realname}-${pkgver}.tar.gz) -md5sums=('35653efca4bbe6e49ef31d237b4a50b7') +md5sums=('20fb571245e3b9ac275b8329025c4bf6') build() { cd "${srcdir}/${_realname}-${pkgver}" diff --git a/extra/perl-dbi/PKGBUILD b/extra/perl-dbi/PKGBUILD index 672ef1fb2..262b737d6 100644 --- a/extra/perl-dbi/PKGBUILD +++ b/extra/perl-dbi/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 163571 2012-07-16 03:09:15Z eric $ +# $Id: PKGBUILD 175925 2013-01-25 04:01:07Z eric $ # Maintainer: kevin <kevin@archlinux.org> # Contributor: Matt Thompson <mattt@defunct.ca> pkgname=perl-dbi _realname=DBI -pkgver=1.622 +pkgver=1.623 pkgrel=1 pkgdesc="Database independent interface for Perl" arch=('i686' 'x86_64' 'mips64el') @@ -13,7 +13,7 @@ url="http://search.cpan.org/dist/${_realname}/" depends=('perl') options=('!emptydirs') source=(http://www.cpan.org/authors/id/T/TI/TIMB/${_realname}-${pkgver}.tar.gz) -md5sums=('9836bcf1b9acc842089aa10b16736909') +md5sums=('b45654dca3b495f3d496c359f0029d96') build() { cd "${srcdir}/${_realname}-${pkgver}" diff --git a/extra/perl-net-dns/PKGBUILD b/extra/perl-net-dns/PKGBUILD index 1e1f63808..a5ef861ff 100644 --- a/extra/perl-net-dns/PKGBUILD +++ b/extra/perl-net-dns/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 160543 2012-06-02 10:28:00Z bluewind $ +# $Id: PKGBUILD 175933 2013-01-25 04:57:21Z eric $ # Maintainer: kevin <kevin@archlinux.org> # Contributor: Manolis Tzanidakis pkgname=perl-net-dns _realname=Net-DNS -pkgver=0.68 -pkgrel=2 +pkgver=0.72 +pkgrel=1 pkgdesc="Perl Module: Interface to the DNS resolver." arch=('i686' 'x86_64' 'mips64el') license=('PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('perl-digest-hmac' 'perl-net-ip' 'perl') options=('!emptydirs') -source=(http://www.cpan.org/authors/id/O/OL/OLAF/${_realname}-$pkgver.tar.gz) -md5sums=('05c0f6955747758bb5c9578d9bc6c3a5') +source=(http://www.cpan.org/authors/id/N/NL/NLNETLABS/${_realname}-$pkgver.tar.gz) +md5sums=('393e48ec6f28abe5ed30204276e02775') build() { cd "$srcdir/${_realname}-${pkgver}" diff --git a/extra/perl-netaddr-ip/PKGBUILD b/extra/perl-netaddr-ip/PKGBUILD index 53eb681b9..5b7c530b3 100644 --- a/extra/perl-netaddr-ip/PKGBUILD +++ b/extra/perl-netaddr-ip/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 168685 2012-10-14 03:44:54Z eric $ +# $Id: PKGBUILD 175931 2013-01-25 04:44:59Z eric $ # Maintainer: # Contributor: Dale Blount <dale@archlinux.org> # Contributor: Francois Charette <francois.archlinux.org> pkgname=perl-netaddr-ip _realname=NetAddr-IP -pkgver=4.065 +pkgver=4.066 pkgrel=1 pkgdesc="Perl module to manage IP addresses and subnets" arch=(i686 x86_64 'mips64el') @@ -14,7 +14,7 @@ depends=('perl') options=('!emptydirs') url="http://search.cpan.org/dist/${_realname}/" source=(http://search.cpan.org/CPAN/authors/id/M/MI/MIKER/${_realname}-${pkgver}.tar.gz) -md5sums=('f4efa7e90820ecf7ce2b3d9144f2568f') +md5sums=('7c6cf77d3c02fa0baf77b6a97f2a670a') build() { cd "${srcdir}/${_realname}-${pkgver}" diff --git a/extra/perl-yaml-syck/PKGBUILD b/extra/perl-yaml-syck/PKGBUILD index 3462058bd..3ba2bccbb 100644 --- a/extra/perl-yaml-syck/PKGBUILD +++ b/extra/perl-yaml-syck/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 167670 2012-10-02 21:01:45Z eric $ +# $Id: PKGBUILD 175939 2013-01-25 05:33:39Z eric $ # This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman # Maintainer: kevin <kevin@archlinux.org> pkgname=perl-yaml-syck _realname=YAML-Syck -pkgver=1.21 +pkgver=1.22 pkgrel=1 pkgdesc="Fast, lightweight YAML loader and dumper" arch=('i686' 'x86_64' 'mips64el') @@ -13,7 +13,7 @@ url="http://search.cpan.org/dist/${_realname}/" depends=('perl') options=('!emptydirs') source=(http://www.cpan.org/authors/id/T/TO/TODDR/${_realname}-$pkgver.tar.gz) -md5sums=('e9f8d4f9cea7def4d0b132dbf66516b2') +md5sums=('361db9a4dcaf8fa279ca813e146ce7d7') build() { cd "${srcdir}/${_realname}-$pkgver" diff --git a/extra/sonata/PKGBUILD b/extra/sonata/PKGBUILD index fd3434969..1737dc6f6 100644 --- a/extra/sonata/PKGBUILD +++ b/extra/sonata/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 169044 2012-10-17 10:21:28Z allan $ +# $Id: PKGBUILD 175943 2013-01-25 08:23:07Z andrea $ # Maintainer: Angel Velasquez <angvp@archlinux.org> # Contributor: William Rea <sillywilly@gmail.com> pkgname=sonata pkgver=1.6.2.1 -pkgrel=8 +pkgrel=9 pkgdesc="Elegant GTK+ music client for MPD" arch=('i686' 'x86_64' 'mips64el') url="http://sonata.berlios.de/" license=('GPL3') depends=('pygtk' 'python2-mpd') optdepends=('gnome-python-extras: Enhanced system tray support' - 'tagpy: Metadata editing support' + 'python2-tagpy: Metadata editing support' 'python2-dbus: Various extra functionality (e.g. multimedia keys support)') source=(http://download.berlios.de/${pkgname}/${pkgname}-$pkgver.tar.gz info.py.patch) @@ -19,12 +19,12 @@ md5sums=('0b912325e7175abad3bf6c0edc071e05' '595fcf7615035829b264afecb5a1beeb') build() { - cd "$srcdir/${pkgname}-$pkgver" + cd ${pkgname}-$pkgver patch -Np0 -i "$srcdir/info.py.patch" sed -i 's|/usr/bin/env python|/usr/bin/env python2|' sonata/breadcrumbs.py } package() { - cd "$srcdir/${pkgname}-$pkgver" + cd ${pkgname}-$pkgver python2 setup.py install --prefix=/usr --optimize 1 --root="$pkgdir" } diff --git a/extra/telepathy-gabble/PKGBUILD b/extra/telepathy-gabble/PKGBUILD index 915f7c4c1..3857efdc6 100644 --- a/extra/telepathy-gabble/PKGBUILD +++ b/extra/telepathy-gabble/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 169978 2012-10-30 22:59:56Z heftig $ +# $Id: PKGBUILD 175988 2013-01-25 15:56:11Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Daniel Balieiro <daniel@balieiro.com> # Contributor: Rodrigo L. M. Flores <mail@rodrigoflores.org> pkgname=telepathy-gabble -pkgver=0.17.1 +pkgver=0.17.2 pkgrel=1 pkgdesc="A Jabber/XMPP connection manager for Telepathy" arch=('i686' 'x86_64' 'mips64el') @@ -15,7 +15,7 @@ makedepends=('libxslt' 'python2') options=('!libtool' '!emptydirs') source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) install=telepathy-gabble.install -md5sums=('42e01fdc4117255080883495411e7318') +md5sums=('18329694ca5dcd35a97a70b9109c0f9a') build() { cd $pkgname-$pkgver diff --git a/extra/transmission/PKGBUILD b/extra/transmission/PKGBUILD index b39b80d0b..91cb4e4a6 100644 --- a/extra/transmission/PKGBUILD +++ b/extra/transmission/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 173915 2012-12-28 03:11:25Z foutrelis $ +# $Id: PKGBUILD 175990 2013-01-25 16:01:14Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> pkgbase=transmission pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt') -pkgver=2.75 +pkgver=2.76 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url="http://www.transmissionbt.com/" @@ -12,7 +12,11 @@ makedepends=('gtk3' 'intltool' 'curl' 'qt' 'libevent') source=(http://mirrors.m0k.org/transmission/files/$pkgbase-$pkgver.tar.xz transmissiond transmissiond.conf transmission.systemd transmission.tmpfiles) - +md5sums=('9abbffe29ce9b5ee68a116d293c51111' + '7d6186ee2a852ae3d44980f05063e194' + 'db72b02fee139e8ab416324e6c044d76' + '5c289c8901221a94be74665368ab5c2c' + '23f2320361ad54373c3a4551ef634fe8') build() { cd $pkgbase-$pkgver @@ -70,8 +74,3 @@ package_transmission-qt() { install -D -m644 qt/icons/transmission.png "$pkgdir/usr/share/pixmaps/transmission-qt.png" install -D -m644 qt/transmission-qt.desktop "$pkgdir/usr/share/applications/transmission-qt.desktop" } -md5sums=('26b92e56e1574bb10443eccbf17443a7' - '7d6186ee2a852ae3d44980f05063e194' - 'db72b02fee139e8ab416324e6c044d76' - '5c289c8901221a94be74665368ab5c2c' - '23f2320361ad54373c3a4551ef634fe8') diff --git a/extra/xfce4-smartbookmark-plugin/PKGBUILD b/extra/xfce4-smartbookmark-plugin/PKGBUILD index b7857d6d0..97b4c6da9 100644 --- a/extra/xfce4-smartbookmark-plugin/PKGBUILD +++ b/extra/xfce4-smartbookmark-plugin/PKGBUILD @@ -1,34 +1,28 @@ -# $Id: PKGBUILD 171600 2012-11-19 20:34:28Z foutrelis $ +# $Id: PKGBUILD 175945 2013-01-25 08:43:59Z foutrelis $ # Maintainer: # Contributor: AndyRTR <andyrtr@archlinux.org> # Contributor: Tobias Kieslich <tobias (at) archlinux.org> pkgname=xfce4-smartbookmark-plugin -pkgver=0.4.4 -pkgrel=4 +pkgver=0.4.5 +pkgrel=1 pkgdesc="Plugin for the Xfce4 panel that lets you quicksearch from selected websites" arch=('i686' 'x86_64' 'mips64el') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-smartbookmark-plugin" license=('GPL2') groups=('xfce4-goodies') -depends=('xfce4-panel' 'libxfcegui4') +depends=('xfce4-panel') makedepends=('intltool' 'libxt') options=('!libtool') source=(http://archive.xfce.org/src/panel-plugins/$pkgname/0.4/$pkgname-$pkgver.tar.bz2 - xfce4-smartbookmark-plugin-archlinux.patch - use-exo-open-instead-of-xfbrowser4.patch - fix-config-write.patch) -sha256sums=('6c77e8fee0ec4dcee7aa34d94377e068a522b1ea650823422f2f5cca8126f2ed' - 'a126b086811b60a8f3cd1a2b818cb6b9a9c6e959e00db1499b114fa8803325e6' - '436f7cda2b2bdfee61ac3d887d17dc91094526fec8713ab84fda249850525aac' - '21873511b77e0fac6c85f15dc6332fcb4532ac688f3202bc839c00f372249b88') + xfce4-smartbookmark-plugin-archlinux.patch) +sha256sums=('6aa4269a5f4b7a3332d3c491efbbbd0a9ff0031a0005fee780346863bcf4f886' + 'a126b086811b60a8f3cd1a2b818cb6b9a9c6e959e00db1499b114fa8803325e6') build() { cd "$srcdir/$pkgname-$pkgver" patch -Np0 -i "$srcdir/xfce4-smartbookmark-plugin-archlinux.patch" - patch -Np1 -i "$srcdir/use-exo-open-instead-of-xfbrowser4.patch" - patch -Np1 -i "$srcdir/fix-config-write.patch" ./configure \ --prefix=/usr \ diff --git a/extra/xorg-server/PKGBUILD b/extra/xorg-server/PKGBUILD index 0ecb40fde..48bed0ef9 100644 --- a/extra/xorg-server/PKGBUILD +++ b/extra/xorg-server/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 173249 2012-12-16 15:55:18Z andyrtr $ +# $Id: PKGBUILD 175947 2013-01-25 08:45:46Z andyrtr $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgbase=xorg-server pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xdmx' 'xorg-server-xvfb' 'xorg-server-xnest' 'xorg-server-common' 'xorg-server-devel') -pkgver=1.13.1 +pkgver=1.13.2 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') license=('custom') @@ -23,7 +23,7 @@ source=(${url}/releases/individual/xserver/${pkgbase}-${pkgver}.tar.bz2 loongson.patch #git-fixes.patch use-pixman-glyph-cache.patch) -sha256sums=('c93540e2799df4655c6f1b67dc7d8d6db96df4f08ef1702fffbc5df843a43d00' +sha256sums=('3850adb89e9170ad85aea39d240279494c07779e50cd3cd60126028681209408' '66e25f76a7496c429e0aff4b0670f168719bb0ceaeb88c6f2272f2bf3ed21162' 'd027776fac1f7675b0a9ee817502290b1c45f9c09b0f0a6bb058c35f92361e84' 'ff0156309470fc1d378fd2e104338020a884295e285972cc88e250e031cc35b9' diff --git a/libre/linux-libre-kmod-alx/PKGBUILD b/libre/linux-libre-kmod-alx/PKGBUILD index 335d35218..1aef0dc2e 100644 --- a/libre/linux-libre-kmod-alx/PKGBUILD +++ b/libre/linux-libre-kmod-alx/PKGBUILD @@ -1,10 +1,10 @@ # Maintainer: André Silva <emulatorman@lavabit.com> -_kernver=3.7.1 -_kernrel=2 +_kernver=3.7.4 +_kernrel=1 pkgname=('linux-libre-kmod-alx') -_pkgver=2012-12-19-u -pkgver=20121219 +_pkgver=2013-01-23-1-u +pkgver=20130123 pkgrel=1 pkgdesc='Atheros alx ethernet device driver for linux-libre kernel' arch=('i686' 'x86_64') @@ -16,9 +16,9 @@ install=linux-libre-kmod-alx.install replaces=('alx' 'alx-driver' 'dkms-alx') provides=('alx' 'alx-driver' 'dkms-alx') conflicts=('alx' 'alx-driver' 'dkms-alx') -source=(http://www.kernel.org/pub/linux/kernel/projects/backports/2012/12/19/compat-drivers-$_pkgver.tar.bz2) +source=(http://www.kernel.org/pub/linux/kernel/projects/backports/2013/01/23/compat-drivers-$_pkgver.tar.xz) -md5sums=('60756fde830487042a525ff17ccfe7ab') +md5sums=('4ba03ce3edf5a3fd2b79496284172d73') build() { diff --git a/libre/linux-libre-lts-kmod-alx/PKGBUILD b/libre/linux-libre-lts-kmod-alx/PKGBUILD index 767609934..5bea880cd 100644 --- a/libre/linux-libre-lts-kmod-alx/PKGBUILD +++ b/libre/linux-libre-lts-kmod-alx/PKGBUILD @@ -1,11 +1,11 @@ # Maintainer: André Silva <emulatorman@lavabit.com> -_kernver=3.0.57 +_kernver=3.0.60 _kernrel=1 pkgname=('linux-libre-lts-kmod-alx') _pkgver=2012-12-04-1-u pkgver=20121204 -pkgrel=1 +pkgrel=2 pkgdesc='Atheros alx ethernet device driver for linux-libre-lts kernel' arch=('i686' 'x86_64') url='http://www.linuxfoundation.org/collaborate/workgroups/networking/alx' @@ -16,9 +16,9 @@ install=linux-libre-lts-kmod-alx.install replaces=('alx' 'alx-driver' 'dkms-alx') provides=('alx' 'alx-driver' 'dkms-alx') conflicts=('alx' 'alx-driver' 'dkms-alx') -source=(http://www.kernel.org/pub/linux/kernel/projects/backports/2012/12/04/compat-drivers-$_pkgver.tar.bz2) +source=(http://www.kernel.org/pub/linux/kernel/projects/backports/2012/12/04/compat-drivers-$_pkgver.tar.xz) -md5sums=('bc46200e288acb862149a2af11f4b293') +md5sums=('0759f5668d20f420d6d9dc6d854a2ceb') build() { diff --git a/libre/linux-libre-tools/PKGBUILD b/libre/linux-libre-tools/PKGBUILD index af26e178d..1588b5319 100644 --- a/libre/linux-libre-tools/PKGBUILD +++ b/libre/linux-libre-tools/PKGBUILD @@ -1,5 +1,5 @@ # $Id$ -# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> +# Maintainer: Sébastien Luttringer <seblu@archlinux.org> # Maintainer (Parabola): André Silva <emulatorman@lavabit.com> pkgbase=linux-libre-tools @@ -9,7 +9,7 @@ _basekernel=3.7 #_sublevel=1 #pkgver=${_basekernel}.${_sublevel} pkgver=${_basekernel} -pkgrel=3.1 +pkgrel=4 license=('GPL2') arch=('i686' 'x86_64' 'mips64el') url='http://linux-libre.fsfla.org/' @@ -18,7 +18,7 @@ options=('!strip') # kernel source deps makedepends=('asciidoc' 'xmlto') # perf-libre deps -makedepends+=('perl' 'python2' 'libnewt' 'elfutils' 'audit' 'libunwind') +makedepends+=('perl' 'python2' 'libnewt' 'elfutils' 'audit' 'libunwind' 'binutils') # cpupower-libre deps makedepends+=('pciutils') # usbip-libre deps @@ -26,21 +26,15 @@ makedepends+=('glib2' 'sysfsutils') groups=("$pkgbase") source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-gnu/linux-libre-${_basekernel}-gnu.tar.xz" #"http://linux-libre.fsfla.org/pub/linux-libre/releases/${pkgver}-gnu/patch-${_basekernel}-gnu-${pkgver}-gnu.xz" - 'cpupower.conf' - 'cpupower.rc' + 'cpupower.default' 'cpupower.systemd' 'cpupower.service' - 'usbipd.conf' - 'usbipd.rc' 'usbipd.service') md5sums=('06bf9601d859531e7378eb43d4ca7dd3' '56883c159381ba89e50ab8ea65efec77' - '5fc1fcda4cef93f16e752b1931db23e3' - 'c0d17b5295fe964623c772a2dd981771' + '7e0710c2f31c1eb1e1417a7972e676b1' '2450e8ff41b30eb58d43b5fffbfde1f4' - 'e8fac9c45a628015644b4150b139278a' - '8a3831d962ff6a9968c0c20fd601cdec' - 'ba7c1c513314dd21fb2334fb8417738f') + 'a8fb0c6159bee1b9e345a87cabb3ba27') build() { # apply stable patching set @@ -122,7 +116,7 @@ package_perf-libre() { package_cpupower-libre() { pkgdesc='Linux kernel tool to examine and tune power saving related features of your processor' - backup=('etc/conf.d/cpupower') + backup=('etc/default/cpupower') depends=('bash' 'pciutils') replaces=('cpupower' 'cpufrequtils') conflicts=('cpupower' 'cpufrequtils') @@ -136,8 +130,7 @@ package_cpupower-libre() { install install-man popd # install startup scripts - install -Dm 755 cpupower.rc "$pkgdir/etc/rc.d/cpupower" - install -Dm 644 cpupower.conf "$pkgdir/etc/conf.d/cpupower" + install -Dm 644 cpupower.default "$pkgdir/etc/default/cpupower" install -Dm 644 cpupower.service "$pkgdir/usr/lib/systemd/system/cpupower.service" install -Dm 755 cpupower.systemd "$pkgdir/usr/lib/systemd/scripts/cpupower" } @@ -168,9 +161,7 @@ package_usbip-libre() { # module loading install -Dm 644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf" printf 'usbip-core\nusbip-host\n' > "$pkgdir/usr/lib/modules-load.d/$pkgname.conf" - # install daemon scripts - install -Dm 755 usbipd.rc "$pkgdir/etc/rc.d/usbipd" - install -Dm 644 usbipd.conf "$pkgdir/etc/conf.d/usbipd" + # systemd install -Dm 644 usbipd.service "$pkgdir/usr/lib/systemd/system/usbipd.service" } diff --git a/libre/linux-libre-tools/cpupower.default b/libre/linux-libre-tools/cpupower.default new file mode 100644 index 000000000..b5c522ea1 --- /dev/null +++ b/libre/linux-libre-tools/cpupower.default @@ -0,0 +1,29 @@ +# Define CPUs governor +# valid governors: ondemand, performance, powersave, conservative, userspace. +#governor='ondemand' + +# Limit frequency range +# Valid suffixes: Hz, kHz (default), MHz, GHz, THz +#min_freq="2.25GHz" +#max_freq="3GHz" + +# Specific frequency to be set. +# Requires userspace governor to be available. +# Do not set governor field if you use this one. +#freq= + +# Utilizes cores in one processor package/socket first before processes are +# scheduled to other processor packages/sockets. +# See man (1) CPUPOWER-SET for additional details. +#mc_scheduler= + +# Utilizes thread siblings of one processor core first before processes are +# scheduled to other cores. See man (1) CPUPOWER-SET for additional details. +#smp_scheduler= + +# Sets a register on supported Intel processore which allows software to convey +# its policy for the relative importance of performance versus energy savings to +# the processor. See man (1) CPUPOWER-SET for additional details. +#perf_bias= + +# vim:set ts=2 sw=2 ft=sh et: diff --git a/libre/linux-libre-tools/cpupower.systemd b/libre/linux-libre-tools/cpupower.systemd index f45b02bc8..51c645415 100644 --- a/libre/linux-libre-tools/cpupower.systemd +++ b/libre/linux-libre-tools/cpupower.systemd @@ -1,6 +1,6 @@ #!/bin/bash -. /etc/conf.d/cpupower +. /etc/default/cpupower declare -i fail=0 diff --git a/libre/linux-libre-tools/usbipd.service b/libre/linux-libre-tools/usbipd.service index ac2f5f7c1..1f3da08db 100644 --- a/libre/linux-libre-tools/usbipd.service +++ b/libre/linux-libre-tools/usbipd.service @@ -1,5 +1,6 @@ [Unit] Description=USB/IP server +After=network.target [Service] ExecStart=/usr/sbin/usbipd diff --git a/libre/virtualbox-libre-modules-lts/PKGBUILD b/libre/virtualbox-libre-modules-lts/PKGBUILD index 1833f020e..b19bb5ba7 100644 --- a/libre/virtualbox-libre-modules-lts/PKGBUILD +++ b/libre/virtualbox-libre-modules-lts/PKGBUILD @@ -8,7 +8,7 @@ pkgbase=virtualbox-libre-modules-lts pkgname=('virtualbox-libre-host-modules-lts' 'virtualbox-libre-guest-modules-lts') pkgver=4.2.6 -pkgrel=4 +pkgrel=5 arch=('i686' 'x86_64') url='http://virtualbox.org' license=('GPL') |