[arch-commits] Commit in module-init-tools/repos (8 files)
Date: Friday, November 4, 2011 @ 20:45:30 Author: dreisner Revision: 142090 archrelease: copy trunk to testing-i686, testing-x86_64 Added: module-init-tools/repos/testing-i686/ module-init-tools/repos/testing-i686/PKGBUILD (from rev 142089, module-init-tools/trunk/PKGBUILD) module-init-tools/repos/testing-i686/docfix.patch (from rev 142089, module-init-tools/trunk/docfix.patch) module-init-tools/repos/testing-i686/modprobe.conf (from rev 142089, module-init-tools/trunk/modprobe.conf) module-init-tools/repos/testing-x86_64/ module-init-tools/repos/testing-x86_64/PKGBUILD (from rev 142089, module-init-tools/trunk/PKGBUILD) module-init-tools/repos/testing-x86_64/docfix.patch (from rev 142089, module-init-tools/trunk/docfix.patch) module-init-tools/repos/testing-x86_64/modprobe.conf (from rev 142089, module-init-tools/trunk/modprobe.conf) --+ testing-i686/PKGBUILD| 43 +++ testing-i686/docfix.patch| 90 + testing-i686/modprobe.conf |3 + testing-x86_64/PKGBUILD | 43 +++ testing-x86_64/docfix.patch | 90 + testing-x86_64/modprobe.conf |3 + 6 files changed, 272 insertions(+) Copied: module-init-tools/repos/testing-i686/PKGBUILD (from rev 142089, module-init-tools/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-05 00:45:30 UTC (rev 142090) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Dave Reisner +# Maintainer: Aaron Griffin +# Contributor: judd + +pkgname=module-init-tools +pkgver=3.16 +pkgrel=2 +pkgdesc="Utilities needed by Linux systems for managing loadable kernel modules" +arch=('i686' 'x86_64') +url="https://modules.wiki.kernel.org"; +license=('GPL') +depends=('glibc') +makedepends=('docbook2x') +backup=('etc/modprobe.d/modprobe.conf') +source=("http://www.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.bz2"; +modprobe.conf +docfix.patch) +md5sums=('bc44832c6e41707b8447e2847d2019f5' + '325657db471b3190f685e5a89c9b90e3' + '4320d19902ded43bed55c804b065cdc7') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # fix headers in SGML manpage sources and an XML typo + patch -Np0 < "$srcdir/docfix.patch" + + ./configure --prefix=/usr --exec-prefix=/ --enable-zlib + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR=$pkgdir install + + # extra modprobe.d conf dir + install -dm755 "$pkgdir/lib/modprobe.d" + + # Install our custom (read: empty) modprobe.conf + install -Dm644 "$srcdir/modprobe.conf" "$pkgdir/etc/modprobe.d/modprobe.conf" +} Copied: module-init-tools/repos/testing-i686/docfix.patch (from rev 142089, module-init-tools/trunk/docfix.patch) === --- testing-i686/docfix.patch (rev 0) +++ testing-i686/docfix.patch 2011-11-05 00:45:30 UTC (rev 142090) @@ -0,0 +1,90 @@ +--- doc/depmod.conf.sgml.orig 2011-06-25 10:07:15.897805024 -0400 doc/depmod.conf.sgml 2011-06-25 10:07:48.810805020 -0400 +@@ -1,4 +1,5 @@ +-http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"; [ + Debian GNU/Linux"> + DocBook"> + SGML"> +--- doc/depmod.sgml.orig 2011-06-25 10:07:15.898805024 -0400 doc/depmod.sgml2011-06-25 10:07:56.636805021 -0400 +@@ -1,4 +1,5 @@ +-http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"; [ + Debian GNU/Linux"> + DocBook"> + SGML"> +@@ -52,7 +52,7 @@ + -n + -v + -P prefix +- -w ++ -w + version + filename + +--- doc/insmod.sgml.orig 2011-06-25 10:07:15.899805024 -0400 doc/insmod.sgml2011-06-25 10:07:59.228805019 -0400 +@@ -1,4 +1,5 @@ +-http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"; [ + Debian GNU/Linux"> + DocBook"> + SGML"> +--- doc/lsmod.sgml.orig2011-06-25 10:07:15.899805024 -0400 doc/lsmod.sgml 2011-06-25 10:08:04.804805020 -0400 +@@ -1,4 +1,5 @@ +-http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"; [ + Debian GNU/Linux"> + DocBook"> + SGML"> +--- doc/modinfo.sgml.orig 2011-06-25 10:07:15.900805024 -0400 doc/modinfo.sgml 2011-06-25 10:08:07.630805019 -0400 +@@ -1,4 +1,5 @@ +-http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"; [ + Debian GNU/Linux"> + DocBook"> + SGML"> +--- doc/modprobe.conf.sgml.orig2011-06-25 10:07:15.901805024 -0400 doc/modprobe.conf.sgml 2011-06-25 10:08:10.173805018 -0400 +@@ -1,4 +1,5 @@ +-http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"; [ + Debian GNU/Linux"> + DocBook"> + SGML"> +--- doc/modprobe.sgml.orig 2011-06-25 10:07:15.902805024 -0400 doc/modprobe.sgml 2011-06-25 10:08:13.623805019 -0400 +@@ -1,4 +1,5 @@ +-http://www.oasis-ope
[arch-commits] Commit in module-init-tools/trunk (PKGBUILD modprobe.conf)
Date: Friday, November 4, 2011 @ 20:45:16 Author: dreisner Revision: 142089 upgpkg: module-init-tools 3.16-2 - rebuild to add sig - close FS#25880 - add /lib/modprobe.d - fix upstream URL Modified: module-init-tools/trunk/PKGBUILD module-init-tools/trunk/modprobe.conf ---+ PKGBUILD | 18 +++--- modprobe.conf |2 +- 2 files changed, 12 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-05 00:43:25 UTC (rev 142088) +++ PKGBUILD2011-11-05 00:45:16 UTC (rev 142089) @@ -1,26 +1,27 @@ # $Id$ +# Maintainer: Dave Reisner # Maintainer: Aaron Griffin # Contributor: judd pkgname=module-init-tools pkgver=3.16 -pkgrel=1 -pkgdesc="utilities needed by Linux systems for managing loadable kernel modules" +pkgrel=2 +pkgdesc="Utilities needed by Linux systems for managing loadable kernel modules" arch=('i686' 'x86_64') url="https://modules.wiki.kernel.org"; license=('GPL') depends=('glibc') makedepends=('docbook2x') backup=('etc/modprobe.d/modprobe.conf') -source=(http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/module-init-tools-$pkgver.tar.bz2 +source=("http://www.kernel.org/pub/linux/utils/kernel/$pkgname/$pkgname-$pkgver.tar.bz2"; modprobe.conf docfix.patch) md5sums=('bc44832c6e41707b8447e2847d2019f5' - '316f1bda4c21af02b30252eb014a0a55' + '325657db471b3190f685e5a89c9b90e3' '4320d19902ded43bed55c804b065cdc7') build() { - cd $srcdir/$pkgname-$pkgver + cd "$srcdir/$pkgname-$pkgver" # fix headers in SGML manpage sources and an XML typo patch -Np0 < "$srcdir/docfix.patch" @@ -30,10 +31,13 @@ } package() { - cd $srcdir/$pkgname-$pkgver + cd "$srcdir/$pkgname-$pkgver" make DESTDIR=$pkgdir install + # extra modprobe.d conf dir + install -dm755 "$pkgdir/lib/modprobe.d" + # Install our custom (read: empty) modprobe.conf - install -Dm644 $srcdir/modprobe.conf $pkgdir/etc/modprobe.d/modprobe.conf + install -Dm644 "$srcdir/modprobe.conf" "$pkgdir/etc/modprobe.d/modprobe.conf" } Modified: modprobe.conf === --- modprobe.conf 2011-11-05 00:43:25 UTC (rev 142088) +++ modprobe.conf 2011-11-05 00:45:16 UTC (rev 142089) @@ -1,3 +1,3 @@ # -# /etc/modprobe.d/modprobe.conf (for v2.6 kernels) +# /etc/modprobe.d/modprobe.conf #
[arch-commits] Commit in wpa_actiond/repos (4 files)
Date: Friday, November 4, 2011 @ 20:43:25 Author: thomas Revision: 142088 archrelease: copy trunk to testing-i686, testing-x86_64 Added: wpa_actiond/repos/testing-i686/PKGBUILD (from rev 142087, wpa_actiond/trunk/PKGBUILD) wpa_actiond/repos/testing-x86_64/PKGBUILD (from rev 142087, wpa_actiond/trunk/PKGBUILD) Deleted: wpa_actiond/repos/testing-i686/PKGBUILD wpa_actiond/repos/testing-x86_64/PKGBUILD -+ testing-i686/PKGBUILD | 50 +++--- testing-x86_64/PKGBUILD | 50 +++--- 2 files changed, 50 insertions(+), 50 deletions(-) Deleted: testing-i686/PKGBUILD === --- testing-i686/PKGBUILD 2011-11-05 00:42:10 UTC (rev 142087) +++ testing-i686/PKGBUILD 2011-11-05 00:43:25 UTC (rev 142088) @@ -1,25 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=wpa_actiond -pkgver=1.1 -pkgrel=2 -pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events" -arch=('i686' 'x86_64') -url="http://projects.archlinux.org/wpa_actiond.git/"; -license=('GPL') -depends=('glibc' 'wpa_supplicant') -source=(ftp://ftp.archlinux.org/other/wpa_actiond/${pkgname}-${pkgver}.tar.xz) -sha256sums=('d50a49cb5d56c31345d18e58f017b4ff923e8959a7e4e709abd156744f1668c3') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make CFLAGS="${CFLAGS}" -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - install -D -m755 wpa_actiond "${pkgdir}/usr/sbin/wpa_actiond" -} -# vim:set ts=2 sw=2 et: Copied: wpa_actiond/repos/testing-i686/PKGBUILD (from rev 142087, wpa_actiond/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-05 00:43:25 UTC (rev 142088) @@ -0,0 +1,25 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=wpa_actiond +pkgver=1.1 +pkgrel=3 +pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events" +arch=('i686' 'x86_64') +url="http://projects.archlinux.org/wpa_actiond.git/"; +license=('GPL') +depends=('glibc' 'wpa_supplicant') +source=(ftp://ftp.archlinux.org/other/wpa_actiond/${pkgname}-${pkgver}.tar.xz) +sha256sums=('d50a49cb5d56c31345d18e58f017b4ff923e8959a7e4e709abd156744f1668c3') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make CFLAGS="${CFLAGS}" +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + install -D -m755 wpa_actiond "${pkgdir}/usr/sbin/wpa_actiond" +} +# vim:set ts=2 sw=2 et: Deleted: testing-x86_64/PKGBUILD === --- testing-x86_64/PKGBUILD 2011-11-05 00:42:10 UTC (rev 142087) +++ testing-x86_64/PKGBUILD 2011-11-05 00:43:25 UTC (rev 142088) @@ -1,25 +0,0 @@ -# $Id$ -# Maintainer: Thomas Bächler -pkgname=wpa_actiond -pkgver=1.1 -pkgrel=3 -pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events" -arch=('i686' 'x86_64') -url="http://projects.archlinux.org/wpa_actiond.git/"; -license=('GPL') -depends=('glibc' 'wpa_supplicant') -source=(ftp://ftp.archlinux.org/other/wpa_actiond/${pkgname}-${pkgver}.tar.xz) -sha256sums=('d50a49cb5d56c31345d18e58f017b4ff923e8959a7e4e709abd156744f1668c3') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make CFLAGS="${CFLAGS}" -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - install -D -m755 wpa_actiond "${pkgdir}/usr/sbin/wpa_actiond" -} -# vim:set ts=2 sw=2 et: Copied: wpa_actiond/repos/testing-x86_64/PKGBUILD (from rev 142087, wpa_actiond/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2011-11-05 00:43:25 UTC (rev 142088) @@ -0,0 +1,25 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=wpa_actiond +pkgver=1.1 +pkgrel=3 +pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events" +arch=('i686' 'x86_64') +url="http://projects.archlinux.org/wpa_actiond.git/"; +license=('GPL') +depends=('glibc' 'wpa_supplicant') +source=(ftp://ftp.archlinux.org/other/wpa_actiond/${pkgname}-${pkgver}.tar.xz) +sha256sums=('d50a49cb5d56c31345d18e58f017b4ff923e8959a7e4e709abd156744f1668c3') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make CFLAGS="${CFLAGS}" +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + install -D -m755 wpa_actiond "${pkgdir}/usr/sbin/wpa_actiond" +} +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in wpa_actiond/repos (4 files)
Date: Friday, November 4, 2011 @ 20:42:10 Author: thomas Revision: 142087 archrelease: copy trunk to testing-i686, testing-x86_64 Added: wpa_actiond/repos/testing-i686/ wpa_actiond/repos/testing-i686/PKGBUILD (from rev 142085, wpa_actiond/trunk/PKGBUILD) wpa_actiond/repos/testing-x86_64/ wpa_actiond/repos/testing-x86_64/PKGBUILD (from rev 142086, wpa_actiond/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 25 + testing-x86_64/PKGBUILD | 25 + 2 files changed, 50 insertions(+) Copied: wpa_actiond/repos/testing-i686/PKGBUILD (from rev 142085, wpa_actiond/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-05 00:42:10 UTC (rev 142087) @@ -0,0 +1,25 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=wpa_actiond +pkgver=1.1 +pkgrel=2 +pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events" +arch=('i686' 'x86_64') +url="http://projects.archlinux.org/wpa_actiond.git/"; +license=('GPL') +depends=('glibc' 'wpa_supplicant') +source=(ftp://ftp.archlinux.org/other/wpa_actiond/${pkgname}-${pkgver}.tar.xz) +sha256sums=('d50a49cb5d56c31345d18e58f017b4ff923e8959a7e4e709abd156744f1668c3') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make CFLAGS="${CFLAGS}" +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + install -D -m755 wpa_actiond "${pkgdir}/usr/sbin/wpa_actiond" +} +# vim:set ts=2 sw=2 et: Copied: wpa_actiond/repos/testing-x86_64/PKGBUILD (from rev 142086, wpa_actiond/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2011-11-05 00:42:10 UTC (rev 142087) @@ -0,0 +1,25 @@ +# $Id$ +# Maintainer: Thomas Bächler +pkgname=wpa_actiond +pkgver=1.1 +pkgrel=3 +pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events" +arch=('i686' 'x86_64') +url="http://projects.archlinux.org/wpa_actiond.git/"; +license=('GPL') +depends=('glibc' 'wpa_supplicant') +source=(ftp://ftp.archlinux.org/other/wpa_actiond/${pkgname}-${pkgver}.tar.xz) +sha256sums=('d50a49cb5d56c31345d18e58f017b4ff923e8959a7e4e709abd156744f1668c3') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make CFLAGS="${CFLAGS}" +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + install -D -m755 wpa_actiond "${pkgdir}/usr/sbin/wpa_actiond" +} +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in wpa_actiond/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 20:41:41 Author: thomas Revision: 142086 upgpkg: wpa_actiond 1.1-3: Rebuild and sign Modified: wpa_actiond/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2011-11-05 00:39:35 UTC (rev 142085) +++ PKGBUILD2011-11-05 00:41:41 UTC (rev 142086) @@ -2,7 +2,7 @@ # Maintainer: Thomas Bächler pkgname=wpa_actiond pkgver=1.1 -pkgrel=2 +pkgrel=3 pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events" arch=('i686' 'x86_64') url="http://projects.archlinux.org/wpa_actiond.git/";
[arch-commits] Commit in wpa_supplicant/repos (8 files)
Date: Friday, November 4, 2011 @ 20:39:35 Author: thomas Revision: 142085 archrelease: copy trunk to testing-i686, testing-x86_64 Added: wpa_supplicant/repos/testing-i686/ wpa_supplicant/repos/testing-i686/PKGBUILD (from rev 142084, wpa_supplicant/trunk/PKGBUILD) wpa_supplicant/repos/testing-i686/config (from rev 142084, wpa_supplicant/trunk/config) wpa_supplicant/repos/testing-i686/dbus.patch (from rev 142084, wpa_supplicant/trunk/dbus.patch) wpa_supplicant/repos/testing-x86_64/ wpa_supplicant/repos/testing-x86_64/PKGBUILD (from rev 142084, wpa_supplicant/trunk/PKGBUILD) wpa_supplicant/repos/testing-x86_64/config (from rev 142084, wpa_supplicant/trunk/config) wpa_supplicant/repos/testing-x86_64/dbus.patch (from rev 142084, wpa_supplicant/trunk/dbus.patch) ---+ testing-i686/PKGBUILD | 45 testing-i686/config | 404 testing-i686/dbus.patch | 61 ++ testing-x86_64/PKGBUILD | 45 testing-x86_64/config | 404 testing-x86_64/dbus.patch | 61 ++ 6 files changed, 1020 insertions(+) Copied: wpa_supplicant/repos/testing-i686/PKGBUILD (from rev 142084, wpa_supplicant/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-05 00:39:35 UTC (rev 142085) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Thomas Bächler + +pkgname=wpa_supplicant +pkgver=0.7.3 +pkgrel=4 +pkgdesc="A utility providing key negotiation for WPA wireless networks" +url="http://hostap.epitest.fi/wpa_supplicant"; +arch=('i686' 'x86_64') +depends=('openssl' 'dbus-core>=1.2.4' 'readline>=6.0' 'libnl') +optdepends=('wpa_supplicant_gui: wpa_gui program') +license=('GPL') +groups=('base') +backup=('etc/wpa_supplicant.conf') +source=(http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz +config dbus.patch) +sha256sums=('d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443' +'6a0837f18e5ff179ccd6954f7952dfc2e6aa69f353194ee4cb29c1ed2ef68c5d' +'13effa9ed6a1bb940ffc056a3eabcf64c8cc057069eca5cc1822b98ed769812a') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}" + # Required by NetworkManager 0.8.995 + patch -Np2 -i "$srcdir/dbus.patch" + cp "${srcdir}/config" ./.config + sed -i 's@/usr/local@$(PREFIX)@g' Makefile + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}" + make PREFIX=/usr DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/etc" + install -m644 wpa_supplicant.conf "${pkgdir}/etc/wpa_supplicant.conf" + install -d -m755 "${pkgdir}/usr/share/man/man"{5,8} + install -m644 doc/docbook/*.5 "${pkgdir}/usr/share/man/man5/" + install -m644 doc/docbook/*.8 "${pkgdir}/usr/share/man/man8/" + rm -f "${pkgdir}/usr/share/man/man8/wpa_"{priv,gui}.8 + + install -m755 -d "${pkgdir}/usr/share/dbus-1/system-services" + install -m644 dbus/{fi.epitest.hostap.WPASupplicant.service,fi.w1.wpa_supplicant1.service} "${pkgdir}/usr/share/dbus-1/system-services/" + sed -e 's/sbin/usr\/sbin/' -i "${pkgdir}/usr/share/dbus-1/system-services/"*.service + install -m755 -d "${pkgdir}/etc/dbus-1/system.d" + install -m644 dbus/dbus-wpa_supplicant.conf "${pkgdir}/etc/dbus-1/system.d/wpa_supplicant.conf" +} Copied: wpa_supplicant/repos/testing-i686/config (from rev 142084, wpa_supplicant/trunk/config) === --- testing-i686/config (rev 0) +++ testing-i686/config 2011-11-05 00:39:35 UTC (rev 142085) @@ -0,0 +1,404 @@ +# Example wpa_supplicant build time configuration +# +# This file lists the configuration options that are used when building the +# hostapd binary. All lines starting with # are ignored. Configuration option +# lines must be commented out complete, if they are not to be included, i.e., +# just setting VARIABLE=n is not disabling that variable. +# +# This file is included in Makefile, so variables like CFLAGS and LIBS can also +# be modified from here. In most cases, these lines should use += in order not +# to override previous values of the variables. + + +# Uncomment following two lines and fix the paths if you have installed OpenSSL +# or GnuTLS in non-default location +#CFLAGS += -I/usr/local/openssl/include +#LIBS += -L/usr/local/openssl/lib + +# Some Red Hat versions seem to include kerberos header files from OpenSSL, but +# the kerberos files are not in the default include path. Following line can be +# used to fix build issues on such systems (krb5.h not found). +#CFLAGS += -I/usr/include/kerberos + +# Example configuration for various cross-compilation platforms + + sveasoft (e.g., for Linksys WRT54G) ## +#CC=mipsel-uclibc-gcc +#CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc +#CFLAGS +
[arch-commits] Commit in wpa_supplicant/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 20:39:04 Author: thomas Revision: 142084 upgpkg: wpa_supplicant 0.7.3-4: rebuild and sign Modified: wpa_supplicant/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 23:49:25 UTC (rev 142083) +++ PKGBUILD2011-11-05 00:39:04 UTC (rev 142084) @@ -3,7 +3,7 @@ pkgname=wpa_supplicant pkgver=0.7.3 -pkgrel=3 +pkgrel=4 pkgdesc="A utility providing key negotiation for WPA wireless networks" url="http://hostap.epitest.fi/wpa_supplicant"; arch=('i686' 'x86_64')
[arch-commits] Commit in ca-certificates/repos (5 files)
Date: Friday, November 4, 2011 @ 19:49:25 Author: pierre Revision: 142083 db-move: moved ca-certificates from [testing] to [core] (any) Added: ca-certificates/repos/core-any/PKGBUILD (from rev 142082, ca-certificates/repos/testing-any/PKGBUILD) ca-certificates/repos/core-any/ca-certificates.install (from rev 142082, ca-certificates/repos/testing-any/ca-certificates.install) Deleted: ca-certificates/repos/core-any/PKGBUILD ca-certificates/repos/core-any/ca-certificates.install ca-certificates/repos/testing-any/ -+ PKGBUILD| 76 +++--- ca-certificates.install | 52 +++ 2 files changed, 64 insertions(+), 64 deletions(-) Deleted: core-any/PKGBUILD === --- core-any/PKGBUILD 2011-11-04 23:36:20 UTC (rev 142082) +++ core-any/PKGBUILD 2011-11-04 23:49:25 UTC (rev 142083) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Pierre Schmitz - -pkgname=ca-certificates -pkgver=20110502+nmu1 -pkgrel=1 -pkgdesc='Common CA certificates' -arch=('any') -url='http://packages.qa.debian.org/c/ca-certificates.html' -license=('MPL' 'GPL') -source=("http://ftp.debian.org/debian/pool/main/c/${pkgname}/${pkgname}_${pkgver}.tar.gz";) -depends=('bash' 'run-parts' 'openssl' 'findutils' 'coreutils' 'sed') -makedepends=('python2') -install='ca-certificates.install' -backup=('etc/ca-certificates.conf') -sha256sums=('32349782ed419d88924f69e3feb1755a045dc15b8d0cfd15cdd9176f0596997d') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - sed 's|/usr/bin/python|/usr/bin/python2|g' -i mozilla/certdata2pem.py - sed 's|python|python2|g' -i mozilla/Makefile - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - install -d -m755 ${pkgdir}/{etc/ca-certificates/update.d,usr/{sbin,share/ca-certificates},etc/ssl/certs} - make install DESTDIR=${pkgdir} - install -D -m644 sbin/update-ca-certificates.8 ${pkgdir}/usr/share/man/man8/update-ca-certificates.8 - - ( - echo "# Automatically generated by ${pkgname}-${pkgver}-${pkgrel}" - echo "# see update-ca-certificates man page" - echo "# " - cd ${pkgdir}/usr/share/ca-certificates - find . -name '*.crt' | sort | cut -b3- - ) > ${pkgdir}/etc/ca-certificates.conf -} Copied: ca-certificates/repos/core-any/PKGBUILD (from rev 142082, ca-certificates/repos/testing-any/PKGBUILD) === --- core-any/PKGBUILD (rev 0) +++ core-any/PKGBUILD 2011-11-04 23:49:25 UTC (rev 142083) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Pierre Schmitz + +pkgname=ca-certificates +pkgver=20111025 +pkgrel=2 +pkgdesc='Common CA certificates' +arch=('any') +url='http://packages.qa.debian.org/c/ca-certificates.html' +license=('MPL' 'GPL') +source=("http://ftp.debian.org/debian/pool/main/c/${pkgname}/${pkgname}_${pkgver}.tar.gz";) +depends=('bash' 'run-parts' 'openssl' 'findutils' 'coreutils' 'sed') +makedepends=('python2') +install='ca-certificates.install' +backup=('etc/ca-certificates.conf') +sha256sums=('318bbf0f7c0a32adc10105f843148fd0e9e3b013de75645c02ea858652240924') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + sed 's|/usr/bin/python|/usr/bin/python2|g' -i mozilla/certdata2pem.py + sed 's|python|python2|g' -i mozilla/Makefile + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + install -d -m755 ${pkgdir}/{etc/ca-certificates/update.d,usr/{sbin,share/ca-certificates},etc/ssl/certs} + make install DESTDIR=${pkgdir} + install -D -m644 sbin/update-ca-certificates.8 ${pkgdir}/usr/share/man/man8/update-ca-certificates.8 + + ( + echo "# Automatically generated by ${pkgname}-${pkgver}-${pkgrel}" + echo "# see update-ca-certificates man page" + echo "# " + cd ${pkgdir}/usr/share/ca-certificates + find . -name '*.crt' | sort | cut -b3- + ) > ${pkgdir}/etc/ca-certificates.conf +} Deleted: core-any/ca-certificates.install === --- core-any/ca-certificates.install2011-11-04 23:36:20 UTC (rev 142082) +++ core-any/ca-certificates.install2011-11-04 23:49:25 UTC (rev 142083) @@ -1,26 +0,0 @@ -export LC_ALL=C - -post_install() { - usr/sbin/update-ca-certificates --fresh >/dev/null 2>&1 -} - -post_upgrade() { - if [ $(vercmp $2 20110421-1) -lt 0 ]; then - echo 'Updating certificates. This might take a while...' - fi - usr/sbin/update-ca-certificates --fresh >/dev/null 2>&1 -} - -pre_remove() { - # clean up certificates - local _backup=$(mktemp) - mv etc/ca-certificates.conf ${_backup} - echo > etc/ca-certificates.conf - usr/sbin/update-ca-certificates --fresh >/dev/null 2>&1 - mv ${_backup} etc/ca-certificates.conf -} - -post_rem
[arch-commits] Commit in which/repos (5 files)
Date: Friday, November 4, 2011 @ 19:36:20 Author: allan Revision: 142082 db-move: moved which from [testing] to [core] (x86_64) Added: which/repos/core-x86_64/PKGBUILD (from rev 142056, which/repos/testing-x86_64/PKGBUILD) which/repos/core-x86_64/which.install (from rev 142056, which/repos/testing-x86_64/which.install) Deleted: which/repos/core-x86_64/PKGBUILD which/repos/core-x86_64/which.install which/repos/testing-x86_64/ ---+ PKGBUILD | 54 +++--- which.install | 40 2 files changed, 47 insertions(+), 47 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:36:18 UTC (rev 142081) +++ core-x86_64/PKGBUILD2011-11-04 23:36:20 UTC (rev 142082) @@ -1,27 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: Andreas Radke - -pkgname=which -pkgver=2.20 -pkgrel=4 -pkgdesc="A utility to show the full path of commands" -arch=('i686' 'x86_64') -url="http://www.xs4all.nl/~carlo17/which"; -license=('GPL3') -groups=('base') -depends=('glibc' 'sh') -install=which.install -source=(http://www.xs4all.nl/~carlo17/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('95be0501a466e515422cde4af46b2744') - -build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install -} Copied: which/repos/core-x86_64/PKGBUILD (from rev 142056, which/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:36:20 UTC (rev 142082) @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: Andreas Radke + +pkgname=which +pkgver=2.20 +pkgrel=5 +pkgdesc="A utility to show the full path of commands" +arch=('i686' 'x86_64') +url="http://www.xs4all.nl/~carlo17/which"; +license=('GPL3') +groups=('base') +depends=('glibc' 'sh') +install=which.install +source=(http://www.xs4all.nl/~carlo17/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('95be0501a466e515422cde4af46b2744') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} Deleted: core-x86_64/which.install === --- core-x86_64/which.install 2011-11-04 23:36:18 UTC (rev 142081) +++ core-x86_64/which.install 2011-11-04 23:36:20 UTC (rev 142082) @@ -1,20 +0,0 @@ -infodir=/usr/share/info -filelist=(which.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file $infodir/dir 2> /dev/null - done -} Copied: which/repos/core-x86_64/which.install (from rev 142056, which/repos/testing-x86_64/which.install) === --- core-x86_64/which.install (rev 0) +++ core-x86_64/which.install 2011-11-04 23:36:20 UTC (rev 142082) @@ -0,0 +1,20 @@ +infodir=/usr/share/info +filelist=(which.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +}
[arch-commits] Commit in which/repos (5 files)
Date: Friday, November 4, 2011 @ 19:36:18 Author: allan Revision: 142081 db-move: moved which from [testing] to [core] (i686) Added: which/repos/core-i686/PKGBUILD (from rev 142056, which/repos/testing-i686/PKGBUILD) which/repos/core-i686/which.install (from rev 142056, which/repos/testing-i686/which.install) Deleted: which/repos/core-i686/PKGBUILD which/repos/core-i686/which.install which/repos/testing-i686/ ---+ PKGBUILD | 54 +++--- which.install | 40 2 files changed, 47 insertions(+), 47 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:36:17 UTC (rev 142080) +++ core-i686/PKGBUILD 2011-11-04 23:36:18 UTC (rev 142081) @@ -1,27 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: Andreas Radke - -pkgname=which -pkgver=2.20 -pkgrel=4 -pkgdesc="A utility to show the full path of commands" -arch=('i686' 'x86_64') -url="http://www.xs4all.nl/~carlo17/which"; -license=('GPL3') -groups=('base') -depends=('glibc' 'sh') -install=which.install -source=(http://www.xs4all.nl/~carlo17/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('95be0501a466e515422cde4af46b2744') - -build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install -} Copied: which/repos/core-i686/PKGBUILD (from rev 142056, which/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:36:18 UTC (rev 142081) @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: Andreas Radke + +pkgname=which +pkgver=2.20 +pkgrel=5 +pkgdesc="A utility to show the full path of commands" +arch=('i686' 'x86_64') +url="http://www.xs4all.nl/~carlo17/which"; +license=('GPL3') +groups=('base') +depends=('glibc' 'sh') +install=which.install +source=(http://www.xs4all.nl/~carlo17/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('95be0501a466e515422cde4af46b2744') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} Deleted: core-i686/which.install === --- core-i686/which.install 2011-11-04 23:36:17 UTC (rev 142080) +++ core-i686/which.install 2011-11-04 23:36:18 UTC (rev 142081) @@ -1,20 +0,0 @@ -infodir=/usr/share/info -filelist=(which.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file $infodir/dir 2> /dev/null - done -} Copied: which/repos/core-i686/which.install (from rev 142056, which/repos/testing-i686/which.install) === --- core-i686/which.install (rev 0) +++ core-i686/which.install 2011-11-04 23:36:18 UTC (rev 142081) @@ -0,0 +1,20 @@ +infodir=/usr/share/info +filelist=(which.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +}
[arch-commits] Commit in tar/repos (7 files)
Date: Friday, November 4, 2011 @ 19:36:17 Author: allan Revision: 142080 db-move: moved tar from [testing] to [core] (x86_64) Added: tar/repos/core-x86_64/PKGBUILD (from rev 142056, tar/repos/testing-x86_64/PKGBUILD) tar/repos/core-x86_64/tar.1 (from rev 142056, tar/repos/testing-x86_64/tar.1) tar/repos/core-x86_64/tar.install (from rev 142056, tar/repos/testing-x86_64/tar.install) Deleted: tar/repos/core-x86_64/PKGBUILD tar/repos/core-x86_64/tar.1 tar/repos/core-x86_64/tar.install tar/repos/testing-x86_64/ -+ PKGBUILD| 75 +++-- tar.1 | 731 +- tar.install | 42 +-- 3 files changed, 426 insertions(+), 422 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:36:16 UTC (rev 142079) +++ core-x86_64/PKGBUILD2011-11-04 23:36:17 UTC (rev 142080) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: Andreas Radke - -pkgname=tar -pkgver=1.26 -pkgrel=1 -pkgdesc="Utility used to store, backup, and transport files" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/tar/tar.html"; -license=('GPL3') -groups=('base') -depends=('glibc' 'sh') -options=('!emptydirs') -install=tar.install -source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz -tar.1) -md5sums=('0ced6f20b9fa1bea588005b5ad4b52c1' - 'e0538778516a284e3558c454b2576c2f') - -build() { - cd ${srcdir}/$pkgname-$pkgver - - ./configure --prefix=/usr --libexecdir=/usr/lib/tar --bindir=/bin - make -} - -check() { - cd ${srcdir}/$pkgname-$pkgver - make check -} - -package() { - cd ${srcdir}/$pkgname-$pkgver - make DESTDIR=${pkgdir} install - install -Dm644 ${srcdir}/tar.1 ${pkgdir}/usr/share/man/man1/tar.1 -} Copied: tar/repos/core-x86_64/PKGBUILD (from rev 142056, tar/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:36:17 UTC (rev 142080) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: Andreas Radke + +pkgname=tar +pkgver=1.26 +pkgrel=2 +pkgdesc="Utility used to store, backup, and transport files" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/tar/tar.html"; +license=('GPL3') +groups=('base') +depends=('glibc' 'sh') +options=('!emptydirs') +install=tar.install +source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig} +tar.1) +md5sums=('0ced6f20b9fa1bea588005b5ad4b52c1' + '6618d5fe7785e138c27d7d6a24e998b2' + 'e97e7343f4e23724b4c48bca2f033e38') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr --libexecdir=/usr/lib/tar --bindir=/bin + make +} + +check() { + cd ${srcdir}/$pkgname-$pkgver + make check +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install + install -Dm644 ${srcdir}/tar.1 ${pkgdir}/usr/share/man/man1/tar.1 +} Deleted: core-x86_64/tar.1 === --- core-x86_64/tar.1 2011-11-04 23:36:16 UTC (rev 142079) +++ core-x86_64/tar.1 2011-11-04 23:36:17 UTC (rev 142080) @@ -1,364 +0,0 @@ -.\" generated by script on Wed Mar 10 17:01:09 2010 -.Dd Mar 10, 2010 -.Dt TAR 1 -.Sh NAME -.Nm tar -.Nd The GNU version of the tar archiving utility -.Sh SYNOPSIS -.Nm tar -.Oo Fl Oc Cm A Fl \-catenate \-concatenate Cm \||\| c Fl \-create Cm \||\| d Fl \-diff \-compare Cm \||\| Fl \-delete Cm \||\| r Fl \-append Cm \||\| t Fl \-list Cm \||\| Fl \-test\-label Cm \||\| u Fl \-update Cm \||\| x Fl \-extract \-get -.Op Ar options -.Op Ar pathname ... -.Sh DESCRIPTION -.Nm Tar -stores and extracts files from a tape or disk archive. -.Pp -The first argument to -tar -should be a function; either one of the letters -.Cm Acdrtux , -or one of the long function names. -A function letter need not be prefixed with ``\-'', and may be combined -with other single-letter options. -A long function name must be prefixed with -.Cm \\-\\- . -Some options take a parameter; with the single-letter form -these must be given as separate arguments. -With the long form, they may be given by appending -.Cm = Ns Ar value -to the option. -.Sh FUNCTION LETTERS -Main operation mode: -.Bl -tag -width flag -.It Fl A , Fl \-catenate , Fl \-concatenate -append tar files to an archive -.It Fl c , Fl \-create -create a new archive -.It Fl d , Fl \-diff , Fl \-compare -find differences between archive and file system -.It Fl \-delete -delete from the archive (not on mag tapes!) -.It Fl r , Fl \-append -append files to the end of an archive -.It Fl t , Fl \-list -list the contents of an archive -.It Fl \-test\-label -test the archive volume label and exit -.It Fl u , Fl \-update -only append files newer than copy in archive -.It Fl x , Fl \-extract , Fl \-get -extract files from an
[arch-commits] Commit in tar/repos (7 files)
Date: Friday, November 4, 2011 @ 19:36:16 Author: allan Revision: 142079 db-move: moved tar from [testing] to [core] (i686) Added: tar/repos/core-i686/PKGBUILD (from rev 142056, tar/repos/testing-i686/PKGBUILD) tar/repos/core-i686/tar.1 (from rev 142056, tar/repos/testing-i686/tar.1) tar/repos/core-i686/tar.install (from rev 142056, tar/repos/testing-i686/tar.install) Deleted: tar/repos/core-i686/PKGBUILD tar/repos/core-i686/tar.1 tar/repos/core-i686/tar.install tar/repos/testing-i686/ -+ PKGBUILD| 75 +++-- tar.1 | 731 +- tar.install | 42 +-- 3 files changed, 426 insertions(+), 422 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:36:15 UTC (rev 142078) +++ core-i686/PKGBUILD 2011-11-04 23:36:16 UTC (rev 142079) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: Andreas Radke - -pkgname=tar -pkgver=1.26 -pkgrel=1 -pkgdesc="Utility used to store, backup, and transport files" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/tar/tar.html"; -license=('GPL3') -groups=('base') -depends=('glibc' 'sh') -options=('!emptydirs') -install=tar.install -source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz -tar.1) -md5sums=('0ced6f20b9fa1bea588005b5ad4b52c1' - 'e0538778516a284e3558c454b2576c2f') - -build() { - cd ${srcdir}/$pkgname-$pkgver - - ./configure --prefix=/usr --libexecdir=/usr/lib/tar --bindir=/bin - make -} - -check() { - cd ${srcdir}/$pkgname-$pkgver - make check -} - -package() { - cd ${srcdir}/$pkgname-$pkgver - make DESTDIR=${pkgdir} install - install -Dm644 ${srcdir}/tar.1 ${pkgdir}/usr/share/man/man1/tar.1 -} Copied: tar/repos/core-i686/PKGBUILD (from rev 142056, tar/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:36:16 UTC (rev 142079) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: Andreas Radke + +pkgname=tar +pkgver=1.26 +pkgrel=2 +pkgdesc="Utility used to store, backup, and transport files" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/tar/tar.html"; +license=('GPL3') +groups=('base') +depends=('glibc' 'sh') +options=('!emptydirs') +install=tar.install +source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig} +tar.1) +md5sums=('0ced6f20b9fa1bea588005b5ad4b52c1' + '6618d5fe7785e138c27d7d6a24e998b2' + 'e97e7343f4e23724b4c48bca2f033e38') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr --libexecdir=/usr/lib/tar --bindir=/bin + make +} + +check() { + cd ${srcdir}/$pkgname-$pkgver + make check +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install + install -Dm644 ${srcdir}/tar.1 ${pkgdir}/usr/share/man/man1/tar.1 +} Deleted: core-i686/tar.1 === --- core-i686/tar.1 2011-11-04 23:36:15 UTC (rev 142078) +++ core-i686/tar.1 2011-11-04 23:36:16 UTC (rev 142079) @@ -1,364 +0,0 @@ -.\" generated by script on Wed Mar 10 17:01:09 2010 -.Dd Mar 10, 2010 -.Dt TAR 1 -.Sh NAME -.Nm tar -.Nd The GNU version of the tar archiving utility -.Sh SYNOPSIS -.Nm tar -.Oo Fl Oc Cm A Fl \-catenate \-concatenate Cm \||\| c Fl \-create Cm \||\| d Fl \-diff \-compare Cm \||\| Fl \-delete Cm \||\| r Fl \-append Cm \||\| t Fl \-list Cm \||\| Fl \-test\-label Cm \||\| u Fl \-update Cm \||\| x Fl \-extract \-get -.Op Ar options -.Op Ar pathname ... -.Sh DESCRIPTION -.Nm Tar -stores and extracts files from a tape or disk archive. -.Pp -The first argument to -tar -should be a function; either one of the letters -.Cm Acdrtux , -or one of the long function names. -A function letter need not be prefixed with ``\-'', and may be combined -with other single-letter options. -A long function name must be prefixed with -.Cm \\-\\- . -Some options take a parameter; with the single-letter form -these must be given as separate arguments. -With the long form, they may be given by appending -.Cm = Ns Ar value -to the option. -.Sh FUNCTION LETTERS -Main operation mode: -.Bl -tag -width flag -.It Fl A , Fl \-catenate , Fl \-concatenate -append tar files to an archive -.It Fl c , Fl \-create -create a new archive -.It Fl d , Fl \-diff , Fl \-compare -find differences between archive and file system -.It Fl \-delete -delete from the archive (not on mag tapes!) -.It Fl r , Fl \-append -append files to the end of an archive -.It Fl t , Fl \-list -list the contents of an archive -.It Fl \-test\-label -test the archive volume label and exit -.It Fl u , Fl \-update -only append files newer than copy in archive -.It Fl x , Fl \-extract , Fl \-get -extract files from an archive -.El -.Sh OTHER OPTIONS -Operation modifiers: -.Bl -ta
[arch-commits] Commit in sed/repos (5 files)
Date: Friday, November 4, 2011 @ 19:36:13 Author: allan Revision: 142077 db-move: moved sed from [testing] to [core] (i686) Added: sed/repos/core-i686/PKGBUILD (from rev 142056, sed/repos/testing-i686/PKGBUILD) sed/repos/core-i686/sed.install (from rev 142056, sed/repos/testing-i686/sed.install) Deleted: sed/repos/core-i686/PKGBUILD sed/repos/core-i686/sed.install sed/repos/testing-i686/ -+ PKGBUILD| 62 +++--- sed.install | 40 ++--- 2 files changed, 54 insertions(+), 48 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:36:11 UTC (rev 142076) +++ core-i686/PKGBUILD 2011-11-04 23:36:13 UTC (rev 142077) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=sed -pkgver=4.2.1 -pkgrel=3 -pkgdesc="GNU stream editor" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/sed"; -license=('GPL3') -groups=('base') -depends=('acl' 'sh') -makedepends=('gettext') -install=sed.install -source=(ftp://ftp.gnu.org/pub/gnu/sed/${pkgname}-${pkgver}.tar.gz) -md5sums=('f0fd4d7da574d4707e442285fd2d3b86') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --bindir=/bin --without-included-regex - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install -} Copied: sed/repos/core-i686/PKGBUILD (from rev 142056, sed/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:36:13 UTC (rev 142077) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=sed +pkgver=4.2.1 +pkgrel=4 +pkgdesc="GNU stream editor" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/sed"; +license=('GPL3') +groups=('base') +depends=('acl' 'sh') +makedepends=('gettext') +install=sed.install +source=(ftp://ftp.gnu.org/pub/gnu/sed/${pkgname}-${pkgver}.tar.gz{,.sig}) +md5sums=('f0fd4d7da574d4707e442285fd2d3b86' + '91871b227dbf0916e019ba1fb0fbfdf3') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --bindir=/bin --without-included-regex + make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} Deleted: core-i686/sed.install === --- core-i686/sed.install 2011-11-04 23:36:11 UTC (rev 142076) +++ core-i686/sed.install 2011-11-04 23:36:13 UTC (rev 142077) @@ -1,20 +0,0 @@ -infodir=/usr/share/info -filelist=(sed.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} Copied: sed/repos/core-i686/sed.install (from rev 142056, sed/repos/testing-i686/sed.install) === --- core-i686/sed.install (rev 0) +++ core-i686/sed.install 2011-11-04 23:36:13 UTC (rev 142077) @@ -0,0 +1,20 @@ +infodir=/usr/share/info +filelist=(sed.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +}
[arch-commits] Commit in sed/repos (5 files)
Date: Friday, November 4, 2011 @ 19:36:15 Author: allan Revision: 142078 db-move: moved sed from [testing] to [core] (x86_64) Added: sed/repos/core-x86_64/PKGBUILD (from rev 142056, sed/repos/testing-x86_64/PKGBUILD) sed/repos/core-x86_64/sed.install (from rev 142056, sed/repos/testing-x86_64/sed.install) Deleted: sed/repos/core-x86_64/PKGBUILD sed/repos/core-x86_64/sed.install sed/repos/testing-x86_64/ -+ PKGBUILD| 62 +++--- sed.install | 40 ++--- 2 files changed, 54 insertions(+), 48 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:36:13 UTC (rev 142077) +++ core-x86_64/PKGBUILD2011-11-04 23:36:15 UTC (rev 142078) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=sed -pkgver=4.2.1 -pkgrel=3 -pkgdesc="GNU stream editor" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/sed"; -license=('GPL3') -groups=('base') -depends=('acl' 'sh') -makedepends=('gettext') -install=sed.install -source=(ftp://ftp.gnu.org/pub/gnu/sed/${pkgname}-${pkgver}.tar.gz) -md5sums=('f0fd4d7da574d4707e442285fd2d3b86') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --bindir=/bin --without-included-regex - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install -} Copied: sed/repos/core-x86_64/PKGBUILD (from rev 142056, sed/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:36:15 UTC (rev 142078) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=sed +pkgver=4.2.1 +pkgrel=4 +pkgdesc="GNU stream editor" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/sed"; +license=('GPL3') +groups=('base') +depends=('acl' 'sh') +makedepends=('gettext') +install=sed.install +source=(ftp://ftp.gnu.org/pub/gnu/sed/${pkgname}-${pkgver}.tar.gz{,.sig}) +md5sums=('f0fd4d7da574d4707e442285fd2d3b86' + '91871b227dbf0916e019ba1fb0fbfdf3') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --bindir=/bin --without-included-regex + make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} Deleted: core-x86_64/sed.install === --- core-x86_64/sed.install 2011-11-04 23:36:13 UTC (rev 142077) +++ core-x86_64/sed.install 2011-11-04 23:36:15 UTC (rev 142078) @@ -1,20 +0,0 @@ -infodir=/usr/share/info -filelist=(sed.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} Copied: sed/repos/core-x86_64/sed.install (from rev 142056, sed/repos/testing-x86_64/sed.install) === --- core-x86_64/sed.install (rev 0) +++ core-x86_64/sed.install 2011-11-04 23:36:15 UTC (rev 142078) @@ -0,0 +1,20 @@ +infodir=/usr/share/info +filelist=(sed.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +}
[arch-commits] Commit in pkg-config/repos (5 files)
Date: Friday, November 4, 2011 @ 19:36:11 Author: allan Revision: 142076 db-move: moved pkg-config from [testing] to [core] (x86_64) Added: pkg-config/repos/core-x86_64/PKGBUILD (from rev 142056, pkg-config/repos/testing-x86_64/PKGBUILD) pkg-config/repos/core-x86_64/autoconf-2.66.patch (from rev 142056, pkg-config/repos/testing-x86_64/autoconf-2.66.patch) Deleted: pkg-config/repos/core-x86_64/PKGBUILD pkg-config/repos/core-x86_64/autoconf-2.66.patch pkg-config/repos/testing-x86_64/ -+ PKGBUILD| 73 +- autoconf-2.66.patch | 24 2 files changed, 49 insertions(+), 48 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:36:09 UTC (rev 142075) +++ core-x86_64/PKGBUILD2011-11-04 23:36:11 UTC (rev 142076) @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Committer: Judd Vinet - -pkgname=pkg-config -pkgver=0.26 -pkgrel=1 -pkgdesc="A system for managing library compile/link flags" -arch=('i686' 'x86_64') -url="http://pkgconfig.freedesktop.org/wiki/"; -license=('GPL') -groups=('base-devel') -depends=('glibc' 'popt' 'glib2') -provides=("pkgconfig=${pkgver}") -conflicts=('pkgconfig') -replaces=('pkgconfig') -source=(http://pkgconfig.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz) -md5sums=('47525c26a9ba7ba14bf85e01509a7234') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - # Use system popt - ./configure --prefix=/usr --with-installed-popt - - make -} - -check() { - cd "${srcdir}/${pkgname}-${pkgver}" - make check -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install -} Copied: pkg-config/repos/core-x86_64/PKGBUILD (from rev 142056, pkg-config/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:36:11 UTC (rev 142076) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Allan McRae +# Committer: Judd Vinet + +pkgname=pkg-config +pkgver=0.26 +pkgrel=2 +pkgdesc="A system for managing library compile/link flags" +arch=('i686' 'x86_64') +url="http://pkgconfig.freedesktop.org/wiki/"; +license=('GPL') +groups=('base-devel') +depends=('glibc' 'popt' 'glib2') +provides=("pkgconfig=${pkgver}") +conflicts=('pkgconfig') +replaces=('pkgconfig') +source=(http://pkgconfig.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz) +md5sums=('47525c26a9ba7ba14bf85e01509a7234') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + # Use system popt + ./configure --prefix=/usr --with-installed-popt + + make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} Deleted: core-x86_64/autoconf-2.66.patch === --- core-x86_64/autoconf-2.66.patch 2011-11-04 23:36:09 UTC (rev 142075) +++ core-x86_64/autoconf-2.66.patch 2011-11-04 23:36:11 UTC (rev 142076) @@ -1,12 +0,0 @@ -diff -Naur pkg-config-0.25-old//pkg.m4 pkg-config-0.25/pkg.m4 pkg-config-0.25-old//pkg.m42009-12-07 06:39:02.0 +1000 -+++ pkg-config-0.25/pkg.m4 2010-07-15 14:44:37.466942978 +1000 -@@ -135,7 +135,7 @@ - Consider adjusting the PKG_CONFIG_PATH environment variable if you - installed software in a non-standard prefix. - --_PKG_TEXT])dnl -+_PKG_TEXT])[]dnl - ]) - elif test $pkg_failed = untried; then - AC_MSG_RESULT([no]) Copied: pkg-config/repos/core-x86_64/autoconf-2.66.patch (from rev 142056, pkg-config/repos/testing-x86_64/autoconf-2.66.patch) === --- core-x86_64/autoconf-2.66.patch (rev 0) +++ core-x86_64/autoconf-2.66.patch 2011-11-04 23:36:11 UTC (rev 142076) @@ -0,0 +1,12 @@ +diff -Naur pkg-config-0.25-old//pkg.m4 pkg-config-0.25/pkg.m4 +--- pkg-config-0.25-old//pkg.m42009-12-07 06:39:02.0 +1000 pkg-config-0.25/pkg.m4 2010-07-15 14:44:37.466942978 +1000 +@@ -135,7 +135,7 @@ + Consider adjusting the PKG_CONFIG_PATH environment variable if you + installed software in a non-standard prefix. + +-_PKG_TEXT])dnl ++_PKG_TEXT])[]dnl + ]) + elif test $pkg_failed = untried; then + AC_MSG_RESULT([no])
[arch-commits] Commit in patch/repos (5 files)
Date: Friday, November 4, 2011 @ 19:36:08 Author: allan Revision: 142074 db-move: moved patch from [testing] to [core] (x86_64) Added: patch/repos/core-x86_64/PKGBUILD (from rev 142056, patch/repos/testing-x86_64/PKGBUILD) patch/repos/core-x86_64/patch-2.6.1-get-arg.patch (from rev 142056, patch/repos/testing-x86_64/patch-2.6.1-get-arg.patch) Deleted: patch/repos/core-x86_64/PKGBUILD patch/repos/core-x86_64/patch-2.6.1-get-arg.patch patch/repos/testing-x86_64/ ---+ PKGBUILD | 71 patch-2.6.1-get-arg.patch | 24 +++--- 2 files changed, 52 insertions(+), 43 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:36:07 UTC (rev 142073) +++ core-x86_64/PKGBUILD2011-11-04 23:36:08 UTC (rev 142074) @@ -1,31 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=patch -pkgver=2.6.1 -pkgrel=2 -pkgdesc="A utility to apply patch files to original sources" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/patch/patch.html"; -license=('GPL') -groups=('base-devel') -depends=('glibc') -optdepends=('ed: Interpret the patch as an ed script; for patch -e functionality(deprecated)') -source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz patch-2.6.1-get-arg.patch) -md5sums=('d758eb96d3f75047efc004a720d33daf' '45cd5709adbbcdcb3ab95dc43559c07c') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # Fixed argument type for --get - # see https://bugzilla.redhat.com/show_bug.cgi?id=553624 - patch -Np1 -i ../patch-2.6.1-get-arg.patch - ./configure --prefix=/usr --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make prefix=${pkgdir}/usr mandir=${pkgdir}/usr/share/man install -} Copied: patch/repos/core-x86_64/PKGBUILD (from rev 142056, patch/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:36:08 UTC (rev 142074) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=patch +pkgver=2.6.1 +pkgrel=3 +pkgdesc="A utility to apply patch files to original sources" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/patch/patch.html"; +license=('GPL') +groups=('base-devel') +depends=('glibc') +makedepends=('ed') +optdepends=('ed: Interpret the patch as an ed script; for patch -e functionality(deprecated)') +source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig} +patch-2.6.1-get-arg.patch) +md5sums=('d758eb96d3f75047efc004a720d33daf' + 'f7953f3e472fae5118815e6138372e22' + '45cd5709adbbcdcb3ab95dc43559c07c') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + # Fixed argument type for --get + # see https://bugzilla.redhat.com/show_bug.cgi?id=553624 + patch -Np1 -i $srcdir/patch-2.6.1-get-arg.patch + ./configure --prefix=/usr --mandir=/usr/share/man + make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make prefix=${pkgdir}/usr mandir=${pkgdir}/usr/share/man install +} Deleted: core-x86_64/patch-2.6.1-get-arg.patch === --- core-x86_64/patch-2.6.1-get-arg.patch 2011-11-04 23:36:07 UTC (rev 142073) +++ core-x86_64/patch-2.6.1-get-arg.patch 2011-11-04 23:36:08 UTC (rev 142074) @@ -1,12 +0,0 @@ -diff -up patch-2.6.1/src/patch.c.get-arg patch-2.6.1/src/patch.c patch-2.6.1/src/patch.c.get-arg2010-07-27 18:05:26.217150510 +0100 -+++ patch-2.6.1/src/patch.c2010-07-27 18:05:47.464150892 +0100 -@@ -558,7 +558,7 @@ static struct option const longopts[] = - {"remove-empty-files", no_argument, NULL, 'E'}, - {"force", no_argument, NULL, 'f'}, - {"fuzz", required_argument, NULL, 'F'}, -- {"get", no_argument, NULL, 'g'}, -+ {"get", required_argument, NULL, 'g'}, - {"input", required_argument, NULL, 'i'}, - {"ignore-whitespace", no_argument, NULL, 'l'}, - #ifdef ENABLE_MERGE Copied: patch/repos/core-x86_64/patch-2.6.1-get-arg.patch (from rev 142056, patch/repos/testing-x86_64/patch-2.6.1-get-arg.patch) === --- core-x86_64/patch-2.6.1-get-arg.patch (rev 0) +++ core-x86_64/patch-2.6.1-get-arg.patch 2011-11-04 23:36:08 UTC (rev 142074) @@ -0,0 +1,12 @@ +diff -up patch-2.6.1/src/patch.c.get-arg patch-2.6.1/src/patch.c +--- patch-2.6.1/src/patch.c.get-arg2010-07-27 18:05:26.217150510 +0100 patch-2.6.1/src/patch.c2010-07-27 18:05:47.464150892 +0100 +@@ -558,7 +558,7 @@ static struct option const longopts[] = + {"remove-empty-files", no_argument, NULL, 'E'}, + {"force", no_argument, NULL, 'f'}, +
[arch-commits] Commit in pkg-config/repos (5 files)
Date: Friday, November 4, 2011 @ 19:36:09 Author: allan Revision: 142075 db-move: moved pkg-config from [testing] to [core] (i686) Added: pkg-config/repos/core-i686/PKGBUILD (from rev 142056, pkg-config/repos/testing-i686/PKGBUILD) pkg-config/repos/core-i686/autoconf-2.66.patch (from rev 142056, pkg-config/repos/testing-i686/autoconf-2.66.patch) Deleted: pkg-config/repos/core-i686/PKGBUILD pkg-config/repos/core-i686/autoconf-2.66.patch pkg-config/repos/testing-i686/ -+ PKGBUILD| 73 +- autoconf-2.66.patch | 24 2 files changed, 49 insertions(+), 48 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:36:08 UTC (rev 142074) +++ core-i686/PKGBUILD 2011-11-04 23:36:09 UTC (rev 142075) @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Committer: Judd Vinet - -pkgname=pkg-config -pkgver=0.26 -pkgrel=1 -pkgdesc="A system for managing library compile/link flags" -arch=('i686' 'x86_64') -url="http://pkgconfig.freedesktop.org/wiki/"; -license=('GPL') -groups=('base-devel') -depends=('glibc' 'popt' 'glib2') -provides=("pkgconfig=${pkgver}") -conflicts=('pkgconfig') -replaces=('pkgconfig') -source=(http://pkgconfig.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz) -md5sums=('47525c26a9ba7ba14bf85e01509a7234') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - # Use system popt - ./configure --prefix=/usr --with-installed-popt - - make -} - -check() { - cd "${srcdir}/${pkgname}-${pkgver}" - make check -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install -} Copied: pkg-config/repos/core-i686/PKGBUILD (from rev 142056, pkg-config/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:36:09 UTC (rev 142075) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Allan McRae +# Committer: Judd Vinet + +pkgname=pkg-config +pkgver=0.26 +pkgrel=2 +pkgdesc="A system for managing library compile/link flags" +arch=('i686' 'x86_64') +url="http://pkgconfig.freedesktop.org/wiki/"; +license=('GPL') +groups=('base-devel') +depends=('glibc' 'popt' 'glib2') +provides=("pkgconfig=${pkgver}") +conflicts=('pkgconfig') +replaces=('pkgconfig') +source=(http://pkgconfig.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz) +md5sums=('47525c26a9ba7ba14bf85e01509a7234') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + # Use system popt + ./configure --prefix=/usr --with-installed-popt + + make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} Deleted: core-i686/autoconf-2.66.patch === --- core-i686/autoconf-2.66.patch 2011-11-04 23:36:08 UTC (rev 142074) +++ core-i686/autoconf-2.66.patch 2011-11-04 23:36:09 UTC (rev 142075) @@ -1,12 +0,0 @@ -diff -Naur pkg-config-0.25-old//pkg.m4 pkg-config-0.25/pkg.m4 pkg-config-0.25-old//pkg.m42009-12-07 06:39:02.0 +1000 -+++ pkg-config-0.25/pkg.m4 2010-07-15 14:44:37.466942978 +1000 -@@ -135,7 +135,7 @@ - Consider adjusting the PKG_CONFIG_PATH environment variable if you - installed software in a non-standard prefix. - --_PKG_TEXT])dnl -+_PKG_TEXT])[]dnl - ]) - elif test $pkg_failed = untried; then - AC_MSG_RESULT([no]) Copied: pkg-config/repos/core-i686/autoconf-2.66.patch (from rev 142056, pkg-config/repos/testing-i686/autoconf-2.66.patch) === --- core-i686/autoconf-2.66.patch (rev 0) +++ core-i686/autoconf-2.66.patch 2011-11-04 23:36:09 UTC (rev 142075) @@ -0,0 +1,12 @@ +diff -Naur pkg-config-0.25-old//pkg.m4 pkg-config-0.25/pkg.m4 +--- pkg-config-0.25-old//pkg.m42009-12-07 06:39:02.0 +1000 pkg-config-0.25/pkg.m4 2010-07-15 14:44:37.466942978 +1000 +@@ -135,7 +135,7 @@ + Consider adjusting the PKG_CONFIG_PATH environment variable if you + installed software in a non-standard prefix. + +-_PKG_TEXT])dnl ++_PKG_TEXT])[]dnl + ]) + elif test $pkg_failed = untried; then + AC_MSG_RESULT([no])
[arch-commits] Commit in patch/repos (5 files)
Date: Friday, November 4, 2011 @ 19:36:07 Author: allan Revision: 142073 db-move: moved patch from [testing] to [core] (i686) Added: patch/repos/core-i686/PKGBUILD (from rev 142056, patch/repos/testing-i686/PKGBUILD) patch/repos/core-i686/patch-2.6.1-get-arg.patch (from rev 142056, patch/repos/testing-i686/patch-2.6.1-get-arg.patch) Deleted: patch/repos/core-i686/PKGBUILD patch/repos/core-i686/patch-2.6.1-get-arg.patch patch/repos/testing-i686/ ---+ PKGBUILD | 71 patch-2.6.1-get-arg.patch | 24 +++--- 2 files changed, 52 insertions(+), 43 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:36:06 UTC (rev 142072) +++ core-i686/PKGBUILD 2011-11-04 23:36:07 UTC (rev 142073) @@ -1,31 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=patch -pkgver=2.6.1 -pkgrel=2 -pkgdesc="A utility to apply patch files to original sources" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/patch/patch.html"; -license=('GPL') -groups=('base-devel') -depends=('glibc') -optdepends=('ed: Interpret the patch as an ed script; for patch -e functionality(deprecated)') -source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz patch-2.6.1-get-arg.patch) -md5sums=('d758eb96d3f75047efc004a720d33daf' '45cd5709adbbcdcb3ab95dc43559c07c') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # Fixed argument type for --get - # see https://bugzilla.redhat.com/show_bug.cgi?id=553624 - patch -Np1 -i ../patch-2.6.1-get-arg.patch - ./configure --prefix=/usr --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make prefix=${pkgdir}/usr mandir=${pkgdir}/usr/share/man install -} Copied: patch/repos/core-i686/PKGBUILD (from rev 142056, patch/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:36:07 UTC (rev 142073) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=patch +pkgver=2.6.1 +pkgrel=3 +pkgdesc="A utility to apply patch files to original sources" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/patch/patch.html"; +license=('GPL') +groups=('base-devel') +depends=('glibc') +makedepends=('ed') +optdepends=('ed: Interpret the patch as an ed script; for patch -e functionality(deprecated)') +source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig} +patch-2.6.1-get-arg.patch) +md5sums=('d758eb96d3f75047efc004a720d33daf' + 'f7953f3e472fae5118815e6138372e22' + '45cd5709adbbcdcb3ab95dc43559c07c') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + # Fixed argument type for --get + # see https://bugzilla.redhat.com/show_bug.cgi?id=553624 + patch -Np1 -i $srcdir/patch-2.6.1-get-arg.patch + ./configure --prefix=/usr --mandir=/usr/share/man + make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make prefix=${pkgdir}/usr mandir=${pkgdir}/usr/share/man install +} Deleted: core-i686/patch-2.6.1-get-arg.patch === --- core-i686/patch-2.6.1-get-arg.patch 2011-11-04 23:36:06 UTC (rev 142072) +++ core-i686/patch-2.6.1-get-arg.patch 2011-11-04 23:36:07 UTC (rev 142073) @@ -1,12 +0,0 @@ -diff -up patch-2.6.1/src/patch.c.get-arg patch-2.6.1/src/patch.c patch-2.6.1/src/patch.c.get-arg2010-07-27 18:05:26.217150510 +0100 -+++ patch-2.6.1/src/patch.c2010-07-27 18:05:47.464150892 +0100 -@@ -558,7 +558,7 @@ static struct option const longopts[] = - {"remove-empty-files", no_argument, NULL, 'E'}, - {"force", no_argument, NULL, 'f'}, - {"fuzz", required_argument, NULL, 'F'}, -- {"get", no_argument, NULL, 'g'}, -+ {"get", required_argument, NULL, 'g'}, - {"input", required_argument, NULL, 'i'}, - {"ignore-whitespace", no_argument, NULL, 'l'}, - #ifdef ENABLE_MERGE Copied: patch/repos/core-i686/patch-2.6.1-get-arg.patch (from rev 142056, patch/repos/testing-i686/patch-2.6.1-get-arg.patch) === --- core-i686/patch-2.6.1-get-arg.patch (rev 0) +++ core-i686/patch-2.6.1-get-arg.patch 2011-11-04 23:36:07 UTC (rev 142073) @@ -0,0 +1,12 @@ +diff -up patch-2.6.1/src/patch.c.get-arg patch-2.6.1/src/patch.c +--- patch-2.6.1/src/patch.c.get-arg2010-07-27 18:05:26.217150510 +0100 patch-2.6.1/src/patch.c2010-07-27 18:05:47.464150892 +0100 +@@ -558,7 +558,7 @@ static struct option const longopts[] = + {"remove-empty-files", no_argument, NULL, 'E'}, + {"force", no_argument, NULL, 'f'}, + {"fuzz", required_argument, NULL, 'F'}, +- {"get", no_argument, NULL, 'g'}, ++ {"get", requ
[arch-commits] Commit in ncurses/repos (3 files)
Date: Friday, November 4, 2011 @ 19:36:06 Author: allan Revision: 142072 db-move: moved ncurses from [testing] to [core] (x86_64) Added: ncurses/repos/core-x86_64/PKGBUILD (from rev 142056, ncurses/repos/testing-x86_64/PKGBUILD) Deleted: ncurses/repos/core-x86_64/PKGBUILD ncurses/repos/testing-x86_64/ --+ PKGBUILD | 147 ++--- 1 file changed, 74 insertions(+), 73 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:36:05 UTC (rev 142071) +++ core-x86_64/PKGBUILD2011-11-04 23:36:06 UTC (rev 142072) @@ -1,73 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=ncurses -pkgver=5.9 -pkgrel=1 -pkgdesc="System V Release 4.0 curses emulation library" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/ncurses/"; -license=('MIT') -depends=('glibc') -source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1') - -build() { - cd ${srcdir}/ - mkdir ncurses{,w}-build - - cd ${srcdir}/ncursesw-build - ../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ - --with-shared --with-normal --without-debug --without-ada \ - --with-install-prefix=${pkgdir} --enable-widec - # add --enable-ext-colors with next soname bump - make - - # libncurses.so.5 for external binary support - cd ${srcdir}/ncurses-build - [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" - ../${pkgname}-${pkgver}/configure --prefix=/usr \ ---with-shared --with-normal --without-debug --without-ada \ ---with-install-prefix=${pkgdir} $CONFIGFLAG - make -} - -package() { - cd ${srcdir}/ncursesw-build - make install - - # move libraries needed for boot to /lib (we call tput in initscripts) - install -dm755 ${pkgdir}/lib - mv ${pkgdir}/usr/lib/libncursesw.so.5* ${pkgdir}/lib - ln -sf ../../lib/libncursesw.so.5 ${pkgdir}/usr/lib/libncursesw.so - - # Fool packages looking to link to non-wide-character ncurses libraries - for lib in curses ncurses form panel menu; do -rm -f ${pkgdir}/usr/lib/lib${lib}.so -echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so -ln -sf lib${lib}w.a ${pkgdir}/usr/lib/lib${lib}.a - done - ln -sf libncurses++w.a ${pkgdir}/usr/lib/libncurses++.a - - # install tput to /bin - install -dm755 ${pkgdir}/bin/ - mv ${pkgdir}/usr/bin/tput ${pkgdir}/bin/tput - - # Some packages look for -lcurses during build - rm -f ${pkgdir}/usr/lib/libcursesw.so - echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib/libcursesw.so - ln -sf libncurses.so ${pkgdir}/usr/lib/libcurses.so - ln -sf libncursesw.a ${pkgdir}/usr/lib/libcursesw.a - ln -sf libncurses.a ${pkgdir}/usr/lib/libcurses.a - - # non-widec compatibility library - cd ${srcdir}/ncurses-build - install -Dm755 lib/libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.${pkgver} - ln -sf libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.5 - - # install license, rip it from the readme - cd ${srcdir}/${pkgname}-${pkgver} - install -dm755 ${pkgdir}/usr/share/licenses/$pkgname - grep -B 100 '$Id' README > ${pkgdir}/usr/share/licenses/${pkgname}/license.txt -} Copied: ncurses/repos/core-x86_64/PKGBUILD (from rev 142056, ncurses/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:36:06 UTC (rev 142072) @@ -0,0 +1,74 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=ncurses +pkgver=5.9 +pkgrel=2 +pkgdesc="System V Release 4.0 curses emulation library" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/ncurses/"; +license=('MIT') +depends=('glibc') +source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig}) +md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1' + '014ffdbbfec6d41a9a89d6cbe6434638') + +build() { + cd ${srcdir}/ + mkdir ncurses{,w}-build + + cd ${srcdir}/ncursesw-build + ../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ + --with-shared --with-normal --without-debug --without-ada \ + --with-install-prefix=${pkgdir} --enable-widec + # add --enable-ext-colors with next soname bump + make + + # libncurses.so.5 for external binary support + cd ${srcdir}/ncurses-build + [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" + ../${pkgname}-${pkgver}/configure --prefix=/usr \ +--with-shared --with-normal --without-debug --without-ada \ +--with-install-prefix=${pkgdir} $CONFIGFLAG + make +} + +package() { + cd ${srcdir}/ncursesw-build + make install + + # move libraries needed for boot to /lib (we call tput in initscripts) + install -dm755 ${pkgdir}/lib + mv ${pkgdir}/usr/lib/libncursesw.so.5* ${pkgdir}/lib + ln -sf ../../lib/libncursesw.so.5 ${pkgdir}/usr/lib
[arch-commits] Commit in ncurses/repos (3 files)
Date: Friday, November 4, 2011 @ 19:36:05 Author: allan Revision: 142071 db-move: moved ncurses from [testing] to [core] (i686) Added: ncurses/repos/core-i686/PKGBUILD (from rev 142056, ncurses/repos/testing-i686/PKGBUILD) Deleted: ncurses/repos/core-i686/PKGBUILD ncurses/repos/testing-i686/ --+ PKGBUILD | 147 ++--- 1 file changed, 74 insertions(+), 73 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:36:03 UTC (rev 142070) +++ core-i686/PKGBUILD 2011-11-04 23:36:05 UTC (rev 142071) @@ -1,73 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=ncurses -pkgver=5.9 -pkgrel=1 -pkgdesc="System V Release 4.0 curses emulation library" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/ncurses/"; -license=('MIT') -depends=('glibc') -source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1') - -build() { - cd ${srcdir}/ - mkdir ncurses{,w}-build - - cd ${srcdir}/ncursesw-build - ../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ - --with-shared --with-normal --without-debug --without-ada \ - --with-install-prefix=${pkgdir} --enable-widec - # add --enable-ext-colors with next soname bump - make - - # libncurses.so.5 for external binary support - cd ${srcdir}/ncurses-build - [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" - ../${pkgname}-${pkgver}/configure --prefix=/usr \ ---with-shared --with-normal --without-debug --without-ada \ ---with-install-prefix=${pkgdir} $CONFIGFLAG - make -} - -package() { - cd ${srcdir}/ncursesw-build - make install - - # move libraries needed for boot to /lib (we call tput in initscripts) - install -dm755 ${pkgdir}/lib - mv ${pkgdir}/usr/lib/libncursesw.so.5* ${pkgdir}/lib - ln -sf ../../lib/libncursesw.so.5 ${pkgdir}/usr/lib/libncursesw.so - - # Fool packages looking to link to non-wide-character ncurses libraries - for lib in curses ncurses form panel menu; do -rm -f ${pkgdir}/usr/lib/lib${lib}.so -echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so -ln -sf lib${lib}w.a ${pkgdir}/usr/lib/lib${lib}.a - done - ln -sf libncurses++w.a ${pkgdir}/usr/lib/libncurses++.a - - # install tput to /bin - install -dm755 ${pkgdir}/bin/ - mv ${pkgdir}/usr/bin/tput ${pkgdir}/bin/tput - - # Some packages look for -lcurses during build - rm -f ${pkgdir}/usr/lib/libcursesw.so - echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib/libcursesw.so - ln -sf libncurses.so ${pkgdir}/usr/lib/libcurses.so - ln -sf libncursesw.a ${pkgdir}/usr/lib/libcursesw.a - ln -sf libncurses.a ${pkgdir}/usr/lib/libcurses.a - - # non-widec compatibility library - cd ${srcdir}/ncurses-build - install -Dm755 lib/libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.${pkgver} - ln -sf libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.5 - - # install license, rip it from the readme - cd ${srcdir}/${pkgname}-${pkgver} - install -dm755 ${pkgdir}/usr/share/licenses/$pkgname - grep -B 100 '$Id' README > ${pkgdir}/usr/share/licenses/${pkgname}/license.txt -} Copied: ncurses/repos/core-i686/PKGBUILD (from rev 142056, ncurses/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:36:05 UTC (rev 142071) @@ -0,0 +1,74 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=ncurses +pkgver=5.9 +pkgrel=2 +pkgdesc="System V Release 4.0 curses emulation library" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/ncurses/"; +license=('MIT') +depends=('glibc') +source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig}) +md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1' + '014ffdbbfec6d41a9a89d6cbe6434638') + +build() { + cd ${srcdir}/ + mkdir ncurses{,w}-build + + cd ${srcdir}/ncursesw-build + ../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ + --with-shared --with-normal --without-debug --without-ada \ + --with-install-prefix=${pkgdir} --enable-widec + # add --enable-ext-colors with next soname bump + make + + # libncurses.so.5 for external binary support + cd ${srcdir}/ncurses-build + [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" + ../${pkgname}-${pkgver}/configure --prefix=/usr \ +--with-shared --with-normal --without-debug --without-ada \ +--with-install-prefix=${pkgdir} $CONFIGFLAG + make +} + +package() { + cd ${srcdir}/ncursesw-build + make install + + # move libraries needed for boot to /lib (we call tput in initscripts) + install -dm755 ${pkgdir}/lib + mv ${pkgdir}/usr/lib/libncursesw.so.5* ${pkgdir}/lib + ln -sf ../../lib/libncursesw.so.5 ${pkgdir}/usr/lib/libncursesw.so + + # Fool packages looking to
[arch-commits] Commit in mlocate/repos (9 files)
Date: Friday, November 4, 2011 @ 19:36:03 Author: allan Revision: 142070 db-move: moved mlocate from [testing] to [core] (x86_64) Added: mlocate/repos/core-x86_64/PKGBUILD (from rev 142056, mlocate/repos/testing-x86_64/PKGBUILD) mlocate/repos/core-x86_64/mlocate.install (from rev 142056, mlocate/repos/testing-x86_64/mlocate.install) mlocate/repos/core-x86_64/updatedb.conf (from rev 142056, mlocate/repos/testing-x86_64/updatedb.conf) mlocate/repos/core-x86_64/updatedb.cron.daily (from rev 142056, mlocate/repos/testing-x86_64/updatedb.cron.daily) Deleted: mlocate/repos/core-x86_64/PKGBUILD mlocate/repos/core-x86_64/mlocate.install mlocate/repos/core-x86_64/updatedb.conf mlocate/repos/core-x86_64/updatedb.cron.daily mlocate/repos/testing-x86_64/ -+ PKGBUILD| 112 +- mlocate.install | 36 updatedb.conf | 10 ++-- updatedb.cron.daily | 58 - 4 files changed, 108 insertions(+), 108 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:36:01 UTC (rev 142069) +++ core-x86_64/PKGBUILD2011-11-04 23:36:03 UTC (rev 142070) @@ -1,56 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: lydgate - -pkgname=mlocate -pkgver=0.24 -pkgrel=1 -pkgdesc="Faster merging drop-in for slocate" -arch=('i686' 'x86_64') -url="http://carolina.mff.cuni.cz/~trmac/blog/mlocate"; -license=('GPL') -conflicts=('slocate') -provides=('slocate') -replaces=('slocate') -depends=('glibc' 'coreutils' 'sh') -backup=('etc/updatedb.conf' -'etc/cron.daily/updatedb') -install=mlocate.install -source=(https://fedorahosted.org/releases/m/l/mlocate/mlocate-$pkgver.tar.xz - updatedb.conf - updatedb.cron.daily) -md5sums=('a9c221e5bc489a2ed710c943990137bd' - 'c374ff223f2e07b5e602ba22359f2335' - 'cde5da81bebad2de556ef2e43d895e13') - -build() { - cd $srcdir/$pkgname-$pkgver - - sed -i '/^groupname /s/mlocate/locate/' Makefile.in - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib - make - -} - -check() { - cd $srcdir/$pkgname-$pkgver - make check -} - -package() { - cd $srcdir/$pkgname-$pkgver - - # Set up a default updatedb.conf and a daily cronjob - install -Dm644 ${srcdir}/updatedb.conf $pkgdir/etc/updatedb.conf - install -Dm744 ${srcdir}/updatedb.cron.daily $pkgdir/etc/cron.daily/updatedb - - # Install Mlocate - make DESTDIR=$pkgdir install - - ln -sv locate $pkgdir/usr/bin/slocate - chgrp -v 21 $pkgdir/usr/bin/locate - chmod -v 2755 $pkgdir/usr/bin/locate - - install -dm755 $pkgdir/var/lib - install -d -m750 -g21 $pkgdir/var/lib/locate -} Copied: mlocate/repos/core-x86_64/PKGBUILD (from rev 142056, mlocate/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:36:03 UTC (rev 142070) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: lydgate + +pkgname=mlocate +pkgver=0.24 +pkgrel=2 +pkgdesc="Faster merging drop-in for slocate" +arch=('i686' 'x86_64') +url="http://carolina.mff.cuni.cz/~trmac/blog/mlocate"; +license=('GPL') +conflicts=('slocate') +provides=('slocate') +replaces=('slocate') +depends=('glibc' 'coreutils' 'sh') +backup=('etc/updatedb.conf' +'etc/cron.daily/updatedb') +install=mlocate.install +source=(https://fedorahosted.org/releases/m/l/mlocate/mlocate-$pkgver.tar.xz + updatedb.conf + updatedb.cron.daily) +md5sums=('a9c221e5bc489a2ed710c943990137bd' + 'c374ff223f2e07b5e602ba22359f2335' + 'cde5da81bebad2de556ef2e43d895e13') + +build() { + cd $srcdir/$pkgname-$pkgver + + sed -i '/^groupname /s/mlocate/locate/' Makefile.in + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib + make + +} + +check() { + cd $srcdir/$pkgname-$pkgver + make check +} + +package() { + cd $srcdir/$pkgname-$pkgver + + # Set up a default updatedb.conf and a daily cronjob + install -Dm644 ${srcdir}/updatedb.conf $pkgdir/etc/updatedb.conf + install -Dm744 ${srcdir}/updatedb.cron.daily $pkgdir/etc/cron.daily/updatedb + + # Install Mlocate + make DESTDIR=$pkgdir install + + ln -sv locate $pkgdir/usr/bin/slocate + chgrp -v 21 $pkgdir/usr/bin/locate + chmod -v 2755 $pkgdir/usr/bin/locate + + install -dm755 $pkgdir/var/lib + install -d -m750 -g21 $pkgdir/var/lib/locate +} Deleted: core-x86_64/mlocate.install === --- core-x86_64/mlocate.install 2011-11-04 23:36:01 UTC (rev 142069) +++ core-x86_64/mlocate.install 2011-11-04 23:36:03 UTC (rev 142070) @@ -1,18 +0,0 @@ -post_install() { - post_upgrade "$1" "$1" - echo "mlocate command is technically locate, but slocate is symlinked and still works." - echo "Y
[arch-commits] Commit in mlocate/repos (9 files)
Date: Friday, November 4, 2011 @ 19:36:01 Author: allan Revision: 142069 db-move: moved mlocate from [testing] to [core] (i686) Added: mlocate/repos/core-i686/PKGBUILD (from rev 142056, mlocate/repos/testing-i686/PKGBUILD) mlocate/repos/core-i686/mlocate.install (from rev 142056, mlocate/repos/testing-i686/mlocate.install) mlocate/repos/core-i686/updatedb.conf (from rev 142056, mlocate/repos/testing-i686/updatedb.conf) mlocate/repos/core-i686/updatedb.cron.daily (from rev 142056, mlocate/repos/testing-i686/updatedb.cron.daily) Deleted: mlocate/repos/core-i686/PKGBUILD mlocate/repos/core-i686/mlocate.install mlocate/repos/core-i686/updatedb.conf mlocate/repos/core-i686/updatedb.cron.daily mlocate/repos/testing-i686/ -+ PKGBUILD| 112 +- mlocate.install | 36 updatedb.conf | 10 ++-- updatedb.cron.daily | 58 - 4 files changed, 108 insertions(+), 108 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:36:00 UTC (rev 142068) +++ core-i686/PKGBUILD 2011-11-04 23:36:01 UTC (rev 142069) @@ -1,56 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: lydgate - -pkgname=mlocate -pkgver=0.24 -pkgrel=1 -pkgdesc="Faster merging drop-in for slocate" -arch=('i686' 'x86_64') -url="http://carolina.mff.cuni.cz/~trmac/blog/mlocate"; -license=('GPL') -conflicts=('slocate') -provides=('slocate') -replaces=('slocate') -depends=('glibc' 'coreutils' 'sh') -backup=('etc/updatedb.conf' -'etc/cron.daily/updatedb') -install=mlocate.install -source=(https://fedorahosted.org/releases/m/l/mlocate/mlocate-$pkgver.tar.xz - updatedb.conf - updatedb.cron.daily) -md5sums=('a9c221e5bc489a2ed710c943990137bd' - 'c374ff223f2e07b5e602ba22359f2335' - 'cde5da81bebad2de556ef2e43d895e13') - -build() { - cd $srcdir/$pkgname-$pkgver - - sed -i '/^groupname /s/mlocate/locate/' Makefile.in - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib - make - -} - -check() { - cd $srcdir/$pkgname-$pkgver - make check -} - -package() { - cd $srcdir/$pkgname-$pkgver - - # Set up a default updatedb.conf and a daily cronjob - install -Dm644 ${srcdir}/updatedb.conf $pkgdir/etc/updatedb.conf - install -Dm744 ${srcdir}/updatedb.cron.daily $pkgdir/etc/cron.daily/updatedb - - # Install Mlocate - make DESTDIR=$pkgdir install - - ln -sv locate $pkgdir/usr/bin/slocate - chgrp -v 21 $pkgdir/usr/bin/locate - chmod -v 2755 $pkgdir/usr/bin/locate - - install -dm755 $pkgdir/var/lib - install -d -m750 -g21 $pkgdir/var/lib/locate -} Copied: mlocate/repos/core-i686/PKGBUILD (from rev 142056, mlocate/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:36:01 UTC (rev 142069) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: lydgate + +pkgname=mlocate +pkgver=0.24 +pkgrel=2 +pkgdesc="Faster merging drop-in for slocate" +arch=('i686' 'x86_64') +url="http://carolina.mff.cuni.cz/~trmac/blog/mlocate"; +license=('GPL') +conflicts=('slocate') +provides=('slocate') +replaces=('slocate') +depends=('glibc' 'coreutils' 'sh') +backup=('etc/updatedb.conf' +'etc/cron.daily/updatedb') +install=mlocate.install +source=(https://fedorahosted.org/releases/m/l/mlocate/mlocate-$pkgver.tar.xz + updatedb.conf + updatedb.cron.daily) +md5sums=('a9c221e5bc489a2ed710c943990137bd' + 'c374ff223f2e07b5e602ba22359f2335' + 'cde5da81bebad2de556ef2e43d895e13') + +build() { + cd $srcdir/$pkgname-$pkgver + + sed -i '/^groupname /s/mlocate/locate/' Makefile.in + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib + make + +} + +check() { + cd $srcdir/$pkgname-$pkgver + make check +} + +package() { + cd $srcdir/$pkgname-$pkgver + + # Set up a default updatedb.conf and a daily cronjob + install -Dm644 ${srcdir}/updatedb.conf $pkgdir/etc/updatedb.conf + install -Dm744 ${srcdir}/updatedb.cron.daily $pkgdir/etc/cron.daily/updatedb + + # Install Mlocate + make DESTDIR=$pkgdir install + + ln -sv locate $pkgdir/usr/bin/slocate + chgrp -v 21 $pkgdir/usr/bin/locate + chmod -v 2755 $pkgdir/usr/bin/locate + + install -dm755 $pkgdir/var/lib + install -d -m750 -g21 $pkgdir/var/lib/locate +} Deleted: core-i686/mlocate.install === --- core-i686/mlocate.install 2011-11-04 23:36:00 UTC (rev 142068) +++ core-i686/mlocate.install 2011-11-04 23:36:01 UTC (rev 142069) @@ -1,18 +0,0 @@ -post_install() { - post_upgrade "$1" "$1" - echo "mlocate command is technically locate, but slocate is symlinked and still works." - echo "You should run updatedb as root." -} - -post_upgrade() { - # This ca
[arch-commits] Commit in m4/repos (6 files)
Date: Friday, November 4, 2011 @ 19:36:00 Author: allan Revision: 142068 db-move: moved m4 from [testing] to [core] (x86_64) Added: m4/repos/core-x86_64/PKGBUILD (from rev 142056, m4/repos/testing-x86_64/PKGBUILD) m4/repos/core-x86_64/m4-1.4.16-readlink-einval.patch (from rev 142056, m4/repos/testing-x86_64/m4-1.4.16-readlink-einval.patch) m4/repos/core-x86_64/m4.install (from rev 142056, m4/repos/testing-x86_64/m4.install) Deleted: m4/repos/core-x86_64/PKGBUILD m4/repos/core-x86_64/m4.install m4/repos/testing-x86_64/ -+ PKGBUILD| 68 -- m4-1.4.16-readlink-einval.patch | 12 ++ m4.install | 40 +++--- 3 files changed, 68 insertions(+), 52 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:35:59 UTC (rev 142067) +++ core-x86_64/PKGBUILD2011-11-04 23:36:00 UTC (rev 142068) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: Andreas Radke - -pkgname=m4 -pkgver=1.4.16 -pkgrel=1 -pkgdesc="The GNU macro processor" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/m4"; -license=('GPL3') -groups=('base-devel') -depends=('glibc' 'bash') -install=m4.install -source=(ftp://ftp.gnu.org/gnu/m4/$pkgname-$pkgver.tar.xz) -md5sums=('7548ec061a1ba993790159764f522d0e') - -build() { - cd ${srcdir}/$pkgname-$pkgver - ./configure --prefix=/usr - make -} - -check() { - cd ${srcdir}/$pkgname-$pkgver - make check -} - -package() { - cd ${srcdir}/$pkgname-$pkgver - make prefix=${pkgdir}/usr install -} Copied: m4/repos/core-x86_64/PKGBUILD (from rev 142056, m4/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:36:00 UTC (rev 142068) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: Andreas Radke + +pkgname=m4 +pkgver=1.4.16 +pkgrel=2 +pkgdesc="The GNU macro processor" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/m4"; +license=('GPL3') +groups=('base-devel') +depends=('glibc' 'bash') +install=m4.install +source=(ftp://ftp.gnu.org/gnu/m4/$pkgname-$pkgver.tar.xz{,.sig} +m4-1.4.16-readlink-einval.patch) +md5sums=('7548ec061a1ba993790159764f522d0e' + 'eebe5c94e74e7551e2e30c5844f1b653' + 'cea138fa9b568d06e46269611cec8dd0') + +build() { + cd ${srcdir}/$pkgname-$pkgver + patch -Np1 -i $srcdir/m4-1.4.16-readlink-einval.patch + ./configure --prefix=/usr + make +} + +check() { + cd ${srcdir}/$pkgname-$pkgver + make check +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make prefix=${pkgdir}/usr install +} Copied: m4/repos/core-x86_64/m4-1.4.16-readlink-einval.patch (from rev 142056, m4/repos/testing-x86_64/m4-1.4.16-readlink-einval.patch) === --- core-x86_64/m4-1.4.16-readlink-einval.patch (rev 0) +++ core-x86_64/m4-1.4.16-readlink-einval.patch 2011-11-04 23:36:00 UTC (rev 142068) @@ -0,0 +1,12 @@ +diff -up m4-1.4.16/tests/test-readlink.h.orig m4-1.4.16/tests/test-readlink.h +--- m4-1.4.16/tests/test-readlink.h.orig 2011-09-19 12:44:58.745546826 +0200 m4-1.4.16/tests/test-readlink.h2011-09-19 12:46:00.079548410 +0200 +@@ -38,7 +38,7 @@ test_readlink (ssize_t (*func) (char con + ASSERT (errno == ENOENT); + errno = 0; + ASSERT (func ("", buf, sizeof buf) == -1); +- ASSERT (errno == ENOENT); ++ ASSERT (errno == ENOENT || errno == EINVAL); + errno = 0; + ASSERT (func (".", buf, sizeof buf) == -1); + ASSERT (errno == EINVAL); Deleted: core-x86_64/m4.install === --- core-x86_64/m4.install 2011-11-04 23:35:59 UTC (rev 142067) +++ core-x86_64/m4.install 2011-11-04 23:36:00 UTC (rev 142068) @@ -1,20 +0,0 @@ -infodir=usr/share/info -filelist=(m4.info m4.info-1 m4.info-2) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} Copied: m4/repos/core-x86_64/m4.install (from rev 142056, m4/repos/testing-x86_64/m4.install) === --- core-x86_64/m4.install (rev 0) +++ core-x86_64/m4.install 2011-11-04 23:36:00 UTC (rev 142068) @@ -0,0 +1,20 @@ +infodir=usr/share/info +filelist=(m4.info m4.info-1 m4.info-2) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +
[arch-commits] Commit in less/repos (3 files)
Date: Friday, November 4, 2011 @ 19:35:58 Author: allan Revision: 142066 db-move: moved less from [testing] to [core] (x86_64) Added: less/repos/core-x86_64/PKGBUILD (from rev 142056, less/repos/testing-x86_64/PKGBUILD) Deleted: less/repos/core-x86_64/PKGBUILD less/repos/testing-x86_64/ --+ PKGBUILD | 61 +++-- 1 file changed, 31 insertions(+), 30 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:35:56 UTC (rev 142065) +++ core-x86_64/PKGBUILD2011-11-04 23:35:58 UTC (rev 142066) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=less -pkgver=444 -pkgrel=1 -pkgdesc="A terminal based program for viewing text files" -license=('GPL3') -arch=('i686' 'x86_64') -url="http://www.greenwoodsoftware.com/less"; -groups=('base') -depends=('ncurses' 'pcre') -source=(http://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('56f9f76ffe13f70155f47f6b3c87d421') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure --prefix=/usr --sysconfdir=/etc --with-regex=pcre - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make prefix="${pkgdir}"/usr install - install -dm755 "${pkgdir}"/bin - mv "${pkgdir}"/usr/bin/${pkgname} "${pkgdir}"/bin -} Copied: less/repos/core-x86_64/PKGBUILD (from rev 142056, less/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:35:58 UTC (rev 142066) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=less +pkgver=444 +pkgrel=2 +pkgdesc="A terminal based program for viewing text files" +license=('GPL3') +arch=('i686' 'x86_64') +url="http://www.greenwoodsoftware.com/less"; +groups=('base') +depends=('ncurses' 'pcre') +source=(http://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.tar.gz{,.sig}) +md5sums=('56f9f76ffe13f70155f47f6b3c87d421' + 'd5fafbd94a9cfdeaad0c82143a033fe5') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr --sysconfdir=/etc --with-regex=pcre + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make prefix="${pkgdir}"/usr install + install -dm755 "${pkgdir}"/bin + mv "${pkgdir}"/usr/bin/${pkgname} "${pkgdir}"/bin +}
[arch-commits] Commit in m4/repos (6 files)
Date: Friday, November 4, 2011 @ 19:35:59 Author: allan Revision: 142067 db-move: moved m4 from [testing] to [core] (i686) Added: m4/repos/core-i686/PKGBUILD (from rev 142056, m4/repos/testing-i686/PKGBUILD) m4/repos/core-i686/m4-1.4.16-readlink-einval.patch (from rev 142056, m4/repos/testing-i686/m4-1.4.16-readlink-einval.patch) m4/repos/core-i686/m4.install (from rev 142056, m4/repos/testing-i686/m4.install) Deleted: m4/repos/core-i686/PKGBUILD m4/repos/core-i686/m4.install m4/repos/testing-i686/ -+ PKGBUILD| 68 -- m4-1.4.16-readlink-einval.patch | 12 ++ m4.install | 40 +++--- 3 files changed, 68 insertions(+), 52 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:35:58 UTC (rev 142066) +++ core-i686/PKGBUILD 2011-11-04 23:35:59 UTC (rev 142067) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: Andreas Radke - -pkgname=m4 -pkgver=1.4.16 -pkgrel=1 -pkgdesc="The GNU macro processor" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/m4"; -license=('GPL3') -groups=('base-devel') -depends=('glibc' 'bash') -install=m4.install -source=(ftp://ftp.gnu.org/gnu/m4/$pkgname-$pkgver.tar.xz) -md5sums=('7548ec061a1ba993790159764f522d0e') - -build() { - cd ${srcdir}/$pkgname-$pkgver - ./configure --prefix=/usr - make -} - -check() { - cd ${srcdir}/$pkgname-$pkgver - make check -} - -package() { - cd ${srcdir}/$pkgname-$pkgver - make prefix=${pkgdir}/usr install -} Copied: m4/repos/core-i686/PKGBUILD (from rev 142056, m4/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:35:59 UTC (rev 142067) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: Andreas Radke + +pkgname=m4 +pkgver=1.4.16 +pkgrel=2 +pkgdesc="The GNU macro processor" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/m4"; +license=('GPL3') +groups=('base-devel') +depends=('glibc' 'bash') +install=m4.install +source=(ftp://ftp.gnu.org/gnu/m4/$pkgname-$pkgver.tar.xz{,.sig} +m4-1.4.16-readlink-einval.patch) +md5sums=('7548ec061a1ba993790159764f522d0e' + 'eebe5c94e74e7551e2e30c5844f1b653' + 'cea138fa9b568d06e46269611cec8dd0') + +build() { + cd ${srcdir}/$pkgname-$pkgver + patch -Np1 -i $srcdir/m4-1.4.16-readlink-einval.patch + ./configure --prefix=/usr + make +} + +check() { + cd ${srcdir}/$pkgname-$pkgver + make check +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make prefix=${pkgdir}/usr install +} Copied: m4/repos/core-i686/m4-1.4.16-readlink-einval.patch (from rev 142056, m4/repos/testing-i686/m4-1.4.16-readlink-einval.patch) === --- core-i686/m4-1.4.16-readlink-einval.patch (rev 0) +++ core-i686/m4-1.4.16-readlink-einval.patch 2011-11-04 23:35:59 UTC (rev 142067) @@ -0,0 +1,12 @@ +diff -up m4-1.4.16/tests/test-readlink.h.orig m4-1.4.16/tests/test-readlink.h +--- m4-1.4.16/tests/test-readlink.h.orig 2011-09-19 12:44:58.745546826 +0200 m4-1.4.16/tests/test-readlink.h2011-09-19 12:46:00.079548410 +0200 +@@ -38,7 +38,7 @@ test_readlink (ssize_t (*func) (char con + ASSERT (errno == ENOENT); + errno = 0; + ASSERT (func ("", buf, sizeof buf) == -1); +- ASSERT (errno == ENOENT); ++ ASSERT (errno == ENOENT || errno == EINVAL); + errno = 0; + ASSERT (func (".", buf, sizeof buf) == -1); + ASSERT (errno == EINVAL); Deleted: core-i686/m4.install === --- core-i686/m4.install2011-11-04 23:35:58 UTC (rev 142066) +++ core-i686/m4.install2011-11-04 23:35:59 UTC (rev 142067) @@ -1,20 +0,0 @@ -infodir=usr/share/info -filelist=(m4.info m4.info-1 m4.info-2) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} Copied: m4/repos/core-i686/m4.install (from rev 142056, m4/repos/testing-i686/m4.install) === --- core-i686/m4.install(rev 0) +++ core-i686/m4.install2011-11-04 23:35:59 UTC (rev 142067) @@ -0,0 +1,20 @@ +infodir=usr/share/info +filelist=(m4.info m4.info-1 m4.info-2) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +}
[arch-commits] Commit in gzip/repos (5 files)
Date: Friday, November 4, 2011 @ 19:35:55 Author: allan Revision: 142064 db-move: moved gzip from [testing] to [core] (x86_64) Added: gzip/repos/core-x86_64/PKGBUILD (from rev 142056, gzip/repos/testing-x86_64/PKGBUILD) gzip/repos/core-x86_64/gzip.install (from rev 142056, gzip/repos/testing-x86_64/gzip.install) Deleted: gzip/repos/core-x86_64/PKGBUILD gzip/repos/core-x86_64/gzip.install gzip/repos/testing-x86_64/ --+ PKGBUILD | 86 - gzip.install | 40 +- 2 files changed, 63 insertions(+), 63 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:35:53 UTC (rev 142063) +++ core-x86_64/PKGBUILD2011-11-04 23:35:55 UTC (rev 142064) @@ -1,43 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=gzip -pkgver=1.4 -pkgrel=3 -pkgdesc="GNU compression utility" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/gzip/"; -license=('GPL3') -groups=('base') -depends=('glibc' 'bash') -makedepends=('patch') -install=gzip.install -source=(ftp://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.gz) -md5sums=('e381b8506210c794278f5527cba0e765') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # By default Gzip uses assembly code. While this may preform better, - # it is not position independent. The DEFS environment variable is - # set to use only C code. - export DEFS="NO_ASM" - ./configure --prefix=/usr - make -} - -check() { - cd "${srcdir}/${pkgname}-${pkgver}" - make check -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make prefix=${pkgdir}/usr install - - install -dm755 ${pkgdir}/bin - mv ${pkgdir}/usr/bin/{gunzip,gzip,uncompress,zcat} ${pkgdir}/bin/ - cd $pkgdir/bin -} Copied: gzip/repos/core-x86_64/PKGBUILD (from rev 142056, gzip/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:35:55 UTC (rev 142064) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=gzip +pkgver=1.4 +pkgrel=4 +pkgdesc="GNU compression utility" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/gzip/"; +license=('GPL3') +groups=('base') +depends=('glibc' 'bash') +makedepends=('patch') +install=gzip.install +source=(ftp://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.gz{,.sig}) +md5sums=('e381b8506210c794278f5527cba0e765' + '3b11d485d1638f2d16f7494a0486a6e8') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # By default Gzip uses assembly code. While this may preform better, + # it is not position independent. The DEFS environment variable is + # set to use only C code. + export DEFS="NO_ASM" + ./configure --prefix=/usr + make +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make check +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make prefix=${pkgdir}/usr install + + install -dm755 ${pkgdir}/bin + mv ${pkgdir}/usr/bin/{gunzip,gzip,uncompress,zcat} ${pkgdir}/bin/ +} Deleted: core-x86_64/gzip.install === --- core-x86_64/gzip.install2011-11-04 23:35:53 UTC (rev 142063) +++ core-x86_64/gzip.install2011-11-04 23:35:55 UTC (rev 142064) @@ -1,20 +0,0 @@ -infodir=usr/share/info -filelist=(gzip.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -usr/bin/install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -usr/bin/install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} Copied: gzip/repos/core-x86_64/gzip.install (from rev 142056, gzip/repos/testing-x86_64/gzip.install) === --- core-x86_64/gzip.install(rev 0) +++ core-x86_64/gzip.install2011-11-04 23:35:55 UTC (rev 142064) @@ -0,0 +1,20 @@ +infodir=usr/share/info +filelist=(gzip.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +usr/bin/install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +usr/bin/install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +}
[arch-commits] Commit in less/repos (3 files)
Date: Friday, November 4, 2011 @ 19:35:56 Author: allan Revision: 142065 db-move: moved less from [testing] to [core] (i686) Added: less/repos/core-i686/PKGBUILD (from rev 142056, less/repos/testing-i686/PKGBUILD) Deleted: less/repos/core-i686/PKGBUILD less/repos/testing-i686/ --+ PKGBUILD | 61 +++-- 1 file changed, 31 insertions(+), 30 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:35:55 UTC (rev 142064) +++ core-i686/PKGBUILD 2011-11-04 23:35:56 UTC (rev 142065) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=less -pkgver=444 -pkgrel=1 -pkgdesc="A terminal based program for viewing text files" -license=('GPL3') -arch=('i686' 'x86_64') -url="http://www.greenwoodsoftware.com/less"; -groups=('base') -depends=('ncurses' 'pcre') -source=(http://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('56f9f76ffe13f70155f47f6b3c87d421') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure --prefix=/usr --sysconfdir=/etc --with-regex=pcre - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make prefix="${pkgdir}"/usr install - install -dm755 "${pkgdir}"/bin - mv "${pkgdir}"/usr/bin/${pkgname} "${pkgdir}"/bin -} Copied: less/repos/core-i686/PKGBUILD (from rev 142056, less/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:35:56 UTC (rev 142065) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=less +pkgver=444 +pkgrel=2 +pkgdesc="A terminal based program for viewing text files" +license=('GPL3') +arch=('i686' 'x86_64') +url="http://www.greenwoodsoftware.com/less"; +groups=('base') +depends=('ncurses' 'pcre') +source=(http://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.tar.gz{,.sig}) +md5sums=('56f9f76ffe13f70155f47f6b3c87d421' + 'd5fafbd94a9cfdeaad0c82143a033fe5') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr --sysconfdir=/etc --with-regex=pcre + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make prefix="${pkgdir}"/usr install + install -dm755 "${pkgdir}"/bin + mv "${pkgdir}"/usr/bin/${pkgname} "${pkgdir}"/bin +}
[arch-commits] Commit in grep/repos (5 files)
Date: Friday, November 4, 2011 @ 19:35:52 Author: allan Revision: 142062 db-move: moved grep from [testing] to [core] (x86_64) Added: grep/repos/core-x86_64/PKGBUILD (from rev 142056, grep/repos/testing-x86_64/PKGBUILD) grep/repos/core-x86_64/grep.install (from rev 142056, grep/repos/testing-x86_64/grep.install) Deleted: grep/repos/core-x86_64/PKGBUILD grep/repos/core-x86_64/grep.install grep/repos/testing-x86_64/ --+ PKGBUILD | 67 - grep.install | 42 +-- 2 files changed, 55 insertions(+), 54 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:35:50 UTC (rev 142061) +++ core-x86_64/PKGBUILD2011-11-04 23:35:52 UTC (rev 142062) @@ -1,33 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=grep -pkgver=2.9 -pkgrel=1 -pkgdesc="A string search utility" -arch=('i686' 'x86_64') -license=('GPL3') -url="http://www.gnu.org/software/grep/grep.html"; -groups=('base') -depends=('glibc' 'pcre' 'sh') -makedepends=('texinfo') -install=${pkgname}.install -source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz) -md5sums=('25e41b2aa201104354740961ef36005a') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr --bindir=/bin --without-included-regex - make -} - -check() { - cd ${srcdir}/${pkgname}-${pkgver} - make check -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install -} Copied: grep/repos/core-x86_64/PKGBUILD (from rev 142056, grep/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 23:35:52 UTC (rev 142062) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=grep +pkgver=2.9 +pkgrel=2 +pkgdesc="A string search utility" +arch=('i686' 'x86_64') +license=('GPL3') +url="http://www.gnu.org/software/grep/grep.html"; +groups=('base') +depends=('glibc' 'pcre' 'sh') +makedepends=('texinfo') +install=${pkgname}.install +source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}) +md5sums=('25e41b2aa201104354740961ef36005a' + '78b903e88d23890d9e737e1415f4de21') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --bindir=/bin --without-included-regex + make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} Deleted: core-x86_64/grep.install === --- core-x86_64/grep.install2011-11-04 23:35:50 UTC (rev 142061) +++ core-x86_64/grep.install2011-11-04 23:35:52 UTC (rev 142062) @@ -1,21 +0,0 @@ -infodir=usr/share/info -filelist=(grep.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - Copied: grep/repos/core-x86_64/grep.install (from rev 142056, grep/repos/testing-x86_64/grep.install) === --- core-x86_64/grep.install(rev 0) +++ core-x86_64/grep.install2011-11-04 23:35:52 UTC (rev 142062) @@ -0,0 +1,21 @@ +infodir=usr/share/info +filelist=(grep.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +} +
[arch-commits] Commit in gzip/repos (5 files)
Date: Friday, November 4, 2011 @ 19:35:53 Author: allan Revision: 142063 db-move: moved gzip from [testing] to [core] (i686) Added: gzip/repos/core-i686/PKGBUILD (from rev 142056, gzip/repos/testing-i686/PKGBUILD) gzip/repos/core-i686/gzip.install (from rev 142056, gzip/repos/testing-i686/gzip.install) Deleted: gzip/repos/core-i686/PKGBUILD gzip/repos/core-i686/gzip.install gzip/repos/testing-i686/ --+ PKGBUILD | 86 - gzip.install | 40 +- 2 files changed, 63 insertions(+), 63 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:35:52 UTC (rev 142062) +++ core-i686/PKGBUILD 2011-11-04 23:35:53 UTC (rev 142063) @@ -1,43 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=gzip -pkgver=1.4 -pkgrel=3 -pkgdesc="GNU compression utility" -arch=('i686' 'x86_64') -url="http://www.gnu.org/software/gzip/"; -license=('GPL3') -groups=('base') -depends=('glibc' 'bash') -makedepends=('patch') -install=gzip.install -source=(ftp://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.gz) -md5sums=('e381b8506210c794278f5527cba0e765') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # By default Gzip uses assembly code. While this may preform better, - # it is not position independent. The DEFS environment variable is - # set to use only C code. - export DEFS="NO_ASM" - ./configure --prefix=/usr - make -} - -check() { - cd "${srcdir}/${pkgname}-${pkgver}" - make check -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make prefix=${pkgdir}/usr install - - install -dm755 ${pkgdir}/bin - mv ${pkgdir}/usr/bin/{gunzip,gzip,uncompress,zcat} ${pkgdir}/bin/ - cd $pkgdir/bin -} Copied: gzip/repos/core-i686/PKGBUILD (from rev 142056, gzip/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:35:53 UTC (rev 142063) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=gzip +pkgver=1.4 +pkgrel=4 +pkgdesc="GNU compression utility" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/gzip/"; +license=('GPL3') +groups=('base') +depends=('glibc' 'bash') +makedepends=('patch') +install=gzip.install +source=(ftp://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.gz{,.sig}) +md5sums=('e381b8506210c794278f5527cba0e765' + '3b11d485d1638f2d16f7494a0486a6e8') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # By default Gzip uses assembly code. While this may preform better, + # it is not position independent. The DEFS environment variable is + # set to use only C code. + export DEFS="NO_ASM" + ./configure --prefix=/usr + make +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make check +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make prefix=${pkgdir}/usr install + + install -dm755 ${pkgdir}/bin + mv ${pkgdir}/usr/bin/{gunzip,gzip,uncompress,zcat} ${pkgdir}/bin/ +} Deleted: core-i686/gzip.install === --- core-i686/gzip.install 2011-11-04 23:35:52 UTC (rev 142062) +++ core-i686/gzip.install 2011-11-04 23:35:53 UTC (rev 142063) @@ -1,20 +0,0 @@ -infodir=usr/share/info -filelist=(gzip.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -usr/bin/install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -usr/bin/install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} Copied: gzip/repos/core-i686/gzip.install (from rev 142056, gzip/repos/testing-i686/gzip.install) === --- core-i686/gzip.install (rev 0) +++ core-i686/gzip.install 2011-11-04 23:35:53 UTC (rev 142063) @@ -0,0 +1,20 @@ +infodir=usr/share/info +filelist=(gzip.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +usr/bin/install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +usr/bin/install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +}
[arch-commits] Commit in grep/repos (5 files)
Date: Friday, November 4, 2011 @ 19:35:50 Author: allan Revision: 142061 db-move: moved grep from [testing] to [core] (i686) Added: grep/repos/core-i686/PKGBUILD (from rev 142056, grep/repos/testing-i686/PKGBUILD) grep/repos/core-i686/grep.install (from rev 142056, grep/repos/testing-i686/grep.install) Deleted: grep/repos/core-i686/PKGBUILD grep/repos/core-i686/grep.install grep/repos/testing-i686/ --+ PKGBUILD | 67 - grep.install | 42 +-- 2 files changed, 55 insertions(+), 54 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:35:49 UTC (rev 142060) +++ core-i686/PKGBUILD 2011-11-04 23:35:50 UTC (rev 142061) @@ -1,33 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=grep -pkgver=2.9 -pkgrel=1 -pkgdesc="A string search utility" -arch=('i686' 'x86_64') -license=('GPL3') -url="http://www.gnu.org/software/grep/grep.html"; -groups=('base') -depends=('glibc' 'pcre' 'sh') -makedepends=('texinfo') -install=${pkgname}.install -source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz) -md5sums=('25e41b2aa201104354740961ef36005a') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr --bindir=/bin --without-included-regex - make -} - -check() { - cd ${srcdir}/${pkgname}-${pkgver} - make check -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install -} Copied: grep/repos/core-i686/PKGBUILD (from rev 142056, grep/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 23:35:50 UTC (rev 142061) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=grep +pkgver=2.9 +pkgrel=2 +pkgdesc="A string search utility" +arch=('i686' 'x86_64') +license=('GPL3') +url="http://www.gnu.org/software/grep/grep.html"; +groups=('base') +depends=('glibc' 'pcre' 'sh') +makedepends=('texinfo') +install=${pkgname}.install +source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}) +md5sums=('25e41b2aa201104354740961ef36005a' + '78b903e88d23890d9e737e1415f4de21') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --bindir=/bin --without-included-regex + make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} Deleted: core-i686/grep.install === --- core-i686/grep.install 2011-11-04 23:35:49 UTC (rev 142060) +++ core-i686/grep.install 2011-11-04 23:35:50 UTC (rev 142061) @@ -1,21 +0,0 @@ -infodir=usr/share/info -filelist=(grep.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - Copied: grep/repos/core-i686/grep.install (from rev 142056, grep/repos/testing-i686/grep.install) === --- core-i686/grep.install (rev 0) +++ core-i686/grep.install 2011-11-04 23:35:50 UTC (rev 142061) @@ -0,0 +1,21 @@ +infodir=usr/share/info +filelist=(grep.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +} +
[arch-commits] Commit in bash/repos (15 files)
Date: Friday, November 4, 2011 @ 19:35:47 Author: allan Revision: 142059 db-move: moved bash from [testing] to [core] (i686) Added: bash/repos/core-i686/PKGBUILD (from rev 142056, bash/repos/testing-i686/PKGBUILD) bash/repos/core-i686/bash.install (from rev 142056, bash/repos/testing-i686/bash.install) bash/repos/core-i686/dot.bash_logout (from rev 142056, bash/repos/testing-i686/dot.bash_logout) bash/repos/core-i686/dot.bash_profile (from rev 142056, bash/repos/testing-i686/dot.bash_profile) bash/repos/core-i686/dot.bashrc (from rev 142056, bash/repos/testing-i686/dot.bashrc) bash/repos/core-i686/system.bash_logout (from rev 142056, bash/repos/testing-i686/system.bash_logout) bash/repos/core-i686/system.bashrc (from rev 142056, bash/repos/testing-i686/system.bashrc) Deleted: bash/repos/core-i686/PKGBUILD bash/repos/core-i686/bash.install bash/repos/core-i686/dot.bash_logout bash/repos/core-i686/dot.bash_profile bash/repos/core-i686/dot.bashrc bash/repos/core-i686/system.bash_logout bash/repos/core-i686/system.bashrc bash/repos/testing-i686/ + PKGBUILD | 192 ++- bash.install | 40 +- dot.bash_logout|6 - dot.bash_profile | 10 +- dot.bashrc | 18 ++-- system.bash_logout |6 - system.bashrc | 46 ++-- 7 files changed, 164 insertions(+), 154 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 23:35:45 UTC (rev 142058) +++ core-i686/PKGBUILD 2011-11-04 23:35:47 UTC (rev 142059) @@ -1,91 +0,0 @@ -# $Id$ -# Maintainer: Aaron Griffin -# Maintainer: Allan McRae - -pkgname=bash -_basever=4.2 -_patchlevel=010 #prepare for some patches -pkgver=$_basever.$_patchlevel -pkgrel=1 -pkgdesc="The GNU Bourne Again shell" -arch=('i686' 'x86_64') -license=('GPL') -url="http://www.gnu.org/software/bash/bash.html"; -groups=('base') -backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout}) -depends=('readline>=6.1' 'glibc') -provides=('sh') -install=bash.install -source=(http://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz -dot.bashrc -dot.bash_profile -dot.bash_logout -system.bashrc -system.bash_logout) -if [ $_patchlevel -gt 000 ]; then -for (( p=1; p<=$((10#${_patchlevel})); p++ )); do -source=(${source[@]} http://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//./}-$(printf "%03d" $p)) -done -fi - -build() { - cd ${srcdir}/${pkgname}-$_basever - for p in ../bash${_basever//./}-*; do -[[ -e "$p" ]] || continue -msg "applying patch ${p}" -patch -Np0 -i ${p} - done - - _bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin\"\' - -DSTANDARD_UTILS_PATH=\'\"/usr/bin:/bin:/usr/sbin:/sbin\"\' - -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\' - -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\') - export CFLAGS="${CFLAGS} ${_bashconfig[@]}" - - ./configure --prefix=/usr --with-curses --enable-readline \ ---without-bash-malloc --with-installed-readline \ ---bindir=/bin --mandir=/usr/share/man --infodir=/usr/share/info - make -} - -check() { - cd ${srcdir}/${pkgname}-$_basever - make check -} - -package() { - cd ${srcdir}/${pkgname}-$_basever - make DESTDIR=${pkgdir} install - - # for now, bash is our default /bin/sh - cd ${pkgdir}/bin - ln -s bash sh - - install -dm755 ${pkgdir}/etc/skel/ - - # system-wide configuration files - install -m644 ${srcdir}/system.bashrc ${pkgdir}/etc/bash.bashrc - install -m644 ${srcdir}/system.bash_logout ${pkgdir}/etc/bash.bash_logout - - # user configuration file skeletons - install -m644 ${srcdir}/dot.bashrc ${pkgdir}/etc/skel/.bashrc - install -m644 ${srcdir}/dot.bash_profile ${pkgdir}/etc/skel/.bash_profile - install -m644 ${srcdir}/dot.bash_logout ${pkgdir}/etc/skel/.bash_logout -} - -md5sums=('3fb927c7c33022f1c327f14a81c0d4b0' - '027d6bd8f5f6a06b75bb7698cb478089' - '2902e0fee7a9168f3a4fd2ccd60ff047' - '42f4400ed2314bd7519c020d0187edc5' - 'fe5d3a367f7d5f754214dc05e3d958ab' - '472f536d7c9e8250dc4568ec4cfaf294' - '1100bc1dda2cdc06ac44d7e5d17864a3' - '30e7948079921d3261efcc6a40722135' - '9ea06decec43a198f3d7cf29acc602f8' - 'fb48f6134d7b013135929476aa0c250c' - 'e70e45de33426b38153b390be0dbbcd4' - 'ce4e5c484993705b27daa151eca242c2' - '88d1f96db29461767602e2546803bda7' - '24c574bf6d6a581e300823d9c1276af6' - '4c5835f2fbab36c4292bb334977e5b6d' - '0a51602b535ef661ee707be6c8bdb373') Copied: bash/repos/core-i686/PKGBUILD (from rev 142056, bash/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ c
[arch-commits] Commit in bash/repos (15 files)
Date: Friday, November 4, 2011 @ 19:35:49 Author: allan Revision: 142060 db-move: moved bash from [testing] to [core] (x86_64) Added: bash/repos/core-x86_64/PKGBUILD (from rev 142056, bash/repos/testing-x86_64/PKGBUILD) bash/repos/core-x86_64/bash.install (from rev 142056, bash/repos/testing-x86_64/bash.install) bash/repos/core-x86_64/dot.bash_logout (from rev 142056, bash/repos/testing-x86_64/dot.bash_logout) bash/repos/core-x86_64/dot.bash_profile (from rev 142056, bash/repos/testing-x86_64/dot.bash_profile) bash/repos/core-x86_64/dot.bashrc (from rev 142056, bash/repos/testing-x86_64/dot.bashrc) bash/repos/core-x86_64/system.bash_logout (from rev 142056, bash/repos/testing-x86_64/system.bash_logout) bash/repos/core-x86_64/system.bashrc (from rev 142056, bash/repos/testing-x86_64/system.bashrc) Deleted: bash/repos/core-x86_64/PKGBUILD bash/repos/core-x86_64/bash.install bash/repos/core-x86_64/dot.bash_logout bash/repos/core-x86_64/dot.bash_profile bash/repos/core-x86_64/dot.bashrc bash/repos/core-x86_64/system.bash_logout bash/repos/core-x86_64/system.bashrc bash/repos/testing-x86_64/ + PKGBUILD | 192 ++- bash.install | 40 +- dot.bash_logout|6 - dot.bash_profile | 10 +- dot.bashrc | 18 ++-- system.bash_logout |6 - system.bashrc | 46 ++-- 7 files changed, 164 insertions(+), 154 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 23:35:47 UTC (rev 142059) +++ core-x86_64/PKGBUILD2011-11-04 23:35:49 UTC (rev 142060) @@ -1,91 +0,0 @@ -# $Id$ -# Maintainer: Aaron Griffin -# Maintainer: Allan McRae - -pkgname=bash -_basever=4.2 -_patchlevel=010 #prepare for some patches -pkgver=$_basever.$_patchlevel -pkgrel=1 -pkgdesc="The GNU Bourne Again shell" -arch=('i686' 'x86_64') -license=('GPL') -url="http://www.gnu.org/software/bash/bash.html"; -groups=('base') -backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout}) -depends=('readline>=6.1' 'glibc') -provides=('sh') -install=bash.install -source=(http://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz -dot.bashrc -dot.bash_profile -dot.bash_logout -system.bashrc -system.bash_logout) -if [ $_patchlevel -gt 000 ]; then -for (( p=1; p<=$((10#${_patchlevel})); p++ )); do -source=(${source[@]} http://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//./}-$(printf "%03d" $p)) -done -fi - -build() { - cd ${srcdir}/${pkgname}-$_basever - for p in ../bash${_basever//./}-*; do -[[ -e "$p" ]] || continue -msg "applying patch ${p}" -patch -Np0 -i ${p} - done - - _bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin\"\' - -DSTANDARD_UTILS_PATH=\'\"/usr/bin:/bin:/usr/sbin:/sbin\"\' - -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\' - -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\') - export CFLAGS="${CFLAGS} ${_bashconfig[@]}" - - ./configure --prefix=/usr --with-curses --enable-readline \ ---without-bash-malloc --with-installed-readline \ ---bindir=/bin --mandir=/usr/share/man --infodir=/usr/share/info - make -} - -check() { - cd ${srcdir}/${pkgname}-$_basever - make check -} - -package() { - cd ${srcdir}/${pkgname}-$_basever - make DESTDIR=${pkgdir} install - - # for now, bash is our default /bin/sh - cd ${pkgdir}/bin - ln -s bash sh - - install -dm755 ${pkgdir}/etc/skel/ - - # system-wide configuration files - install -m644 ${srcdir}/system.bashrc ${pkgdir}/etc/bash.bashrc - install -m644 ${srcdir}/system.bash_logout ${pkgdir}/etc/bash.bash_logout - - # user configuration file skeletons - install -m644 ${srcdir}/dot.bashrc ${pkgdir}/etc/skel/.bashrc - install -m644 ${srcdir}/dot.bash_profile ${pkgdir}/etc/skel/.bash_profile - install -m644 ${srcdir}/dot.bash_logout ${pkgdir}/etc/skel/.bash_logout -} - -md5sums=('3fb927c7c33022f1c327f14a81c0d4b0' - '027d6bd8f5f6a06b75bb7698cb478089' - '2902e0fee7a9168f3a4fd2ccd60ff047' - '42f4400ed2314bd7519c020d0187edc5' - 'fe5d3a367f7d5f754214dc05e3d958ab' - '472f536d7c9e8250dc4568ec4cfaf294' - '1100bc1dda2cdc06ac44d7e5d17864a3' - '30e7948079921d3261efcc6a40722135' - '9ea06decec43a198f3d7cf29acc602f8' - 'fb48f6134d7b013135929476aa0c250c' - 'e70e45de33426b38153b390be0dbbcd4' - 'ce4e5c484993705b27daa151eca242c2' - '88d1f96db29461767602e2546803bda7' - '24c574bf6d6a581e300823d9c1276af6' - '4c5835f2fbab36c4292bb334977e5b6d' - '0a51602b535ef661ee707be6c8bdb373') Copied: bash/repos/core-x86_64/PKGBUILD (from rev 142056, bash/repos/testing-x86_64/PKGBUILD) =
[arch-commits] Commit in automake/repos (5 files)
Date: Friday, November 4, 2011 @ 19:35:45 Author: allan Revision: 142058 db-move: moved automake from [testing] to [core] (any) Added: automake/repos/core-any/PKGBUILD (from rev 142056, automake/repos/testing-any/PKGBUILD) automake/repos/core-any/automake.install (from rev 142056, automake/repos/testing-any/automake.install) Deleted: automake/repos/core-any/PKGBUILD automake/repos/core-any/automake.install automake/repos/testing-any/ --+ PKGBUILD | 63 + automake.install | 44 ++--- 2 files changed, 57 insertions(+), 50 deletions(-) Deleted: core-any/PKGBUILD === --- core-any/PKGBUILD 2011-11-04 23:35:44 UTC (rev 142057) +++ core-any/PKGBUILD 2011-11-04 23:35:45 UTC (rev 142058) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: judd - -pkgname=automake -pkgver=1.11.1 -pkgrel=2 -pkgdesc="A GNU tool for automatically creating Makefiles" -arch=('any') -license=('GPL') -url="http://www.gnu.org/software/automake"; -groups=('base-devel') -depends=('perl' 'bash') -makedepends=('autoconf') -install=automake.install -source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('4ee7f0ff5f0e467d58b6bd5da96b1c74') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install -} Copied: automake/repos/core-any/PKGBUILD (from rev 142056, automake/repos/testing-any/PKGBUILD) === --- core-any/PKGBUILD (rev 0) +++ core-any/PKGBUILD 2011-11-04 23:35:45 UTC (rev 142058) @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=automake +pkgver=1.11.1 +pkgrel=3 +pkgdesc="A GNU tool for automatically creating Makefiles" +arch=('any') +license=('GPL') +url="http://www.gnu.org/software/automake"; +groups=('base-devel') +depends=('perl' 'bash') +makedepends=('autoconf') +install=automake.install +source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig}) +md5sums=('4ee7f0ff5f0e467d58b6bd5da96b1c74' + 'ef699c963063e30a34843fb75606025b') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +check() +{ + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} Deleted: core-any/automake.install === --- core-any/automake.install 2011-11-04 23:35:44 UTC (rev 142057) +++ core-any/automake.install 2011-11-04 23:35:45 UTC (rev 142058) @@ -1,22 +0,0 @@ -infodir=/usr/share/info -filelist=(automake.info automake.info-1 automake.info-2) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -# vim:set ts=2 sw=2 et: Copied: automake/repos/core-any/automake.install (from rev 142056, automake/repos/testing-any/automake.install) === --- core-any/automake.install (rev 0) +++ core-any/automake.install 2011-11-04 23:35:45 UTC (rev 142058) @@ -0,0 +1,22 @@ +infodir=/usr/share/info +filelist=(automake.info automake.info-1 automake.info-2) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in autoconf/repos (5 files)
Date: Friday, November 4, 2011 @ 19:35:44 Author: allan Revision: 142057 db-move: moved autoconf from [testing] to [core] (any) Added: autoconf/repos/core-any/PKGBUILD (from rev 142056, autoconf/repos/testing-any/PKGBUILD) autoconf/repos/core-any/autoconf.install (from rev 142056, autoconf/repos/testing-any/autoconf.install) Deleted: autoconf/repos/core-any/PKGBUILD autoconf/repos/core-any/autoconf.install autoconf/repos/testing-any/ --+ PKGBUILD | 83 ++--- autoconf.install | 40 - 2 files changed, 62 insertions(+), 61 deletions(-) Deleted: core-any/PKGBUILD === --- core-any/PKGBUILD 2011-11-04 23:31:12 UTC (rev 142056) +++ core-any/PKGBUILD 2011-11-04 23:35:44 UTC (rev 142057) @@ -1,41 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Contributor: Andreas Radke - -pkgname=autoconf -pkgver=2.68 -pkgrel=1 -pkgdesc="A GNU tool for automatically configuring source code" -arch=('any') -license=('GPL2' 'GPL3' 'custom') -url="http://www.gnu.org/software/autoconf"; -groups=('base-devel') -depends=('awk' 'm4' 'diffutils' 'bash') -# for test-suite -#makedepends=('gcc-fortran' 'erlang') -install=autoconf.install -source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz) -md5sums=('723677f7727542d273112e7feb870a7a') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr - make -} - -check() { - cd ${srcdir}/${pkgname}-${pkgver} - make check -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install - - # license exception - install -Dm644 COPYING.EXCEPTION \ -$pkgdir/usr/share/licenses/autoconf/COPYING.EXCEPTION - - # conflict with bintuils - rm -f ${pkgdir}/usr/share/info/standards.info -} Copied: autoconf/repos/core-any/PKGBUILD (from rev 142056, autoconf/repos/testing-any/PKGBUILD) === --- core-any/PKGBUILD (rev 0) +++ core-any/PKGBUILD 2011-11-04 23:35:44 UTC (rev 142057) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: Andreas Radke + +pkgname=autoconf +pkgver=2.68 +pkgrel=2 +pkgdesc="A GNU tool for automatically configuring source code" +arch=('any') +license=('GPL2' 'GPL3' 'custom') +url="http://www.gnu.org/software/autoconf"; +groups=('base-devel') +depends=('awk' 'm4' 'diffutils' 'bash') +# for test-suite +#makedepends=('gcc-fortran' 'erlang') +install=autoconf.install +source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}) +md5sums=('723677f7727542d273112e7feb870a7a' + 'f0af3afe669e5957312415fcb4ed38fa') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} + make check +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install + + # license exception + install -Dm644 COPYING.EXCEPTION \ +$pkgdir/usr/share/licenses/autoconf/COPYING.EXCEPTION + + # conflict with bintuils + rm -f ${pkgdir}/usr/share/info/standards.info +} Deleted: core-any/autoconf.install === --- core-any/autoconf.install 2011-11-04 23:31:12 UTC (rev 142056) +++ core-any/autoconf.install 2011-11-04 23:35:44 UTC (rev 142057) @@ -1,20 +0,0 @@ -infodir=/usr/share/info -filelist=(autoconf.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do -install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} Copied: autoconf/repos/core-any/autoconf.install (from rev 142056, autoconf/repos/testing-any/autoconf.install) === --- core-any/autoconf.install (rev 0) +++ core-any/autoconf.install 2011-11-04 23:35:44 UTC (rev 142057) @@ -0,0 +1,20 @@ +infodir=/usr/share/info +filelist=(autoconf.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +}
[arch-commits] Commit in rfkill/repos (10 files)
Date: Friday, November 4, 2011 @ 19:31:12 Author: stephane Revision: 142056 archrelease: copy trunk to testing-i686, testing-x86_64 Added: rfkill/repos/testing-i686/ rfkill/repos/testing-i686/60-rfkill.rules (from rev 142055, rfkill/trunk/60-rfkill.rules) rfkill/repos/testing-i686/PKGBUILD (from rev 142055, rfkill/trunk/PKGBUILD) rfkill/repos/testing-i686/rfkill.conf.d (from rev 142055, rfkill/trunk/rfkill.conf.d) rfkill/repos/testing-i686/rfkill.rc.d (from rev 142055, rfkill/trunk/rfkill.rc.d) rfkill/repos/testing-x86_64/ rfkill/repos/testing-x86_64/60-rfkill.rules (from rev 142055, rfkill/trunk/60-rfkill.rules) rfkill/repos/testing-x86_64/PKGBUILD (from rev 142055, rfkill/trunk/PKGBUILD) rfkill/repos/testing-x86_64/rfkill.conf.d (from rev 142055, rfkill/trunk/rfkill.conf.d) rfkill/repos/testing-x86_64/rfkill.rc.d (from rev 142055, rfkill/trunk/rfkill.rc.d) + testing-i686/60-rfkill.rules |1 + testing-i686/PKGBUILD | 38 ++ testing-i686/rfkill.conf.d | 20 testing-i686/rfkill.rc.d | 38 ++ testing-x86_64/60-rfkill.rules |1 + testing-x86_64/PKGBUILD| 38 ++ testing-x86_64/rfkill.conf.d | 20 testing-x86_64/rfkill.rc.d | 38 ++ 8 files changed, 194 insertions(+) Copied: rfkill/repos/testing-i686/60-rfkill.rules (from rev 142055, rfkill/trunk/60-rfkill.rules) === --- testing-i686/60-rfkill.rules(rev 0) +++ testing-i686/60-rfkill.rules2011-11-04 23:31:12 UTC (rev 142056) @@ -0,0 +1 @@ +KERNEL=="rfkill", GROUP="rfkill", MODE="0664" Copied: rfkill/repos/testing-i686/PKGBUILD (from rev 142055, rfkill/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 23:31:12 UTC (rev 142056) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Thomas Bächler +# Contributor: Giovanni Scafora + +pkgname=rfkill +pkgver=0.4 +pkgrel=3 +pkgdesc="A tool for enabling and disabling wireless devices" +arch=('i686' 'x86_64') +url="http://linuxwireless.org/en/users/Documentation/rfkill"; +license=('custom') +depends=('glibc' 'filesystem>=2010.01') +source=(http://wireless.kernel.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2 +60-rfkill.rules +rfkill.conf.d +rfkill.rc.d) +backup=(etc/conf.d/rfkill) +md5sums=('727892c0fb35c80ee3849fbe89b45350' + '63f9bf9264911242e430867a41e8918c' + '398e7cadf023e05e3e0c323aa33575b9' + '793f0510e26547eb2632efce7d16e50e') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + # License + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + # Udev rule + install -Dm644 "${srcdir}/60-rfkill.rules" "${pkgdir}/lib/udev/rules.d/60-rfkill.rules" + # Init script + install -Dm644 "${srcdir}/rfkill.conf.d" "${pkgdir}/etc/conf.d/rfkill" + install -Dm755 "${srcdir}/rfkill.rc.d" "${pkgdir}/etc/rc.d/rfkill" +} Copied: rfkill/repos/testing-i686/rfkill.conf.d (from rev 142055, rfkill/trunk/rfkill.conf.d) === --- testing-i686/rfkill.conf.d (rev 0) +++ testing-i686/rfkill.conf.d 2011-11-04 23:31:12 UTC (rev 142056) @@ -0,0 +1,20 @@ +# +# /etc/conf.d/rfkill +# Configuration for the rfkill startup script +# + +# List of devices to block on startup (space-separated) +RFKILL_BLOCK="" + +# List of devices to unblock on startup (space-separated) +RFKILL_UNBLOCK="all" + +# Supported device names are: all, wifi, bluetooth, umb, wimax, wwan, gps and specific device names like phy0, hci0, ... +# See "rfkill list" for available devices +# Examples: +# +# Block all bluetooth devices: +# RFKILL_BLOCK="bluetooth" +# +# Unblock the phy0 wifi device and all wwan devices: +# RFKILL_UNBLOCK="phy0 wwan" Copied: rfkill/repos/testing-i686/rfkill.rc.d (from rev 142055, rfkill/trunk/rfkill.rc.d) === --- testing-i686/rfkill.rc.d(rev 0) +++ testing-i686/rfkill.rc.d2011-11-04 23:31:12 UTC (rev 142056) @@ -0,0 +1,38 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions +. /etc/conf.d/rfkill + +case "$1" in + start) +for device in ${RFKILL_BLOCK}; do + stat_busy "Blocking rfkill device: ${device}" + /usr/sbin/rfkill block ${device} + if [ $? -eq 0 ]; then +stat_done + else +stat_fail + fi +done +for device in ${RFKILL_UNBLOCK}; do + stat_busy "Unblocking rfkill de
[arch-commits] Commit in rfkill/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 19:31:01 Author: stephane Revision: 142055 upgpkg: rfkill 0.4-3 signed rebuild Modified: rfkill/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 23:27:15 UTC (rev 142054) +++ PKGBUILD2011-11-04 23:31:01 UTC (rev 142055) @@ -4,7 +4,7 @@ pkgname=rfkill pkgver=0.4 -pkgrel=2 +pkgrel=3 pkgdesc="A tool for enabling and disabling wireless devices" arch=('i686' 'x86_64') url="http://linuxwireless.org/en/users/Documentation/rfkill";
[arch-commits] Commit in vi/repos (12 files)
Date: Friday, November 4, 2011 @ 19:27:15 Author: stephane Revision: 142054 archrelease: copy trunk to testing-i686, testing-x86_64 Added: vi/repos/testing-i686/ vi/repos/testing-i686/PKGBUILD (from rev 142053, vi/trunk/PKGBUILD) vi/repos/testing-i686/exrc.sample (from rev 142053, vi/trunk/exrc.sample) vi/repos/testing-i686/increase-tube.patch (from rev 142053, vi/trunk/increase-tube.patch) vi/repos/testing-i686/navkeys.patch (from rev 142053, vi/trunk/navkeys.patch) vi/repos/testing-i686/preserve_dir.patch (from rev 142053, vi/trunk/preserve_dir.patch) vi/repos/testing-x86_64/ vi/repos/testing-x86_64/PKGBUILD (from rev 142053, vi/trunk/PKGBUILD) vi/repos/testing-x86_64/exrc.sample (from rev 142053, vi/trunk/exrc.sample) vi/repos/testing-x86_64/increase-tube.patch (from rev 142053, vi/trunk/increase-tube.patch) vi/repos/testing-x86_64/navkeys.patch (from rev 142053, vi/trunk/navkeys.patch) vi/repos/testing-x86_64/preserve_dir.patch (from rev 142053, vi/trunk/preserve_dir.patch) + testing-i686/PKGBUILD | 47 testing-i686/exrc.sample |5 ++ testing-i686/increase-tube.patch | 13 + testing-i686/navkeys.patch | 55 +++ testing-i686/preserve_dir.patch| 81 +++ testing-x86_64/PKGBUILD| 47 testing-x86_64/exrc.sample |5 ++ testing-x86_64/increase-tube.patch | 13 + testing-x86_64/navkeys.patch | 55 +++ testing-x86_64/preserve_dir.patch | 81 +++ 10 files changed, 402 insertions(+) Copied: vi/repos/testing-i686/PKGBUILD (from rev 142053, vi/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 23:27:15 UTC (rev 142054) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: tobias [ tobias at archlinux org ] + +pkgname=vi +pkgver=050325 +pkgrel=2 +epoch=1 +pkgdesc='The original ex/vi text editor.' +arch=('i686' 'x86_64') +url='http://ex-vi.sourceforge.net/' +license=('custom:ex') +depends=('ncurses') +optdepends=('mailx: used by the preserve command for notification') +groups=('base') +options=(strip !libtool emptydirs) +source=(http://downloads.sourceforge.net/sourceforge/ex-vi/ex-${pkgver}.tar.bz2 +exrc.sample +navkeys.patch +increase-tube.patch +preserve_dir.patch) +md5sums=('e668595254233e4d96811083a3e4e2f3' + 'd3b483c994d859232ce369b82a4b5668' + 'aac133930047eafa4f28736cfaf976b3' + 'e596e05a00a24187b576e389fa1de45d' + '419a8755e0dd16e95542bc107e6d2b24') + +build() { + cd "${srcdir}/ex-${pkgver}" + + # apply patches + patch -Np1 -i ../navkeys.patch + patch -Np0 -i ../increase-tube.patch + # FS#20653 + patch -Np1 -i ../preserve_dir.patch + + make PREFIX=/usr LIBEXECDIR=/usr/lib/ex PRESERVEDIR=/var/lib/ex \ + 'FEATURES=-DCHDIR -DFASTTAG -DUCVISUAL -DMB -DBIT8' TERMLIB=ncurses +} + +package() { + cd "${srcdir}/ex-${pkgver}" + + make PREFIX=/usr LIBEXECDIR=/usr/lib/ex PRESERVEDIR=/var/lib/ex INSTALL=/bin/install \ + DESTDIR="$pkgdir" install + + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} Copied: vi/repos/testing-i686/exrc.sample (from rev 142053, vi/trunk/exrc.sample) === --- testing-i686/exrc.sample(rev 0) +++ testing-i686/exrc.sample2011-11-04 23:27:15 UTC (rev 142054) @@ -0,0 +1,5 @@ +" A sample .exrc file. Copy it to your home dir as ~/.exrc in order to work. +set showmode +set noflash +set autoindent +set shiftwidth=2 Copied: vi/repos/testing-i686/increase-tube.patch (from rev 142053, vi/trunk/increase-tube.patch) === --- testing-i686/increase-tube.patch(rev 0) +++ testing-i686/increase-tube.patch2011-11-04 23:27:15 UTC (rev 142054) @@ -0,0 +1,13 @@ +--- config.h 2005-02-19 05:25:39.0 -0500 config.h.fixed 2010-01-04 22:02:01.0 -0500 +@@ -95,8 +95,8 @@ + #define TUBESIZE6000/* Maximum screen size for visual */ + #else /* VMUNIX */ + #define TUBELINES 100 +-#define TUBECOLS160 +-#define TUBESIZE16000 ++#define TUBECOLS320 ++#define TUBESIZE32000 + #endif/* VMUNIX */ + + /* Copied: vi/repos/testing-i686/navkeys.patch (from rev 142053, vi/trunk/navkeys.patch) === --- testing-i686/navkeys.patch (rev 0) +++ testing-i686/navkeys.patch 2011-11-04 23:27:15 UTC (rev 142054) @@ -0,0 +1,55 @@ +diff -ru ex-050325/ex_tty.c ex-050325-du/ex_tty.c +--- ex-050325/ex_tty.c 20
[arch-commits] Commit in vi/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 19:27:02 Author: stephane Revision: 142053 upgpkg: vi 1:050325-2 signed rebuild Modified: vi/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 23:20:14 UTC (rev 142052) +++ PKGBUILD2011-11-04 23:27:02 UTC (rev 142053) @@ -3,7 +3,7 @@ pkgname=vi pkgver=050325 -pkgrel=1 +pkgrel=2 epoch=1 pkgdesc='The original ex/vi text editor.' arch=('i686' 'x86_64')
[arch-commits] Commit in krb5/repos (16 files)
Date: Friday, November 4, 2011 @ 19:20:14 Author: stephane Revision: 142052 archrelease: copy trunk to testing-i686, testing-x86_64 Added: krb5/repos/testing-i686/ krb5/repos/testing-i686/PKGBUILD (from rev 142051, krb5/trunk/PKGBUILD) krb5/repos/testing-i686/krb5-1.9.1-2011-006.patch (from rev 142051, krb5/trunk/krb5-1.9.1-2011-006.patch) krb5/repos/testing-i686/krb5-1.9.1-canonicalize-fallback.patch (from rev 142051, krb5/trunk/krb5-1.9.1-canonicalize-fallback.patch) krb5/repos/testing-i686/krb5-1.9.1-config-script.patch (from rev 142051, krb5/trunk/krb5-1.9.1-config-script.patch) krb5/repos/testing-i686/krb5-kadmind (from rev 142051, krb5/trunk/krb5-kadmind) krb5/repos/testing-i686/krb5-kdc (from rev 142051, krb5/trunk/krb5-kdc) krb5/repos/testing-i686/krb5-kpropd (from rev 142051, krb5/trunk/krb5-kpropd) krb5/repos/testing-x86_64/ krb5/repos/testing-x86_64/PKGBUILD (from rev 142051, krb5/trunk/PKGBUILD) krb5/repos/testing-x86_64/krb5-1.9.1-2011-006.patch (from rev 142051, krb5/trunk/krb5-1.9.1-2011-006.patch) krb5/repos/testing-x86_64/krb5-1.9.1-canonicalize-fallback.patch (from rev 142051, krb5/trunk/krb5-1.9.1-canonicalize-fallback.patch) krb5/repos/testing-x86_64/krb5-1.9.1-config-script.patch (from rev 142051, krb5/trunk/krb5-1.9.1-config-script.patch) krb5/repos/testing-x86_64/krb5-kadmind (from rev 142051, krb5/trunk/krb5-kadmind) krb5/repos/testing-x86_64/krb5-kdc (from rev 142051, krb5/trunk/krb5-kdc) krb5/repos/testing-x86_64/krb5-kpropd (from rev 142051, krb5/trunk/krb5-kpropd) ---+ testing-i686/PKGBUILD | 83 testing-i686/krb5-1.9.1-2011-006.patch| 75 ++ testing-i686/krb5-1.9.1-canonicalize-fallback.patch | 58 +++ testing-i686/krb5-1.9.1-config-script.patch | 27 + testing-i686/krb5-kadmind | 40 +++ testing-i686/krb5-kdc | 40 +++ testing-i686/krb5-kpropd | 40 +++ testing-x86_64/PKGBUILD | 83 testing-x86_64/krb5-1.9.1-2011-006.patch | 75 ++ testing-x86_64/krb5-1.9.1-canonicalize-fallback.patch | 58 +++ testing-x86_64/krb5-1.9.1-config-script.patch | 27 + testing-x86_64/krb5-kadmind | 40 +++ testing-x86_64/krb5-kdc | 40 +++ testing-x86_64/krb5-kpropd| 40 +++ 14 files changed, 726 insertions(+) Copied: krb5/repos/testing-i686/PKGBUILD (from rev 142051, krb5/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 23:20:14 UTC (rev 142052) @@ -0,0 +1,83 @@ +# $Id$ +# Maintainer: Stéphane Gaudreault + +pkgname=krb5 +pkgver=1.9.2 +pkgrel=1 +pkgdesc="The Kerberos network authentication system" +arch=('i686' 'x86_64') +url="http://web.mit.edu/kerberos/"; +license=('custom') +depends=('e2fsprogs' 'libldap' 'keyutils') +makedepends=('perl') +provides=('heimdal') +replaces=('heimdal') +conflicts=('heimdal') +backup=('etc/krb5.conf' 'var/lib/krb5kdc/kdc.conf') +source=(http://web.mit.edu/kerberos/dist/${pkgname}/1.9/${pkgname}-${pkgver}-signed.tar +krb5-kadmind +krb5-kdc +krb5-kpropd +krb5-1.9.1-config-script.patch) +sha1sums=('aa06f778ee1f9791cd4c5cf4c9e9465769ffec92' + '2aa229369079ed1bbb201a1ef72c47bf143f4dbe' + '77d2312ecd8bf12a6e72cc8fd871a8ac93b23393' + '7f402078fa65bb9ff1beb6c017450df78560' + '7342410760cf44bfa01bb99bb4c49e12496cb46f') +options=('!emptydirs') + +build() { + tar zxvf ${pkgname}-${pkgver}.tar.gz + cd "${srcdir}/${pkgname}-${pkgver}/src" + + # - Make krb5-config suppress CFLAGS output when called with --libs + # cf https://bugzilla.redhat.com/show_bug.cgi?id=544391 + # + # - Omit extra libraries because their interfaces are not exposed to applications + # by libkrb5, unless do_deps is set to 1, which indicates that the caller + # wants the whole list. + # + # Patch from upstream : + # http://anonsvn.mit.edu/viewvc/krb5/trunk/src/krb5-config.in?r1=23662&r2=25236 + patch -Np2 -i ${srcdir}/krb5-1.9.1-config-script.patch + + # FS#25384 + sed -i "/KRB5ROOT=/s/\/local//" util/ac_check_krb5.m4 + + export CFLAGS+=" -fPIC -fno-strict-aliasing -fstack-protector-all" + export CPPFLAGS+=" -I/usr/include/et" + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --localstatedir=/var/lib \ + --enable-shared \ + --with-system-et \ + --with-system-ss \ + --disable-rpath \ + --wi
[arch-commits] Commit in krb5/trunk (PKGBUILD krb5-kpropd)
Date: Friday, November 4, 2011 @ 19:19:53 Author: stephane Revision: 142051 upgpkg: krb5 1.9.2-1 upstream update; add kpropd rc script; signed rebuild Added: krb5/trunk/krb5-kpropd Modified: krb5/trunk/PKGBUILD -+ PKGBUILD| 26 +- krb5-kpropd | 40 2 files changed, 49 insertions(+), 17 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 22:53:48 UTC (rev 142050) +++ PKGBUILD2011-11-04 23:19:53 UTC (rev 142051) @@ -2,8 +2,8 @@ # Maintainer: Stéphane Gaudreault pkgname=krb5 -pkgver=1.9.1 -pkgrel=5 +pkgver=1.9.2 +pkgrel=1 pkgdesc="The Kerberos network authentication system" arch=('i686' 'x86_64') url="http://web.mit.edu/kerberos/"; @@ -17,15 +17,13 @@ source=(http://web.mit.edu/kerberos/dist/${pkgname}/1.9/${pkgname}-${pkgver}-signed.tar krb5-kadmind krb5-kdc -krb5-1.9.1-config-script.patch -krb5-1.9.1-canonicalize-fallback.patch -krb5-1.9.1-2011-006.patch) -sha1sums=('e23a1795a237521493da9cf3443ac8b98a90c066' +krb5-kpropd +krb5-1.9.1-config-script.patch) +sha1sums=('aa06f778ee1f9791cd4c5cf4c9e9465769ffec92' '2aa229369079ed1bbb201a1ef72c47bf143f4dbe' '77d2312ecd8bf12a6e72cc8fd871a8ac93b23393' - '7342410760cf44bfa01bb99bb4c49e12496cb46f' - '238c268fa6cb42fc7324ab54db9abda5cd77f833' - '0b0016b0e341dcf720f67925b0d451b328e02583') + '7f402078fa65bb9ff1beb6c017450df78560' + '7342410760cf44bfa01bb99bb4c49e12496cb46f') options=('!emptydirs') build() { @@ -43,16 +41,9 @@ # http://anonsvn.mit.edu/viewvc/krb5/trunk/src/krb5-config.in?r1=23662&r2=25236 patch -Np2 -i ${srcdir}/krb5-1.9.1-config-script.patch - # FS#25515 - patch -Np2 -i ${srcdir}/krb5-1.9.1-canonicalize-fallback.patch - # FS#25384 sed -i "/KRB5ROOT=/s/\/local//" util/ac_check_krb5.m4 - # KDC denial of service vulnerabilities - # http://web.mit.edu/kerberos/advisories/MITKRB5-SA-2011-006.txt - patch -Np2 -i ${srcdir}/krb5-1.9.1-2011-006.patch - export CFLAGS+=" -fPIC -fno-strict-aliasing -fstack-protector-all" export CPPFLAGS+=" -I/usr/include/et" ./configure --prefix=/usr \ @@ -81,8 +72,9 @@ install -pm 644 config-files/krb5.conf "${pkgdir}"/etc/krb5.conf install -dm 755 "${pkgdir}"/etc/rc.d - install -m 755 ../../krb5-kdc "${pkgdir}"/etc/rc.d + install -m 755 ../../krb5-kdc "${pkgdir}"/etc/rc.d install -m 755 ../../krb5-kadmind "${pkgdir}"/etc/rc.d + install -m 755 ../../krb5-kpropd "${pkgdir}"/etc/rc.d install -dm 755 "${pkgdir}"/usr/share/aclocal install -m 644 util/ac_check_krb5.m4 "${pkgdir}"/usr/share/aclocal Added: krb5-kpropd === --- krb5-kpropd (rev 0) +++ krb5-kpropd 2011-11-04 23:19:53 UTC (rev 142051) @@ -0,0 +1,40 @@ +#!/bin/bash + +# general config +. /etc/rc.conf +. /etc/rc.d/functions + +PID=`pidof -o %PPID /usr/sbin/kpropd` +case "$1" in +start) +stat_busy "Starting Kerberos Database Propagation Daemon" +if [ -z "$PID" ]; then + /usr/sbin/kpropd -S +fi +if [ ! -z "$PID" -o $? -gt 0 ]; then +stat_fail +else +add_daemon kpropd +stat_done +fi +;; +stop) +stat_busy "Stopping Kerberos Database Propagation Daemon" + [ ! -z "$PID" ] && kill $PID &> /dev/null +if [ $? -gt 0 ]; then +stat_fail +else +rm_daemon kpropd +stat_done +fi +;; +restart) +$0 stop + sleep 1 +$0 start +;; +*) +echo "usage: $0 {start|stop|restart}" + ;; +esac +exit 0
[arch-commits] Commit in gdbm/repos (10 files)
Date: Friday, November 4, 2011 @ 18:53:48 Author: stephane Revision: 142050 archrelease: copy trunk to testing-i686, testing-x86_64 Added: gdbm/repos/testing-i686/ gdbm/repos/testing-i686/PKGBUILD (from rev 142049, gdbm/trunk/PKGBUILD) gdbm/repos/testing-i686/gdbm-1.8.3-fhs.patch (from rev 142049, gdbm/trunk/gdbm-1.8.3-fhs.patch) gdbm/repos/testing-i686/gdbm-1.8.3-zeroheaders.patch (from rev 142049, gdbm/trunk/gdbm-1.8.3-zeroheaders.patch) gdbm/repos/testing-i686/gdbm.install (from rev 142049, gdbm/trunk/gdbm.install) gdbm/repos/testing-x86_64/ gdbm/repos/testing-x86_64/PKGBUILD (from rev 142049, gdbm/trunk/PKGBUILD) gdbm/repos/testing-x86_64/gdbm-1.8.3-fhs.patch (from rev 142049, gdbm/trunk/gdbm-1.8.3-fhs.patch) gdbm/repos/testing-x86_64/gdbm-1.8.3-zeroheaders.patch (from rev 142049, gdbm/trunk/gdbm-1.8.3-zeroheaders.patch) gdbm/repos/testing-x86_64/gdbm.install (from rev 142049, gdbm/trunk/gdbm.install) -+ testing-i686/PKGBUILD | 59 +++ testing-i686/gdbm-1.8.3-fhs.patch | 138 ++ testing-i686/gdbm-1.8.3-zeroheaders.patch | 44 testing-i686/gdbm.install | 21 +++ testing-x86_64/PKGBUILD | 59 +++ testing-x86_64/gdbm-1.8.3-fhs.patch | 138 ++ testing-x86_64/gdbm-1.8.3-zeroheaders.patch | 44 testing-x86_64/gdbm.install | 21 +++ 8 files changed, 524 insertions(+) Copied: gdbm/repos/testing-i686/PKGBUILD (from rev 142049, gdbm/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 22:53:48 UTC (rev 142050) @@ -0,0 +1,59 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=gdbm +pkgver=1.8.3 +pkgrel=9 +pkgdesc="GNU database library" +url="http://www.gnu.org/software/gdbm/gdbm.html"; +license=('GPL') +arch=('i686' 'x86_64') +depends=('glibc' 'sh') +source=(ftp://ftp.gnu.org/gnu/gdbm/${pkgname}-${pkgver}.tar.gz +gdbm-1.8.3-zeroheaders.patch +gdbm-1.8.3-fhs.patch) +options=('!libtool' '!makeflags') +install=gdbm.install +md5sums=('1d1b1d5c0245b1c00aff92da751e9aa1' + 'a2ed344be9258775bd718074cf2e4ec6' + '66a7c235416c136dc89efc7d03352514') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # Prevent gdbm from storing uninitialized memory content + # to database files. This patch improves security, as the + # uninitialized memory might contain sensitive informations + # from other applications. + # https://bugzilla.redhat.com/show_bug.cgi?id=4457 + # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=208927 + patch -Np1 -i ../gdbm-1.8.3-zeroheaders.patch + + # Make gdbm buildable. + patch -Np1 -i ../gdbm-1.8.3-fhs.patch + + libtoolize --force --copy + aclocal + autoconf + + ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info + + # flock does not work on nfs, we use fcntl instead + # https://bugzilla.redhat.com/show_bug.cgi?id=477300 + echo "/* We use fcntl locking (POSIX) instead of flock (BSD) */" >> autoconf.h + echo "#undef HAVE_FLOCK" >> autoconf.h + + make prefix=/usr +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make prefix=$pkgdir/usr \ + manprefix=$pkgdir/usr/share/man \ + man3dir=$pkgdir/usr/share/man/man3 \ + infodir=$pkgdir/usr/share/info \ + install install-compat + + ln -sf gdbm/gdbm.h $pkgdir/usr/include +} Copied: gdbm/repos/testing-i686/gdbm-1.8.3-fhs.patch (from rev 142049, gdbm/trunk/gdbm-1.8.3-fhs.patch) === --- testing-i686/gdbm-1.8.3-fhs.patch (rev 0) +++ testing-i686/gdbm-1.8.3-fhs.patch 2011-11-04 22:53:48 UTC (rev 142050) @@ -0,0 +1,138 @@ +diff -up gdbm-1.8.3/Makefile.in.fhs gdbm-1.8.3/Makefile.in +--- gdbm-1.8.3/Makefile.in.fhs 2002-10-08 18:09:12.0 +0200 gdbm-1.8.3/Makefile.in 2010-03-10 15:41:01.516025096 +0100 +@@ -1,7 +1,7 @@ + Start of system configuration section. + + srcdir = @srcdir@ +-top_builddir = . ++top_builddir = @top_builddir@ + VPATH = @srcdir@ + + CC = @CC@ +@@ -14,17 +14,13 @@ INSTALL = @INSTALL@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_DATA = @INSTALL_DATA@ + +-# File ownership and group +-BINOWN = bin +-BINGRP = bin +- + MAKEINFO = makeinfo + TEXI2DVI = texi2dvi + +-DEFS = ++DEFS = @DEFS@ + + # Where the system [n]dbm routines are... +-LIBS = @LIBS@ -lc ++LIBS = @LIBS@ + + CFLAGS = @CFLAGS@ + LDFLAGS = @LDFLAGS@ +@@ -32,16 +28,17 @@ LDFLAGS = @LDFLAGS@ + # Common prefix for installation directories + prefix = @prefix@ + exec_prefix = @exec_prefix@ +-binprefix = $(exec_prefix) +-manprefix = $(prefix) ++datarootdir = @datarootdir@ + + # Directory in which to put libgdbm.a. + li
[arch-commits] Commit in gdbm/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 18:53:35 Author: stephane Revision: 142049 upgpkg: gdbm 1.8.3-9 signed rebuild Modified: gdbm/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 22:42:38 UTC (rev 142048) +++ PKGBUILD2011-11-04 22:53:35 UTC (rev 142049) @@ -4,7 +4,7 @@ pkgname=gdbm pkgver=1.8.3 -pkgrel=8 +pkgrel=9 pkgdesc="GNU database library" url="http://www.gnu.org/software/gdbm/gdbm.html"; license=('GPL')
[arch-commits] Commit in dialog/repos (4 files)
Date: Friday, November 4, 2011 @ 18:42:38 Author: stephane Revision: 142048 archrelease: copy trunk to testing-i686, testing-x86_64 Added: dialog/repos/testing-i686/ dialog/repos/testing-i686/PKGBUILD (from rev 142047, dialog/trunk/PKGBUILD) dialog/repos/testing-x86_64/ dialog/repos/testing-x86_64/PKGBUILD (from rev 142047, dialog/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 27 +++ testing-x86_64/PKGBUILD | 27 +++ 2 files changed, 54 insertions(+) Copied: dialog/repos/testing-i686/PKGBUILD (from rev 142047, dialog/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 22:42:38 UTC (rev 142048) @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Stéphane Gaudreault +# Contributor: Allan McRae +# Contributor: Andreas Radke + +pkgname=dialog +pkgver=1.1_20111020 +pkgrel=1 +pkgdesc="A tool to display dialog boxes from shell scripts" +arch=('i686' 'x86_64') +url="http://invisible-island.net/dialog/"; +license=('LGPL2.1') +depends=('ncurses') +source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver/_/-}.tgz) +sha1sums=('ddabc0950275db4e9cef382a862ff3b20746e843') + +build() { + cd "${srcdir}/$pkgname-${pkgver/_/-}" + ./configure --prefix=/usr --mandir=/usr/share/man \ + --with-ncursesw --enable-nls + make +} + +package() { + cd "${srcdir}/$pkgname-${pkgver/_/-}" + make DESTDIR="${pkgdir}" install install-lib +} Copied: dialog/repos/testing-x86_64/PKGBUILD (from rev 142047, dialog/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2011-11-04 22:42:38 UTC (rev 142048) @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Stéphane Gaudreault +# Contributor: Allan McRae +# Contributor: Andreas Radke + +pkgname=dialog +pkgver=1.1_20111020 +pkgrel=1 +pkgdesc="A tool to display dialog boxes from shell scripts" +arch=('i686' 'x86_64') +url="http://invisible-island.net/dialog/"; +license=('LGPL2.1') +depends=('ncurses') +source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver/_/-}.tgz) +sha1sums=('ddabc0950275db4e9cef382a862ff3b20746e843') + +build() { + cd "${srcdir}/$pkgname-${pkgver/_/-}" + ./configure --prefix=/usr --mandir=/usr/share/man \ + --with-ncursesw --enable-nls + make +} + +package() { + cd "${srcdir}/$pkgname-${pkgver/_/-}" + make DESTDIR="${pkgdir}" install install-lib +}
[arch-commits] Commit in dialog/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 18:42:31 Author: stephane Revision: 142047 upgpkg: dialog 1.1_20111020-1 signed rebuild Modified: dialog/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 22:40:39 UTC (rev 142046) +++ PKGBUILD2011-11-04 22:42:31 UTC (rev 142047) @@ -1,9 +1,10 @@ # $Id$ -# Maintainer: Allan McRae +# Maintainer: Stéphane Gaudreault +# Contributor: Allan McRae # Contributor: Andreas Radke pkgname=dialog -pkgver=1.1_20110707 +pkgver=1.1_20111020 pkgrel=1 pkgdesc="A tool to display dialog boxes from shell scripts" arch=('i686' 'x86_64') @@ -11,8 +12,7 @@ license=('LGPL2.1') depends=('ncurses') source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver/_/-}.tgz) -md5sums=('34d01aaacbb2932b4e6c1eec8d2a') -sha1sums=('31e0e3c40cd51629cc802d7ee0b1a4e1ada90f00') +sha1sums=('ddabc0950275db4e9cef382a862ff3b20746e843') build() { cd "${srcdir}/$pkgname-${pkgver/_/-}"
[arch-commits] Commit in db/repos (6 files)
Date: Friday, November 4, 2011 @ 18:40:39 Author: stephane Revision: 142046 archrelease: copy trunk to testing-i686, testing-x86_64 Added: db/repos/testing-i686/ db/repos/testing-i686/PKGBUILD (from rev 142045, db/trunk/PKGBUILD) db/repos/testing-i686/db.install (from rev 142045, db/trunk/db.install) db/repos/testing-x86_64/ db/repos/testing-x86_64/PKGBUILD (from rev 142045, db/trunk/PKGBUILD) db/repos/testing-x86_64/db.install (from rev 142045, db/trunk/db.install) ---+ testing-i686/PKGBUILD | 32 testing-i686/db.install |5 + testing-x86_64/PKGBUILD | 32 testing-x86_64/db.install |5 + 4 files changed, 74 insertions(+) Copied: db/repos/testing-i686/PKGBUILD (from rev 142045, db/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 22:40:39 UTC (rev 142046) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Stéphane Gaudreault +# Contributor: Allan McRae +# Contributor: Andreas Radke + +pkgname=db +pkgver=5.2.36 +pkgrel=2 +pkgdesc="The Berkeley DB embedded database system" +arch=('i686' 'x86_64') +url="http://www.oracle.com/technology/software/products/berkeley-db/index.html"; +license=('custom') +depends=('gcc-libs' 'sh') +options=('!libtool') +install=db.install +source=(http://download.oracle.com/berkeley-db/db-${pkgver}.tar.gz) +sha1sums=('1a7997e5bcdf504a439f90d9eaed63864806ed5f') + +build() { + cd "${srcdir}/$pkgname-${pkgver}/build_unix" + ../dist/configure --prefix=/usr --enable-compat185 \ +--enable-shared --enable-static --enable-cxx --enable-dbm + make LIBSO_LIBS=-lpthread +} + +package() { + cd "${srcdir}/$pkgname-${pkgver}/build_unix" + make DESTDIR="${pkgdir}" install + rm -rf "${pkgdir}"/usr/docs + install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE \ +"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +} Copied: db/repos/testing-i686/db.install (from rev 142045, db/trunk/db.install) === --- testing-i686/db.install (rev 0) +++ testing-i686/db.install 2011-11-04 22:40:39 UTC (rev 142046) @@ -0,0 +1,5 @@ +post_upgrade() { + if [ "$(vercmp $2 5.1)" -lt 0 ]; then +echo " >> Major version update. Consider running db_upgrade on Berkeley DB databases." + fi +} Copied: db/repos/testing-x86_64/PKGBUILD (from rev 142045, db/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2011-11-04 22:40:39 UTC (rev 142046) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Stéphane Gaudreault +# Contributor: Allan McRae +# Contributor: Andreas Radke + +pkgname=db +pkgver=5.2.36 +pkgrel=2 +pkgdesc="The Berkeley DB embedded database system" +arch=('i686' 'x86_64') +url="http://www.oracle.com/technology/software/products/berkeley-db/index.html"; +license=('custom') +depends=('gcc-libs' 'sh') +options=('!libtool') +install=db.install +source=(http://download.oracle.com/berkeley-db/db-${pkgver}.tar.gz) +sha1sums=('1a7997e5bcdf504a439f90d9eaed63864806ed5f') + +build() { + cd "${srcdir}/$pkgname-${pkgver}/build_unix" + ../dist/configure --prefix=/usr --enable-compat185 \ +--enable-shared --enable-static --enable-cxx --enable-dbm + make LIBSO_LIBS=-lpthread +} + +package() { + cd "${srcdir}/$pkgname-${pkgver}/build_unix" + make DESTDIR="${pkgdir}" install + rm -rf "${pkgdir}"/usr/docs + install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE \ +"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +} Copied: db/repos/testing-x86_64/db.install (from rev 142045, db/trunk/db.install) === --- testing-x86_64/db.install (rev 0) +++ testing-x86_64/db.install 2011-11-04 22:40:39 UTC (rev 142046) @@ -0,0 +1,5 @@ +post_upgrade() { + if [ "$(vercmp $2 5.1)" -lt 0 ]; then +echo " >> Major version update. Consider running db_upgrade on Berkeley DB databases." + fi +}
[arch-commits] Commit in db/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 18:40:29 Author: stephane Revision: 142045 upgpkg: db 5.2.36-2 signed rebuild Modified: db/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 20:54:48 UTC (rev 142044) +++ PKGBUILD2011-11-04 22:40:29 UTC (rev 142045) @@ -5,7 +5,7 @@ pkgname=db pkgver=5.2.36 -pkgrel=1 +pkgrel=2 pkgdesc="The Berkeley DB embedded database system" arch=('i686' 'x86_64') url="http://www.oracle.com/technology/software/products/berkeley-db/index.html";
[arch-commits] Commit in keyutils/repos (4 files)
Date: Friday, November 4, 2011 @ 16:54:48 Author: stephane Revision: 142044 archrelease: copy trunk to testing-i686, testing-x86_64 Added: keyutils/repos/testing-i686/ keyutils/repos/testing-i686/PKGBUILD (from rev 142043, keyutils/trunk/PKGBUILD) keyutils/repos/testing-x86_64/ keyutils/repos/testing-x86_64/PKGBUILD (from rev 142043, keyutils/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 24 testing-x86_64/PKGBUILD | 24 2 files changed, 48 insertions(+) Copied: keyutils/repos/testing-i686/PKGBUILD (from rev 142043, keyutils/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 20:54:48 UTC (rev 142044) @@ -0,0 +1,24 @@ +# $Id$ +# Maintainer: Tobias Powalowski +pkgname=keyutils +pkgver=1.5.2 +pkgrel=2 +pkgdesc="Linux Key Management Utilities" +arch=(i686 x86_64) +url="http://www.kernel.org"; +license=('GPL2' 'LGPL2.1') +depends=('glibc' 'sh') +backup=(etc/request-key.conf) +source=(http://people.redhat.com/~dhowells/${pkgname}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('19811ee31f683058a9aae3e6a3a23a7f') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i "s|/lib64|/lib|g" Makefile + make CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} Copied: keyutils/repos/testing-x86_64/PKGBUILD (from rev 142043, keyutils/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2011-11-04 20:54:48 UTC (rev 142044) @@ -0,0 +1,24 @@ +# $Id$ +# Maintainer: Tobias Powalowski +pkgname=keyutils +pkgver=1.5.2 +pkgrel=2 +pkgdesc="Linux Key Management Utilities" +arch=(i686 x86_64) +url="http://www.kernel.org"; +license=('GPL2' 'LGPL2.1') +depends=('glibc' 'sh') +backup=(etc/request-key.conf) +source=(http://people.redhat.com/~dhowells/${pkgname}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('19811ee31f683058a9aae3e6a3a23a7f') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i "s|/lib64|/lib|g" Makefile + make CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in keyutils/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 16:54:40 Author: stephane Revision: 142043 upgpkg: keyutils 1.5.2-2 signed rebuild Modified: keyutils/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 20:49:22 UTC (rev 142042) +++ PKGBUILD2011-11-04 20:54:40 UTC (rev 142043) @@ -2,7 +2,7 @@ # Maintainer: Tobias Powalowski pkgname=keyutils pkgver=1.5.2 -pkgrel=1 +pkgrel=2 pkgdesc="Linux Key Management Utilities" arch=(i686 x86_64) url="http://www.kernel.org";
[arch-commits] Commit in heirloom-mailx/repos (4 files)
Date: Friday, November 4, 2011 @ 16:49:22 Author: stephane Revision: 142042 archrelease: copy trunk to testing-i686, testing-x86_64 Added: heirloom-mailx/repos/testing-i686/ heirloom-mailx/repos/testing-i686/PKGBUILD (from rev 142041, heirloom-mailx/trunk/PKGBUILD) heirloom-mailx/repos/testing-x86_64/ heirloom-mailx/repos/testing-x86_64/PKGBUILD (from rev 142041, heirloom-mailx/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 64 ++ testing-x86_64/PKGBUILD | 64 ++ 2 files changed, 128 insertions(+) Copied: heirloom-mailx/repos/testing-i686/PKGBUILD (from rev 142041, heirloom-mailx/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 20:49:22 UTC (rev 142042) @@ -0,0 +1,64 @@ +# $Id$ +# Maintainer: Stéphane Gaudreault +# Contributor: Sergej Pupykin +# Contributor: Andreas Wagner + +pkgname=heirloom-mailx +pkgver=12.5 +pkgrel=3 +pkgdesc="A commandline utility for sending and receiving email" +arch=('i686' 'x86_64') +url="http://heirloom.sourceforge.net/mailx.html"; +license=('custom') +groups=('base') +depends=('openssl' 'krb5') +optdepends=('smtp-forwarder: for sending mail') +replaces=('mailx' 'mailx-heirloom') +provides=('mailx' 'mailx-heirloom') +conflicts=('mailx' 'mailx-heirloom') +backup=(etc/mail.rc) +source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz) +sha1sums=('1998dd6168a68400e533712ae7163c72b6a7c056') +options=('!makeflags') # Does not build with MAKEFLAGS=-jX, X>1 + +# source PKGBUILD && mksource +mksource() { + export CVSROOT=:pserver:anonym...@nail.cvs.sourceforge.net:/cvsroot/nail + D=nail + [ -d "${D}" ] && cvs up "${D}" || cvs co "${D}" + + _dirname=${pkgname}-${pkgver} + mv $D ${_dirname} + tar -cJv --exclude=CVS -f ${_dirname}.tar.xz ${_dirname} + rm -rf ${_dirname} +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + sed -i 's|/etc/nail.rc|/etc/mail.rc|g' mailx.1 + + # For Linux and BSD, this should be set. + echo "set bsdcompat" >> nail.rc + + sed -i "s/pg/less/" cmd1.c + + echo PREFIX=/usr \ + MAILRC=/etc/mail.rc \ + SENDMAIL=/usr/sbin/sendmail \ + MAILSPOOL=/var/spool/mail \ + UCBINSTALL=/bin/install > makeflags + + make `cat makeflags` IPv6=-DHAVE_IPv6_FUNCS +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" `cat makeflags` install + + # For compatibility with the old mailx program + ln -sf mailx "${pkgdir}"/usr/bin/mail + ln -sf mailx.1.gz "${pkgdir}"/usr/share/man/man1/mail.1.gz + + install -D -m0644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +} Copied: heirloom-mailx/repos/testing-x86_64/PKGBUILD (from rev 142041, heirloom-mailx/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2011-11-04 20:49:22 UTC (rev 142042) @@ -0,0 +1,64 @@ +# $Id$ +# Maintainer: Stéphane Gaudreault +# Contributor: Sergej Pupykin +# Contributor: Andreas Wagner + +pkgname=heirloom-mailx +pkgver=12.5 +pkgrel=3 +pkgdesc="A commandline utility for sending and receiving email" +arch=('i686' 'x86_64') +url="http://heirloom.sourceforge.net/mailx.html"; +license=('custom') +groups=('base') +depends=('openssl' 'krb5') +optdepends=('smtp-forwarder: for sending mail') +replaces=('mailx' 'mailx-heirloom') +provides=('mailx' 'mailx-heirloom') +conflicts=('mailx' 'mailx-heirloom') +backup=(etc/mail.rc) +source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz) +sha1sums=('1998dd6168a68400e533712ae7163c72b6a7c056') +options=('!makeflags') # Does not build with MAKEFLAGS=-jX, X>1 + +# source PKGBUILD && mksource +mksource() { + export CVSROOT=:pserver:anonym...@nail.cvs.sourceforge.net:/cvsroot/nail + D=nail + [ -d "${D}" ] && cvs up "${D}" || cvs co "${D}" + + _dirname=${pkgname}-${pkgver} + mv $D ${_dirname} + tar -cJv --exclude=CVS -f ${_dirname}.tar.xz ${_dirname} + rm -rf ${_dirname} +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + sed -i 's|/etc/nail.rc|/etc/mail.rc|g' mailx.1 + + # For Linux and BSD, this should be set. + echo "set bsdcompat" >> nail.rc + + sed -i "s/pg/less/" cmd1.c + + echo PREFIX=/usr \ + MAILRC=/etc/mail.rc \ + SENDMAIL=/usr/sbin/sendmail \ + MAILSPOOL=/var/spool/mail \ + UCBINSTALL=/bin/install > makeflags + + make `cat makeflags` IPv6=-DHAVE_IPv6_FUNCS +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" `cat makeflags` install + + # For compatibility with the old mailx program + ln -sf mailx "${pkgdir}"/usr/bin/mail + ln -sf mailx.1.gz "${pkgdir}"/usr/share/man/man1/mail.1.gz + + install -D -m0644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +}
[arch-commits] Commit in heirloom-mailx/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 16:49:07 Author: stephane Revision: 142041 upgpkg: heirloom-mailx 12.5-3 signed rebuild Modified: heirloom-mailx/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 20:43:48 UTC (rev 142040) +++ PKGBUILD2011-11-04 20:49:07 UTC (rev 142041) @@ -1,11 +1,11 @@ # $Id$ # Maintainer: Stéphane Gaudreault -# Contributor: Sergej Pupykin -# Contributor: Andreas Wagner +# Contributor: Sergej Pupykin +# Contributor: Andreas Wagner pkgname=heirloom-mailx pkgver=12.5 -pkgrel=2 +pkgrel=3 pkgdesc="A commandline utility for sending and receiving email" arch=('i686' 'x86_64') url="http://heirloom.sourceforge.net/mailx.html";
[arch-commits] Commit in gpsd/repos (16 files)
Date: Friday, November 4, 2011 @ 16:43:48 Author: andrea Revision: 142040 archrelease: copy trunk to extra-i686, extra-x86_64 Added: gpsd/repos/extra-i686/PKGBUILD (from rev 142039, gpsd/trunk/PKGBUILD) gpsd/repos/extra-i686/gpsd (from rev 142039, gpsd/trunk/gpsd) gpsd/repos/extra-i686/gpsd.conf.d (from rev 142039, gpsd/trunk/gpsd.conf.d) gpsd/repos/extra-i686/gpsd.install (from rev 142039, gpsd/trunk/gpsd.install) gpsd/repos/extra-x86_64/PKGBUILD (from rev 142039, gpsd/trunk/PKGBUILD) gpsd/repos/extra-x86_64/gpsd (from rev 142039, gpsd/trunk/gpsd) gpsd/repos/extra-x86_64/gpsd.conf.d (from rev 142039, gpsd/trunk/gpsd.conf.d) gpsd/repos/extra-x86_64/gpsd.install (from rev 142039, gpsd/trunk/gpsd.install) Deleted: gpsd/repos/extra-i686/PKGBUILD gpsd/repos/extra-i686/gpsd gpsd/repos/extra-i686/gpsd.conf.d gpsd/repos/extra-i686/gpsd.install gpsd/repos/extra-x86_64/PKGBUILD gpsd/repos/extra-x86_64/gpsd gpsd/repos/extra-x86_64/gpsd.conf.d gpsd/repos/extra-x86_64/gpsd.install ---+ extra-i686/PKGBUILD | 154 ++-- extra-i686/gpsd | 88 - extra-i686/gpsd.conf.d| 10 +- extra-i686/gpsd.install | 32 - extra-x86_64/PKGBUILD | 154 ++-- extra-x86_64/gpsd | 88 - extra-x86_64/gpsd.conf.d | 10 +- extra-x86_64/gpsd.install | 32 - 8 files changed, 286 insertions(+), 282 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2011-11-04 20:42:01 UTC (rev 142039) +++ extra-i686/PKGBUILD 2011-11-04 20:43:48 UTC (rev 142040) @@ -1,76 +0,0 @@ -# $Id$ -# Maintainer: Andrea Scarpino -# Contributor: Sergej Pupykin -# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org -# Contributor: Giacomo Rizzo - -pkgname=gpsd -pkgver=3.1 -pkgrel=1 -pkgdesc="GPS daemon and library to support USB/serial GPS devices" -arch=('i686' 'x86_64') -url="http://catb.org/gpsd/"; -license=('BSD') -depends=('python2' 'libusb' 'bluez' 'desktop-file-utils') -optdepends=('php: generate a PHP status page for your GPS' -'php-gd: image support for the PHP status page' -'pygtk: GUI frontends') -makedepends=('scons' 'docbook-xsl' 'chrpath') -backup=('etc/conf.d/gpsd' 'lib/udev/rules.d/99-gpsd-usb.rules') -options=('!libtool' '!buildflags') -install="${pkgname}.install" -source=("http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz"; -'gpsd' 'gpsd.conf.d') -md5sums=('f783c2890774fcafa56bdb968a0372fc' - '1f3402f8e33a7032b9ae6dfd077234f7' - '3e963df3f9f7ef3572ecc648ae829315') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # fix python 2.7 path - sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \ --e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \ -$(find . -name '*.py') - sed -i 's|/usr/bin/env python|/usr/bin/env python2|' gegps gpscat gpsfake \ -gpsprof xgps xgpsspeed - - scons prefix=/usr \ -systemd=yes \ -libQgpsmm=no \ -PYTHONPATH=/usr/bin/python2 - scons build -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # Fix man pages path (FS#21715) - sed -i 's|.so gps.1|.so man1/gps.1|' cgps.1 lcdgps.1 xgps.1 xgpsspeed.1 - - export DESTDIR="${pkgdir}" - scons install - - install -D -m644 "${srcdir}/gpsd.conf.d" "${pkgdir}/etc/conf.d/gpsd" - - install -D -m644 "gpsd.rules" "${pkgdir}/lib/udev/rules.d/99-gpsd-usb.rules" - - sed -i 's|/etc/default/gpsd|/etc/conf.d/gpsd|' gpsd.hotplug - install -D -m755 gpsd.hotplug "${pkgdir}/lib/udev/gpsd.hotplug" - - # GPSD needs RPATH - chrpath -r /usr/lib/ "${pkgdir}"/usr/lib/libgps{,d}.so.20.0.0 - chrpath -r /usr/lib/ "${pkgdir}"/usr/bin/{gpsdecode,gpsctl,gpspipe,gpxlogger,lcdgps} - chrpath -r /usr/lib/ "${pkgdir}"/usr/sbin/{gpsd,gpsdctl} - - install -D -m644 packaging/X11/xgps.desktop \ -"${pkgdir}/usr/share/applications/xgps.desktop" - install -D -m644 packaging/X11/xgpsspeed.desktop \ -"${pkgdir}/usr/share/applications/xgpsspeed.desktop" - install -D -m644 packaging/X11/gpsd-logo.png \ -"${pkgdir}/usr/share/gpsd/gpsd-logo.png" - - install -D -m755 "${srcdir}/gpsd" "${pkgdir}/etc/rc.d/gpsd" - - install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: gpsd/repos/extra-i686/PKGBUILD (from rev 142039, gpsd/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2011-11-04 20:43:48 UTC (rev 142040) @@ -0,0 +1,78 @@ +# $Id$ +# Maintainer: +# Contributor: Andrea Scarpino +# Contributor: Sergej Pupykin +# Contributor: Giacomo Rizzo + +pkgname=gpsd +pkgver=3.3 +pkgrel=1 +pkgdesc="GPS daemon and library to support USB/serial GPS devices" +arch=('i686' 'x86
[arch-commits] Commit in gpsd/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 16:42:01 Author: andrea Revision: 142039 upgpkg: gpsd 3.3-1 Upstream release Modified: gpsd/trunk/PKGBUILD --+ PKGBUILD | 18 ++ 1 file changed, 10 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 18:42:20 UTC (rev 142038) +++ PKGBUILD2011-11-04 20:42:01 UTC (rev 142039) @@ -1,11 +1,11 @@ # $Id$ -# Maintainer: Andrea Scarpino +# Maintainer: +# Contributor: Andrea Scarpino # Contributor: Sergej Pupykin -# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org # Contributor: Giacomo Rizzo pkgname=gpsd -pkgver=3.1 +pkgver=3.3 pkgrel=1 pkgdesc="GPS daemon and library to support USB/serial GPS devices" arch=('i686' 'x86_64') @@ -17,11 +17,12 @@ 'pygtk: GUI frontends') makedepends=('scons' 'docbook-xsl' 'chrpath') backup=('etc/conf.d/gpsd' 'lib/udev/rules.d/99-gpsd-usb.rules') -options=('!libtool' '!buildflags') +options=('!libtool') install="${pkgname}.install" -source=("http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz"; +source=("http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig} 'gpsd' 'gpsd.conf.d') -md5sums=('f783c2890774fcafa56bdb968a0372fc' +md5sums=('4cfdcfd88e925f4d0d6c2272fc573ab5' + '90086315ed6f266748b9acb338b903a5' '1f3402f8e33a7032b9ae6dfd077234f7' '3e963df3f9f7ef3572ecc648ae829315') @@ -32,8 +33,8 @@ sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \ -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \ $(find . -name '*.py') - sed -i 's|/usr/bin/env python|/usr/bin/env python2|' gegps gpscat gpsfake \ -gpsprof xgps xgpsspeed + sed -i 's|/usr/bin/env python|/usr/bin/env python2|' gegps \ +gpscat gpsfake gpsprof xgps xgpsspeed scons prefix=/usr \ systemd=yes \ @@ -62,6 +63,7 @@ chrpath -r /usr/lib/ "${pkgdir}"/usr/lib/libgps{,d}.so.20.0.0 chrpath -r /usr/lib/ "${pkgdir}"/usr/bin/{gpsdecode,gpsctl,gpspipe,gpxlogger,lcdgps} chrpath -r /usr/lib/ "${pkgdir}"/usr/sbin/{gpsd,gpsdctl} + chrpath -r /usr/lib/ "${pkgdir}"/usr/lib/python2.7/site-packages/gps/{clienthelpers,packet}.so install -D -m644 packaging/X11/xgps.desktop \ "${pkgdir}/usr/share/applications/xgps.desktop"
[arch-commits] Commit in curl/repos (5 files)
Date: Friday, November 4, 2011 @ 14:42:20 Author: dreisner Revision: 142038 db-move: moved curl from [testing] to [core] (x86_64) Added: curl/repos/core-x86_64/PKGBUILD (from rev 142036, curl/repos/testing-x86_64/PKGBUILD) curl/repos/core-x86_64/curlbuild.h (from rev 142036, curl/repos/testing-x86_64/curlbuild.h) Deleted: curl/repos/core-x86_64/PKGBUILD curl/repos/core-x86_64/curlbuild.h curl/repos/testing-x86_64/ -+ PKGBUILD| 124 +- curlbuild.h | 18 2 files changed, 73 insertions(+), 69 deletions(-) Deleted: core-x86_64/PKGBUILD === --- core-x86_64/PKGBUILD2011-11-04 18:42:19 UTC (rev 142037) +++ core-x86_64/PKGBUILD2011-11-04 18:42:20 UTC (rev 142038) @@ -1,60 +0,0 @@ -# $Id$ -# Maintainer: Dave Reisner -# Contributor: Angel Velasquez -# Contributor: Eric Belanger -# Contributor: Lucien Immink -# Contributor: Daniel J Griffiths - -pkgname=curl -pkgver=7.22.0 -pkgrel=1 -pkgdesc="An URL retrival utility and library" -arch=('i686' 'x86_64') -url="http://curl.haxx.se"; -license=('MIT') -depends=('zlib' 'openssl' 'bash' 'ca-certificates' 'libssh2') -options=('!libtool') -source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc} -curlbuild.h) -md5sums=('e8c36126d21c893f085aca233906b5cc' - '1b061c348b63ea3e90c3f2c3af6a08d6' - '751bd433ede935c8fae727377625a8ae') - - -case $(cpp <<<'__SIZEOF_POINTER__' | sed '/^#/d') in - 8) _curlbuild=curlbuild-64.h ;; - 4) _curlbuild=curlbuild-32.h ;; - *) error "unsupported architecture: %s" "$CARCH" -exit 1 -;; -esac - -build() { - cd "$srcdir/$pkgname-$pkgver" - - ./configure \ - --with-random=/dev/urandom \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --disable-dependency-tracking \ - --enable-ipv6 \ - --disable-ldaps \ - --disable-ldap \ - --enable-manual \ - --enable-versioned-symbols \ - --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \ - --without-libidn \ - --enable-threaded-resolver - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install - - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" - install -Dm644 docs/libcurl/libcurl.m4 "$pkgdir/usr/share/aclocal/libcurl.m4" - mv "$pkgdir/usr/include/curl/curlbuild.h" "$pkgdir/usr/include/curl/$_curlbuild" - install -m644 "$srcdir/curlbuild.h" "$pkgdir/usr/include/curl/curlbuild.h" -} Copied: curl/repos/core-x86_64/PKGBUILD (from rev 142036, curl/repos/testing-x86_64/PKGBUILD) === --- core-x86_64/PKGBUILD(rev 0) +++ core-x86_64/PKGBUILD2011-11-04 18:42:20 UTC (rev 142038) @@ -0,0 +1,64 @@ +# $Id$ +# Maintainer: Dave Reisner +# Contributor: Angel Velasquez +# Contributor: Eric Belanger +# Contributor: Lucien Immink +# Contributor: Daniel J Griffiths + +pkgname=curl +pkgver=7.22.0 +pkgrel=4 +pkgdesc="An URL retrival utility and library" +arch=('i686' 'x86_64') +url="http://curl.haxx.se"; +license=('MIT') +depends=('ca-certificates' 'libssh2' 'openssl' 'zlib') +makedepends=('perl-libwww') +options=('!libtool') +source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc} +curlbuild.h) +md5sums=('e8c36126d21c893f085aca233906b5cc' + '1b061c348b63ea3e90c3f2c3af6a08d6' + '751bd433ede935c8fae727377625a8ae') + +ptrsize=$(cpp <<<'__SIZEOF_POINTER__' | sed '/^#/d') +case $ptrsize in + 8) _curlbuild=curlbuild-64.h ;; + 4) _curlbuild=curlbuild-32.h ;; + *) error "unknown pointer size for architecture: %s bytes" "$ptrsize" +exit 1 +;; +esac + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --disable-dependency-tracking \ + --disable-ldap \ + --disable-ldaps \ + --enable-ipv6 \ + --enable-manual \ + --enable-versioned-symbols \ + --enable-threaded-resolver \ + --without-libidn \ + --with-random=/dev/urandom \ + --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install + + # license + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" + + # devel + install -Dm644 docs/libcurl/libcurl.m4 "$pkgdir/usr/share/aclocal/libcurl.m4" + mv "$pkgdir/usr/include/curl/curlbuild.h" "$pkgdir/usr/include/curl/$_curlbuild" + install -m644 "$srcdir/curlbuild.h" "$pkgdir/usr/include/curl/curlbuild.h" +} Deleted: core-x86_64/curlbuild.h === --- core-x86_64/curlbuild.h 2011-11-04 18:42:19 UTC (rev 142037) +++ core-x86_64/curlbuild.h 2011-11-04 18:42:20 UTC (rev 142038) @@ -1,9 +0,0 @@ -#include - -#if __WORDSIZE == 32 -#include "cu
[arch-commits] Commit in curl/repos (5 files)
Date: Friday, November 4, 2011 @ 14:42:19 Author: dreisner Revision: 142037 db-move: moved curl from [testing] to [core] (i686) Added: curl/repos/core-i686/PKGBUILD (from rev 142036, curl/repos/testing-i686/PKGBUILD) curl/repos/core-i686/curlbuild.h (from rev 142036, curl/repos/testing-i686/curlbuild.h) Deleted: curl/repos/core-i686/PKGBUILD curl/repos/core-i686/curlbuild.h curl/repos/testing-i686/ -+ PKGBUILD| 124 +- curlbuild.h | 18 2 files changed, 73 insertions(+), 69 deletions(-) Deleted: core-i686/PKGBUILD === --- core-i686/PKGBUILD 2011-11-04 17:48:40 UTC (rev 142036) +++ core-i686/PKGBUILD 2011-11-04 18:42:19 UTC (rev 142037) @@ -1,60 +0,0 @@ -# $Id$ -# Maintainer: Dave Reisner -# Contributor: Angel Velasquez -# Contributor: Eric Belanger -# Contributor: Lucien Immink -# Contributor: Daniel J Griffiths - -pkgname=curl -pkgver=7.22.0 -pkgrel=1 -pkgdesc="An URL retrival utility and library" -arch=('i686' 'x86_64') -url="http://curl.haxx.se"; -license=('MIT') -depends=('zlib' 'openssl' 'bash' 'ca-certificates' 'libssh2') -options=('!libtool') -source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc} -curlbuild.h) -md5sums=('e8c36126d21c893f085aca233906b5cc' - '1b061c348b63ea3e90c3f2c3af6a08d6' - '751bd433ede935c8fae727377625a8ae') - - -case $(cpp <<<'__SIZEOF_POINTER__' | sed '/^#/d') in - 8) _curlbuild=curlbuild-64.h ;; - 4) _curlbuild=curlbuild-32.h ;; - *) error "unsupported architecture: %s" "$CARCH" -exit 1 -;; -esac - -build() { - cd "$srcdir/$pkgname-$pkgver" - - ./configure \ - --with-random=/dev/urandom \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --disable-dependency-tracking \ - --enable-ipv6 \ - --disable-ldaps \ - --disable-ldap \ - --enable-manual \ - --enable-versioned-symbols \ - --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \ - --without-libidn \ - --enable-threaded-resolver - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install - - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" - install -Dm644 docs/libcurl/libcurl.m4 "$pkgdir/usr/share/aclocal/libcurl.m4" - mv "$pkgdir/usr/include/curl/curlbuild.h" "$pkgdir/usr/include/curl/$_curlbuild" - install -m644 "$srcdir/curlbuild.h" "$pkgdir/usr/include/curl/curlbuild.h" -} Copied: curl/repos/core-i686/PKGBUILD (from rev 142036, curl/repos/testing-i686/PKGBUILD) === --- core-i686/PKGBUILD (rev 0) +++ core-i686/PKGBUILD 2011-11-04 18:42:19 UTC (rev 142037) @@ -0,0 +1,64 @@ +# $Id$ +# Maintainer: Dave Reisner +# Contributor: Angel Velasquez +# Contributor: Eric Belanger +# Contributor: Lucien Immink +# Contributor: Daniel J Griffiths + +pkgname=curl +pkgver=7.22.0 +pkgrel=4 +pkgdesc="An URL retrival utility and library" +arch=('i686' 'x86_64') +url="http://curl.haxx.se"; +license=('MIT') +depends=('ca-certificates' 'libssh2' 'openssl' 'zlib') +makedepends=('perl-libwww') +options=('!libtool') +source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc} +curlbuild.h) +md5sums=('e8c36126d21c893f085aca233906b5cc' + '1b061c348b63ea3e90c3f2c3af6a08d6' + '751bd433ede935c8fae727377625a8ae') + +ptrsize=$(cpp <<<'__SIZEOF_POINTER__' | sed '/^#/d') +case $ptrsize in + 8) _curlbuild=curlbuild-64.h ;; + 4) _curlbuild=curlbuild-32.h ;; + *) error "unknown pointer size for architecture: %s bytes" "$ptrsize" +exit 1 +;; +esac + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --disable-dependency-tracking \ + --disable-ldap \ + --disable-ldaps \ + --enable-ipv6 \ + --enable-manual \ + --enable-versioned-symbols \ + --enable-threaded-resolver \ + --without-libidn \ + --with-random=/dev/urandom \ + --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install + + # license + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" + + # devel + install -Dm644 docs/libcurl/libcurl.m4 "$pkgdir/usr/share/aclocal/libcurl.m4" + mv "$pkgdir/usr/include/curl/curlbuild.h" "$pkgdir/usr/include/curl/$_curlbuild" + install -m644 "$srcdir/curlbuild.h" "$pkgdir/usr/include/curl/curlbuild.h" +} Deleted: core-i686/curlbuild.h === --- core-i686/curlbuild.h 2011-11-04 17:48:40 UTC (rev 142036) +++ core-i686/curlbuild.h 2011-11-04 18:42:19 UTC (rev 142037) @@ -1,9 +0,0 @@ -#include - -#if __WORDSIZE == 32 -#include "curlbuild-32.h" -#elif __WORDSIZE == 64 -#include "curlbui
[arch-commits] Commit in zd1211-firmware/repos (3 files)
Date: Friday, November 4, 2011 @ 13:48:40 Author: dan Revision: 142036 db-move: moved zd1211-firmware from [testing] to [core] (any) Added: zd1211-firmware/repos/core-any/PKGBUILD (from rev 142035, zd1211-firmware/repos/testing-any/PKGBUILD) Deleted: zd1211-firmware/repos/core-any/PKGBUILD zd1211-firmware/repos/testing-any/ --+ PKGBUILD | 46 +++--- 1 file changed, 23 insertions(+), 23 deletions(-) Deleted: core-any/PKGBUILD === --- core-any/PKGBUILD 2011-11-04 16:35:33 UTC (rev 142035) +++ core-any/PKGBUILD 2011-11-04 17:48:40 UTC (rev 142036) @@ -1,23 +0,0 @@ -# $Id$ -# Maintainer: Dan McGee -# Contributor: Giovanni Scafora - -pkgname=zd1211-firmware -pkgver=1.4 -pkgrel=4 -pkgdesc="Firmware for the in-kernel26 zd1211rw wireless driver" -arch=('any') -url="http://zd1211.wiki.sourceforge.net/"; -license=('GPL') -provides=('zd1211') -source=("http://downloads.sourceforge.net/zd1211/${pkgname}-${pkgver}.tar.bz2";) -md5sums=('19f28781d76569af8551c9d11294c870') - -build() { - cd "${srcdir}/${pkgname}" - # Install firmware - for i in zd1211* - do -install -D -m 644 $i "${pkgdir}/lib/firmware/zd1211/$i" - done -} Copied: zd1211-firmware/repos/core-any/PKGBUILD (from rev 142035, zd1211-firmware/repos/testing-any/PKGBUILD) === --- core-any/PKGBUILD (rev 0) +++ core-any/PKGBUILD 2011-11-04 17:48:40 UTC (rev 142036) @@ -0,0 +1,23 @@ +# $Id$ +# Maintainer: Dan McGee +# Contributor: Giovanni Scafora + +pkgname=zd1211-firmware +pkgver=1.4 +pkgrel=5 +pkgdesc="Firmware for the in-kernel26 zd1211rw wireless driver" +arch=('any') +url="http://zd1211.wiki.sourceforge.net/"; +license=('GPL') +provides=('zd1211') +source=("http://downloads.sourceforge.net/zd1211/${pkgname}-${pkgver}.tar.bz2";) +md5sums=('19f28781d76569af8551c9d11294c870') + +package() { + cd "${srcdir}/${pkgname}" + # Install firmware + for i in zd1211* + do +install -D -m 644 $i "${pkgdir}/lib/firmware/zd1211/$i" + done +}
[arch-commits] Commit in kradio/repos (8 files)
Date: Friday, November 4, 2011 @ 12:35:33 Author: eric Revision: 142035 archrelease: copy trunk to staging-i686, staging-x86_64 Added: kradio/repos/staging-i686/ kradio/repos/staging-i686/PKGBUILD (from rev 142034, kradio/trunk/PKGBUILD) kradio/repos/staging-i686/kradio-ffmpeg.diff (from rev 142034, kradio/trunk/kradio-ffmpeg.diff) kradio/repos/staging-i686/kradio.install (from rev 142034, kradio/trunk/kradio.install) kradio/repos/staging-x86_64/ kradio/repos/staging-x86_64/PKGBUILD (from rev 142034, kradio/trunk/PKGBUILD) kradio/repos/staging-x86_64/kradio-ffmpeg.diff (from rev 142034, kradio/trunk/kradio-ffmpeg.diff) kradio/repos/staging-x86_64/kradio.install (from rev 142034, kradio/trunk/kradio.install) ---+ staging-i686/PKGBUILD | 32 staging-i686/kradio-ffmpeg.diff | 34 ++ staging-i686/kradio.install | 11 +++ staging-x86_64/PKGBUILD | 32 staging-x86_64/kradio-ffmpeg.diff | 34 ++ staging-x86_64/kradio.install | 11 +++ 6 files changed, 154 insertions(+) Copied: kradio/repos/staging-i686/PKGBUILD (from rev 142034, kradio/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2011-11-04 16:35:33 UTC (rev 142035) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer : Tobias Powalowski + +pkgname=kradio +pkgver=4.0.2 +pkgrel=2 +arch=('i686' 'x86_64') +license=('GPL2') +pkgdesc="A comfortable KDE radio application" +url="http://kradio.sourceforge.net/"; +depends=('kdebase-runtime' 'lirc-utils' 'libmms' 'ffmpeg') +makedepends=('pkg-config' 'automoc4' 'cmake') +install=kradio.install +source=(http://downloads.sourceforge.net/sourceforge/kradio/kradio4-$pkgver.tar.bz2{,.asc} kradio-ffmpeg.diff) +options=(!libtool) + +build() { + cd "$srcdir" + (cd ${pkgname}4-$pkgver ; patch -p1 -i "$srcdir/kradio-ffmpeg.diff") + mkdir build + cd build + cmake ../${pkgname}4-$pkgver -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd "$srcdir/build" + make DESTDIR="$pkgdir" install +} +md5sums=('18fea3e2bc7100882075187c6a89f7bd' + '5f407eb75536f39e79c77a70613e8704' + '7d31a4f54602bc109f39cc0a7a1dc50c') Copied: kradio/repos/staging-i686/kradio-ffmpeg.diff (from rev 142034, kradio/trunk/kradio-ffmpeg.diff) === --- staging-i686/kradio-ffmpeg.diff (rev 0) +++ staging-i686/kradio-ffmpeg.diff 2011-11-04 16:35:33 UTC (rev 142035) @@ -0,0 +1,34 @@ +X-Git-Url: http://kradio.git.sourceforge.net/git/gitweb.cgi?p=kradio%2Fkradio;a=blobdiff_plain;f=plugins%2Finternetradio%2Fdecoder_thread.cpp;h=c74d6e20578faf3b5dee877aa6de0c9269f49ad9;hp=4cd6cc0543200e9e274e38fa8badb63556a419c3;hb=4f4ec44f49d83b85702bb002455a57374245d825;hpb=c5dea0c01bf5cc16f49cf3d58b837b2fab02d988 + +diff --git a/plugins/internetradio/decoder_thread.cpp b/plugins/internetradio/decoder_thread.cpp +index 4cd6cc0..c74d6e2 100644 +--- a/plugins/internetradio/decoder_thread.cpp b/plugins/internetradio/decoder_thread.cpp +@@ -373,7 +373,6 @@ void InternetRadioDecoder::openAVStream(const QString &stream, bool warningsNotE + + //av_log_set_level(255); + m_av_pFormatCtx = avformat_alloc_context(); +-memset(m_av_pFormatCtx, 0, sizeof(*m_av_pFormatCtx)); + m_av_pFormatCtx->probesize = m_maxProbeSize; + m_av_pFormatCtx->max_analyze_duration = m_maxAnalyzeTime * AV_TIME_BASE; + +@@ -475,7 +474,6 @@ void InternetRadioDecoder::openAVStream(const QString &stream, bool warningsNotE + m_av_pFormatCtx_opened = true; + } + else { +- + // IErrorLogClient::staticLogDebug("InternetRadioDecoder::openAVStream: av_open_input_file start"); + if (av_open_input_file(&m_av_pFormatCtx, stream.toUtf8(), iformat, 0, &av_params) != 0) { + if (warningsNotErrors) { +@@ -535,7 +533,11 @@ void InternetRadioDecoder::openAVStream(const QString &stream, bool warningsNotE + m_av_audioStream = -1; + for (unsigned int i = 0; i < m_av_pFormatCtx->nb_streams; i++) { + // if (m_av_pFormatCtx->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO && m_av_audioStream < 0) { ++#if LIBAVCODEC_VERSION_MAJOR < 53 + if (m_av_pFormatCtx->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO) { // take last stream ++#else ++if (m_av_pFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO) { // take last stream ++#endif + m_av_audioStream = i; + break; + } Copied: kradio/repos/staging-i686/kradio.install (from rev 142034, kradio/trunk/kradio.install) === ---
[arch-commits] Commit in kradio/trunk (PKGBUILD kradio-ffmpeg.diff kradio.install)
Date: Friday, November 4, 2011 @ 12:34:55 Author: eric Revision: 142034 Rebuild against ffmpeg 20111030, Add kdebase-runtime depends and remove already satisfied depends, Add cmake makedepends, Add install file to update icon cache Added: kradio/trunk/kradio-ffmpeg.diff kradio/trunk/kradio.install Modified: kradio/trunk/PKGBUILD + PKGBUILD | 22 +- kradio-ffmpeg.diff | 34 ++ kradio.install | 11 +++ 3 files changed, 58 insertions(+), 9 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 11:47:22 UTC (rev 142033) +++ PKGBUILD2011-11-04 16:34:55 UTC (rev 142034) @@ -3,18 +3,20 @@ pkgname=kradio pkgver=4.0.2 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') license=('GPL2') -pkgdesc="KRadio is a comfortable KDE radio application" +pkgdesc="A comfortable KDE radio application" url="http://kradio.sourceforge.net/"; -depends=('lame' 'kdelibs' 'libsndfile' 'lirc-utils' 'libmms' 'ffmpeg') -makedepends=('pkgconfig' 'automoc4') -source=(http://downloads.sourceforge.net/sourceforge/kradio/kradio4-$pkgver.tar.bz2) +depends=('kdebase-runtime' 'lirc-utils' 'libmms' 'ffmpeg') +makedepends=('pkg-config' 'automoc4' 'cmake') +install=kradio.install +source=(http://downloads.sourceforge.net/sourceforge/kradio/kradio4-$pkgver.tar.bz2{,.asc} kradio-ffmpeg.diff) options=(!libtool) build() { - cd $srcdir + cd "$srcdir" + (cd ${pkgname}4-$pkgver ; patch -p1 -i "$srcdir/kradio-ffmpeg.diff") mkdir build cd build cmake ../${pkgname}4-$pkgver -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release @@ -22,7 +24,9 @@ } package() { - cd $srcdir/build - make DESTDIR=$startdir/pkg install + cd "$srcdir/build" + make DESTDIR="$pkgdir" install } -md5sums=('18fea3e2bc7100882075187c6a89f7bd') +md5sums=('18fea3e2bc7100882075187c6a89f7bd' + '5f407eb75536f39e79c77a70613e8704' + '7d31a4f54602bc109f39cc0a7a1dc50c') Added: kradio-ffmpeg.diff === --- kradio-ffmpeg.diff (rev 0) +++ kradio-ffmpeg.diff 2011-11-04 16:34:55 UTC (rev 142034) @@ -0,0 +1,34 @@ +X-Git-Url: http://kradio.git.sourceforge.net/git/gitweb.cgi?p=kradio%2Fkradio;a=blobdiff_plain;f=plugins%2Finternetradio%2Fdecoder_thread.cpp;h=c74d6e20578faf3b5dee877aa6de0c9269f49ad9;hp=4cd6cc0543200e9e274e38fa8badb63556a419c3;hb=4f4ec44f49d83b85702bb002455a57374245d825;hpb=c5dea0c01bf5cc16f49cf3d58b837b2fab02d988 + +diff --git a/plugins/internetradio/decoder_thread.cpp b/plugins/internetradio/decoder_thread.cpp +index 4cd6cc0..c74d6e2 100644 +--- a/plugins/internetradio/decoder_thread.cpp b/plugins/internetradio/decoder_thread.cpp +@@ -373,7 +373,6 @@ void InternetRadioDecoder::openAVStream(const QString &stream, bool warningsNotE + + //av_log_set_level(255); + m_av_pFormatCtx = avformat_alloc_context(); +-memset(m_av_pFormatCtx, 0, sizeof(*m_av_pFormatCtx)); + m_av_pFormatCtx->probesize = m_maxProbeSize; + m_av_pFormatCtx->max_analyze_duration = m_maxAnalyzeTime * AV_TIME_BASE; + +@@ -475,7 +474,6 @@ void InternetRadioDecoder::openAVStream(const QString &stream, bool warningsNotE + m_av_pFormatCtx_opened = true; + } + else { +- + // IErrorLogClient::staticLogDebug("InternetRadioDecoder::openAVStream: av_open_input_file start"); + if (av_open_input_file(&m_av_pFormatCtx, stream.toUtf8(), iformat, 0, &av_params) != 0) { + if (warningsNotErrors) { +@@ -535,7 +533,11 @@ void InternetRadioDecoder::openAVStream(const QString &stream, bool warningsNotE + m_av_audioStream = -1; + for (unsigned int i = 0; i < m_av_pFormatCtx->nb_streams; i++) { + // if (m_av_pFormatCtx->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO && m_av_audioStream < 0) { ++#if LIBAVCODEC_VERSION_MAJOR < 53 + if (m_av_pFormatCtx->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO) { // take last stream ++#else ++if (m_av_pFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO) { // take last stream ++#endif + m_av_audioStream = i; + break; + } Added: kradio.install === --- kradio.install (rev 0) +++ kradio.install 2011-11-04 16:34:55 UTC (rev 142034) @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor 2> /dev/null +} + +post_upgrade() { + xdg-icon-resource forceupdate --theme hicolor 2> /dev/null +} + +post_remove() { + xdg-icon-resource forceupdate --theme hicolor 2> /dev/null +}
[arch-commits] Commit in gettext/repos (6 files)
Date: Friday, November 4, 2011 @ 07:47:22 Author: tpowa Revision: 142033 archrelease: copy trunk to testing-i686, testing-x86_64 Added: gettext/repos/testing-i686/ gettext/repos/testing-i686/PKGBUILD (from rev 142032, gettext/trunk/PKGBUILD) gettext/repos/testing-i686/gettext.install (from rev 142032, gettext/trunk/gettext.install) gettext/repos/testing-x86_64/ gettext/repos/testing-x86_64/PKGBUILD (from rev 142032, gettext/trunk/PKGBUILD) gettext/repos/testing-x86_64/gettext.install (from rev 142032, gettext/trunk/gettext.install) + testing-i686/PKGBUILD | 34 ++ testing-i686/gettext.install | 22 ++ testing-x86_64/PKGBUILD| 34 ++ testing-x86_64/gettext.install | 22 ++ 4 files changed, 112 insertions(+) Copied: gettext/repos/testing-i686/PKGBUILD (from rev 142032, gettext/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 11:47:22 UTC (rev 142033) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: + +pkgname=gettext +pkgver=0.18.1.1 +pkgrel=4 +pkgdesc="GNU internationalization library" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/gettext/"; +license=('GPL') +groups=('base') +depends=('gcc-libs' 'acl' 'sh' 'glib2') +optdepends=('cvs: for autopoint tool') +options=(!libtool !docs) +install=gettext.install +source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz) +md5sums=('3dd55b952826d2b32f51308f2f91aa89') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i -e 's/libexpat.so.0/libexpat.so.1/' gettext-tools/src/x-glade.c + ./configure --prefix=/usr --enable-csharp + make +} + +#check() { +# cd "${srcdir}/${pkgname}-${pkgver}" +# make check +#} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} Copied: gettext/repos/testing-i686/gettext.install (from rev 142032, gettext/trunk/gettext.install) === --- testing-i686/gettext.install(rev 0) +++ testing-i686/gettext.install2011-11-04 11:47:22 UTC (rev 142033) @@ -0,0 +1,22 @@ +infodir=/usr/share/info +filelist=(gettext.info.gz autosprintf.info.gz) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} + +# vim:set ts=2 sw=2 et: Copied: gettext/repos/testing-x86_64/PKGBUILD (from rev 142032, gettext/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2011-11-04 11:47:22 UTC (rev 142033) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: + +pkgname=gettext +pkgver=0.18.1.1 +pkgrel=4 +pkgdesc="GNU internationalization library" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/gettext/"; +license=('GPL') +groups=('base') +depends=('gcc-libs' 'acl' 'sh' 'glib2') +optdepends=('cvs: for autopoint tool') +options=(!libtool !docs) +install=gettext.install +source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz) +md5sums=('3dd55b952826d2b32f51308f2f91aa89') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i -e 's/libexpat.so.0/libexpat.so.1/' gettext-tools/src/x-glade.c + ./configure --prefix=/usr --enable-csharp + make +} + +#check() { +# cd "${srcdir}/${pkgname}-${pkgver}" +# make check +#} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} Copied: gettext/repos/testing-x86_64/gettext.install (from rev 142032, gettext/trunk/gettext.install) === --- testing-x86_64/gettext.install (rev 0) +++ testing-x86_64/gettext.install 2011-11-04 11:47:22 UTC (rev 142033) @@ -0,0 +1,22 @@ +infodir=/usr/share/info +filelist=(gettext.info.gz autosprintf.info.gz) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info $infodir/$file $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do +install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in gettext/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 07:46:55 Author: tpowa Revision: 142032 signed rebuild Modified: gettext/trunk/PKGBUILD --+ PKGBUILD |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 09:28:13 UTC (rev 142031) +++ PKGBUILD2011-11-04 11:46:55 UTC (rev 142032) @@ -3,7 +3,7 @@ pkgname=gettext pkgver=0.18.1.1 -pkgrel=3 +pkgrel=4 pkgdesc="GNU internationalization library" arch=('i686' 'x86_64') url="http://www.gnu.org/software/gettext/"; @@ -23,6 +23,11 @@ make } +#check() { +# cd "${srcdir}/${pkgname}-${pkgver}" +# make check +#} + package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install
[arch-commits] Commit in popt/repos (4 files)
Date: Friday, November 4, 2011 @ 05:28:13 Author: stephane Revision: 142031 archrelease: copy trunk to testing-i686, testing-x86_64 Added: popt/repos/testing-i686/ popt/repos/testing-i686/PKGBUILD (from rev 142030, popt/trunk/PKGBUILD) popt/repos/testing-x86_64/ popt/repos/testing-x86_64/PKGBUILD (from rev 142030, popt/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 42 ++ testing-x86_64/PKGBUILD | 42 ++ 2 files changed, 84 insertions(+) Copied: popt/repos/testing-i686/PKGBUILD (from rev 142030, popt/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 09:28:13 UTC (rev 142031) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Stéphane Gaudreault +# Contributor: Andrea Scarpino +# Contributor: dorphell +# Contributor: Judd Vinet +# Contributor: John Proctor + +pkgname=popt +pkgver=1.16 +pkgrel=4 +pkgdesc="A commandline option parser" +arch=('i686' 'x86_64') +url="http://rpm5.org"; +license=('custom') +depends=('glibc') +options=('!libtool') +source=(http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('3743beefa3dd6247a73f8f7a32c14c33') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + + # move libs in /lib + install -Dm755 "${pkgdir}"/usr/lib/libpopt.so.0.0.0 \ +${pkgdir}/lib/libpopt.so.0.0.0 + + rm "${pkgdir}"/usr/lib/libpopt.so* + ln -sf /lib/libpopt.so "${pkgdir}"/usr/lib/libpopt.so + ln -sf libpopt.so.0 "${pkgdir}"/lib/libpopt.so + ln -sf libpopt.so.0.0.0 "${pkgdir}"/lib/libpopt.so.0 + + # install license + install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +} Copied: popt/repos/testing-x86_64/PKGBUILD (from rev 142030, popt/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2011-11-04 09:28:13 UTC (rev 142031) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Stéphane Gaudreault +# Contributor: Andrea Scarpino +# Contributor: dorphell +# Contributor: Judd Vinet +# Contributor: John Proctor + +pkgname=popt +pkgver=1.16 +pkgrel=4 +pkgdesc="A commandline option parser" +arch=('i686' 'x86_64') +url="http://rpm5.org"; +license=('custom') +depends=('glibc') +options=('!libtool') +source=(http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('3743beefa3dd6247a73f8f7a32c14c33') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + + # move libs in /lib + install -Dm755 "${pkgdir}"/usr/lib/libpopt.so.0.0.0 \ +${pkgdir}/lib/libpopt.so.0.0.0 + + rm "${pkgdir}"/usr/lib/libpopt.so* + ln -sf /lib/libpopt.so "${pkgdir}"/usr/lib/libpopt.so + ln -sf libpopt.so.0 "${pkgdir}"/lib/libpopt.so + ln -sf libpopt.so.0.0.0 "${pkgdir}"/lib/libpopt.so.0 + + # install license + install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE +}
[arch-commits] Commit in popt/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 05:28:03 Author: stephane Revision: 142030 upgpkg: popt 1.16-4 signed rebuild Modified: popt/trunk/PKGBUILD --+ PKGBUILD | 17 + 1 file changed, 9 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 08:15:42 UTC (rev 142029) +++ PKGBUILD2011-11-04 09:28:03 UTC (rev 142030) @@ -1,12 +1,13 @@ # $Id$ -# Maintainer: Andrea Scarpino +# Maintainer: Stéphane Gaudreault +# Contributor: Andrea Scarpino # Contributor: dorphell # Contributor: Judd Vinet # Contributor: John Proctor pkgname=popt pkgver=1.16 -pkgrel=3 +pkgrel=4 pkgdesc="A commandline option parser" arch=('i686' 'x86_64') url="http://rpm5.org"; @@ -28,14 +29,14 @@ make DESTDIR="${pkgdir}" install # move libs in /lib - install -Dm755 ${pkgdir}/usr/lib/libpopt.so.0.0.0 \ + install -Dm755 "${pkgdir}"/usr/lib/libpopt.so.0.0.0 \ ${pkgdir}/lib/libpopt.so.0.0.0 - rm ${pkgdir}/usr/lib/libpopt.so* - ln -sf /lib/libpopt.so ${pkgdir}/usr/lib/libpopt.so - ln -sf libpopt.so.0 ${pkgdir}/lib/libpopt.so - ln -sf libpopt.so.0.0.0 ${pkgdir}/lib/libpopt.so.0 + rm "${pkgdir}"/usr/lib/libpopt.so* + ln -sf /lib/libpopt.so "${pkgdir}"/usr/lib/libpopt.so + ln -sf libpopt.so.0 "${pkgdir}"/lib/libpopt.so + ln -sf libpopt.so.0.0.0 "${pkgdir}"/lib/libpopt.so.0 # install license - install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE + install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE }
[arch-commits] Commit in opencv/repos (6 files)
Date: Friday, November 4, 2011 @ 04:15:42 Author: schiv Revision: 142029 archrelease: copy trunk to staging-i686, staging-x86_64 Added: opencv/repos/staging-i686/ opencv/repos/staging-i686/PKGBUILD (from rev 142028, opencv/trunk/PKGBUILD) opencv/repos/staging-i686/opencv.install (from rev 142028, opencv/trunk/opencv.install) opencv/repos/staging-x86_64/ opencv/repos/staging-x86_64/PKGBUILD (from rev 142028, opencv/trunk/PKGBUILD) opencv/repos/staging-x86_64/opencv.install (from rev 142028, opencv/trunk/opencv.install) ---+ staging-i686/PKGBUILD | 110 staging-i686/opencv.install | 11 staging-x86_64/PKGBUILD | 110 staging-x86_64/opencv.install | 11 4 files changed, 242 insertions(+) Copied: opencv/repos/staging-i686/PKGBUILD (from rev 142028, opencv/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2011-11-04 08:15:42 UTC (rev 142029) @@ -0,0 +1,110 @@ +# $Id$ +# Maintainer: Ray Rashif +# Contributor: Tobias Powalowski + +pkgbase=opencv +pkgname=('opencv' 'opencv-docs' 'opencv-samples') +_realname=OpenCV +pkgver=2.3.1 +pkgrel=2 +pkgdesc="Open Source Computer Vision Library" +arch=('i686' 'x86_64') +license=('BSD') +url="http://opencv.willowgarage.com/"; +depends=('jasper' 'gstreamer0.10-base' 'openexr' 'ffmpeg>=20111030' + 'gtk2' 'xine-lib' 'libdc1394' 'v4l-utils') +makedepends=('pkg-config' 'cmake' 'python2-numpy' 'eigen2') +optdepends=('python2-numpy: Python 2.x interface' +'eigen2') +options=('!libtool') +source=("http://downloads.sourceforge.net/opencvlibrary/$_realname-$pkgver.tar.bz2";) +md5sums=('827c9f8aa14384c531c73aa165f9b777') + +_cmakeopts=('-D CMAKE_BUILD_TYPE=Release' +'-D CMAKE_INSTALL_PREFIX=/usr' +'-D CMAKE_SKIP_RPATH=ON' +'-D BUILD_TESTS=OFF' +'-D ENABLE_SSE=ON' +'-D ENABLE_SSE2=ON' +'-D ENABLE_SSE3=OFF' +'-D ENABLE_SSSE3=OFF' +'-D ENABLE_SSE41=OFF' +'-D ENABLE_SSE42=OFF' +'-D BUILD_EXAMPLES=ON' +'-D INSTALL_C_EXAMPLES=ON' +'-D INSTALL_PYTHON_EXAMPLES=ON' +'-D WITH_XINE=ON' +'-D WITH_QT=OFF' +'-D WITH_QT_OPENGL=OFF' +'-D WITH_UNICAP=OFF' +'-D WITH_PVAPI=OFF' +'-D WITH_OPENNI=OFF' +'-D WITH_TBB=OFF' +'-D WITH_IPP=OFF' +'-D WITH_CUDA=OFF' +'-D USE_FAST_MATH=ON') + +build() { + cd "$srcdir/$_realname-$pkgver" + + # x64, i.e "Athlon64" and upwards, can use SSE3 + [ $CARCH = x86_64 ] && \ +_cmakeopts=${_cmakeopts[@]/ENABLE_SSE3=OFF/ENABLE_SSE3=ON} + + cmake ${_cmakeopts[@]} . + + make +} + +package_opencv() { + install=$pkgname.install + + cd "$srcdir/$_realname-$pkgver" + + make DESTDIR="$pkgdir" install + + # install license file + install -Dm644 "$srcdir/$_realname-$pkgver/doc/license.txt" \ +"$pkgdir/usr/share/licenses/$pkgname/LICENSE" + + cd "$pkgdir/usr/share" + + # prepare FSH-friendly dirs + if [ -d OpenCV ]; then +mv opencv/samples OpenCV/ +rm -r opencv +mv OpenCV opencv + fi + + # separate docs package; also be -R friendly + [ -d opencv/doc ] && mv opencv/doc "$srcdir/opencv-doc" + + # separate samples package + [ -d opencv/samples ] && mv opencv/samples "$srcdir/opencv-samples" +} + +package_opencv-docs() { + pkgdesc+=" (documentation)" + depends=() + optdepends=() + options=('docs') + + cd "$srcdir" + + mkdir -p "$pkgdir/usr/share/doc" + cp -r opencv-doc "$pkgdir/usr/share/doc/opencv" +} + +package_opencv-samples() { + pkgdesc+=" (samples)" + depends=() + optdepends=() + options=() + + cd "$srcdir" + + mkdir -p "$pkgdir/usr/share/opencv" + cp -r opencv-samples "$pkgdir/usr/share/opencv/samples" +} + +# vim:set ts=2 sw=2 et: Copied: opencv/repos/staging-i686/opencv.install (from rev 142028, opencv/trunk/opencv.install) === --- staging-i686/opencv.install (rev 0) +++ staging-i686/opencv.install 2011-11-04 08:15:42 UTC (rev 142029) @@ -0,0 +1,11 @@ +post_install() { + echo " Documentation and samples are in separate packages:" + echo "* opencv-docs" + echo "* opencv-samples" +} + +post_upgrade() { + post_install +} + +# vim:set ts=2 sw=2 et: Copied: opencv/repos/staging-x86_64/PKGBUILD (from rev 142028, opencv/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2011-11-04 08:15:42 UTC (rev 142029) @@ -0,0 +1,110 @@ +# $Id$ +# Maintainer: Ray Rashif +# Contributor: Tobias Powalowski + +pkgbase=o
[arch-commits] Commit in opencv/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 04:14:29 Author: schiv Revision: 142028 upgpkg: opencv 2.3.1-2 ffmpeg rebuild Modified: opencv/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 07:45:31 UTC (rev 142027) +++ PKGBUILD2011-11-04 08:14:29 UTC (rev 142028) @@ -6,12 +6,12 @@ pkgname=('opencv' 'opencv-docs' 'opencv-samples') _realname=OpenCV pkgver=2.3.1 -pkgrel=1 +pkgrel=2 pkgdesc="Open Source Computer Vision Library" arch=('i686' 'x86_64') license=('BSD') url="http://opencv.willowgarage.com/"; -depends=('jasper' 'gstreamer0.10-base' 'openexr' +depends=('jasper' 'gstreamer0.10-base' 'openexr' 'ffmpeg>=20111030' 'gtk2' 'xine-lib' 'libdc1394' 'v4l-utils') makedepends=('pkg-config' 'cmake' 'python2-numpy' 'eigen2') optdepends=('python2-numpy: Python 2.x interface'
[arch-commits] Commit in kdeplasma-applets-networkmanagement/repos (8 files)
Date: Friday, November 4, 2011 @ 03:45:31 Author: andrea Revision: 142027 archrelease: copy trunk to extra-i686, extra-x86_64 Added: kdeplasma-applets-networkmanagement/repos/extra-i686/PKGBUILD (from rev 142026, kdeplasma-applets-networkmanagement/trunk/PKGBUILD) kdeplasma-applets-networkmanagement/repos/extra-i686/kdeplasma-applets-networkmanagement.install (from rev 142026, kdeplasma-applets-networkmanagement/trunk/kdeplasma-applets-networkmanagement.install) kdeplasma-applets-networkmanagement/repos/extra-x86_64/PKGBUILD (from rev 142026, kdeplasma-applets-networkmanagement/trunk/PKGBUILD) kdeplasma-applets-networkmanagement/repos/extra-x86_64/kdeplasma-applets-networkmanagement.install (from rev 142026, kdeplasma-applets-networkmanagement/trunk/kdeplasma-applets-networkmanagement.install) Deleted: kdeplasma-applets-networkmanagement/repos/extra-i686/PKGBUILD kdeplasma-applets-networkmanagement/repos/extra-i686/kdeplasma-applets-networkmanagement.install kdeplasma-applets-networkmanagement/repos/extra-x86_64/PKGBUILD kdeplasma-applets-networkmanagement/repos/extra-x86_64/kdeplasma-applets-networkmanagement.install --+ extra-i686/PKGBUILD | 72 ++--- extra-i686/kdeplasma-applets-networkmanagement.install | 22 +-- extra-x86_64/PKGBUILD| 72 ++--- extra-x86_64/kdeplasma-applets-networkmanagement.install | 22 +-- 4 files changed, 94 insertions(+), 94 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2011-11-04 07:44:44 UTC (rev 142026) +++ extra-i686/PKGBUILD 2011-11-04 07:45:31 UTC (rev 142027) @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 105813 2011-01-12 00:25:58Z andrea $ -# Maintainer: Andrea Scarpino -# Contributor: Jakub Schmidtke - -pkgname=kdeplasma-applets-networkmanagement -epoch=1 -pkgver=0.9.0beta2 -_pkgver=0.8.90 -pkgrel=1 -pkgdesc="KDE control panel and widget network connections" -arch=('i686' 'x86_64') -url="http://www.kde.org/"; -license=('GPL') -depends=('kdebase-workspace' 'networkmanager') -makedepends=('cmake' 'python2' 'automoc4' 'mobile-broadband-provider-info' - 'openconnect') -optdepends=('mobile-broadband-provider-info: Database of mobile broadband service providers' -'openconnect: Cisco AnyConnect compatible VPN client') -install=${pkgname}.install -source=("ftp://ftp.kde.org/pub/kde/unstable/networkmanagement/${_pkgver}/src/networkmanagement-${_pkgver}.tar.bz2";) -sha1sums=('9336049eb00f5e4fe7434e710eeb0bdfc22e0984') - -build() { - cd "${srcdir}" - mkdir build - cd build - cmake ../networkmanagement-${_pkgver} \ --DCMAKE_INSTALL_PREFIX=/usr \ --DCMAKE_BUILD_TYPE=Release - make -} - -package() { - cd "${srcdir}"/build - make DESTDIR="${pkgdir}" install -} Copied: kdeplasma-applets-networkmanagement/repos/extra-i686/PKGBUILD (from rev 142026, kdeplasma-applets-networkmanagement/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2011-11-04 07:45:31 UTC (rev 142027) @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 105813 2011-01-12 00:25:58Z andrea $ +# Maintainer: Andrea Scarpino +# Contributor: Jakub Schmidtke + +pkgname=kdeplasma-applets-networkmanagement +epoch=1 +pkgver=0.9.0rc2 +_pkgver=0.8.95 +pkgrel=1 +pkgdesc="KDE control panel and widget network connections" +arch=('i686' 'x86_64') +url="http://www.kde.org/"; +license=('GPL') +depends=('kdebase-workspace' 'networkmanager') +makedepends=('cmake' 'python2' 'automoc4' 'mobile-broadband-provider-info' + 'openconnect') +optdepends=('mobile-broadband-provider-info: Database of mobile broadband service providers' +'openconnect: Cisco AnyConnect compatible VPN client') +install=${pkgname}.install +source=("ftp://ftp.kde.org/pub/kde/unstable/networkmanagement/${_pkgver}/src/networkmanagement-${_pkgver}.tar.bz2";) +sha1sums=('43df2e26acb1b96f3b5e394568a25d04036a085b') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../networkmanagement-${_pkgver} \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Deleted: extra-i686/kdeplasma-applets-networkmanagement.install === --- extra-i686/kdeplasma-applets-networkmanagement.install 2011-11-04 07:44:44 UTC (rev 142026) +++ extra-i686/kdeplasma-applets-networkmanagement.install 2011-11-04 07:45:31 UTC (rev 142027) @@ -1,11 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} Copied: kdeplasma-applets-networkmanagement/repos/ex
[arch-commits] Commit in kdeplasma-applets-networkmanagement/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 03:44:44 Author: andrea Revision: 142026 upgpkg: kdeplasma-applets-networkmanagement 1:0.9.0rc2-1 upstream release Modified: kdeplasma-applets-networkmanagement/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 07:03:15 UTC (rev 142025) +++ PKGBUILD2011-11-04 07:44:44 UTC (rev 142026) @@ -4,8 +4,8 @@ pkgname=kdeplasma-applets-networkmanagement epoch=1 -pkgver=0.9.0beta2 -_pkgver=0.8.90 +pkgver=0.9.0rc2 +_pkgver=0.8.95 pkgrel=1 pkgdesc="KDE control panel and widget network connections" arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ 'openconnect: Cisco AnyConnect compatible VPN client') install=${pkgname}.install source=("ftp://ftp.kde.org/pub/kde/unstable/networkmanagement/${_pkgver}/src/networkmanagement-${_pkgver}.tar.bz2";) -sha1sums=('9336049eb00f5e4fe7434e710eeb0bdfc22e0984') +sha1sums=('43df2e26acb1b96f3b5e394568a25d04036a085b') build() { cd "${srcdir}"
[arch-commits] Commit in dnsutils/repos (6 files)
Date: Friday, November 4, 2011 @ 03:03:15 Author: bisson Revision: 142025 archrelease: copy trunk to testing-i686, testing-x86_64 Added: dnsutils/repos/testing-i686/ dnsutils/repos/testing-i686/PKGBUILD (from rev 142024, dnsutils/trunk/PKGBUILD) dnsutils/repos/testing-i686/remove-bind.patch (from rev 142024, dnsutils/trunk/remove-bind.patch) dnsutils/repos/testing-x86_64/ dnsutils/repos/testing-x86_64/PKGBUILD (from rev 142024, dnsutils/trunk/PKGBUILD) dnsutils/repos/testing-x86_64/remove-bind.patch (from rev 142024, dnsutils/trunk/remove-bind.patch) --+ testing-i686/PKGBUILD| 55 + testing-i686/remove-bind.patch | 25 testing-x86_64/PKGBUILD | 55 + testing-x86_64/remove-bind.patch | 25 4 files changed, 160 insertions(+) Copied: dnsutils/repos/testing-i686/PKGBUILD (from rev 142024, dnsutils/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2011-11-04 07:03:15 UTC (rev 142025) @@ -0,0 +1,55 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: kevin +# Contributor: mario + +pkgname=dnsutils + +# Use a period and not a hyphen before the patch level for proper versioning. +pkgver=9.8.1 +_pkgver=9.8.1 +pkgrel=2 + +pkgdesc='DNS utilities: dig host nslookup' +url='http://www.isc.org/software/bind/' +license=('custom:ISC') +arch=('i686' 'x86_64') +options=('!makeflags') +depends=('openssl' 'krb5' 'idnkit') +source=("http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"; +'remove-bind.patch') +sha1sums=('7e6ed6ebc896b1de33a9f440233066c60539de4c' + 'b465ef6160b004838f04de9978fe1be8422af777') + +replaces=('bind-tools' 'host') + +build() { + cd "${srcdir}/bind-${_pkgver}" + + patch -p1 -i ../remove-bind.patch + export STD_CDEFINES='-DDIG_SIGCHASE' + + # hack to remove unused bloat from the binaries + CFLAGS+=' -fdata-sections -ffunction-sections' + LDFLAGS+=' -Wl,--gc-sections' + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --disable-linux-caps \ + --with-openssl \ + --with-idn \ + + make +} + +package() { + cd "${srcdir}/bind-${_pkgver}" + + install -Dm644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + + cd bin + make DESTDIR="${pkgdir}" install +} Copied: dnsutils/repos/testing-i686/remove-bind.patch (from rev 142024, dnsutils/trunk/remove-bind.patch) === --- testing-i686/remove-bind.patch (rev 0) +++ testing-i686/remove-bind.patch 2011-11-04 07:03:15 UTC (rev 142025) @@ -0,0 +1,25 @@ +diff -aur old/bin/Makefile.in new/bin/Makefile.in +--- old/bin/Makefile.in2009-10-05 05:07:08.0 -0700 new/bin/Makefile.in2011-08-28 19:16:17.245495043 -0700 +@@ -19,8 +19,7 @@ + VPATH = @srcdir@ + top_srcdir = @top_srcdir@ + +-SUBDIRS = named rndc dig dnssec tests tools nsupdate \ +- check confgen @PKCS11_TOOLS@ ++SUBDIRS = dig + TARGETS = + + @BIND9_MAKE_RULES@ +diff -aur old/lib/Makefile.in new/lib/Makefile.in +--- old/lib/Makefile.in2007-06-19 16:47:13.0 -0700 new/lib/Makefile.in2011-08-28 19:17:50.828688599 -0700 +@@ -23,7 +23,7 @@ + # Attempt to disable parallel processing. + .NOTPARALLEL: + .NO_PARALLEL: +-SUBDIRS = isc isccc dns isccfg bind9 lwres tests ++SUBDIRS = isc dns isccfg bind9 lwres + TARGETS = + + @BIND9_MAKE_RULES@ Copied: dnsutils/repos/testing-x86_64/PKGBUILD (from rev 142024, dnsutils/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2011-11-04 07:03:15 UTC (rev 142025) @@ -0,0 +1,55 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: kevin +# Contributor: mario + +pkgname=dnsutils + +# Use a period and not a hyphen before the patch level for proper versioning. +pkgver=9.8.1 +_pkgver=9.8.1 +pkgrel=2 + +pkgdesc='DNS utilities: dig host nslookup' +url='http://www.isc.org/software/bind/' +license=('custom:ISC') +arch=('i686' 'x86_64') +options=('!makeflags') +depends=('openssl' 'krb5' 'idnkit') +source=("http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"; +'remove-bind.patch') +sha1sums=('7e6ed6ebc896b1de33a9f440233066c60539de4c' + 'b465ef6160b004838f04de9978fe1be8422af777') + +replaces=('bind-tools' 'host') + +build() { + cd "${srcdir}/bind-${_pkgver}" + + patch -p1 -i ../remove-bind.patch + export STD_CDEFINES='-DDIG_SIGCH
[arch-commits] Commit in dnsutils/trunk (PKGBUILD)
Date: Friday, November 4, 2011 @ 03:02:54 Author: bisson Revision: 142024 fix FS#26733 Modified: dnsutils/trunk/PKGBUILD --+ PKGBUILD |5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2011-11-04 06:51:06 UTC (rev 142023) +++ PKGBUILD2011-11-04 07:02:54 UTC (rev 142024) @@ -8,14 +8,14 @@ # Use a period and not a hyphen before the patch level for proper versioning. pkgver=9.8.1 _pkgver=9.8.1 -pkgrel=1 +pkgrel=2 pkgdesc='DNS utilities: dig host nslookup' url='http://www.isc.org/software/bind/' license=('custom:ISC') arch=('i686' 'x86_64') -depends=('openssl' 'idnkit') options=('!makeflags') +depends=('openssl' 'krb5' 'idnkit') source=("http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"; 'remove-bind.patch') sha1sums=('7e6ed6ebc896b1de33a9f440233066c60539de4c' @@ -52,5 +52,4 @@ cd bin make DESTDIR="${pkgdir}" install - }