diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-28 03:31:41 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-28 03:31:41 +0000 |
commit | fc3a052d9f439abcf0ce424b7d45b682a5377087 (patch) | |
tree | e30cf804e2126c73de97abfb7a4819dd8aa092f8 /community | |
parent | 266ddb4aa9aed9a6a66b5eb9e17da710e66c4987 (diff) |
Wed May 28 03:24:53 UTC 2014
Diffstat (limited to 'community')
29 files changed, 139 insertions, 89 deletions
diff --git a/community/alltray/PKGBUILD b/community/alltray/PKGBUILD index ed4a3780b..6b19eb901 100644 --- a/community/alltray/PKGBUILD +++ b/community/alltray/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 99670 2013-10-30 22:55:01Z allan $ +# $Id: PKGBUILD 111939 2014-05-27 08:42:50Z jgc $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer : James Rayner <iphitus@gmail.com> # Contributor: Roberto Salas <ro0xito@gmail.com> pkgname=alltray pkgver=0.7.5.1dev -pkgrel=1 +pkgrel=3 pkgdesc="Drops any app in the tray." license=('GPL') arch=('i686' 'x86_64') diff --git a/community/astyle/PKGBUILD b/community/astyle/PKGBUILD index a0b384431..dab115bdd 100644 --- a/community/astyle/PKGBUILD +++ b/community/astyle/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 103213 2013-12-30 12:53:05Z lfleischer $ +# $Id: PKGBUILD 111974 2014-05-27 10:49:10Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Mateusz Herych <heniekk@gmail.com> # Contributor: Thomas Mader <thezema@gmail.com> @@ -7,7 +7,7 @@ pkgname=astyle pkgver=2.04 -pkgrel=1 +pkgrel=2 pkgdesc='A free, fast and small automatic formatter for C, C++, C#, and Java source code.' arch=('i686' 'x86_64') url='http://sourceforge.net/projects/astyle/' @@ -18,13 +18,14 @@ md5sums=('30b1193a758b0909d06e7ee8dd9627f6') build() { cd "$srcdir/$pkgname/build/gcc" - make + make release shared } package() { cd "$srcdir/$pkgname/build/gcc" install -Dm0755 bin/astyle "$pkgdir/usr/bin/astyle" + install -Dm0755 bin/libastyle.so "$pkgdir/usr/lib/libastyle.so" # install documentation (implements FS#23290) install -d "$pkgdir/usr/share/doc/$pkgname/" diff --git a/community/bamf/PKGBUILD b/community/bamf/PKGBUILD index 0e9e817f2..7d220013c 100644 --- a/community/bamf/PKGBUILD +++ b/community/bamf/PKGBUILD @@ -1,24 +1,33 @@ -# $Id: PKGBUILD 99159 2013-10-25 08:28:21Z alucryd $ +# $Id: PKGBUILD 111940 2014-05-27 08:42:51Z jgc $ # Maintainer: Maxime Gauduin <alucryd at gmail dot com> # Contributor: Balló György <ballogyor+arch at gmail dot com> pkgname=bamf pkgver=0.5.0 -pkgrel=2 -pkgdesc="Application matching framework" +pkgrel=3 +pkgdesc='Application matching framework' arch=('i686' 'x86_64') -url="https://launchpad.net/bamf" +url='https://launchpad.net/bamf' license=('GPL') depends=('libgtop' 'libwnck3') makedepends=('gobject-introspection' 'python2-lxml' 'vala') -source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz") -sha256sums=('93b1acced96d32b36270cf18feb2761014ce2226814303c632448f717a8f9113') +source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" + 'fix-legacy-window-test.patch') +sha256sums=('93b1acced96d32b36270cf18feb2761014ce2226814303c632448f717a8f9113' + '0d052f6d654ae86d14d7f73c428237b9410d11986ee1112d988a7ffe1df0988e') + +prepare() { + cd ${pkgname}-${pkgver} + + patch -Np0 -i ../fix-legacy-window-test.patch +} build() { cd ${pkgname}-${pkgver} export PYTHON='/usr/bin/python2' - ./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var' --libexecdir="/usr/lib/${pkgname}" --disable-{static,webapps} + ./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var' \ + --libexecdir="/usr/lib/${pkgname}" --disable-{static,webapps} make } diff --git a/community/bamf/fix-legacy-window-test.patch b/community/bamf/fix-legacy-window-test.patch new file mode 100644 index 000000000..872952a21 --- /dev/null +++ b/community/bamf/fix-legacy-window-test.patch @@ -0,0 +1,24 @@ +--- src/bamf-legacy-window-test.c 2013-08-08 12:32:39 +0000 ++++ src/bamf-legacy-window-test.c 2014-01-07 19:15:14 +0000 +@@ -427,7 +427,7 @@ + g_return_if_fail (BAMF_IS_LEGACY_WINDOW_TEST (window)); + BamfLegacyWindowTest *self = BAMF_LEGACY_WINDOW_TEST (window); + +- return g_hash_table_insert (self->hints, g_strdup (name), g_strdup (value)); ++ g_hash_table_insert (self->hints, g_strdup (name), g_strdup (value)); + } + + static char * + +=== modified file 'src/bamf-view.c' +--- src/bamf-view.c 2013-07-31 00:11:27 +0000 ++++ src/bamf-view.c 2014-01-09 16:24:53 +0000 +@@ -88,6 +88,7 @@ + gboolean active = bamf_view_is_active (self); + + g_signal_emit_by_name (self, "active-changed", active); ++ self->priv->active_changed_idle = 0; + + return FALSE; + } + diff --git a/community/caja-actions/PKGBUILD b/community/caja-actions/PKGBUILD index bf3fba61d..01a9ef6fe 100644 --- a/community/caja-actions/PKGBUILD +++ b/community/caja-actions/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 107994 2014-03-20 15:16:13Z flexiondotorg $ +# $Id: PKGBUILD 111941 2014-05-27 08:42:52Z jgc $ # Maintainer : Martin Wimpress <code@flexion.org> # Contributor: 3ED <krzysztof1987@gmail.com> pkgname=caja-actions pkgver=1.7.0 -pkgrel=2 +pkgrel=3 arch=('i686' 'x86_64') pkgdesc="An extension for Caja which allows arbitrary programs to be launched via context menu." url="https://github.com/NiceandGently/caja-actions" diff --git a/community/dd_rescue/PKGBUILD b/community/dd_rescue/PKGBUILD index 392d75110..cb799adf8 100644 --- a/community/dd_rescue/PKGBUILD +++ b/community/dd_rescue/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 111763 2014-05-23 14:09:49Z fyan $ +# $Id: PKGBUILD 111990 2014-05-27 18:04:40Z fyan $ # Maintainer: Felix Yan <felixonmars@gmail.com> # Contributor: Zerial <fernando@zerial.org> # Contributor: Patrick Leslie Polzer <leslie.polzer@gmx.net> # Contributor: Jose Riha <jose1711 gmail com> pkgname=dd_rescue -pkgver=1.44 +pkgver=1.45 pkgrel=1 pkgdesc="A dd version that is very useful for data-recovery" url="http://www.garloff.de/kurt/linux/ddrescue/" @@ -31,4 +31,4 @@ package() { make DESTDIR="$pkgdir" INSTALLDIR="$pkgdir/usr/bin" install } -sha512sums=('16e9072aeda04fe898d36e13d1dfc871642c7d1d1ac79b787f3ffd24ced2e13c605b4b36f66334ee4e258d01eee286ef74862e498a5a9ea5f9bd65a66a6ec213') +sha512sums=('88022f38ad0e1ea171f1db014ba5e3f421fe9c35782f01220e27beb03618998860694df6b5d2e96ea4927640952c57153f2a1633dee9c13a2227e17ddd46b160') diff --git a/community/elasticsearch/PKGBUILD b/community/elasticsearch/PKGBUILD index 3d6c2d1eb..a9f88e924 100644 --- a/community/elasticsearch/PKGBUILD +++ b/community/elasticsearch/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 111683 2014-05-22 16:41:17Z mtorromeo $ +# $Id: PKGBUILD 111936 2014-05-27 07:45:13Z mtorromeo $ # Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> # Contributor: Marcello "mererghost" Rocha <https://github.com/mereghost> # Refactored by Blaž "Speed" Hrastnik <https://github.com/archSeer> pkgname=elasticsearch pkgver=1.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="Distributed RESTful search engine built on top of Lucene" arch=('i686' 'x86_64') url="http://www.elasticsearch.org/" @@ -40,10 +40,10 @@ prepare() { echo -e '\nJAVA_OPTS="$JAVA_OPTS -Des.path.conf=/etc/elasticsearch"' >> bin/elasticsearch.in.sh - sed -e 's/# \(path\.conf: \).*$/\1\/etc\/elasticsearch/' \ - -e '0,/# \(path\.data: \).*$/s//\1\/var\/lib\/elasticsearch/' \ - -e 's/# \(path\.work: \).*$/\1\/tmp\/elasticsearch/' \ - -e 's/# \(path\.logs: \).*$/\1\/var\/log\/elasticsearch/' \ + sed -re 's/#\s*(path\.conf:).*$/\1 \/etc\/elasticsearch/' \ + -e '0,/#\s*(path\.data:).*$/s//\1 \/var\/lib\/elasticsearch/' \ + -e 's/#\s*(path\.work:).*$/\1 \/tmp\/elasticsearch/' \ + -e 's/#\s*(path\.logs:).*$/\1 \/var\/log\/elasticsearch/' \ -i config/elasticsearch.yml } diff --git a/community/electricsheep/PKGBUILD b/community/electricsheep/PKGBUILD index 7f6d1c6c3..4508736d7 100644 --- a/community/electricsheep/PKGBUILD +++ b/community/electricsheep/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 111101 2014-05-13 21:14:09Z eric $ +# $Id: PKGBUILD 111942 2014-05-27 08:42:53Z jgc $ # Maintainer: Eric Bélanger <eric@archlinux.org> pkgname=electricsheep pkgver=2.7b33 -pkgrel=15 +pkgrel=16 pkgdesc="A screensaver that realize the collective dream of sleeping computers from all over the internet" arch=('i686' 'x86_64') url="http://community.electricsheep.org/" diff --git a/community/gdesklets/PKGBUILD b/community/gdesklets/PKGBUILD index e2912ffb6..9c8b6b271 100644 --- a/community/gdesklets/PKGBUILD +++ b/community/gdesklets/PKGBUILD @@ -1,14 +1,14 @@ -# $Id: PKGBUILD 108981 2014-04-08 16:45:39Z bgyorgy $ +# $Id: PKGBUILD 111943 2014-05-27 08:42:54Z jgc $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> # Contributor: nifan <carlos@nifan.tk> # Contributor: Roman Kyrylych <roman@archlinux.org> pkgname=gdesklets pkgver=0.36.3 -pkgrel=4 +pkgrel=5 pkgdesc="System for bringing mini programs (desklets) onto your desktop" arch=('i686' 'x86_64') -url="http://gdesklets.de/" +url="https://launchpad.net/gdesklets" license=('GPL') depends=('libgtop' 'librsvg' 'pygtk' 'desktop-file-utils' 'gnome-icon-theme' 'xdg-utils') makedepends=('gnome-python' 'intltool') @@ -22,16 +22,26 @@ md5sums=('60c0c4e7301b3e653702b6fe5bf7e698' '55ac07d16a571f29033495307c4d0f0c' '45e81dd0fb20157bb840d006c3a4e2ea') -build() { +prepare() { cd "$srcdir/$pkgname-$pkgver" + + # Build fix patch -Np0 -i "$srcdir/gdesklets-core-0.36.3-.in-files.patch" + + # Runtime fix without gnome-vfs patch -Np1 -i "$srcdir/fix-vfs.patch" - # https://code.launchpad.net/~ballogy/gdesklets/optional-use-gconf-appindicator/+merge/95809 + + # Make gconf dependency optional patch -Np1 -i "$srcdir/make-gconf-optional.patch" + # Python2 fix find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@' sed -i 's/python -c/$PYTHON -c/' configure.ac sed -i 's/python/python2/' shell/plugins/PackageInstaller/__init__.py +} + +build() { + cd "$srcdir/$pkgname-$pkgver" autoreconf -fi ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ @@ -42,6 +52,5 @@ build() { package() { cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install } diff --git a/community/gecko-mediaplayer/PKGBUILD b/community/gecko-mediaplayer/PKGBUILD index aed59c6e8..f20175e23 100644 --- a/community/gecko-mediaplayer/PKGBUILD +++ b/community/gecko-mediaplayer/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 92203 2013-06-02 18:37:52Z bpiotrowski $ +# $Id: PKGBUILD 111962 2014-05-27 10:21:23Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Allan McRae <mcrae_allan@hotmail.com> # Contributor: fancris3 <fancris3 at aol.com> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=gecko-mediaplayer -pkgver=1.0.8 +pkgver=1.0.9 pkgrel=1 pkgdesc='Browser plugin that uses gnome-mplayer to play media in a web browser.' arch=('i686' 'x86_64') @@ -14,8 +14,8 @@ license=('GPL') depends=("gnome-mplayer>=${pkgver}" 'dbus-glib' 'gmtk' 'curl') makedepends=('xulrunner' 'pkgconfig') replaces=('mplayer-plugin') -source=("http://gecko-mediaplayer.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") -md5sums=('d13303664fcbb7f3b1273be4b1aa1b1e') +source=("https://${pkgname}.googlecode.com/svn/packages/${pkgname}-${pkgver}.tar.gz") +md5sums=('69b50ecbbbf34ca6d980a477345dbd40') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/gnome-mplayer/PKGBUILD b/community/gnome-mplayer/PKGBUILD index 6709ef456..3bdc50862 100644 --- a/community/gnome-mplayer/PKGBUILD +++ b/community/gnome-mplayer/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 92201 2013-06-02 18:25:47Z bpiotrowski $ +# $Id: PKGBUILD 111960 2014-05-27 10:20:38Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Allan McRae <mcrae_allan@hotmail.com> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=gnome-mplayer -pkgver=1.0.8 +pkgver=1.0.9 pkgrel=1 pkgdesc='A simple MPlayer GUI.' arch=('i686' 'x86_64') @@ -13,8 +13,8 @@ license=('GPL') depends=('mplayer' 'dbus-glib' 'libnotify' 'gnome-icon-theme' 'hicolor-icon-theme' 'dconf' 'gmtk') makedepends=('gnome-power-manager' 'nautilus') install="${pkgname}.install" -source=("http://gnome-mplayer.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") -md5sums=('9225dc0645d050ee31dd877559d7c16b') +source=("https://${pkgname}.googlecode.com/svn/packages/${pkgname}-${pkgver}.tar.gz") +md5sums=('26c3ab335b6fcdda220b05c977f5b0f1') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/icecast/PKGBUILD b/community/icecast/PKGBUILD index aad4ca008..e7e9a06a8 100644 --- a/community/icecast/PKGBUILD +++ b/community/icecast/PKGBUILD @@ -1,27 +1,27 @@ -# $Id: PKGBUILD 90559 2013-05-13 07:47:15Z lfleischer $ +# $Id: PKGBUILD 111964 2014-05-27 10:31:27Z lfleischer $ # Maintainer: # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: Andreas Radke <andyrtr@archlinux.org> # Contributor: Jason Chu <jchu@xentac.net> pkgname=icecast -pkgver=2.3.3 -pkgrel=4 +pkgver=2.4.0 +pkgrel=1 pkgdesc='Streaming audio over the Internet' arch=('i686' 'x86_64') license=('GPL') url='http://www.icecast.org/' -depends=('libxslt' 'libvorbis' 'curl' 'speex' 'libtheora') +depends=('libxslt' 'libvorbis' 'curl' 'speex' 'libtheora' 'libkate') backup=('etc/icecast.xml' 'etc/logrotate.d/icecast') source=("http://downloads.us.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz" 'icecast.logrotate' 'start-by-nobody.patch' 'icecast.service') -md5sums=('2b5d1b40778922e5f6431b7758c359ad' +md5sums=('bb00bfc0d6d2dde24974641085602b81' '59c6552bcb1dd9fb542af8670dfabd3c' 'd8e929d2214123a1954da4383bf16583' - '1468e59f76de194579b615889e20198f') + '0753c15f01dc14852e5d70925fc1f6a0') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -37,10 +37,6 @@ package() { make DESTDIR="${pkgdir}" install - # install man page - sed -i -e 's/icecast2/icecast/g' debian/icecast2.1 - install -Dm644 debian/icecast2.1 "${pkgdir}/usr/share/man/man1/icecast.1" - # install logrotate config (taken from Fedora) install -Dm644 "${srcdir}/icecast.logrotate" "${pkgdir}/etc/logrotate.d/icecast" diff --git a/community/icecast/icecast.service b/community/icecast/icecast.service index 2f4b0eb29..e4de96794 100644 --- a/community/icecast/icecast.service +++ b/community/icecast/icecast.service @@ -3,7 +3,9 @@ Description=Icecast Network Audio Streaming Server After=network.target [Service] +Type=simple ExecStart=/usr/bin/icecast -c /etc/icecast.xml +ExecReload=/usr/bin/kill -HUP $MAINPID [Install] WantedBy=multi-user.target diff --git a/community/marco/PKGBUILD b/community/marco/PKGBUILD index 35028c2db..2f76e8cb8 100644 --- a/community/marco/PKGBUILD +++ b/community/marco/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 106646 2014-03-06 11:38:22Z flexiondotorg $ +# $Id: PKGBUILD 111944 2014-05-27 08:42:55Z jgc $ # Maintainer : Martin Wimpress <code@flexion.org> pkgname=marco pkgver=1.8.0 -pkgrel=1 +pkgrel=2 pkgdesc="A window manager for MATE" url="http://mate-desktop.org" arch=('i686' 'x86_64') diff --git a/community/mate-applets/PKGBUILD b/community/mate-applets/PKGBUILD index eadbaca56..0dd632d08 100644 --- a/community/mate-applets/PKGBUILD +++ b/community/mate-applets/PKGBUILD @@ -1,8 +1,9 @@ +# $Id: PKGBUILD 111945 2014-05-27 08:42:56Z jgc $ # Maintainer : Martin Wimpress <code@flexion.org> pkgname=mate-applets pkgver=1.8.0 -pkgrel=3 +pkgrel=4 pkgdesc="Applets for MATE panel" arch=('i686' 'x86_64') url="http://mate-desktop.org" diff --git a/community/mate-netspeed/PKGBUILD b/community/mate-netspeed/PKGBUILD index a0081d010..63590aa76 100644 --- a/community/mate-netspeed/PKGBUILD +++ b/community/mate-netspeed/PKGBUILD @@ -1,8 +1,9 @@ +# $Id: PKGBUILD 111946 2014-05-27 08:42:58Z jgc $ # Maintainer : Martin Wimpress <code@flexion.org> pkgname=mate-netspeed pkgver=1.8.0 -pkgrel=1 +pkgrel=2 pkgdesc="A MATE applet that shows how much traffic occurs on a specified network device." url="http://mate-desktop.org" arch=('i686' 'x86_64') diff --git a/community/mate-nettool/PKGBUILD b/community/mate-nettool/PKGBUILD index da3b56e32..fb7cb1ad5 100644 --- a/community/mate-nettool/PKGBUILD +++ b/community/mate-nettool/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 105607 2014-02-11 17:55:05Z flexiondotorg $ +# $Id: PKGBUILD 111947 2014-05-27 08:42:59Z jgc $ # Maintainer : Martin Wimpress <code@flexion.org> pkgname=mate-nettool pkgver=1.8.1 -pkgrel=7 +pkgrel=8 pkgdesc="MATE interface for various networking tools." url="https://github.com/NiceandGently/mate-nettool" arch=('i686' 'x86_64') diff --git a/community/mate-system-monitor/PKGBUILD b/community/mate-system-monitor/PKGBUILD index de4d8e04b..8123e25c0 100644 --- a/community/mate-system-monitor/PKGBUILD +++ b/community/mate-system-monitor/PKGBUILD @@ -1,8 +1,9 @@ +# $Id: PKGBUILD 111948 2014-05-27 08:43:00Z jgc $ # Maintainer : Martin Wimpress <code@flexion.org> pkgname=mate-system-monitor pkgver=1.8.0 -pkgrel=1 +pkgrel=2 pkgdesc="A system monitor for MATE" url="http://mate-desktop.org" arch=('i686' 'x86_64') diff --git a/community/mate-utils/PKGBUILD b/community/mate-utils/PKGBUILD index bef0cb46f..0ba4630ce 100644 --- a/community/mate-utils/PKGBUILD +++ b/community/mate-utils/PKGBUILD @@ -1,8 +1,9 @@ +# $Id: PKGBUILD 111949 2014-05-27 08:43:01Z jgc $ # Maintainer : Martin Wimpress <code@flexion.org> pkgname=mate-utils pkgver=1.8.0 -pkgrel=1 +pkgrel=2 pkgdesc="Common MATE utilities for viewing disk usage, logs and fonts, taking screenshots, managing dictionaries and searching files" url="http://mate-desktop.org" arch=('i686' 'x86_64') diff --git a/community/metacity/PKGBUILD b/community/metacity/PKGBUILD index ea91e4d5e..4f4a0397b 100644 --- a/community/metacity/PKGBUILD +++ b/community/metacity/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 99909 2013-10-31 02:25:00Z allan $ +# $Id: PKGBUILD 111950 2014-05-27 08:43:03Z jgc $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> # Contributor: Jan de Groot <jgc@archlinux.org> pkgname=metacity pkgver=2.34.13 -pkgrel=5 +pkgrel=6 pkgdesc="Legacy GNOME window manager" arch=('i686' 'x86_64') license=('GPL') depends=('dconf' 'libcanberra' 'libgtop' 'gsettings-desktop-schemas' 'gtk2' 'startup-notification' 'zenity') makedepends=('intltool' 'itstool') -url="https://live.gnome.org/Metacity" +url="https://wiki.gnome.org/Projects/Metacity" install=metacity.install source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz fix_compositing_startup.patch @@ -25,7 +25,7 @@ sha256sums=('8cf4dbf0da0a6f36357ce7db7f829ec685908a7792453c662fb8184572b91075' 'e53c1c20e19cd3d94d05d08045c7a9a373ce52051928ccc69bf3068081f30f9a' '177ded8203c3ff25f59a24445145cb54da9aba4216a0014c34979b7c12f3c099') -build() { +prepare() { cd "$pkgname-$pkgver" # https://bugzilla.gnome.org/show_bug.cgi?id=658036 @@ -42,7 +42,10 @@ build() { # Rename switch-windows to switch-applications (required for GNOME 3.8 compatibility) patch -Np1 -i "$srcdir/application-switcher.patch" +} +build() { + cd "$pkgname-$pkgver" ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \ --disable-static --disable-schemas-compile make diff --git a/community/nautilus-actions/PKGBUILD b/community/nautilus-actions/PKGBUILD index 928386603..96d4befc8 100644 --- a/community/nautilus-actions/PKGBUILD +++ b/community/nautilus-actions/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 107222 2014-03-14 16:43:44Z bgyorgy $ +# $Id: PKGBUILD 111951 2014-05-27 08:43:05Z jgc $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> # Contributor: Ionut Biru <ibiru@archlinux.org> # Contributor: Roman Kyrylych <roman@archlinux.org> @@ -6,10 +6,10 @@ pkgname=nautilus-actions pkgver=3.2.3 -pkgrel=2 +pkgrel=3 pkgdesc="Configures programs to be launched when files are selected in Nautilus" arch=('i686' 'x86_64') -url="http://www.nautilus-actions.org/" +url="http://git.gnome.org/browse/nautilus-actions" license=('GPL') depends=('nautilus' 'libunique3' 'libgtop' 'libsm' 'gconf') makedepends=('intltool' 'gnome-doc-utils') diff --git a/community/nemiver/PKGBUILD b/community/nemiver/PKGBUILD index 40834a6ed..a6bae8cd7 100644 --- a/community/nemiver/PKGBUILD +++ b/community/nemiver/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 103761 2014-01-11 12:23:34Z arodseth $ +# $Id: PKGBUILD 111952 2014-05-27 08:43:06Z jgc $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: jordz <jordz@archlinux.us> pkgname=nemiver pkgver=0.9.5 -pkgrel=1 +pkgrel=2 pkgdesc='C/C++ debugger for GNOME' arch=('x86_64' 'i686') license=('GPL') diff --git a/community/paxd/PKGBUILD b/community/paxd/PKGBUILD index eff430b4a..0f473d07d 100644 --- a/community/paxd/PKGBUILD +++ b/community/paxd/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Daniel Micay <danielmicay@gmail.com> pkgname=paxd -pkgver=4 +pkgver=6 pkgrel=1 pkgdesc='PaX exception daemon' arch=(i686 x86_64) diff --git a/community/python-pyxattr/PKGBUILD b/community/python-pyxattr/PKGBUILD index 2df5e4aed..df6f9ced9 100644 --- a/community/python-pyxattr/PKGBUILD +++ b/community/python-pyxattr/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 108488 2014-03-27 14:48:18Z fyan $ +# $Id: PKGBUILD 111970 2014-05-27 10:35:58Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Jon Bergli Heier <snakebite@jvnv.net> pkgname=('python2-pyxattr' 'python-pyxattr') pkgbase=python-pyxattr _pkgname=pyxattr -pkgver=0.5.2 -pkgrel=2 +pkgver=0.5.3 +pkgrel=1 pkgdesc='A python extension module that allows you to manipulate the extended attributes.' arch=('i686' 'x86_64') url='http://pyxattr.k1024.org/' license=('GPL') makedepends=('python2' 'python' 'python2-setuptools' 'python-setuptools') source=("http://pyxattr.k1024.org/downloads/pyxattr-$pkgver.tar.gz") -md5sums=('9ff2e4218badc201b689b6d254290001') +md5sums=('579cf6ccccd70916f7eb5304ffd9e837') package_python2-pyxattr() { depends=('python2') diff --git a/community/scite/PKGBUILD b/community/scite/PKGBUILD index f18e5eddb..79081382e 100644 --- a/community/scite/PKGBUILD +++ b/community/scite/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 109205 2014-04-11 12:38:36Z arodseth $ +# $Id: PKGBUILD 111978 2014-05-27 11:55:39Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Thomas S Hatch <thatch45@gmail.com> # Contributor: Corrado 'bardo' Primier <corrado.primier@mail.polimi.it> @@ -6,7 +6,7 @@ # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=scite -pkgver=3.4.1 +pkgver=3.4.2 pkgrel=1 pkgdesc='Editor with facilities for building and running programs' arch=('x86_64' 'i686') @@ -17,7 +17,7 @@ makedepends=('setconf') backup=('usr/share/scite/SciTEGlobal.properties') install="$pkgname.install" source=("http://downloads.sourceforge.net/sourceforge/scintilla/${pkgname}${pkgver//./}.tgz") -sha256sums=('ab2940ba6ad3f1c7c33aea233dd5b44efc75319062fe0b3625db04c747bf3341') +sha256sums=('eebaa57322167f94010e44adbc44b9efeefd1f164fce10bceca363a14fc5d261') prepare() { if [ $?CXXBASEFLAGS == 1 ]; then diff --git a/community/tor/PKGBUILD b/community/tor/PKGBUILD index 175b3e36b..f40ee64a7 100644 --- a/community/tor/PKGBUILD +++ b/community/tor/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 109226 2014-04-11 20:15:49Z thestinger $ +# $Id: PKGBUILD 111976 2014-05-27 10:49:58Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Daniel Micay <danielmicay@gmail.com> # Contributor: simo <simo@archlinux.org> # Contributor: Sid Karunaratne pkgname=tor -pkgver=0.2.4.21 -pkgrel=3 +pkgver=0.2.4.22 +pkgrel=1 pkgdesc='Anonymizing overlay network.' arch=('i686' 'x86_64') url='http://www.torproject.org/' @@ -20,7 +20,7 @@ install='tor.install' source=("http://www.torproject.org/dist/${pkgname}-${pkgver}.tar.gz"{,.asc} 'torrc' 'tor.service') -md5sums=('bde981d10e8faf1e171ef1ebbb7b398a' +md5sums=('5a7eee0d9df87233255d78b25c6f8270' 'SKIP' 'c1dd4004c63edaeaa829e01be5413cfc' '51c81cd06b75edd87aafff5a7941822c') diff --git a/community/torch/PKGBUILD b/community/torch/PKGBUILD index 7bda8ea70..d4b084fb5 100644 --- a/community/torch/PKGBUILD +++ b/community/torch/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 100522 2013-11-05 11:47:05Z spupykin $ +# $Id: PKGBUILD 111984 2014-05-27 12:47:32Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=torch pkgver=3.1 -pkgrel=4 +pkgrel=5 pkgdesc="State of the art machine learning library" arch=(i686 x86_64) url="http://packages.debian.org/source/lenny/torch3" @@ -34,4 +34,5 @@ package() { install -D -m0755 lib/*.so* $pkgdir/usr/lib/ install -D -m0644 lib/*.a $pkgdir/usr/lib/ + ln -s libtorch.so.3.0.0 $pkgdir/usr/lib/libtorch.so } diff --git a/community/v8/PKGBUILD b/community/v8/PKGBUILD index ec1ff5e02..c19758778 100644 --- a/community/v8/PKGBUILD +++ b/community/v8/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 110924 2014-05-09 16:39:03Z anatolik $ +# $Id: PKGBUILD 111932 2014-05-26 22:25:34Z anatolik $ # Maintainer: Anatol Pomozov <anatol.pomozov@gmail.com> # Contributor: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Kaiting Chen <kaitocracy@gmail.com> @@ -6,7 +6,7 @@ pkgname=v8 # use http://omahaproxy.appspot.com/ to find stable v8 version -pkgver=3.24.35.33 +pkgver=3.25.28.16 pkgrel=1 pkgdesc='Fast and modern Javascript engine' arch=(i686 x86_64) @@ -17,7 +17,7 @@ makedepends=(subversion python2) # unfortunately https://github.com/$pkgname/$pkgname does not contain all tags source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.bz2 v8.pc) -sha256sums=('ebde3d100aa61ee6cdff436ef8cc9291b99f0c246afddd67120838f1b85871ec' +sha256sums=('0bc398066499fb8d927bdd9af0fc253da4d9a9b21253c8f8eaa9ef72a9e15d96' '2b054309df9af9fb2e3e14527e88360b44745649b4866e592fb357ac90935f5d') [[ "$CARCH" = 'i686' ]] && ARCH=ia32 diff --git a/community/workrave/PKGBUILD b/community/workrave/PKGBUILD index 8640272ea..4b139841f 100644 --- a/community/workrave/PKGBUILD +++ b/community/workrave/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 103150 2013-12-27 15:56:01Z spupykin $ +# $Id: PKGBUILD 111968 2014-05-27 10:34:18Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: William Rea <sillywilly@gmail.com> pkgname=workrave -pkgver=1.10.1 +pkgver=1.10.4 pkgrel=1 pkgdesc="a tool to help RSI" arch=('i686' 'x86_64') @@ -12,18 +12,19 @@ url="http://workrave.org" depends=('libxtst' 'gtkmm3' 'gconf' 'gdome2' 'gstreamer0.10' 'libsm' 'libice' 'python2-cheetah' 'libxss') makedepends=('intltool' 'gobject-introspection') -source=(http://downloads.sourceforge.net/workrave/workrave-$pkgver.tar.gz) -md5sums=('6ebc7896de350bf5fc61c24a210f9a6e') +source=($pkgname-$pkgver.tar.gz::https://github.com/rcaelers/workrave/archive/v${pkgver//./_}.tar.gz) +md5sums=('bd38a32f9a7c08665b1950b29659296e') build() { - cd $srcdir/workrave-$pkgver + cd $srcdir/workrave-${pkgver//./_} export PYTHON=python2 + ./autogen.sh ./configure --prefix=/usr --enable-dbus --sysconfdir=/etc --libexecdir=/usr/lib/workrave \ --disable-pulse make } package() { - cd $srcdir/workrave-$pkgver + cd $srcdir/workrave-${pkgver//./_} make DESTDIR=$pkgdir install } |