[arch-commits] Commit in php/repos (18 files)
Date: Thursday, February 6, 2014 @ 06:39:09 Author: pierre Revision: 205498 archrelease: copy trunk to testing-i686, testing-x86_64 Added: php/repos/testing-i686/ php/repos/testing-i686/PKGBUILD (from rev 205497, php/trunk/PKGBUILD) php/repos/testing-i686/apache.conf (from rev 205497, php/trunk/apache.conf) php/repos/testing-i686/logrotate.d.php-fpm (from rev 205497, php/trunk/logrotate.d.php-fpm) php/repos/testing-i686/php-fpm.conf.in.patch (from rev 205497, php/trunk/php-fpm.conf.in.patch) php/repos/testing-i686/php-fpm.install (from rev 205497, php/trunk/php-fpm.install) php/repos/testing-i686/php-fpm.service (from rev 205497, php/trunk/php-fpm.service) php/repos/testing-i686/php-fpm.tmpfiles (from rev 205497, php/trunk/php-fpm.tmpfiles) php/repos/testing-i686/php.ini.patch (from rev 205497, php/trunk/php.ini.patch) php/repos/testing-x86_64/ php/repos/testing-x86_64/PKGBUILD (from rev 205497, php/trunk/PKGBUILD) php/repos/testing-x86_64/apache.conf (from rev 205497, php/trunk/apache.conf) php/repos/testing-x86_64/logrotate.d.php-fpm (from rev 205497, php/trunk/logrotate.d.php-fpm) php/repos/testing-x86_64/php-fpm.conf.in.patch (from rev 205497, php/trunk/php-fpm.conf.in.patch) php/repos/testing-x86_64/php-fpm.install (from rev 205497, php/trunk/php-fpm.install) php/repos/testing-x86_64/php-fpm.service (from rev 205497, php/trunk/php-fpm.service) php/repos/testing-x86_64/php-fpm.tmpfiles (from rev 205497, php/trunk/php-fpm.tmpfiles) php/repos/testing-x86_64/php.ini.patch (from rev 205497, php/trunk/php.ini.patch) --+ testing-i686/PKGBUILD| 353 + testing-i686/apache.conf | 13 + testing-i686/logrotate.d.php-fpm |8 testing-i686/php-fpm.conf.in.patch | 52 testing-i686/php-fpm.install |9 testing-i686/php-fpm.service | 13 + testing-i686/php-fpm.tmpfiles|1 testing-i686/php.ini.patch | 122 +++ testing-x86_64/PKGBUILD | 353 + testing-x86_64/apache.conf | 13 + testing-x86_64/logrotate.d.php-fpm |8 testing-x86_64/php-fpm.conf.in.patch | 52 testing-x86_64/php-fpm.install |9 testing-x86_64/php-fpm.service | 13 + testing-x86_64/php-fpm.tmpfiles |1 testing-x86_64/php.ini.patch | 122 +++ 16 files changed, 1142 insertions(+) Copied: php/repos/testing-i686/PKGBUILD (from rev 205497, php/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2014-02-06 05:39:09 UTC (rev 205498) @@ -0,0 +1,353 @@ +# $Id$ +# Maintainer: Pierre Schmitz + +pkgbase=php +pkgname=('php' + 'php-cgi' + 'php-apache' + 'php-fpm' + 'php-embed' + 'php-pear' + 'php-enchant' + 'php-gd' + 'php-intl' + 'php-ldap' + 'php-mcrypt' + 'php-mssql' + 'php-odbc' + 'php-pgsql' + 'php-pspell' + 'php-snmp' + 'php-sqlite' + 'php-tidy' + 'php-xsl') +pkgver=5.5.9 +pkgrel=1 +arch=('i686' 'x86_64') +license=('PHP') +url='http://www.php.net' +makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix' 'libvpx' + 'sqlite' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 'freetds' + 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu' + 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2' 'systemd') +source=("http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.gz"; +"http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.gz.asc"; +'php.ini.patch' 'apache.conf' 'php-fpm.conf.in.patch' +'logrotate.d.php-fpm' 'php-fpm.service' 'php-fpm.tmpfiles') +md5sums=('c018461604db38af48d1ca304cb592c6' + 'SKIP' + '799cd5f91f5253f4b47ec4fd7fccf4f1' + 'dec2cbaad64e3abf4f0ec70e1de4e8e9' + '9f8263996836e27f5be1483e86ac2e33' + 'e036c721e5ad927cd1613c7475a58b3a' + 'cc2940f5312ba42e7aa1ddfab74b84c4' + 'c60343df74f8e1afb13b084d5c0e47ed') + +prepare() { + cd ${srcdir}/${pkgbase}-${pkgver} + + patch -p0 -i ${srcdir}/php.ini.patch + patch -p0 -i ${srcdir}/php-fpm.conf.in.patch +} + +build() { + local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \ + --config-cache \ + --prefix=/usr \ + --sbindir=/usr/bin \ + --sysconfdir=/etc/php \ + --localstatedir=/var \ + --with-layout=GNU \ + --with-config-file-path=/etc/php \ + --with-config-file-scan-dir=/etc/php/conf.d \ + --disable-rpath \ + --mandir=/usr/share/man \ +
[arch-commits] Commit in php/trunk (PKGBUILD)
Date: Thursday, February 6, 2014 @ 06:38:47 Author: pierre Revision: 205497 upgpkg: php 5.5.9-1 Modified: php/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-06 05:24:35 UTC (rev 205496) +++ PKGBUILD2014-02-06 05:38:47 UTC (rev 205497) @@ -21,7 +21,7 @@ 'php-sqlite' 'php-tidy' 'php-xsl') -pkgver=5.5.8 +pkgver=5.5.9 pkgrel=1 arch=('i686' 'x86_64') license=('PHP') @@ -34,7 +34,7 @@ "http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.gz.asc"; 'php.ini.patch' 'apache.conf' 'php-fpm.conf.in.patch' 'logrotate.d.php-fpm' 'php-fpm.service' 'php-fpm.tmpfiles') -md5sums=('1ed2b0193ecaca8b980a9b6a90357f1c' +md5sums=('c018461604db38af48d1ca304cb592c6' 'SKIP' '799cd5f91f5253f4b47ec4fd7fccf4f1' 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
[arch-commits] Commit in openssh/repos (32 files)
Date: Thursday, February 6, 2014 @ 06:24:35 Author: bisson Revision: 205496 db-move: moved openssh from [testing] to [core] (i686, x86_64) Added: openssh/repos/core-i686/PKGBUILD (from rev 205495, openssh/repos/testing-i686/PKGBUILD) openssh/repos/core-i686/install (from rev 205495, openssh/repos/testing-i686/install) openssh/repos/core-i686/lowercase.patch (from rev 205495, openssh/repos/testing-i686/lowercase.patch) openssh/repos/core-i686/sshd.pam (from rev 205495, openssh/repos/testing-i686/sshd.pam) openssh/repos/core-i686/sshd.service (from rev 205495, openssh/repos/testing-i686/sshd.service) openssh/repos/core-i686/sshd.socket (from rev 205495, openssh/repos/testing-i686/sshd.socket) openssh/repos/core-i686/sshd@.service (from rev 205495, openssh/repos/testing-i686/sshd@.service) openssh/repos/core-i686/sshdgenkeys.service (from rev 205495, openssh/repos/testing-i686/sshdgenkeys.service) openssh/repos/core-x86_64/PKGBUILD (from rev 205495, openssh/repos/testing-x86_64/PKGBUILD) openssh/repos/core-x86_64/install (from rev 205495, openssh/repos/testing-x86_64/install) openssh/repos/core-x86_64/lowercase.patch (from rev 205495, openssh/repos/testing-x86_64/lowercase.patch) openssh/repos/core-x86_64/sshd.pam (from rev 205495, openssh/repos/testing-x86_64/sshd.pam) openssh/repos/core-x86_64/sshd.service (from rev 205495, openssh/repos/testing-x86_64/sshd.service) openssh/repos/core-x86_64/sshd.socket (from rev 205495, openssh/repos/testing-x86_64/sshd.socket) openssh/repos/core-x86_64/sshd@.service (from rev 205495, openssh/repos/testing-x86_64/sshd@.service) openssh/repos/core-x86_64/sshdgenkeys.service (from rev 205495, openssh/repos/testing-x86_64/sshdgenkeys.service) Deleted: openssh/repos/core-i686/PKGBUILD openssh/repos/core-i686/install openssh/repos/core-i686/sshd.pam openssh/repos/core-i686/sshd.service openssh/repos/core-i686/sshd.socket openssh/repos/core-i686/sshd@.service openssh/repos/core-i686/sshdgenkeys.service openssh/repos/core-x86_64/PKGBUILD openssh/repos/core-x86_64/install openssh/repos/core-x86_64/sshd.pam openssh/repos/core-x86_64/sshd.service openssh/repos/core-x86_64/sshd.socket openssh/repos/core-x86_64/sshd@.service openssh/repos/core-x86_64/sshdgenkeys.service openssh/repos/testing-i686/ openssh/repos/testing-x86_64/ -+ /PKGBUILD | 190 ++ /install| 20 /sshd.pam | 12 ++ /sshd.service | 34 ++ /sshd.socket| 20 /sshd@.service | 16 +++ /sshdgenkeys.service| 34 ++ core-i686/PKGBUILD | 88 - core-i686/install | 10 -- core-i686/lowercase.patch | 32 ++ core-i686/sshd.pam |6 - core-i686/sshd.service | 17 --- core-i686/sshd.socket | 10 -- core-i686/sshd@.service |8 - core-i686/sshdgenkeys.service | 17 --- core-x86_64/PKGBUILD| 88 - core-x86_64/install | 10 -- core-x86_64/lowercase.patch | 32 ++ core-x86_64/sshd.pam|6 - core-x86_64/sshd.service| 17 --- core-x86_64/sshd.socket | 10 -- core-x86_64/sshd@.service |8 - core-x86_64/sshdgenkeys.service | 17 --- 23 files changed, 390 insertions(+), 312 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2014-02-06 05:24:02 UTC (rev 205495) +++ core-i686/PKGBUILD 2014-02-06 05:24:35 UTC (rev 205496) @@ -1,88 +0,0 @@ -# $Id$ -# Maintainer: Gaetan Bisson -# Contributor: Aaron Griffin -# Contributor: judd - -pkgname=openssh -pkgver=6.5p1 -pkgrel=1 -pkgdesc='Free version of the SSH connectivity tools' -url='http://www.openssh.org/portable.html' -license=('custom:BSD') -arch=('i686' 'x86_64') -makedepends=('linux-headers') -depends=('krb5' 'openssl' 'libedit' 'ldns') -optdepends=('xorg-xauth: X11 forwarding' -'x11-ssh-askpass: input passphrase in X') -source=("ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc} -'sshdgenkeys.service' -'sshd@.service' -'sshd.service' -'sshd.socket' -'sshd.pam') -sha1sums=('3363a72b4fee91b29cf2024ff633c17f6cd2f86d' 'SKIP' - 'cc1ceec606c98c7407e7ac21ade23aed81e31405' - '6a0ff3305692cf83aca96e10f3bb51e1c26fccda' - 'ec49c6beba923e201505f5669cea48cad29014db' - 'e12fa910b26a5634e5a6ac39ce1399a132cf6796' - 'd93dca5ebda4610ff7647187f8928a3de28703f3') - -backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd') - -install=install - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./confi
[arch-commits] Commit in mate-netspeed/repos (10 files)
Date: Thursday, February 6, 2014 @ 06:24:15 Author: bisson Revision: 105369 db-move: moved mate-netspeed from [community-testing] to [community] (i686, x86_64) Added: mate-netspeed/repos/community-i686/PKGBUILD (from rev 105365, mate-netspeed/repos/community-testing-i686/PKGBUILD) mate-netspeed/repos/community-i686/mate-netspeed.install (from rev 105365, mate-netspeed/repos/community-testing-i686/mate-netspeed.install) mate-netspeed/repos/community-x86_64/PKGBUILD (from rev 105365, mate-netspeed/repos/community-testing-x86_64/PKGBUILD) mate-netspeed/repos/community-x86_64/mate-netspeed.install (from rev 105365, mate-netspeed/repos/community-testing-x86_64/mate-netspeed.install) Deleted: mate-netspeed/repos/community-i686/PKGBUILD mate-netspeed/repos/community-i686/mate-netspeed.install mate-netspeed/repos/community-testing-i686/ mate-netspeed/repos/community-testing-x86_64/ mate-netspeed/repos/community-x86_64/PKGBUILD mate-netspeed/repos/community-x86_64/mate-netspeed.install + /PKGBUILD | 64 +++ /mate-netspeed.install | 24 +++ community-i686/PKGBUILD| 34 community-i686/mate-netspeed.install | 12 - community-x86_64/PKGBUILD | 34 community-x86_64/mate-netspeed.install | 12 - 6 files changed, 88 insertions(+), 92 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-06 05:24:14 UTC (rev 105368) +++ community-i686/PKGBUILD 2014-02-06 05:24:15 UTC (rev 105369) @@ -1,34 +0,0 @@ -# $Id$ -# Maintainer : Martin Wimpress -# Contributor: Giovanni "Talorno" Ricciardi -# Contributor: Xpander - -pkgname=mate-netspeed -pkgver=1.6.1 -pkgrel=1 -pkgdesc="A MATE applet that shows how much traffic occurs on a specified network device." -url="http://mate-desktop.org"; -arch=('i686' 'x86_64') -license=('GPL') -depends=('gtk2' 'libgtop' 'mate-panel' 'wireless_tools') -makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser') -options=('!emptydirs') -groups=('mate-extra') -source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz";) -sha1sums=('4b9c8b7f7ff59ef8ad989821fe360f5f459c66ed') -install=${pkgname}.install - -build() { -cd "${srcdir}/${pkgname}-${pkgver}" -./configure \ ---prefix=/usr \ ---libexecdir=/usr/lib/${pkgname} \ ---disable-static \ ---disable-scrollkeeper -make -} - -package() { -cd "${srcdir}/${pkgname}-${pkgver}" -make DESTDIR="${pkgdir}" install -} Copied: mate-netspeed/repos/community-i686/PKGBUILD (from rev 105365, mate-netspeed/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-06 05:24:15 UTC (rev 105369) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer : Martin Wimpress + +pkgname=mate-netspeed +pkgver=1.6.1 +pkgrel=2 +pkgdesc="A MATE applet that shows how much traffic occurs on a specified network device." +url="http://mate-desktop.org"; +arch=('i686' 'x86_64') +license=('GPL') +depends=('gtk2' 'libgtop' 'mate-panel' 'wireless_tools') +makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser') +options=('!emptydirs') +groups=('mate-extra') +source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz";) +sha1sums=('4b9c8b7f7ff59ef8ad989821fe360f5f459c66ed') +install=${pkgname}.install + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" +./configure \ +--prefix=/usr \ +--libexecdir=/usr/lib/${pkgname} \ +--disable-static \ +--disable-scrollkeeper +make +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" +make DESTDIR="${pkgdir}" install +} Deleted: community-i686/mate-netspeed.install === --- community-i686/mate-netspeed.install2014-02-06 05:24:14 UTC (rev 105368) +++ community-i686/mate-netspeed.install2014-02-06 05:24:15 UTC (rev 105369) @@ -1,12 +0,0 @@ -post_install() { -glib-compile-schemas /usr/share/glib-2.0/schemas/ -gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor -} - -post_upgrade() { -post_install -} - -post_remove() { -post_install -} Copied: mate-netspeed/repos/community-i686/mate-netspeed.install (from rev 105365, mate-netspeed/repos/community-testing-i686/mate-netspeed.install) === --- community-i686/mate-netspeed.install(rev 0) +++ community-i686/mate-netspeed.install2014-02-06 05:24:15 UTC (rev 105369) @@ -0,0 +1,12 @@ +post_install() { +glib-compile-schemas /usr/share/glib-2.0/schemas/ +gtk-update-icon-ca
[arch-commits] Commit in i3status/repos (10 files)
Date: Thursday, February 6, 2014 @ 06:24:12 Author: bisson Revision: 105366 db-move: moved i3status from [community-testing] to [community] (i686, x86_64) Added: i3status/repos/community-i686/PKGBUILD (from rev 105365, i3status/repos/community-testing-i686/PKGBUILD) i3status/repos/community-i686/i3status.install (from rev 105365, i3status/repos/community-testing-i686/i3status.install) i3status/repos/community-x86_64/PKGBUILD (from rev 105365, i3status/repos/community-testing-x86_64/PKGBUILD) i3status/repos/community-x86_64/i3status.install (from rev 105365, i3status/repos/community-testing-x86_64/i3status.install) Deleted: i3status/repos/community-i686/PKGBUILD i3status/repos/community-i686/i3status.install i3status/repos/community-testing-i686/ i3status/repos/community-testing-x86_64/ i3status/repos/community-x86_64/PKGBUILD i3status/repos/community-x86_64/i3status.install ---+ /PKGBUILD | 76 /i3status.install | 18 community-i686/PKGBUILD | 38 -- community-i686/i3status.install |9 community-x86_64/PKGBUILD | 38 -- community-x86_64/i3status.install |9 6 files changed, 94 insertions(+), 94 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-06 03:30:56 UTC (rev 105365) +++ community-i686/PKGBUILD 2014-02-06 05:24:12 UTC (rev 105366) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Thorsten Töpper - -pkgname=i3status -pkgver=2.8 -pkgrel=1 -pkgdesc='Generates status bar to use with i3bar, dzen2 or xmobar' -arch=('i686' 'x86_64') -url='http://i3.zekjur.net/i3status/' -license=('BSD') -groups=('i3') -depends=('wireless_tools' 'confuse' 'alsa-lib' 'yajl') -makedepends=('asciidoc') -backup=('etc/i3status.conf') -install=i3status.install -options=('docs') -source=("http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2"; -"http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2.asc";) -md5sums=('68d944e9c1f48183356c9ea15b5b4e3b' - 'SKIP') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="$pkgdir" install - install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE - - make clean -} - -# vim:set ts=2 sw=2 et: - Copied: i3status/repos/community-i686/PKGBUILD (from rev 105365, i3status/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-06 05:24:12 UTC (rev 105366) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Thorsten Töpper + +pkgname=i3status +pkgver=2.8 +pkgrel=2 +pkgdesc='Generates status bar to use with i3bar, dzen2 or xmobar' +arch=('i686' 'x86_64') +url='http://i3.zekjur.net/i3status/' +license=('BSD') +groups=('i3') +depends=('wireless_tools' 'confuse' 'alsa-lib' 'yajl') +makedepends=('asciidoc') +backup=('etc/i3status.conf') +install=i3status.install +options=('docs') +source=("http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2"; +"http://i3.zekjur.net/i3status/$pkgname-$pkgver.tar.bz2.asc";) +md5sums=('68d944e9c1f48183356c9ea15b5b4e3b' + 'SKIP') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="$pkgdir" install + install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE + + make clean +} + +# vim:set ts=2 sw=2 et: + Deleted: community-i686/i3status.install === --- community-i686/i3status.install 2014-02-06 03:30:56 UTC (rev 105365) +++ community-i686/i3status.install 2014-02-06 05:24:12 UTC (rev 105366) @@ -1,9 +0,0 @@ -post_install() { - setcap 'CAP_NET_ADMIN=ep' /usr/bin/i3status -} - -post_upgrade() { - post_install $1 -} - -# vim:set ts=2 sw=2 et: Copied: i3status/repos/community-i686/i3status.install (from rev 105365, i3status/repos/community-testing-i686/i3status.install) === --- community-i686/i3status.install (rev 0) +++ community-i686/i3status.install 2014-02-06 05:24:12 UTC (rev 105366) @@ -0,0 +1,9 @@ +post_install() { + setcap 'CAP_NET_ADMIN=ep' /usr/bin/i3status +} + +post_upgrade() { + post_install $1 +} + +# vim:set ts=2 sw=2 et: Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2014-02-06 03:30:56 UTC (rev 105365) +++ community-x86_64/PKGBUILD 2014-02-06 05:24:12 UTC (rev 105366) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Thorsten Töpper - -pkgname=i3status -pkgver=2.8 -pkgrel=1 -pkgdesc='Generates
[arch-commits] Commit in python-iwscan/repos (6 files)
Date: Thursday, February 6, 2014 @ 06:24:02 Author: bisson Revision: 205495 db-move: moved python-iwscan from [testing] to [extra] (i686, x86_64) Added: python-iwscan/repos/extra-i686/PKGBUILD (from rev 205493, python-iwscan/repos/testing-i686/PKGBUILD) python-iwscan/repos/extra-x86_64/PKGBUILD (from rev 205493, python-iwscan/repos/testing-x86_64/PKGBUILD) Deleted: python-iwscan/repos/extra-i686/PKGBUILD python-iwscan/repos/extra-x86_64/PKGBUILD python-iwscan/repos/testing-i686/ python-iwscan/repos/testing-x86_64/ ---+ /PKGBUILD | 62 extra-i686/PKGBUILD | 26 extra-x86_64/PKGBUILD | 26 3 files changed, 62 insertions(+), 52 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-06 05:24:01 UTC (rev 205494) +++ extra-i686/PKGBUILD 2014-02-06 05:24:02 UTC (rev 205495) @@ -1,26 +0,0 @@ -# $Id$ -# Maintainer: Daniel Isenmann - -pkgbase=python-iwscan -pkgname=python2-iwscan -pkgver=20090609 -pkgrel=4 -pkgdesc="A Python interface to iwlist, using the iwlib library" -arch=('i686' 'x86_64') -url="http://projects.otaku42.de/browser/python-iwscan"; -license=('LGPL') -depends=('python2' 'wireless_tools') -conflicts=('python-iwscan<=20090609-3') -replaces=('python-iwscan<=20090609-3') -source=(ftp://ftp.archlinux.org/other/${pkgbase}/${pkgbase}-20090609.tar.gz) -md5sums=('30fbe8ad3b07e67c1c35db2de16077d8') - -build() { - cd "${srcdir}/${pkgbase}" - python2 setup.py build -} - -package_python2-iwscan() { - cd "${srcdir}/${pkgbase}" - python2 setup.py install --root="${pkgdir}" -} Copied: python-iwscan/repos/extra-i686/PKGBUILD (from rev 205493, python-iwscan/repos/testing-i686/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-02-06 05:24:02 UTC (rev 205495) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Daniel Isenmann + +pkgbase=python-iwscan +pkgname=python2-iwscan +pkgver=20090609 +pkgrel=5 +pkgdesc="A Python interface to iwlist, using the iwlib library" +arch=('i686' 'x86_64') +url="http://projects.otaku42.de/browser/python-iwscan"; +license=('LGPL') +depends=('python2' 'wireless_tools') +conflicts=('python-iwscan<=20090609-3') +replaces=('python-iwscan<=20090609-3') +source=(ftp://ftp.archlinux.org/other/${pkgbase}/${pkgbase}-20090609.tar.gz) +md5sums=('30fbe8ad3b07e67c1c35db2de16077d8') + +prepare() { + cd ${pkgbase} + sed -i 's|PROC_NET_WIRELESS|"/proc/net/wireless"|' pyiwscan.c +} + +build() { + cd ${pkgbase} + python2 setup.py build +} + +package_python2-iwscan() { + cd ${pkgbase} + python2 setup.py install --root="${pkgdir}" +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2014-02-06 05:24:01 UTC (rev 205494) +++ extra-x86_64/PKGBUILD 2014-02-06 05:24:02 UTC (rev 205495) @@ -1,26 +0,0 @@ -# $Id$ -# Maintainer: Daniel Isenmann - -pkgbase=python-iwscan -pkgname=python2-iwscan -pkgver=20090609 -pkgrel=4 -pkgdesc="A Python interface to iwlist, using the iwlib library" -arch=('i686' 'x86_64') -url="http://projects.otaku42.de/browser/python-iwscan"; -license=('LGPL') -depends=('python2' 'wireless_tools') -conflicts=('python-iwscan<=20090609-3') -replaces=('python-iwscan<=20090609-3') -source=(ftp://ftp.archlinux.org/other/${pkgbase}/${pkgbase}-20090609.tar.gz) -md5sums=('30fbe8ad3b07e67c1c35db2de16077d8') - -build() { - cd "${srcdir}/${pkgbase}" - python2 setup.py build -} - -package_python2-iwscan() { - cd "${srcdir}/${pkgbase}" - python2 setup.py install --root="${pkgdir}" -} Copied: python-iwscan/repos/extra-x86_64/PKGBUILD (from rev 205493, python-iwscan/repos/testing-x86_64/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2014-02-06 05:24:02 UTC (rev 205495) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Daniel Isenmann + +pkgbase=python-iwscan +pkgname=python2-iwscan +pkgver=20090609 +pkgrel=5 +pkgdesc="A Python interface to iwlist, using the iwlib library" +arch=('i686' 'x86_64') +url="http://projects.otaku42.de/browser/python-iwscan"; +license=('LGPL') +depends=('python2' 'wireless_tools') +conflicts=('python-iwscan<=20090609-3') +replaces=('python-iwscan<=20090609-3') +source=(ftp://ftp.archlinux.org/other/${pkgbase}/${pkgbase}-20090609.tar.gz) +md5sums=('30fbe8ad3b07e67c1c35db2de16077d8') + +prepare() { + cd ${pkgbase} + sed -i 's|PROC_NET_WIRELESS|"/proc/net/wireless"|' pyiwscan.c +} + +build() { + cd ${pkgbase} + python2 setup.py build +} + +package_python2-iwscan() { + cd ${pkgbase} + python2 setup.py install --root="${pk
[arch-commits] Commit in xmobar/repos (10 files)
Date: Thursday, February 6, 2014 @ 06:24:17 Author: bisson Revision: 105371 db-move: moved xmobar from [community-testing] to [community] (i686, x86_64) Added: xmobar/repos/community-i686/PKGBUILD (from rev 105365, xmobar/repos/community-testing-i686/PKGBUILD) xmobar/repos/community-i686/xmobar-0.15-haskell-mtl.patch (from rev 105365, xmobar/repos/community-testing-i686/xmobar-0.15-haskell-mtl.patch) xmobar/repos/community-x86_64/PKGBUILD (from rev 105365, xmobar/repos/community-testing-x86_64/PKGBUILD) xmobar/repos/community-x86_64/xmobar-0.15-haskell-mtl.patch (from rev 105365, xmobar/repos/community-testing-x86_64/xmobar-0.15-haskell-mtl.patch) Deleted: xmobar/repos/community-i686/PKGBUILD xmobar/repos/community-i686/xmobar-0.15-haskell-mtl.patch xmobar/repos/community-testing-i686/ xmobar/repos/community-testing-x86_64/ xmobar/repos/community-x86_64/PKGBUILD xmobar/repos/community-x86_64/xmobar-0.15-haskell-mtl.patch + /PKGBUILD | 62 +++ /xmobar-0.15-haskell-mtl.patch | 24 community-i686/PKGBUILD| 31 --- community-i686/xmobar-0.15-haskell-mtl.patch | 12 community-x86_64/PKGBUILD | 31 --- community-x86_64/xmobar-0.15-haskell-mtl.patch | 12 6 files changed, 86 insertions(+), 86 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-06 05:24:16 UTC (rev 105370) +++ community-i686/PKGBUILD 2014-02-06 05:24:17 UTC (rev 105371) @@ -1,31 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: Arch Haskell Team - -pkgname=xmobar -pkgver=0.19 -pkgrel=1 -pkgdesc="A Minimalistic Text Based Status Bar" -url="http://hackage.haskell.org/package/xmobar"; -license=('custom:BSD3') -arch=('i686' 'x86_64') -depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr') -makedepends=('ghc=7.6.3-1' 'haskell-x11=1.6.1.1-3' 'haskell-x11-xft=0.3.1-9' 'haskell-utf8-string=0.3.7-5' -'haskell-stm=2.4.2-2' 'haskell-parsec=3.1.3-3' 'haskell-mtl=2.1.2-3' 'haskell-regex-base' 'haskell-regex-compat') -options=('strip') -source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz) - -build() { -cd ${srcdir}/xmobar-$pkgver - -runhaskell Setup configure --disable-optimization --prefix=/usr --flags="with_utf8 with_xft with_iwlib" -runhaskell Setup build -} - -package() { -cd ${srcdir}/xmobar-$pkgver -runhaskell Setup copy --destdir=${pkgdir} -install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE -} - -md5sums=('1c5b6ac7e7afe837b79c10ae4e8b8e4d') Copied: xmobar/repos/community-i686/PKGBUILD (from rev 105365, xmobar/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-06 05:24:17 UTC (rev 105371) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: Arch Haskell Team + +pkgname=xmobar +pkgver=0.19 +pkgrel=2 +pkgdesc="A Minimalistic Text Based Status Bar" +url="http://hackage.haskell.org/package/xmobar"; +license=('custom:BSD3') +arch=('i686' 'x86_64') +depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr') +makedepends=('ghc=7.6.3-1' 'haskell-x11=1.6.1.1-3' 'haskell-x11-xft=0.3.1-9' 'haskell-utf8-string=0.3.7-5' +'haskell-stm=2.4.2-2' 'haskell-parsec=3.1.3-3' 'haskell-mtl=2.1.2-3' 'haskell-regex-base' 'haskell-regex-compat') +options=('strip') +source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz) + +build() { +cd ${srcdir}/xmobar-$pkgver + +runhaskell Setup configure --disable-optimization --prefix=/usr --flags="with_utf8 with_xft with_iwlib" +runhaskell Setup build +} + +package() { +cd ${srcdir}/xmobar-$pkgver +runhaskell Setup copy --destdir=${pkgdir} +install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE +} + +md5sums=('1c5b6ac7e7afe837b79c10ae4e8b8e4d') Deleted: community-i686/xmobar-0.15-haskell-mtl.patch === --- community-i686/xmobar-0.15-haskell-mtl.patch2014-02-06 05:24:16 UTC (rev 105370) +++ community-i686/xmobar-0.15-haskell-mtl.patch2014-02-06 05:24:17 UTC (rev 105371) @@ -1,12 +0,0 @@ -diff -aur xmobar-0.15.old/xmobar.cabal xmobar-0.15/xmobar.cabal xmobar-0.15.old/xmobar.cabal 2012-06-11 17:04:21.422444926 + -+++ xmobar-0.15/xmobar.cabal 2012-06-11 17:05:16.772001865 + -@@ -112,7 +112,7 @@ - time, - filepath, - X11 == 1.6.*, -- mtl == 2.0.*, -+ mtl >= 2.0 && <2.2, - parsec == 3.1.*, - stm == 2.3.* - Copied: xmobar/repos/community-i686/xmobar
[arch-commits] Commit in knemo/repos (10 files)
Date: Thursday, February 6, 2014 @ 06:24:13 Author: bisson Revision: 105367 db-move: moved knemo from [community-testing] to [community] (i686, x86_64) Added: knemo/repos/community-i686/PKGBUILD (from rev 105365, knemo/repos/community-testing-i686/PKGBUILD) knemo/repos/community-i686/knemo.install (from rev 105365, knemo/repos/community-testing-i686/knemo.install) knemo/repos/community-x86_64/PKGBUILD (from rev 105365, knemo/repos/community-testing-x86_64/PKGBUILD) knemo/repos/community-x86_64/knemo.install (from rev 105365, knemo/repos/community-testing-x86_64/knemo.install) Deleted: knemo/repos/community-i686/PKGBUILD knemo/repos/community-i686/knemo.install knemo/repos/community-testing-i686/ knemo/repos/community-testing-x86_64/ knemo/repos/community-x86_64/PKGBUILD knemo/repos/community-x86_64/knemo.install + /PKGBUILD | 82 +++ /knemo.install | 22 ++ community-i686/PKGBUILD| 40 --- community-i686/knemo.install | 11 - community-x86_64/PKGBUILD | 40 --- community-x86_64/knemo.install | 11 - 6 files changed, 104 insertions(+), 102 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-06 05:24:12 UTC (rev 105366) +++ community-i686/PKGBUILD 2014-02-06 05:24:13 UTC (rev 105367) @@ -1,40 +0,0 @@ -# $Id$ -# Maintainer: Laurent Carlier -# Contributor: Andrea Scarpino -# Contributor: Sergej Pupykin -# Contributor: Stefano Zamprogno - -pkgname=knemo -pkgver=0.7.6 -pkgrel=3 -pkgdesc="The KDE Network Monitor" -arch=('i686' 'x86_64') -url="http://www.kde-apps.org/content/show.php?content=12956"; -license=('GPL') -depends=('kdebase-workspace' 'wireless_tools' 'iw' 'libnl' 'gtk-update-icon-cache') -makedepends=('cmake' 'automoc4') -install=${pkgname}.install -options=('libtool') -source=("http://www.kde-apps.org/CONTENT/content-files/12956-${pkgname}-${pkgver}.tar.bz2";) -md5sums=('42b35d4d48698a2f514adeb2ca872408') - -build() { - cd ${srcdir} - - mkdir build - cd build - cmake ../${pkgname}-${pkgver} \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_SKIP_RPATH=ON \ --DCMAKE_INSTALL_PREFIX=/usr - make -} - -package() { - cd ${srcdir}/build - - make DESTDIR=${pkgdir} install - - # remove knemo autostart - # rm -rf ${pkgdir}/usr/share/autostart -} Copied: knemo/repos/community-i686/PKGBUILD (from rev 105365, knemo/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-06 05:24:13 UTC (rev 105367) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: Laurent Carlier +# Contributor: Andrea Scarpino +# Contributor: Sergej Pupykin +# Contributor: Stefano Zamprogno + +pkgname=knemo +pkgver=0.7.6 +pkgrel=4 +pkgdesc="The KDE Network Monitor" +arch=('i686' 'x86_64') +url="http://www.kde-apps.org/content/show.php?content=12956"; +license=('GPL') +depends=('kdebase-workspace' 'wireless_tools' 'iw' 'libnl' 'gtk-update-icon-cache') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +options=('libtool') +source=(https://launchpad.net/ubuntu/+archive/primary/+files/knemo_$pkgver.orig.tar.bz2) +md5sums=('42b35d4d48698a2f514adeb2ca872408') + +prepare() { + mkdir build +} + +build() { + cd build + + cmake ../${pkgname}-${pkgver} \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_SKIP_RPATH=ON \ +-DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install + + # remove knemo autostart + # rm -rf ${pkgdir}/usr/share/autostart +} Deleted: community-i686/knemo.install === --- community-i686/knemo.install2014-02-06 05:24:12 UTC (rev 105366) +++ community-i686/knemo.install2014-02-06 05:24:13 UTC (rev 105367) @@ -1,11 +0,0 @@ -post_install() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor -} - -post_upgrade() { - post_install -} - -post_remove() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor -} Copied: knemo/repos/community-i686/knemo.install (from rev 105365, knemo/repos/community-testing-i686/knemo.install) === --- community-i686/knemo.install(rev 0) +++ community-i686/knemo.install2014-02-06 05:24:13 UTC (rev 105367) @@ -0,0 +1,11 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2014-02-06 0
[arch-commits] Commit in mate-system-tools/repos (10 files)
Date: Thursday, February 6, 2014 @ 06:24:16 Author: bisson Revision: 105370 db-move: moved mate-system-tools from [community-testing] to [community] (i686, x86_64) Added: mate-system-tools/repos/community-i686/PKGBUILD (from rev 105365, mate-system-tools/repos/community-testing-i686/PKGBUILD) mate-system-tools/repos/community-i686/mate-system-tools.install (from rev 105365, mate-system-tools/repos/community-testing-i686/mate-system-tools.install) mate-system-tools/repos/community-x86_64/PKGBUILD (from rev 105365, mate-system-tools/repos/community-testing-x86_64/PKGBUILD) mate-system-tools/repos/community-x86_64/mate-system-tools.install (from rev 105365, mate-system-tools/repos/community-testing-x86_64/mate-system-tools.install) Deleted: mate-system-tools/repos/community-i686/PKGBUILD mate-system-tools/repos/community-i686/mate-system-tools.install mate-system-tools/repos/community-testing-i686/ mate-system-tools/repos/community-testing-x86_64/ mate-system-tools/repos/community-x86_64/PKGBUILD mate-system-tools/repos/community-x86_64/mate-system-tools.install + /PKGBUILD | 90 +++ /mate-system-tools.install | 24 +++ community-i686/PKGBUILD| 49 -- community-i686/mate-system-tools.install | 12 --- community-x86_64/PKGBUILD | 49 -- community-x86_64/mate-system-tools.install | 12 --- 6 files changed, 114 insertions(+), 122 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-06 05:24:15 UTC (rev 105369) +++ community-i686/PKGBUILD 2014-02-06 05:24:16 UTC (rev 105370) @@ -1,49 +0,0 @@ -# $Id$ -# Maintainer : Martin Wimpress -# Contributor: Giovanni "Talorno" Ricciardi - -pkgname=mate-system-tools -pkgver=1.6.0 -pkgrel=8 -pkgdesc="Suite of tools for MATE to simplify configuring workstations." -url="http://mate-desktop.org/"; -arch=('i686' 'x86_64') -license=('GPL') -depends=('dconf' 'gtk2' 'liboobs' 'mate-polkit' 'system-tools-backends' - 'wireless_tools') -makedepends=('mate-common' 'mate-doc-utils' 'mate-file-manager' 'perl-xml-parser') -optdepends=('ntp: Automatic time synchronisation.' -'mate-file-manager: provides Caja Shares extension') -groups=('mate-extra') -source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz";) -sha1sums=('89d53c22171f6181ad4fb89387d4fa3300bb27b2') -install=${pkgname}.install - -prepare() { -cd "${srcdir}/${pkgname}-${pkgver}" -# Modify the groups for Arch -# - https://wiki.archlinux.org/index.php/Users_and_Groups -# - https://wiki.archlinux.org/index.php/Systemd#Supplementary_information -# - https://bbs.archlinux.org/viewtopic.php?pid=1183332 -# Desktop user -sed -i 's/cdrom,floppy,dialout,tape,dip,adm,plugdev,fax,audio,scanner,fuse,video/adm,log,sys,users,uucp/' src/users/user-profiles.conf.in - -# Administrator -sed -i 's/cdrom,floppy,dialout,tape,dip,adm,plugdev,fax,audio,scanner,fuse,admin,sambashare,lpadmin,video/adm,disk,locate,log,sys,users,uucp,wheel/' src/users/user-profiles.conf.in -} - -build() { -cd "${srcdir}/${pkgname}-${pkgver}" -./autogen.sh \ ---prefix=/usr \ ---sysconfdir=/etc \ ---disable-scrollkeeper \ -LIBS="-lm" # Required for MATE 1.6 but can be removed in MATE 1.7/1.8 -make -} - -package() { -cd "${srcdir}/${pkgname}-${pkgver}" -make DESTDIR="${pkgdir}" install -#rm -f "${pkgdir}/usr/lib/caja/extensions-2.0/libcaja-gst-shares.a" -} Copied: mate-system-tools/repos/community-i686/PKGBUILD (from rev 105365, mate-system-tools/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-06 05:24:16 UTC (rev 105370) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer : Martin Wimpress + +pkgname=mate-system-tools +pkgver=1.6.0 +pkgrel=9 +pkgdesc="Suite of tools for MATE to simplify configuring workstations." +url="http://mate-desktop.org/"; +arch=('i686' 'x86_64') +license=('GPL') +depends=('dconf' 'gtk2' 'liboobs' 'mate-polkit' 'system-tools-backends' + 'wireless_tools') +makedepends=('mate-common' 'mate-doc-utils' 'mate-file-manager' 'perl-xml-parser') +optdepends=('ntp: Automatic time synchronisation.' +'mate-file-manager: provides Caja Shares extension') +source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz";) +sha1sums=('89d53c22171f6181ad4fb89387d4fa3300bb27b2') +install=${pkgname}.install + +prepare() { +cd "${srcdir}/${pkgname}-${pkgver}" +# Modify the groups for Arch +# - https://wiki.archlinux.org/index.php/Users_and_Groups +# - https://wiki.archlinux.org/ind
[arch-commits] Commit in lxpanel/repos (10 files)
Date: Thursday, February 6, 2014 @ 06:24:14 Author: bisson Revision: 105368 db-move: moved lxpanel from [community-testing] to [community] (i686, x86_64) Added: lxpanel/repos/community-i686/PKGBUILD (from rev 105365, lxpanel/repos/community-testing-i686/PKGBUILD) lxpanel/repos/community-i686/lxpanel-0.5.12-automake-1.14-support.patch (from rev 105365, lxpanel/repos/community-testing-i686/lxpanel-0.5.12-automake-1.14-support.patch) lxpanel/repos/community-x86_64/PKGBUILD (from rev 105365, lxpanel/repos/community-testing-x86_64/PKGBUILD) lxpanel/repos/community-x86_64/lxpanel-0.5.12-automake-1.14-support.patch (from rev 105365, lxpanel/repos/community-testing-x86_64/lxpanel-0.5.12-automake-1.14-support.patch) Deleted: lxpanel/repos/community-i686/PKGBUILD lxpanel/repos/community-i686/lxpanel-0.5.12-automake-1.14-support.patch lxpanel/repos/community-testing-i686/ lxpanel/repos/community-testing-x86_64/ lxpanel/repos/community-x86_64/PKGBUILD lxpanel/repos/community-x86_64/lxpanel-0.5.12-automake-1.14-support.patch -+ /PKGBUILD | 64 ++ /lxpanel-0.5.12-automake-1.14-support.patch | 30 community-i686/PKGBUILD | 32 - community-i686/lxpanel-0.5.12-automake-1.14-support.patch | 15 -- community-x86_64/PKGBUILD | 32 - community-x86_64/lxpanel-0.5.12-automake-1.14-support.patch | 15 -- 6 files changed, 94 insertions(+), 94 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-06 05:24:13 UTC (rev 105367) +++ community-i686/PKGBUILD 2014-02-06 05:24:14 UTC (rev 105368) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: Bartłomiej Piotrowski -# Contributor: Angel Velasquez -# Contributor: Juergen Hoetzel - -pkgname=lxpanel -pkgver=0.6.1 -pkgrel=1 -pkgdesc='Lightweight X11 desktop panel for LXDE' -arch=('i686' 'x86_64') -license=('GPL2') -url='http://lxde.org/' -groups=('lxde') -depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck') -makedepends=('intltool' 'docbook-xml' 'docbook-xsl' 'wireless_tools') -optdepends=('wireless_tools: netstat plugin') -source=(http://downloads.sourceforge.net/sourceforge/lxde/lxpanel-$pkgver.tar.gz) -sha256sums=('a16a21b2186218c70ed98dc7875c54d6bb12ae7271825ff5060feb8d2a4e86cb') - -build() { - cd $pkgname-$pkgver - CFLAGS+=' -lgmodule-2.0' ./configure \ ---sysconfdir=/etc \ ---prefix=/usr \ ---enable-man - make -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install -} Copied: lxpanel/repos/community-i686/PKGBUILD (from rev 105365, lxpanel/repos/community-testing-i686/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-06 05:24:14 UTC (rev 105368) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Bartłomiej Piotrowski +# Contributor: Angel Velasquez +# Contributor: Juergen Hoetzel + +pkgname=lxpanel +pkgver=0.6.1 +pkgrel=2 +pkgdesc='Lightweight X11 desktop panel for LXDE' +arch=('i686' 'x86_64') +license=('GPL2') +url='http://lxde.org/' +groups=('lxde') +depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck') +makedepends=('intltool' 'docbook-xml' 'docbook-xsl' 'wireless_tools') +optdepends=('wireless_tools: netstat plugin') +source=(http://downloads.sourceforge.net/sourceforge/lxde/lxpanel-$pkgver.tar.gz) +sha256sums=('a16a21b2186218c70ed98dc7875c54d6bb12ae7271825ff5060feb8d2a4e86cb') + +build() { + cd $pkgname-$pkgver + CFLAGS+=' -lgmodule-2.0' ./configure \ +--sysconfdir=/etc \ +--prefix=/usr \ +--enable-man + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} Deleted: community-i686/lxpanel-0.5.12-automake-1.14-support.patch === --- community-i686/lxpanel-0.5.12-automake-1.14-support.patch 2014-02-06 05:24:13 UTC (rev 105367) +++ community-i686/lxpanel-0.5.12-automake-1.14-support.patch 2014-02-06 05:24:14 UTC (rev 105368) @@ -1,15 +0,0 @@ autogen.sh.orig2013-01-27 10:38:55.0 +0100 -+++ autogen.sh 2013-01-27 10:59:56.897030226 +0100 -@@ -6,9 +6,10 @@ - - if [ "$AM_INSTALLED_VERSION" != "1.10" \ - -a "$AM_INSTALLED_VERSION" != "1.11" \ ---a "$AM_INSTALLED_VERSION" != "1.12" ];then -+-a "$AM_INSTALLED_VERSION" != "1.12" \ -+ -a "$AM_INSTALLED_VERSION" != "1.14" ];then - echo -- echo "You must have automake 1.10, 1.11, or 1.12 installed to compile lxpanel." -+ echo "You must have automake >=1.10 installed to compile lxpanel." - echo "Install the appropriate package for your distribution," - echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
[arch-commits] Commit in conky/repos (10 files)
Date: Thursday, February 6, 2014 @ 06:24:01 Author: bisson Revision: 205494 db-move: moved conky from [testing] to [extra] (i686, x86_64) Added: conky/repos/extra-i686/PKGBUILD (from rev 205493, conky/repos/testing-i686/PKGBUILD) conky/repos/extra-i686/PKGBUILD.cmake (from rev 205493, conky/repos/testing-i686/PKGBUILD.cmake) conky/repos/extra-x86_64/PKGBUILD (from rev 205493, conky/repos/testing-x86_64/PKGBUILD) conky/repos/extra-x86_64/PKGBUILD.cmake (from rev 205493, conky/repos/testing-x86_64/PKGBUILD.cmake) Deleted: conky/repos/extra-i686/PKGBUILD conky/repos/extra-i686/PKGBUILD.cmake conky/repos/extra-x86_64/PKGBUILD conky/repos/extra-x86_64/PKGBUILD.cmake conky/repos/testing-i686/ conky/repos/testing-x86_64/ -+ /PKGBUILD | 88 + /PKGBUILD.cmake | 98 ++ extra-i686/PKGBUILD | 44 -- extra-i686/PKGBUILD.cmake | 49 - extra-x86_64/PKGBUILD | 44 -- extra-x86_64/PKGBUILD.cmake | 49 - 6 files changed, 186 insertions(+), 186 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-06 05:23:57 UTC (rev 205493) +++ extra-i686/PKGBUILD 2014-02-06 05:24:01 UTC (rev 205494) @@ -1,44 +0,0 @@ -# $Id$ -# Maintainer: Gaetan Bisson -# Contributor: Giovanni Scafora -# Contributor: James Rayner -# Contributor: Partha Chowdhury - -pkgname=conky -pkgver=1.9.0 -pkgrel=2 -pkgdesc='Lightweight system monitor for X' -url='http://conky.sourceforge.net/' -license=('BSD' 'GPL') -arch=('i686' 'x86_64') -makedepends=('docbook2x') -depends=('glib2' 'curl' 'lua' 'wireless_tools' 'libxml2' 'libxft' 'libxdamage' 'imlib2') -source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) -sha1sums=('a8d26d002370c9b877ae77ad3a3bbd2566b38e5d') - -backup=('etc/conky/'conky{,_no_x11}.conf) -options=('!emptydirs') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - CPPFLAGS="${CXXFLAGS}" LIBS="${LDFLAGS}" ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --enable-ibm \ - --enable-curl \ - --enable-rss \ - --enable-weather-xoap \ - --enable-imlib2 \ - --enable-wlan \ - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -Dm644 extras/vim/syntax/conkyrc.vim "${pkgdir}"/usr/share/vim/vimfiles/syntax/conkyrc.vim - install -Dm644 extras/vim/ftdetect/conkyrc.vim "${pkgdir}"/usr/share/vim/vimfiles/ftdetect/conkyrc.vim -} Copied: conky/repos/extra-i686/PKGBUILD (from rev 205493, conky/repos/testing-i686/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-02-06 05:24:01 UTC (rev 205494) @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: Giovanni Scafora +# Contributor: James Rayner +# Contributor: Partha Chowdhury + +pkgname=conky +pkgver=1.9.0 +pkgrel=4 +pkgdesc='Lightweight system monitor for X' +url='http://conky.sourceforge.net/' +license=('BSD' 'GPL') +arch=('i686' 'x86_64') +makedepends=('docbook2x') +depends=('glib2' 'curl' 'lua' 'wireless_tools' 'libxml2' 'libxft' 'libxdamage' 'imlib2') +source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) +sha1sums=('a8d26d002370c9b877ae77ad3a3bbd2566b38e5d') + +backup=('etc/conky/'conky{,_no_x11}.conf) +options=('!emptydirs') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + CPPFLAGS="${CXXFLAGS}" LIBS="${LDFLAGS}" ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-ibm \ + --enable-curl \ + --enable-rss \ + --enable-weather-xoap \ + --enable-imlib2 \ + --enable-wlan \ + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 extras/vim/syntax/conkyrc.vim "${pkgdir}"/usr/share/vim/vimfiles/syntax/conkyrc.vim + install -Dm644 extras/vim/ftdetect/conkyrc.vim "${pkgdir}"/usr/share/vim/vimfiles/ftdetect/conkyrc.vim +} Deleted: extra-i686/PKGBUILD.cmake === --- extra-i686/PKGBUILD.cmake 2014-02-06 05:23:57 UTC (rev 205493) +++ extra-i686/PKGBUILD.cmake 2014-02-06 05:24:01 UTC (rev 205494) @@ -1,49 +0,0 @@ -# $Id: PKGBUILD 118899 201
[arch-commits] Commit in wireless_tools/repos (8 files)
Date: Thursday, February 6, 2014 @ 06:23:57 Author: bisson Revision: 205493 db-move: moved wireless_tools from [testing] to [core] (i686, x86_64) Added: wireless_tools/repos/core-i686/PKGBUILD (from rev 205492, wireless_tools/repos/testing-i686/PKGBUILD) wireless_tools/repos/core-x86_64/PKGBUILD (from rev 205492, wireless_tools/repos/testing-x86_64/PKGBUILD) Deleted: wireless_tools/repos/core-i686/PKGBUILD wireless_tools/repos/core-i686/dense.patch wireless_tools/repos/core-x86_64/PKGBUILD wireless_tools/repos/core-x86_64/dense.patch wireless_tools/repos/testing-i686/ wireless_tools/repos/testing-x86_64/ -+ /PKGBUILD | 70 ++ core-i686/PKGBUILD | 36 --- core-i686/dense.patch | 49 core-x86_64/PKGBUILD| 36 --- core-x86_64/dense.patch | 49 5 files changed, 70 insertions(+), 170 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2014-02-06 03:07:19 UTC (rev 205492) +++ core-i686/PKGBUILD 2014-02-06 05:23:57 UTC (rev 205493) @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: Gaetan Bisson -# Contributor: Giovanni Scafora -# Contributor: Jason Chu - -pkgname=wireless_tools -pkgver=29 -pkgrel=8 -pkgdesc='Tools allowing to manipulate the Wireless Extensions' -url='http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html' -license=('GPL') -arch=('i686' 'x86_64') -source=("http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/${pkgname}.${pkgver}.tar.gz"; -'dense.patch') -sha1sums=('22040ac1497f4c5f8ddeca365591b01ae3475710' - '5c297c7dff1ec1d2a3d918c20622ab3c6daf5b72') - -prepare() { - cd "${srcdir}/${pkgname}.${pkgver}" - patch -p1 -i ../dense.patch # FS#15363 -} - -build() { - cd "${srcdir}/${pkgname}.${pkgver}" - make CFLAGS="${CFLAGS} -I." LDFLAGS="${LDFLAGS}" -} - -package() { - cd "${srcdir}/${pkgname}.${pkgver}" - make \ - INSTALL_DIR="${pkgdir}/usr/bin" \ - INSTALL_LIB="${pkgdir}/usr/lib" \ - INSTALL_INC="${pkgdir}/usr/include" \ - INSTALL_MAN="${pkgdir}/usr/share/man" \ - install -} Copied: wireless_tools/repos/core-i686/PKGBUILD (from rev 205492, wireless_tools/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2014-02-06 05:23:57 UTC (rev 205493) @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: Giovanni Scafora +# Contributor: Jason Chu + +pkgname=wireless_tools +pkgver=30.pre9 +_pkgver=${pkgver%.pre*} +pkgrel=1 +pkgdesc='Tools allowing to manipulate the Wireless Extensions' +url='http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html' +license=('GPL') +arch=('i686' 'x86_64') +source=("http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/${pkgname}.${pkgver}.tar.gz";) +sha1sums=('41db5ced9ed3d8d3cc104ce43c19af1d72f07eec') + +prepare() { + cd "${srcdir}/${pkgname}.${_pkgver}" + sed '/BUILD_STATIC =/d' -i Makefile +} + +build() { + cd "${srcdir}/${pkgname}.${_pkgver}" + make CFLAGS="${CFLAGS} -I." LDFLAGS="${LDFLAGS}" +} + +package() { + cd "${srcdir}/${pkgname}.${_pkgver}" + make \ + INSTALL_DIR="${pkgdir}/usr/bin" \ + INSTALL_LIB="${pkgdir}/usr/lib" \ + INSTALL_INC="${pkgdir}/usr/include" \ + INSTALL_MAN="${pkgdir}/usr/share/man" \ + install +} Deleted: core-i686/dense.patch === --- core-i686/dense.patch 2014-02-06 03:07:19 UTC (rev 205492) +++ core-i686/dense.patch 2014-02-06 05:23:57 UTC (rev 205493) @@ -1,49 +0,0 @@ -The length field of wext data (iw_point.data) is 16 bits. The largest -value is thus 65535. During the attempts to increase buffer size the -buffer starts at 4096 and is doubled after each failure to fill. From the -time this length reaches 65536 it is effectively zero. We thus loose all -potential space from 32768 to 65535. - -This problem is clear when scanning in a RF dense environment. - -Without this patch: -~$ iwlist wlan0 scan -print_scanning_info: Allocation failed - -With this patch: -~$ iwlist wlan0 scan | grep Cell | wc -l -86 - -Signed-off-by: Reinette Chatre - -A similar patch was recently created to fix wpa_supplicant. - -I could not find a source code repo for this code and created this patch -against version 30-pre7 downloaded from -http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html - -diff -uprN wireless_tools_org/wireless_tools.30/iwlist.c wireless_tools.30/iwlist.c wireless_tools_org/wireless_tools.30/iwlist.c 2008-01-16 17:45:41.0 -0800 -+++ wireless
[arch-commits] Commit in firefox-firebug/repos/community-any (PKGBUILD PKGBUILD)
Date: Thursday, February 6, 2014 @ 04:30:56 Author: speps Revision: 105365 archrelease: copy trunk to community-any Added: firefox-firebug/repos/community-any/PKGBUILD (from rev 105364, firefox-firebug/trunk/PKGBUILD) Deleted: firefox-firebug/repos/community-any/PKGBUILD --+ PKGBUILD | 60 ++-- 1 file changed, 30 insertions(+), 30 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-06 03:30:33 UTC (rev 105364) +++ PKGBUILD2014-02-06 03:30:56 UTC (rev 105365) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: speps - -pkgname=firefox-firebug -pkgver=1.12.5 -pkgrel=1 -pkgdesc="Firefox plugin with tools for web development." -arch=(any) -url="http://getfirebug.com/"; -license=('custom:BSD') -groups=('firefox-addons') -depends=('firefox') -provides=('firebug') -source=("${url}releases/firebug/${pkgver%.*}/firebug-$pkgver.xpi") -md5sums=('8e5fa8c0582b5e8b6f7fd15856e82b61') - -package() { - cd "$srcdir" - - # extension - _dest="$pkgdir/usr/lib/firefox/browser/extensions/fire...@software.joehewitt.com" - find . -type d -exec install -d {} $_dest/{} \; - find . -type f -exec install -Dm644 {} $_dest/{} \; - - # license - install -Dm644 license.txt \ -"$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: Copied: firefox-firebug/repos/community-any/PKGBUILD (from rev 105364, firefox-firebug/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-06 03:30:56 UTC (rev 105365) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: speps + +pkgname=firefox-firebug +pkgver=1.12.6 +pkgrel=1 +pkgdesc="Firefox plugin with tools for web development." +arch=(any) +url="http://getfirebug.com/"; +license=('custom:BSD') +groups=('firefox-addons') +depends=('firefox') +provides=('firebug') +source=("${url}releases/firebug/${pkgver%.*}/firebug-$pkgver.xpi") +md5sums=('e929032f03f3af210355905cd4ddf6d3') + +package() { + cd "$srcdir" + + # extension + _dest="$pkgdir/usr/lib/firefox/browser/extensions/fire...@software.joehewitt.com" + find . -type d -exec install -d {} $_dest/{} \; + find . -type f -exec install -Dm644 {} $_dest/{} \; + + # license + install -Dm644 license.txt \ +"$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in firefox-firebug/trunk (PKGBUILD)
Date: Thursday, February 6, 2014 @ 04:30:33 Author: speps Revision: 105364 upgpkg: firefox-firebug 1.12.6-1 Modified: firefox-firebug/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-06 02:18:47 UTC (rev 105363) +++ PKGBUILD2014-02-06 03:30:33 UTC (rev 105364) @@ -2,7 +2,7 @@ # Maintainer: speps pkgname=firefox-firebug -pkgver=1.12.5 +pkgver=1.12.6 pkgrel=1 pkgdesc="Firefox plugin with tools for web development." arch=(any) @@ -12,7 +12,7 @@ depends=('firefox') provides=('firebug') source=("${url}releases/firebug/${pkgver%.*}/firebug-$pkgver.xpi") -md5sums=('8e5fa8c0582b5e8b6f7fd15856e82b61') +md5sums=('e929032f03f3af210355905cd4ddf6d3') package() { cd "$srcdir"
[arch-commits] Commit in python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)
Date: Thursday, February 6, 2014 @ 04:07:19 Author: fyan Revision: 205492 archrelease: copy trunk to extra-any Added: python-setuptools/repos/extra-any/PKGBUILD (from rev 205491, python-setuptools/trunk/PKGBUILD) Deleted: python-setuptools/repos/extra-any/PKGBUILD --+ PKGBUILD | 145 + 1 file changed, 71 insertions(+), 74 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-06 03:06:33 UTC (rev 205491) +++ PKGBUILD2014-02-06 03:07:19 UTC (rev 205492) @@ -1,74 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: Felix Yan - -pkgbase=python-setuptools -pkgname=('python-setuptools' 'python2-setuptools') -pkgver=2.1.1 -pkgrel=1 -pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" -arch=('any') -license=('PSF') -url="http://pypi.python.org/pypi/setuptools"; -makedepends=('python' 'python2') -source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";) -md5sums=('e18af60a87982d6f7bf73176aed6bb49') - -#check() { -# # Check python3 module -# cd "${srcdir}"/setuptools-${pkgver} -# python3 setup.py test -# -# # Check python2 module -# cd "${srcdir}"/setuptools-${pkgver}-python2 -# python2 setup.py test -#} - -prepare() { - cd "${srcdir}" - - pushd setuptools-${pkgver} - popd - - cp -a setuptools-${pkgver}{,-python2} - - cd "${srcdir}"/setuptools-${pkgver} - sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" setuptools/tests/test_resources.py - sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py - - # Workaround encoding issue in setup.py introduced on 2.1.1. Upstream issue: https://bitbucket.org/pypa/setuptools/issue/144 - sed -i -e "s/open('\(README\|CHANGES\|CHANGES (links)\).txt')/open('\1.txt', encoding='utf8')/" setup.py - - cd ../setuptools-${pkgver}-python2 - sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py - sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" setuptools/command/easy_install.py -} - -build() { - # Build python 3 module - cd "${srcdir}"/setuptools-${pkgver} - python3 setup.py build - - # Build python 2 module - cd ../setuptools-${pkgver}-python2 - python2 setup.py build -} - -package_python-setuptools() { - depends=('python>=3.3') - provides=('python-distribute') - replaces=('python-distribute') - - cd "${srcdir}/setuptools-${pkgver}" - python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build -} - -package_python2-setuptools() { - depends=('python2>=2.7') - provides=('python2-distribute' 'setuptools') - replaces=('python2-distribute' 'setuptools') - - cd "${srcdir}/setuptools-${pkgver}-python2" - python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build - rm "${pkgdir}/usr/bin/easy_install" -} Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 205491, python-setuptools/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-06 03:07:19 UTC (rev 205492) @@ -0,0 +1,71 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: Felix Yan + +pkgbase=python-setuptools +pkgname=('python-setuptools' 'python2-setuptools') +pkgver=2.1.2 +pkgrel=1 +pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" +arch=('any') +license=('PSF') +url="http://pypi.python.org/pypi/setuptools"; +makedepends=('python' 'python2') +source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";) +md5sums=('3fb7b3abb02d1d1eb9dc45e1c53e1539') + +#check() { +# # Check python3 module +# cd "${srcdir}"/setuptools-${pkgver} +# python3 setup.py test +# +# # Check python2 module +# cd "${srcdir}"/setuptools-${pkgver}-python2 +# python2 setup.py test +#} + +prepare() { + cd "${srcdir}" + + pushd setuptools-${pkgver} + popd + + cp -a setuptools-${pkgver}{,-python2} + + cd "${srcdir}"/setuptools-${pkgver} + sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" setuptools/tests/test_resources.py + sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py + + cd ../setuptools-${pkgver}-python2 + sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py + sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" setuptools/command/easy_install.py +} + +build() { + # Build python 3 module + cd "${srcdir}"/setuptools-${pkgver} + python3 setup.py build + + # Build python 2 module + cd ../setuptools-${pkgver}-python2 + python2 setup.py build +} + +package_python-setuptools() { + depends=('python>=3.3') + provides=('python-distribute') + replaces=('python-distribute
[arch-commits] Commit in python-setuptools/trunk (PKGBUILD)
Date: Thursday, February 6, 2014 @ 04:06:33 Author: fyan Revision: 205491 upgpkg: python-setuptools 2.1.2-1 Modified: python-setuptools/trunk/PKGBUILD --+ PKGBUILD |7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-06 02:57:32 UTC (rev 205490) +++ PKGBUILD2014-02-06 03:06:33 UTC (rev 205491) @@ -4,7 +4,7 @@ pkgbase=python-setuptools pkgname=('python-setuptools' 'python2-setuptools') -pkgver=2.1.1 +pkgver=2.1.2 pkgrel=1 pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" arch=('any') @@ -12,7 +12,7 @@ url="http://pypi.python.org/pypi/setuptools"; makedepends=('python' 'python2') source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";) -md5sums=('e18af60a87982d6f7bf73176aed6bb49') +md5sums=('3fb7b3abb02d1d1eb9dc45e1c53e1539') #check() { # # Check python3 module @@ -36,9 +36,6 @@ sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" setuptools/tests/test_resources.py sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py - # Workaround encoding issue in setup.py introduced on 2.1.1. Upstream issue: https://bitbucket.org/pypa/setuptools/issue/144 - sed -i -e "s/open('\(README\|CHANGES\|CHANGES (links)\).txt')/open('\1.txt', encoding='utf8')/" setup.py - cd ../setuptools-${pkgver}-python2 sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" setuptools/command/easy_install.py
[arch-commits] Commit in python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)
Date: Thursday, February 6, 2014 @ 03:57:32 Author: fyan Revision: 205490 archrelease: copy trunk to extra-any Added: python-setuptools/repos/extra-any/PKGBUILD (from rev 205489, python-setuptools/trunk/PKGBUILD) Deleted: python-setuptools/repos/extra-any/PKGBUILD --+ PKGBUILD | 148 ++--- 1 file changed, 74 insertions(+), 74 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-06 02:55:37 UTC (rev 205489) +++ PKGBUILD2014-02-06 02:57:32 UTC (rev 205490) @@ -1,74 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: Felix Yan - -pkgbase=python-setuptools -pkgname=('python-setuptools' 'python2-setuptools') -pkgver=2.1.1 -pkgrel=1 -pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" -arch=('any') -license=('PSF') -url="http://pypi.python.org/pypi/setuptools"; -makedepends=('python' 'python2') -source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";) -md5sums=('e18af60a87982d6f7bf73176aed6bb49') - -#check() { -# # Check python3 module -# cd "${srcdir}"/setuptools-${pkgver} -# python3 setup.py test -# -# # Check python2 module -# cd "${srcdir}"/setuptools-${pkgver}-python2 -# python2 setup.py test -#} - -prepare() { - cd "${srcdir}" - - pushd setuptools-${pkgver} - popd - - cp -a setuptools-${pkgver}{,-python2} - - cd "${srcdir}"/setuptools-${pkgver} - sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" setuptools/tests/test_resources.py - sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py - - # Workaround encoding issue in setup.py introduced on 2.1.1. Upstream issue: https://bitbucket.org/pypa/setuptools/issue/144 - sed -i -e "s/open('\(README\|CHANGES\|CHANGES (links)\).txt')/open('\1.txt', encoding='utf8')/" setup.py - - cd ../setuptools-${pkgver}-python2 - sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py - sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" setuptools/command/easy_install.py -} - -build() { - # Build python 3 module - cd "${srcdir}"/setuptools-${pkgver} - python3 setup.py build - - # Build python 2 module - cd ../setuptools-${pkgver}-python2 - python2 setup.py build -} - -package_python-setuptools() { - depends=('python>=3.3') - provides=('python-distribute') - replaces=('python-distribute') - - cd "${srcdir}/setuptools-${pkgver}" - python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build -} - -package_python2-setuptools() { - depends=('python2>=2.7') - provides=('python2-distribute' 'setuptools') - replaces=('python2-distribute' 'setuptools') - - cd "${srcdir}/setuptools-${pkgver}-python2" - python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build - rm "${pkgdir}/usr/bin/easy_install" -} Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 205489, python-setuptools/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-06 02:57:32 UTC (rev 205490) @@ -0,0 +1,74 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: Felix Yan + +pkgbase=python-setuptools +pkgname=('python-setuptools' 'python2-setuptools') +pkgver=2.1.1 +pkgrel=1 +pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" +arch=('any') +license=('PSF') +url="http://pypi.python.org/pypi/setuptools"; +makedepends=('python' 'python2') +source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";) +md5sums=('e18af60a87982d6f7bf73176aed6bb49') + +#check() { +# # Check python3 module +# cd "${srcdir}"/setuptools-${pkgver} +# python3 setup.py test +# +# # Check python2 module +# cd "${srcdir}"/setuptools-${pkgver}-python2 +# python2 setup.py test +#} + +prepare() { + cd "${srcdir}" + + pushd setuptools-${pkgver} + popd + + cp -a setuptools-${pkgver}{,-python2} + + cd "${srcdir}"/setuptools-${pkgver} + sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" setuptools/tests/test_resources.py + sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py + + # Workaround encoding issue in setup.py introduced on 2.1.1. Upstream issue: https://bitbucket.org/pypa/setuptools/issue/144 + sed -i -e "s/open('\(README\|CHANGES\|CHANGES (links)\).txt')/open('\1.txt', encoding='utf8')/" setup.py + + cd ../setuptools-${pkgver}-python2 + sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py + sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" setuptools/command/easy_install.py +} + +build() { + # Build python 3 module + cd "${srcdir}"/setuptools-${pkgver} + python3 s
[arch-commits] Commit in python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)
Date: Thursday, February 6, 2014 @ 03:55:37 Author: fyan Revision: 205489 archrelease: copy trunk to extra-any Added: python-setuptools/repos/extra-any/PKGBUILD (from rev 205488, python-setuptools/trunk/PKGBUILD) Deleted: python-setuptools/repos/extra-any/PKGBUILD --+ PKGBUILD | 145 +++-- 1 file changed, 74 insertions(+), 71 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-06 02:54:51 UTC (rev 205488) +++ PKGBUILD2014-02-06 02:55:37 UTC (rev 205489) @@ -1,71 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Maintainer: Felix Yan - -pkgbase=python-setuptools -pkgname=('python-setuptools' 'python2-setuptools') -pkgver=2.1 -pkgrel=1 -pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" -arch=('any') -license=('PSF') -url="http://pypi.python.org/pypi/setuptools"; -makedepends=('python' 'python2') -source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz) -md5sums=('2044725530450d0517393882dc4b7508') - -#check() { -# # Check python3 module -# cd "${srcdir}"/setuptools-${pkgver} -# python3 setup.py test -# -# # Check python2 module -# cd "${srcdir}"/setuptools-${pkgver}-python2 -# python2 setup.py test -#} - -prepare() { - cd "${srcdir}" - - pushd setuptools-${pkgver} - popd - - cp -a setuptools-${pkgver}{,-python2} - - cd "${srcdir}"/setuptools-${pkgver} - sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" setuptools/tests/test_resources.py - sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py - - cd ../setuptools-${pkgver}-python2 - sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py - sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" setuptools/command/easy_install.py -} - -build() { - # Build python 3 module - cd "${srcdir}"/setuptools-${pkgver} - python3 setup.py build - - # Build python 2 module - cd ../setuptools-${pkgver}-python2 - python2 setup.py build -} - -package_python-setuptools() { - depends=('python>=3.3') - provides=('python-distribute') - replaces=('python-distribute') - - cd "${srcdir}/setuptools-${pkgver}" - python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build -} - -package_python2-setuptools() { - depends=('python2>=2.7') - provides=('python2-distribute' 'setuptools') - replaces=('python2-distribute' 'setuptools') - - cd "${srcdir}/setuptools-${pkgver}-python2" - python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build - rm "${pkgdir}/usr/bin/easy_install" -} Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 205488, python-setuptools/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-06 02:55:37 UTC (rev 205489) @@ -0,0 +1,74 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: Felix Yan + +pkgbase=python-setuptools +pkgname=('python-setuptools' 'python2-setuptools') +pkgver=2.1.1 +pkgrel=1 +pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" +arch=('any') +license=('PSF') +url="http://pypi.python.org/pypi/setuptools"; +makedepends=('python' 'python2') +source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";) +md5sums=('e18af60a87982d6f7bf73176aed6bb49') + +#check() { +# # Check python3 module +# cd "${srcdir}"/setuptools-${pkgver} +# python3 setup.py test +# +# # Check python2 module +# cd "${srcdir}"/setuptools-${pkgver}-python2 +# python2 setup.py test +#} + +prepare() { + cd "${srcdir}" + + pushd setuptools-${pkgver} + popd + + cp -a setuptools-${pkgver}{,-python2} + + cd "${srcdir}"/setuptools-${pkgver} + sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" setuptools/tests/test_resources.py + sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py + + # Workaround encoding issue in setup.py introduced on 2.1.1. Upstream issue: https://bitbucket.org/pypa/setuptools/issue/144 + sed -i -e "s/open('\(README\|CHANGES\|CHANGES (links)\).txt')/open('\1.txt', encoding='utf8')/" setup.py + + cd ../setuptools-${pkgver}-python2 + sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py + sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" setuptools/command/easy_install.py +} + +build() { + # Build python 3 module + cd "${srcdir}"/setuptools-${pkgver} + python3 setup.py build + + # Build python 2 module + cd ../setuptools-${pkgver}-python2 + python2 setup.py build +} + +package_python-setuptools() { + depends=('python>=3.3') + provides=('python-distribute') + replaces=('python-distribute') +
[arch-commits] Commit in python-setuptools/trunk (PKGBUILD)
Date: Thursday, February 6, 2014 @ 03:54:51 Author: fyan Revision: 205488 upgpkg: python-setuptools 2.1.1-1 Modified: python-setuptools/trunk/PKGBUILD --+ PKGBUILD |9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-06 02:40:04 UTC (rev 205487) +++ PKGBUILD2014-02-06 02:54:51 UTC (rev 205488) @@ -4,7 +4,7 @@ pkgbase=python-setuptools pkgname=('python-setuptools' 'python2-setuptools') -pkgver=2.1 +pkgver=2.1.1 pkgrel=1 pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" arch=('any') @@ -11,8 +11,8 @@ license=('PSF') url="http://pypi.python.org/pypi/setuptools"; makedepends=('python' 'python2') -source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz) -md5sums=('2044725530450d0517393882dc4b7508') +source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";) +md5sums=('e18af60a87982d6f7bf73176aed6bb49') #check() { # # Check python3 module @@ -35,6 +35,9 @@ cd "${srcdir}"/setuptools-${pkgver} sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" setuptools/tests/test_resources.py sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py + + # Workaround encoding issue in setup.py introduced on 2.1.1. Upstream issue: https://bitbucket.org/pypa/setuptools/issue/144 + sed -i -e "s/open('\(README\|CHANGES\|CHANGES (links)\).txt')/open('\1.txt', encoding='utf8')/" setup.py cd ../setuptools-${pkgver}-python2 sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py
[arch-commits] Commit in qtcreator/repos (12 files)
Date: Thursday, February 6, 2014 @ 03:40:04 Author: svenstaro Revision: 205487 archrelease: copy trunk to extra-i686, extra-x86_64 Added: qtcreator/repos/extra-i686/PKGBUILD (from rev 205486, qtcreator/trunk/PKGBUILD) qtcreator/repos/extra-i686/qtcreator.desktop (from rev 205486, qtcreator/trunk/qtcreator.desktop) qtcreator/repos/extra-i686/qtcreator.install (from rev 205486, qtcreator/trunk/qtcreator.install) qtcreator/repos/extra-x86_64/PKGBUILD (from rev 205486, qtcreator/trunk/PKGBUILD) qtcreator/repos/extra-x86_64/qtcreator.desktop (from rev 205486, qtcreator/trunk/qtcreator.desktop) qtcreator/repos/extra-x86_64/qtcreator.install (from rev 205486, qtcreator/trunk/qtcreator.install) Deleted: qtcreator/repos/extra-i686/PKGBUILD qtcreator/repos/extra-i686/qtcreator.desktop qtcreator/repos/extra-i686/qtcreator.install qtcreator/repos/extra-x86_64/PKGBUILD qtcreator/repos/extra-x86_64/qtcreator.desktop qtcreator/repos/extra-x86_64/qtcreator.install + /PKGBUILD | 120 +++ /qtcreator.desktop | 18 + /qtcreator.install | 24 +++ extra-i686/PKGBUILD| 60 --- extra-i686/qtcreator.desktop |9 -- extra-i686/qtcreator.install | 12 --- extra-x86_64/PKGBUILD | 60 --- extra-x86_64/qtcreator.desktop |9 -- extra-x86_64/qtcreator.install | 12 --- 9 files changed, 162 insertions(+), 162 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-06 02:39:51 UTC (rev 205486) +++ extra-i686/PKGBUILD 2014-02-06 02:40:04 UTC (rev 205487) @@ -1,60 +0,0 @@ -# $Id: PKGBUILD 101820 2013-12-02 00:06:01Z svenstaro $ -# Maintainer: Sven-Hendrik Haase -# Contributor: Imanol Celaya -# Contributor: Lukas Jirkovsky -# Contributor: Dan Vratil -# Contributor: thotypous -# Contributor: delor - -pkgname=qtcreator -pkgver=3.0.0 -_pkgver=3.0.0 -pkgrel=2 -pkgdesc='Lightweight, cross-platform integrated development environment' -arch=('i686' 'x86_64') -url='http://qt-project.org' -license=('LGPL') -depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols') -makedepends=('git' 'mesa') -options=('docs') -optdepends=('qt5-doc: for the integrated Qt documentation' -'gdb: for the debugger' -'cmake: for cmake project support' -'openssh-askpass: for ssh support' -'git: for git support' -'mercurial: for mercurial support' -'bzr: for bazaar support' -'valgrind: for analyze support') -install=qtcreator.install -source=("git://gitorious.org/qt-creator/qt-creator.git#tag=v${_pkgver}" -"git://gitorious.org/qt-labs/qbs.git" -'qtcreator.desktop') -md5sums=('SKIP' - 'SKIP' - '82888d4be900e7833d768050a135cd37') - -prepare() { -cd qt-creator -git submodule init -git config submodule.qbs.url $srcdir/qbs -git submodule update -} - -build() { - [[ -d build ]] && rm -r build - mkdir build && cd build - - qmake ../qt-creator/qtcreator.pro - make - make docs -j1 -} - -package() { - cd build - - make INSTALL_ROOT="${pkgdir}/usr/" install - make INSTALL_ROOT="${pkgdir}/usr/" install_docs - - install -Dm644 ${srcdir}/qtcreator.desktop ${pkgdir}/usr/share/applications/qtcreator.desktop - install -Dm644 ${srcdir}/qt-creator/LGPL_EXCEPTION.TXT ${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT -} Copied: qtcreator/repos/extra-i686/PKGBUILD (from rev 205486, qtcreator/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-02-06 02:40:04 UTC (rev 205487) @@ -0,0 +1,60 @@ +# $Id: PKGBUILD 101820 2013-12-02 00:06:01Z svenstaro $ +# Maintainer: Sven-Hendrik Haase +# Contributor: Imanol Celaya +# Contributor: Lukas Jirkovsky +# Contributor: Dan Vratil +# Contributor: thotypous +# Contributor: delor + +pkgname=qtcreator +pkgver=3.0.1 +_pkgver=3.0.1 +pkgrel=1 +pkgdesc='Lightweight, cross-platform integrated development environment' +arch=('i686' 'x86_64') +url='http://qt-project.org' +license=('LGPL') +depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols') +makedepends=('git' 'mesa') +options=('docs') +optdepends=('qt5-doc: for the integrated Qt documentation' +'gdb: for the debugger' +'cmake: for cmake project support' +'openssh-askpass: for ssh support' +'git: for git support' +'mercurial: for mercurial support' +'bzr: for bazaar support' +'valgrind: for analyze support') +install=qtcreator.install +source=("git://gitorious.org/qt-creator/qt-creator.git#tag=v${_pkgver}" +"git://gitorious.org/qt-labs/qbs.git" +'qtcreator.desktop') +md5sums=('SKIP' + 'SKIP' +
[arch-commits] Commit in qtcreator/trunk (PKGBUILD)
Date: Thursday, February 6, 2014 @ 03:39:51 Author: svenstaro Revision: 205486 upgpkg: qtcreator 3.0.1-1 upstream release 3.0.1 Modified: qtcreator/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-06 01:04:10 UTC (rev 205485) +++ PKGBUILD2014-02-06 02:39:51 UTC (rev 205486) @@ -7,9 +7,9 @@ # Contributor: delor pkgname=qtcreator -pkgver=3.0.0 -_pkgver=3.0.0 -pkgrel=2 +pkgver=3.0.1 +_pkgver=3.0.1 +pkgrel=1 pkgdesc='Lightweight, cross-platform integrated development environment' arch=('i686' 'x86_64') url='http://qt-project.org' @@ -31,7 +31,7 @@ 'qtcreator.desktop') md5sums=('SKIP' 'SKIP' - '82888d4be900e7833d768050a135cd37') + '50880836fd62ccd87550940feb995f06') prepare() { cd qt-creator
[arch-commits] Commit in fabric/trunk (PKGBUILD)
Date: Thursday, February 6, 2014 @ 03:18:38 Author: svenstaro Revision: 105362 upgpkg: fabric 1.8.1-1 upstream release 1.8.1 Modified: fabric/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-06 02:14:51 UTC (rev 105361) +++ PKGBUILD2014-02-06 02:18:38 UTC (rev 105362) @@ -2,15 +2,15 @@ # Contributor: Francois Boulogne pkgname=fabric -pkgver=1.8.0 +pkgver=1.8.1 pkgrel=1 pkgdesc="Python library and command-line tool designed to streamline deploying applications or performing system administration tasks via the SSH protocol" url="http://fabfile.org/"; license=('BSD') arch=('any') -depends=('python2>=2.5' 'pycrypto' 'python2-paramiko>=1.10.0' 'python2-setuptools') +depends=('python2' 'pycrypto' 'python2-paramiko' 'python2-setuptools') source=("http://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz";) -md5sums=('1f195d16b05877767816617749d33eca') +md5sums=('f1dcf735cdcb6ef079b5d616d03b185e') package() { cd ${srcdir}/Fabric-${pkgver}
[arch-commits] Commit in fabric/repos/community-any (PKGBUILD PKGBUILD)
Date: Thursday, February 6, 2014 @ 03:18:47 Author: svenstaro Revision: 105363 archrelease: copy trunk to community-any Added: fabric/repos/community-any/PKGBUILD (from rev 105362, fabric/trunk/PKGBUILD) Deleted: fabric/repos/community-any/PKGBUILD --+ PKGBUILD | 42 +- 1 file changed, 21 insertions(+), 21 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-06 02:18:38 UTC (rev 105362) +++ PKGBUILD2014-02-06 02:18:47 UTC (rev 105363) @@ -1,21 +0,0 @@ -# Maintainer: Sven-Hendrik Haase -# Contributor: Francois Boulogne - -pkgname=fabric -pkgver=1.8.0 -pkgrel=1 -pkgdesc="Python library and command-line tool designed to streamline deploying applications or performing system administration tasks via the SSH protocol" -url="http://fabfile.org/"; -license=('BSD') -arch=('any') -depends=('python2>=2.5' 'pycrypto' 'python2-paramiko>=1.10.0' 'python2-setuptools') -source=("http://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz";) -md5sums=('1f195d16b05877767816617749d33eca') - -package() { - cd ${srcdir}/Fabric-${pkgver} - python2 setup.py install --root=${pkgdir} --optimize=1 - - install -D -m644 README.rst ${pkgdir}/usr/share/doc/${pkgname}/README.rst - install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE -} Copied: fabric/repos/community-any/PKGBUILD (from rev 105362, fabric/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-06 02:18:47 UTC (rev 105363) @@ -0,0 +1,21 @@ +# Maintainer: Sven-Hendrik Haase +# Contributor: Francois Boulogne + +pkgname=fabric +pkgver=1.8.1 +pkgrel=1 +pkgdesc="Python library and command-line tool designed to streamline deploying applications or performing system administration tasks via the SSH protocol" +url="http://fabfile.org/"; +license=('BSD') +arch=('any') +depends=('python2' 'pycrypto' 'python2-paramiko' 'python2-setuptools') +source=("http://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz";) +md5sums=('f1dcf735cdcb6ef079b5d616d03b185e') + +package() { + cd ${srcdir}/Fabric-${pkgver} + python2 setup.py install --root=${pkgdir} --optimize=1 + + install -D -m644 README.rst ${pkgdir}/usr/share/doc/${pkgname}/README.rst + install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +}
[arch-commits] Commit in python-bottle/trunk (PKGBUILD)
Date: Thursday, February 6, 2014 @ 03:14:05 Author: fyan Revision: 105360 upgpkg: python-bottle 0.12.2-1 Modified: python-bottle/trunk/PKGBUILD --+ PKGBUILD | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-06 01:35:36 UTC (rev 105359) +++ PKGBUILD2014-02-06 02:14:05 UTC (rev 105360) @@ -6,7 +6,7 @@ pkgbase=python-bottle pkgname=("python-bottle" "python2-bottle") -pkgver=0.12.1 +pkgver=0.12.2 pkgrel=1 pkgdesc="A fast and simple micro-framework for small web-applications" arch=(any) @@ -13,17 +13,17 @@ url="http://bottlepy.org"; license=('MIT') options=(!emptydirs) -makedepends=('python3' 'python2') -source=("https://github.com/defnull/bottle/archive/${pkgver}.tar.gz";) +makedepends=('python3' 'python2' 'git') +source=("git+https://github.com/defnull/bottle.git#tag=${pkgver}";) build() { - cp -r "bottle-${pkgver}" "python2-bottle-${pkgver}" + cp -r "bottle" "python2-bottle" } package_python-bottle() { depends=('python3') - cd bottle-${pkgver} + cd bottle python3 setup.py install --root="${pkgdir}" --optimize=1 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python-bottle/LICENSE" } @@ -31,7 +31,7 @@ package_python2-bottle() { depends=('python2') - cd python2-bottle-${pkgver} + cd python2-bottle python2 setup.py install --root="${pkgdir}" --optimize=1 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python2-bottle/LICENSE" @@ -39,4 +39,4 @@ mv "$pkgdir/usr/bin/bottle.py"{,2} } -sha512sums=('90b61ac75f422210303153a110a75671b86e571b856f04701babd5f42104cec57d170a273d94b3fc104a0b054db0346ff1acd54d9cc88085a27696ba681ad29d') +sha512sums=('SKIP')
[arch-commits] Commit in python-bottle/repos/community-any (PKGBUILD PKGBUILD)
Date: Thursday, February 6, 2014 @ 03:14:51 Author: fyan Revision: 105361 archrelease: copy trunk to community-any Added: python-bottle/repos/community-any/PKGBUILD (from rev 105360, python-bottle/trunk/PKGBUILD) Deleted: python-bottle/repos/community-any/PKGBUILD --+ PKGBUILD | 84 ++--- 1 file changed, 42 insertions(+), 42 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-06 02:14:05 UTC (rev 105360) +++ PKGBUILD2014-02-06 02:14:51 UTC (rev 105361) @@ -1,42 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Richard Murri -# Contributor: Farhad Shahbazi -# Contributor: Felix Kaiser - -pkgbase=python-bottle -pkgname=("python-bottle" "python2-bottle") -pkgver=0.12.1 -pkgrel=1 -pkgdesc="A fast and simple micro-framework for small web-applications" -arch=(any) -url="http://bottlepy.org"; -license=('MIT') -options=(!emptydirs) -makedepends=('python3' 'python2') -source=("https://github.com/defnull/bottle/archive/${pkgver}.tar.gz";) - -build() { - cp -r "bottle-${pkgver}" "python2-bottle-${pkgver}" -} - -package_python-bottle() { - depends=('python3') - - cd bottle-${pkgver} - python3 setup.py install --root="${pkgdir}" --optimize=1 - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python-bottle/LICENSE" -} - -package_python2-bottle() { - depends=('python2') - - cd python2-bottle-${pkgver} - python2 setup.py install --root="${pkgdir}" --optimize=1 - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python2-bottle/LICENSE" - - # deal with conflict with python-bottle's /usr/bin/bottle.py - mv "$pkgdir/usr/bin/bottle.py"{,2} -} - -sha512sums=('90b61ac75f422210303153a110a75671b86e571b856f04701babd5f42104cec57d170a273d94b3fc104a0b054db0346ff1acd54d9cc88085a27696ba681ad29d') Copied: python-bottle/repos/community-any/PKGBUILD (from rev 105360, python-bottle/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-06 02:14:51 UTC (rev 105361) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Richard Murri +# Contributor: Farhad Shahbazi +# Contributor: Felix Kaiser + +pkgbase=python-bottle +pkgname=("python-bottle" "python2-bottle") +pkgver=0.12.2 +pkgrel=1 +pkgdesc="A fast and simple micro-framework for small web-applications" +arch=(any) +url="http://bottlepy.org"; +license=('MIT') +options=(!emptydirs) +makedepends=('python3' 'python2' 'git') +source=("git+https://github.com/defnull/bottle.git#tag=${pkgver}";) + +build() { + cp -r "bottle" "python2-bottle" +} + +package_python-bottle() { + depends=('python3') + + cd bottle + python3 setup.py install --root="${pkgdir}" --optimize=1 + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python-bottle/LICENSE" +} + +package_python2-bottle() { + depends=('python2') + + cd python2-bottle + python2 setup.py install --root="${pkgdir}" --optimize=1 + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python2-bottle/LICENSE" + + # deal with conflict with python-bottle's /usr/bin/bottle.py + mv "$pkgdir/usr/bin/bottle.py"{,2} +} + +sha512sums=('SKIP')
[arch-commits] Commit in netbeans/repos/community-any (4 files)
Date: Thursday, February 6, 2014 @ 02:35:36 Author: arodseth Revision: 105359 archrelease: copy trunk to community-any Added: netbeans/repos/community-any/PKGBUILD (from rev 105358, netbeans/trunk/PKGBUILD) netbeans/repos/community-any/netbeans.install (from rev 105358, netbeans/trunk/netbeans.install) Deleted: netbeans/repos/community-any/PKGBUILD netbeans/repos/community-any/netbeans.install --+ PKGBUILD | 91 ++--- netbeans.install | 26 +++ 2 files changed, 59 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-06 01:35:19 UTC (rev 105358) +++ PKGBUILD2014-02-06 01:35:36 UTC (rev 105359) @@ -1,45 +0,0 @@ -# $Id$ -# Maintainer: Alexander Rødseth -# Contributor: Timm Preetz -# Contributor: Daniel J Griffiths - -pkgname=netbeans -pkgver=7.4 -_subpkgver=201310111528 -pkgrel=2 -pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++' -arch=('any') -url='http://netbeans.org/' -license=('CDDL') -depends=('java-environment' 'ttf-font' 'libxtst' 'giflib' 'classpath') -backup=('usr/share/netbeans/etc/netbeans.conf') -makedepends=('gendesk' 'setconf') -optdepends=('php: for developing programs in php' -'groovy: for developing programs in groovy' -'lib32-glibc') -install='netbeans.install' -options=('!strip') -source=("http://dlc.sun.com.edgesuite.net/$pkgname/$pkgver/final/zip/$pkgname-$pkgver-$_subpkgver.zip";) -# http://dlc.sun.com.edgesuite.net/netbeans/7.4/final/zip/ -sha256sums=('bd9a7d1faab7c6a45c1b8d2e5ad11453c2ac767d2176836e65a5c7a62d7c365b') - -prepare() { - gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" - setconf "$pkgname/bin/$pkgname" basedir "/usr/share/$pkgname" -} - -package() { - cd "$pkgname" - - mkdir -p "$pkgdir/usr/"{bin,share/applications} - cp -r "../$pkgname" "$pkgdir/usr/share/" - install -Dm644 "../$pkgname.desktop" \ -"$pkgdir/usr/share/applications/$pkgname.desktop" - install -Dm644 "nb/$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png" - install -Dm755 "bin/$pkgname" "$pkgdir/usr/bin/$pkgname" - - # Cleanup (contains the file that is now placed in /usr/bin + .exe-files) - rm -r "$pkgdir/usr/share/$pkgname/bin" -} - -# vim:set ts=2 sw=2 et: Copied: netbeans/repos/community-any/PKGBUILD (from rev 105358, netbeans/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-06 01:35:36 UTC (rev 105359) @@ -0,0 +1,46 @@ +# $Id$ +# Maintainer: Alexander Rødseth +# Contributor: Timm Preetz +# Contributor: Daniel J Griffiths + +pkgname=netbeans +pkgver=7.4 +_subpkgver=201310111528 +pkgrel=3 +pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++' +arch=('any') +url='http://netbeans.org/' +license=('CDDL') +# classpath is not needed, see FS#38567 (Oracle JDK does not need atk either) +depends=('java-environment' 'ttf-font' 'libxtst' 'giflib' 'atk') +backup=('usr/share/netbeans/etc/netbeans.conf') +makedepends=('gendesk' 'setconf') +optdepends=('php: for developing programs in php' +'groovy: for developing programs in groovy' +'lib32-glibc') +install='netbeans.install' +options=('!strip') +source=("http://dlc.sun.com.edgesuite.net/$pkgname/$pkgver/final/zip/$pkgname-$pkgver-$_subpkgver.zip";) +# http://dlc.sun.com.edgesuite.net/netbeans/7.4/final/zip/ +sha256sums=('bd9a7d1faab7c6a45c1b8d2e5ad11453c2ac767d2176836e65a5c7a62d7c365b') + +prepare() { + gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" + setconf "$pkgname/bin/$pkgname" basedir "/usr/share/$pkgname" +} + +package() { + cd "$pkgname" + + mkdir -p "$pkgdir/usr/"{bin,share/applications} + cp -r "../$pkgname" "$pkgdir/usr/share/" + install -Dm644 "../$pkgname.desktop" \ +"$pkgdir/usr/share/applications/$pkgname.desktop" + install -Dm644 "nb/$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png" + install -Dm755 "bin/$pkgname" "$pkgdir/usr/bin/$pkgname" + + # Cleanup (contains the file that is now placed in /usr/bin + .exe-files) + rm -r "$pkgdir/usr/share/$pkgname/bin" +} + +# vim:set ts=2 sw=2 et: Deleted: netbeans.install === --- netbeans.install2014-02-06 01:35:19 UTC (rev 105358) +++ netbeans.install2014-02-06 01:35:36 UTC (rev 105359) @@ -1,13 +0,0 @@ -post_upgrade() { - update-desktop-database >/dev/null 2>&1 -} - -post_install() { - post_upgrade -} - -post_remove() { - post_upgrade -} - -# vim:set ts=2 sw=2 et: Copied: netbeans/repos/community-any/netbeans.install (from rev 105358, netbeans/trunk/netbeans.install) === --- netbeans.install(rev 0) +++ netbeans.install2014-02-06 01:35:36 UTC (rev 105359) @@ -0,0 +1,13 @@ +post_upgrade() { + update-desktop-database >/dev
[arch-commits] Commit in netbeans/trunk (PKGBUILD)
Date: Thursday, February 6, 2014 @ 02:35:19 Author: arodseth Revision: 105358 upgpkg: netbeans 7.4-3, dep fix Modified: netbeans/trunk/PKGBUILD --+ PKGBUILD |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 21:59:10 UTC (rev 105357) +++ PKGBUILD2014-02-06 01:35:19 UTC (rev 105358) @@ -6,12 +6,13 @@ pkgname=netbeans pkgver=7.4 _subpkgver=201310111528 -pkgrel=2 +pkgrel=3 pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++' arch=('any') url='http://netbeans.org/' license=('CDDL') -depends=('java-environment' 'ttf-font' 'libxtst' 'giflib' 'classpath') +# classpath is not needed, see FS#38567 (Oracle JDK does not need atk either) +depends=('java-environment' 'ttf-font' 'libxtst' 'giflib' 'atk') backup=('usr/share/netbeans/etc/netbeans.conf') makedepends=('gendesk' 'setconf') optdepends=('php: for developing programs in php'
[arch-commits] Commit in s-nail/repos (8 files)
Date: Thursday, February 6, 2014 @ 02:04:10 Author: bisson Revision: 205485 archrelease: copy trunk to testing-i686, testing-x86_64 Added: s-nail/repos/testing-i686/ s-nail/repos/testing-i686/PKGBUILD (from rev 205484, s-nail/trunk/PKGBUILD) s-nail/repos/testing-i686/mimeheader.patch (from rev 205484, s-nail/trunk/mimeheader.patch) s-nail/repos/testing-i686/sort.patch (from rev 205484, s-nail/trunk/sort.patch) s-nail/repos/testing-x86_64/ s-nail/repos/testing-x86_64/PKGBUILD (from rev 205484, s-nail/trunk/PKGBUILD) s-nail/repos/testing-x86_64/mimeheader.patch (from rev 205484, s-nail/trunk/mimeheader.patch) s-nail/repos/testing-x86_64/sort.patch (from rev 205484, s-nail/trunk/sort.patch) -+ testing-i686/PKGBUILD | 59 +++ testing-i686/mimeheader.patch | 147 ++ testing-i686/sort.patch | 75 +++ testing-x86_64/PKGBUILD | 59 +++ testing-x86_64/mimeheader.patch | 147 ++ testing-x86_64/sort.patch | 75 +++ 6 files changed, 562 insertions(+) Copied: s-nail/repos/testing-i686/PKGBUILD (from rev 205484, s-nail/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2014-02-06 01:04:10 UTC (rev 205485) @@ -0,0 +1,59 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: Stéphane Gaudreault +# Contributor: Sergej Pupykin +# Contributor: Andreas Wagner + +pkgname=s-nail +pkgver=14.5.2 +pkgrel=3 +pkgdesc='Mail processing system with a command syntax reminiscent of ed' +url='http://sdaoden.users.sourceforge.net/code.html#s-nail' +license=('custom:BSD') +arch=('i686' 'x86_64') +depends=('openssl') +optdepends=('smtp-forwarder: for sending mail') +source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar.xz"; +'mimeheader.patch' +'sort.patch') +sha1sums=('26ad43f5f41b429d5f13a3ce73a3dff75325950c' + 'e72ed84f584ebc50eb9d04779b8b754afa446bf4' + '909da731e590d1d2877ed38bed667440a02d1259') + +groups=('base') +backup=('etc/mail.rc') +replaces=('mailx' 'mailx-heirloom' 'heirloom-mailx') +provides=('mailx' 'mailx-heirloom' 'heirloom-mailx') +conflicts=('mailx' 'mailx-heirloom' 'heirloom-mailx') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i ../mimeheader.patch + patch -p1 -i ../sort.patch +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + make \ + PREFIX=/usr \ + SYSCONFDIR=/etc \ + MANDIR=/usr/share/man \ + MAILSPOOL=/var/spool/mail \ + SID= NAIL=mail \ + config + + make build +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make test +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" packager-install + ln -sf mail "${pkgdir}"/usr/bin/mailx + ln -sf mail.1.gz "${pkgdir}"/usr/share/man/man1/mailx.1.gz + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +} Copied: s-nail/repos/testing-i686/mimeheader.patch (from rev 205484, s-nail/trunk/mimeheader.patch) === --- testing-i686/mimeheader.patch (rev 0) +++ testing-i686/mimeheader.patch 2014-02-06 01:04:10 UTC (rev 205485) @@ -0,0 +1,147 @@ +s-nail-14_5_2-mimeheader.patch, 2014-02-05: + +Apply: + $ cd s-nail-14.5.2 + $ patch -bu < s-nail-14_5_2-mimeheader.patch + +Description: +mime_fromhdr(): fix my rewrite again.. + +My hasty rewrite [0f9ad93] (mime_fromhdr(): partial rewrite using +n_iconv_str(), 2013-03-12), just about ninety (90) minutes before +the release of S-nail v14.1 already caused the bugfix [b608c6b] +(mime_fromhdr(): never return NULL output.., 2013-03-14), which +was the sole reason for the release of S-nail v14.2. + +Well, about a year later, after tens of thousands of mails, +including multibyte ones, i wrote myself a message that has shown +that the rewrite was still buggy -- the header + + Subject: ehm, .getElementById("blink") needs ,?= not =?US-ASCII?Q?class=3D"id"?= + +cannot be viewed correctly, the ", not" will be lost. +The reason is now understood and this changeset should fix +mime_fromhdr() so that it'll do what it is assumed to do in the +current codebase, unless i'm terribly mistaken. + +Because i bickered some time in private, i WANT to add that the +real problem is that the codebase is weird INSOFAR as that i still +don't really understand the WAY it works, because THAT IS SICK. +I.e., in my brain i assume this function effectively is +rfc_2047_decode(), meant to
[arch-commits] Commit in s-nail/trunk (PKGBUILD mimeheader.patch)
Date: Thursday, February 6, 2014 @ 02:03:28 Author: bisson Revision: 205484 upstream fix Added: s-nail/trunk/mimeheader.patch Modified: s-nail/trunk/PKGBUILD --+ PKGBUILD |7 +- mimeheader.patch | 147 + 2 files changed, 152 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 22:33:59 UTC (rev 205483) +++ PKGBUILD2014-02-06 01:03:28 UTC (rev 205484) @@ -6,7 +6,7 @@ pkgname=s-nail pkgver=14.5.2 -pkgrel=2 +pkgrel=3 pkgdesc='Mail processing system with a command syntax reminiscent of ed' url='http://sdaoden.users.sourceforge.net/code.html#s-nail' license=('custom:BSD') @@ -14,8 +14,10 @@ depends=('openssl') optdepends=('smtp-forwarder: for sending mail') source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver//./_}.tar.xz"; +'mimeheader.patch' 'sort.patch') sha1sums=('26ad43f5f41b429d5f13a3ce73a3dff75325950c' + 'e72ed84f584ebc50eb9d04779b8b754afa446bf4' '909da731e590d1d2877ed38bed667440a02d1259') groups=('base') @@ -26,7 +28,8 @@ prepare() { cd "${srcdir}/${pkgname}-${pkgver}" - patch -p1 -i ../sort.patch # http://sourceforge.net/mailarchive/message.php?msg_id=31906477 + patch -p1 -i ../mimeheader.patch + patch -p1 -i ../sort.patch } build() { Added: mimeheader.patch === --- mimeheader.patch(rev 0) +++ mimeheader.patch2014-02-06 01:03:28 UTC (rev 205484) @@ -0,0 +1,147 @@ +s-nail-14_5_2-mimeheader.patch, 2014-02-05: + +Apply: + $ cd s-nail-14.5.2 + $ patch -bu < s-nail-14_5_2-mimeheader.patch + +Description: +mime_fromhdr(): fix my rewrite again.. + +My hasty rewrite [0f9ad93] (mime_fromhdr(): partial rewrite using +n_iconv_str(), 2013-03-12), just about ninety (90) minutes before +the release of S-nail v14.1 already caused the bugfix [b608c6b] +(mime_fromhdr(): never return NULL output.., 2013-03-14), which +was the sole reason for the release of S-nail v14.2. + +Well, about a year later, after tens of thousands of mails, +including multibyte ones, i wrote myself a message that has shown +that the rewrite was still buggy -- the header + + Subject: ehm, .getElementById("blink") needs ,?= not =?US-ASCII?Q?class=3D"id"?= + +cannot be viewed correctly, the ", not" will be lost. +The reason is now understood and this changeset should fix +mime_fromhdr() so that it'll do what it is assumed to do in the +current codebase, unless i'm terribly mistaken. + +Because i bickered some time in private, i WANT to add that the +real problem is that the codebase is weird INSOFAR as that i still +don't really understand the WAY it works, because THAT IS SICK. +I.e., in my brain i assume this function effectively is +rfc_2047_decode(), meant to decode encoded words as specified in +RFC 2047, but that's simply not true, and FOR QUITE SOME TIME, +because of the embedded newlines that may be in the data and need +to passed through for at least the case that we send data to the +display. I slowly get around that schizophrenic codebase while +also converting it to a straight one, but that will take years. +Until then we need to strip whitespace in between multiple +adjacent encoded words, while passing through newlines and +whitespace that follows newlines, regardless of whatever. +I hope this will do it until we are sane. +--- + mime.c | 63 +++ + 1 file changed, 39 insertions(+), 24 deletions(-) + +diff --git a/mime.c b/mime.c +index ccb0061..6ee55cc 100644 +--- a/mime.c b/mime.c +@@ -863,20 +863,26 @@ jclear: + goto jleave; + } + +-/* +- * Convert header fields from RFC 1522 format +- * TODO mime_fromhdr(): NO error handling, fat; REWRITE **ASAP** +- */ + FL void + mime_fromhdr(struct str const *in, struct str *out, enum tdflags flags) + { +- /* TODO mime_fromhdr(): is called with strings that contain newlines; +- * TODO this is the usual newline problem all around the codebase; +- * TODO i.e., if we strip it, then the display misses it ;} */ ++ /* TODO mime_fromhdr(): is called with strings that contain newlines; ++* TODO this is the usual newline problem all around the codebase; ++* TODO i.e., if we strip it, then the display misses it ;> ++* TODO this is why it is so messy and why S-nail v14.2 plus additional ++* TODO patch for v14.5.2 (and maybe even v14.5.3 subminor) occurred, and ++* TODO why our display reflects what is contained in the message: the 1:1 ++* TODO relationship of message content and display! ++* TODO instead a header line should be decoded to what it is (a single ++
[arch-commits] Commit in arch-install-scripts/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, February 5, 2014 @ 23:33:59 Author: dreisner Revision: 205483 archrelease: copy trunk to extra-any Added: arch-install-scripts/repos/extra-any/PKGBUILD (from rev 205482, arch-install-scripts/trunk/PKGBUILD) Deleted: arch-install-scripts/repos/extra-any/PKGBUILD --+ PKGBUILD | 56 1 file changed, 28 insertions(+), 28 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 22:33:05 UTC (rev 205482) +++ PKGBUILD2014-02-05 22:33:59 UTC (rev 205483) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Dave Reisner - -pkgname=arch-install-scripts -pkgver=12 -pkgrel=1 -pkgdesc="Scripts to aid in installing Arch Linux" -arch=('any') -url="https://projects.archlinux.org/arch-install-scripts.git"; -license=('GPL') -depends=('bash' 'coreutils' 'pacman' 'util-linux') -source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}) -md5sums=('09e33390aa02c9615efdf932a7398352' - 'SKIP') - -build() { - make -C "$pkgname-$pkgver" -} - -check() { - make -C "$pkgname-$pkgver" check -} - -package() { - make -C "$pkgname-$pkgver" PREFIX=/usr DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: arch-install-scripts/repos/extra-any/PKGBUILD (from rev 205482, arch-install-scripts/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 22:33:59 UTC (rev 205483) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Dave Reisner + +pkgname=arch-install-scripts +pkgver=13 +pkgrel=1 +pkgdesc="Scripts to aid in installing Arch Linux" +arch=('any') +url="https://projects.archlinux.org/arch-install-scripts.git"; +license=('GPL') +depends=('bash' 'coreutils' 'pacman' 'util-linux') +source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}) +md5sums=('5294b927fea89f5a88c051c970946c24' + 'SKIP') + +build() { + make -C "$pkgname-$pkgver" +} + +check() { + make -C "$pkgname-$pkgver" check +} + +package() { + make -C "$pkgname-$pkgver" PREFIX=/usr DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in arch-install-scripts/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 23:33:05 Author: dreisner Revision: 205482 upgpkg: arch-install-scripts 13-1 Modified: arch-install-scripts/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 19:47:07 UTC (rev 205481) +++ PKGBUILD2014-02-05 22:33:05 UTC (rev 205482) @@ -2,7 +2,7 @@ # Maintainer: Dave Reisner pkgname=arch-install-scripts -pkgver=12 +pkgver=13 pkgrel=1 pkgdesc="Scripts to aid in installing Arch Linux" arch=('any') @@ -10,7 +10,7 @@ license=('GPL') depends=('bash' 'coreutils' 'pacman' 'util-linux') source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}) -md5sums=('09e33390aa02c9615efdf932a7398352' +md5sums=('5294b927fea89f5a88c051c970946c24' 'SKIP') build() {
[arch-commits] Commit in docker/repos/community-x86_64 (4 files)
Date: Wednesday, February 5, 2014 @ 22:59:10 Author: seblu Revision: 105357 archrelease: copy trunk to community-x86_64 Added: docker/repos/community-x86_64/PKGBUILD (from rev 105356, docker/trunk/PKGBUILD) docker/repos/community-x86_64/docker.install (from rev 105356, docker/trunk/docker.install) Deleted: docker/repos/community-x86_64/PKGBUILD docker/repos/community-x86_64/docker.install + PKGBUILD | 102 --- docker.install | 36 +-- 2 files changed, 70 insertions(+), 68 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 21:59:00 UTC (rev 105356) +++ PKGBUILD2014-02-05 21:59:10 UTC (rev 105357) @@ -1,50 +0,0 @@ -# $Id$ -# Maintainer: Sébastien "Seblu" Luttringer - -pkgname=docker -pkgver=0.7.6 -pkgrel=1 -epoch=1 -pkgdesc='Pack, ship and run any application as a lightweight container' -arch=('x86_64') -url='http://www.docker.io/' -license=('Apache') -depends=('bridge-utils' 'iproute2' 'device-mapper' 'lxc' 'sqlite' 'systemd') -makedepends=('git' 'go') -# don't strip binaries! A sha1 is used to check binary consistency. -options=('!strip') -install=$pkgname.install -source=("git+https://github.com/dotcloud/docker.git#tag=v$pkgver";) -md5sums=('SKIP') -# magic harcoded path -_magic=src/github.com/dotcloud - -prepare() { - mkdir -p "$_magic" - ln -sfn "../../../docker" "$_magic/docker" -} - -build() { - cd "$_magic/docker" - export GOPATH="$srcdir:$srcdir/$_magic/docker/vendor" - ./hack/make.sh dynbinary -} - -check() { - cd "$_magic/docker" - # Will be added upstream soon - #./hack/make.sh dyntest -} - -package() { - cd "$_magic/docker" - install -Dm755 "bundles/$pkgver/dynbinary/docker-$pkgver" "$pkgdir/usr/bin/docker" - install -Dm755 "bundles/$pkgver/dynbinary/dockerinit-$pkgver" "$pkgdir/usr/lib/docker/dockerinit" - # completion - install -Dm644 "contrib/completion/bash/docker" "$pkgdir/usr/share/bash-completion/completions/docker" - install -Dm644 "contrib/completion/zsh/_docker" "$pkgdir/usr/share/zsh/site-functions/_docker" - # systemd - install -Dm644 "contrib/init/systemd/docker.service" "$pkgdir/usr/lib/systemd/system/docker.service" -} - -# vim:set ts=2 sw=2 et: Copied: docker/repos/community-x86_64/PKGBUILD (from rev 105356, docker/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 21:59:10 UTC (rev 105357) @@ -0,0 +1,52 @@ +# $Id$ +# Maintainer: Sébastien "Seblu" Luttringer + +pkgname=docker +_truever=0.8.0 +pkgver=${_truever%.*} +pkgrel=1 +epoch=1 +pkgdesc='Pack, ship and run any application as a lightweight container' +arch=('x86_64') +url='http://www.docker.io/' +license=('Apache') +depends=('bridge-utils' 'iproute2' 'device-mapper' 'lxc' 'sqlite' 'systemd') +makedepends=('git' 'go' 'btrfs-progs') +optdepends=('btrfs-progs: btrfs backend support') +# don't strip binaries! A sha1 is used to check binary consistency. +options=('!strip') +install=$pkgname.install +source=("git+https://github.com/dotcloud/docker.git#tag=v$_truever";) +md5sums=('SKIP') +# magic harcoded path +_magic=src/github.com/dotcloud + +prepare() { + mkdir -p "$_magic" + ln -sfn "../../../docker" "$_magic/docker" +} + +build() { + cd "$_magic/docker" + export GOPATH="$srcdir:$srcdir/$_magic/docker/vendor" + ./hack/make.sh dynbinary +} + +check() { + cd "$_magic/docker" + # Will be added upstream soon + #./hack/make.sh dyntest +} + +package() { + cd "$_magic/docker" + install -Dm755 "bundles/$_truever/dynbinary/docker-$_truever" "$pkgdir/usr/bin/docker" + install -Dm755 "bundles/$_truever/dynbinary/dockerinit-$_truever" "$pkgdir/usr/lib/docker/dockerinit" + # completion + install -Dm644 "contrib/completion/bash/docker" "$pkgdir/usr/share/bash-completion/completions/docker" + install -Dm644 "contrib/completion/zsh/_docker" "$pkgdir/usr/share/zsh/site-functions/_docker" + # systemd + install -Dm644 "contrib/init/systemd/docker.service" "$pkgdir/usr/lib/systemd/system/docker.service" +} + +# vim:set ts=2 sw=2 et: Deleted: docker.install === --- docker.install 2014-02-05 21:59:00 UTC (rev 105356) +++ docker.install 2014-02-05 21:59:10 UTC (rev 105357) @@ -1,18 +0,0 @@ -# arg 1: the new package version -post_install() { - # create docker group (FS#38029) - getent group docker >/dev/null || groupadd -g 142 docker -} - -# arg 1: the new package version -# arg 2: the old package version -post_upgrade() { - (( $(vercmp $2 '1:0.7.1-1') < 0 )) && post_install "$1" || true -} - -# arg 1: the old package version -post_remove() { - groupdel docker >/dev/null 2>&1 || true -} - -# vim:set ts=2 sw=2 et: Copied: docker/repos/community-x86_64/docker.install (from rev 105356, docker/trunk/docker.install)
[arch-commits] Commit in docker/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 22:59:00 Author: seblu Revision: 105356 upgpkg: docker 1:0.8-1 Modified: docker/trunk/PKGBUILD --+ PKGBUILD | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 21:53:04 UTC (rev 105355) +++ PKGBUILD2014-02-05 21:59:00 UTC (rev 105356) @@ -2,7 +2,8 @@ # Maintainer: Sébastien "Seblu" Luttringer pkgname=docker -pkgver=0.7.6 +_truever=0.8.0 +pkgver=${_truever%.*} pkgrel=1 epoch=1 pkgdesc='Pack, ship and run any application as a lightweight container' @@ -10,11 +11,12 @@ url='http://www.docker.io/' license=('Apache') depends=('bridge-utils' 'iproute2' 'device-mapper' 'lxc' 'sqlite' 'systemd') -makedepends=('git' 'go') +makedepends=('git' 'go' 'btrfs-progs') +optdepends=('btrfs-progs: btrfs backend support') # don't strip binaries! A sha1 is used to check binary consistency. options=('!strip') install=$pkgname.install -source=("git+https://github.com/dotcloud/docker.git#tag=v$pkgver";) +source=("git+https://github.com/dotcloud/docker.git#tag=v$_truever";) md5sums=('SKIP') # magic harcoded path _magic=src/github.com/dotcloud @@ -38,8 +40,8 @@ package() { cd "$_magic/docker" - install -Dm755 "bundles/$pkgver/dynbinary/docker-$pkgver" "$pkgdir/usr/bin/docker" - install -Dm755 "bundles/$pkgver/dynbinary/dockerinit-$pkgver" "$pkgdir/usr/lib/docker/dockerinit" + install -Dm755 "bundles/$_truever/dynbinary/docker-$_truever" "$pkgdir/usr/bin/docker" + install -Dm755 "bundles/$_truever/dynbinary/dockerinit-$_truever" "$pkgdir/usr/lib/docker/dockerinit" # completion install -Dm644 "contrib/completion/bash/docker" "$pkgdir/usr/share/bash-completion/completions/docker" install -Dm644 "contrib/completion/zsh/_docker" "$pkgdir/usr/share/zsh/site-functions/_docker"
[arch-commits] Commit in fdkaac/repos (4 files)
Date: Wednesday, February 5, 2014 @ 22:53:04 Author: alucryd Revision: 105355 archrelease: copy trunk to community-i686, community-x86_64 Added: fdkaac/repos/community-i686/ fdkaac/repos/community-i686/PKGBUILD (from rev 105354, fdkaac/trunk/PKGBUILD) fdkaac/repos/community-x86_64/ fdkaac/repos/community-x86_64/PKGBUILD (from rev 105354, fdkaac/trunk/PKGBUILD) ---+ community-i686/PKGBUILD | 34 ++ community-x86_64/PKGBUILD | 34 ++ 2 files changed, 68 insertions(+) Copied: fdkaac/repos/community-i686/PKGBUILD (from rev 105354, fdkaac/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-05 21:53:04 UTC (rev 105355) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: PelPix + +pkgname=fdkaac +pkgver=0.5.1 +pkgrel=2 +pkgdesc='Command line encoder frontend for libfdk-aac' +arch=('i686' 'x86_64') +url="https://github.com/nu774/${pkgname}"; +license=('custom') +depends=('libfdk-aac') +source=("${url}/archive/v${pkgver}.tar.gz") +sha256sums=('95d6e9675ab03f42aa3cb642a686ffaced782a7b440563bd37ef2d4517391348') + +build() { + cd ${pkgname}-${pkgver} + + autoreconf -if + ./configure --prefix='/usr' --disable-rpath + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}" install + + install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname} + install -m 644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/ +} + +# vim: ts=2 sw=2 et: Copied: fdkaac/repos/community-x86_64/PKGBUILD (from rev 105354, fdkaac/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2014-02-05 21:53:04 UTC (rev 105355) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: PelPix + +pkgname=fdkaac +pkgver=0.5.1 +pkgrel=2 +pkgdesc='Command line encoder frontend for libfdk-aac' +arch=('i686' 'x86_64') +url="https://github.com/nu774/${pkgname}"; +license=('custom') +depends=('libfdk-aac') +source=("${url}/archive/v${pkgver}.tar.gz") +sha256sums=('95d6e9675ab03f42aa3cb642a686ffaced782a7b440563bd37ef2d4517391348') + +build() { + cd ${pkgname}-${pkgver} + + autoreconf -if + ./configure --prefix='/usr' --disable-rpath + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}" install + + install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname} + install -m 644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/ +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in libfdk-aac/repos (4 files)
Date: Wednesday, February 5, 2014 @ 22:49:32 Author: alucryd Revision: 105354 archrelease: copy trunk to community-i686, community-x86_64 Added: libfdk-aac/repos/community-i686/ libfdk-aac/repos/community-i686/PKGBUILD (from rev 105353, libfdk-aac/trunk/PKGBUILD) libfdk-aac/repos/community-x86_64/ libfdk-aac/repos/community-x86_64/PKGBUILD (from rev 105353, libfdk-aac/trunk/PKGBUILD) ---+ community-i686/PKGBUILD | 33 + community-x86_64/PKGBUILD | 33 + 2 files changed, 66 insertions(+) Copied: libfdk-aac/repos/community-i686/PKGBUILD (from rev 105353, libfdk-aac/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-05 21:49:32 UTC (rev 105354) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: PelPix +# Contributor: DrZaius + +pkgname=libfdk-aac +pkgver=0.1.3 +pkgrel=2 +pkgdesc='Fraunhofer FDK AAC codec library' +arch=('i686' 'x86_64') +url='http://sourceforge.net/projects/opencore-amr/' +license=('custom') +depends=('glibc') +source=("http://downloads.sourceforge.net/opencore-amr/${pkgname#lib}-${pkgver}.tar.gz";) +sha256sums=('a9cb872802cfb7a2aff7a549c114c547d1e518dd60c2f85942229cc20c0d0c8d') + +build() { + cd ${pkgname#lib}-${pkgver} + + ./configure --prefix='/usr' --disable-static + make +} + +package () { + cd ${pkgname#lib}-${pkgver} + + make DESTDIR="${pkgdir}" install + + install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname} + install -m 644 NOTICE "${pkgdir}"/usr/share/licenses/${pkgname}/ +} + +# vim: ts=2 sw=2 et: Copied: libfdk-aac/repos/community-x86_64/PKGBUILD (from rev 105353, libfdk-aac/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2014-02-05 21:49:32 UTC (rev 105354) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: PelPix +# Contributor: DrZaius + +pkgname=libfdk-aac +pkgver=0.1.3 +pkgrel=2 +pkgdesc='Fraunhofer FDK AAC codec library' +arch=('i686' 'x86_64') +url='http://sourceforge.net/projects/opencore-amr/' +license=('custom') +depends=('glibc') +source=("http://downloads.sourceforge.net/opencore-amr/${pkgname#lib}-${pkgver}.tar.gz";) +sha256sums=('a9cb872802cfb7a2aff7a549c114c547d1e518dd60c2f85942229cc20c0d0c8d') + +build() { + cd ${pkgname#lib}-${pkgver} + + ./configure --prefix='/usr' --disable-static + make +} + +package () { + cd ${pkgname#lib}-${pkgver} + + make DESTDIR="${pkgdir}" install + + install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname} + install -m 644 NOTICE "${pkgdir}"/usr/share/licenses/${pkgname}/ +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in (8 files)
Date: Wednesday, February 5, 2014 @ 22:49:07 Author: alucryd Revision: 105353 Add libfdk-aac and fdkaac Added: fdkaac/ fdkaac/repos/ fdkaac/trunk/ fdkaac/trunk/PKGBUILD libfdk-aac/ libfdk-aac/repos/ libfdk-aac/trunk/ libfdk-aac/trunk/PKGBUILD ---+ fdkaac/trunk/PKGBUILD | 34 ++ libfdk-aac/trunk/PKGBUILD | 33 + 2 files changed, 67 insertions(+) Added: fdkaac/trunk/PKGBUILD === --- fdkaac/trunk/PKGBUILD (rev 0) +++ fdkaac/trunk/PKGBUILD 2014-02-05 21:49:07 UTC (rev 105353) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: PelPix + +pkgname=fdkaac +pkgver=0.5.1 +pkgrel=2 +pkgdesc='Command line encoder frontend for libfdk-aac' +arch=('i686' 'x86_64') +url="https://github.com/nu774/${pkgname}"; +license=('custom') +depends=('libfdk-aac') +source=("${url}/archive/v${pkgver}.tar.gz") +sha256sums=('95d6e9675ab03f42aa3cb642a686ffaced782a7b440563bd37ef2d4517391348') + +build() { + cd ${pkgname}-${pkgver} + + autoreconf -if + ./configure --prefix='/usr' --disable-rpath + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}" install + + install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname} + install -m 644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/ +} + +# vim: ts=2 sw=2 et: Property changes on: fdkaac/trunk/PKGBUILD ___ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: libfdk-aac/trunk/PKGBUILD === --- libfdk-aac/trunk/PKGBUILD (rev 0) +++ libfdk-aac/trunk/PKGBUILD 2014-02-05 21:49:07 UTC (rev 105353) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: PelPix +# Contributor: DrZaius + +pkgname=libfdk-aac +pkgver=0.1.3 +pkgrel=2 +pkgdesc='Fraunhofer FDK AAC codec library' +arch=('i686' 'x86_64') +url='http://sourceforge.net/projects/opencore-amr/' +license=('custom') +depends=('glibc') +source=("http://downloads.sourceforge.net/opencore-amr/${pkgname#lib}-${pkgver}.tar.gz";) +sha256sums=('a9cb872802cfb7a2aff7a549c114c547d1e518dd60c2f85942229cc20c0d0c8d') + +build() { + cd ${pkgname#lib}-${pkgver} + + ./configure --prefix='/usr' --disable-static + make +} + +package () { + cd ${pkgname#lib}-${pkgver} + + make DESTDIR="${pkgdir}" install + + install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname} + install -m 644 NOTICE "${pkgdir}"/usr/share/licenses/${pkgname}/ +} + +# vim: ts=2 sw=2 et: Property changes on: libfdk-aac/trunk/PKGBUILD ___ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
[arch-commits] Commit in murmur/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 21:05:22 Author: bluewind Revision: 105351 upgpkg: murmur 1.2.5-1 upstream update Modified: murmur/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 20:04:46 UTC (rev 105350) +++ PKGBUILD2014-02-05 20:05:22 UTC (rev 105351) @@ -4,7 +4,7 @@ # Contributor: Malte Rabenseifner pkgname=murmur -pkgver=1.2.4 +pkgver=1.2.5 pkgrel=1 pkgdesc="The voice chat application server for Mumble" arch=('i686' 'x86_64') @@ -17,7 +17,7 @@ source=("http://downloads.sourceforge.net/mumble/mumble-$pkgver.tar.gz"; "murmur.dbus.conf" "murmur.service") -md5sums=('49bc6abea78f9c54298934c2c28a7c7c' +md5sums=('084ca44252bd5356b68af555f81ba6f6' 'eddea4cdbd0bde4b960a67e16b5d5478' 'd27a9adcd7561859e7b033046729bc0e')
[arch-commits] Commit in murmur/repos (28 files)
Date: Wednesday, February 5, 2014 @ 21:05:30 Author: bluewind Revision: 105352 archrelease: copy trunk to community-i686, community-x86_64 Added: murmur/repos/community-i686/0003-fix-long-username-query.patch (from rev 105351, murmur/trunk/0003-fix-long-username-query.patch) murmur/repos/community-i686/0004-fix-username-validation.patch (from rev 105351, murmur/trunk/0004-fix-username-validation.patch) murmur/repos/community-i686/ChangeLog (from rev 105351, murmur/trunk/ChangeLog) murmur/repos/community-i686/PKGBUILD (from rev 105351, murmur/trunk/PKGBUILD) murmur/repos/community-i686/murmur.dbus.conf (from rev 105351, murmur/trunk/murmur.dbus.conf) murmur/repos/community-i686/murmur.install (from rev 105351, murmur/trunk/murmur.install) murmur/repos/community-i686/murmur.service (from rev 105351, murmur/trunk/murmur.service) murmur/repos/community-x86_64/0003-fix-long-username-query.patch (from rev 105351, murmur/trunk/0003-fix-long-username-query.patch) murmur/repos/community-x86_64/0004-fix-username-validation.patch (from rev 105351, murmur/trunk/0004-fix-username-validation.patch) murmur/repos/community-x86_64/ChangeLog (from rev 105351, murmur/trunk/ChangeLog) murmur/repos/community-x86_64/PKGBUILD (from rev 105351, murmur/trunk/PKGBUILD) murmur/repos/community-x86_64/murmur.dbus.conf (from rev 105351, murmur/trunk/murmur.dbus.conf) murmur/repos/community-x86_64/murmur.install (from rev 105351, murmur/trunk/murmur.install) murmur/repos/community-x86_64/murmur.service (from rev 105351, murmur/trunk/murmur.service) Deleted: murmur/repos/community-i686/0003-fix-long-username-query.patch murmur/repos/community-i686/0004-fix-username-validation.patch murmur/repos/community-i686/ChangeLog murmur/repos/community-i686/PKGBUILD murmur/repos/community-i686/murmur.dbus.conf murmur/repos/community-i686/murmur.install murmur/repos/community-i686/murmur.service murmur/repos/community-x86_64/0003-fix-long-username-query.patch murmur/repos/community-x86_64/0004-fix-username-validation.patch murmur/repos/community-x86_64/ChangeLog murmur/repos/community-x86_64/PKGBUILD murmur/repos/community-x86_64/murmur.dbus.conf murmur/repos/community-x86_64/murmur.install murmur/repos/community-x86_64/murmur.service -+ /0003-fix-long-username-query.patch | 84 +++ /0004-fix-username-validation.patch | 72 /ChangeLog | 72 /PKGBUILD | 100 ++ /murmur.dbus.conf | 44 +++ /murmur.install | 32 + /murmur.service | 22 +++ community-i686/0003-fix-long-username-query.patch | 42 --- community-i686/0004-fix-username-validation.patch | 36 -- community-i686/ChangeLog| 36 -- community-i686/PKGBUILD | 49 community-i686/murmur.dbus.conf | 22 --- community-i686/murmur.install | 16 -- community-i686/murmur.service | 11 - community-x86_64/0003-fix-long-username-query.patch | 42 --- community-x86_64/0004-fix-username-validation.patch | 36 -- community-x86_64/ChangeLog | 36 -- community-x86_64/PKGBUILD | 49 community-x86_64/murmur.dbus.conf | 22 --- community-x86_64/murmur.install | 16 -- community-x86_64/murmur.service | 11 - 21 files changed, 426 insertions(+), 424 deletions(-) Deleted: community-i686/0003-fix-long-username-query.patch === --- community-i686/0003-fix-long-username-query.patch 2014-02-05 20:05:22 UTC (rev 105351) +++ community-i686/0003-fix-long-username-query.patch 2014-02-05 20:05:30 UTC (rev 105352) @@ -1,42 +0,0 @@ -commit 6b33dda344f89e5a039b7d79eb43925040654242 -Author: Benjamin Jemlich -Date: Tue Jun 29 14:49:14 2010 +0200 - -Don't crash on long usernames - -diff --git a/src/murmur/Messages.cpp b/src/murmur/Messages.cpp -index f12867a..de307ea 100644 a/src/murmur/Messages.cpp -+++ b/src/murmur/Messages.cpp -@@ -1231,6 +1231,9 @@ void Server::msgQueryUsers(ServerUser *uSource, MumbleProto::QueryUsers &msg) { - - for (int i=0;i= 0) { - name = getUserName(id); -diff --git a/src/murmur/ServerDB.cpp b/src/murmur/ServerDB.cpp -index 11b6906..7e15def 100644 a/src/murmur/ServerDB.cpp -+++ b/src/murmur/ServerDB.cpp -@@ -810,7 +810,7 @@ int Server::authenticate(QString &name, const QString &pw, const QStringList &em - TransactionHolder th;
[arch-commits] Commit in mumble/repos (10 files)
Date: Wednesday, February 5, 2014 @ 21:04:46 Author: bluewind Revision: 105350 archrelease: copy trunk to community-i686, community-x86_64 Added: mumble/repos/community-i686/PKGBUILD (from rev 105349, mumble/trunk/PKGBUILD) mumble/repos/community-i686/mumble.install (from rev 105349, mumble/trunk/mumble.install) mumble/repos/community-x86_64/PKGBUILD (from rev 105349, mumble/trunk/PKGBUILD) mumble/repos/community-x86_64/mumble.install (from rev 105349, mumble/trunk/mumble.install) Deleted: mumble/repos/community-i686/PKGBUILD mumble/repos/community-i686/mumble.install mumble/repos/community-i686/mumble11x.desktop mumble/repos/community-x86_64/PKGBUILD mumble/repos/community-x86_64/mumble.install mumble/repos/community-x86_64/mumble11x.desktop + /PKGBUILD | 116 +++ /mumble.install| 22 ++ community-i686/PKGBUILD| 57 - community-i686/mumble.install | 11 --- community-i686/mumble11x.desktop | 11 --- community-x86_64/PKGBUILD | 57 - community-x86_64/mumble.install| 11 --- community-x86_64/mumble11x.desktop | 11 --- 8 files changed, 138 insertions(+), 158 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-05 20:04:39 UTC (rev 105349) +++ community-i686/PKGBUILD 2014-02-05 20:04:46 UTC (rev 105350) @@ -1,57 +0,0 @@ -# $Id$ -# Maintainer: Sven-Hendrik Haase -# Contributor: Lauri Niskanen -# Contributor: sebastian.sal...@gmx.de -# Contributor: Doc Angelo - -# If you want support for your G15 Keyboard, please add 'g15daemon' -# to the depends and delete "no-g15" in the configure line below - -pkgname=mumble -pkgver=1.2.4 -pkgrel=2 -arch=('i686' 'x86_64') -pkgdesc="A voice chat application similar to TeamSpeak" -license=('BSD') -depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 'libpulse' 'opus') -makedepends=('boost' 'mesa' 'avahi') -#optdepends=('portaudio: for portaudio back-end' 'g15daemon: G15 Keyboard support') -install=mumble.install -url="http://mumble.sourceforge.net/"; -source=("http://downloads.sourceforge.net/mumble/$pkgname-$pkgver.tar.gz";) -md5sums=('49bc6abea78f9c54298934c2c28a7c7c') - -build() { - cd $srcdir/$pkgname-$pkgver - - # Building mumble - qmake-qt4 main.pro \ -CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-speechd no-g15 no-xevie no-server \ -no-embed-qt-translations no-update packaged" \ -DEFINES+="PLUGIN_PATH=/usr/lib/mumble" - make release -} - -package() { - cd $srcdir/$pkgname-$pkgver - - # bin stuff - install -m755 -D ./release/mumble $pkgdir/usr/bin/mumble - install -m755 -D ./scripts/mumble-overlay $pkgdir/usr/bin/mumble-overlay - - # lib stuff - install -m755 -D ./release/libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.$pkgver - ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so - ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1 - ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1.2 - install -m755 -D ./release/plugins/liblink.so $pkgdir/usr/lib/mumble/liblink.so - install -m755 -D ./release/plugins/libmanual.so $pkgdir/usr/lib/mumble/libmanual.so - install -m755 -D ./release/libcelt* $pkgdir/usr/lib/mumble/ - - # other stuff - install -m644 -D ./scripts/mumble.desktop $pkgdir/usr/share/applications/mumble.desktop - install -m755 -d $pkgdir/usr/share/man/man1 - install -m644 -D ./man/mum* $pkgdir/usr/share/man/man1/ - install -m644 -D ./icons/mumble.svg $pkgdir/usr/share/icons/hicolor/scalable/apps/mumble.svg -} -# vim: sw=2:ts=2 et: Copied: mumble/repos/community-i686/PKGBUILD (from rev 105349, mumble/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-05 20:04:46 UTC (rev 105350) @@ -0,0 +1,58 @@ +# $Id$ +# Maintainer: Sven-Hendrik Haase +# Contributor: Lauri Niskanen +# Contributor: sebastian.sal...@gmx.de +# Contributor: Doc Angelo + +# If you want support for your G15 Keyboard, please add 'g15daemon' +# to the depends and delete "no-g15" in the configure line below + +pkgname=mumble +pkgver=1.2.5 +pkgrel=1 +arch=('i686' 'x86_64') +pkgdesc="A voice chat application similar to TeamSpeak" +license=('BSD') +depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 'libpulse' 'opus') +makedepends=('boost' 'mesa') +#optdepends=('portaudio: for portaudio back-end' 'g15daemon: G15 Keyboard support') +install=mumble.install +url="http://mumble.sourceforge.net/"; +source=("http://downloads.sourceforge.net/mumble/$pkgname-$pkgver.tar.gz";) +md5sums=('084ca44252bd5356b68af555f81ba6f6') + +build() { + cd $srcdir/$pkgname-$pkgver + + # Building mumbl
[arch-commits] Commit in mumble/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 21:04:39 Author: bluewind Revision: 105349 upgpkg: mumble 1.2.5-1 upstream update Modified: mumble/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 18:51:35 UTC (rev 105348) +++ PKGBUILD2014-02-05 20:04:39 UTC (rev 105349) @@ -8,8 +8,8 @@ # to the depends and delete "no-g15" in the configure line below pkgname=mumble -pkgver=1.2.4 -pkgrel=2 +pkgver=1.2.5 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc="A voice chat application similar to TeamSpeak" license=('BSD') @@ -19,7 +19,7 @@ install=mumble.install url="http://mumble.sourceforge.net/"; source=("http://downloads.sourceforge.net/mumble/$pkgname-$pkgver.tar.gz";) -md5sums=('49bc6abea78f9c54298934c2c28a7c7c') +md5sums=('084ca44252bd5356b68af555f81ba6f6') build() { cd $srcdir/$pkgname-$pkgver
[arch-commits] Commit in libftdi/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 20:46:10 Author: eric Revision: 205480 upgpkg: libftdi 1.1-1 Upstream update Modified: libftdi/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 18:47:19 UTC (rev 205479) +++ PKGBUILD2014-02-05 19:46:10 UTC (rev 205480) @@ -2,8 +2,8 @@ # Maintainer: pkgname=libftdi -pkgver=1.0 -pkgrel=2 +pkgver=1.1 +pkgrel=1 pkgdesc="A library to talk to FTDI chips" arch=('i686' 'x86_64') url="http://www.intra2net.com/en/developer/libftdi/download.php"; @@ -11,7 +11,7 @@ depends=('libusbx') makedepends=('boost' 'cmake') source=(http://www.intra2net.com/en/developer/libftdi/download/${pkgname}1-$pkgver.tar.bz2{,.sig}) -sha1sums=('5be76cfd7cd36c5291054638f7caf4137303386f' +sha1sums=('f05ade5614aa31e64f91a30ce3782f7ca3704d18' 'SKIP') prepare() {
[arch-commits] Commit in libftdi/repos (4 files)
Date: Wednesday, February 5, 2014 @ 20:47:07 Author: eric Revision: 205481 archrelease: copy trunk to extra-i686, extra-x86_64 Added: libftdi/repos/extra-i686/PKGBUILD (from rev 205480, libftdi/trunk/PKGBUILD) libftdi/repos/extra-x86_64/PKGBUILD (from rev 205480, libftdi/trunk/PKGBUILD) Deleted: libftdi/repos/extra-i686/PKGBUILD libftdi/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 72 extra-i686/PKGBUILD | 36 extra-x86_64/PKGBUILD | 36 3 files changed, 72 insertions(+), 72 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-05 19:46:10 UTC (rev 205480) +++ extra-i686/PKGBUILD 2014-02-05 19:47:07 UTC (rev 205481) @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: - -pkgname=libftdi -pkgver=1.0 -pkgrel=2 -pkgdesc="A library to talk to FTDI chips" -arch=('i686' 'x86_64') -url="http://www.intra2net.com/en/developer/libftdi/download.php"; -license=('GPL2' 'LGPL2.1') -depends=('libusbx') -makedepends=('boost' 'cmake') -source=(http://www.intra2net.com/en/developer/libftdi/download/${pkgname}1-$pkgver.tar.bz2{,.sig}) -sha1sums=('5be76cfd7cd36c5291054638f7caf4137303386f' - 'SKIP') - -prepare() { - cd ${pkgname}1-$pkgver - sed -i 's|LIB_SUFFIX 64|LIB_SUFFIX ""|' CMakeLists.txt -} - -build() { - cd ${pkgname}1-$pkgver - mkdir build - cd build - cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SKIP_BUILD_RPATH=ON -DCMAKE_BUILD_TYPE=Release - make -} - -package() { - cd ${pkgname}1-$pkgver/build - make DESTDIR="$pkgdir" install - find examples -type f -perm -755 -exec install {} "$pkgdir/usr/bin" \; - # Remove eepreom (conflict with i2c-tools FS#37925) - rm "$pkgdir/usr/bin/eeprom" -} Copied: libftdi/repos/extra-i686/PKGBUILD (from rev 205480, libftdi/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-02-05 19:47:07 UTC (rev 205481) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: + +pkgname=libftdi +pkgver=1.1 +pkgrel=1 +pkgdesc="A library to talk to FTDI chips" +arch=('i686' 'x86_64') +url="http://www.intra2net.com/en/developer/libftdi/download.php"; +license=('GPL2' 'LGPL2.1') +depends=('libusbx') +makedepends=('boost' 'cmake') +source=(http://www.intra2net.com/en/developer/libftdi/download/${pkgname}1-$pkgver.tar.bz2{,.sig}) +sha1sums=('f05ade5614aa31e64f91a30ce3782f7ca3704d18' + 'SKIP') + +prepare() { + cd ${pkgname}1-$pkgver + sed -i 's|LIB_SUFFIX 64|LIB_SUFFIX ""|' CMakeLists.txt +} + +build() { + cd ${pkgname}1-$pkgver + mkdir build + cd build + cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SKIP_BUILD_RPATH=ON -DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd ${pkgname}1-$pkgver/build + make DESTDIR="$pkgdir" install + find examples -type f -perm -755 -exec install {} "$pkgdir/usr/bin" \; + # Remove eepreom (conflict with i2c-tools FS#37925) + rm "$pkgdir/usr/bin/eeprom" +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2014-02-05 19:46:10 UTC (rev 205480) +++ extra-x86_64/PKGBUILD 2014-02-05 19:47:07 UTC (rev 205481) @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: - -pkgname=libftdi -pkgver=1.0 -pkgrel=2 -pkgdesc="A library to talk to FTDI chips" -arch=('i686' 'x86_64') -url="http://www.intra2net.com/en/developer/libftdi/download.php"; -license=('GPL2' 'LGPL2.1') -depends=('libusbx') -makedepends=('boost' 'cmake') -source=(http://www.intra2net.com/en/developer/libftdi/download/${pkgname}1-$pkgver.tar.bz2{,.sig}) -sha1sums=('5be76cfd7cd36c5291054638f7caf4137303386f' - 'SKIP') - -prepare() { - cd ${pkgname}1-$pkgver - sed -i 's|LIB_SUFFIX 64|LIB_SUFFIX ""|' CMakeLists.txt -} - -build() { - cd ${pkgname}1-$pkgver - mkdir build - cd build - cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SKIP_BUILD_RPATH=ON -DCMAKE_BUILD_TYPE=Release - make -} - -package() { - cd ${pkgname}1-$pkgver/build - make DESTDIR="$pkgdir" install - find examples -type f -perm -755 -exec install {} "$pkgdir/usr/bin" \; - # Remove eepreom (conflict with i2c-tools FS#37925) - rm "$pkgdir/usr/bin/eeprom" -} Copied: libftdi/repos/extra-x86_64/PKGBUILD (from rev 205480, libftdi/trunk/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2014-02-05 19:47:07 UTC (rev 205481) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: + +pkgname=libftdi +pkgver=1.1 +pkgrel=1 +pkgdesc="A library to talk to FTDI chips" +arch=('i686' 'x86_64') +url="http://www.intra2net.com/en/developer/libftdi/download.php"; +license=('GPL2' 'LGPL2.1') +depends=('libusbx') +makedepends=('boost' 'cmake') +source=(http://www.intra2net.com/en/developer/libftdi/download/${p
[arch-commits] Commit in python-sqlalchemy/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 19:50:24 Author: angvp Revision: 105347 upgpkg: python-sqlalchemy 0.9.2-1 Version bump to 0.9.2 Modified: python-sqlalchemy/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 15:56:22 UTC (rev 105346) +++ PKGBUILD2014-02-05 18:50:24 UTC (rev 105347) @@ -4,7 +4,7 @@ pkgbase=python-sqlalchemy pkgname=('python-sqlalchemy' 'python2-sqlalchemy') -pkgver=0.9.1 +pkgver=0.9.2 pkgrel=1 arch=('i686' 'x86_64') # python2 package contain .so url="http://www.sqlalchemy.org/"; @@ -11,7 +11,7 @@ license=('custom: MIT') makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 'python-nose' 'python2-nose') source=("https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz";) -md5sums=('4d59a03e56ee37fc7b53ff1ef5f4310d') +md5sums=('c36a958e46a8514583be82523785269d') build() { cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
[arch-commits] Commit in python-sqlalchemy/repos (4 files)
Date: Wednesday, February 5, 2014 @ 19:51:35 Author: angvp Revision: 105348 archrelease: copy trunk to community-i686, community-x86_64 Added: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 105347, python-sqlalchemy/trunk/PKGBUILD) python-sqlalchemy/repos/community-x86_64/PKGBUILD (from rev 105347, python-sqlalchemy/trunk/PKGBUILD) Deleted: python-sqlalchemy/repos/community-i686/PKGBUILD python-sqlalchemy/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 106 community-i686/PKGBUILD | 53 -- community-x86_64/PKGBUILD | 53 -- 3 files changed, 106 insertions(+), 106 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-05 18:50:24 UTC (rev 105347) +++ community-i686/PKGBUILD 2014-02-05 18:51:35 UTC (rev 105348) @@ -1,53 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Contributor: Sébastien Luttringer - -pkgbase=python-sqlalchemy -pkgname=('python-sqlalchemy' 'python2-sqlalchemy') -pkgver=0.9.1 -pkgrel=1 -arch=('i686' 'x86_64') # python2 package contain .so -url="http://www.sqlalchemy.org/"; -license=('custom: MIT') -makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 'python-nose' 'python2-nose') -source=("https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz";) -md5sums=('4d59a03e56ee37fc7b53ff1ef5f4310d') - -build() { - cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver - cd SQLAlchemy-$pkgver - python setup.py build - cd ../SQLAlchemy2-$pkgver - python2 setup.py build -} - -check() { - cd SQLAlchemy-${pkgver} - python setup.py check - python2 setup.py check - -} - -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 105347, python-sqlalchemy/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-05 18:51:35 UTC (rev 105348) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Contributor: Sébastien Luttringer + +pkgbase=python-sqlalchemy +pkgname=('python-sqlalchemy' 'python2-sqlalchemy') +pkgver=0.9.2 +pkgrel=1 +arch=('i686' 'x86_64') # python2 package contain .so +url="http://www.sqlalchemy.org/"; +license=('custom: MIT') +makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 'python-nose' 'python2-nose') +source=("https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz";) +md5sums=('c36a958e46a8514583be82523785269d') + +build() { + cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver + cd SQLAlchemy-$pkgver + python setup.py build + cd ../SQLAlchemy2-$pkgver + python2 setup.py build +} + +check() { + cd SQLAlchemy-${pkgver} + python setup.py check + python2 setup.py check + +} + +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 === --- community-x86_64/PKGBUILD 2014-02-05 18:50:24 UTC (rev 105347) +++ community-x86_64/PKGBUILD 2014-02-05 18:51:35 UTC (rev 105348) @@ -1,53 +0,0 @@ -# $Id$ -# Maintainer: Angel Velasquez -# Contributor: Sébastien Luttringer - -pkgbase=python-sqlalchemy -pkgname=('python-sqlalchemy' 'python2-sqlalchemy') -pkgver=0.9.1 -pkgrel=1 -arch=('i686' 'x86_64') # python2 package contain .so -url="http://www.sqlalchemy.org/"; -license=('custom: MIT') -makedepends=('python' 'python2'
[arch-commits] Commit in vlc/repos (12 files)
Date: Wednesday, February 5, 2014 @ 19:23:46 Author: giovanni Revision: 205478 archrelease: copy trunk to extra-i686, extra-x86_64 Added: vlc/repos/extra-i686/PKGBUILD (from rev 205477, vlc/trunk/PKGBUILD) vlc/repos/extra-i686/vlc-2.0.7-vaapi-compat.patch (from rev 205477, vlc/trunk/vlc-2.0.7-vaapi-compat.patch) vlc/repos/extra-i686/vlc.install (from rev 205477, vlc/trunk/vlc.install) vlc/repos/extra-x86_64/PKGBUILD (from rev 205477, vlc/trunk/PKGBUILD) vlc/repos/extra-x86_64/vlc-2.0.7-vaapi-compat.patch (from rev 205477, vlc/trunk/vlc-2.0.7-vaapi-compat.patch) vlc/repos/extra-x86_64/vlc.install (from rev 205477, vlc/trunk/vlc.install) Deleted: vlc/repos/extra-i686/PKGBUILD vlc/repos/extra-i686/vlc-2.0.7-vaapi-compat.patch vlc/repos/extra-i686/vlc.install vlc/repos/extra-x86_64/PKGBUILD vlc/repos/extra-x86_64/vlc-2.0.7-vaapi-compat.patch vlc/repos/extra-x86_64/vlc.install ---+ /PKGBUILD | 210 /vlc-2.0.7-vaapi-compat.patch | 22 ++ /vlc.install | 36 extra-i686/PKGBUILD | 105 -- extra-i686/vlc-2.0.7-vaapi-compat.patch | 11 - extra-i686/vlc.install| 18 -- extra-x86_64/PKGBUILD | 105 -- extra-x86_64/vlc-2.0.7-vaapi-compat.patch | 11 - extra-x86_64/vlc.install | 18 -- 9 files changed, 268 insertions(+), 268 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-05 18:23:38 UTC (rev 205477) +++ extra-i686/PKGBUILD 2014-02-05 18:23:46 UTC (rev 205478) @@ -1,105 +0,0 @@ -# $Id$ -# Maintainer: Giovanni Scafora -# Contributor: Sarah Hay -# Contributor: Martin Sandsmark - -pkgname=vlc -pkgver=2.1.2 -pkgrel=3 -pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player" -arch=('i686' 'x86_64') -url="http://www.videolan.org/vlc/"; -license=('LGPL2.1' 'GPL2') -depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'qt4' 'libproxy' - 'sdl_image' 'libdvdnav' 'libtiger' 'lua' 'libmatroska' - 'zvbi' 'taglib' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp' - 'libshout' 'libmad' 'libmpeg2' 'xcb-util-keysyms' 'libtar' - 'libxinerama') -makedepends=('live-media' 'libnotify' 'libbluray' 'flac' 'kdelibs' - 'libdc1394' 'libavc1394' 'lirc-utils' 'libcaca' - 'librsvg' 'portaudio' 'libgme' 'xosd' 'projectm' - 'twolame' 'aalib' 'libmtp' 'libdvdcss' 'gnome-vfs' - 'libgoom2' 'vcdimager' 'opus' 'libssh2' 'mesa') -optdepends=('avahi: for service discovery using bonjour protocol' -'libnotify: for notification plugin' -'ncurses: for ncurses interface support' -'libdvdcss: for decoding encrypted DVDs' -'lirc-utils: for lirc plugin' -'libavc1394: for devices using the 1394ta AV/C' -'libdc1394: for IEEE 1394 plugin' -'kdelibs: KDE Solid hardware integration' -'libva-vdpau-driver: vdpau back-end for nvidia' -'libva-intel-driver: back-end for intel cards' -'libbluray: for Blu-Ray support' -'flac: for Free Lossless Audio Codec plugin' -'portaudio: for portaudio support' -'twolame: for TwoLAME mpeg2 encoder plugin' -'projectm: for ProjectM visualisation plugin' -'libcaca: for colored ASCII art video output' -'libgme: for libgme plugin' -'librsvg: for SVG plugin' -'gnome-vfs: for GNOME Virtual File System support' -'libgoom2: for libgoom plugin' -'vcdimager: navigate VCD with libvcdinfo' -'aalib: for ASCII art plugin' -'libmtp: for MTP devices support' -'smbclient: for SMB access plugin' -'libcdio: for audio CD playback support' -'ttf-freefont: for subtitle font ' -'ttf-dejavu: for subtitle font' -'opus: for opus support' -'libssh2: for sftp support' -'lua-socket: for http interface') -conflicts=('vlc-plugin') -replaces=('vlc-plugin') -backup=('usr/share/vlc/lua/http/.hosts' -'usr/share/vlc/lua/http/dialogs/.hosts') -options=('!emptydirs') -install=vlc.install -source=("http://download.videolan.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"; -'vlc-2.0.7-vaapi-compat.patch') -md5sums=('fb6787ad749aadcfaeab3471939b3426' - '6df10774bb7acf20e09d6139e5c7839e') - -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" - - patch -Np1 -i "${srcdir}/vlc-2.0.7-vaapi-compat.patch" - - sed -i -e 's:truetype/freefont:TTF:g' modules/text_renderer/freetype.c - sed -i -e 's:truetype/ttf-dejavu:TTF:g' modules/visualization/projectm.cpp -} - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - CFLAGS+="-I/usr/i
[arch-commits] Commit in vlc/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 19:23:38 Author: giovanni Revision: 205477 upgpkg: vlc 2.1.3-1 upstream release Modified: vlc/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 18:13:31 UTC (rev 205476) +++ PKGBUILD2014-02-05 18:23:38 UTC (rev 205477) @@ -4,8 +4,8 @@ # Contributor: Martin Sandsmark pkgname=vlc -pkgver=2.1.2 -pkgrel=3 +pkgver=2.1.3 +pkgrel=1 pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player" arch=('i686' 'x86_64') url="http://www.videolan.org/vlc/"; @@ -58,7 +58,7 @@ install=vlc.install source=("http://download.videolan.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"; 'vlc-2.0.7-vaapi-compat.patch') -md5sums=('fb6787ad749aadcfaeab3471939b3426' +md5sums=('56a489d093ffef9aa29809116985adba' '6df10774bb7acf20e09d6139e5c7839e') prepare() {
[arch-commits] Commit in redland/repos (6 files)
Date: Wednesday, February 5, 2014 @ 19:13:31 Author: andyrtr Revision: 205476 archrelease: copy trunk to testing-i686, testing-x86_64 Added: redland/repos/testing-i686/ redland/repos/testing-i686/PKGBUILD (from rev 205475, redland/trunk/PKGBUILD) redland/repos/testing-i686/rpath.diff (from rev 205475, redland/trunk/rpath.diff) redland/repos/testing-x86_64/ redland/repos/testing-x86_64/PKGBUILD (from rev 205475, redland/trunk/PKGBUILD) redland/repos/testing-x86_64/rpath.diff (from rev 205475, redland/trunk/rpath.diff) ---+ testing-i686/PKGBUILD | 81 testing-i686/rpath.diff | 11 + testing-x86_64/PKGBUILD | 81 testing-x86_64/rpath.diff | 11 + 4 files changed, 184 insertions(+) Copied: redland/repos/testing-i686/PKGBUILD (from rev 205475, redland/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2014-02-05 18:13:31 UTC (rev 205476) @@ -0,0 +1,81 @@ +# $Id$ +# Maintainer: Tom Gundersen +# Contributor: AndyRTR +# Contributor: Francois Charette + +pkgbase=redland +epoch=1 +# maybe rename redland-storage-mysql to redland-storage-mariadb or add a provide tag +pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 'redland-storage-virtuoso' 'redland-storage-sqlite') +pkgver=1.0.17 +pkgrel=2 +url="http://librdf.org/"; +license=("GPL") +arch=('i686' 'x86_64') +makedepends=('rasqal' 'raptor' 'postgresql-libs' 'libmariadbclient' 'unixodbc' 'sqlite') +source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz{,.asc} +rpath.diff) +sha256sums=('de1847f7b59021c16bdc72abb4d8e2d9187cd6124d69156f3326dd34ee043681' +'SKIP' +'9ddf9f7581f5194d73ad908f3b26354c70d3079a7a87c8add8a0d0e4c6974fec') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --enable-release \ + --disable-static \ + --with-raptor=system \ + --with-rasqal=system \ + --with-sqlite=3 \ + --with-bdb=no + + # nuke rpath + patch -Np0 -i "${srcdir}/rpath.diff" + + make +} + +package_redland() { + pkgdesc="Library that provides a high-level interface to RDF data" + depends=('rasqal>=0.9.26' 'raptor>=2.0.6' 'libltdl') + + cd "${srcdir}/${pkgbase}-${pkgver}" + make DESTDIR="${pkgdir}" install + rm -rf "${pkgdir}/usr/lib/redland" +} + +package_redland-storage-mysql() { + pkgdesc="MySQL storage support for Redland" + depends=('redland' 'libmariadbclient') + + cd "${srcdir}/${pkgbase}-${pkgver}" + install -dm755 "${pkgdir}/usr/lib/redland" + install -m755 src/.libs/librdf_storage_mysql.so "${pkgdir}/usr/lib/redland/librdf_storage_mysql.so" +} + +package_redland-storage-postgresql() { + pkgdesc="PostgreSQL storage support for Redland" + depends=('redland' 'postgresql-libs') + + cd "${srcdir}/${pkgbase}-${pkgver}" + install -dm755 "${pkgdir}/usr/lib/redland" + install -m755 src/.libs/librdf_storage_postgresql.so "${pkgdir}/usr/lib/redland/" +} + +package_redland-storage-virtuoso() { + pkgdesc="Virtuoso storage support for Redland" + depends=('redland' 'unixodbc') + + cd "${srcdir}/${pkgbase}-${pkgver}" + install -dm755 "${pkgdir}/usr/lib/redland" + install -m755 src/.libs/librdf_storage_virtuoso.so "${pkgdir}/usr/lib/redland/" +} + +package_redland-storage-sqlite() { + pkgdesc="SQLite storage support for Redland" + depends=('redland' 'sqlite3') + + cd "${srcdir}/${pkgbase}-${pkgver}" + install -dm755 "${pkgdir}/usr/lib/redland" + install -m755 src/.libs/librdf_storage_sqlite.so "${pkgdir}/usr/lib/redland/" +} Copied: redland/repos/testing-i686/rpath.diff (from rev 205475, redland/trunk/rpath.diff) === --- testing-i686/rpath.diff (rev 0) +++ testing-i686/rpath.diff 2014-02-05 18:13:31 UTC (rev 205476) @@ -0,0 +1,11 @@ +--- libtool2011-02-20 10:46:47.0 +0100 libtool.new2011-02-20 10:52:58.285764909 +0100 +@@ -324,7 +324,7 @@ + + # Flag to hardcode $libdir into a binary during linking. + # This must work even if $libdir does not exist +-hardcode_libdir_flag_spec="\${wl}-rpath \${wl}\$libdir" ++hardcode_libdir_flag_spec=" " + + # If ld is used when linking, flag to hardcode $libdir into a binary + # during linking. This must work even if $libdir does not exist. Copied: redland/repos/testing-x86_64/PKGBUILD (from rev 205475, redland/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2014-02-05 18:13:31 UTC (rev 205476) @@ -0,0 +1,81 @@ +# $Id$ +# Maintainer: Tom Gundersen +# Contributor: AndyRTR +# Contributor: Francois Charette + +pkgbase=redland +epoch=1 +# maybe re
[arch-commits] Commit in redland/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 19:13:11 Author: andyrtr Revision: 205475 upgpkg: redland 1:1.0.17-2 drop support for BerkeleyDB Modified: redland/trunk/PKGBUILD --+ PKGBUILD | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 17:56:35 UTC (rev 205474) +++ PKGBUILD2014-02-05 18:13:11 UTC (rev 205475) @@ -5,13 +5,14 @@ pkgbase=redland epoch=1 +# maybe rename redland-storage-mysql to redland-storage-mariadb or add a provide tag pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 'redland-storage-virtuoso' 'redland-storage-sqlite') pkgver=1.0.17 -pkgrel=1 +pkgrel=2 url="http://librdf.org/"; license=("GPL") arch=('i686' 'x86_64') -makedepends=('rasqal' 'raptor' 'db' 'postgresql-libs' 'libmariadbclient' 'unixodbc' 'sqlite') +makedepends=('rasqal' 'raptor' 'postgresql-libs' 'libmariadbclient' 'unixodbc' 'sqlite') source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz{,.asc} rpath.diff) sha256sums=('de1847f7b59021c16bdc72abb4d8e2d9187cd6124d69156f3326dd34ee043681' @@ -25,7 +26,8 @@ --disable-static \ --with-raptor=system \ --with-rasqal=system \ - --with-sqlite=3 + --with-sqlite=3 \ + --with-bdb=no # nuke rpath patch -Np0 -i "${srcdir}/rpath.diff" @@ -62,7 +64,7 @@ package_redland-storage-virtuoso() { pkgdesc="Virtuoso storage support for Redland" - depends=('redland' 'unixodbc' 'db') + depends=('redland' 'unixodbc') cd "${srcdir}/${pkgbase}-${pkgver}" install -dm755 "${pkgdir}/usr/lib/redland" @@ -71,7 +73,7 @@ package_redland-storage-sqlite() { pkgdesc="SQLite storage support for Redland" - depends=('redland' 'sqlite3' 'db') + depends=('redland' 'sqlite3') cd "${srcdir}/${pkgbase}-${pkgver}" install -dm755 "${pkgdir}/usr/lib/redland"
[arch-commits] Commit in icedtea-web-java7/repos (8 files)
Date: Wednesday, February 5, 2014 @ 18:56:35 Author: andyrtr Revision: 205474 archrelease: copy trunk to extra-i686, extra-x86_64 Added: icedtea-web-java7/repos/extra-i686/PKGBUILD (from rev 205473, icedtea-web-java7/trunk/PKGBUILD) icedtea-web-java7/repos/extra-i686/icedtea-web-java7.install (from rev 205473, icedtea-web-java7/trunk/icedtea-web-java7.install) icedtea-web-java7/repos/extra-x86_64/PKGBUILD (from rev 205473, icedtea-web-java7/trunk/PKGBUILD) icedtea-web-java7/repos/extra-x86_64/icedtea-web-java7.install (from rev 205473, icedtea-web-java7/trunk/icedtea-web-java7.install) Deleted: icedtea-web-java7/repos/extra-i686/PKGBUILD icedtea-web-java7/repos/extra-i686/icedtea-web-java7.install icedtea-web-java7/repos/extra-x86_64/PKGBUILD icedtea-web-java7/repos/extra-x86_64/icedtea-web-java7.install + /PKGBUILD | 176 +++ /icedtea-web-java7.install | 22 +++ extra-i686/PKGBUILD| 88 --- extra-i686/icedtea-web-java7.install | 11 - extra-x86_64/PKGBUILD | 88 --- extra-x86_64/icedtea-web-java7.install | 11 - 6 files changed, 198 insertions(+), 198 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-05 17:56:14 UTC (rev 205473) +++ extra-i686/PKGBUILD 2014-02-05 17:56:35 UTC (rev 205474) @@ -1,88 +0,0 @@ -# $Id: PKGBUILD 136836 2011-09-02 07:59:01Z andyrtr $ -# Maintainer: Andreas Radke - -pkgbase=icedtea-web-java7 -pkgname=('icedtea-web-java7' 'icedtea-web-java7-doc') -pkgver=1.4.1 -pkgrel=1 -arch=('i686' 'x86_64') -url="http://icedtea.classpath.org/wiki/IcedTea-Web"; -license=('GPL2') -makedepends=('jdk7-openjdk' 'zip' 'libxtst' 'npapi-sdk' 'rhino' 'junit' 'firefox' 'chromium' 'epiphany') -noextract=${pkgbase/-java7/}-$pkgver.tar.gz # due to broken path names in the tarball that fails with LANG=C in our chroot -source=(http://icedtea.classpath.org/download/source/${pkgbase/-java7/}-$pkgver.tar.gz) -sha256sums=('09100207396a09784e04f2ad40d65212930c1d43839e7fa63b9dffaf8567d77b') - -_javaver=7 -_jvmdir=/usr/lib/jvm/java-${_javaver}-openjdk - -build() { - # extract it - cd "$srcdir" - LANG=en_US.UTF-8 bsdtar -x -f ${srcdir}/${pkgbase/-java7/}-$pkgver.tar.gz - - cd "${srcdir}"/icedtea-web* - ./configure --prefix=${_jvmdir} \ - --datarootdir=/usr/share \ - --with-jdk-home=${_jvmdir} \ - --with-browser-tests \ - --with-firefox=/usr/bin/firefox \ - --with-chromium=/usr/bin/chromium \ - --with-epiphany=/usr/bin/epiphany - make -} - -check() { - cd "${srcdir}"/icedtea-web* - # as more tests have been added some are expectged to fail - # see http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2012-March/017566.html - make -k check || /bin/true -} - - -package_icedtea-web-java7() { - - pkgdesc="provides a Free Software web browser plugin running applets written in the Java programming language and an implementation of Java Web Start, originally based on the NetX project" - depends=('jre7-openjdk' 'desktop-file-utils') - provides=('java-web-start=7') - replaces=('icedtea-web') - install=${pkgname}.install - - cd "${srcdir}"/icedtea-web* #${pkgname}-${_date}" - # possible make target (see bottom of Makefile.am: install-exec-local install-data-local - make DESTDIR="${pkgdir}" install-exec-local install-data-local - - # Install desktop files. - install -m755 -d ${pkgdir}/usr/share/{applications,pixmaps} - install -m644 javaws.png ${pkgdir}/usr/share/pixmaps - install -m644 {javaws,itweb-settings}.desktop ${pkgdir}/usr/share/applications - # remove splitted doc files - rm -rf ${pkgdir}/usr/share/doc - - # link binaries into /usr/bin + jre/bin - install -m755 -d ${pkgdir}/usr/bin - install -m755 -d ${pkgdir}/${_jvmdir}/jre/bin - pushd ${pkgdir}/${_jvmdir}/bin - for file in *; do -ln -sf ${_jvmdir}/bin/${file} ${pkgdir}/usr/bin -ln -sf ${_jvmdir}/bin/${file} ${pkgdir}/${_jvmdir}/jre/bin - done - popd - - # link the mozilla-plugin - test it here http://www.java.com/en/download/help/testvm.xml - install -m755 -d ${pkgdir}/usr/lib/mozilla/plugins/ - ln -sf ${_jvmdir}/lib/IcedTeaPlugin.so ${pkgdir}/usr/lib/mozilla/plugins/ -} - -package_icedtea-web-java7-doc() { - - pkgdesc="icedtea-web browser plugin + Java WebStart - documentation files" - replaces=('icedtea-web-doc') - - cd "${srcdir}"/icedtea-web* - make DESTDIR="${pkgdir}" install-data-local - # remove javaws about and man page - rm -rf ${pkgdir}/usr/lib - rm -rf ${pkgdir}/usr/share/man - rm -rf ${pkgdir}/usr/share/icedtea-web # conflicting and unneeded file it seems -} Copied: icedtea-web-java7/repos/extra-i686/PKGBUILD (from rev 205473, icedtea-web-java7/trunk/PKGBUILD) === --- extra-i686/PKGBUILD
[arch-commits] Commit in icedtea-web-java7/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 18:56:14 Author: andyrtr Revision: 205473 upgpkg: icedtea-web-java7 1.4.2-1 upstream update 1.4.2 Modified: icedtea-web-java7/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 17:31:40 UTC (rev 205472) +++ PKGBUILD2014-02-05 17:56:14 UTC (rev 205473) @@ -3,7 +3,7 @@ pkgbase=icedtea-web-java7 pkgname=('icedtea-web-java7' 'icedtea-web-java7-doc') -pkgver=1.4.1 +pkgver=1.4.2 pkgrel=1 arch=('i686' 'x86_64') url="http://icedtea.classpath.org/wiki/IcedTea-Web"; @@ -11,7 +11,7 @@ makedepends=('jdk7-openjdk' 'zip' 'libxtst' 'npapi-sdk' 'rhino' 'junit' 'firefox' 'chromium' 'epiphany') noextract=${pkgbase/-java7/}-$pkgver.tar.gz # due to broken path names in the tarball that fails with LANG=C in our chroot source=(http://icedtea.classpath.org/download/source/${pkgbase/-java7/}-$pkgver.tar.gz) -sha256sums=('09100207396a09784e04f2ad40d65212930c1d43839e7fa63b9dffaf8567d77b') +md5sums=('ad4fd669f482e5f69a124061229df517') _javaver=7 _jvmdir=/usr/lib/jvm/java-${_javaver}-openjdk
[arch-commits] Commit in avogadro/repos/extra-x86_64 (6 files)
Date: Wednesday, February 5, 2014 @ 18:31:40 Author: andrea Revision: 205472 archrelease: copy trunk to extra-x86_64 Added: avogadro/repos/extra-x86_64/PKGBUILD (from rev 205471, avogadro/trunk/PKGBUILD) avogadro/repos/extra-x86_64/avogadro.install (from rev 205471, avogadro/trunk/avogadro.install) avogadro/repos/extra-x86_64/boost153.patch (from rev 205471, avogadro/trunk/boost153.patch) Deleted: avogadro/repos/extra-x86_64/PKGBUILD avogadro/repos/extra-x86_64/avogadro.install avogadro/repos/extra-x86_64/boost153.patch --+ PKGBUILD | 82 ++-- avogadro.install | 22 - boost153.patch | 120 ++--- 3 files changed, 112 insertions(+), 112 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 17:31:33 UTC (rev 205471) +++ PKGBUILD2014-02-05 17:31:40 UTC (rev 205472) @@ -1,41 +0,0 @@ -# $Id$ -# Maintainer: -# Contributor: Andrea Scarpino -# Contributor: Nick B - -pkgname=avogadro -pkgver=1.1.1 -pkgrel=1 -pkgdesc="An advanced molecular editor based on Qt" -arch=('i686' 'x86_64') -url="http://avogadro.openmolecules.net/wiki/Main_Page"; -license=('GPL2') -depends=('openbabel' 'python2-pyqt' 'boost-libs' 'glew' 'python2-numpy') -makedepends=('cmake' 'boost' 'doxygen' 'mesa-libgl' 'eigen2') -install=avogadro.install -source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2"; -'boost153.patch') -md5sums=('1223bb18f50dccd2c60538aa90d58c7a' - 'aa2573f78d5dbd85b3cb79e08acde8ab') - -prepare() { - mkdir build - - cd ${pkgname}-${pkgver} - patch -p1 -i "${srcdir}"/boost153.patch -} - -build() { - cd build - cmake ../${pkgname}-${pkgver} \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_INSTALL_PREFIX=/usr \ --DPYTHON_EXECUTABLE=/usr/bin/python2 \ --DQT_MKSPECS_RELATIVE=share/qt4/mkspecs - make -} - -package() { - cd build - make DESTDIR="${pkgdir}" install -} Copied: avogadro/repos/extra-x86_64/PKGBUILD (from rev 205471, avogadro/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 17:31:40 UTC (rev 205472) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: +# Contributor: Andrea Scarpino +# Contributor: Nick B + +pkgname=avogadro +pkgver=1.1.1 +pkgrel=1 +pkgdesc="An advanced molecular editor based on Qt" +arch=('i686' 'x86_64') +url="http://avogadro.openmolecules.net/wiki/Main_Page"; +license=('GPL2') +depends=('openbabel' 'python2-pyqt' 'boost-libs' 'glew' 'python2-numpy') +makedepends=('cmake' 'boost' 'doxygen' 'mesa-libgl' 'eigen2') +install=avogadro.install +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2"; +'boost153.patch') +md5sums=('1223bb18f50dccd2c60538aa90d58c7a' + 'aa2573f78d5dbd85b3cb79e08acde8ab') + +prepare() { + mkdir build + + cd ${pkgname}-${pkgver} + patch -p1 -i "${srcdir}"/boost153.patch +} + +build() { + cd build + cmake ../${pkgname}-${pkgver} \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DPYTHON_EXECUTABLE=/usr/bin/python2 \ +-DQT_MKSPECS_RELATIVE=share/qt4/mkspecs + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} Deleted: avogadro.install === --- avogadro.install2014-02-05 17:31:33 UTC (rev 205471) +++ avogadro.install2014-02-05 17:31:40 UTC (rev 205472) @@ -1,11 +0,0 @@ -post_install() { - update-desktop-database -q -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - post_install $1 -} Copied: avogadro/repos/extra-x86_64/avogadro.install (from rev 205471, avogadro/trunk/avogadro.install) === --- avogadro.install(rev 0) +++ avogadro.install2014-02-05 17:31:40 UTC (rev 205472) @@ -0,0 +1,11 @@ +post_install() { + update-desktop-database -q +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} Deleted: boost153.patch === --- boost153.patch 2014-02-05 17:31:33 UTC (rev 205471) +++ boost153.patch 2014-02-05 17:31:40 UTC (rev 205472) @@ -1,60 +0,0 @@ avogadro-1.1.0/libavogadro/src/pythonengine_p.h~ 2013-03-29 12:46:16.306165881 + -+++ avogadro-1.1.0/libavogadro/src/pythonengine_p.h2013-03-29 12:45:43.123089622 + -@@ -27,7 +27,9 @@ - - #include - #include -+#ifndef Q_MOC_RUN - #include -+#endif - - namespace Avogadro { - avogadro-1.1.0/libavogadro/src/pythonextension_p.h~2013-03-29 12:46:32.156043085 + -+++ avogadro-1.1.0/libavogadro/src/pythonextension_p.h 2013-03-29 12:47:07.265771087 + -@@ -29,7 +29,9 @@ - #include - #include - #include -+#ifndef Q_MOC_RUN - #includ
[arch-commits] Commit in avogadro/repos/extra-i686 (6 files)
Date: Wednesday, February 5, 2014 @ 18:31:33 Author: andrea Revision: 205471 archrelease: copy trunk to extra-i686 Added: avogadro/repos/extra-i686/PKGBUILD (from rev 205470, avogadro/trunk/PKGBUILD) avogadro/repos/extra-i686/avogadro.install (from rev 205470, avogadro/trunk/avogadro.install) avogadro/repos/extra-i686/boost153.patch (from rev 205470, avogadro/trunk/boost153.patch) Deleted: avogadro/repos/extra-i686/PKGBUILD avogadro/repos/extra-i686/avogadro.install avogadro/repos/extra-i686/boost153.patch --+ PKGBUILD | 82 ++-- avogadro.install | 22 - boost153.patch | 120 ++--- 3 files changed, 112 insertions(+), 112 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 17:02:20 UTC (rev 205470) +++ PKGBUILD2014-02-05 17:31:33 UTC (rev 205471) @@ -1,41 +0,0 @@ -# $Id$ -# Maintainer: -# Contributor: Andrea Scarpino -# Contributor: Nick B - -pkgname=avogadro -pkgver=1.1.1 -pkgrel=1 -pkgdesc="An advanced molecular editor based on Qt" -arch=('i686' 'x86_64') -url="http://avogadro.openmolecules.net/wiki/Main_Page"; -license=('GPL2') -depends=('openbabel' 'python2-pyqt' 'boost-libs' 'glew' 'python2-numpy') -makedepends=('cmake' 'boost' 'doxygen' 'mesa-libgl' 'eigen2') -install=avogadro.install -source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2"; -'boost153.patch') -md5sums=('1223bb18f50dccd2c60538aa90d58c7a' - 'aa2573f78d5dbd85b3cb79e08acde8ab') - -prepare() { - mkdir build - - cd ${pkgname}-${pkgver} - patch -p1 -i "${srcdir}"/boost153.patch -} - -build() { - cd build - cmake ../${pkgname}-${pkgver} \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_INSTALL_PREFIX=/usr \ --DPYTHON_EXECUTABLE=/usr/bin/python2 \ --DQT_MKSPECS_RELATIVE=share/qt4/mkspecs - make -} - -package() { - cd build - make DESTDIR="${pkgdir}" install -} Copied: avogadro/repos/extra-i686/PKGBUILD (from rev 205470, avogadro/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 17:31:33 UTC (rev 205471) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: +# Contributor: Andrea Scarpino +# Contributor: Nick B + +pkgname=avogadro +pkgver=1.1.1 +pkgrel=1 +pkgdesc="An advanced molecular editor based on Qt" +arch=('i686' 'x86_64') +url="http://avogadro.openmolecules.net/wiki/Main_Page"; +license=('GPL2') +depends=('openbabel' 'python2-pyqt' 'boost-libs' 'glew' 'python2-numpy') +makedepends=('cmake' 'boost' 'doxygen' 'mesa-libgl' 'eigen2') +install=avogadro.install +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2"; +'boost153.patch') +md5sums=('1223bb18f50dccd2c60538aa90d58c7a' + 'aa2573f78d5dbd85b3cb79e08acde8ab') + +prepare() { + mkdir build + + cd ${pkgname}-${pkgver} + patch -p1 -i "${srcdir}"/boost153.patch +} + +build() { + cd build + cmake ../${pkgname}-${pkgver} \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DPYTHON_EXECUTABLE=/usr/bin/python2 \ +-DQT_MKSPECS_RELATIVE=share/qt4/mkspecs + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} Deleted: avogadro.install === --- avogadro.install2014-02-05 17:02:20 UTC (rev 205470) +++ avogadro.install2014-02-05 17:31:33 UTC (rev 205471) @@ -1,11 +0,0 @@ -post_install() { - update-desktop-database -q -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - post_install $1 -} Copied: avogadro/repos/extra-i686/avogadro.install (from rev 205470, avogadro/trunk/avogadro.install) === --- avogadro.install(rev 0) +++ avogadro.install2014-02-05 17:31:33 UTC (rev 205471) @@ -0,0 +1,11 @@ +post_install() { + update-desktop-database -q +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} Deleted: boost153.patch === --- boost153.patch 2014-02-05 17:02:20 UTC (rev 205470) +++ boost153.patch 2014-02-05 17:31:33 UTC (rev 205471) @@ -1,60 +0,0 @@ avogadro-1.1.0/libavogadro/src/pythonengine_p.h~ 2013-03-29 12:46:16.306165881 + -+++ avogadro-1.1.0/libavogadro/src/pythonengine_p.h2013-03-29 12:45:43.123089622 + -@@ -27,7 +27,9 @@ - - #include - #include -+#ifndef Q_MOC_RUN - #include -+#endif - - namespace Avogadro { - avogadro-1.1.0/libavogadro/src/pythonextension_p.h~2013-03-29 12:46:32.156043085 + -+++ avogadro-1.1.0/libavogadro/src/pythonextension_p.h 2013-03-29 12:47:07.265771087 + -@@ -29,7 +29,9 @@ - #include - #include - #include -+#ifndef Q_MOC_RUN - #include -+#endif - - #
[arch-commits] Commit in (perl-file-copy-recursive)
Date: Wednesday, February 5, 2014 @ 17:59:45 Author: eric Revision: 205469 Replaced by perl-extutils-makemaker, Removing from repo Deleted: perl-file-copy-recursive/
[arch-commits] Commit in munin/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 18:02:20 Author: eric Revision: 205470 Update depends Modified: munin/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 16:59:45 UTC (rev 205469) +++ PKGBUILD2014-02-05 17:02:20 UTC (rev 205470) @@ -12,7 +12,7 @@ license=("GPL") makedepends=('perl' 'rrdtool' 'perl-log-log4perl' 'perl-html-template' 'perl-date-manip' 'perl-io-socket-inet6' 'perl-net-snmp' - 'perl-net-ssleay' 'perl-net-server' 'perl-file-copy-recursive' + 'perl-net-ssleay' 'perl-net-server' 'perl-extutils-makemaker' 'perl-fcgi' 'perl-uri') source=(http://downloads.sourceforge.net/sourceforge/munin/munin-$pkgver.tar.gz Makefile.config @@ -39,7 +39,7 @@ package_munin() { depends=('perl' 'rrdtool' 'perl-html-template' 'perl-date-manip' 'perl-log-log4perl' 'perl-io-socket-inet6' - 'perl-file-copy-recursive' 'perl-fcgi' 'perl-uri' 'munin-node') + 'perl-extutils-makemaker' 'perl-fcgi' 'perl-uri' 'munin-node') backup=(etc/munin/munin.conf etc/logrotate.d/munin) install=munin.install
[arch-commits] Commit in perl-extutils-makemaker/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, February 5, 2014 @ 17:56:00 Author: eric Revision: 205467 archrelease: copy trunk to extra-any Added: perl-extutils-makemaker/repos/extra-any/PKGBUILD (from rev 205466, perl-extutils-makemaker/trunk/PKGBUILD) Deleted: perl-extutils-makemaker/repos/extra-any/PKGBUILD --+ PKGBUILD | 81 + 1 file changed, 34 insertions(+), 47 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 16:55:29 UTC (rev 205466) +++ PKGBUILD2014-02-05 16:56:00 UTC (rev 205467) @@ -1,47 +0,0 @@ -# $Id$ - -# Contributor: Swift Geek -pkgname=perl-extutils-makemaker -pkgver=6.84 -pkgrel=2 -pkgdesc="ExtUtils::MakeMaker - Create a module Makefile" -arch=('any') -url="http://search.cpan.org/~bingos/ExtUtils-MakeMaker/"; -license=('GPL' 'PerlArtistic') -depends=('perl>=5.10.0') -provides=("perl-extutils-makemaker=${pkgver}" - 'perl-file-copy-recursive') -conflicts=('perl-file-copy-recursive') -replaces=('perl-file-copy-recursive') -options=(!emptydirs) -source=("http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-${pkgver}.tar.gz";) -md5sums=('c0ab3435d3a85a4eaa55265b09aa5799') - -prepare() { - export _src_dir="$srcdir/ExtUtils-MakeMaker-$pkgver" - # Setting these env variables overwrites any command-line-options we don't want... - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps \ -PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ -PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ -MODULEBUILDRC=/dev/null -} - -build() { - cd "$_src_dir" - /usr/bin/perl Makefile.PL - make -} - -check () { - cd "$_src_dir" - make test -} - -package () { - cd "$_src_dir" - make install - - # remove perllocal.pod and .packlist - find "$pkgdir" -name .packlist -o -name perllocal.pod -delete -} - Copied: perl-extutils-makemaker/repos/extra-any/PKGBUILD (from rev 205466, perl-extutils-makemaker/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 16:56:00 UTC (rev 205467) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: + +pkgname=perl-extutils-makemaker +pkgver=6.88 +pkgrel=1 +pkgdesc="ExtUtils::MakeMaker - Create a module Makefile" +arch=('any') +url="http://search.cpan.org/~bingos/ExtUtils-MakeMaker/"; +license=('GPL' 'PerlArtistic') +depends=('perl') +provides=('perl-file-copy-recursive') +conflicts=('perl-file-copy-recursive') +replaces=('perl-file-copy-recursive') +options=('!emptydirs') +source=("http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-${pkgver}.tar.gz";) +sha1sums=('b0876f4d8853cff3842bb1bf07c252a9799028bf') + +build() { + cd ExtUtils-MakeMaker-$pkgver + perl Makefile.PL INSTALLDIRS=vendor + make +} + +check () { + cd ExtUtils-MakeMaker-$pkgver + make test +} + +package () { + cd ExtUtils-MakeMaker-$pkgver + make DESTDIR="${pkgdir}" install +} +
[arch-commits] Commit in perl-extutils-makemaker/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 17:55:29 Author: eric Revision: 205466 upgpkg: perl-extutils-makemaker 6.88-1 Upstream update, Clean up PKGBUILD Modified: perl-extutils-makemaker/trunk/PKGBUILD --+ PKGBUILD | 37 - 1 file changed, 12 insertions(+), 25 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 16:42:48 UTC (rev 205465) +++ PKGBUILD2014-02-05 16:55:29 UTC (rev 205466) @@ -1,47 +1,34 @@ # $Id$ +# Maintainer: -# Contributor: Swift Geek pkgname=perl-extutils-makemaker -pkgver=6.84 -pkgrel=2 +pkgver=6.88 +pkgrel=1 pkgdesc="ExtUtils::MakeMaker - Create a module Makefile" arch=('any') url="http://search.cpan.org/~bingos/ExtUtils-MakeMaker/"; license=('GPL' 'PerlArtistic') -depends=('perl>=5.10.0') -provides=("perl-extutils-makemaker=${pkgver}" - 'perl-file-copy-recursive') +depends=('perl') +provides=('perl-file-copy-recursive') conflicts=('perl-file-copy-recursive') replaces=('perl-file-copy-recursive') -options=(!emptydirs) +options=('!emptydirs') source=("http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-${pkgver}.tar.gz";) -md5sums=('c0ab3435d3a85a4eaa55265b09aa5799') +sha1sums=('b0876f4d8853cff3842bb1bf07c252a9799028bf') -prepare() { - export _src_dir="$srcdir/ExtUtils-MakeMaker-$pkgver" - # Setting these env variables overwrites any command-line-options we don't want... - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps \ -PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ -PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ -MODULEBUILDRC=/dev/null -} - build() { - cd "$_src_dir" - /usr/bin/perl Makefile.PL + cd ExtUtils-MakeMaker-$pkgver + perl Makefile.PL INSTALLDIRS=vendor make } check () { - cd "$_src_dir" + cd ExtUtils-MakeMaker-$pkgver make test } package () { - cd "$_src_dir" - make install - - # remove perllocal.pod and .packlist - find "$pkgdir" -name .packlist -o -name perllocal.pod -delete + cd ExtUtils-MakeMaker-$pkgver + make DESTDIR="${pkgdir}" install }
[arch-commits] Commit in a2ps/repos (34 files)
Date: Wednesday, February 5, 2014 @ 17:42:48 Author: eric Revision: 205465 archrelease: copy trunk to extra-i686, extra-x86_64 Added: a2ps/repos/extra-i686/PKGBUILD (from rev 205464, a2ps/trunk/PKGBUILD) a2ps/repos/extra-i686/a2ps-4.13-manpage-chmod.patch (from rev 205464, a2ps/trunk/a2ps-4.13-manpage-chmod.patch) a2ps/repos/extra-i686/a2ps-4.13-security.patch (from rev 205464, a2ps/trunk/a2ps-4.13-security.patch) a2ps/repos/extra-i686/a2ps-4.13c-emacs.patch (from rev 205464, a2ps/trunk/a2ps-4.13c-emacs.patch) a2ps/repos/extra-i686/a2ps-4.13c-fnmatch-replacement.patch (from rev 205464, a2ps/trunk/a2ps-4.13c-fnmatch-replacement.patch) a2ps/repos/extra-i686/a2ps-4.14-check-mempcpy.patch (from rev 205464, a2ps/trunk/a2ps-4.14-check-mempcpy.patch) a2ps/repos/extra-i686/a2ps-4.14-fix-stpcpy-proto.patch (from rev 205464, a2ps/trunk/a2ps-4.14-fix-stpcpy-proto.patch) a2ps/repos/extra-i686/a2ps-texinfo5.patch (from rev 205464, a2ps/trunk/a2ps-texinfo5.patch) a2ps/repos/extra-i686/a2ps.install (from rev 205464, a2ps/trunk/a2ps.install) a2ps/repos/extra-x86_64/PKGBUILD (from rev 205464, a2ps/trunk/PKGBUILD) a2ps/repos/extra-x86_64/a2ps-4.13-manpage-chmod.patch (from rev 205464, a2ps/trunk/a2ps-4.13-manpage-chmod.patch) a2ps/repos/extra-x86_64/a2ps-4.13-security.patch (from rev 205464, a2ps/trunk/a2ps-4.13-security.patch) a2ps/repos/extra-x86_64/a2ps-4.13c-emacs.patch (from rev 205464, a2ps/trunk/a2ps-4.13c-emacs.patch) a2ps/repos/extra-x86_64/a2ps-4.13c-fnmatch-replacement.patch (from rev 205464, a2ps/trunk/a2ps-4.13c-fnmatch-replacement.patch) a2ps/repos/extra-x86_64/a2ps-4.14-check-mempcpy.patch (from rev 205464, a2ps/trunk/a2ps-4.14-check-mempcpy.patch) a2ps/repos/extra-x86_64/a2ps-4.14-fix-stpcpy-proto.patch (from rev 205464, a2ps/trunk/a2ps-4.14-fix-stpcpy-proto.patch) a2ps/repos/extra-x86_64/a2ps-texinfo5.patch (from rev 205464, a2ps/trunk/a2ps-texinfo5.patch) a2ps/repos/extra-x86_64/a2ps.install (from rev 205464, a2ps/trunk/a2ps.install) Deleted: a2ps/repos/extra-i686/PKGBUILD a2ps/repos/extra-i686/a2ps-4.13-manpage-chmod.patch a2ps/repos/extra-i686/a2ps-4.13c-emacs.patch a2ps/repos/extra-i686/a2ps-4.13c-fnmatch-replacement.patch a2ps/repos/extra-i686/a2ps-4.14-check-mempcpy.patch a2ps/repos/extra-i686/a2ps-4.14-fix-stpcpy-proto.patch a2ps/repos/extra-i686/a2ps-texinfo5.patch a2ps/repos/extra-i686/a2ps.install a2ps/repos/extra-x86_64/PKGBUILD a2ps/repos/extra-x86_64/a2ps-4.13-manpage-chmod.patch a2ps/repos/extra-x86_64/a2ps-4.13c-emacs.patch a2ps/repos/extra-x86_64/a2ps-4.13c-fnmatch-replacement.patch a2ps/repos/extra-x86_64/a2ps-4.14-check-mempcpy.patch a2ps/repos/extra-x86_64/a2ps-4.14-fix-stpcpy-proto.patch a2ps/repos/extra-x86_64/a2ps-texinfo5.patch a2ps/repos/extra-x86_64/a2ps.install ---+ /PKGBUILD | 114 /a2ps-4.13-manpage-chmod.patch| 24 /a2ps-4.13c-emacs.patch | 20 +++ /a2ps-4.13c-fnmatch-replacement.patch | 86 +++ /a2ps-4.14-check-mempcpy.patch| 24 /a2ps-4.14-fix-stpcpy-proto.patch | 34 + /a2ps-texinfo5.patch | 92 /a2ps.install | 40 +++ extra-i686/PKGBUILD | 54 - extra-i686/a2ps-4.13-manpage-chmod.patch | 12 -- extra-i686/a2ps-4.13-security.patch | 65 +++ extra-i686/a2ps-4.13c-emacs.patch | 10 - extra-i686/a2ps-4.13c-fnmatch-replacement.patch | 43 --- extra-i686/a2ps-4.14-check-mempcpy.patch | 12 -- extra-i686/a2ps-4.14-fix-stpcpy-proto.patch | 17 -- extra-i686/a2ps-texinfo5.patch| 46 extra-i686/a2ps.install | 20 --- extra-x86_64/PKGBUILD | 54 - extra-x86_64/a2ps-4.13-manpage-chmod.patch| 12 -- extra-x86_64/a2ps-4.13-security.patch | 65 +++ extra-x86_64/a2ps-4.13c-emacs.patch | 10 - extra-x86_64/a2ps-4.13c-fnmatch-replacement.patch | 43 --- extra-x86_64/a2ps-4.14-check-mempcpy.patch| 12 -- extra-x86_64/a2ps-4.14-fix-stpcpy-proto.patch | 17 -- extra-x86_64/a2ps-texinfo5.patch | 46 extra-x86_64/a2ps.install | 20 --- 26 files changed, 564 insertions(+), 428 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 205464:205465 to see the changes.
[arch-commits] Commit in a2ps/trunk (PKGBUILD a2ps-4.13-security.patch)
Date: Wednesday, February 5, 2014 @ 17:40:49 Author: eric Revision: 205464 upgpkg: a2ps 4.14-6 Add security fix (close FS#38799), Add build fix Added: a2ps/trunk/a2ps-4.13-security.patch Modified: a2ps/trunk/PKGBUILD --+ PKGBUILD | 17 ++- a2ps-4.13-security.patch | 65 + 2 files changed, 75 insertions(+), 7 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 16:17:43 UTC (rev 205463) +++ PKGBUILD2014-02-05 16:40:49 UTC (rev 205464) @@ -3,19 +3,20 @@ pkgname=a2ps pkgver=4.14 -pkgrel=5 +pkgrel=6 pkgdesc="An Any to PostScript filter" arch=('i686' 'x86_64') url="http://www.gnu.org/software/a2ps/"; license=('GPL3') -depends=('ghostscript' 'psutils' 'imagemagick') +depends=('psutils' 'imagemagick') makedepends=('gperf') backup=('etc/a2ps/a2ps.cfg' 'etc/a2ps/a2ps-site.cfg') install=a2ps.install source=(ftp://ftp.gnu.org/gnu/a2ps/${pkgname}-${pkgver}.tar.gz{,.sig} -a2ps-4.13c-fnmatch-replacement.patch a2ps-4.13c-emacs.patch - a2ps-4.13-manpage-chmod.patch a2ps-4.14-check-mempcpy.patch - a2ps-4.14-fix-stpcpy-proto.patch a2ps-texinfo5.patch) +a2ps-4.13c-fnmatch-replacement.patch a2ps-4.13c-emacs.patch + a2ps-4.13-manpage-chmod.patch a2ps-4.14-check-mempcpy.patch + a2ps-4.14-fix-stpcpy-proto.patch a2ps-texinfo5.patch + a2ps-4.13-security.patch) sha1sums=('365abbbe4b7128bf70dad16d06e23c5701874852' 'SKIP' '8783952d3410d8d59ed953e1db45e2ef1a0b8f65' @@ -23,7 +24,8 @@ '2bb3d0a2ef2f3ff9262723e35c742a80ab0235ce' '6aed29c1399e79f3914b408059610f9e7c0fc38e' '58fa90134f1027e3f05aeb08212cbcc10f420738' - '81269db9dd29685b0ece2539070ced3f7a8472df') + '81269db9dd29685b0ece2539070ced3f7a8472df' + '93a4db17edfaa99e3498c7d952c560dab49dbe42') prepare() { cd ${pkgname}-${pkgver} @@ -37,6 +39,7 @@ patch -p1 -i "${srcdir}/a2ps-4.14-check-mempcpy.patch" patch -p0 -i "${srcdir}/a2ps-4.14-fix-stpcpy-proto.patch" patch -p1 -i "${srcdir}/a2ps-texinfo5.patch" + patch -p1 -i "${srcdir}/a2ps-4.13-security.patch" } build() { @@ -43,7 +46,7 @@ cd ${pkgname}-${pkgver} libtoolize --force --copy autoreconf --force --install -I m4 - ./configure --prefix=/usr --sysconfdir=/etc/a2ps \ + LIBS+="-lm" ./configure --prefix=/usr --sysconfdir=/etc/a2ps \ --includedir=/usr/include --enable-shared --enable-nls make } Added: a2ps-4.13-security.patch === --- a2ps-4.13-security.patch(rev 0) +++ a2ps-4.13-security.patch2014-02-05 16:40:49 UTC (rev 205464) @@ -0,0 +1,65 @@ +--- a2ps-4.13/lib/routines.c.security Sat Oct 16 05:46:37 1999 a2ps-4.13/lib/routines.c Mon Feb 12 17:45:15 2001 +@@ -242,3 +242,50 @@ + /* Don't complain if you can't unlink. Who cares of a tmp file? */ + unlink (filename); + } ++ ++/* ++ * Securely generate a temp file, and make sure it gets ++ * deleted upon exit. ++ */ ++static char **tempfiles; ++static unsigned ntempfiles; ++ ++static void ++cleanup_tempfiles() ++{ ++ while (ntempfiles--) ++ unlink(tempfiles[ntempfiles]); ++} ++ ++char * ++safe_tempnam(const char *pfx) ++{ ++ char*dirname, *filename; ++ int fd; ++ ++ if (!(dirname = getenv("TMPDIR"))) ++ dirname = "/tmp"; ++ ++ tempfiles = (char **) realloc(tempfiles, ++ (ntempfiles+1) * sizeof(char *)); ++ if (tempfiles == NULL) ++ return NULL; ++ ++ filename = malloc(strlen(dirname) + strlen(pfx) + sizeof("/XX")); ++ if (!filename) ++ return NULL; ++ ++ sprintf(filename, "%s/%sXX", dirname, pfx); ++ ++ if ((fd = mkstemp(filename)) < 0) { ++ free(filename); ++ return NULL; ++ } ++ close(fd); ++ ++ if (ntempfiles == 0) ++ atexit(cleanup_tempfiles); ++ tempfiles[ntempfiles++] = filename; ++ ++ return filename; ++} +--- a2ps-4.13/lib/routines.h.security Mon Oct 18 21:24:41 1999 a2ps-4.13/lib/routines.h Mon Feb 12 17:39:30 2001 +@@ -255,7 +255,8 @@ + /* If _STR_ is not defined, give it a tempname in _TMPDIR_ */ + #define tempname_ensure(Str) \ + do { \ +- (Str) = (Str) ? (Str) : tempnam (NULL, "a2_"); \ ++ (Str) = (Str) ? (Str) : safe_tempnam("a2_");\ + } while (0) ++char * safe_tempnam(const char *); + + #endif
[arch-commits] Commit in modemmanager/repos (4 files)
Date: Wednesday, February 5, 2014 @ 17:17:43 Author: heftig Revision: 205463 archrelease: copy trunk to extra-i686, extra-x86_64 Added: modemmanager/repos/extra-i686/PKGBUILD (from rev 205462, modemmanager/trunk/PKGBUILD) modemmanager/repos/extra-x86_64/PKGBUILD (from rev 205462, modemmanager/trunk/PKGBUILD) Deleted: modemmanager/repos/extra-i686/PKGBUILD modemmanager/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 96 extra-i686/PKGBUILD | 48 extra-x86_64/PKGBUILD | 48 3 files changed, 96 insertions(+), 96 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-05 16:14:37 UTC (rev 205462) +++ extra-i686/PKGBUILD 2014-02-05 16:17:43 UTC (rev 205463) @@ -1,48 +0,0 @@ -# $Id$ -# Maintainer: Ionut Biru -# Contributor: Jan Alexander Steffens (heftig) - -pkgbase=modemmanager -pkgname=(modemmanager libmm-glib) -pkgver=1.2.0 -pkgrel=1 -pkgdesc="Mobile broadband modem management service" -arch=(i686 x86_64) -url="http://www.freedesktop.org/wiki/Software/ModemManager/"; -license=(GPL2) -depends=(systemd polkit ppp libqmi libmbim) -makedepends=(intltool gtk-doc gobject-introspection vala) -optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') -source=(http://www.freedesktop.org/software/ModemManager/ModemManager-$pkgver.tar.xz) -sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') - -build() { - cd ModemManager-$pkgver - ./configure --prefix=/usr \ ---sysconfdir=/etc \ ---localstatedir=/var \ ---sbindir=/usr/bin \ ---with-udev-base-dir=/usr/lib/udev \ ---with-polkit=permissive \ ---enable-gtk-doc \ ---disable-static - make -} - -package_modemmanager() { - depends+=(libmm-glib) - - cd ModemManager-$pkgver - make DESTDIR="$pkgdir" install - make DESTDIR="$pkgdir" -C libmm-glib uninstall - make DESTDIR="$pkgdir" -C vapi uninstall -} - -package_libmm-glib() { - pkgdesc="ModemManager library" - depends=(glib2) - - cd ModemManager-$pkgver - make DESTDIR="$pkgdir" -C libmm-glib install - make DESTDIR="$pkgdir" -C vapi install -} Copied: modemmanager/repos/extra-i686/PKGBUILD (from rev 205462, modemmanager/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-02-05 16:17:43 UTC (rev 205463) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Ionut Biru +# Contributor: Jan Alexander Steffens (heftig) + +pkgbase=modemmanager +pkgname=(modemmanager libmm-glib) +pkgver=1.2.0 +pkgrel=2 +pkgdesc="Mobile broadband modem management service" +arch=(i686 x86_64) +url="http://www.freedesktop.org/wiki/Software/ModemManager/"; +license=(GPL2 LGPL2.1) +depends=(systemd polkit ppp libqmi libmbim) +makedepends=(intltool gtk-doc gobject-introspection vala) +source=(http://www.freedesktop.org/software/ModemManager/ModemManager-$pkgver.tar.xz) +sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') + +build() { + cd ModemManager-$pkgver + ./configure --prefix=/usr \ +--sysconfdir=/etc \ +--localstatedir=/var \ +--sbindir=/usr/bin \ +--with-udev-base-dir=/usr/lib/udev \ +--with-polkit=permissive \ +--enable-gtk-doc \ +--disable-static + make +} + +package_modemmanager() { + depends+=(libmm-glib) + optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') + + cd ModemManager-$pkgver + make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" -C libmm-glib uninstall + make DESTDIR="$pkgdir" -C vapi uninstall +} + +package_libmm-glib() { + pkgdesc="ModemManager library" + depends=(glib2) + + cd ModemManager-$pkgver + make DESTDIR="$pkgdir" -C libmm-glib install + make DESTDIR="$pkgdir" -C vapi install +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2014-02-05 16:14:37 UTC (rev 205462) +++ extra-x86_64/PKGBUILD 2014-02-05 16:17:43 UTC (rev 205463) @@ -1,48 +0,0 @@ -# $Id$ -# Maintainer: Ionut Biru -# Contributor: Jan Alexander Steffens (heftig) - -pkgbase=modemmanager -pkgname=(modemmanager libmm-glib) -pkgver=1.2.0 -pkgrel=1 -pkgdesc="Mobile broadband modem management service" -arch=(i686 x86_64) -url="http://www.freedesktop.org/wiki/Software/ModemManager/"; -license=(GPL2) -depends=(systemd polkit ppp libqmi libmbim) -makedepends=(intltool gtk-doc gobject-introspection vala) -optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') -source=(http://www.freedesktop.org/software/ModemManager/ModemManager-$pkgver.tar.xz) -sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') - -build() { - cd ModemManager-$pkgver -
[arch-commits] Commit in modemmanager/repos (4 files)
Date: Wednesday, February 5, 2014 @ 17:11:42 Author: heftig Revision: 205461 archrelease: copy trunk to extra-i686, extra-x86_64 Added: modemmanager/repos/extra-i686/PKGBUILD (from rev 205460, modemmanager/trunk/PKGBUILD) modemmanager/repos/extra-x86_64/PKGBUILD (from rev 205460, modemmanager/trunk/PKGBUILD) Deleted: modemmanager/repos/extra-i686/PKGBUILD modemmanager/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 96 extra-i686/PKGBUILD | 48 extra-x86_64/PKGBUILD | 48 3 files changed, 96 insertions(+), 96 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-05 16:08:52 UTC (rev 205460) +++ extra-i686/PKGBUILD 2014-02-05 16:11:42 UTC (rev 205461) @@ -1,48 +0,0 @@ -# $Id$ -# Maintainer: Ionut Biru -# Contributor: Jan Alexander Steffens (heftig) - -pkgbase=ModemManager -pkgname=(modemmanager libmm-glib) -pkgver=1.2.0 -pkgrel=1 -pkgdesc="Mobile broadband modem management service" -arch=(i686 x86_64) -url="http://www.freedesktop.org/wiki/Software/ModemManager/"; -license=(GPL2) -depends=(systemd polkit ppp libqmi libmbim) -makedepends=(intltool gtk-doc gobject-introspection vala) -optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') -source=(http://www.freedesktop.org/software/$pkgbase/$pkgbase-$pkgver.tar.xz) -sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') - -build() { - cd $pkgbase-$pkgver - ./configure --prefix=/usr \ ---sysconfdir=/etc \ ---localstatedir=/var \ ---sbindir=/usr/bin \ ---with-udev-base-dir=/usr/lib/udev \ ---with-polkit=permissive \ ---enable-gtk-doc \ ---disable-static - make -} - -package_modemmanager() { - depends+=(libmm-glib) - - cd $pkgbase-$pkgver - make DESTDIR="$pkgdir" install - make DESTDIR="$pkgdir" -C libmm-glib uninstall - make DESTDIR="$pkgdir" -C vapi uninstall -} - -package_libmm-glib() { - pkgdesc="ModemManager library" - depends=(glib2) - - cd $pkgbase-$pkgver - make DESTDIR="$pkgdir" -C libmm-glib install - make DESTDIR="$pkgdir" -C vapi install -} Copied: modemmanager/repos/extra-i686/PKGBUILD (from rev 205460, modemmanager/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-02-05 16:11:42 UTC (rev 205461) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Ionut Biru +# Contributor: Jan Alexander Steffens (heftig) + +pkgbase=modemmanager +pkgname=(modemmanager libmm-glib) +pkgver=1.2.0 +pkgrel=1 +pkgdesc="Mobile broadband modem management service" +arch=(i686 x86_64) +url="http://www.freedesktop.org/wiki/Software/ModemManager/"; +license=(GPL2) +depends=(systemd polkit ppp libqmi libmbim) +makedepends=(intltool gtk-doc gobject-introspection vala) +optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') +source=(http://www.freedesktop.org/software/ModemManager/ModemManager-$pkgver.tar.xz) +sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') + +build() { + cd ModemManager-$pkgver + ./configure --prefix=/usr \ +--sysconfdir=/etc \ +--localstatedir=/var \ +--sbindir=/usr/bin \ +--with-udev-base-dir=/usr/lib/udev \ +--with-polkit=permissive \ +--enable-gtk-doc \ +--disable-static + make +} + +package_modemmanager() { + depends+=(libmm-glib) + + cd ModemManager-$pkgver + make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" -C libmm-glib uninstall + make DESTDIR="$pkgdir" -C vapi uninstall +} + +package_libmm-glib() { + pkgdesc="ModemManager library" + depends=(glib2) + + cd ModemManager-$pkgver + make DESTDIR="$pkgdir" -C libmm-glib install + make DESTDIR="$pkgdir" -C vapi install +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2014-02-05 16:08:52 UTC (rev 205460) +++ extra-x86_64/PKGBUILD 2014-02-05 16:11:42 UTC (rev 205461) @@ -1,48 +0,0 @@ -# $Id$ -# Maintainer: Ionut Biru -# Contributor: Jan Alexander Steffens (heftig) - -pkgbase=ModemManager -pkgname=(modemmanager libmm-glib) -pkgver=1.2.0 -pkgrel=1 -pkgdesc="Mobile broadband modem management service" -arch=(i686 x86_64) -url="http://www.freedesktop.org/wiki/Software/ModemManager/"; -license=(GPL2) -depends=(systemd polkit ppp libqmi libmbim) -makedepends=(intltool gtk-doc gobject-introspection vala) -optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') -source=(http://www.freedesktop.org/software/$pkgbase/$pkgbase-$pkgver.tar.xz) -sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') - -build() { - cd $pkgbase-$pkgver - ./configure --prefix=/usr \ ---s
[arch-commits] Commit in modemmanager/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 17:14:37 Author: heftig Revision: 205462 Fix license, fix optdepends Modified: modemmanager/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 16:11:42 UTC (rev 205461) +++ PKGBUILD2014-02-05 16:14:37 UTC (rev 205462) @@ -5,14 +5,13 @@ pkgbase=modemmanager pkgname=(modemmanager libmm-glib) pkgver=1.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="Mobile broadband modem management service" arch=(i686 x86_64) url="http://www.freedesktop.org/wiki/Software/ModemManager/"; -license=(GPL2) +license=(GPL2 LGPL2.1) depends=(systemd polkit ppp libqmi libmbim) makedepends=(intltool gtk-doc gobject-introspection vala) -optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') source=(http://www.freedesktop.org/software/ModemManager/ModemManager-$pkgver.tar.xz) sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') @@ -31,6 +30,7 @@ package_modemmanager() { depends+=(libmm-glib) + optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') cd ModemManager-$pkgver make DESTDIR="$pkgdir" install
[arch-commits] Commit in modemmanager/repos (6 files)
Date: Wednesday, February 5, 2014 @ 17:07:39 Author: heftig Revision: 205459 archrelease: copy trunk to extra-i686, extra-x86_64 Added: modemmanager/repos/extra-i686/PKGBUILD (from rev 205458, modemmanager/trunk/PKGBUILD) modemmanager/repos/extra-x86_64/PKGBUILD (from rev 205458, modemmanager/trunk/PKGBUILD) Deleted: modemmanager/repos/extra-i686/PKGBUILD modemmanager/repos/extra-i686/modemmanager.install modemmanager/repos/extra-x86_64/PKGBUILD modemmanager/repos/extra-x86_64/modemmanager.install ---+ /PKGBUILD | 96 extra-i686/PKGBUILD | 35 - extra-i686/modemmanager.install | 13 extra-x86_64/PKGBUILD | 35 - extra-x86_64/modemmanager.install | 13 5 files changed, 96 insertions(+), 96 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-05 16:07:15 UTC (rev 205458) +++ extra-i686/PKGBUILD 2014-02-05 16:07:39 UTC (rev 205459) @@ -1,35 +0,0 @@ -# $Id$ -# Maintainer: Ionut Biru -# Contributor: Jan Alexander Steffens (heftig) - -pkgname=modemmanager -_realname=ModemManager -pkgver=1.0.0 -pkgrel=2 -pkgdesc="Mobile broadband modem management service" -arch=(i686 x86_64) -url="http://www.freedesktop.org/wiki/Software/ModemManager/"; -license=(GPL2) -depends=(udev ppp libqmi libmbim polkit hicolor-icon-theme) -makedepends=(intltool gtk-doc) -optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') -install=modemmanager.install -source=(http://www.freedesktop.org/software/$_realname/$_realname-$pkgver.tar.xz) -sha256sums=('e0f3bbd9a7353f7d87be2391b8718a81d11f9ff8b1c067d640928322f8808563') - -build() { - cd $_realname-$pkgver - ./configure --prefix=/usr \ ---sysconfdir=/etc \ ---localstatedir=/var \ ---sbindir=/usr/bin \ ---with-udev-base-dir=/usr/lib/udev \ ---disable-static \ ---with-polkit=permissive - make -} - -package() { - cd $_realname-$pkgver - make DESTDIR="$pkgdir" install -} Copied: modemmanager/repos/extra-i686/PKGBUILD (from rev 205458, modemmanager/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-02-05 16:07:39 UTC (rev 205459) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Ionut Biru +# Contributor: Jan Alexander Steffens (heftig) + +pkgbase=ModemManager +pkgname=(modemmanager libmm-glib) +pkgver=1.2.0 +pkgrel=1 +pkgdesc="Mobile broadband modem management service" +arch=(i686 x86_64) +url="http://www.freedesktop.org/wiki/Software/ModemManager/"; +license=(GPL2) +depends=(systemd polkit ppp libqmi libmbim) +makedepends=(intltool gtk-doc gobject-introspection vala) +optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') +source=(http://www.freedesktop.org/software/$pkgbase/$pkgbase-$pkgver.tar.xz) +sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') + +build() { + cd $pkgbase-$pkgver + ./configure --prefix=/usr \ +--sysconfdir=/etc \ +--localstatedir=/var \ +--sbindir=/usr/bin \ +--with-udev-base-dir=/usr/lib/udev \ +--with-polkit=permissive \ +--enable-gtk-doc \ +--disable-static + make +} + +package_modemmanager() { + depends+=(libmm-glib) + + cd $pkgbase-$pkgver + make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" -C libmm-glib uninstall + make DESTDIR="$pkgdir" -C vapi uninstall +} + +package_libmm-glib() { + pkgdesc="ModemManager library" + depends=(glib2) + + cd $pkgbase-$pkgver + make DESTDIR="$pkgdir" -C libmm-glib install + make DESTDIR="$pkgdir" -C vapi install +} Deleted: extra-i686/modemmanager.install === --- extra-i686/modemmanager.install 2014-02-05 16:07:15 UTC (rev 205458) +++ extra-i686/modemmanager.install 2014-02-05 16:07:39 UTC (rev 205459) @@ -1,13 +0,0 @@ -post_install() { - if type -P gtk-update-icon-cache &>/dev/null; then -gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor - fi -} - -post_upgrade() { -post_install -} - -post_remove() { -post_install -} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2014-02-05 16:07:15 UTC (rev 205458) +++ extra-x86_64/PKGBUILD 2014-02-05 16:07:39 UTC (rev 205459) @@ -1,35 +0,0 @@ -# $Id$ -# Maintainer: Ionut Biru -# Contributor: Jan Alexander Steffens (heftig) - -pkgname=modemmanager -_realname=ModemManager -pkgver=1.0.0 -pkgrel=2 -pkgdesc="Mobile broadband modem management service" -arch=(i686 x86_64) -url="http://www.freedesktop.org/wiki/Software/ModemManager/"; -license=(GPL2) -depends=(udev ppp libqmi libmbim polkit hicolor-icon-theme) -makedepends=(intlt
[arch-commits] Commit in modemmanager/trunk (PKGBUILD modemmanager.install)
Date: Wednesday, February 5, 2014 @ 17:06:45 Author: heftig Revision: 205457 1.2.0; split out lib; ignore icon Modified: modemmanager/trunk/PKGBUILD Deleted: modemmanager/trunk/modemmanager.install --+ PKGBUILD | 41 +++-- modemmanager.install | 13 - 2 files changed, 27 insertions(+), 27 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 15:22:56 UTC (rev 205456) +++ PKGBUILD2014-02-05 16:06:45 UTC (rev 205457) @@ -2,34 +2,47 @@ # Maintainer: Ionut Biru # Contributor: Jan Alexander Steffens (heftig) -pkgname=modemmanager -_realname=ModemManager -pkgver=1.0.0 -pkgrel=2 +pkgbase=ModemManager +pkgname=(modemmanager libmm-glib) +pkgver=1.2.0 +pkgrel=1 pkgdesc="Mobile broadband modem management service" arch=(i686 x86_64) url="http://www.freedesktop.org/wiki/Software/ModemManager/"; license=(GPL2) -depends=(udev ppp libqmi libmbim polkit hicolor-icon-theme) -makedepends=(intltool gtk-doc) +depends=(systemd polkit ppp libqmi libmbim) +makedepends=(intltool gtk-doc gobject-introspection vala) optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') -install=modemmanager.install -source=(http://www.freedesktop.org/software/$_realname/$_realname-$pkgver.tar.xz) -sha256sums=('e0f3bbd9a7353f7d87be2391b8718a81d11f9ff8b1c067d640928322f8808563') +source=(http://www.freedesktop.org/software/$pkgbase/$pkgbase-$pkgver.tar.xz) +sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') build() { - cd $_realname-$pkgver + cd $pkgbase-$pkgver ./configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --sbindir=/usr/bin \ --with-udev-base-dir=/usr/lib/udev \ ---disable-static \ ---with-polkit=permissive +--with-polkit=permissive \ +--enable-gtk-doc \ +--disable-static make } -package() { - cd $_realname-$pkgver +package_modemmanager() { + depends+=(libmm-glib) + + cd $pkgbase-$pkgver make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" -C libmm-glib uninstall + make DESTDIR="$pkgdir" -C vapi uninstall } + +package_libmm-glib() { + pkgdesc="ModemManager library" + depends=(glib2) + + cd $pkgbase-$pkgver + make DESTDIR="$pkgdir" -C libmm-glib install + make DESTDIR="$pkgdir" -C vapi install +} Deleted: modemmanager.install === --- modemmanager.install2014-02-05 15:22:56 UTC (rev 205456) +++ modemmanager.install2014-02-05 16:06:45 UTC (rev 205457) @@ -1,13 +0,0 @@ -post_install() { - if type -P gtk-update-icon-cache &>/dev/null; then -gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor - fi -} - -post_upgrade() { -post_install -} - -post_remove() { -post_install -}
[arch-commits] Commit in modemmanager/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 17:08:52 Author: heftig Revision: 205460 Fix pkgbase Modified: modemmanager/trunk/PKGBUILD --+ PKGBUILD | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 16:07:39 UTC (rev 205459) +++ PKGBUILD2014-02-05 16:08:52 UTC (rev 205460) @@ -2,7 +2,7 @@ # Maintainer: Ionut Biru # Contributor: Jan Alexander Steffens (heftig) -pkgbase=ModemManager +pkgbase=modemmanager pkgname=(modemmanager libmm-glib) pkgver=1.2.0 pkgrel=1 @@ -13,11 +13,11 @@ depends=(systemd polkit ppp libqmi libmbim) makedepends=(intltool gtk-doc gobject-introspection vala) optdepends=('usb_modeswitch: install if your modem shows up as a storage drive') -source=(http://www.freedesktop.org/software/$pkgbase/$pkgbase-$pkgver.tar.xz) +source=(http://www.freedesktop.org/software/ModemManager/ModemManager-$pkgver.tar.xz) sha256sums=('8bd9d8c3b506f34a9f927e95784026d1fe132c9d60fc426a892b690f7d6408bc') build() { - cd $pkgbase-$pkgver + cd ModemManager-$pkgver ./configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ @@ -32,7 +32,7 @@ package_modemmanager() { depends+=(libmm-glib) - cd $pkgbase-$pkgver + cd ModemManager-$pkgver make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" -C libmm-glib uninstall make DESTDIR="$pkgdir" -C vapi uninstall @@ -42,7 +42,7 @@ pkgdesc="ModemManager library" depends=(glib2) - cd $pkgbase-$pkgver + cd ModemManager-$pkgver make DESTDIR="$pkgdir" -C libmm-glib install make DESTDIR="$pkgdir" -C vapi install }
[arch-commits] Commit in networkmanager/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 17:07:15 Author: heftig Revision: 205458 Reduce modemmanager dep to library Modified: networkmanager/trunk/PKGBUILD --+ PKGBUILD |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 16:06:45 UTC (rev 205457) +++ PKGBUILD2014-02-05 16:07:15 UTC (rev 205458) @@ -14,8 +14,7 @@ arch=('i686' 'x86_64') license=('GPL') url="http://www.gnome.org/projects/$_pkgname/"; -depends=(dbus-glib iproute2 libnl nss polkit udev wpa_supplicant dhcp-client - libsoup systemd modemmanager) +depends=(dbus-glib iproute2 libnl nss polkit wpa_supplicant dhcp-client libsoup systemd libmm-glib) makedepends=(intltool dhcpcd dhclient iptables gobject-introspection gtk-doc git) optdepends=('dhclient: DHCPv6 support' 'dnsmasq: Connection sharing'
[arch-commits] Commit in youtube-dl/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 16:55:36 Author: eric Revision: 105345 upgpkg: youtube-dl 2014.02.04.1-1 Upstream update Modified: youtube-dl/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 15:34:54 UTC (rev 105344) +++ PKGBUILD2014-02-05 15:55:36 UTC (rev 105345) @@ -2,7 +2,7 @@ # Maintainer: Eric Bélanger pkgname=youtube-dl -pkgver=2014.02.04 +pkgver=2014.02.04.1 pkgrel=1 pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites" arch=('any') @@ -12,7 +12,7 @@ optdepends=('ffmpeg: for video post-processing') source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig) -sha1sums=('120be66ea26168e3e5f1a0861bfab905b21782e3' +sha1sums=('44224d35b363f8ff33f3d04fe003c9641592ac00' 'SKIP') prepare() {
[arch-commits] Commit in youtube-dl/repos/community-any (PKGBUILD PKGBUILD)
Date: Wednesday, February 5, 2014 @ 16:56:22 Author: eric Revision: 105346 archrelease: copy trunk to community-any Added: youtube-dl/repos/community-any/PKGBUILD (from rev 105345, youtube-dl/trunk/PKGBUILD) Deleted: youtube-dl/repos/community-any/PKGBUILD --+ PKGBUILD | 58 +- 1 file changed, 29 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 15:55:36 UTC (rev 105345) +++ PKGBUILD2014-02-05 15:56:22 UTC (rev 105346) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Eric Bélanger - -pkgname=youtube-dl -pkgver=2014.02.04 -pkgrel=1 -pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites" -arch=('any') -url="http://rg3.github.io/youtube-dl/"; -license=('custom') -depends=('python' 'python-setuptools') -optdepends=('ffmpeg: for video post-processing') -source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz - http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig) -sha1sums=('120be66ea26168e3e5f1a0861bfab905b21782e3' - 'SKIP') - -prepare() { - cd ${pkgname} - sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py -} - -package() { - cd ${pkgname} - python setup.py install --root="${pkgdir}/" --optimize=1 - mv "${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \ -"${pkgdir}/usr/share/bash-completion/completions/youtube-dl" - install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 105345, youtube-dl/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 15:56:22 UTC (rev 105346) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Eric Bélanger + +pkgname=youtube-dl +pkgver=2014.02.04.1 +pkgrel=1 +pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites" +arch=('any') +url="http://rg3.github.io/youtube-dl/"; +license=('custom') +depends=('python' 'python-setuptools') +optdepends=('ffmpeg: for video post-processing') +source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz + http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig) +sha1sums=('44224d35b363f8ff33f3d04fe003c9641592ac00' + 'SKIP') + +prepare() { + cd ${pkgname} + sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py +} + +package() { + cd ${pkgname} + python setup.py install --root="${pkgdir}/" --optimize=1 + mv "${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \ +"${pkgdir}/usr/share/bash-completion/completions/youtube-dl" + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +}
[arch-commits] Commit in the_silver_searcher/repos (4 files)
Date: Wednesday, February 5, 2014 @ 16:34:54 Author: arodseth Revision: 105344 archrelease: copy trunk to community-x86_64, community-i686 Added: the_silver_searcher/repos/community-i686/PKGBUILD (from rev 105343, the_silver_searcher/trunk/PKGBUILD) the_silver_searcher/repos/community-x86_64/PKGBUILD (from rev 105343, the_silver_searcher/trunk/PKGBUILD) Deleted: the_silver_searcher/repos/community-i686/PKGBUILD the_silver_searcher/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 66 community-i686/PKGBUILD | 35 --- community-x86_64/PKGBUILD | 35 --- 3 files changed, 66 insertions(+), 70 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-05 15:34:45 UTC (rev 105343) +++ community-i686/PKGBUILD 2014-02-05 15:34:54 UTC (rev 105344) @@ -1,35 +0,0 @@ -# $Id$ -# Maintainer: Alexander Rødseth -# Contributor: Jeff Horelick -# Contributor: skydrome - -pkgname=the_silver_searcher -pkgver=0.19.1 -pkgrel=1 -pkgdesc='Code searching tool similar to Ack, but faster' -url='https://github.com/ggreer/the_silver_searcher' -license=('Apache') -depends=('pcre' 'zlib' 'xz') -arch=('x86_64' 'i686') -source=("$pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz";) -sha256sums=('698cde7a8170ef1623f594d251aac846e720dc257c170f9c21102b3f2f1d4448') - -prepare() { - cd "$pkgname-$pkgver" - - sed -i 's:configure:configure --prefix=/usr:' build.sh -} - -build() { - cd "$pkgname-$pkgver" - - ./build.sh -} - -package() { - cd "$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: the_silver_searcher/repos/community-i686/PKGBUILD (from rev 105343, the_silver_searcher/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-05 15:34:54 UTC (rev 105344) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Alexander Rødseth +# Contributor: Jeff Horelick +# Contributor: skydrome + +pkgname=the_silver_searcher +pkgver=0.19.2 +pkgrel=1 +pkgdesc='Code searching tool similar to Ack, but faster' +url='https://github.com/ggreer/the_silver_searcher' +license=('Apache') +depends=('pcre' 'zlib' 'xz') +arch=('x86_64' 'i686') +source=("$pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz";) +sha256sums=('e2de31b8b4745b4614d3a6fa4cd61130474b0e861e80b3784daee7ce0eeca300') + +prepare() { + cd "$pkgname-$pkgver" + + sed -i 's:configure:configure --prefix=/usr:' build.sh +} + +build() { + cd "$pkgname-$pkgver" + + ./build.sh +} + +package() { + make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2014-02-05 15:34:45 UTC (rev 105343) +++ community-x86_64/PKGBUILD 2014-02-05 15:34:54 UTC (rev 105344) @@ -1,35 +0,0 @@ -# $Id$ -# Maintainer: Alexander Rødseth -# Contributor: Jeff Horelick -# Contributor: skydrome - -pkgname=the_silver_searcher -pkgver=0.19.1 -pkgrel=1 -pkgdesc='Code searching tool similar to Ack, but faster' -url='https://github.com/ggreer/the_silver_searcher' -license=('Apache') -depends=('pcre' 'zlib' 'xz') -arch=('x86_64' 'i686') -source=("$pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz";) -sha256sums=('698cde7a8170ef1623f594d251aac846e720dc257c170f9c21102b3f2f1d4448') - -prepare() { - cd "$pkgname-$pkgver" - - sed -i 's:configure:configure --prefix=/usr:' build.sh -} - -build() { - cd "$pkgname-$pkgver" - - ./build.sh -} - -package() { - cd "$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: the_silver_searcher/repos/community-x86_64/PKGBUILD (from rev 105343, the_silver_searcher/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2014-02-05 15:34:54 UTC (rev 105344) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Alexander Rødseth +# Contributor: Jeff Horelick +# Contributor: skydrome + +pkgname=the_silver_searcher +pkgver=0.19.2 +pkgrel=1 +pkgdesc='Code searching tool similar to Ack, but faster' +url='https://github.com/ggreer/the_silver_searcher' +license=('Apache') +depends=('pcre' 'zlib' 'xz') +arch=('x86_64' 'i686') +source=("$pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz";) +sha256sums=('e2de31b8b4745b4614d3a6fa4cd61130474b0e861e80b3784daee7ce0eeca300') + +prepare() { + cd "$pkgname-$pkgver" + + sed -i 's:configure:configure --prefix=/usr:' build.sh +} + +build() { + cd "$pkgname-$pkgver" + + ./build.sh +} + +package() { + ma
[arch-commits] Commit in the_silver_searcher/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 16:34:45 Author: arodseth Revision: 105343 upgpkg: the_silver_searcher 0.19.2-1 Modified: the_silver_searcher/trunk/PKGBUILD --+ PKGBUILD |8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 15:26:52 UTC (rev 105342) +++ PKGBUILD2014-02-05 15:34:45 UTC (rev 105343) @@ -4,7 +4,7 @@ # Contributor: skydrome pkgname=the_silver_searcher -pkgver=0.19.1 +pkgver=0.19.2 pkgrel=1 pkgdesc='Code searching tool similar to Ack, but faster' url='https://github.com/ggreer/the_silver_searcher' @@ -12,7 +12,7 @@ depends=('pcre' 'zlib' 'xz') arch=('x86_64' 'i686') source=("$pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz";) -sha256sums=('698cde7a8170ef1623f594d251aac846e720dc257c170f9c21102b3f2f1d4448') +sha256sums=('e2de31b8b4745b4614d3a6fa4cd61130474b0e861e80b3784daee7ce0eeca300') prepare() { cd "$pkgname-$pkgver" @@ -27,9 +27,7 @@ } package() { - cd "$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install + make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-simplejson/repos (6 files)
Date: Wednesday, February 5, 2014 @ 16:26:52 Author: arodseth Revision: 105342 archrelease: copy trunk to community-x86_64, community-i686 Added: python-simplejson/repos/community-i686/PKGBUILD (from rev 105341, python-simplejson/trunk/PKGBUILD) python-simplejson/repos/community-x86_64/PKGBUILD (from rev 105341, python-simplejson/trunk/PKGBUILD) Deleted: python-simplejson/repos/community-i686/PKGBUILD python-simplejson/repos/community-i686/python-simplejson.changelog python-simplejson/repos/community-x86_64/PKGBUILD python-simplejson/repos/community-x86_64/python-simplejson.changelog --+ /PKGBUILD| 74 + community-i686/PKGBUILD | 37 community-i686/python-simplejson.changelog | 20 -- community-x86_64/PKGBUILD| 37 community-x86_64/python-simplejson.changelog | 20 -- 5 files changed, 74 insertions(+), 114 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-05 15:26:40 UTC (rev 105341) +++ community-i686/PKGBUILD 2014-02-05 15:26:52 UTC (rev 105342) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Alexander Rødseth -# Contributor: Jaroslav Lichtblau -# Contributor: Allan McRae -# Contributor: David Moore - -pkgbase=python-simplejson -pkgname=("$pkgbase" 'python2-simplejson') -pkgver=3.3.0 -pkgrel=1 -pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python' -license=('MIT') -arch=('x86_64' 'i686') -url='http://undefined.org/python/#simplejson' -makedepends=('python' 'python2-distribute') -source=("$pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver}";) -sha256sums=('ed7e700a9b689f81e54738d796ce456eca12481412f198d44d42f69d8d6f9a82') - -package_python-simplejson() { - depends=('python') - - cd "$srcdir/simplejson-simplejson-"* - python setup.py install --root="$pkgdir" - install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ -"$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -package_python2-simplejson() { - depends=('python2') - - cd "$srcdir/simplejson-simplejson-"* - python2 setup.py install --root="$pkgdir" - install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ -"$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: Copied: python-simplejson/repos/community-i686/PKGBUILD (from rev 105341, python-simplejson/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-05 15:26:52 UTC (rev 105342) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Alexander Rødseth +# Contributor: Jaroslav Lichtblau +# Contributor: Allan McRae +# Contributor: David Moore + +pkgbase=python-simplejson +pkgname=("$pkgbase" 'python2-simplejson') +pkgver=3.3.2 +pkgrel=1 +pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python' +license=('MIT') +arch=('x86_64' 'i686') +url='http://undefined.org/python/#simplejson' +makedepends=('python-setuptools' 'python2-setuptools') +source=("$pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver}";) +sha256sums=('ecff7508cb34547de611c5b367ad1ff74290f638f29853be5801823e1565592c') + +package_python-simplejson() { + depends=('python') + + cd "simplejson-simplejson-"* + python setup.py install --root="$pkgdir" + install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ +"$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +package_python2-simplejson() { + depends=('python2') + + cd "simplejson-simplejson-"* + python2 setup.py install --root="$pkgdir" + install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ +"$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et: Deleted: community-i686/python-simplejson.changelog === --- community-i686/python-simplejson.changelog 2014-02-05 15:26:40 UTC (rev 105341) +++ community-i686/python-simplejson.changelog 2014-02-05 15:26:52 UTC (rev 105342) @@ -1,20 +0,0 @@ -2012-07-09 Jaroslav Lichtblau - * python-simplejson 2.6.1-1 - -2012-05-24 Jaroslav Lichtblau - * python-simplejson 2.5.2-1 - -2012-03-08 Jaroslav Lichtblau - * python-simplejson 2.3.3-1 - -2011-10-26 Jaroslav Lichtblau - * python-simplejson 2.2.1-1 - -2011-05-01 Jaroslav Lichtblau - * python-simplejson 2.1.3-1 - -2010-05-15 Jaroslav Lichtblau - * Update to major release 2.1.1 - -2010-03-27 Jaroslav Lichtblau - * Update to major release 2.1.0 Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2014-02-05 15:26:40 UTC (rev 105341) +++ community-x86_64/PKGBUILD 2014-02-05 15:26:52 UTC (rev
[arch-commits] Commit in python-simplejson/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 16:26:40 Author: arodseth Revision: 105341 upgpkg: python-simplejson 3.3.2-1 Modified: python-simplejson/trunk/PKGBUILD --+ PKGBUILD | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 15:22:50 UTC (rev 105340) +++ PKGBUILD2014-02-05 15:26:40 UTC (rev 105341) @@ -6,8 +6,8 @@ pkgbase=python-simplejson pkgname=("$pkgbase" 'python2-simplejson') -pkgver=3.3.0 -pkgrel=2 +pkgver=3.3.2 +pkgrel=1 pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python' license=('MIT') arch=('x86_64' 'i686') @@ -14,12 +14,12 @@ url='http://undefined.org/python/#simplejson' makedepends=('python-setuptools' 'python2-setuptools') source=("$pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver}";) -sha256sums=('ed7e700a9b689f81e54738d796ce456eca12481412f198d44d42f69d8d6f9a82') +sha256sums=('ecff7508cb34547de611c5b367ad1ff74290f638f29853be5801823e1565592c') package_python-simplejson() { depends=('python') - cd "$srcdir/simplejson-simplejson-"* + cd "simplejson-simplejson-"* python setup.py install --root="$pkgdir" install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ "$pkgdir/usr/share/licenses/$pkgname/LICENSE" @@ -28,7 +28,7 @@ package_python2-simplejson() { depends=('python2') - cd "$srcdir/simplejson-simplejson-"* + cd "simplejson-simplejson-"* python2 setup.py install --root="$pkgdir" install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
[arch-commits] Commit in python-pexpect/repos/community-any (PKGBUILD PKGBUILD)
Date: Wednesday, February 5, 2014 @ 16:22:50 Author: arodseth Revision: 105340 archrelease: copy trunk to community-any Added: python-pexpect/repos/community-any/PKGBUILD (from rev 105339, python-pexpect/trunk/PKGBUILD) Deleted: python-pexpect/repos/community-any/PKGBUILD --+ PKGBUILD | 76 ++--- 1 file changed, 38 insertions(+), 38 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 15:22:43 UTC (rev 105339) +++ PKGBUILD2014-02-05 15:22:50 UTC (rev 105340) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Alexander Rødseth -# Contributor: Aaron Schaefer - -pkgname=('python-pexpect' 'python2-pexpect') -pkgver=3.0 -pkgrel=1 -pkgdesc='Make Python a better tool for controlling and automating other programs' -arch=('any') -url='http://pexpect.readthedocs.org/en/latest/' -license=('MIT') -makedepends=('python' 'python2') -conflicts=('python-pexpect<=2.4') -replaces=('python-pexpect<=2.4') -source=("http://pypi.python.org/packages/source/p/pexpect/pexpect-$pkgver.tar.gz";) -sha256sums=('1d6cee0fa5ab212f9ddac9852bab0df5fff11a173ed1bfde9346d5c8aa42d14c') - -prepare() { - cp -r "pexpect-$pkgver" "python2-pexpect-$pkgver" - sed -i 's:env python:env python2:' "python2-pexpect-$pkgver/pexpect/FSM.py" -} - -package_python-pexpect() { - depends+=('python') - cd "pexpect-$pkgver" - python setup.py install --root="$pkgdir" - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - - -package_python2-pexpect() { - depends+=('python2') - cd "python2-pexpect-$pkgver" - python2 setup.py install --root="$pkgdir" - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: Copied: python-pexpect/repos/community-any/PKGBUILD (from rev 105339, python-pexpect/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 15:22:50 UTC (rev 105340) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Alexander Rødseth +# Contributor: Aaron Schaefer + +pkgname=('python-pexpect' 'python2-pexpect') +pkgver=3.1 +pkgrel=1 +pkgdesc='Make Python a better tool for controlling and automating other programs' +arch=('any') +url='http://pexpect.readthedocs.org/en/latest/' +license=('MIT') +makedepends=('python' 'python2') +conflicts=('python-pexpect<=2.4') +replaces=('python-pexpect<=2.4') +source=("http://pypi.python.org/packages/source/p/pexpect/pexpect-$pkgver.tar.gz";) +sha256sums=('bd0045066718fba98481032303f07565cca6b22b3b7f104efe3e077a55e9ee8d') + +prepare() { + cp -r "pexpect-$pkgver" "python2-pexpect-$pkgver" + sed -i 's:env python:env python2:' "python2-pexpect-$pkgver/pexpect/FSM.py" +} + +package_python-pexpect() { + depends+=('python') + cd "pexpect-$pkgver" + python setup.py install --root="$pkgdir" + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + + +package_python2-pexpect() { + depends+=('python2') + cd "python2-pexpect-$pkgver" + python2 setup.py install --root="$pkgdir" + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-pexpect/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 16:22:43 Author: arodseth Revision: 105339 upgpkg: python-pexpect 3.1-1 Modified: python-pexpect/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 14:17:55 UTC (rev 105338) +++ PKGBUILD2014-02-05 15:22:43 UTC (rev 105339) @@ -3,7 +3,7 @@ # Contributor: Aaron Schaefer pkgname=('python-pexpect' 'python2-pexpect') -pkgver=3.0 +pkgver=3.1 pkgrel=1 pkgdesc='Make Python a better tool for controlling and automating other programs' arch=('any') @@ -13,7 +13,7 @@ conflicts=('python-pexpect<=2.4') replaces=('python-pexpect<=2.4') source=("http://pypi.python.org/packages/source/p/pexpect/pexpect-$pkgver.tar.gz";) -sha256sums=('1d6cee0fa5ab212f9ddac9852bab0df5fff11a173ed1bfde9346d5c8aa42d14c') +sha256sums=('bd0045066718fba98481032303f07565cca6b22b3b7f104efe3e077a55e9ee8d') prepare() { cp -r "pexpect-$pkgver" "python2-pexpect-$pkgver"
[arch-commits] Commit in libmbim/repos (4 files)
Date: Wednesday, February 5, 2014 @ 16:22:56 Author: heftig Revision: 205456 archrelease: copy trunk to extra-i686, extra-x86_64 Added: libmbim/repos/extra-i686/PKGBUILD (from rev 205455, libmbim/trunk/PKGBUILD) libmbim/repos/extra-x86_64/PKGBUILD (from rev 205455, libmbim/trunk/PKGBUILD) Deleted: libmbim/repos/extra-i686/PKGBUILD libmbim/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 62 extra-i686/PKGBUILD | 31 extra-x86_64/PKGBUILD | 31 3 files changed, 62 insertions(+), 62 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2014-02-05 15:22:32 UTC (rev 205455) +++ extra-i686/PKGBUILD 2014-02-05 15:22:56 UTC (rev 205456) @@ -1,31 +0,0 @@ -# $Id$ -# Maintainer: Jan Alexander Steffens (heftig) - -pkgname=libmbim -pkgver=1.4.0 -pkgrel=1 -pkgdesc="MBIM modem protocol helper library" -arch=(i686 x86_64) -url="http://www.freedesktop.org/wiki/Software/libmbim/"; -license=(GPL2) -depends=(glib2 bash systemd) -makedepends=(gtk-doc python) -source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('a7fa909df229574eb11baac89075ac1366a2ac1670f586483bdf0173257cf781') - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ ---disable-static - make -} - -check() { - cd $pkgname-$pkgver - make check -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install -} Copied: libmbim/repos/extra-i686/PKGBUILD (from rev 205455, libmbim/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2014-02-05 15:22:56 UTC (rev 205456) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) + +pkgname=libmbim +pkgver=1.6.0 +pkgrel=1 +pkgdesc="MBIM modem protocol helper library" +arch=(i686 x86_64) +url="http://www.freedesktop.org/wiki/Software/libmbim/"; +license=(GPL2) +depends=(glib2 bash systemd) +makedepends=(gtk-doc python) +source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('e0efbdaf2aeddec033b4c7c5d0f7934c91ce535c5c9f0cadf1e67527d10ab082') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ +--disable-static --with-tests --libexecdir=/usr/lib + make +} + +check() { + cd $pkgname-$pkgver + make check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2014-02-05 15:22:32 UTC (rev 205455) +++ extra-x86_64/PKGBUILD 2014-02-05 15:22:56 UTC (rev 205456) @@ -1,31 +0,0 @@ -# $Id$ -# Maintainer: Jan Alexander Steffens (heftig) - -pkgname=libmbim -pkgver=1.4.0 -pkgrel=1 -pkgdesc="MBIM modem protocol helper library" -arch=(i686 x86_64) -url="http://www.freedesktop.org/wiki/Software/libmbim/"; -license=(GPL2) -depends=(glib2 bash systemd) -makedepends=(gtk-doc python) -source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('a7fa909df229574eb11baac89075ac1366a2ac1670f586483bdf0173257cf781') - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ ---disable-static - make -} - -check() { - cd $pkgname-$pkgver - make check -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install -} Copied: libmbim/repos/extra-x86_64/PKGBUILD (from rev 205455, libmbim/trunk/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2014-02-05 15:22:56 UTC (rev 205456) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) + +pkgname=libmbim +pkgver=1.6.0 +pkgrel=1 +pkgdesc="MBIM modem protocol helper library" +arch=(i686 x86_64) +url="http://www.freedesktop.org/wiki/Software/libmbim/"; +license=(GPL2) +depends=(glib2 bash systemd) +makedepends=(gtk-doc python) +source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('e0efbdaf2aeddec033b4c7c5d0f7934c91ce535c5c9f0cadf1e67527d10ab082') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ +--disable-static --with-tests --libexecdir=/usr/lib + make +} + +check() { + cd $pkgname-$pkgver + make check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +}
[arch-commits] Commit in libmbim/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 16:22:32 Author: heftig Revision: 205455 1.6.0 Modified: libmbim/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 13:22:17 UTC (rev 205454) +++ PKGBUILD2014-02-05 15:22:32 UTC (rev 205455) @@ -2,7 +2,7 @@ # Maintainer: Jan Alexander Steffens (heftig) pkgname=libmbim -pkgver=1.4.0 +pkgver=1.6.0 pkgrel=1 pkgdesc="MBIM modem protocol helper library" arch=(i686 x86_64) @@ -11,12 +11,12 @@ depends=(glib2 bash systemd) makedepends=(gtk-doc python) source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz) -sha256sums=('a7fa909df229574eb11baac89075ac1366a2ac1670f586483bdf0173257cf781') +sha256sums=('e0efbdaf2aeddec033b4c7c5d0f7934c91ce535c5c9f0cadf1e67527d10ab082') build() { cd $pkgname-$pkgver ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ ---disable-static +--disable-static --with-tests --libexecdir=/usr/lib make }
[arch-commits] Commit in pcsx2/repos/multilib-x86_64 (PKGBUILD PKGBUILD)
Date: Wednesday, February 5, 2014 @ 15:17:55 Author: alucryd Revision: 105338 archrelease: copy trunk to multilib-x86_64 Added: pcsx2/repos/multilib-x86_64/PKGBUILD (from rev 105337, pcsx2/trunk/PKGBUILD) Deleted: pcsx2/repos/multilib-x86_64/PKGBUILD --+ PKGBUILD | 106 ++--- 1 file changed, 53 insertions(+), 53 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 13:51:30 UTC (rev 105337) +++ PKGBUILD2014-02-05 14:17:55 UTC (rev 105338) @@ -1,53 +0,0 @@ -# $Id$ -# Maintainer: Maxime Gauduin -# Contributor: josephgbr -# Contributor: vEX - -pkgname=pcsx2 -pkgver=1.2.0 -pkgrel=1 -pkgdesc='A Sony PlayStation 2 emulator' -arch=('i686' 'x86_64') -url='http://www.pcsx2.net' -license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3') -makedepends=('cmake' 'sparsehash' 'svn') -if [[ $CARCH == "i686" ]]; then - depends=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit' 'portaudio' 'sdl2' 'soundtouch' 'wxgtk2.8') -elif [[ $CARCH == "x86_64" ]]; then - makedepends+=('gcc-multilib' 'lib32-glew' 'lib32-libaio' 'lib32-libcanberra' 'lib32-libjpeg-turbo' 'lib32-mesa-libgl' 'lib32-nvidia-cg-toolkit' 'lib32-portaudio' 'lib32-sdl2' 'lib32-soundtouch' 'lib32-wxgtk2.8') -fi -options=('!emptydirs') -source=("${pkgname}-${pkgver}::svn+http://pcsx2.googlecode.com/svn/tags/v${pkgver%.?}";) -sha256sums=('SKIP') - -build() { - cd ${pkgname}-${pkgver} - - if [[ -d build ]]; then -rm -rf build - fi - mkdir build && cd build - - if [[ $CARCH == "i686" ]]; then -cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' -D{GLSL_API,PACKAGE_MODE,REBUILD_SHADER,SDL2_API,XDG_STD}=TRUE -DPLUGIN_DIR='/usr/lib/pcsx2' -DGAMEINDEX_DIR='/usr/share/pcsx2' -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-2.8' -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc-2.8' - elif [[ $CARCH == "x86_64" ]]; then -export CC='gcc -m32' -export CXX='g++ -m32' -export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' -cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' -D{GLSL_API,PACKAGE_MODE,REBUILD_SHADER,SDL2_API,XDG_STD}=TRUE -DPLUGIN_DIR='/usr/lib32/pcsx2' -DGAMEINDEX_DIR='/usr/share/pcsx2' -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config32-2.8' -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc32-2.8' -DCMAKE_LIBRARY_PATH='/usr/lib32' - fi - - make -} - -package() { - cd ${pkgname}-${pkgver}/build - - if [[ $CARCH == "x86_64" ]]; then -depends=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra' 'lib32-libjpeg-turbo' 'lib32-nvidia-cg-toolkit' 'lib32-portaudio' 'lib32-sdl2' 'lib32-soundtouch' 'lib32-wxgtk2.8') - fi - - make DESTDIR="${pkgdir}" install -} - -# vim: ts=2 sw=2 et: Copied: pcsx2/repos/multilib-x86_64/PKGBUILD (from rev 105337, pcsx2/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 14:17:55 UTC (rev 105338) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: josephgbr +# Contributor: vEX + +pkgname=pcsx2 +pkgver=1.2.1 +pkgrel=1 +pkgdesc='A Sony PlayStation 2 emulator' +arch=('i686' 'x86_64') +url='http://www.pcsx2.net' +license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3') +makedepends=('cmake' 'sparsehash') +if [[ $CARCH == "i686" ]]; then + depends=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit' 'portaudio' 'sdl2' 'soundtouch' 'wxgtk2.8') +elif [[ $CARCH == "x86_64" ]]; then + makedepends+=('gcc-multilib' 'lib32-glew' 'lib32-libaio' 'lib32-libcanberra' 'lib32-libjpeg-turbo' 'lib32-mesa-libgl' 'lib32-nvidia-cg-toolkit' 'lib32-portaudio' 'lib32-sdl2' 'lib32-soundtouch' 'lib32-wxgtk2.8') +fi +options=('!emptydirs') +source=("https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz";) +sha256sums=('965d0fc589dfc63934adc7214b069746b994cdcfd65ab3bb708c4ac6307b1162') + +build() { + cd ${pkgname}-${pkgver} + + if [[ -d build ]]; then +rm -rf build + fi + mkdir build && cd build + + if [[ $CARCH == "i686" ]]; then +cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' -D{GLSL_API,PACKAGE_MODE,REBUILD_SHADER,SDL2_API,XDG_STD}=TRUE -DPLUGIN_DIR='/usr/lib/pcsx2' -DGAMEINDEX_DIR='/usr/share/pcsx2' -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-2.8' -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc-2.8' + elif [[ $CARCH == "x86_64" ]]; then +export CC='gcc -m32' +export CXX='g++ -m32' +export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' +cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' -D{GLSL_API,PACKAGE_MODE,REBUILD_SHADER,SDL2_API,XDG_STD}=TRUE -DPLUGIN_DIR='/usr/lib32/pcsx2' -DGAMEINDEX_DIR='/usr/share/pcsx2' -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config32-2.8' -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc32-2.8' -DCMAKE_LIBRARY_PATH='/usr/lib32' + fi + + make +} + +package() { + cd ${pkgname}-${pkgver}/build + + if [[ $CARCH == "x8
[arch-commits] Commit in pcsx2/repos/community-i686 (PKGBUILD PKGBUILD)
Date: Wednesday, February 5, 2014 @ 14:51:30 Author: alucryd Revision: 105337 archrelease: copy trunk to community-i686 Added: pcsx2/repos/community-i686/PKGBUILD (from rev 105336, pcsx2/trunk/PKGBUILD) Deleted: pcsx2/repos/community-i686/PKGBUILD --+ PKGBUILD | 106 ++--- 1 file changed, 53 insertions(+), 53 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 13:51:22 UTC (rev 105336) +++ PKGBUILD2014-02-05 13:51:30 UTC (rev 105337) @@ -1,53 +0,0 @@ -# $Id$ -# Maintainer: Maxime Gauduin -# Contributor: josephgbr -# Contributor: vEX - -pkgname=pcsx2 -pkgver=1.2.0 -pkgrel=1 -pkgdesc='A Sony PlayStation 2 emulator' -arch=('i686' 'x86_64') -url='http://www.pcsx2.net' -license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3') -makedepends=('cmake' 'sparsehash' 'svn') -if [[ $CARCH == "i686" ]]; then - depends=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit' 'portaudio' 'sdl2' 'soundtouch' 'wxgtk2.8') -elif [[ $CARCH == "x86_64" ]]; then - makedepends+=('gcc-multilib' 'lib32-glew' 'lib32-libaio' 'lib32-libcanberra' 'lib32-libjpeg-turbo' 'lib32-mesa-libgl' 'lib32-nvidia-cg-toolkit' 'lib32-portaudio' 'lib32-sdl2' 'lib32-soundtouch' 'lib32-wxgtk2.8') -fi -options=('!emptydirs') -source=("${pkgname}-${pkgver}::svn+http://pcsx2.googlecode.com/svn/tags/v${pkgver%.?}";) -sha256sums=('SKIP') - -build() { - cd ${pkgname}-${pkgver} - - if [[ -d build ]]; then -rm -rf build - fi - mkdir build && cd build - - if [[ $CARCH == "i686" ]]; then -cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' -D{GLSL_API,PACKAGE_MODE,REBUILD_SHADER,SDL2_API,XDG_STD}=TRUE -DPLUGIN_DIR='/usr/lib/pcsx2' -DGAMEINDEX_DIR='/usr/share/pcsx2' -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-2.8' -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc-2.8' - elif [[ $CARCH == "x86_64" ]]; then -export CC='gcc -m32' -export CXX='g++ -m32' -export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' -cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' -D{GLSL_API,PACKAGE_MODE,REBUILD_SHADER,SDL2_API,XDG_STD}=TRUE -DPLUGIN_DIR='/usr/lib32/pcsx2' -DGAMEINDEX_DIR='/usr/share/pcsx2' -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config32-2.8' -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc32-2.8' -DCMAKE_LIBRARY_PATH='/usr/lib32' - fi - - make -} - -package() { - cd ${pkgname}-${pkgver}/build - - if [[ $CARCH == "x86_64" ]]; then -depends=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra' 'lib32-libjpeg-turbo' 'lib32-nvidia-cg-toolkit' 'lib32-portaudio' 'lib32-sdl2' 'lib32-soundtouch' 'lib32-wxgtk2.8') - fi - - make DESTDIR="${pkgdir}" install -} - -# vim: ts=2 sw=2 et: Copied: pcsx2/repos/community-i686/PKGBUILD (from rev 105336, pcsx2/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 13:51:30 UTC (rev 105337) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: josephgbr +# Contributor: vEX + +pkgname=pcsx2 +pkgver=1.2.1 +pkgrel=1 +pkgdesc='A Sony PlayStation 2 emulator' +arch=('i686' 'x86_64') +url='http://www.pcsx2.net' +license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3') +makedepends=('cmake' 'sparsehash') +if [[ $CARCH == "i686" ]]; then + depends=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit' 'portaudio' 'sdl2' 'soundtouch' 'wxgtk2.8') +elif [[ $CARCH == "x86_64" ]]; then + makedepends+=('gcc-multilib' 'lib32-glew' 'lib32-libaio' 'lib32-libcanberra' 'lib32-libjpeg-turbo' 'lib32-mesa-libgl' 'lib32-nvidia-cg-toolkit' 'lib32-portaudio' 'lib32-sdl2' 'lib32-soundtouch' 'lib32-wxgtk2.8') +fi +options=('!emptydirs') +source=("https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz";) +sha256sums=('965d0fc589dfc63934adc7214b069746b994cdcfd65ab3bb708c4ac6307b1162') + +build() { + cd ${pkgname}-${pkgver} + + if [[ -d build ]]; then +rm -rf build + fi + mkdir build && cd build + + if [[ $CARCH == "i686" ]]; then +cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' -D{GLSL_API,PACKAGE_MODE,REBUILD_SHADER,SDL2_API,XDG_STD}=TRUE -DPLUGIN_DIR='/usr/lib/pcsx2' -DGAMEINDEX_DIR='/usr/share/pcsx2' -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-2.8' -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc-2.8' + elif [[ $CARCH == "x86_64" ]]; then +export CC='gcc -m32' +export CXX='g++ -m32' +export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' +cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' -D{GLSL_API,PACKAGE_MODE,REBUILD_SHADER,SDL2_API,XDG_STD}=TRUE -DPLUGIN_DIR='/usr/lib32/pcsx2' -DGAMEINDEX_DIR='/usr/share/pcsx2' -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config32-2.8' -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc32-2.8' -DCMAKE_LIBRARY_PATH='/usr/lib32' + fi + + make +} + +package() { + cd ${pkgname}-${pkgver}/build + + if [[ $CARCH == "x86_64
[arch-commits] Commit in pcsx2/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 14:51:22 Author: alucryd Revision: 105336 upgpkg: pcsx2 1.2.1-1 Modified: pcsx2/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 13:36:53 UTC (rev 105335) +++ PKGBUILD2014-02-05 13:51:22 UTC (rev 105336) @@ -4,13 +4,13 @@ # Contributor: vEX pkgname=pcsx2 -pkgver=1.2.0 +pkgver=1.2.1 pkgrel=1 pkgdesc='A Sony PlayStation 2 emulator' arch=('i686' 'x86_64') url='http://www.pcsx2.net' license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3') -makedepends=('cmake' 'sparsehash' 'svn') +makedepends=('cmake' 'sparsehash') if [[ $CARCH == "i686" ]]; then depends=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit' 'portaudio' 'sdl2' 'soundtouch' 'wxgtk2.8') elif [[ $CARCH == "x86_64" ]]; then @@ -17,8 +17,8 @@ makedepends+=('gcc-multilib' 'lib32-glew' 'lib32-libaio' 'lib32-libcanberra' 'lib32-libjpeg-turbo' 'lib32-mesa-libgl' 'lib32-nvidia-cg-toolkit' 'lib32-portaudio' 'lib32-sdl2' 'lib32-soundtouch' 'lib32-wxgtk2.8') fi options=('!emptydirs') -source=("${pkgname}-${pkgver}::svn+http://pcsx2.googlecode.com/svn/tags/v${pkgver%.?}";) -sha256sums=('SKIP') +source=("https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz";) +sha256sums=('965d0fc589dfc63934adc7214b069746b994cdcfd65ab3bb708c4ac6307b1162') build() { cd ${pkgname}-${pkgver}
[arch-commits] Commit in deadbeef/repos (8 files)
Date: Wednesday, February 5, 2014 @ 14:36:53 Author: lfleischer Revision: 105335 archrelease: copy trunk to community-i686, community-x86_64 Added: deadbeef/repos/community-i686/PKGBUILD (from rev 105334, deadbeef/trunk/PKGBUILD) deadbeef/repos/community-i686/deadbeef.install (from rev 105334, deadbeef/trunk/deadbeef.install) deadbeef/repos/community-x86_64/PKGBUILD (from rev 105334, deadbeef/trunk/PKGBUILD) deadbeef/repos/community-x86_64/deadbeef.install (from rev 105334, deadbeef/trunk/deadbeef.install) Deleted: deadbeef/repos/community-i686/PKGBUILD deadbeef/repos/community-i686/deadbeef.install deadbeef/repos/community-x86_64/PKGBUILD deadbeef/repos/community-x86_64/deadbeef.install ---+ /PKGBUILD | 96 /deadbeef.install | 28 ++ community-i686/PKGBUILD | 48 -- community-i686/deadbeef.install | 19 --- community-x86_64/PKGBUILD | 48 -- community-x86_64/deadbeef.install | 19 --- 6 files changed, 124 insertions(+), 134 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-05 13:36:35 UTC (rev 105334) +++ community-i686/PKGBUILD 2014-02-05 13:36:53 UTC (rev 105335) @@ -1,48 +0,0 @@ -# $Id$ -# Maintainer: Lukas Fleischer -# Contributor: Alexey Yakovenko - -pkgname=deadbeef -pkgver=0.6.0 -pkgrel=2 -pkgdesc='A GTK+ audio player for GNU/Linux.' -arch=('i686' 'x86_64') -url='http://deadbeef.sourceforge.net' -license=('GPL2') -depends=('gtk3' 'alsa-lib' 'hicolor-icon-theme' 'desktop-file-utils') -makedepends=('libvorbis' 'libmad' 'flac' 'curl' 'imlib2' 'wavpack' 'libsndfile' 'libcdio' 'libcddb' - 'libx11' 'faad2' 'zlib' 'intltool' 'pkgconfig' 'libpulse' 'libzip' 'libsamplerate' - 'yasm' 'ffmpeg') -optdepends=('libsamplerate: for Resampler plugin' -'libvorbis: for Ogg Vorbis playback' -'libmad: for MP1/MP2/MP3 playback' -'flac: for FLAC playback' -'curl: for Last.fm scrobbler, SHOUTcast, Icecast, Podcast support' -'imlib2: for artwork plugin' -'wavpack: for WavPack playback' -'libsndfile: for Wave playback' -'libcdio: audio cd plugin' -'libcddb: audio cd plugin' -'faad2: for AAC/MP4 support' -'dbus: for OSD notifications support' -'pulseaudio: for PulseAudio output plugin' -'libx11: for global hotkeys plugin' -'zlib: for Audio Overload plugin' -'libzip: for vfs_zip plugin' -'ffmpeg: for ffmpeg plugin') -install='deadbeef.install' -source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver}.tar.bz2";) -md5sums=('f1bbb1a0164ed7bcba9c0c8cd1dddcb5') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure --prefix=/usr --enable-gtk3 - make -} - -package () { - cd "${srcdir}/${pkgname}-${pkgver}" - - make prefix="${pkgdir}/usr" install -} Copied: deadbeef/repos/community-i686/PKGBUILD (from rev 105334, deadbeef/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-05 13:36:53 UTC (rev 105335) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Lukas Fleischer +# Contributor: Alexey Yakovenko + +pkgname=deadbeef +pkgver=0.6.1 +pkgrel=1 +pkgdesc='A GTK+ audio player for GNU/Linux.' +arch=('i686' 'x86_64') +url='http://deadbeef.sourceforge.net' +license=('GPL2') +depends=('gtk3' 'alsa-lib' 'hicolor-icon-theme' 'desktop-file-utils') +makedepends=('libvorbis' 'libmad' 'flac' 'curl' 'imlib2' 'wavpack' 'libsndfile' 'libcdio' 'libcddb' + 'libx11' 'faad2' 'zlib' 'intltool' 'pkgconfig' 'libpulse' 'libzip' 'libsamplerate' + 'yasm' 'ffmpeg') +optdepends=('libsamplerate: for Resampler plugin' +'libvorbis: for Ogg Vorbis playback' +'libmad: for MP1/MP2/MP3 playback' +'flac: for FLAC playback' +'curl: for Last.fm scrobbler, SHOUTcast, Icecast, Podcast support' +'imlib2: for artwork plugin' +'wavpack: for WavPack playback' +'libsndfile: for Wave playback' +'libcdio: audio cd plugin' +'libcddb: audio cd plugin' +'faad2: for AAC/MP4 support' +'dbus: for OSD notifications support' +'pulseaudio: for PulseAudio output plugin' +'libx11: for global hotkeys plugin' +'zlib: for Audio Overload plugin' +'libzip: for vfs_zip plugin' +'ffmpeg: for ffmpeg plugin') +install='deadbeef.install' +source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver}.tar.bz2";) +md5sums=('dab446bde519ae95581885ff63a41
[arch-commits] Commit in deadbeef/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 14:36:35 Author: lfleischer Revision: 105334 upgpkg: deadbeef 0.6.1-1 Upstream update. Modified: deadbeef/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 12:43:33 UTC (rev 105333) +++ PKGBUILD2014-02-05 13:36:35 UTC (rev 105334) @@ -3,8 +3,8 @@ # Contributor: Alexey Yakovenko pkgname=deadbeef -pkgver=0.6.0 -pkgrel=2 +pkgver=0.6.1 +pkgrel=1 pkgdesc='A GTK+ audio player for GNU/Linux.' arch=('i686' 'x86_64') url='http://deadbeef.sourceforge.net' @@ -32,7 +32,7 @@ 'ffmpeg: for ffmpeg plugin') install='deadbeef.install' source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver}.tar.bz2";) -md5sums=('f1bbb1a0164ed7bcba9c0c8cd1dddcb5') +md5sums=('dab446bde519ae95581885ff63a418c7') build() { cd "${srcdir}/${pkgname}-${pkgver}"
[arch-commits] Commit in python-pip/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, February 5, 2014 @ 14:22:17 Author: dan Revision: 205454 archrelease: copy trunk to extra-any Added: python-pip/repos/extra-any/PKGBUILD (from rev 205453, python-pip/trunk/PKGBUILD) Deleted: python-pip/repos/extra-any/PKGBUILD --+ PKGBUILD | 88 ++--- 1 file changed, 44 insertions(+), 44 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2014-02-05 13:22:10 UTC (rev 205453) +++ PKGBUILD2014-02-05 13:22:17 UTC (rev 205454) @@ -1,44 +0,0 @@ -# $Id$ -# Maintainer: Dan McGee -# Contributor: Sebastien Binet - -pkgname=('python-pip' 'python2-pip') -pkgver=1.5.1 -pkgrel=1 -pkgdesc="An easy_install replacement for installing pypi python packages" -url="http://www.pip-installer.org/"; -arch=('any') -license=('MIT') -makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') -source=(http://pypi.python.org/packages/source/p/pip/pip-${pkgver}.tar.gz) - -package_python-pip() { - depends=('python' 'python-setuptools') - - cd "$srcdir/pip-$pkgver" - python setup.py build - python setup.py install --prefix=/usr --root="$pkgdir" - - install -D -m644 LICENSE.txt \ - "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -package_python2-pip() { - depends=('python2' 'python2-setuptools') - conflicts=('python-pyinstall') - replaces=('python-pyinstall') - - cd "$srcdir/pip-$pkgver" - python2 setup.py build - python2 setup.py install --prefix=/usr --root="$pkgdir" - - mv "$pkgdir/usr/bin/pip" "$pkgdir/usr/bin/pip2" - sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" \ -${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py - - install -D -m644 LICENSE.txt \ - "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -md5sums=('4678c2ae5cce4e9234c3923d7dcb32f0') -sha256sums=('e60e936fbc101d56668c6134c1f2b5b40fcbec8b4fc4ca7fc34842b6b4c5c130') Copied: python-pip/repos/extra-any/PKGBUILD (from rev 205453, python-pip/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2014-02-05 13:22:17 UTC (rev 205454) @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer: Dan McGee +# Contributor: Sebastien Binet + +pkgname=('python-pip' 'python2-pip') +pkgver=1.5.2 +pkgrel=1 +pkgdesc="An easy_install replacement for installing pypi python packages" +url="http://www.pip-installer.org/"; +arch=('any') +license=('MIT') +makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') +source=(http://pypi.python.org/packages/source/p/pip/pip-${pkgver}.tar.gz) + +package_python-pip() { + depends=('python' 'python-setuptools') + + cd "$srcdir/pip-$pkgver" + python setup.py build + python setup.py install --prefix=/usr --root="$pkgdir" + + install -D -m644 LICENSE.txt \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +package_python2-pip() { + depends=('python2' 'python2-setuptools') + conflicts=('python-pyinstall') + replaces=('python-pyinstall') + + cd "$srcdir/pip-$pkgver" + python2 setup.py build + python2 setup.py install --prefix=/usr --root="$pkgdir" + + mv "$pkgdir/usr/bin/pip" "$pkgdir/usr/bin/pip2" + sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" \ +${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py + + install -D -m644 LICENSE.txt \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +md5sums=('5da30919f732d68b1c666e484e7676f5') +sha256sums=('2a8a3e08e652d3a40edbb39264bf01f8ff3c32520a79113357cca1f30533f738')
[arch-commits] Commit in python-pip/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 14:22:10 Author: dan Revision: 205453 upgpkg: python-pip 1.5.2-1 Modified: python-pip/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 07:26:05 UTC (rev 205452) +++ PKGBUILD2014-02-05 13:22:10 UTC (rev 205453) @@ -3,7 +3,7 @@ # Contributor: Sebastien Binet pkgname=('python-pip' 'python2-pip') -pkgver=1.5.1 +pkgver=1.5.2 pkgrel=1 pkgdesc="An easy_install replacement for installing pypi python packages" url="http://www.pip-installer.org/"; @@ -40,5 +40,5 @@ "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } -md5sums=('4678c2ae5cce4e9234c3923d7dcb32f0') -sha256sums=('e60e936fbc101d56668c6134c1f2b5b40fcbec8b4fc4ca7fc34842b6b4c5c130') +md5sums=('5da30919f732d68b1c666e484e7676f5') +sha256sums=('2a8a3e08e652d3a40edbb39264bf01f8ff3c32520a79113357cca1f30533f738')
[arch-commits] Commit in python2-ldap/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 13:43:18 Author: spupykin Revision: 105332 upgpkg: python2-ldap 2.4.14-1 upd Modified: python2-ldap/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 10:17:13 UTC (rev 105331) +++ PKGBUILD2014-02-05 12:43:18 UTC (rev 105332) @@ -3,7 +3,7 @@ # Contributor: Morgan LEFIEUX pkgname=python2-ldap -pkgver=2.4.13 +pkgver=2.4.14 pkgrel=1 pkgdesc="Provides an object-oriented API to access LDAP directory servers from Python programs" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ makedepends=('chrpath') replaces=('python-ldap') source=(http://pypi.python.org/packages/source/p/python-ldap/python-ldap-$pkgver.tar.gz) -md5sums=('74b7b50267761540451eade44b2049ee') +md5sums=('15eb167403b3706fe2e40db751117c28') build() { cd $srcdir/python-ldap-$pkgver
[arch-commits] Commit in python2-ldap/repos (4 files)
Date: Wednesday, February 5, 2014 @ 13:43:33 Author: spupykin Revision: 105333 archrelease: copy trunk to community-i686, community-x86_64 Added: python2-ldap/repos/community-i686/PKGBUILD (from rev 105332, python2-ldap/trunk/PKGBUILD) python2-ldap/repos/community-x86_64/PKGBUILD (from rev 105332, python2-ldap/trunk/PKGBUILD) Deleted: python2-ldap/repos/community-i686/PKGBUILD python2-ldap/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 2014-02-05 12:43:18 UTC (rev 105332) +++ community-i686/PKGBUILD 2014-02-05 12:43:33 UTC (rev 105333) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: Morgan LEFIEUX - -pkgname=python2-ldap -pkgver=2.4.13 -pkgrel=1 -pkgdesc="Provides an object-oriented API to access LDAP directory servers from Python programs" -arch=('i686' 'x86_64') -url="http://python-ldap.sourceforge.net"; -license=('custom') -depends=('python2' 'libldap>=2.4.26') -makedepends=('chrpath') -replaces=('python-ldap') -source=(http://pypi.python.org/packages/source/p/python-ldap/python-ldap-$pkgver.tar.gz) -md5sums=('74b7b50267761540451eade44b2049ee') - -build() { - cd $srcdir/python-ldap-$pkgver - sed -i 's|||' Modules/LDAPObject.c - python2 setup.py build -} - -package() { - cd $srcdir/python-ldap-$pkgver - python2 setup.py install --root $pkgdir - install -D -m644 LICENCE $pkgdir/usr/share/licenses/$pkgname/LICENSE - chrpath -d $pkgdir/usr/lib/python2.7/site-packages/_ldap.so -} Copied: python2-ldap/repos/community-i686/PKGBUILD (from rev 105332, python2-ldap/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-05 12:43:33 UTC (rev 105333) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: Morgan LEFIEUX + +pkgname=python2-ldap +pkgver=2.4.14 +pkgrel=1 +pkgdesc="Provides an object-oriented API to access LDAP directory servers from Python programs" +arch=('i686' 'x86_64') +url="http://python-ldap.sourceforge.net"; +license=('custom') +depends=('python2' 'libldap>=2.4.26') +makedepends=('chrpath') +replaces=('python-ldap') +source=(http://pypi.python.org/packages/source/p/python-ldap/python-ldap-$pkgver.tar.gz) +md5sums=('15eb167403b3706fe2e40db751117c28') + +build() { + cd $srcdir/python-ldap-$pkgver + sed -i 's|||' Modules/LDAPObject.c + python2 setup.py build +} + +package() { + cd $srcdir/python-ldap-$pkgver + python2 setup.py install --root $pkgdir + install -D -m644 LICENCE $pkgdir/usr/share/licenses/$pkgname/LICENSE + chrpath -d $pkgdir/usr/lib/python2.7/site-packages/_ldap.so +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2014-02-05 12:43:18 UTC (rev 105332) +++ community-x86_64/PKGBUILD 2014-02-05 12:43:33 UTC (rev 105333) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: Morgan LEFIEUX - -pkgname=python2-ldap -pkgver=2.4.13 -pkgrel=1 -pkgdesc="Provides an object-oriented API to access LDAP directory servers from Python programs" -arch=('i686' 'x86_64') -url="http://python-ldap.sourceforge.net"; -license=('custom') -depends=('python2' 'libldap>=2.4.26') -makedepends=('chrpath') -replaces=('python-ldap') -source=(http://pypi.python.org/packages/source/p/python-ldap/python-ldap-$pkgver.tar.gz) -md5sums=('74b7b50267761540451eade44b2049ee') - -build() { - cd $srcdir/python-ldap-$pkgver - sed -i 's|||' Modules/LDAPObject.c - python2 setup.py build -} - -package() { - cd $srcdir/python-ldap-$pkgver - python2 setup.py install --root $pkgdir - install -D -m644 LICENCE $pkgdir/usr/share/licenses/$pkgname/LICENSE - chrpath -d $pkgdir/usr/lib/python2.7/site-packages/_ldap.so -} Copied: python2-ldap/repos/community-x86_64/PKGBUILD (from rev 105332, python2-ldap/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2014-02-05 12:43:33 UTC (rev 105333) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: Morgan LEFIEUX + +pkgname=python2-ldap +pkgver=2.4.14 +pkgrel=1 +pkgdesc="Provides an object-oriented API to access LDAP directory servers from Python programs" +arch=('i686' 'x86_64') +url="http://python-ldap.sourceforge.net"; +license=('custom') +depends=('python2' 'libldap>=2.4.26') +makedepends=('chrpath') +replaces=('python-ldap') +source=(http://pypi.python.org/packages/source/p/python-ldap/python-ldap-$pkgver.tar.gz) +md5sums=('
[arch-commits] Commit in perl-datetime/repos (4 files)
Date: Wednesday, February 5, 2014 @ 11:17:13 Author: spupykin Revision: 105331 archrelease: copy trunk to community-i686, community-x86_64 Added: perl-datetime/repos/community-i686/PKGBUILD (from rev 105330, perl-datetime/trunk/PKGBUILD) perl-datetime/repos/community-x86_64/PKGBUILD (from rev 105330, perl-datetime/trunk/PKGBUILD) Deleted: perl-datetime/repos/community-i686/PKGBUILD perl-datetime/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 74 community-i686/PKGBUILD | 37 -- community-x86_64/PKGBUILD | 37 -- 3 files changed, 74 insertions(+), 74 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2014-02-05 10:16:57 UTC (rev 105330) +++ community-i686/PKGBUILD 2014-02-05 10:17:13 UTC (rev 105331) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: François Charette - -pkgname=perl-datetime -pkgver=1.03 -pkgrel=2 -pkgdesc="A complete, easy to use date and time object" -arch=('i686' 'x86_64') -url="http://search.cpan.org/dist/DateTime"; -license=('GPL' 'PerlArtistic') -depends=('perl-datetime-timezone>=0.59' 'perl-datetime-locale>=0.41' -'perl-params-validate>=0.76' 'perl-math-round') -LC_NUMERIC=C -provides=("perl-datetime=`printf %.4f $pkgver`") -options=('!emptydirs') -source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz) -md5sums=('ea0fc830410b9ce3baeef3525bc0acdd') - -build() { - cd $srcdir/DateTime-$pkgver - perl Build.PL installdirs=vendor destdir="$pkgdir/" - ./Build -} - -check() { - cd $srcdir/DateTime-$pkgver -# ./Build test - true -} - -package() { - cd $srcdir/DateTime-$pkgver - ./Build install - find $pkgdir -name '.packlist' -delete - find $pkgdir -name '*.pod' -delete -} Copied: perl-datetime/repos/community-i686/PKGBUILD (from rev 105330, perl-datetime/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2014-02-05 10:17:13 UTC (rev 105331) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: François Charette + +pkgname=perl-datetime +pkgver=1.06 +pkgrel=1 +pkgdesc="A complete, easy to use date and time object" +arch=('i686' 'x86_64') +url="http://search.cpan.org/dist/DateTime"; +license=('GPL' 'PerlArtistic') +depends=('perl-datetime-timezone>=0.59' 'perl-datetime-locale>=0.41' +'perl-params-validate>=0.76' 'perl-math-round') +LC_NUMERIC=C +provides=("perl-datetime=`printf %.4f $pkgver`") +options=('!emptydirs') +source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz) +md5sums=('2d05c0cfa17b4011abb18d75a3e09453') + +build() { + cd $srcdir/DateTime-$pkgver + perl Build.PL installdirs=vendor destdir="$pkgdir/" + ./Build +} + +check() { + cd $srcdir/DateTime-$pkgver +# ./Build test + true +} + +package() { + cd $srcdir/DateTime-$pkgver + ./Build install + find $pkgdir -name '.packlist' -delete + find $pkgdir -name '*.pod' -delete +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2014-02-05 10:16:57 UTC (rev 105330) +++ community-x86_64/PKGBUILD 2014-02-05 10:17:13 UTC (rev 105331) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: François Charette - -pkgname=perl-datetime -pkgver=1.03 -pkgrel=2 -pkgdesc="A complete, easy to use date and time object" -arch=('i686' 'x86_64') -url="http://search.cpan.org/dist/DateTime"; -license=('GPL' 'PerlArtistic') -depends=('perl-datetime-timezone>=0.59' 'perl-datetime-locale>=0.41' -'perl-params-validate>=0.76' 'perl-math-round') -LC_NUMERIC=C -provides=("perl-datetime=`printf %.4f $pkgver`") -options=('!emptydirs') -source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz) -md5sums=('ea0fc830410b9ce3baeef3525bc0acdd') - -build() { - cd $srcdir/DateTime-$pkgver - perl Build.PL installdirs=vendor destdir="$pkgdir/" - ./Build -} - -check() { - cd $srcdir/DateTime-$pkgver -# ./Build test - true -} - -package() { - cd $srcdir/DateTime-$pkgver - ./Build install - find $pkgdir -name '.packlist' -delete - find $pkgdir -name '*.pod' -delete -} Copied: perl-datetime/repos/community-x86_64/PKGBUILD (from rev 105330, perl-datetime/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2014-02-05 10:17:13 UTC (rev 105331) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: François Charette + +pkgname=perl-datetime +pkgver=1.06 +pkgrel=1 +pkgdesc="A complete, easy to use date and time object" +arch=('i686' 'x86_64') +url="http://search.cpan.org/dist/DateTime"; +l
[arch-commits] Commit in perl-datetime/trunk (PKGBUILD)
Date: Wednesday, February 5, 2014 @ 11:16:57 Author: spupykin Revision: 105330 upgpkg: perl-datetime 1.06-1 upd Modified: perl-datetime/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-02-05 06:14:45 UTC (rev 105329) +++ PKGBUILD2014-02-05 10:16:57 UTC (rev 105330) @@ -3,8 +3,8 @@ # Contributor: François Charette pkgname=perl-datetime -pkgver=1.03 -pkgrel=2 +pkgver=1.06 +pkgrel=1 pkgdesc="A complete, easy to use date and time object" arch=('i686' 'x86_64') url="http://search.cpan.org/dist/DateTime"; @@ -15,7 +15,7 @@ provides=("perl-datetime=`printf %.4f $pkgver`") options=('!emptydirs') source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz) -md5sums=('ea0fc830410b9ce3baeef3525bc0acdd') +md5sums=('2d05c0cfa17b4011abb18d75a3e09453') build() { cd $srcdir/DateTime-$pkgver