[arch-commits] Commit in owncloud-client/repos (10 files)
Date: Tuesday, June 9, 2015 @ 08:40:53 Author: arojas Revision: 135004 archrelease: copy trunk to community-i686, community-x86_64 Added: owncloud-client/repos/community-i686/PKGBUILD (from rev 135003, owncloud-client/trunk/PKGBUILD) owncloud-client/repos/community-i686/owncloud-client.install (from rev 135003, owncloud-client/trunk/owncloud-client.install) owncloud-client/repos/community-x86_64/PKGBUILD (from rev 135003, owncloud-client/trunk/PKGBUILD) owncloud-client/repos/community-x86_64/owncloud-client.install (from rev 135003, owncloud-client/trunk/owncloud-client.install) Deleted: owncloud-client/repos/community-i686/PKGBUILD owncloud-client/repos/community-i686/gcc-5.patch owncloud-client/repos/community-i686/owncloud-client.install owncloud-client/repos/community-x86_64/PKGBUILD owncloud-client/repos/community-x86_64/gcc-5.patch owncloud-client/repos/community-x86_64/owncloud-client.install --+ /PKGBUILD| 86 + /owncloud-client.install | 22 +++ community-i686/PKGBUILD | 49 community-i686/gcc-5.patch | 57 --- community-i686/owncloud-client.install | 11 --- community-x86_64/PKGBUILD| 49 community-x86_64/gcc-5.patch | 57 --- community-x86_64/owncloud-client.install | 11 --- 8 files changed, 108 insertions(+), 234 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-06-09 06:38:59 UTC (rev 135003) +++ community-i686/PKGBUILD 2015-06-09 06:40:53 UTC (rev 135004) @@ -1,49 +0,0 @@ -# $Id$ -# Maintainer: Antonio Rojas -# Contributor: Kuba Serafinowski - -_name=owncloudclient -pkgname=owncloud-client -pkgver=1.8.1 -pkgrel=2 -pkgdesc='ownCloud client based on mirall' -arch=(i686 x86_64) -url='http://owncloud.org/' -license=(GPL2) -depends=(qtkeychain-qt4 qtwebkit neon) -makedepends=(cmake python-sphinx) -optdepends=('python2-nautilus: integration with Nautilus') -install=$pkgname.install -backup=('etc/ownCloud/sync-exclude.lst') -source=("https://download.owncloud.com/desktop/stable/$_name-$pkgver.tar.xz"{,.asc} 'gcc-5.patch') -md5sums=('94c38c8cc15f2e34fae49e06ee3dc66e' - 'SKIP' - '1f6cc012ba0fb8517097c73cdb59560e') -validpgpkeys=('F05F7DD7953A07DF36579DAA498C45EBE94E7B37') - -prepare() { - mkdir -p build - -# Fix build with GCC 5 - cd $_name-$pkgver - patch -p1 -i "$srcdir"/gcc-5.patch -} - -build() { - cd build - - cmake ../$_name-$pkgver \ - -DBUILD_WITH_QT4=ON \ --DCMAKE_INSTALL_PREFIX=/usr \ --DCMAKE_INSTALL_LIBDIR=lib \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_INSTALL_SYSCONFDIR=/etc/$pkgname \ - - make - make doc-man -} - -package() { - cd build - make DESTDIR="$pkgdir" install -} Copied: owncloud-client/repos/community-i686/PKGBUILD (from rev 135003, owncloud-client/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-06-09 06:40:53 UTC (rev 135004) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Antonio Rojas +# Contributor: Kuba Serafinowski + +_name=owncloudclient +pkgname=owncloud-client +pkgver=1.8.2 +pkgrel=1 +pkgdesc='ownCloud client based on mirall' +arch=(i686 x86_64) +url='http://owncloud.org/' +license=(GPL2) +depends=(qtkeychain-qt4 qtwebkit neon) +makedepends=(cmake python-sphinx) +optdepends=('python2-nautilus: integration with Nautilus') +install=$pkgname.install +backup=('etc/ownCloud/sync-exclude.lst') +source=("https://download.owncloud.com/desktop/stable/$_name-$pkgver.tar.xz";) +md5sums=('08c6abccdc6105146715bfa9b90f7be2') +validpgpkeys=('F05F7DD7953A07DF36579DAA498C45EBE94E7B37') + +prepare() { + mkdir -p build +} + +build() { + cd build + + cmake ../$_name-$pkgver \ + -DBUILD_WITH_QT4=ON \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DCMAKE_INSTALL_LIBDIR=lib \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_INSTALL_SYSCONFDIR=/etc/$pkgname \ + + make + make doc-man +} + +package() { + cd build + make DESTDIR="$pkgdir" install +} Deleted: community-i686/gcc-5.patch === --- community-i686/gcc-5.patch 2015-06-09 06:38:59 UTC (rev 135003) +++ community-i686/gcc-5.patch 2015-06-09 06:40:53 UTC (rev 135004) @@ -1,57 +0,0 @@ -From 23b6426dfa1a17b05860c3a9e0ce08c4cd45b64b Mon Sep 17 00:00:00 2001 -From: Hefee -Date: Thu, 7 May 2015 01:15:55 +0200 -Subject: [PATCH] Compile with GCC 5 - -this fixes the error and makes complete oCC compile with GCC 5. -error: ISO C does not support '__FUNCTION__' predefined identifier -[-Wpedantic] - -According to the porting guide: -The fix is eit
[arch-commits] Commit in owncloud-client/trunk (PKGBUILD gcc-5.patch)
Date: Tuesday, June 9, 2015 @ 08:38:59 Author: arojas Revision: 135003 Update to 1.8.2 Modified: owncloud-client/trunk/PKGBUILD Deleted: owncloud-client/trunk/gcc-5.patch -+ PKGBUILD| 14 -- gcc-5.patch | 57 - 2 files changed, 4 insertions(+), 67 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 21:46:40 UTC (rev 135002) +++ PKGBUILD2015-06-09 06:38:59 UTC (rev 135003) @@ -4,8 +4,8 @@ _name=owncloudclient pkgname=owncloud-client -pkgver=1.8.1 -pkgrel=2 +pkgver=1.8.2 +pkgrel=1 pkgdesc='ownCloud client based on mirall' arch=(i686 x86_64) url='http://owncloud.org/' @@ -15,18 +15,12 @@ optdepends=('python2-nautilus: integration with Nautilus') install=$pkgname.install backup=('etc/ownCloud/sync-exclude.lst') -source=("https://download.owncloud.com/desktop/stable/$_name-$pkgver.tar.xz"{,.asc} 'gcc-5.patch') -md5sums=('94c38c8cc15f2e34fae49e06ee3dc66e' - 'SKIP' - '1f6cc012ba0fb8517097c73cdb59560e') +source=("https://download.owncloud.com/desktop/stable/$_name-$pkgver.tar.xz";) +md5sums=('08c6abccdc6105146715bfa9b90f7be2') validpgpkeys=('F05F7DD7953A07DF36579DAA498C45EBE94E7B37') prepare() { mkdir -p build - -# Fix build with GCC 5 - cd $_name-$pkgver - patch -p1 -i "$srcdir"/gcc-5.patch } build() { Deleted: gcc-5.patch === --- gcc-5.patch 2015-06-08 21:46:40 UTC (rev 135002) +++ gcc-5.patch 2015-06-09 06:38:59 UTC (rev 135003) @@ -1,57 +0,0 @@ -From 23b6426dfa1a17b05860c3a9e0ce08c4cd45b64b Mon Sep 17 00:00:00 2001 -From: Hefee -Date: Thu, 7 May 2015 01:15:55 +0200 -Subject: [PATCH] Compile with GCC 5 - -this fixes the error and makes complete oCC compile with GCC 5. -error: ISO C does not support '__FUNCTION__' predefined identifier -[-Wpedantic] - -According to the porting guide: -The fix is either to use the standard predefined identifier __func__ -(since C99), or to use the __extension__ keyword. - csync/src/csync_log.h | 2 +- - csync/src/httpbf/src/httpbf.c | 2 +- - csync/tests/csync_tests/check_csync_log.c | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/csync/src/csync_log.h b/csync/src/csync_log.h -index 38f5f9c..0cd0d01 100644 a/csync/src/csync_log.h -+++ b/csync/src/csync_log.h -@@ -61,7 +61,7 @@ enum csync_log_priority_e { - }; - - #define CSYNC_LOG(priority, ...) \ -- csync_log(priority, __FUNCTION__, __VA_ARGS__) -+ csync_log(priority, __func__, __VA_ARGS__) - - void csync_log(int verbosity, -const char *function, -diff --git a/csync/src/httpbf/src/httpbf.c b/csync/src/httpbf/src/httpbf.c -index 815b07e..2489e8d 100644 a/csync/src/httpbf/src/httpbf.c -+++ b/csync/src/httpbf/src/httpbf.c -@@ -42,7 +42,7 @@ - #define DEBUG_HBF(...) { if(transfer->log_cb) { \ - char buf[1024]; \ - snprintf(buf, 1024, __VA_ARGS__); \ --transfer->log_cb(__FUNCTION__, buf, transfer->user_data);\ -+transfer->log_cb(__func__, buf, transfer->user_data);\ - } } - - // #endif -diff --git a/csync/tests/csync_tests/check_csync_log.c b/csync/tests/csync_tests/check_csync_log.c -index 4c88c14..65a8ae9 100644 a/csync/tests/csync_tests/check_csync_log.c -+++ b/csync/tests/csync_tests/check_csync_log.c -@@ -131,7 +131,7 @@ static void check_logging(void **state) - rc = csync_set_log_callback(check_log_callback); - assert_int_equal(rc, 0); - --csync_log(1, __FUNCTION__, "rc = %d", rc); -+csync_log(1, __func__, "rc = %d", rc); - - rc = _tstat(path, &sb); -
[arch-commits] Commit in mutt/repos (10 files)
Date: Tuesday, June 9, 2015 @ 02:36:07 Author: bisson Revision: 240434 db-move: moved mutt from [testing] to [extra] (i686, x86_64) Added: mutt/repos/extra-i686/PKGBUILD (from rev 240433, mutt/repos/testing-i686/PKGBUILD) mutt/repos/extra-i686/cve-2014-9116.patch (from rev 240433, mutt/repos/testing-i686/cve-2014-9116.patch) mutt/repos/extra-x86_64/PKGBUILD (from rev 240433, mutt/repos/testing-x86_64/PKGBUILD) mutt/repos/extra-x86_64/cve-2014-9116.patch (from rev 240433, mutt/repos/testing-x86_64/cve-2014-9116.patch) Deleted: mutt/repos/extra-i686/PKGBUILD mutt/repos/extra-i686/cve-2014-9116.patch mutt/repos/extra-x86_64/PKGBUILD mutt/repos/extra-x86_64/cve-2014-9116.patch mutt/repos/testing-i686/ mutt/repos/testing-x86_64/ --+ /PKGBUILD| 122 + /cve-2014-9116.patch | 70 + extra-i686/PKGBUILD | 53 extra-i686/cve-2014-9116.patch | 35 -- extra-x86_64/PKGBUILD| 53 extra-x86_64/cve-2014-9116.patch | 35 -- 6 files changed, 192 insertions(+), 176 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2015-06-09 00:35:59 UTC (rev 240433) +++ extra-i686/PKGBUILD 2015-06-09 00:36:07 UTC (rev 240434) @@ -1,53 +0,0 @@ -# $Id$ -# Contributor: tobias [tobias [at] archlinux.org] -# Maintainer: Gaetan Bisson - -pkgname=mutt -pkgver=1.5.23 -pkgrel=2 -pkgdesc='Small but very powerful text-based mail client' -url='http://www.mutt.org/' -license=('GPL') -backup=('etc/Muttrc') -arch=('i686' 'x86_64') -optdepends=('smtp-forwarder: to send mail') -depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 'krb5') -source=("ftp://ftp.mutt.org/mutt/${pkgname}-${pkgver}.tar.gz"; -'cve-2014-9116.patch') -sha1sums=('8ac821d8b1e25504a31bf5fda9c08d93a4acc862' - '776e3e00fcf8a325e7b9c2bb456d3e9ba2c82307') - -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" - patch -p1 -i ../cve-2014-9116.patch -} - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --enable-gpgme \ - --enable-pop \ - --enable-imap \ - --enable-smtp \ - --enable-hcache \ - --with-curses=/usr \ - --with-regex \ - --with-gss=/usr \ - --with-ssl=/usr \ - --with-sasl \ - --with-idn \ - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm "${pkgdir}"/etc/mime.types{,.dist} - rm "${pkgdir}"/usr/bin/{flea,muttbug} - rm "${pkgdir}"/usr/share/man/man1/{flea,muttbug}.1 - install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist -} Copied: mutt/repos/extra-i686/PKGBUILD (from rev 240433, mutt/repos/testing-i686/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2015-06-09 00:36:07 UTC (rev 240434) @@ -0,0 +1,61 @@ +# $Id$ +# Contributor: tobias [tobias [at] archlinux.org] +# Maintainer: Gaetan Bisson + +pkgname=mutt +pkgver=1.5.23 +pkgrel=2 +pkgdesc='Small but very powerful text-based mail client' +url='http://www.mutt.org/' +license=('GPL') +backup=('etc/Muttrc') +arch=('i686' 'x86_64') +optdepends=('smtp-forwarder: to send mail') +depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 'krb5') +source=("ftp://ftp.mutt.org/mutt/${pkgname}-${pkgver}.tar.gz"; +'cve-2014-9116.patch') +sha1sums=('8ac821d8b1e25504a31bf5fda9c08d93a4acc862' + '776e3e00fcf8a325e7b9c2bb456d3e9ba2c82307') + +makedepends=('mercurial') +source=('hg+http://dev.mutt.org/hg/mutt#revision=0255b37be491bf11347c91d2197a4d9031423010') +sha1sums=('SKIP') +pkgver=1.5.23.hg.20150606 + +#prepare() { +# cd "${srcdir}/${pkgname}-${pkgver}" +# patch -p1 -i ../cve-2014-9116.patch +#} + +build() { +# cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}/${pkgname}" +# ./configure \ + ./prepare \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-gpgme \ + --enable-pop \ + --enable-imap \ + --enable-smtp \ + --enable-hcache \ + --with-curses=/usr \ + --with-regex \ + --with-gss=/usr \ + --with-ssl=/usr \ + --with-sasl \ + --with-idn \ + + make +} + +package() { +# cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}/${pkgname}" + make DESTDIR="${pkgdir}" install + + rm "${pkgdir}"/etc/mime.types{,.dist} + rm "${pk
[arch-commits] Commit in cronie/repos (18 files)
Date: Tuesday, June 9, 2015 @ 02:35:59 Author: bisson Revision: 240433 db-move: moved cronie from [testing] to [core] (i686, x86_64) Added: cronie/repos/core-i686/PKGBUILD (from rev 240432, cronie/repos/testing-i686/PKGBUILD) cronie/repos/core-i686/deny (from rev 240432, cronie/repos/testing-i686/deny) cronie/repos/core-i686/pam.d (from rev 240432, cronie/repos/testing-i686/pam.d) cronie/repos/core-i686/service (from rev 240432, cronie/repos/testing-i686/service) cronie/repos/core-x86_64/PKGBUILD (from rev 240432, cronie/repos/testing-x86_64/PKGBUILD) cronie/repos/core-x86_64/deny (from rev 240432, cronie/repos/testing-x86_64/deny) cronie/repos/core-x86_64/pam.d (from rev 240432, cronie/repos/testing-x86_64/pam.d) cronie/repos/core-x86_64/service (from rev 240432, cronie/repos/testing-x86_64/service) Deleted: cronie/repos/core-i686/PKGBUILD cronie/repos/core-i686/deny cronie/repos/core-i686/pam.d cronie/repos/core-i686/service cronie/repos/core-x86_64/PKGBUILD cronie/repos/core-x86_64/deny cronie/repos/core-x86_64/pam.d cronie/repos/core-x86_64/service cronie/repos/testing-i686/ cronie/repos/testing-x86_64/ --+ /PKGBUILD| 130 + /deny|2 /pam.d | 20 +++ /service | 22 core-i686/PKGBUILD | 65 core-i686/deny |1 core-i686/pam.d | 10 --- core-i686/service| 11 core-x86_64/PKGBUILD | 65 core-x86_64/deny |1 core-x86_64/pam.d| 10 --- core-x86_64/service | 11 12 files changed, 174 insertions(+), 174 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2015-06-08 20:06:33 UTC (rev 240432) +++ core-i686/PKGBUILD 2015-06-09 00:35:59 UTC (rev 240433) @@ -1,65 +0,0 @@ -# $Id$ -# Contributor: Kaiting Chen -# Maintainer: Gaetan Bisson - -pkgname='cronie' -pkgver=1.4.12 -pkgrel=1 -pkgdesc='Daemon that runs specified programs at scheduled times and related tools' -url='https://fedorahosted.org/cronie/' -license=('custom:BSD') -arch=('i686' 'x86_64') -depends=('pam' 'bash' 'run-parts') -optdepends=('pm-utils: defer anacron on battery power' -'smtp-server: send job output via email' -'smtp-forwarder: forward job output to email server') -source=("https://fedorahosted.org/releases/c/r/${pkgname}/${pkgname}-${pkgver}.tar.gz"; -'service' -'pam.d' -'deny') -sha1sums=('3bffa899d2c14ac0848cac40e9ecbcb7912e784a' - 'eb8ed1e22dbe9c02075fe4bbe925b6eeb9954649' - '5eff7fb31f6bc0a924243ff046704726cf20c221' - '0f279b8fb820340267d578dc85511c980715f91e') - -backup=('etc/cron.deny' -'etc/pam.d/crond' -'etc/cron.d/0hourly' -'etc/anacrontab') - -conflicts=('cron') -provides=('cron') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --sbindir=/usr/bin \ - --enable-anacron \ - --with-inotify \ - --with-pam \ - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}" install - - chmod u+s "${pkgdir}"/usr/bin/crontab - install -d "${pkgdir}"/var/spool/{ana,}cron - install -d "${pkgdir}"/etc/cron.{d,hourly,daily,weekly,monthly} - - install -Dm644 ../deny "${pkgdir}"/etc/cron.deny - install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/crond - install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/cronie.service - - install -Dm644 contrib/anacrontab "${pkgdir}"/etc/anacrontab - install -Dm644 contrib/0hourly "${pkgdir}"/etc/cron.d/0hourly - install -Dm755 contrib/0anacron "${pkgdir}"/etc/cron.hourly/0anacron - - install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/cronie/COPYING -} Copied: cronie/repos/core-i686/PKGBUILD (from rev 240432, cronie/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2015-06-09 00:35:59 UTC (rev 240433) @@ -0,0 +1,65 @@ +# $Id$ +# Contributor: Kaiting Chen +# Maintainer: Gaetan Bisson + +pkgname='cronie' +pkgver=1.5.0 +pkgrel=1 +pkgdesc='Daemon that runs specified programs at scheduled times and related tools' +url='https://fedorahosted.org/cronie/' +license=('custom:BSD') +arch=('i686' 'x86_64') +depends=('pam' 'bash' 'run-parts') +optdepends=('pm-utils: defer anacron on battery power' +'smtp-server: send job output via email' +'smtp-forwarder: forward job output to email server') +source=("https://fedorahosted.org/releases/c/r/${pkgname}/${pkgname}-${pk
[arch-commits] Commit in springlobby/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 23:46:18 Author: svenstaro Revision: 135001 upgpkg: springlobby 0.224-1 upstream release 0.224 Modified: springlobby/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 19:26:36 UTC (rev 135000) +++ PKGBUILD2015-06-08 21:46:18 UTC (rev 135001) @@ -3,7 +3,7 @@ # Contributor: DuGi pkgname=springlobby -pkgver=0.222 +pkgver=0.224 pkgrel=1 pkgdesc="A free cross-platform lobby client for the Spring RTS project." arch=('i686' 'x86_64')
[arch-commits] Commit in springlobby/repos (8 files)
Date: Monday, June 8, 2015 @ 23:46:40 Author: svenstaro Revision: 135002 archrelease: copy trunk to community-i686, community-x86_64 Added: springlobby/repos/community-i686/PKGBUILD (from rev 135001, springlobby/trunk/PKGBUILD) springlobby/repos/community-i686/springlobby.install (from rev 135001, springlobby/trunk/springlobby.install) springlobby/repos/community-x86_64/PKGBUILD (from rev 135001, springlobby/trunk/PKGBUILD) springlobby/repos/community-x86_64/springlobby.install (from rev 135001, springlobby/trunk/springlobby.install) Deleted: springlobby/repos/community-i686/PKGBUILD springlobby/repos/community-i686/springlobby.install springlobby/repos/community-x86_64/PKGBUILD springlobby/repos/community-x86_64/springlobby.install --+ /PKGBUILD| 78 + /springlobby.install | 22 + community-i686/PKGBUILD | 39 community-i686/springlobby.install | 11 community-x86_64/PKGBUILD| 39 community-x86_64/springlobby.install | 11 6 files changed, 100 insertions(+), 100 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-06-08 21:46:18 UTC (rev 135001) +++ community-i686/PKGBUILD 2015-06-08 21:46:40 UTC (rev 135002) @@ -1,39 +0,0 @@ -# $Id$ -# Maintainer: Sven-Hendrik Haase -# Contributor: DuGi - -pkgname=springlobby -pkgver=0.222 -pkgrel=1 -pkgdesc="A free cross-platform lobby client for the Spring RTS project." -arch=('i686' 'x86_64') -url="http://springlobby.info/"; -license=('GPL2') -depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 'boost-libs' - 'alure' 'libsm') -optdepends=('sdl' 'sdl_sound' 'sdl_mixer') -makedepends=('boost' 'asio' 'cmake' 'git') -install=springlobby.install -source=(git://github.com/springlobby/springlobby.git#tag=${pkgver}) -md5sums=('SKIP') - -prepare() { - cd $srcdir/${pkgname} - git submodule update --init -} - -build() { - cd $srcdir/${pkgname} - - cmake . \ --DCMAKE_INSTALL_PREFIX=/usr - make -} - -package() { - cd $srcdir/${pkgname} - - make DESTDIR=$pkgdir install -} - -# vim: sw=2:ts=2 et: Copied: springlobby/repos/community-i686/PKGBUILD (from rev 135001, springlobby/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-06-08 21:46:40 UTC (rev 135002) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Sven-Hendrik Haase +# Contributor: DuGi + +pkgname=springlobby +pkgver=0.224 +pkgrel=1 +pkgdesc="A free cross-platform lobby client for the Spring RTS project." +arch=('i686' 'x86_64') +url="http://springlobby.info/"; +license=('GPL2') +depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 'boost-libs' + 'alure' 'libsm') +optdepends=('sdl' 'sdl_sound' 'sdl_mixer') +makedepends=('boost' 'asio' 'cmake' 'git') +install=springlobby.install +source=(git://github.com/springlobby/springlobby.git#tag=${pkgver}) +md5sums=('SKIP') + +prepare() { + cd $srcdir/${pkgname} + git submodule update --init +} + +build() { + cd $srcdir/${pkgname} + + cmake . \ +-DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd $srcdir/${pkgname} + + make DESTDIR=$pkgdir install +} + +# vim: sw=2:ts=2 et: Deleted: community-i686/springlobby.install === --- community-i686/springlobby.install 2015-06-08 21:46:18 UTC (rev 135001) +++ community-i686/springlobby.install 2015-06-08 21:46:40 UTC (rev 135002) @@ -1,11 +0,0 @@ -post_install() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} Copied: springlobby/repos/community-i686/springlobby.install (from rev 135001, springlobby/trunk/springlobby.install) === --- community-i686/springlobby.install (rev 0) +++ community-i686/springlobby.install 2015-06-08 21:46:40 UTC (rev 135002) @@ -0,0 +1,11 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2015-06-08 21:46:18 UTC (rev 135001) +++ community-x86_64/PKGBUILD 2015-06-08 21:46:40 UTC (rev 135002) @@ -1,39 +0,0 @@ -# $Id$ -# Maintainer: Sven-Hendrik Haase -# Contributor: DuGi - -pkgname=springlobby -pkgver=0.222 -pkgrel=1 -pkgdesc="A free cross-platform lobby client for the Spring RTS project." -arch=('i686' 'x86_64') -url="http://springlobby.info/"; -license=('GPL2') -depends=('hicolor-ico
[arch-commits] Commit in ocl-icd/repos (4 files)
Date: Monday, June 8, 2015 @ 21:45:00 Author: lcarlier Revision: 240430 archrelease: copy trunk to testing-i686, testing-x86_64 Added: ocl-icd/repos/testing-i686/PKGBUILD (from rev 240429, ocl-icd/trunk/PKGBUILD) ocl-icd/repos/testing-x86_64/PKGBUILD (from rev 240429, ocl-icd/trunk/PKGBUILD) Deleted: ocl-icd/repos/testing-i686/PKGBUILD ocl-icd/repos/testing-x86_64/PKGBUILD -+ /PKGBUILD | 76 ++ testing-i686/PKGBUILD | 38 --- testing-x86_64/PKGBUILD | 38 --- 3 files changed, 76 insertions(+), 76 deletions(-) Deleted: testing-i686/PKGBUILD === --- testing-i686/PKGBUILD 2015-06-08 19:44:50 UTC (rev 240429) +++ testing-i686/PKGBUILD 2015-06-08 19:45:00 UTC (rev 240430) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Lukas Jirkovsky - -pkgname=ocl-icd -pkgver=2.2.5 -_pkgver=664 -pkgrel=1 -pkgdesc="OpenCL ICD Bindings" -arch=('i686' 'x86_64') -url="https://forge.imag.fr/projects/ocl-icd/"; -license=('GPL') -depends=('glibc') -makedepends=('ruby' 'opencl-headers>=1.2') -checkdepends=() -provides=('libcl' 'opencl-icd-loader') -conflicts=('libcl') -replaces=('libcl') -source=(http://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz) -md5sums=('a99017db1f8f4297e779bdc94daba4e0') - -build() { - cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr - make -} - -# fail in i686 -#check() { -# cd "$srcdir/$pkgname-$pkgver" -# make -k check -#} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install -} - -# vim:set ts=2 sw=2 et: Copied: ocl-icd/repos/testing-i686/PKGBUILD (from rev 240429, ocl-icd/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-06-08 19:45:00 UTC (rev 240430) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Lukas Jirkovsky + +pkgname=ocl-icd +pkgver=2.2.6 +_pkgver=666 +pkgrel=1 +pkgdesc="OpenCL ICD Bindings" +arch=('i686' 'x86_64') +url="https://forge.imag.fr/projects/ocl-icd/"; +license=('GPL') +depends=('glibc') +makedepends=('ruby' 'opencl-headers>=1.2') +checkdepends=() +provides=('libcl' 'opencl-icd-loader') +conflicts=('libcl') +replaces=('libcl') +source=(http://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz) +md5sums=('ae564b57bb7add100a674284af9bf0bd') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +# fail in i686 +#check() { +# cd "$srcdir/$pkgname-$pkgver" +# make -k check +#} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: Deleted: testing-x86_64/PKGBUILD === --- testing-x86_64/PKGBUILD 2015-06-08 19:44:50 UTC (rev 240429) +++ testing-x86_64/PKGBUILD 2015-06-08 19:45:00 UTC (rev 240430) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Lukas Jirkovsky - -pkgname=ocl-icd -pkgver=2.2.5 -_pkgver=664 -pkgrel=1 -pkgdesc="OpenCL ICD Bindings" -arch=('i686' 'x86_64') -url="https://forge.imag.fr/projects/ocl-icd/"; -license=('GPL') -depends=('glibc') -makedepends=('ruby' 'opencl-headers>=1.2') -checkdepends=() -provides=('libcl' 'opencl-icd-loader') -conflicts=('libcl') -replaces=('libcl') -source=(http://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz) -md5sums=('a99017db1f8f4297e779bdc94daba4e0') - -build() { - cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr - make -} - -# fail in i686 -#check() { -# cd "$srcdir/$pkgname-$pkgver" -# make -k check -#} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install -} - -# vim:set ts=2 sw=2 et: Copied: ocl-icd/repos/testing-x86_64/PKGBUILD (from rev 240429, ocl-icd/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2015-06-08 19:45:00 UTC (rev 240430) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Lukas Jirkovsky + +pkgname=ocl-icd +pkgver=2.2.6 +_pkgver=666 +pkgrel=1 +pkgdesc="OpenCL ICD Bindings" +arch=('i686' 'x86_64') +url="https://forge.imag.fr/projects/ocl-icd/"; +license=('GPL') +depends=('glibc') +makedepends=('ruby' 'opencl-headers>=1.2') +checkdepends=() +provides=('libcl' 'opencl-icd-loader') +conflicts=('libcl') +replaces=('libcl') +source=(http://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz) +md5sums=('ae564b57bb7add100a674284af9bf0bd') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +# fail in i686 +#check() { +# cd "$srcdir/$pkgname-$pkgver" +# make -k check +#} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in ocl-icd/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 21:44:50 Author: lcarlier Revision: 240429 upgpkg: ocl-icd 2.2.6-1 upstream update 2.2.6 Modified: ocl-icd/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 19:39:17 UTC (rev 240428) +++ PKGBUILD2015-06-08 19:44:50 UTC (rev 240429) @@ -2,8 +2,8 @@ # Maintainer: Lukas Jirkovsky pkgname=ocl-icd -pkgver=2.2.5 -_pkgver=664 +pkgver=2.2.6 +_pkgver=666 pkgrel=1 pkgdesc="OpenCL ICD Bindings" arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ conflicts=('libcl') replaces=('libcl') source=(http://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz) -md5sums=('a99017db1f8f4297e779bdc94daba4e0') +md5sums=('ae564b57bb7add100a674284af9bf0bd') build() { cd "$srcdir/$pkgname-$pkgver"
[arch-commits] Commit in xf86-input-libinput/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 21:39:10 Author: lcarlier Revision: 240427 upgpkg: xf86-input-libinput 0.11.0-2 fix FS#45229 (needs xorg-server-1.17.1-6) Modified: xf86-input-libinput/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 19:30:12 UTC (rev 240426) +++ PKGBUILD2015-06-08 19:39:10 UTC (rev 240427) @@ -3,14 +3,14 @@ pkgname=xf86-input-libinput pkgver=0.11.0 -pkgrel=1 +pkgrel=2 pkgdesc="Generic input driver for the X.Org server based on libinput" arch=('i686' 'x86_64') license=('custom') url="http://xorg.freedesktop.org/"; depends=('libinput') -makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'libxi' 'libx11' 'resourceproto' 'scrnsaverproto') -conflicts=('xorg-server<1.16' 'X-ABI-XINPUT_VERSION<21' 'X-ABI-XINPUT_VERSION>=22') +makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21.1' 'libxi' 'libx11' 'resourceproto' 'scrnsaverproto') +conflicts=('xorg-server<1.16' 'X-ABI-XINPUT_VERSION<21.1' 'X-ABI-XINPUT_VERSION>=22') groups=('xorg-drivers' 'xorg') source=(http://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig} 90-libinput.conf)
[arch-commits] Commit in xf86-input-libinput/repos (6 files)
Date: Monday, June 8, 2015 @ 21:39:17 Author: lcarlier Revision: 240428 archrelease: copy trunk to testing-i686, testing-x86_64 Added: xf86-input-libinput/repos/testing-i686/ xf86-input-libinput/repos/testing-i686/90-libinput.conf (from rev 240427, xf86-input-libinput/trunk/90-libinput.conf) xf86-input-libinput/repos/testing-i686/PKGBUILD (from rev 240427, xf86-input-libinput/trunk/PKGBUILD) xf86-input-libinput/repos/testing-x86_64/ xf86-input-libinput/repos/testing-x86_64/90-libinput.conf (from rev 240427, xf86-input-libinput/trunk/90-libinput.conf) xf86-input-libinput/repos/testing-x86_64/PKGBUILD (from rev 240427, xf86-input-libinput/trunk/PKGBUILD) -+ testing-i686/90-libinput.conf | 30 ++ testing-i686/PKGBUILD | 38 ++ testing-x86_64/90-libinput.conf | 30 ++ testing-x86_64/PKGBUILD | 38 ++ 4 files changed, 136 insertions(+) Copied: xf86-input-libinput/repos/testing-i686/90-libinput.conf (from rev 240427, xf86-input-libinput/trunk/90-libinput.conf) === --- testing-i686/90-libinput.conf (rev 0) +++ testing-i686/90-libinput.conf 2015-06-08 19:39:17 UTC (rev 240428) @@ -0,0 +1,30 @@ +# Match on all types of devices but tablet devices and joysticks + +Section "InputClass" +Identifier "libinput pointer catchall" +MatchIsPointer "on" +MatchDevicePath "/dev/input/event*" +Driver "libinput" +EndSection + +Section "InputClass" +Identifier "libinput keyboard catchall" +MatchIsKeyboard "on" +MatchDevicePath "/dev/input/event*" +Driver "libinput" +EndSection + +Section "InputClass" +Identifier "libinput touchpad catchall" +MatchIsTouchpad "on" +MatchDevicePath "/dev/input/event*" +Driver "libinput" +EndSection + +Section "InputClass" +Identifier "libinput touchscreen catchall" +MatchIsTouchscreen "on" +MatchDevicePath "/dev/input/event*" +Driver "libinput" +EndSection + Copied: xf86-input-libinput/repos/testing-i686/PKGBUILD (from rev 240427, xf86-input-libinput/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-06-08 19:39:17 UTC (rev 240428) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Laurent Carlier + +pkgname=xf86-input-libinput +pkgver=0.11.0 +pkgrel=2 +pkgdesc="Generic input driver for the X.Org server based on libinput" +arch=('i686' 'x86_64') +license=('custom') +url="http://xorg.freedesktop.org/"; +depends=('libinput') +makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21.1' 'libxi' 'libx11' 'resourceproto' 'scrnsaverproto') +conflicts=('xorg-server<1.16' 'X-ABI-XINPUT_VERSION<21.1' 'X-ABI-XINPUT_VERSION>=22') +groups=('xorg-drivers' 'xorg') +source=(http://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig} +90-libinput.conf) +sha256sums=('56babf46c13d15fbd15c9d43815e9220e63acd9ed28095e7d68ad03f9148bbda' +'SKIP' +'d4a728caadb7924852dcdc0da4de950c6fb9ebd8999d4e3af3d0baaa51cd0e75') +validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr --disable-static + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/X11/xorg.conf.d" + install -m644 ../90-libinput.conf "${pkgdir}/usr/share/X11/xorg.conf.d/" + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} + Copied: xf86-input-libinput/repos/testing-x86_64/90-libinput.conf (from rev 240427, xf86-input-libinput/trunk/90-libinput.conf) === --- testing-x86_64/90-libinput.conf (rev 0) +++ testing-x86_64/90-libinput.conf 2015-06-08 19:39:17 UTC (rev 240428) @@ -0,0 +1,30 @@ +# Match on all types of devices but tablet devices and joysticks + +Section "InputClass" +Identifier "libinput pointer catchall" +MatchIsPointer "on" +MatchDevicePath "/dev/input/event*" +Driver "libinput" +EndSection + +Section "InputClass" +Identifier "libinput keyboard catchall" +MatchIsKeyboard "on" +MatchDevicePath "/dev/input/event*" +Driver "libinput" +EndSection + +Section "InputClass" +Identifier "libinput touchpad catchall" +MatchIsTouchpad "on" +MatchDevicePath "/dev/input/event*" +Driver "libinput" +EndSection + +Section "InputClass" +Identifier "libinput touchscreen catchall" +
[arch-commits] Commit in xorg-server/repos (30 files)
Date: Monday, June 8, 2015 @ 21:30:12 Author: lcarlier Revision: 240426 archrelease: copy trunk to testing-i686, testing-x86_64 Added: xorg-server/repos/testing-i686/ xorg-server/repos/testing-i686/0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch (from rev 240425, xorg-server/trunk/0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch) xorg-server/repos/testing-i686/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch (from rev 240425, xorg-server/trunk/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch) xorg-server/repos/testing-i686/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch (from rev 240425, xorg-server/trunk/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch) xorg-server/repos/testing-i686/0001-sdksyms.sh-Make-sdksyms.sh-work-with-gcc5.patch (from rev 240425, xorg-server/trunk/0001-sdksyms.sh-Make-sdksyms.sh-work-with-gcc5.patch) xorg-server/repos/testing-i686/0002-dix-hook-up-the-unaccelerated-valuator-masks.patch (from rev 240425, xorg-server/trunk/0002-dix-hook-up-the-unaccelerated-valuator-masks.patch) xorg-server/repos/testing-i686/PKGBUILD (from rev 240425, xorg-server/trunk/PKGBUILD) xorg-server/repos/testing-i686/autoconfig-sis.patch (from rev 240425, xorg-server/trunk/autoconfig-sis.patch) xorg-server/repos/testing-i686/fix-CVE-2015-3164.patch (from rev 240425, xorg-server/trunk/fix-CVE-2015-3164.patch) xorg-server/repos/testing-i686/nvidia-drm-outputclass.conf (from rev 240425, xorg-server/trunk/nvidia-drm-outputclass.conf) xorg-server/repos/testing-i686/os-access-fix-regression-in-server-interpreted-auth.patch (from rev 240425, xorg-server/trunk/os-access-fix-regression-in-server-interpreted-auth.patch) xorg-server/repos/testing-i686/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch (from rev 240425, xorg-server/trunk/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch) xorg-server/repos/testing-i686/xorg-server.install (from rev 240425, xorg-server/trunk/xorg-server.install) xorg-server/repos/testing-i686/xvfb-run (from rev 240425, xorg-server/trunk/xvfb-run) xorg-server/repos/testing-i686/xvfb-run.1 (from rev 240425, xorg-server/trunk/xvfb-run.1) xorg-server/repos/testing-x86_64/ xorg-server/repos/testing-x86_64/0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch (from rev 240425, xorg-server/trunk/0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch) xorg-server/repos/testing-x86_64/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch (from rev 240425, xorg-server/trunk/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch) xorg-server/repos/testing-x86_64/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch (from rev 240425, xorg-server/trunk/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch) xorg-server/repos/testing-x86_64/0001-sdksyms.sh-Make-sdksyms.sh-work-with-gcc5.patch (from rev 240425, xorg-server/trunk/0001-sdksyms.sh-Make-sdksyms.sh-work-with-gcc5.patch) xorg-server/repos/testing-x86_64/0002-dix-hook-up-the-unaccelerated-valuator-masks.patch (from rev 240425, xorg-server/trunk/0002-dix-hook-up-the-unaccelerated-valuator-masks.patch) xorg-server/repos/testing-x86_64/PKGBUILD (from rev 240425, xorg-server/trunk/PKGBUILD) xorg-server/repos/testing-x86_64/autoconfig-sis.patch (from rev 240425, xorg-server/trunk/autoconfig-sis.patch) xorg-server/repos/testing-x86_64/fix-CVE-2015-3164.patch (from rev 240425, xorg-server/trunk/fix-CVE-2015-3164.patch) xorg-server/repos/testing-x86_64/nvidia-drm-outputclass.conf (from rev 240425, xorg-server/trunk/nvidia-drm-outputclass.conf) xorg-server/repos/testing-x86_64/os-access-fix-regression-in-server-interpreted-auth.patch (from rev 240425, xorg-server/trunk/os-access-fix-regression-in-server-interpreted-auth.patch) xorg-server/repos/testing-x86_64/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch (from rev 240425, xorg-server/trunk/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch) xorg-server/repos/testing-x86_64/xorg-server.install (from rev 240425, xorg-server/trunk/xorg-server.install) xorg-server/repos/testing-x86_64/xvfb-run (from rev 240425, xorg-server/trunk/xvfb-run) xorg-server/repos/testing-x86_64/xvfb-run.1 (from rev 240425, xorg-server/trunk/xvfb-run.1) + testing-i686/0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch | 210 ++ testing-i686/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch | 47 + testing-i686/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch | 42 + testing-i686/0001-sdksyms.sh-Make-sdksyms.sh-work-with-gcc5.patch | 51 + testing-i686/0002-dix-hook-up-the-unaccelerated-valuator-masks.patch | 134
[arch-commits] Commit in xorg-server/trunk (5 files)
Date: Monday, June 8, 2015 @ 21:29:45 Author: lcarlier Revision: 240425 upgpkg: xorg-server 1.17.1-6 fix FS#45245, FS#45229, CVE-2015-3164 Added: xorg-server/trunk/0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch xorg-server/trunk/0001-sdksyms.sh-Make-sdksyms.sh-work-with-gcc5.patch xorg-server/trunk/0002-dix-hook-up-the-unaccelerated-valuator-masks.patch xorg-server/trunk/fix-CVE-2015-3164.patch Modified: xorg-server/trunk/PKGBUILD + 0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch | 210 ++ 0001-sdksyms.sh-Make-sdksyms.sh-work-with-gcc5.patch | 51 + 0002-dix-hook-up-the-unaccelerated-valuator-masks.patch| 134 PKGBUILD | 27 fix-CVE-2015-3164.patch| 311 ++ 5 files changed, 727 insertions(+), 6 deletions(-) Added: 0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch === --- 0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch (rev 0) +++ 0001-dix-Add-unaccelerated-valuators-to-the-ValuatorMask.patch 2015-06-08 19:29:45 UTC (rev 240425) @@ -0,0 +1,210 @@ +From e1a7f4bb5333b0271d29f785eb55f1c3273e626a Mon Sep 17 00:00:00 2001 +From: Peter Hutterer +Date: Tue, 5 May 2015 14:18:54 +1000 +Subject: [PATCH] dix: Add unaccelerated valuators to the ValuatorMask + +Allows a mask to carry both accelerated and unaccelerated motion at the same +time. + +This is required for xf86-input-libinput where the pointer acceleration +happens in libinput already, but parts of the server, specifically raw events +and DGA rely on device-specific unaccelerated data. + +To ease integration add this as a second set to the ValuatorMask rather than +extending all APIs to carry a second, possibly NULL set of valuators. + +Note that a valuator mask should only be used in either accel/unaccel or +standard mode at any time. Switching requires either a valuator_mask_zero() +call or unsetting all valuators one-by-one. Trying to mix the two will produce +a warning. + +The server has a shortcut for changing a mask with the +valuator_mask_drop_unaccelerated() call. This saves us from having to loop +through all valuators on every event, we can just drop the bits we know we +don't want. + +Signed-off-by: Peter Hutterer +Reviewed-by: Hans de Goede +--- + dix/inpututils.c | 82 +++--- + hw/xfree86/common/xf86Module.h | 2 +- + include/input.h| 15 + include/inpututils.h | 2 ++ + 4 files changed, 95 insertions(+), 6 deletions(-) + +diff --git a/dix/inpututils.c b/dix/inpututils.c +index 5c2a32d..1363988 100644 +--- a/dix/inpututils.c b/dix/inpututils.c +@@ -505,11 +505,8 @@ valuator_mask_isset(const ValuatorMask *mask, int valuator) + return mask->last_bit >= valuator && BitIsOn(mask->mask, valuator); + } + +-/** +- * Set the valuator to the given floating-point data. +- */ +-void +-valuator_mask_set_double(ValuatorMask *mask, int valuator, double data) ++static inline void ++_valuator_mask_set_double(ValuatorMask *mask, int valuator, double data) + { + mask->last_bit = max(valuator, mask->last_bit); + SetBit(mask->mask, valuator); +@@ -517,6 +514,17 @@ valuator_mask_set_double(ValuatorMask *mask, int valuator, double data) + } + + /** ++ * Set the valuator to the given floating-point data. ++ */ ++void ++valuator_mask_set_double(ValuatorMask *mask, int valuator, double data) ++{ ++BUG_WARN_MSG(mask->has_unaccelerated, ++ "Do not mix valuator types, zero mask first\n"); ++_valuator_mask_set_double(mask, valuator, data); ++} ++ ++/** + * Set the valuator to the given integer data. + */ + void +@@ -594,11 +602,15 @@ valuator_mask_unset(ValuatorMask *mask, int valuator) + + ClearBit(mask->mask, valuator); + mask->valuators[valuator] = 0.0; ++mask->unaccelerated[valuator] = 0.0; + + for (i = 0; i <= mask->last_bit; i++) + if (valuator_mask_isset(mask, i)) + lastbit = max(lastbit, i); + mask->last_bit = lastbit; ++ ++if (mask->last_bit == -1) ++mask->has_unaccelerated = FALSE; + } + } + +@@ -611,6 +623,66 @@ valuator_mask_copy(ValuatorMask *dest, const ValuatorMask *src) + valuator_mask_zero(dest); + } + ++Bool ++valuator_mask_has_unaccelerated(const ValuatorMask *mask) ++{ ++return mask->has_unaccelerated; ++} ++ ++void ++valuator_mask_drop_unaccelerated(ValuatorMask *mask) ++{ ++memset(mask->unaccelerated, 0, sizeof(mask->unaccelerated)); ++mask->has_unaccelerated = FALSE; ++} ++ ++/** ++ * Set both accelerated and unaccelerated value for this mask. ++ */ ++void ++valuator_mask_set_unaccelerated(ValuatorMask *mask, ++
[arch-commits] Commit in python-html2text/repos/community-any (PKGBUILD PKGBUILD)
Date: Monday, June 8, 2015 @ 21:26:36 Author: jlichtblau Revision: 135000 archrelease: copy trunk to community-any Added: python-html2text/repos/community-any/PKGBUILD (from rev 134999, python-html2text/trunk/PKGBUILD) Deleted: python-html2text/repos/community-any/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 19:23:40 UTC (rev 134999) +++ PKGBUILD2015-06-08 19:26:36 UTC (rev 135000) @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 97778 2013-09-29 16:22:13Z jlichtblau $ -# Maintainer: Jaroslav Lichtblau -# Contributor: Giovanni Scafora -# Contributor: Daniel J Griffiths - -pkgname=python-html2text -pkgver=2015.4.14 -pkgrel=1 -pkgdesc="A HTML to markdown-structured text converter" -arch=('any') -url="https://pypi.python.org/pypi/html2text/"; -license=('GPL3') -depends=('python-setuptools') -provides=('html2text') -replaces=('html2text') -source=(https://pypi.python.org/packages/source/h/html2text/html2text-$pkgver.tar.gz) -sha256sums=('b966f618423e12b202f53652a57ea28b9d95861882f93658dcbd7d899603aa85') - -build() { - cd "${srcdir}"/html2text-$pkgver - python setup.py build -} - -check() { - cd "${srcdir}"/html2text-$pkgver - PYTHONPATH=$PYTHONPATH:. python setup.py test --verbose -} - -package() { - cd "${srcdir}"/html2text-${pkgver} - python setup.py install --root="${pkgdir}" -} Copied: python-html2text/repos/community-any/PKGBUILD (from rev 134999, python-html2text/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 19:26:36 UTC (rev 135000) @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 97778 2013-09-29 16:22:13Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau +# Contributor: Giovanni Scafora +# Contributor: Daniel J Griffiths + +pkgname=python-html2text +pkgver=2015.6.6 +pkgrel=1 +pkgdesc="A HTML to markdown-structured text converter" +arch=('any') +url="https://pypi.python.org/pypi/html2text/"; +license=('GPL3') +depends=('python-setuptools') +provides=('html2text') +replaces=('html2text') +source=(https://pypi.python.org/packages/source/h/html2text/html2text-$pkgver.tar.gz) +sha256sums=('f4bffa87b38de50cf872340f210ec68cef8d9d152c4d78474bce388d4052274f') + +build() { + cd "${srcdir}"/html2text-$pkgver + python setup.py build +} + +check() { + cd "${srcdir}"/html2text-$pkgver + PYTHONPATH=$PYTHONPATH:. python setup.py test --verbose +} + +package() { + cd "${srcdir}"/html2text-${pkgver} + python setup.py install --root="${pkgdir}" +}
[arch-commits] Commit in python-html2text/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 21:23:40 Author: jlichtblau Revision: 134999 upgpkg: python-html2text 2015.6.6-1 - new upstream release Modified: python-html2text/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 19:19:22 UTC (rev 134998) +++ PKGBUILD2015-06-08 19:23:40 UTC (rev 134999) @@ -4,7 +4,7 @@ # Contributor: Daniel J Griffiths pkgname=python-html2text -pkgver=2015.4.14 +pkgver=2015.6.6 pkgrel=1 pkgdesc="A HTML to markdown-structured text converter" arch=('any') @@ -14,7 +14,7 @@ provides=('html2text') replaces=('html2text') source=(https://pypi.python.org/packages/source/h/html2text/html2text-$pkgver.tar.gz) -sha256sums=('b966f618423e12b202f53652a57ea28b9d95861882f93658dcbd7d899603aa85') +sha256sums=('f4bffa87b38de50cf872340f210ec68cef8d9d152c4d78474bce388d4052274f') build() { cd "${srcdir}"/html2text-$pkgver
[arch-commits] Commit in moneymanagerex/repos/community-i686 (4 files)
Date: Monday, June 8, 2015 @ 21:19:22 Author: jlichtblau Revision: 134998 archrelease: copy trunk to community-i686 Added: moneymanagerex/repos/community-i686/PKGBUILD (from rev 134997, moneymanagerex/trunk/PKGBUILD) moneymanagerex/repos/community-i686/moneymanagerex.install (from rev 134997, moneymanagerex/trunk/moneymanagerex.install) Deleted: moneymanagerex/repos/community-i686/PKGBUILD moneymanagerex/repos/community-i686/moneymanagerex.install + PKGBUILD | 76 +++ moneymanagerex.install | 22 ++--- 2 files changed, 49 insertions(+), 49 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 18:55:35 UTC (rev 134997) +++ PKGBUILD2015-06-08 19:19:22 UTC (rev 134998) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Jaroslav Lichtblau -# Contributor: TDY - -pkgname=moneymanagerex -pkgver=1.1.2 -pkgrel=1 -pkgdesc="An easy-to-use personal finance suite" -arch=('i686' 'x86_64') -url="http://www.moneymanagerex.org/"; -license=('GPL') -depends=('wxsqlite3' 'webkitgtk2' 'hicolor-icon-theme') -makedepends=('git' 'boost' 'gettext') -optdepends=('cups: for printing support') -replaces=('mmex') -install=$pkgname.install -source=(git+https://github.com/moneymanagerex/moneymanagerex.git#tag=v${pkgver}) -sha256sums=('SKIP') - -prepare() { - cd "${srcdir}"/$pkgname - - git submodule update --init -} - -build() { - cd "${srcdir}"/$pkgname - - ./configure --prefix=/usr --disable-shared --enable-unicode - make - make po -} - -package() { - cd "${srcdir}"/$pkgname - - make DESTDIR="${pkgdir}" install -} Copied: moneymanagerex/repos/community-i686/PKGBUILD (from rev 134997, moneymanagerex/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 19:19:22 UTC (rev 134998) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Jaroslav Lichtblau +# Contributor: TDY + +pkgname=moneymanagerex +pkgver=1.2.1 +pkgrel=1 +pkgdesc="An easy-to-use personal finance suite" +arch=('i686' 'x86_64') +url="http://www.moneymanagerex.org/"; +license=('GPL') +depends=('wxsqlite3' 'webkitgtk2' 'hicolor-icon-theme') +makedepends=('git' 'boost' 'gettext') +optdepends=('cups: for printing support') +replaces=('mmex') +install=$pkgname.install +source=(git+https://github.com/moneymanagerex/moneymanagerex.git#tag=v${pkgver}) +sha256sums=('SKIP') + +prepare() { + cd "${srcdir}"/$pkgname + + git submodule update --init +} + +build() { + cd "${srcdir}"/$pkgname + + ./configure --prefix=/usr --disable-shared --enable-unicode + make + make po +} + +package() { + cd "${srcdir}"/$pkgname + + make DESTDIR="${pkgdir}" install +} Deleted: moneymanagerex.install === --- moneymanagerex.install 2015-06-08 18:55:35 UTC (rev 134997) +++ moneymanagerex.install 2015-06-08 19:19:22 UTC (rev 134998) @@ -1,11 +0,0 @@ -post_install() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} Copied: moneymanagerex/repos/community-i686/moneymanagerex.install (from rev 134997, moneymanagerex/trunk/moneymanagerex.install) === --- moneymanagerex.install (rev 0) +++ moneymanagerex.install 2015-06-08 19:19:22 UTC (rev 134998) @@ -0,0 +1,11 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}
[arch-commits] Commit in mpd/repos (16 files)
Date: Monday, June 8, 2015 @ 21:03:33 Author: bisson Revision: 240424 archrelease: copy trunk to extra-i686, extra-x86_64 Added: mpd/repos/extra-i686/PKGBUILD (from rev 240423, mpd/trunk/PKGBUILD) mpd/repos/extra-i686/conf (from rev 240423, mpd/trunk/conf) mpd/repos/extra-i686/install (from rev 240423, mpd/trunk/install) mpd/repos/extra-i686/tmpfiles.d (from rev 240423, mpd/trunk/tmpfiles.d) mpd/repos/extra-x86_64/PKGBUILD (from rev 240423, mpd/trunk/PKGBUILD) mpd/repos/extra-x86_64/conf (from rev 240423, mpd/trunk/conf) mpd/repos/extra-x86_64/install (from rev 240423, mpd/trunk/install) mpd/repos/extra-x86_64/tmpfiles.d (from rev 240423, mpd/trunk/tmpfiles.d) Deleted: mpd/repos/extra-i686/PKGBUILD mpd/repos/extra-i686/conf mpd/repos/extra-i686/install mpd/repos/extra-i686/tmpfiles.d mpd/repos/extra-x86_64/PKGBUILD mpd/repos/extra-x86_64/conf mpd/repos/extra-x86_64/install mpd/repos/extra-x86_64/tmpfiles.d -+ /PKGBUILD | 110 ++ /conf | 12 + /install| 22 + /tmpfiles.d |2 extra-i686/PKGBUILD | 55 --- extra-i686/conf |6 -- extra-i686/install | 11 extra-i686/tmpfiles.d |1 extra-x86_64/PKGBUILD | 55 --- extra-x86_64/conf |6 -- extra-x86_64/install| 11 extra-x86_64/tmpfiles.d |1 12 files changed, 146 insertions(+), 146 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2015-06-08 19:02:46 UTC (rev 240423) +++ extra-i686/PKGBUILD 2015-06-08 19:03:33 UTC (rev 240424) @@ -1,55 +0,0 @@ -# $Id$ -# Maintainer: Gaetan Bisson -# Contributor: Angel Velasquez -# Contributor: Andrea Scarpino -# Contributor: Damir Perisa -# Contributor: Ben - -pkgname=mpd -pkgver=0.19.9 -pkgrel=4 -pkgdesc='Flexible, powerful, server-side application for playing music' -url='http://www.musicpd.org/' -license=('GPL') -arch=('i686' 'x86_64') -depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 'faad2' - 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 'libmpdclient' - 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr') -makedepends=('boost' 'doxygen') -validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512') -source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig} -'tmpfiles.d' -'conf') -sha1sums=('6683bee5f132eda318c5a61ec14b2df8d9164d60' 'SKIP' - 'f4d5922abb69abb739542d8e93f4dfd748acdad7' - '291fd5cda9f0845834a553017327c4586bd853f6') - -backup=('etc/mpd.conf') -install=install - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --enable-libmpdclient \ - --enable-jack \ - --enable-soundcloud \ - --enable-pipe-output \ - --enable-pulse \ - --disable-sidplay \ - --with-systemdsystemunitdir=/usr/lib/systemd/system - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -Dm644 ../conf "${pkgdir}"/etc/mpd.conf - install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/mpd.conf - install -d -g 45 -o 45 "${pkgdir}"/var/lib/mpd/playlists - - install -Dm644 "${pkgdir}"/usr/lib/systemd/{system,user}/mpd.service - sed '/\[Service\]/a User=mpd' -i "${pkgdir}"/usr/lib/systemd/system/mpd.service - sed '/WantedBy=/c WantedBy=default.target' -i "${pkgdir}"/usr/lib/systemd/{system,user}/mpd.service -} Copied: mpd/repos/extra-i686/PKGBUILD (from rev 240423, mpd/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2015-06-08 19:03:33 UTC (rev 240424) @@ -0,0 +1,55 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: Angel Velasquez +# Contributor: Andrea Scarpino +# Contributor: Damir Perisa +# Contributor: Ben + +pkgname=mpd +pkgver=0.19.9 +pkgrel=5 +pkgdesc='Flexible, powerful, server-side application for playing music' +url='http://www.musicpd.org/' +license=('GPL') +arch=('i686' 'x86_64') +depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 'faad2' + 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 'libmpdclient' + 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient') +makedepends=('boost' 'doxygen') +validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512') +source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig} +'tmpfiles.d' +'conf') +sha1sums=('6683bee
[arch-commits] Commit in mpd/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 21:02:46 Author: bisson Revision: 240423 implement FS#45232 Modified: mpd/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 08:34:59 UTC (rev 240422) +++ PKGBUILD2015-06-08 19:02:46 UTC (rev 240423) @@ -7,7 +7,7 @@ pkgname=mpd pkgver=0.19.9 -pkgrel=4 +pkgrel=5 pkgdesc='Flexible, powerful, server-side application for playing music' url='http://www.musicpd.org/' license=('GPL') @@ -14,7 +14,7 @@ arch=('i686' 'x86_64') depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 'faad2' 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 'libmpdclient' - 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr') + 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient') makedepends=('boost' 'doxygen') validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512') source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
[arch-commits] Commit in moneymanagerex/repos/community-x86_64 (4 files)
Date: Monday, June 8, 2015 @ 20:55:35 Author: jlichtblau Revision: 134997 archrelease: copy trunk to community-x86_64 Added: moneymanagerex/repos/community-x86_64/PKGBUILD (from rev 134996, moneymanagerex/trunk/PKGBUILD) moneymanagerex/repos/community-x86_64/moneymanagerex.install (from rev 134996, moneymanagerex/trunk/moneymanagerex.install) Deleted: moneymanagerex/repos/community-x86_64/PKGBUILD moneymanagerex/repos/community-x86_64/moneymanagerex.install + PKGBUILD | 76 +++ moneymanagerex.install | 22 ++--- 2 files changed, 49 insertions(+), 49 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 18:55:26 UTC (rev 134996) +++ PKGBUILD2015-06-08 18:55:35 UTC (rev 134997) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Jaroslav Lichtblau -# Contributor: TDY - -pkgname=moneymanagerex -pkgver=1.1.2 -pkgrel=1 -pkgdesc="An easy-to-use personal finance suite" -arch=('i686' 'x86_64') -url="http://www.moneymanagerex.org/"; -license=('GPL') -depends=('wxsqlite3' 'webkitgtk2' 'hicolor-icon-theme') -makedepends=('git' 'boost' 'gettext') -optdepends=('cups: for printing support') -replaces=('mmex') -install=$pkgname.install -source=(git+https://github.com/moneymanagerex/moneymanagerex.git#tag=v${pkgver}) -sha256sums=('SKIP') - -prepare() { - cd "${srcdir}"/$pkgname - - git submodule update --init -} - -build() { - cd "${srcdir}"/$pkgname - - ./configure --prefix=/usr --disable-shared --enable-unicode - make - make po -} - -package() { - cd "${srcdir}"/$pkgname - - make DESTDIR="${pkgdir}" install -} Copied: moneymanagerex/repos/community-x86_64/PKGBUILD (from rev 134996, moneymanagerex/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 18:55:35 UTC (rev 134997) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Jaroslav Lichtblau +# Contributor: TDY + +pkgname=moneymanagerex +pkgver=1.2.1 +pkgrel=1 +pkgdesc="An easy-to-use personal finance suite" +arch=('i686' 'x86_64') +url="http://www.moneymanagerex.org/"; +license=('GPL') +depends=('wxsqlite3' 'webkitgtk2' 'hicolor-icon-theme') +makedepends=('git' 'boost' 'gettext') +optdepends=('cups: for printing support') +replaces=('mmex') +install=$pkgname.install +source=(git+https://github.com/moneymanagerex/moneymanagerex.git#tag=v${pkgver}) +sha256sums=('SKIP') + +prepare() { + cd "${srcdir}"/$pkgname + + git submodule update --init +} + +build() { + cd "${srcdir}"/$pkgname + + ./configure --prefix=/usr --disable-shared --enable-unicode + make + make po +} + +package() { + cd "${srcdir}"/$pkgname + + make DESTDIR="${pkgdir}" install +} Deleted: moneymanagerex.install === --- moneymanagerex.install 2015-06-08 18:55:26 UTC (rev 134996) +++ moneymanagerex.install 2015-06-08 18:55:35 UTC (rev 134997) @@ -1,11 +0,0 @@ -post_install() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} Copied: moneymanagerex/repos/community-x86_64/moneymanagerex.install (from rev 134996, moneymanagerex/trunk/moneymanagerex.install) === --- moneymanagerex.install (rev 0) +++ moneymanagerex.install 2015-06-08 18:55:35 UTC (rev 134997) @@ -0,0 +1,11 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}
[arch-commits] Commit in moneymanagerex/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 20:55:26 Author: jlichtblau Revision: 134996 upgpkg: moneymanagerex 1.2.1-1 - new upstream release Modified: moneymanagerex/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 18:53:05 UTC (rev 134995) +++ PKGBUILD2015-06-08 18:55:26 UTC (rev 134996) @@ -3,7 +3,7 @@ # Contributor: TDY pkgname=moneymanagerex -pkgver=1.1.2 +pkgver=1.2.1 pkgrel=1 pkgdesc="An easy-to-use personal finance suite" arch=('i686' 'x86_64')
[arch-commits] Commit in gprename/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 20:52:53 Author: jlichtblau Revision: 134994 upgpkg: gprename 20140325-2 FS#45250 fix Modified: gprename/trunk/PKGBUILD --+ PKGBUILD | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 18:31:21 UTC (rev 134993) +++ PKGBUILD2015-06-08 18:52:53 UTC (rev 134994) @@ -1,11 +1,11 @@ # $Id$ -# Maintainer: Jaroslav Lichtblau +# Maintainer: Jaroslav Lichtblau # Contributor: Allan McRae # Contributor: Nick Bolten pkgname=gprename pkgver=20140325 -pkgrel=1 +pkgrel=2 pkgdesc="A GTK2 batch renamer for files and directories" arch=('any') url="http://gprename.sourceforge.net/"; @@ -17,14 +17,20 @@ sha256sums=('8322a37ba720d58c520d29985175b86e9a4a74ce7465df8a5d67339dffb6140e' '8ade8ded3e4185d0d465668d2d519bc6eaf668f354109c45f42eeb05ba502cc0') -package() { +prepare() { cd "${srcdir}"/${pkgname}-${pkgver} patch -Np1 -i "${srcdir}"/$pkgname-build.patch +} +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + make PREFIX=/usr DESTDIR="${pkgdir}"/usr install #29940 fix sed 's#/usr/local#/usr#' -i "${pkgdir}"/usr/bin/$pkgname sed 's#/usr/local#/usr#' -i "${pkgdir}"/usr/share/applications/$pkgname*.* +#45250 fix + sed 's#/usr/share/pixmaps/gprename#/usr/share/icons#' -i "${pkgdir}"/usr/bin/$pkgname }
[arch-commits] Commit in gprename/repos/community-any (4 files)
Date: Monday, June 8, 2015 @ 20:53:05 Author: jlichtblau Revision: 134995 archrelease: copy trunk to community-any Added: gprename/repos/community-any/PKGBUILD (from rev 134994, gprename/trunk/PKGBUILD) gprename/repos/community-any/gprename-build.patch (from rev 134994, gprename/trunk/gprename-build.patch) Deleted: gprename/repos/community-any/PKGBUILD gprename/repos/community-any/gprename-build.patch --+ PKGBUILD | 66 - gprename-build.patch | 86 - 2 files changed, 79 insertions(+), 73 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 18:52:53 UTC (rev 134994) +++ PKGBUILD2015-06-08 18:53:05 UTC (rev 134995) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Jaroslav Lichtblau -# Contributor: Allan McRae -# Contributor: Nick Bolten - -pkgname=gprename -pkgver=20140325 -pkgrel=1 -pkgdesc="A GTK2 batch renamer for files and directories" -arch=('any') -url="http://gprename.sourceforge.net/"; -license=('GPL3') -depends=('gtk2-perl' 'perl-libintl-perl' 'perl-locale-gettext') -makedepends=('patch') -source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2 -$pkgname-build.patch) -sha256sums=('8322a37ba720d58c520d29985175b86e9a4a74ce7465df8a5d67339dffb6140e' -'8ade8ded3e4185d0d465668d2d519bc6eaf668f354109c45f42eeb05ba502cc0') - -package() { - cd "${srcdir}"/${pkgname}-${pkgver} - - patch -Np1 -i "${srcdir}"/$pkgname-build.patch - - make PREFIX=/usr DESTDIR="${pkgdir}"/usr install - -#29940 fix - sed 's#/usr/local#/usr#' -i "${pkgdir}"/usr/bin/$pkgname - sed 's#/usr/local#/usr#' -i "${pkgdir}"/usr/share/applications/$pkgname*.* -} Copied: gprename/repos/community-any/PKGBUILD (from rev 134994, gprename/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 18:53:05 UTC (rev 134995) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Jaroslav Lichtblau +# Contributor: Allan McRae +# Contributor: Nick Bolten + +pkgname=gprename +pkgver=20140325 +pkgrel=2 +pkgdesc="A GTK2 batch renamer for files and directories" +arch=('any') +url="http://gprename.sourceforge.net/"; +license=('GPL3') +depends=('gtk2-perl' 'perl-libintl-perl' 'perl-locale-gettext') +makedepends=('patch') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2 +$pkgname-build.patch) +sha256sums=('8322a37ba720d58c520d29985175b86e9a4a74ce7465df8a5d67339dffb6140e' +'8ade8ded3e4185d0d465668d2d519bc6eaf668f354109c45f42eeb05ba502cc0') + +prepare() { + cd "${srcdir}"/${pkgname}-${pkgver} + + patch -Np1 -i "${srcdir}"/$pkgname-build.patch +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + + make PREFIX=/usr DESTDIR="${pkgdir}"/usr install + +#29940 fix + sed 's#/usr/local#/usr#' -i "${pkgdir}"/usr/bin/$pkgname + sed 's#/usr/local#/usr#' -i "${pkgdir}"/usr/share/applications/$pkgname*.* +#45250 fix + sed 's#/usr/share/pixmaps/gprename#/usr/share/icons#' -i "${pkgdir}"/usr/bin/$pkgname +} Deleted: gprename-build.patch === --- gprename-build.patch2015-06-08 18:52:53 UTC (rev 134994) +++ gprename-build.patch2015-06-08 18:53:05 UTC (rev 134995) @@ -1,43 +0,0 @@ -diff -ruN gprename-20140325/Makefile gprename-20140325-orig/Makefile gprename-20140325/Makefile 2014-03-24 22:06:04.0 +0100 -+++ gprename-20140325-orig/Makefile2014-06-28 16:05:47.453008829 +0200 -@@ -26,7 +26,7 @@ - perl -ne 's!\@INSTALLDIR\@!$(PREFIX)!g ; print' < bin/gprename > build/gprename - perl -ne 's!\@INSTALLDIR\@!$(PREFIX)!g ; print' < bin/gprename.desktop > build/gprename.desktop - --install: uninstall build -+install: build - # Compile all .po files to .mo - msgfmt -o build/locale/ca.molocale/ca.po - msgfmt -o build/locale/de.molocale/de.po -@@ -45,8 +45,8 @@ - # Create directories - install -d "$(DESTDIR)" - install -d "$(DESTDIR)/bin" -- install -d "/usr/share" -- install -d "/usr/share/icons" -+ install -d "$(DESTDIR)/share" -+ install -d "$(DESTDIR)/share/icons" - install -d "$(DESTDIR)/share/applications" - install -d "$(DESTDIR)/share/man" - install -d "$(DESTDIR)/share/man/man1" -@@ -67,7 +67,7 @@ - # Copy all files in the filesystem - install -m 755 build/gprename"$(DESTDIR)/bin/" - install -m 644 gprename-nautilus-actions.xml "$(DESTDIR)/share/applications/" -- install -m 644 icon/gprename.png "/usr/share/icons/" -+ install -m 644 icon/gprename.png "$(DESTDIR)/share/icons/" - install -m 644 man/gprename.1 "$(DESTDIR)/share/man/man1/" - install -m 644 build/locale/ca.mo "$(DESTDIR)
[arch-commits] Commit in skrooge/repos/community-i686 (6 files)
Date: Monday, June 8, 2015 @ 20:31:21 Author: jlichtblau Revision: 134993 archrelease: copy trunk to community-i686 Added: skrooge/repos/community-i686/PKGBUILD (from rev 134992, skrooge/trunk/PKGBUILD) skrooge/repos/community-i686/skrooge.changelog (from rev 134992, skrooge/trunk/skrooge.changelog) skrooge/repos/community-i686/skrooge.install (from rev 134992, skrooge/trunk/skrooge.install) Deleted: skrooge/repos/community-i686/PKGBUILD skrooge/repos/community-i686/skrooge.changelog skrooge/repos/community-i686/skrooge.install ---+ PKGBUILD | 66 +-- skrooge.changelog | 97 ++-- skrooge.install | 28 +++ 3 files changed, 97 insertions(+), 94 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 18:29:49 UTC (rev 134992) +++ PKGBUILD2015-06-08 18:31:21 UTC (rev 134993) @@ -1,33 +0,0 @@ -# $Id$ -# Maintainer: Jaroslav Lichtblau -# Contributor: Ray Rashif -# Contributor: Andrea Scarpino -# Contributor: neuromante - -pkgname=skrooge -pkgver=1.12.0 -pkgrel=1 -pkgdesc="A personal finances manager for KDE" -arch=('i686' 'x86_64') -url="http://skrooge.org/"; -license=('GPL') -depends=('kdebase-runtime' 'libofx' 'qca-ossl' 'qjson' 'grantlee-qt4') -makedepends=('cmake' 'automoc4' 'docbook-xsl' 'boost' 'kdepim-libkdepim') -optdepends=('kdepim-libkdepim: for KDE PIM integration') -install=$pkgname.install -changelog=$pkgname.changelog -source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.bz2) -sha256sums=('2407e6e7efa7a0f759c91660a419de2e5ba66f2675cfbee300d12736ef928c1d') - -build() { - cd "${srcdir}"/$pkgname-$pkgver - - cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr - make -} - -package() { - cd "${srcdir}"/$pkgname-$pkgver - - make DESTDIR="${pkgdir}" install -} Copied: skrooge/repos/community-i686/PKGBUILD (from rev 134992, skrooge/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 18:31:21 UTC (rev 134993) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Jaroslav Lichtblau +# Contributor: Ray Rashif +# Contributor: Andrea Scarpino +# Contributor: neuromante + +pkgname=skrooge +pkgver=1.12.5 +pkgrel=1 +pkgdesc="A personal finances manager for KDE" +arch=('i686' 'x86_64') +url="http://skrooge.org/"; +license=('GPL') +depends=('kdebase-runtime' 'libofx' 'qca-ossl' 'qjson' 'grantlee-qt4') +makedepends=('cmake' 'automoc4' 'docbook-xsl' 'boost' 'kdepim-libkdepim') +optdepends=('kdepim-libkdepim: for KDE PIM integration') +install=$pkgname.install +changelog=$pkgname.changelog +source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('8050f8aa767743edf6aad3b4c39bfd8962412e10d9c5578c02d0ce6306a8d3d6') + +build() { + cd "${srcdir}"/$pkgname-$pkgver + + cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/$pkgname-$pkgver + + make DESTDIR="${pkgdir}" install +} Deleted: skrooge.changelog === --- skrooge.changelog 2015-06-08 18:29:49 UTC (rev 134992) +++ skrooge.changelog 2015-06-08 18:31:21 UTC (rev 134993) @@ -1,47 +0,0 @@ -2015-05-15 Jaroslav Lichtblau - * skrooge 1.12.0-1 - -2015-04-18 Jaroslav Lichtblau - * skrooge 1.11.0-1 - -2014-10-30 Jaroslav Lichtblau - * skrooge 1.10.0-1 - -2014-04-18 Jaroslav Lichtblau - * skrooge 1.9.0-1 - -2013-12-23 Jaroslav Lichtblau - * skrooge 1.8.0-3 FS#37406 fix - -2013-10-06 Jaroslav Lichtblau - * skrooge 1.8.0-1 - -2013-05-18 Jaroslav Lichtblau - * skrooge 1.7.1-1 - -2013-03-05 Jaroslav Lichtblau - * skrooge 1.6.0-1 - -2013-01-30 Jaroslav Lichtblau - * skrooge 1.5.1-1 - -2013-01-05 Jaroslav Lichtblau - * skrooge 1.4.0-1 - -2012-09-06 Jaroslav Lichtblau - * skrooge 1.3.3-1 - -2012-08-29 Jaroslav Lichtblau - * skrooge 1.3.2-1 - -2012-08-09 Eric Belanger - * skrooge 1.3.0-2 Rebuild against libofx 0.9.5 - -2012-05-05 Jaroslav Lichtblau - * skrooge 1.3.0-1 - -2012-02-24 Jaroslav Lichtblau - * skrooge 1.2.0-1 - -2011-11-27 Jaroslav Lichtblau - * skrooge 1.1.1-1 Copied: skrooge/repos/community-i686/skrooge.changelog (from rev 134992, skrooge/trunk/skrooge.changelog) === --- skrooge.changelog (rev 0) +++ skrooge.changelog 2015-06-08 18:31:21 UTC (rev 134993) @@ -0,0 +1,50 @@ +2015-07-08 Jaroslav Lichtblau + * skrooge 1.12.5-1 + +2015-05-15 Jaroslav Lichtblau + * skrooge 1.12.0-1 + +2015-04-18 Jaroslav Lichtblau + * skrooge 1.11.0-1 + +2014-10-30 Jaroslav Lichtblau + * skrooge 1.10.0-1 + +2014-04-18 Jaroslav Lichtblau + * skroog
[arch-commits] Commit in lib32-mesa/repos/multilib-x86_64 (4 files)
Date: Monday, June 8, 2015 @ 20:29:49 Author: lcarlier Revision: 134992 archrelease: copy trunk to multilib-x86_64 Added: lib32-mesa/repos/multilib-x86_64/LICENSE (from rev 134991, lib32-mesa/trunk/LICENSE) lib32-mesa/repos/multilib-x86_64/PKGBUILD (from rev 134991, lib32-mesa/trunk/PKGBUILD) Deleted: lib32-mesa/repos/multilib-x86_64/LICENSE lib32-mesa/repos/multilib-x86_64/PKGBUILD --+ LICENSE | 164 +-- PKGBUILD | 278 ++--- 2 files changed, 221 insertions(+), 221 deletions(-) Deleted: LICENSE === --- LICENSE 2015-06-08 18:29:42 UTC (rev 134991) +++ LICENSE 2015-06-08 18:29:49 UTC (rev 134992) @@ -1,82 +0,0 @@ -Disclaimer - -Mesa is a 3-D graphics library with an API which is very similar to -that of OpenGL* -To the extent that Mesa utilizes the OpenGL command syntax or state -machine, it is being used with authorization from Silicon Graphics, -Inc.(SGI). However, the author does not possess an OpenGL license -from SGI, and makes no claim that Mesa is in any way a compatible -replacement for OpenGL or associated with SGI. Those who want a -licensed implementation of OpenGL should contact a licensed -vendor. - -Please do not refer to the library as MesaGL (for legal -reasons). It's just Mesa or The Mesa 3-D graphics -library - -* OpenGL is a trademark of Silicon Graphics Incorporated. - -License / Copyright Information - -The Mesa distribution consists of several components. Different copyrights -and licenses apply to different components. For example, GLUT is copyrighted -by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa -device drivers are copyrighted by their authors. See below for a list of -Mesa's main components and the license for each. - -The core Mesa library is licensed according to the terms of the MIT license. -This allows integration with the XFree86, Xorg and DRI projects. - -The default Mesa license is as follows: - -Copyright (C) 1999-2007 Brian Paul All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Attention, Contributors - -When contributing to the Mesa project you must agree to the licensing terms -of the component to which you're contributing. -The following section lists the primary components of the Mesa distribution -and their respective licenses. - - -Mesa Component Licenses - -Component Location Primary Author License - -Main Mesa codesrc/mesa/ Brian Paul Mesa (MIT) - -Device driverssrc/mesa/drivers/* See drivers See drivers - -Ext headers include/GL/glext.h SGI SGI Free B - include/GL/glxext.h - -GLUT src/glut/ Mark KilgardMark's copyright - -Mesa GLU library src/glu/mesa/ Brian Paul GNU-LGPL - -SGI GLU library src/glu/sgi/ SGI SGI Free B - -demo programs progs/demos/ various see source files - -X demos progs/xdemos/ Brian Paul see source files - -SGI demos progs/samples/ SGI SGI copyright - -RedBook demos progs/redbook/ SGI SGI copyright Copied: lib32-mesa/repos/multilib-x86_64/LICENSE (from rev 134991, lib32-mesa/trunk/LICENSE) === --- LICENSE (rev 0) +++ LICENSE 2015-06-08 18:29:49 UTC (rev 134992) @@ -0,0 +1,82 @@ +Disclaimer + +Mesa is a 3-D graphics library with an API which is very similar to +that of OpenGL* +To the extent that Mesa utilizes the OpenGL command syntax or state +machine, it is being used with authorization from Silicon Graphics, +Inc.(SGI). However, the author does not possess an Open
[arch-commits] Commit in lib32-mesa/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 20:29:42 Author: lcarlier Revision: 134991 upgpkg: lib32-mesa 10.5.7-1 upstream update 10.5.7 Modified: lib32-mesa/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 18:18:26 UTC (rev 134990) +++ PKGBUILD2015-06-08 18:29:42 UTC (rev 134991) @@ -4,7 +4,7 @@ pkgbase=lib32-mesa pkgname=('lib32-mesa-vdpau' 'lib32-mesa' 'lib32-mesa-libgl') -pkgver=10.5.6 +pkgver=10.5.7 pkgrel=1 arch=('x86_64') makedepends=('python2-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto' @@ -14,7 +14,7 @@ license=('custom') source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/mesa-${pkgver}.tar.xz{,.sig} LICENSE) -sha256sums=('66017853bde5f7a6647db3eede30512a091a3491daa1708e0ad8027c328ba595' +sha256sums=('04d06890cd69af8089d6ca76f40e46dcf9cacfe4a9788b32be620574d4638818' 'SKIP' '7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2') validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D') # Emil Velikov
[arch-commits] Commit in skrooge/repos/community-x86_64 (6 files)
Date: Monday, June 8, 2015 @ 20:18:26 Author: jlichtblau Revision: 134990 archrelease: copy trunk to community-x86_64 Added: skrooge/repos/community-x86_64/PKGBUILD (from rev 134989, skrooge/trunk/PKGBUILD) skrooge/repos/community-x86_64/skrooge.changelog (from rev 134989, skrooge/trunk/skrooge.changelog) skrooge/repos/community-x86_64/skrooge.install (from rev 134989, skrooge/trunk/skrooge.install) Deleted: skrooge/repos/community-x86_64/PKGBUILD skrooge/repos/community-x86_64/skrooge.changelog skrooge/repos/community-x86_64/skrooge.install ---+ PKGBUILD | 66 +-- skrooge.changelog | 97 ++-- skrooge.install | 28 +++ 3 files changed, 97 insertions(+), 94 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 18:18:11 UTC (rev 134989) +++ PKGBUILD2015-06-08 18:18:26 UTC (rev 134990) @@ -1,33 +0,0 @@ -# $Id$ -# Maintainer: Jaroslav Lichtblau -# Contributor: Ray Rashif -# Contributor: Andrea Scarpino -# Contributor: neuromante - -pkgname=skrooge -pkgver=1.12.0 -pkgrel=1 -pkgdesc="A personal finances manager for KDE" -arch=('i686' 'x86_64') -url="http://skrooge.org/"; -license=('GPL') -depends=('kdebase-runtime' 'libofx' 'qca-ossl' 'qjson' 'grantlee-qt4') -makedepends=('cmake' 'automoc4' 'docbook-xsl' 'boost' 'kdepim-libkdepim') -optdepends=('kdepim-libkdepim: for KDE PIM integration') -install=$pkgname.install -changelog=$pkgname.changelog -source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.bz2) -sha256sums=('2407e6e7efa7a0f759c91660a419de2e5ba66f2675cfbee300d12736ef928c1d') - -build() { - cd "${srcdir}"/$pkgname-$pkgver - - cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr - make -} - -package() { - cd "${srcdir}"/$pkgname-$pkgver - - make DESTDIR="${pkgdir}" install -} Copied: skrooge/repos/community-x86_64/PKGBUILD (from rev 134989, skrooge/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 18:18:26 UTC (rev 134990) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Jaroslav Lichtblau +# Contributor: Ray Rashif +# Contributor: Andrea Scarpino +# Contributor: neuromante + +pkgname=skrooge +pkgver=1.12.5 +pkgrel=1 +pkgdesc="A personal finances manager for KDE" +arch=('i686' 'x86_64') +url="http://skrooge.org/"; +license=('GPL') +depends=('kdebase-runtime' 'libofx' 'qca-ossl' 'qjson' 'grantlee-qt4') +makedepends=('cmake' 'automoc4' 'docbook-xsl' 'boost' 'kdepim-libkdepim') +optdepends=('kdepim-libkdepim: for KDE PIM integration') +install=$pkgname.install +changelog=$pkgname.changelog +source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('8050f8aa767743edf6aad3b4c39bfd8962412e10d9c5578c02d0ce6306a8d3d6') + +build() { + cd "${srcdir}"/$pkgname-$pkgver + + cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/$pkgname-$pkgver + + make DESTDIR="${pkgdir}" install +} Deleted: skrooge.changelog === --- skrooge.changelog 2015-06-08 18:18:11 UTC (rev 134989) +++ skrooge.changelog 2015-06-08 18:18:26 UTC (rev 134990) @@ -1,47 +0,0 @@ -2015-05-15 Jaroslav Lichtblau - * skrooge 1.12.0-1 - -2015-04-18 Jaroslav Lichtblau - * skrooge 1.11.0-1 - -2014-10-30 Jaroslav Lichtblau - * skrooge 1.10.0-1 - -2014-04-18 Jaroslav Lichtblau - * skrooge 1.9.0-1 - -2013-12-23 Jaroslav Lichtblau - * skrooge 1.8.0-3 FS#37406 fix - -2013-10-06 Jaroslav Lichtblau - * skrooge 1.8.0-1 - -2013-05-18 Jaroslav Lichtblau - * skrooge 1.7.1-1 - -2013-03-05 Jaroslav Lichtblau - * skrooge 1.6.0-1 - -2013-01-30 Jaroslav Lichtblau - * skrooge 1.5.1-1 - -2013-01-05 Jaroslav Lichtblau - * skrooge 1.4.0-1 - -2012-09-06 Jaroslav Lichtblau - * skrooge 1.3.3-1 - -2012-08-29 Jaroslav Lichtblau - * skrooge 1.3.2-1 - -2012-08-09 Eric Belanger - * skrooge 1.3.0-2 Rebuild against libofx 0.9.5 - -2012-05-05 Jaroslav Lichtblau - * skrooge 1.3.0-1 - -2012-02-24 Jaroslav Lichtblau - * skrooge 1.2.0-1 - -2011-11-27 Jaroslav Lichtblau - * skrooge 1.1.1-1 Copied: skrooge/repos/community-x86_64/skrooge.changelog (from rev 134989, skrooge/trunk/skrooge.changelog) === --- skrooge.changelog (rev 0) +++ skrooge.changelog 2015-06-08 18:18:26 UTC (rev 134990) @@ -0,0 +1,50 @@ +2015-07-08 Jaroslav Lichtblau + * skrooge 1.12.5-1 + +2015-05-15 Jaroslav Lichtblau + * skrooge 1.12.0-1 + +2015-04-18 Jaroslav Lichtblau + * skrooge 1.11.0-1 + +2014-10-30 Jaroslav Lichtblau + * skrooge 1.10.0-1 + +2014-04-18 Jaroslav Lichtblau
[arch-commits] Commit in skrooge/trunk (PKGBUILD skrooge.changelog)
Date: Monday, June 8, 2015 @ 20:18:11 Author: jlichtblau Revision: 134989 upgpkg: skrooge 1.12.5-1 - new upstream release Modified: skrooge/trunk/PKGBUILD skrooge/trunk/skrooge.changelog ---+ PKGBUILD |6 +++--- skrooge.changelog |3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 16:52:51 UTC (rev 134988) +++ PKGBUILD2015-06-08 18:18:11 UTC (rev 134989) @@ -5,7 +5,7 @@ # Contributor: neuromante pkgname=skrooge -pkgver=1.12.0 +pkgver=1.12.5 pkgrel=1 pkgdesc="A personal finances manager for KDE" arch=('i686' 'x86_64') @@ -16,8 +16,8 @@ optdepends=('kdepim-libkdepim: for KDE PIM integration') install=$pkgname.install changelog=$pkgname.changelog -source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.bz2) -sha256sums=('2407e6e7efa7a0f759c91660a419de2e5ba66f2675cfbee300d12736ef928c1d') +source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('8050f8aa767743edf6aad3b4c39bfd8962412e10d9c5578c02d0ce6306a8d3d6') build() { cd "${srcdir}"/$pkgname-$pkgver Modified: skrooge.changelog === --- skrooge.changelog 2015-06-08 16:52:51 UTC (rev 134988) +++ skrooge.changelog 2015-06-08 18:18:11 UTC (rev 134989) @@ -1,3 +1,6 @@ +2015-07-08 Jaroslav Lichtblau + * skrooge 1.12.5-1 + 2015-05-15 Jaroslav Lichtblau * skrooge 1.12.0-1
[arch-commits] Commit in python-pybox2d/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 18:52:51 Author: arodseth Revision: 134988 Repo moved to github Modified: python-pybox2d/trunk/PKGBUILD --+ PKGBUILD |9 + 1 file changed, 5 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 16:43:21 UTC (rev 134987) +++ PKGBUILD2015-06-08 16:52:51 UTC (rev 134988) @@ -4,18 +4,19 @@ pkgbase=python-pybox2d pkgname=('python2-pybox2d') -pkgver=370 +pkgver=2.3.0 pkgrel=1 arch=('x86_64' 'i686') -url='http://code.google.com/p/pybox2d' +url='https://github.com/pybox2d/pybox2d' license=('GPL') -makedepends=('subversion' 'python2' 'swig') -source=("$pkgbase::svn+http://pybox2d.googlecode.com/svn/trunk/";) +makedepends=('git' 'python2' 'swig2') +source=("$pkgbase::git://github.com/pybox2d/pybox2d.git#commit=69b535a335") md5sums=('SKIP') build() { cd "$pkgbase" + # TODO: set swig2 path. SWIG_PATH? python2 setup.py build }
[arch-commits] Commit in python-virtualenvwrapper/repos/community-any (2 files)
Date: Monday, June 8, 2015 @ 18:43:21 Author: foutrelis Revision: 134987 archrelease: copy trunk to community-any Added: python-virtualenvwrapper/repos/community-any/PKGBUILD (from rev 134986, python-virtualenvwrapper/trunk/PKGBUILD) Deleted: python-virtualenvwrapper/repos/community-any/PKGBUILD --+ PKGBUILD | 54 +++--- 1 file changed, 27 insertions(+), 27 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 16:43:13 UTC (rev 134986) +++ PKGBUILD2015-06-08 16:43:21 UTC (rev 134987) @@ -1,27 +0,0 @@ -# $Id$ -# Maintainer: Evangelos Foutras -# Contributor: Sebastien Binet - -pkgname=python-virtualenvwrapper -pkgver=4.5.1 -pkgrel=1 -pkgdesc="Extensions to Ian Bicking's virtualenv tool" -arch=('any') -url="https://bitbucket.org/dhellmann/virtualenvwrapper"; -license=('MIT') -depends=('python-virtualenv' 'python2-virtualenv' 'python-virtualenv-clone' - 'python-stevedore') -conflicts=('python2-virtualenvwrapper') -replaces=('python2-virtualenvwrapper') -source=(https://pypi.python.org/packages/source/v/virtualenvwrapper/virtualenvwrapper-$pkgver.tar.gz) -sha256sums=('ac0b09ce7409ec9d5b8ec90d073641b86bbafc3161f844347b89cc25b2e3a3d9') - -package() { - cd "$srcdir/virtualenvwrapper-$pkgver" - - python3 setup.py install --root="$pkgdir" -O1 - - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: Copied: python-virtualenvwrapper/repos/community-any/PKGBUILD (from rev 134986, python-virtualenvwrapper/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 16:43:21 UTC (rev 134987) @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Evangelos Foutras +# Contributor: Sebastien Binet + +pkgname=python-virtualenvwrapper +pkgver=4.6.0 +pkgrel=1 +pkgdesc="Extensions to Ian Bicking's virtualenv tool" +arch=('any') +url="https://bitbucket.org/dhellmann/virtualenvwrapper"; +license=('MIT') +depends=('python-virtualenv' 'python2-virtualenv' 'python-virtualenv-clone' + 'python-stevedore') +conflicts=('python2-virtualenvwrapper') +replaces=('python2-virtualenvwrapper') +source=(https://pypi.python.org/packages/source/v/virtualenvwrapper/virtualenvwrapper-$pkgver.tar.gz) +sha256sums=('f3c73c3a5436f4d040505e5fb45401abdc4be267a80fa071878cfaa685e685e1') + +package() { + cd "$srcdir/virtualenvwrapper-$pkgver" + + python3 setup.py install --root="$pkgdir" -O1 + + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-virtualenvwrapper/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 18:43:13 Author: foutrelis Revision: 134986 upgpkg: python-virtualenvwrapper 4.6.0-1 New upstream release. Modified: python-virtualenvwrapper/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 15:44:34 UTC (rev 134985) +++ PKGBUILD2015-06-08 16:43:13 UTC (rev 134986) @@ -3,7 +3,7 @@ # Contributor: Sebastien Binet pkgname=python-virtualenvwrapper -pkgver=4.5.1 +pkgver=4.6.0 pkgrel=1 pkgdesc="Extensions to Ian Bicking's virtualenv tool" arch=('any') @@ -14,7 +14,7 @@ conflicts=('python2-virtualenvwrapper') replaces=('python2-virtualenvwrapper') source=(https://pypi.python.org/packages/source/v/virtualenvwrapper/virtualenvwrapper-$pkgver.tar.gz) -sha256sums=('ac0b09ce7409ec9d5b8ec90d073641b86bbafc3161f844347b89cc25b2e3a3d9') +sha256sums=('f3c73c3a5436f4d040505e5fb45401abdc4be267a80fa071878cfaa685e685e1') package() { cd "$srcdir/virtualenvwrapper-$pkgver"
[arch-commits] Commit in variety/repos/community-any (4 files)
Date: Monday, June 8, 2015 @ 17:44:34 Author: flexiondotorg Revision: 134985 archrelease: copy trunk to community-any Added: variety/repos/community-any/PKGBUILD (from rev 134984, variety/trunk/PKGBUILD) variety/repos/community-any/variety.install (from rev 134984, variety/trunk/variety.install) Deleted: variety/repos/community-any/PKGBUILD variety/repos/community-any/variety.install -+ PKGBUILD| 52 ++-- variety.install | 22 +++--- 2 files changed, 37 insertions(+), 37 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 15:44:28 UTC (rev 134984) +++ PKGBUILD2015-06-08 15:44:34 UTC (rev 134985) @@ -1,26 +0,0 @@ -# $Id$ -# Maintainer : Martin Wimpress - -pkgname=variety -pkgver=0.5.2 -pkgrel=1 -pkgdesc='Changes the wallpaper on a regular interval using user-specified or automatically downloaded images.' -url="http://peterlevi.com/variety/"; -arch=('any') -license=('GPL3') -depends=('desktop-file-utils' 'gtk3' 'imagemagick' 'libnotify' 'python2-beautifulsoup4' - 'python2-cairo' 'python2-configobj' 'python2-dbus' 'python2-exiv2' - 'python2-gobject' 'python2-httplib2' 'python2-pillow' 'python2-lxml' - 'python2-pycurl' 'webkitgtk') -optdepends=('yelp: for reading help documents') -makedepends=('python2-distutils-extra') -source=("https://launchpad.net/variety/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz";) -sha256sums=('cbb63422c79210402b597bb0dff132159dafc3167bd21f59772674be56667aec') -install=${pkgname}.install - -package() { -cd "${srcdir}/${pkgname}" -export XDG_RUNTIME_DIR="/tmp/${pkgname}" -python2 setup.py install --root="${pkgdir}" --optimize=1 -chmod 644 "${pkgdir}/usr/share/variety/media/wallpaper-kde.jpg" -} Copied: variety/repos/community-any/PKGBUILD (from rev 134984, variety/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 15:44:34 UTC (rev 134985) @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer : Martin Wimpress + +pkgname=variety +pkgver=0.5.3 +pkgrel=1 +pkgdesc='Changes the wallpaper on a regular interval using user-specified or automatically downloaded images.' +url="http://peterlevi.com/variety/"; +arch=('any') +license=('GPL3') +depends=('desktop-file-utils' 'gtk3' 'imagemagick' 'libnotify' 'python2-beautifulsoup4' + 'python2-cairo' 'python2-configobj' 'python2-dbus' 'python2-exiv2' + 'python2-gobject' 'python2-httplib2' 'python2-pillow' 'python2-lxml' + 'python2-pycurl' 'webkitgtk') +optdepends=('yelp: for reading help documents') +makedepends=('python2-distutils-extra') +source=("https://launchpad.net/variety/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz";) +sha256sums=('48bd7f9a1f857bb00ffac4548f201d83e05eecef2e5cf04539a088198c177965') +install=${pkgname}.install + +package() { +cd "${srcdir}/${pkgname}" +export XDG_RUNTIME_DIR="/tmp/${pkgname}" +python2 setup.py install --root="${pkgdir}" --optimize=1 +chmod 644 "${pkgdir}/usr/share/variety/media/wallpaper-kde.jpg" +} Deleted: variety.install === --- variety.install 2015-06-08 15:44:28 UTC (rev 134984) +++ variety.install 2015-06-08 15:44:34 UTC (rev 134985) @@ -1,11 +0,0 @@ -post_install() { -update-desktop-database -q -} - -post_upgrade() { -post_install -} - -post_remove() { -post_install -} Copied: variety/repos/community-any/variety.install (from rev 134984, variety/trunk/variety.install) === --- variety.install (rev 0) +++ variety.install 2015-06-08 15:44:34 UTC (rev 134985) @@ -0,0 +1,11 @@ +post_install() { +update-desktop-database -q +} + +post_upgrade() { +post_install +} + +post_remove() { +post_install +}
[arch-commits] Commit in variety/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 17:44:28 Author: flexiondotorg Revision: 134984 upgpkg: variety 0.5.3-1 - New upstream release. Modified: variety/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 15:40:32 UTC (rev 134983) +++ PKGBUILD2015-06-08 15:44:28 UTC (rev 134984) @@ -2,7 +2,7 @@ # Maintainer : Martin Wimpress pkgname=variety -pkgver=0.5.2 +pkgver=0.5.3 pkgrel=1 pkgdesc='Changes the wallpaper on a regular interval using user-specified or automatically downloaded images.' url="http://peterlevi.com/variety/"; @@ -15,7 +15,7 @@ optdepends=('yelp: for reading help documents') makedepends=('python2-distutils-extra') source=("https://launchpad.net/variety/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz";) -sha256sums=('cbb63422c79210402b597bb0dff132159dafc3167bd21f59772674be56667aec') +sha256sums=('48bd7f9a1f857bb00ffac4548f201d83e05eecef2e5cf04539a088198c177965') install=${pkgname}.install package() {
[arch-commits] Commit in libaacs/repos (4 files)
Date: Monday, June 8, 2015 @ 17:40:32 Author: flexiondotorg Revision: 134983 archrelease: copy trunk to community-i686, community-x86_64 Added: libaacs/repos/community-i686/PKGBUILD (from rev 134982, libaacs/trunk/PKGBUILD) libaacs/repos/community-x86_64/PKGBUILD (from rev 134982, libaacs/trunk/PKGBUILD) Deleted: libaacs/repos/community-i686/PKGBUILD libaacs/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 58 community-i686/PKGBUILD | 29 -- community-x86_64/PKGBUILD | 29 -- 3 files changed, 58 insertions(+), 58 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-06-08 15:40:23 UTC (rev 134982) +++ community-i686/PKGBUILD 2015-06-08 15:40:32 UTC (rev 134983) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Martin Wimpress -# Contributor: Gustavo Alvarez -# Contributor: Dirk Berg - -pkgname=libaacs -pkgver=0.8.0 -pkgrel=1 -pkgdesc="Advanced Access Content System" -arch=('i686' 'x86_64') -license=('LGPL') -url="http://www.videolan.org/developers/libaacs.html"; -depends=('libgcrypt') -source=("ftp://ftp.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2";) -sha1sums=('667fd744ddd73c8a3e51192dd3822f7e5002883c') - -build() { -cd "${srcdir}/${pkgname}-${pkgver}" -./bootstrap -./configure --prefix=/usr -make -} - -package() { -cd "${srcdir}/${pkgname}-${pkgver}" -make DESTDIR="${pkgdir}" install -install -Dm644 KEYDB.cfg "${pkgdir}/usr/share/doc/${pkgname}"/KEYDB.cfg -install -Dm644 README.txt "${pkgdir}/usr/share/doc/${pkgname}"/README.txt -} Copied: libaacs/repos/community-i686/PKGBUILD (from rev 134982, libaacs/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-06-08 15:40:32 UTC (rev 134983) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Martin Wimpress +# Contributor: Gustavo Alvarez +# Contributor: Dirk Berg + +pkgname=libaacs +pkgver=0.8.1 +pkgrel=1 +pkgdesc="Advanced Access Content System" +arch=('i686' 'x86_64') +license=('LGPL') +url="http://www.videolan.org/developers/libaacs.html"; +depends=('libgcrypt') +source=("ftp://ftp.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2";) +sha1sums=('85f5f92e0979fc16fdfac90fa53e2a7a917ee75a') + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" +./bootstrap +./configure --prefix=/usr +make +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" +make DESTDIR="${pkgdir}" install +install -Dm644 KEYDB.cfg "${pkgdir}/usr/share/doc/${pkgname}"/KEYDB.cfg +install -Dm644 README.txt "${pkgdir}/usr/share/doc/${pkgname}"/README.txt +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2015-06-08 15:40:23 UTC (rev 134982) +++ community-x86_64/PKGBUILD 2015-06-08 15:40:32 UTC (rev 134983) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Martin Wimpress -# Contributor: Gustavo Alvarez -# Contributor: Dirk Berg - -pkgname=libaacs -pkgver=0.8.0 -pkgrel=1 -pkgdesc="Advanced Access Content System" -arch=('i686' 'x86_64') -license=('LGPL') -url="http://www.videolan.org/developers/libaacs.html"; -depends=('libgcrypt') -source=("ftp://ftp.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2";) -sha1sums=('667fd744ddd73c8a3e51192dd3822f7e5002883c') - -build() { -cd "${srcdir}/${pkgname}-${pkgver}" -./bootstrap -./configure --prefix=/usr -make -} - -package() { -cd "${srcdir}/${pkgname}-${pkgver}" -make DESTDIR="${pkgdir}" install -install -Dm644 KEYDB.cfg "${pkgdir}/usr/share/doc/${pkgname}"/KEYDB.cfg -install -Dm644 README.txt "${pkgdir}/usr/share/doc/${pkgname}"/README.txt -} Copied: libaacs/repos/community-x86_64/PKGBUILD (from rev 134982, libaacs/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2015-06-08 15:40:32 UTC (rev 134983) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Martin Wimpress +# Contributor: Gustavo Alvarez +# Contributor: Dirk Berg + +pkgname=libaacs +pkgver=0.8.1 +pkgrel=1 +pkgdesc="Advanced Access Content System" +arch=('i686' 'x86_64') +license=('LGPL') +url="http://www.videolan.org/developers/libaacs.html"; +depends=('libgcrypt') +source=("ftp://ftp.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2";) +sha1sums=('85f5f92e0979fc16fdfac90fa53e2a7a917ee75a') + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" +./bootstrap +./configure --prefix=/usr +make +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" +make DESTDIR="${pkgdir}" install +install -Dm
[arch-commits] Commit in libaacs/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 17:40:23 Author: flexiondotorg Revision: 134982 upgpkg: libaacs 0.8.1-1 - New upstream release. Modified: libaacs/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 15:36:32 UTC (rev 134981) +++ PKGBUILD2015-06-08 15:40:23 UTC (rev 134982) @@ -4,7 +4,7 @@ # Contributor: Dirk Berg pkgname=libaacs -pkgver=0.8.0 +pkgver=0.8.1 pkgrel=1 pkgdesc="Advanced Access Content System" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ url="http://www.videolan.org/developers/libaacs.html"; depends=('libgcrypt') source=("ftp://ftp.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2";) -sha1sums=('667fd744ddd73c8a3e51192dd3822f7e5002883c') +sha1sums=('85f5f92e0979fc16fdfac90fa53e2a7a917ee75a') build() { cd "${srcdir}/${pkgname}-${pkgver}"
[arch-commits] Commit in gufw/repos/community-any (4 files)
Date: Monday, June 8, 2015 @ 17:36:32 Author: flexiondotorg Revision: 134981 archrelease: copy trunk to community-any Added: gufw/repos/community-any/PKGBUILD (from rev 134980, gufw/trunk/PKGBUILD) gufw/repos/community-any/gufw.install (from rev 134980, gufw/trunk/gufw.install) Deleted: gufw/repos/community-any/PKGBUILD gufw/repos/community-any/gufw.install --+ PKGBUILD | 60 - gufw.install | 22 ++-- 2 files changed, 41 insertions(+), 41 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 15:36:22 UTC (rev 134980) +++ PKGBUILD2015-06-08 15:36:32 UTC (rev 134981) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer : Martin Wimpress - -pkgname=gufw -pkgver=15.04.4 -pkgrel=1 -pkgdesc="An uncomplicated way to manage your Linux firewall." -arch=('any') -url="http://gufw.org"; -license=('GPL3') -depends=('gtk3' 'polkit' 'python2-gobject' 'python2-netifaces' 'ufw' 'webkitgtk') -makedepends=('intltool' 'python2-distutils-extra') -source=("https://launchpad.net/gui-ufw/gufw-15.04/15.04/+download/gui-ufw-${pkgver}.tar.gz";) -sha256sums=('6eb63290260876429406298a8373592aef085e7b7afee1a610c1ea805da5b9c1') -install=${pkgname}.install - -prepare() { -cd "${srcdir}/gui-ufw-${pkgver}" -sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/env python2|" \ - -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \ - $(find . -name '*.py') -sed -i "s|python ${LOCATIONS[${i}]}|python2 ${LOCATIONS[${i}]}|" bin/gufw -sed -i "s|python ${LOCATIONS[${i}]}|python2 ${LOCATIONS[${i}]}|" bin/gufw-pkexec -} - -package(){ -cd "${srcdir}/gui-ufw-${pkgver}" -export XDG_RUNTIME_DIR="/tmp/${pkgname}" -python2 ./setup.py install --root="${pkgdir}" -} Copied: gufw/repos/community-any/PKGBUILD (from rev 134980, gufw/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 15:36:32 UTC (rev 134981) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer : Martin Wimpress + +pkgname=gufw +pkgver=15.10.0 +pkgrel=1 +pkgdesc="An uncomplicated way to manage your Linux firewall." +arch=('any') +url="http://gufw.org"; +license=('GPL3') +depends=('gtk3' 'polkit' 'python2-gobject' 'python2-netifaces' 'ufw' 'webkitgtk') +makedepends=('intltool' 'python2-distutils-extra') +source=("https://launchpad.net/gui-ufw/15.10/15.10/+download/gui-ufw-${pkgver}.tar.gz";) +sha256sums=('58fee07bc33f9be615e899b943535ca8755fdf9262010c2580a0176d2a1c2443') +install=${pkgname}.install + +prepare() { +cd "${srcdir}/gui-ufw-${pkgver}" +sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/env python2|" \ + -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \ + $(find . -name '*.py') +sed -i "s|python ${LOCATIONS[${i}]}|python2 ${LOCATIONS[${i}]}|" bin/gufw +sed -i "s|python ${LOCATIONS[${i}]}|python2 ${LOCATIONS[${i}]}|" bin/gufw-pkexec +} + +package(){ +cd "${srcdir}/gui-ufw-${pkgver}" +export XDG_RUNTIME_DIR="/tmp/${pkgname}" +python2 ./setup.py install --root="${pkgdir}" +} Deleted: gufw.install === --- gufw.install2015-06-08 15:36:22 UTC (rev 134980) +++ gufw.install2015-06-08 15:36:32 UTC (rev 134981) @@ -1,11 +0,0 @@ -post_install() { -gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor -} - -post_upgrade() { -post_install -} - -post_remove() { -post_install -} Copied: gufw/repos/community-any/gufw.install (from rev 134980, gufw/trunk/gufw.install) === --- gufw.install(rev 0) +++ gufw.install2015-06-08 15:36:32 UTC (rev 134981) @@ -0,0 +1,11 @@ +post_install() { +gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor +} + +post_upgrade() { +post_install +} + +post_remove() { +post_install +}
[arch-commits] Commit in gufw/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 17:36:22 Author: flexiondotorg Revision: 134980 upgpkg: gufw 15.10.0-1 - New upstream release. Modified: gufw/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 15:31:24 UTC (rev 134979) +++ PKGBUILD2015-06-08 15:36:22 UTC (rev 134980) @@ -2,7 +2,7 @@ # Maintainer : Martin Wimpress pkgname=gufw -pkgver=15.04.4 +pkgver=15.10.0 pkgrel=1 pkgdesc="An uncomplicated way to manage your Linux firewall." arch=('any') @@ -10,8 +10,8 @@ license=('GPL3') depends=('gtk3' 'polkit' 'python2-gobject' 'python2-netifaces' 'ufw' 'webkitgtk') makedepends=('intltool' 'python2-distutils-extra') -source=("https://launchpad.net/gui-ufw/gufw-15.04/15.04/+download/gui-ufw-${pkgver}.tar.gz";) -sha256sums=('6eb63290260876429406298a8373592aef085e7b7afee1a610c1ea805da5b9c1') +source=("https://launchpad.net/gui-ufw/15.10/15.10/+download/gui-ufw-${pkgver}.tar.gz";) +sha256sums=('58fee07bc33f9be615e899b943535ca8755fdf9262010c2580a0176d2a1c2443') install=${pkgname}.install prepare() {
[arch-commits] Commit in syncthing/repos (4 files)
Date: Monday, June 8, 2015 @ 17:31:24 Author: flexiondotorg Revision: 134979 archrelease: copy trunk to community-i686, community-x86_64 Added: syncthing/repos/community-i686/PKGBUILD (from rev 134978, syncthing/trunk/PKGBUILD) syncthing/repos/community-x86_64/PKGBUILD (from rev 134978, syncthing/trunk/PKGBUILD) Deleted: syncthing/repos/community-i686/PKGBUILD syncthing/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 130 community-i686/PKGBUILD | 59 --- community-x86_64/PKGBUILD | 59 --- 3 files changed, 130 insertions(+), 118 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-06-08 15:30:53 UTC (rev 134978) +++ community-i686/PKGBUILD 2015-06-08 15:31:24 UTC (rev 134979) @@ -1,59 +0,0 @@ -# $Id$ -# Maintainer : Martin Wimpress -# Maintainer : Jaroslav Lichtblau -# Contributor: Sauyon Lee -# Contributor: Kevin MacMartin -# Contributor: korjjj - -pkgname=syncthing -pkgver=0.11.7 -pkgrel=2 -pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing" -url="http://syncthing.net/"; -license=('MPLv2') -arch=('i686' 'x86_64') -depends=('glibc') -makedepends=('git' 'go' 'godep' 'inetutils' 'sed') -source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}) -sha1sums=('SKIP') - -prepare() { - cd "${srcdir}" - mkdir -p "src/github.com/syncthing" - mv "${pkgname}-${pkgver}" "src/github.com/syncthing/${pkgname}" -} - -build() { - export GOPATH="${srcdir}" - cd "${srcdir}/src/github.com/syncthing/${pkgname}" - go run build.go -no-upgrade build -} - -check() { - export GOPATH="${srcdir}" - cd "${srcdir}/src/github.com/syncthing/${pkgname}" -# go run build.go -no-upgrade test -} - -package() { - cd "${srcdir}/src/github.com/syncthing/${pkgname}" - install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}" - install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" - install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" "${pkgdir}/usr/lib/systemd/system/${pkgname}@.service" - install -Dm644 "etc/linux-systemd/user/${pkgname}.service" "${pkgdir}/usr/lib/systemd/user/${pkgname}.service" - -# license - install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE - -# man pages - cd "${srcdir}/src/github.com/syncthing/${pkgname}/man" - for file in $(find . -name '*.1' -print); do -install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file - done - for file in $(find . -name '*.5' -print); do -install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file - done - for file in $(find . -name '*.7' -print); do -install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file - done -} Copied: syncthing/repos/community-i686/PKGBUILD (from rev 134978, syncthing/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-06-08 15:31:24 UTC (rev 134979) @@ -0,0 +1,65 @@ +# $Id$ +# Maintainer : Martin Wimpress +# Maintainer : Jaroslav Lichtblau +# Contributor: Sauyon Lee +# Contributor: Kevin MacMartin +# Contributor: korjjj + +pkgname=syncthing +pkgver=0.11.8 +pkgrel=1 +pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing" +url="http://syncthing.net/"; +license=('MPL') +arch=('i686' 'x86_64') +depends=('glibc') +makedepends=('git' 'go' 'godep' 'inetutils' 'sed') +source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}) +sha1sums=('SKIP') + +prepare() { + cd "${srcdir}" + mkdir -p "src/github.com/syncthing" + mv "${pkgname}-${pkgver}" "src/github.com/syncthing/${pkgname}" +} + +build() { + export GOPATH="${srcdir}" + cd "${srcdir}/src/github.com/syncthing/${pkgname}" + if [ ${CARCH}" == "i686" ] ; then + go run build.go -no-upgrade -goarch 386 build + if [ ${CARCH}" == "x86_64" ] ; then + go run build.go -no-upgrade -goarch amd64 build + else + go run build.go -no-upgrade build + fi +} + +check() { + export GOPATH="${srcdir}" + cd "${srcdir}/src/github.com/syncthing/${pkgname}" +# go run build.go -no-upgrade test +} + +package() { + cd "${srcdir}/src/github.com/syncthing/${pkgname}" + install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}" + install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" + install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" "${pkgdir}/usr/lib/systemd/system/${pkgname}@.service" + install -Dm644 "etc/linux-systemd/user/${pkgname}.service" "${pkgdir}/usr/lib/systemd/user/${pkgname}.service" + +# license + install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE + +# man pages + cd "${srcdir}/src/github.com/syncthing/${pkgname}/man" + for file in $(find . -name '*.1' -print); do +install
[arch-commits] Commit in syncthing/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 17:30:53 Author: flexiondotorg Revision: 134978 upgpkg: syncthing 0.11.8-1 - New upstream release. Fixes #45036. Modified: syncthing/trunk/PKGBUILD --+ PKGBUILD | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 15:17:53 UTC (rev 134977) +++ PKGBUILD2015-06-08 15:30:53 UTC (rev 134978) @@ -6,11 +6,11 @@ # Contributor: korjjj pkgname=syncthing -pkgver=0.11.7 -pkgrel=2 +pkgver=0.11.8 +pkgrel=1 pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing" url="http://syncthing.net/"; -license=('MPLv2') +license=('MPL') arch=('i686' 'x86_64') depends=('glibc') makedepends=('git' 'go' 'godep' 'inetutils' 'sed') @@ -26,7 +26,13 @@ build() { export GOPATH="${srcdir}" cd "${srcdir}/src/github.com/syncthing/${pkgname}" - go run build.go -no-upgrade build + if [ ${CARCH}" == "i686" ] ; then + go run build.go -no-upgrade -goarch 386 build + if [ ${CARCH}" == "x86_64" ] ; then + go run build.go -no-upgrade -goarch amd64 build + else + go run build.go -no-upgrade build + fi } check() {
[arch-commits] Commit in godep/repos (4 files)
Date: Monday, June 8, 2015 @ 17:17:53 Author: flexiondotorg Revision: 134977 archrelease: copy trunk to community-i686, community-x86_64 Added: godep/repos/community-i686/PKGBUILD (from rev 134976, godep/trunk/PKGBUILD) godep/repos/community-x86_64/PKGBUILD (from rev 134976, godep/trunk/PKGBUILD) Deleted: godep/repos/community-i686/PKGBUILD godep/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 76 community-i686/PKGBUILD | 38 -- community-x86_64/PKGBUILD | 38 -- 3 files changed, 76 insertions(+), 76 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-06-08 15:17:39 UTC (rev 134976) +++ community-i686/PKGBUILD 2015-06-08 15:17:53 UTC (rev 134977) @@ -1,38 +0,0 @@ -# $Id: -# Maintainer : Martin Wimpress -# Contributor: Sauyon Lee - -pkgname=godep -pkgver=94.20140524 -pkgrel=1 -epoch=1 -pkgdesc="Dependency tool for go" -arch=('i686' 'x86_64') -url="http://github.com/tools/godep"; -license=('BSD') -depends=('glibc') -makedepends=('git' 'go' 'mercurial') -source=("${pkgname}::git+https://github.com/tools/godep#commit=983ff9241cead0f7e6ad0ae4a92b335c33ade8a2";) -md5sums=('SKIP') - -pkgver() { - cd "${srcdir}/${pkgname}" -printf "%s.%s" "$(git rev-list --count HEAD)" "$(git log -1 --format=%cd --date=short | tr -d -)" -} - -prepare() { - export GOPATH="${srcdir}" - go get code.google.com/p/go.tools/go/vcs - go get github.com/kr/fs -} - -build() { - cd "${srcdir}/${pkgname}" - GOPATH="${srcdir}" go build -} - -package() { - cd "${srcdir}/${pkgname}" - install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/godep" - install -Dm644 License "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: godep/repos/community-i686/PKGBUILD (from rev 134976, godep/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-06-08 15:17:53 UTC (rev 134977) @@ -0,0 +1,38 @@ +# $Id: +# Maintainer : Martin Wimpress +# Contributor: Sauyon Lee + +pkgname=godep +pkgver=116.20150528 +pkgrel=1 +epoch=1 +pkgdesc="Dependency tool for go" +arch=('i686' 'x86_64') +url="http://github.com/tools/godep"; +license=('BSD') +depends=('glibc') +makedepends=('git' 'go' 'mercurial') +source=("${pkgname}::git+https://github.com/tools/godep#commit=e28aafa1c4a9ab9108ae98211f12bbcc43e24510";) +md5sums=('SKIP') + +pkgver() { + cd "${srcdir}/${pkgname}" +printf "%s.%s" "$(git rev-list --count HEAD)" "$(git log -1 --format=%cd --date=short | tr -d -)" +} + +prepare() { + export GOPATH="${srcdir}" +go get golang.org/x/tools/go/vcs + go get github.com/kr/fs +} + +build() { + cd "${srcdir}/${pkgname}" + GOPATH="${srcdir}" go build +} + +package() { + cd "${srcdir}/${pkgname}" + install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/godep" + install -Dm644 License "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2015-06-08 15:17:39 UTC (rev 134976) +++ community-x86_64/PKGBUILD 2015-06-08 15:17:53 UTC (rev 134977) @@ -1,38 +0,0 @@ -# $Id: -# Maintainer : Martin Wimpress -# Contributor: Sauyon Lee - -pkgname=godep -pkgver=94.20140524 -pkgrel=1 -epoch=1 -pkgdesc="Dependency tool for go" -arch=('i686' 'x86_64') -url="http://github.com/tools/godep"; -license=('BSD') -depends=('glibc') -makedepends=('git' 'go' 'mercurial') -source=("${pkgname}::git+https://github.com/tools/godep#commit=983ff9241cead0f7e6ad0ae4a92b335c33ade8a2";) -md5sums=('SKIP') - -pkgver() { - cd "${srcdir}/${pkgname}" -printf "%s.%s" "$(git rev-list --count HEAD)" "$(git log -1 --format=%cd --date=short | tr -d -)" -} - -prepare() { - export GOPATH="${srcdir}" - go get code.google.com/p/go.tools/go/vcs - go get github.com/kr/fs -} - -build() { - cd "${srcdir}/${pkgname}" - GOPATH="${srcdir}" go build -} - -package() { - cd "${srcdir}/${pkgname}" - install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/godep" - install -Dm644 License "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: godep/repos/community-x86_64/PKGBUILD (from rev 134976, godep/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2015-06-08 15:17:53 UTC (rev 134977) @@ -0,0 +1,38 @@ +# $Id: +# Maintainer : Martin Wimpress +# Contributor: Sauyon Lee + +pkgname=godep +pkgver=116.20150528 +pkgrel=1 +epoch=1 +pkgdesc="Dependency tool for go" +arch=('i686' 'x86_64') +url="http://github.com/tools/godep"; +license=('
[arch-commits] Commit in godep/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 17:17:39 Author: flexiondotorg Revision: 134976 upgpkg: godep 1:116.20150528-1 - Sync with upstream Modified: godep/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 14:14:16 UTC (rev 134975) +++ PKGBUILD2015-06-08 15:17:39 UTC (rev 134976) @@ -3,7 +3,7 @@ # Contributor: Sauyon Lee pkgname=godep -pkgver=94.20140524 +pkgver=116.20150528 pkgrel=1 epoch=1 pkgdesc="Dependency tool for go" @@ -12,7 +12,7 @@ license=('BSD') depends=('glibc') makedepends=('git' 'go' 'mercurial') -source=("${pkgname}::git+https://github.com/tools/godep#commit=983ff9241cead0f7e6ad0ae4a92b335c33ade8a2";) +source=("${pkgname}::git+https://github.com/tools/godep#commit=e28aafa1c4a9ab9108ae98211f12bbcc43e24510";) md5sums=('SKIP') pkgver() { @@ -22,7 +22,7 @@ prepare() { export GOPATH="${srcdir}" - go get code.google.com/p/go.tools/go/vcs +go get golang.org/x/tools/go/vcs go get github.com/kr/fs }
[arch-commits] Commit in python-sqlalchemy/repos (4 files)
Date: Monday, June 8, 2015 @ 16:14:16 Author: fyan Revision: 134975 archrelease: copy trunk to community-i686, community-x86_64 Added: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 134974, python-sqlalchemy/trunk/PKGBUILD) python-sqlalchemy/repos/community-x86_64/PKGBUILD (from rev 134974, python-sqlalchemy/trunk/PKGBUILD) Deleted: python-sqlalchemy/repos/community-i686/PKGBUILD python-sqlalchemy/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 124 community-i686/PKGBUILD | 62 -- community-x86_64/PKGBUILD | 62 -- 3 files changed, 124 insertions(+), 124 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-06-08 14:13:53 UTC (rev 134974) +++ community-i686/PKGBUILD 2015-06-08 14:14:16 UTC (rev 134975) @@ -1,62 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: Felix Yan -# Contributor: Sébastien Luttringer - -pkgbase=python-sqlalchemy -pkgname=('python-sqlalchemy' 'python2-sqlalchemy') -pkgver=1.0.4 -pkgrel=1 -arch=('i686' 'x86_64') # python2 package contain .so -url="http://www.sqlalchemy.org/"; -license=('MIT') -makedepends=('python-setuptools' 'python2-setuptools') -checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock') -source=("https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc}) -validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1') -md5sums=('ad1a8a2064dd9c8e76d5692a8eb4e864' - 'SKIP') - -prepare() { - cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver -} - -build() { - cd SQLAlchemy-$pkgver - python setup.py build - - cd ../SQLAlchemy2-$pkgver - python2 setup.py build -} - -check() { - cd SQLAlchemy-${pkgver} - PYTHONPATH="$(pwd)/build/lib.linux-$CARCH-3.4:$PYTHONPATH" py.test - - cd ../SQLAlchemy2-$pkgver - PYTHONPATH="$(pwd)/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2 -} - -package_python-sqlalchemy() { - pkgdesc='Python SQL toolkit and Object Relational Mapper' - depends=('python') - optdepends=('python-psycopg2: connect to PostgreSQL database') - - cd SQLAlchemy-${pkgver} - python setup.py install --root="${pkgdir}" - install -D -m644 LICENSE \ - "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -package_python2-sqlalchemy() { - pkgdesc='Python 2 SQL toolkit and Object Relational Mapper' - depends=('python2') - optdepends=('python2-psycopg2: connect to PostgreSQL database') - - cd SQLAlchemy2-$pkgver - python2 setup.py install --root="$pkgdir" - install -D -m644 LICENSE \ - "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 ft=sh et: Copied: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 134974, python-sqlalchemy/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-06-08 14:14:16 UTC (rev 134975) @@ -0,0 +1,62 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: Felix Yan +# Contributor: Sébastien Luttringer + +pkgbase=python-sqlalchemy +pkgname=('python-sqlalchemy' 'python2-sqlalchemy') +pkgver=1.0.5 +pkgrel=1 +arch=('i686' 'x86_64') # python2 package contain .so +url="http://www.sqlalchemy.org/"; +license=('MIT') +makedepends=('python-setuptools' 'python2-setuptools') +checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock') +source=("https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc}) +validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1') +md5sums=('e9e54eb24b148d065e42e0826523657a' + 'SKIP') + +prepare() { + cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver +} + +build() { + cd SQLAlchemy-$pkgver + python setup.py build + + cd ../SQLAlchemy2-$pkgver + python2 setup.py build +} + +check() { + cd SQLAlchemy-${pkgver} + PYTHONPATH="$(pwd)/build/lib.linux-$CARCH-3.4:$PYTHONPATH" py.test + + cd ../SQLAlchemy2-$pkgver + PYTHONPATH="$(pwd)/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2 +} + +package_python-sqlalchemy() { + pkgdesc='Python SQL toolkit and Object Relational Mapper' + depends=('python') + optdepends=('python-psycopg2: connect to PostgreSQL database') + + cd SQLAlchemy-${pkgver} + python setup.py install --root="${pkgdir}" + install -D -m644 LICENSE \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +package_python2-sqlalchemy() { + pkgdesc='Python 2 SQL toolkit and Object Relational Mapper' + depends=('python2') + optdepends=('python2-psycopg2: connect to PostgreSQL database') + + cd SQLAlchemy2-$pkgver + python2 setup.py install --root="$pkgdir" + install -D -m644 LICENSE \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 ft=sh et: Deleted: community-x86_64/PKGBUILD ===
[arch-commits] Commit in python-sqlalchemy/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 16:13:53 Author: fyan Revision: 134974 upgpkg: python-sqlalchemy 1.0.5-1 Modified: python-sqlalchemy/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 13:19:39 UTC (rev 134973) +++ PKGBUILD2015-06-08 14:13:53 UTC (rev 134974) @@ -5,7 +5,7 @@ pkgbase=python-sqlalchemy pkgname=('python-sqlalchemy' 'python2-sqlalchemy') -pkgver=1.0.4 +pkgver=1.0.5 pkgrel=1 arch=('i686' 'x86_64') # python2 package contain .so url="http://www.sqlalchemy.org/"; @@ -14,7 +14,7 @@ checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock') source=("https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc}) validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1') -md5sums=('ad1a8a2064dd9c8e76d5692a8eb4e864' +md5sums=('e9e54eb24b148d065e42e0826523657a' 'SKIP') prepare() {
[arch-commits] Commit in shadowsocks/repos/community-any (8 files)
Date: Monday, June 8, 2015 @ 15:19:39 Author: fyan Revision: 134973 archrelease: copy trunk to community-any Added: shadowsocks/repos/community-any/PKGBUILD (from rev 134972, shadowsocks/trunk/PKGBUILD) shadowsocks/repos/community-any/shadowsocks-server@.service (from rev 134972, shadowsocks/trunk/shadowsocks-server@.service) shadowsocks/repos/community-any/shadowsocks.install (from rev 134972, shadowsocks/trunk/shadowsocks.install) shadowsocks/repos/community-any/shadowsocks@.service (from rev 134972, shadowsocks/trunk/shadowsocks@.service) Deleted: shadowsocks/repos/community-any/PKGBUILD shadowsocks/repos/community-any/shadowsocks-server@.service shadowsocks/repos/community-any/shadowsocks.install shadowsocks/repos/community-any/shadowsocks@.service -+ PKGBUILD| 88 +- shadowsocks-server@.service | 24 +-- shadowsocks.install | 10 ++-- shadowsocks@.service| 24 +-- 4 files changed, 73 insertions(+), 73 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 13:19:23 UTC (rev 134972) +++ PKGBUILD2015-06-08 13:19:39 UTC (rev 134973) @@ -1,44 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan - -pkgname=shadowsocks -pkgver=2.6.9 -pkgrel=1 -pkgdesc="A lightweight tunnel proxy" -license=('Apache') -url="http://pypi.python.org/pypi/shadowsocks"; -arch=('any') -depends=('python' 'python-setuptools') -optdepends=('libsodium: For salsa20 and chacha20 support') -install=${pkgname}.install -source=("https://pypi.python.org/packages/source/s/shadowsocks/shadowsocks-${pkgver}.tar.gz"; -"shadowsocks@.service" -"shadowsocks-server@.service") -sha512sums=('8de0531b222bb20b3ca4bcecf0b7d45967d12c0ff744d7c0ec232a25f36a2d123485a793fe6211ef0896d913f4547e020135d0ede80250ba90f931fa4560f4a4' - '96ecb174a476f64dec3ec086732d93a76d27e9a1cc56b1dc3fa87bf8e00d4b3c44076a01a0d525e42174cacc58fd5c16d5c8af5d4636dae13df549dec8204f7d' - 'f2f8240c18a4483bf3e03b3a5ac8822c3deae713224f732bf28f7fddfcc5d0b02aa91652665ff93f05731e162a9407109c18f43d732a3a9b19d9eacfc806a4df') - -check() { - cd shadowsocks-$pkgver - - # Tests not included - return - python tests/test.py -c tests/table.json - python tests/test.py -c tests/aes.json - python tests/test.py -c tests/rc4-md5.json - python tests/test.py -c tests/salsa20.json - python tests/test.py -c tests/server-multi-ports.json - python tests/test.py -c tests/server-multi-passwd.json - python tests/test.py -c tests/server-multi-passwd-table.json - python tests/test.py -c tests/workers.json -} - -package() { - cd "$srcdir/shadowsocks-$pkgver" - - python setup.py install -O1 --root="$pkgdir" - - install -d "$pkgdir/etc/shadowsocks" - install -Dm644 "$srcdir/shadowsocks@.service" "$pkgdir/usr/lib/systemd/system/shadowsocks@.service" - install -Dm644 "$srcdir/shadowsocks-server@.service" "$pkgdir/usr/lib/systemd/system/shadowsocks-server@.service" -} Copied: shadowsocks/repos/community-any/PKGBUILD (from rev 134972, shadowsocks/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 13:19:39 UTC (rev 134973) @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=shadowsocks +pkgver=2.6.10 +pkgrel=1 +pkgdesc="A lightweight tunnel proxy" +license=('Apache') +url="http://pypi.python.org/pypi/shadowsocks"; +arch=('any') +depends=('python' 'python-setuptools') +optdepends=('libsodium: For salsa20 and chacha20 support') +install=${pkgname}.install +source=("https://pypi.python.org/packages/source/s/shadowsocks/shadowsocks-${pkgver}.tar.gz"; +"shadowsocks@.service" +"shadowsocks-server@.service") +sha512sums=('4b6b91cfbba1833e6bfa29e98cd45c85ead2113f56be05053d634236cf1b1dc24b82537dc905f43af0347ff5c3ed7fc7ea170f57a6856b240cee4ecb04ae5246' + '96ecb174a476f64dec3ec086732d93a76d27e9a1cc56b1dc3fa87bf8e00d4b3c44076a01a0d525e42174cacc58fd5c16d5c8af5d4636dae13df549dec8204f7d' + 'f2f8240c18a4483bf3e03b3a5ac8822c3deae713224f732bf28f7fddfcc5d0b02aa91652665ff93f05731e162a9407109c18f43d732a3a9b19d9eacfc806a4df') + +check() { + cd shadowsocks-$pkgver + + # Tests not included + return + python tests/test.py -c tests/table.json + python tests/test.py -c tests/aes.json + python tests/test.py -c tests/rc4-md5.json + python tests/test.py -c tests/salsa20.json + python tests/test.py -c tests/server-multi-ports.json + python tests/test.py -c tests/server-multi-passwd.json + python tests/test.py -c tests/server-multi-passwd-table.json + python tests/test.py -c tests/workers.json +} + +package() { + cd "$srcdir/shadowsocks-$pkgver" + + python setup.py install -O1 --root="$pkgdir" + + install -d "$pkgdir/etc/shadowsocks" + install -Dm644 "$srcdir/shadowsocks@.service" "$pkgdir/usr/
[arch-commits] Commit in shadowsocks/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 15:19:23 Author: fyan Revision: 134972 upgpkg: shadowsocks 2.6.10-1 Modified: shadowsocks/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 13:00:58 UTC (rev 134971) +++ PKGBUILD2015-06-08 13:19:23 UTC (rev 134972) @@ -2,7 +2,7 @@ # Maintainer: Felix Yan pkgname=shadowsocks -pkgver=2.6.9 +pkgver=2.6.10 pkgrel=1 pkgdesc="A lightweight tunnel proxy" license=('Apache') @@ -14,7 +14,7 @@ source=("https://pypi.python.org/packages/source/s/shadowsocks/shadowsocks-${pkgver}.tar.gz"; "shadowsocks@.service" "shadowsocks-server@.service") -sha512sums=('8de0531b222bb20b3ca4bcecf0b7d45967d12c0ff744d7c0ec232a25f36a2d123485a793fe6211ef0896d913f4547e020135d0ede80250ba90f931fa4560f4a4' +sha512sums=('4b6b91cfbba1833e6bfa29e98cd45c85ead2113f56be05053d634236cf1b1dc24b82537dc905f43af0347ff5c3ed7fc7ea170f57a6856b240cee4ecb04ae5246' '96ecb174a476f64dec3ec086732d93a76d27e9a1cc56b1dc3fa87bf8e00d4b3c44076a01a0d525e42174cacc58fd5c16d5c8af5d4636dae13df549dec8204f7d' 'f2f8240c18a4483bf3e03b3a5ac8822c3deae713224f732bf28f7fddfcc5d0b02aa91652665ff93f05731e162a9407109c18f43d732a3a9b19d9eacfc806a4df')
[arch-commits] Commit in rsyslog/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 15:00:28 Author: spupykin Revision: 134970 upgpkg: rsyslog 8.10.0-1 upd Modified: rsyslog/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 12:30:15 UTC (rev 134969) +++ PKGBUILD2015-06-08 13:00:28 UTC (rev 134970) @@ -2,8 +2,8 @@ # Maintainer: Sergej Pupykin pkgname=rsyslog -pkgver=8.9.0 -pkgrel=3 +pkgver=8.10.0 +pkgrel=1 pkgdesc="An enhanced multi-threaded syslogd with a focus on security and reliability" url="http://www.rsyslog.com/"; arch=('i686' 'x86_64') @@ -22,7 +22,7 @@ 'rsyslog.logrotate' 'rsyslog.conf' 'gnutls.patch') -md5sums=('b9e10a3ea9d52b4fa9bbbf540d313970' +md5sums=('983e17cb10b683e826db395618933d4b' '0d990373f5c70ddee989296007b4df5b' 'd61dd424e660eb16401121eed20d98bc' 'aafafdf4502f5e4de5fcfebd21499700') @@ -29,7 +29,7 @@ prepare() { cd ${srcdir}/${pkgname}-${pkgver} - patch -p1 <$srcdir/gnutls.patch +# patch -p1 <$srcdir/gnutls.patch sed -i rsyslog.service.in \ -e 's|rsyslogd -n|rsyslogd -n -i /run/rsyslogd.pid|' \ -e '/ExecStart=.*$/iPIDFile=/run/rsyslogd.pid'
[arch-commits] Commit in rsyslog/repos (16 files)
Date: Monday, June 8, 2015 @ 15:00:58 Author: spupykin Revision: 134971 archrelease: copy trunk to community-i686, community-x86_64 Added: rsyslog/repos/community-i686/PKGBUILD (from rev 134970, rsyslog/trunk/PKGBUILD) rsyslog/repos/community-i686/gnutls.patch (from rev 134970, rsyslog/trunk/gnutls.patch) rsyslog/repos/community-i686/rsyslog.conf (from rev 134970, rsyslog/trunk/rsyslog.conf) rsyslog/repos/community-i686/rsyslog.logrotate (from rev 134970, rsyslog/trunk/rsyslog.logrotate) rsyslog/repos/community-x86_64/PKGBUILD (from rev 134970, rsyslog/trunk/PKGBUILD) rsyslog/repos/community-x86_64/gnutls.patch (from rev 134970, rsyslog/trunk/gnutls.patch) rsyslog/repos/community-x86_64/rsyslog.conf (from rev 134970, rsyslog/trunk/rsyslog.conf) rsyslog/repos/community-x86_64/rsyslog.logrotate (from rev 134970, rsyslog/trunk/rsyslog.logrotate) Deleted: rsyslog/repos/community-i686/PKGBUILD rsyslog/repos/community-i686/gnutls.patch rsyslog/repos/community-i686/rsyslog.conf rsyslog/repos/community-i686/rsyslog.logrotate rsyslog/repos/community-x86_64/PKGBUILD rsyslog/repos/community-x86_64/gnutls.patch rsyslog/repos/community-x86_64/rsyslog.conf rsyslog/repos/community-x86_64/rsyslog.logrotate + /PKGBUILD | 122 +++ /gnutls.patch | 72 /rsyslog.conf | 88 + /rsyslog.logrotate | 14 community-i686/PKGBUILD| 61 - community-i686/gnutls.patch| 36 -- community-i686/rsyslog.conf| 44 community-i686/rsyslog.logrotate |7 -- community-x86_64/PKGBUILD | 61 - community-x86_64/gnutls.patch | 36 -- community-x86_64/rsyslog.conf | 44 community-x86_64/rsyslog.logrotate |7 -- 12 files changed, 296 insertions(+), 296 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-06-08 13:00:28 UTC (rev 134970) +++ community-i686/PKGBUILD 2015-06-08 13:00:58 UTC (rev 134971) @@ -1,61 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin - -pkgname=rsyslog -pkgver=8.9.0 -pkgrel=3 -pkgdesc="An enhanced multi-threaded syslogd with a focus on security and reliability" -url="http://www.rsyslog.com/"; -arch=('i686' 'x86_64') -license=('GPL3') -depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd' 'liblogging' 'librelp') -makedepends=('postgresql-libs>=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls' -'python-docutils') -optdepends=('postgresql-libs: PostgreSQL Database Support' - 'libmariadbclient: MySQL Database Support' - 'net-snmp' - 'gnutls') -backup=('etc/rsyslog.conf' - 'etc/logrotate.d/rsyslog') -options=('strip' 'zipman') -source=("http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz"; - 'rsyslog.logrotate' - 'rsyslog.conf' - 'gnutls.patch') -md5sums=('b9e10a3ea9d52b4fa9bbbf540d313970' - '0d990373f5c70ddee989296007b4df5b' - 'd61dd424e660eb16401121eed20d98bc' - 'aafafdf4502f5e4de5fcfebd21499700') - -prepare() { - cd ${srcdir}/${pkgname}-${pkgver} - patch -p1 <$srcdir/gnutls.patch - sed -i rsyslog.service.in \ --e 's|rsyslogd -n|rsyslogd -n -i /run/rsyslogd.pid|' \ --e '/ExecStart=.*$/iPIDFile=/run/rsyslogd.pid' -} - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr \ - --sbindir=/usr/bin \ - --enable-mysql \ - --enable-pgsql \ - --enable-mail \ - --enable-imfile \ - --enable-snmp \ - --enable-gnutls \ - --enable-inet \ - --enable-imjournal \ - --enable-omjournal \ - --enable-relp \ - --with-systemdsystemunitdir=/usr/lib/systemd/system - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make install DESTDIR=${pkgdir} - install -D -m644 $srcdir/${pkgname}.conf ${pkgdir}/etc/${pkgname}.conf - install -D -m644 $srcdir/${pkgname}.logrotate ${pkgdir}/etc/logrotate.d/${pkgname} -} Copied: rsyslog/repos/community-i686/PKGBUILD (from rev 134970, rsyslog/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-06-08 13:00:58 UTC (rev 134971) @@ -0,0 +1,61 @@ +# $Id$ +# Maintainer: Sergej Pupykin + +pkgname=rsyslog +pkgver=8.10.0 +pkgrel=1 +pkgdesc="An enhanced multi-threaded syslogd with a focus on security and reliability" +url="http://www.rsyslog.com/"; +arch=('i686' 'x86_64') +license=('GPL3') +depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd' 'liblogging' 'librelp') +makedepends=('po
[arch-commits] Commit in virt-manager/repos/community-any (4 files)
Date: Monday, June 8, 2015 @ 14:30:15 Author: spupykin Revision: 134969 archrelease: copy trunk to community-any Added: virt-manager/repos/community-any/PKGBUILD (from rev 134968, virt-manager/trunk/PKGBUILD) virt-manager/repos/community-any/virt-manager.install (from rev 134968, virt-manager/trunk/virt-manager.install) Deleted: virt-manager/repos/community-any/PKGBUILD virt-manager/repos/community-any/virt-manager.install --+ PKGBUILD | 90 - virt-manager.install | 46 - 2 files changed, 68 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 12:30:07 UTC (rev 134968) +++ PKGBUILD2015-06-08 12:30:15 UTC (rev 134969) @@ -1,45 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: Daniel Micay -# Contributor: Jonathan Wiersma - -pkgbase=virt-manager -pkgname=(virt-install virt-manager) -pkgver=1.2.0 -pkgrel=2 -pkgdesc="Console user interface for managing virtual machines" -arch=('any') -url="http://virt-manager.org/"; -license=('GPL') -depends=('python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber' -'libosinfo' 'python2-ipaddr' 'python2-gobject') -makedepends=('intltool>=0.35.0' -'dbus-python' 'gtk-vnc' 'rarian' -'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser' -'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass' -'graphite' 'spice-gtk3' -'libvirt-glib' 'vte3') -source=("http://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz";) -md5sums=('89e6c816054f3a3751100a8d79ec97c2') - -build() { - cd "$srcdir/$pkgbase-$pkgver" - python2 setup.py build -} - -package_virt-install() { - cd "$srcdir/$pkgbase-$pkgver" - python2 setup.py install --root "$pkgdir" -} - -package_virt-manager() { - pkgdesc="Desktop user interface for managing virtual machines" - install=virt-manager.install - depends=('virt-install' - 'python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber' - 'dbus-python' 'gtk-vnc' 'rarian' - 'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser' - 'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass' - 'graphite' 'spice-gtk3' - 'libvirt-glib' 'vte3') -} Copied: virt-manager/repos/community-any/PKGBUILD (from rev 134968, virt-manager/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 12:30:15 UTC (rev 134969) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: Daniel Micay +# Contributor: Jonathan Wiersma + +pkgbase=virt-manager +pkgname=(virt-install virt-manager) +pkgver=1.2.1 +pkgrel=1 +pkgdesc="Console user interface for managing virtual machines" +arch=('any') +url="http://virt-manager.org/"; +license=('GPL') +depends=('python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber' +'libosinfo' 'python2-ipaddr' 'python2-gobject') +makedepends=('intltool>=0.35.0' +'dbus-python' 'gtk-vnc' 'rarian' +'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser' +'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass' +'graphite' 'spice-gtk3' +'libvirt-glib' 'vte3') +source=("http://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz";) +md5sums=('c8045da517e7c9d8696e22970291c55e') + +build() { + cd "$srcdir/$pkgbase-$pkgver" + python2 setup.py build +} + +package_virt-install() { + cd "$srcdir/$pkgbase-$pkgver" + python2 setup.py install --root "$pkgdir" +} + +package_virt-manager() { + pkgdesc="Desktop user interface for managing virtual machines" + install=virt-manager.install + depends=('virt-install' + 'python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber' + 'dbus-python' 'gtk-vnc' 'rarian' + 'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser' + 'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass' + 'graphite' 'spice-gtk3' + 'libvirt-glib' 'vte3') +} Deleted: virt-manager.install === --- virt-manager.install2015-06-08 12:30:07 UTC (rev 134968) +++ virt-manager.install2015-06-08 12:30:15 UTC (rev 134969) @@ -1,23 +0,0 @@ -post_install() { - [ -x usr/bin/update-desktop-database ] && update-desktop-database -q - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor - glib-compile-schemas usr/share/glib-2.0/schemas -} - -pre_upgrade() { - pre_remove $1 -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - rm -f /usr/share/virt-manager/virtManager/*.pyc || true -} - -post_remove() { - [ -x usr/bin/update-desktop-database ] && update-desktop-database -q - gtk-update-
[arch-commits] Commit in virt-manager/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 14:30:07 Author: spupykin Revision: 134968 upgpkg: virt-manager 1.2.1-1 upd Modified: virt-manager/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 12:30:03 UTC (rev 134967) +++ PKGBUILD2015-06-08 12:30:07 UTC (rev 134968) @@ -5,8 +5,8 @@ pkgbase=virt-manager pkgname=(virt-install virt-manager) -pkgver=1.2.0 -pkgrel=2 +pkgver=1.2.1 +pkgrel=1 pkgdesc="Console user interface for managing virtual machines" arch=('any') url="http://virt-manager.org/"; @@ -20,7 +20,7 @@ 'graphite' 'spice-gtk3' 'libvirt-glib' 'vte3') source=("http://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz";) -md5sums=('89e6c816054f3a3751100a8d79ec97c2') +md5sums=('c8045da517e7c9d8696e22970291c55e') build() { cd "$srcdir/$pkgbase-$pkgver"
[arch-commits] Commit in roundcubemail/repos/community-any (6 files)
Date: Monday, June 8, 2015 @ 14:30:03 Author: spupykin Revision: 134967 archrelease: copy trunk to community-any Added: roundcubemail/repos/community-any/PKGBUILD (from rev 134966, roundcubemail/trunk/PKGBUILD) roundcubemail/repos/community-any/apache.conf (from rev 134966, roundcubemail/trunk/apache.conf) roundcubemail/repos/community-any/roundcubemail.install (from rev 134966, roundcubemail/trunk/roundcubemail.install) Deleted: roundcubemail/repos/community-any/PKGBUILD roundcubemail/repos/community-any/apache.conf roundcubemail/repos/community-any/roundcubemail.install ---+ PKGBUILD | 110 apache.conf | 14 +++--- roundcubemail.install | 14 +++--- 3 files changed, 69 insertions(+), 69 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-06-08 12:29:53 UTC (rev 134966) +++ PKGBUILD2015-06-08 12:30:03 UTC (rev 134967) @@ -1,55 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin - -pkgname=roundcubemail -pkgver=1.1.1 -pkgrel=1 -pkgdesc="A PHP web-based mail client" -arch=('any') -url="http://www.roundcube.net"; -license=('GPL') -depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp' -'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve') -optdepends=('python2') -backup=('etc/webapps/roundcubemail/.htaccess' - 'etc/webapps/roundcubemail/apache.conf') -install=roundcubemail.install -options=('!strip' 'emptydirs') -source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz - apache.conf) -md5sums=('5809a8068355a21abc7762739220adc8' - 'f11b17e2a80b383cde4af963fb307541') - -prepare() { - cd ${srcdir}/roundcubemail-${pkgver/rc/-rc} - sed -i \ --e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \ --e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \ -config/defaults.inc.php \ -program/lib/Roundcube/rcube_config.php -} - -package() { - mkdir -p ${pkgdir}/etc/webapps/roundcubemail - mkdir -p ${pkgdir}/usr/share/webapps - mkdir -p ${pkgdir}/var/log - cd ${pkgdir}/usr/share/webapps - cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail - cd roundcubemail - - mv .htaccess $pkgdir/etc/webapps/roundcubemail/ - ln -s /etc/webapps/roundcubemail/.htaccess .htaccess - - mv config $pkgdir/etc/webapps/roundcubemail/ - ln -s /etc/webapps/roundcubemail/config config - - install -dm0750 $pkgdir/var/{log,cache}/roundcubemail - install -Dm0644 $srcdir/apache.conf $pkgdir/etc/webapps/roundcubemail/apache.conf - -# install -dm0755 $pkgdir/etc/php/conf.d/ -# cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini -#open_basedir = ${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail -#EOF - - rm -rf temp logs -} Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 134966, roundcubemail/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-06-08 12:30:03 UTC (rev 134967) @@ -0,0 +1,55 @@ +# $Id$ +# Maintainer: Sergej Pupykin + +pkgname=roundcubemail +pkgver=1.1.2 +pkgrel=1 +pkgdesc="A PHP web-based mail client" +arch=('any') +url="http://www.roundcube.net"; +license=('GPL') +depends=('php' 'php-pear' 'pear-net-idna2' 'pear-mail-mime' 'pear-net-smtp' +'pear-auth-sasl' 'pear-mail-mime-decode' 'pear-net-sieve') +optdepends=('python2') +backup=('etc/webapps/roundcubemail/.htaccess' + 'etc/webapps/roundcubemail/apache.conf') +install=roundcubemail.install +options=('!strip' 'emptydirs') +source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz + apache.conf) +md5sums=('c899c9a0d61a4171b771fde4959b7ed5' + 'f11b17e2a80b383cde4af963fb307541') + +prepare() { + cd ${srcdir}/roundcubemail-${pkgver/rc/-rc} + sed -i \ +-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \ +-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \ +config/defaults.inc.php \ +program/lib/Roundcube/rcube_config.php +} + +package() { + mkdir -p ${pkgdir}/etc/webapps/roundcubemail + mkdir -p ${pkgdir}/usr/share/webapps + mkdir -p ${pkgdir}/var/log + cd ${pkgdir}/usr/share/webapps + cp -ra ${srcdir}/roundcubemail-${pkgver/rc/-rc} roundcubemail + cd roundcubemail + + mv .htaccess $pkgdir/etc/webapps/roundcubemail/ + ln -s /etc/webapps/roundcubemail/.htaccess .htaccess + + mv config $pkgdir/etc/webapps/roundcubemail/ + ln -s /etc/webapps/roundcubemail/config config + + install -dm0750 $pkgdir/var/{log,cache}/roundcubemail + install -Dm0644 $srcdir/apache.conf $pkgdir/etc/webapps/roundcubemail/apache.conf + +# install -dm0755 $pkgdir/etc/php/conf.d/ +# cat <<'EOF' >$pkgdir/etc/php/conf.d/$pkgname.ini +#open_basedir
[arch-commits] Commit in glusterfs/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 14:29:16 Author: spupykin Revision: 134964 upgpkg: glusterfs 3.7.1-1 upd Modified: glusterfs/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 12:17:58 UTC (rev 134963) +++ PKGBUILD2015-06-08 12:29:16 UTC (rev 134964) @@ -5,7 +5,7 @@ # henning mueller pkgname=glusterfs -pkgver=3.7.0 +pkgver=3.7.1 pkgrel=1 pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.' arch=(i686 x86_64) @@ -17,7 +17,7 @@ optdepends=('rpcbind: NFS' 'glib2: qemu-block') source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz) -md5sums=('51789050e4f7824146f02191f03b779b') +md5sums=('2135aefa7e1046aa3fb9501e6eae86c8') prepare() { cd $srcdir/$pkgname-$pkgver
[arch-commits] Commit in glusterfs/repos (8 files)
Date: Monday, June 8, 2015 @ 14:29:33 Author: spupykin Revision: 134965 archrelease: copy trunk to community-i686, community-x86_64 Added: glusterfs/repos/community-i686/PKGBUILD (from rev 134964, glusterfs/trunk/PKGBUILD) glusterfs/repos/community-i686/glusterfs.install (from rev 134964, glusterfs/trunk/glusterfs.install) glusterfs/repos/community-x86_64/PKGBUILD (from rev 134964, glusterfs/trunk/PKGBUILD) glusterfs/repos/community-x86_64/glusterfs.install (from rev 134964, glusterfs/trunk/glusterfs.install) Deleted: glusterfs/repos/community-i686/PKGBUILD glusterfs/repos/community-i686/glusterfs.install glusterfs/repos/community-x86_64/PKGBUILD glusterfs/repos/community-x86_64/glusterfs.install + /PKGBUILD | 126 +++ /glusterfs.install | 16 community-i686/PKGBUILD| 63 - community-i686/glusterfs.install |8 -- community-x86_64/PKGBUILD | 63 - community-x86_64/glusterfs.install |8 -- 6 files changed, 142 insertions(+), 142 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-06-08 12:29:16 UTC (rev 134964) +++ community-i686/PKGBUILD 2015-06-08 12:29:33 UTC (rev 134965) @@ -1,63 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributors: -# Andrei Antoukh - n...@niwi.be - http://www.niwi.be -# henning mueller - -pkgname=glusterfs -pkgver=3.7.0 -pkgrel=1 -pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.' -arch=(i686 x86_64) -url='http://www.gluster.org/' -license=(GPL2 LGPL3) -install=glusterfs.install -depends=(fuse python2 libxml2 libaio liburcu) -makedepends=(flex bison) -optdepends=('rpcbind: NFS' - 'glib2: qemu-block') -source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz) -md5sums=('51789050e4f7824146f02191f03b779b') - -prepare() { - cd $srcdir/$pkgname-$pkgver - find -type f -name '*.py' -exec sed -i \ --e 's:env\ python:env\ python2:' \ --e 's:/usr/bin/python:/usr/bin/python2:' {} \; -} - -build() { - cd $srcdir/$pkgname-$pkgver - ./autogen.sh - ./configure \ ---prefix=/usr \ ---sbindir=/usr/bin \ ---with-mountutildir=/usr/bin \ ---sysconfdir=/etc \ ---localstatedir=/var \ ---mandir=/usr/share/man \ ---libexecdir=/usr/lib/$pkgname \ ---with-systemddir=/usr/lib/systemd/system \ -PYTHON=python2 LEXLIB= - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - - make -j1 DESTDIR=$pkgdir install - - mkdir -p $pkgdir/usr/lib/tmpfiles.d - echo "d /var/run/glusterfs 0755 root root -" >$pkgdir/usr/lib/tmpfiles.d/glusterfs.conf - - install -D -m 644 \ -$srcdir/$pkgname-$pkgver/{README.md,INSTALL,COPYING*} \ -$pkgdir/usr/share/doc/glusterfs/ - - cp -rf \ -$srcdir/$pkgname-$pkgver/doc/* \ -$pkgdir/usr/share/doc/glusterfs/ - rm -rf $pkgdir/var/run -} - -# vim:set ts=2 sw=2 et: Copied: glusterfs/repos/community-i686/PKGBUILD (from rev 134964, glusterfs/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-06-08 12:29:33 UTC (rev 134965) @@ -0,0 +1,63 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributors: +# Andrei Antoukh - n...@niwi.be - http://www.niwi.be +# henning mueller + +pkgname=glusterfs +pkgver=3.7.1 +pkgrel=1 +pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.' +arch=(i686 x86_64) +url='http://www.gluster.org/' +license=(GPL2 LGPL3) +install=glusterfs.install +depends=(fuse python2 libxml2 libaio liburcu) +makedepends=(flex bison) +optdepends=('rpcbind: NFS' + 'glib2: qemu-block') +source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz) +md5sums=('2135aefa7e1046aa3fb9501e6eae86c8') + +prepare() { + cd $srcdir/$pkgname-$pkgver + find -type f -name '*.py' -exec sed -i \ +-e 's:env\ python:env\ python2:' \ +-e 's:/usr/bin/python:/usr/bin/python2:' {} \; +} + +build() { + cd $srcdir/$pkgname-$pkgver + ./autogen.sh + ./configure \ +--prefix=/usr \ +--sbindir=/usr/bin \ +--with-mountutildir=/usr/bin \ +--sysconfdir=/etc \ +--localstatedir=/var \ +--mandir=/usr/share/man \ +--libexecdir=/usr/lib/$pkgname \ +--with-systemddir=/usr/lib/systemd/system \ +PYTHON=python2 LEXLIB= + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + + make -j1 DESTDIR=$pkgdir install + + mkdir -p $pkgdir/usr/lib/tmpfiles.d + echo "d /var/run/glusterfs 0755 root root -" >$pkgdir/usr/lib/tmpfiles.d/glusterfs.conf + + install -D -m 644 \ +$srcdir/$pkgname-$pkgver/{README.md,INSTALL,COPYING*} \ +$pkgdir/usr/share/doc/glusterfs/ + + cp -rf \ +$srcdir/$pkgname-$pkgver/do
[arch-commits] Commit in roundcubemail/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 14:29:53 Author: spupykin Revision: 134966 upgpkg: roundcubemail 1.1.2-1 upd Modified: roundcubemail/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 12:29:33 UTC (rev 134965) +++ PKGBUILD2015-06-08 12:29:53 UTC (rev 134966) @@ -2,7 +2,7 @@ # Maintainer: Sergej Pupykin pkgname=roundcubemail -pkgver=1.1.1 +pkgver=1.1.2 pkgrel=1 pkgdesc="A PHP web-based mail client" arch=('any') @@ -17,7 +17,7 @@ options=('!strip' 'emptydirs') source=(http://downloads.sourceforge.net/sourceforge/roundcubemail/roundcubemail-${pkgver/rc/-rc}.tar.gz apache.conf) -md5sums=('5809a8068355a21abc7762739220adc8' +md5sums=('c899c9a0d61a4171b771fde4959b7ed5' 'f11b17e2a80b383cde4af963fb307541') prepare() {
[arch-commits] Commit in libuv/repos (4 files)
Date: Monday, June 8, 2015 @ 14:17:58 Author: mtorromeo Revision: 134963 archrelease: copy trunk to community-i686, community-x86_64 Added: libuv/repos/community-i686/PKGBUILD (from rev 134962, libuv/trunk/PKGBUILD) libuv/repos/community-x86_64/PKGBUILD (from rev 134962, libuv/trunk/PKGBUILD) Deleted: libuv/repos/community-i686/PKGBUILD libuv/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 90 community-i686/PKGBUILD | 45 -- community-x86_64/PKGBUILD | 45 -- 3 files changed, 90 insertions(+), 90 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-06-08 12:17:32 UTC (rev 134962) +++ community-i686/PKGBUILD 2015-06-08 12:17:58 UTC (rev 134963) @@ -1,45 +0,0 @@ -# $Id$ -# Maintainer: Massimiliano Torromeo - -pkgname=libuv -pkgver=1.6.0 -pkgrel=1 -pkgdesc="Multi-platform support library with a focus on asynchronous I/O" -arch=('i686' 'x86_64') -url="https://github.com/libuv/libuv"; -license=('custom') -depends=('glibc') -makedepends=('python-sphinx') -source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz";) - -build() { - cd "$srcdir"/$pkgname-$pkgver - ./autogen.sh - ./configure --prefix=/usr - make - make man -C docs -} - -check() { - cd "$srcdir"/$pkgname-$pkgver - make check -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - - make DESTDIR="$pkgdir" install - - install -Dm644 LICENSE \ - "$pkgdir"/usr/share/licenses/$pkgname/LICENSE - install -Dm644 AUTHORS \ - "$pkgdir"/usr/share/doc/$pkgname/AUTHORS - install -Dm644 README.md \ - "$pkgdir"/usr/share/doc/$pkgname/README.md - install -Dm644 ChangeLog \ - "$pkgdir"/usr/share/doc/$pkgname/ChangeLog - install -Dm644 docs/build/man/libuv.1 \ - "$pkgdir"/usr/share/man/man1/libuv.1 -} - -sha256sums=('1d60d79b942f5a4e53b7eddd96faccf77257ee5d3ae9865cbe9e719f6e164fea') Copied: libuv/repos/community-i686/PKGBUILD (from rev 134962, libuv/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-06-08 12:17:58 UTC (rev 134963) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Massimiliano Torromeo + +pkgname=libuv +pkgver=1.6.1 +pkgrel=1 +pkgdesc="Multi-platform support library with a focus on asynchronous I/O" +arch=('i686' 'x86_64') +url="https://github.com/libuv/libuv"; +license=('custom') +depends=('glibc') +makedepends=('python-sphinx') +source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz";) + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./autogen.sh + ./configure --prefix=/usr + make + make man -C docs +} + +check() { + cd "$srcdir"/$pkgname-$pkgver + make check +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + + make DESTDIR="$pkgdir" install + + install -Dm644 LICENSE \ + "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + install -Dm644 AUTHORS \ + "$pkgdir"/usr/share/doc/$pkgname/AUTHORS + install -Dm644 README.md \ + "$pkgdir"/usr/share/doc/$pkgname/README.md + install -Dm644 ChangeLog \ + "$pkgdir"/usr/share/doc/$pkgname/ChangeLog + install -Dm644 docs/build/man/libuv.1 \ + "$pkgdir"/usr/share/man/man1/libuv.1 +} + +sha256sums=('f558ede285878d6a69f6a6d43b5df0241f3c35d62ac989477bdbd418badd83d7') Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2015-06-08 12:17:32 UTC (rev 134962) +++ community-x86_64/PKGBUILD 2015-06-08 12:17:58 UTC (rev 134963) @@ -1,45 +0,0 @@ -# $Id$ -# Maintainer: Massimiliano Torromeo - -pkgname=libuv -pkgver=1.6.0 -pkgrel=1 -pkgdesc="Multi-platform support library with a focus on asynchronous I/O" -arch=('i686' 'x86_64') -url="https://github.com/libuv/libuv"; -license=('custom') -depends=('glibc') -makedepends=('python-sphinx') -source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz";) - -build() { - cd "$srcdir"/$pkgname-$pkgver - ./autogen.sh - ./configure --prefix=/usr - make - make man -C docs -} - -check() { - cd "$srcdir"/$pkgname-$pkgver - make check -} - -package() { - cd "$srcdir"/$pkgname-$pkgver - - make DESTDIR="$pkgdir" install - - install -Dm644 LICENSE \ - "$pkgdir"/usr/share/licenses/$pkgname/LICENSE - install -Dm644 AUTHORS \ - "$pkgdir"/usr/share/doc/$pkgname/AUTHORS - install -Dm644 README.md \ - "$pkgdir"/usr/share/doc/$pkgname/README.md - install
[arch-commits] Commit in libuv/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 14:17:32 Author: mtorromeo Revision: 134962 upgpkg: libuv 1.6.1-1 Updated to version 1.6.1 Modified: libuv/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-08 11:02:10 UTC (rev 134961) +++ PKGBUILD2015-06-08 12:17:32 UTC (rev 134962) @@ -2,7 +2,7 @@ # Maintainer: Massimiliano Torromeo pkgname=libuv -pkgver=1.6.0 +pkgver=1.6.1 pkgrel=1 pkgdesc="Multi-platform support library with a focus on asynchronous I/O" arch=('i686' 'x86_64') @@ -42,4 +42,4 @@ "$pkgdir"/usr/share/man/man1/libuv.1 } -sha256sums=('1d60d79b942f5a4e53b7eddd96faccf77257ee5d3ae9865cbe9e719f6e164fea') +sha256sums=('f558ede285878d6a69f6a6d43b5df0241f3c35d62ac989477bdbd418badd83d7')
[arch-commits] Commit in portaudio/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 13:02:10 Author: foutrelis Revision: 134961 Add !makeflags option; fails to build otherwise Modified: portaudio/trunk/PKGBUILD --+ PKGBUILD |1 + 1 file changed, 1 insertion(+) Modified: PKGBUILD === --- PKGBUILD2015-06-08 01:56:14 UTC (rev 134960) +++ PKGBUILD2015-06-08 11:02:10 UTC (rev 134961) @@ -15,6 +15,7 @@ conflicts=('portaudio_cpp') provides=('portaudio_cpp') replaces=('portaudio_cpp') +options=('!makeflags') source=("http://www.portaudio.com/archives/pa_stable_v$pkgver.tgz";) md5sums=('7f220406902af9dca009668e198cbd23')
[arch-commits] Commit in polkit-qt/trunk (PKGBUILD)
Date: Monday, June 8, 2015 @ 10:34:46 Author: foutrelis Revision: 240421 upgpkg: polkit-qt 0.112.0-1 Switch to release tarball because the git snapshot failed md5 checksum. Modified: polkit-qt/trunk/PKGBUILD --+ PKGBUILD | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-07 20:01:56 UTC (rev 240420) +++ PKGBUILD2015-06-08 08:34:46 UTC (rev 240421) @@ -4,28 +4,28 @@ pkgbase=polkit-qt pkgname=('polkit-qt4' 'polkit-qt5') -pkgver=0.112 -pkgrel=2 +pkgver=0.112.0 +pkgrel=1 pkgdesc='A library that allows developers to access PolicyKit API with a nice Qt-style API' arch=('i686' 'x86_64') url='https://projects.kde.org/projects/kdesupport/polkit-qt-1' license=('LGPL') makedepends=('cmake' 'automoc4' 'polkit' 'qt4' 'qt5-base') -source=(${pkgbase}-${pkgver}.tar.bz2::"http://quickgit.kde.org/?p=${pkgbase}-1.git&a=snapshot&h=40afa675bfa4cacd95487ce8b0544654c5f34e21&fmt=tbz2"; +source=("http://download.kde.org/stable/apps/KDE4.x/admin/${pkgbase}-1-${pkgver}.tar.bz2"; 'systembus-usage.patch') -md5sums=('d27343d2918330f4159d851e256c5c6d' +md5sums=('bee71b71c12797e6fc498540a06c829b' '067355984adf2cd87e2fac715bd025f3') prepare() { mkdir build{,-qt5} - cd ${pkgbase}-1 + cd ${pkgbase}-1-${pkgver} patch -p1 -i "${srcdir}"/systembus-usage.patch } build() { cd build - cmake ../${pkgbase}-1 \ + cmake ../${pkgbase}-1-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_DESTINATION=/usr/lib \ @@ -33,7 +33,7 @@ make cd ../build-qt5 - cmake ../${pkgbase}-1 \ + cmake ../${pkgbase}-1-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_DESTINATION=/usr/lib
[arch-commits] Commit in polkit-qt/repos (8 files)
Date: Monday, June 8, 2015 @ 10:34:59 Author: foutrelis Revision: 240422 archrelease: copy trunk to extra-i686, extra-x86_64 Added: polkit-qt/repos/extra-i686/PKGBUILD (from rev 240421, polkit-qt/trunk/PKGBUILD) polkit-qt/repos/extra-i686/systembus-usage.patch (from rev 240421, polkit-qt/trunk/systembus-usage.patch) polkit-qt/repos/extra-x86_64/PKGBUILD (from rev 240421, polkit-qt/trunk/PKGBUILD) polkit-qt/repos/extra-x86_64/systembus-usage.patch (from rev 240421, polkit-qt/trunk/systembus-usage.patch) Deleted: polkit-qt/repos/extra-i686/PKGBUILD polkit-qt/repos/extra-i686/systembus-usage.patch polkit-qt/repos/extra-x86_64/PKGBUILD polkit-qt/repos/extra-x86_64/systembus-usage.patch + /PKGBUILD | 116 + /systembus-usage.patch | 158 +++ extra-i686/PKGBUILD| 58 extra-i686/systembus-usage.patch | 79 - extra-x86_64/PKGBUILD | 58 extra-x86_64/systembus-usage.patch | 79 - 6 files changed, 274 insertions(+), 274 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2015-06-08 08:34:46 UTC (rev 240421) +++ extra-i686/PKGBUILD 2015-06-08 08:34:59 UTC (rev 240422) @@ -1,58 +0,0 @@ -# $Id: PKGBUILD 102633 2010-12-09 08:40:59Z andrea $ -# Maintainer: Andrea Scarpino -# Contributor: Pierre Schmitz - -pkgbase=polkit-qt -pkgname=('polkit-qt4' 'polkit-qt5') -pkgver=0.112 -pkgrel=2 -pkgdesc='A library that allows developers to access PolicyKit API with a nice Qt-style API' -arch=('i686' 'x86_64') -url='https://projects.kde.org/projects/kdesupport/polkit-qt-1' -license=('LGPL') -makedepends=('cmake' 'automoc4' 'polkit' 'qt4' 'qt5-base') -source=(${pkgbase}-${pkgver}.tar.bz2::"http://quickgit.kde.org/?p=${pkgbase}-1.git&a=snapshot&h=40afa675bfa4cacd95487ce8b0544654c5f34e21&fmt=tbz2"; -'systembus-usage.patch') -md5sums=('d27343d2918330f4159d851e256c5c6d' - '067355984adf2cd87e2fac715bd025f3') - -prepare() { - mkdir build{,-qt5} - - cd ${pkgbase}-1 - patch -p1 -i "${srcdir}"/systembus-usage.patch -} - -build() { - cd build - cmake ../${pkgbase}-1 \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_INSTALL_PREFIX=/usr \ --DLIB_DESTINATION=/usr/lib \ --DUSE_QT4=ON - make - - cd ../build-qt5 - cmake ../${pkgbase}-1 \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_INSTALL_PREFIX=/usr \ --DLIB_DESTINATION=/usr/lib - make -} - -package_polkit-qt4() { - depends=('polkit' 'qt4') - replaces=('polkit-qt') - provides=('polkit-qt') - conflicts=('polkit-qt') - - cd build - make DESTDIR="${pkgdir}" install -} - -package_polkit-qt5() { - depends=('polkit' 'qt5-base') - - cd build-qt5 - make DESTDIR="${pkgdir}" install -} Copied: polkit-qt/repos/extra-i686/PKGBUILD (from rev 240421, polkit-qt/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2015-06-08 08:34:59 UTC (rev 240422) @@ -0,0 +1,58 @@ +# $Id: PKGBUILD 102633 2010-12-09 08:40:59Z andrea $ +# Maintainer: Andrea Scarpino +# Contributor: Pierre Schmitz + +pkgbase=polkit-qt +pkgname=('polkit-qt4' 'polkit-qt5') +pkgver=0.112.0 +pkgrel=1 +pkgdesc='A library that allows developers to access PolicyKit API with a nice Qt-style API' +arch=('i686' 'x86_64') +url='https://projects.kde.org/projects/kdesupport/polkit-qt-1' +license=('LGPL') +makedepends=('cmake' 'automoc4' 'polkit' 'qt4' 'qt5-base') +source=("http://download.kde.org/stable/apps/KDE4.x/admin/${pkgbase}-1-${pkgver}.tar.bz2"; +'systembus-usage.patch') +md5sums=('bee71b71c12797e6fc498540a06c829b' + '067355984adf2cd87e2fac715bd025f3') + +prepare() { + mkdir build{,-qt5} + + cd ${pkgbase}-1-${pkgver} + patch -p1 -i "${srcdir}"/systembus-usage.patch +} + +build() { + cd build + cmake ../${pkgbase}-1-${pkgver} \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DLIB_DESTINATION=/usr/lib \ +-DUSE_QT4=ON + make + + cd ../build-qt5 + cmake ../${pkgbase}-1-${pkgver} \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DLIB_DESTINATION=/usr/lib + make +} + +package_polkit-qt4() { + depends=('polkit' 'qt4') + replaces=('polkit-qt') + provides=('polkit-qt') + conflicts=('polkit-qt') + + cd build + make DESTDIR="${pkgdir}" install +} + +package_polkit-qt5() { + depends=('polkit' 'qt5-base') + + cd build-qt5 + make DESTDIR="${pkgdir}" install +} Deleted: extra-i686/systembus-usage.patch === --- extra-i686/systembus-usage.patch2015-06-08 08:34:46 UTC (rev 240421) +++ extra-i686/systembus-usage.patch2015-06-08 08:34:59 UTC (rev 240422) @@ -1,79 +0,0 @@ -commit 88c6e9334c8440721189ef7