[arch-commits] Commit in dhcpcd/repos (10 files)

2011-11-03 Thread Ronald van Haren
Date: Friday, November 4, 2011 @ 02:51:06
  Author: ronald
Revision: 142023

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  dhcpcd/repos/testing-i686/PKGBUILD
(from rev 142022, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.conf.d
(from rev 142022, dhcpcd/trunk/dhcpcd.conf.d)
  dhcpcd/repos/testing-i686/remove_ifconfig.patch
(from rev 142022, dhcpcd/trunk/remove_ifconfig.patch)
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 142022, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.conf.d
(from rev 142022, dhcpcd/trunk/dhcpcd.conf.d)
  dhcpcd/repos/testing-x86_64/remove_ifconfig.patch
(from rev 142022, dhcpcd/trunk/remove_ifconfig.patch)
Deleted:
  dhcpcd/repos/testing-i686/PKGBUILD
  dhcpcd/repos/testing-i686/dhcpcd.conf.d
  dhcpcd/repos/testing-x86_64/PKGBUILD
  dhcpcd/repos/testing-x86_64/dhcpcd.conf.d

--+
 testing-i686/PKGBUILD|  104 +
 testing-i686/dhcpcd.conf.d   |   12 +--
 testing-i686/remove_ifconfig.patch   |   20 ++
 testing-x86_64/PKGBUILD  |  104 +
 testing-x86_64/dhcpcd.conf.d |   12 +--
 testing-x86_64/remove_ifconfig.patch |   20 ++
 6 files changed, 160 insertions(+), 112 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2011-11-04 06:49:33 UTC (rev 142022)
+++ testing-i686/PKGBUILD   2011-11-04 06:51:06 UTC (rev 142023)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Tom Killian 
-# Contributor: Judd Vinet 
-
-pkgname=dhcpcd
-pkgver=5.2.12
-pkgrel=2
-pkgdesc="RFC2131 compliant DHCP client daemon"
-url="http://roy.marples.name/dhcpcd/";
-arch=('i686' 'x86_64')
-license=('BSD')
-groups=('base')
-depends=('glibc' 'sh' 'inetutils' 'net-tools')
-backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
-options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
-source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \
-'dhcpcd.conf.d')
-sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5'
-  'b67b9ce6a2faaca75fea356966a16be2283b7db0')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # configure variables
-  ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd
-
-  # Build
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # Create Binary Symlink
-  install -d ${pkgdir}/usr/sbin
-  ln -sf /sbin/dhcpcd ${pkgdir}/usr/sbin/dhcpcd
-
-  # Install Configuration File used in /etc/rc.d/network
-  install -D -m644 ../dhcpcd.conf.d $pkgdir/etc/conf.d/$pkgname
-
-  # Install License
-  install -d $pkgdir/usr/share/licenses/$pkgname
-  awk '{if(FNR<27)print $0}' ${srcdir}/${pkgname}-${pkgver}/configure.h \
->> ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # Set Options in /etc/dhcpcd.conf
-  echo noipv4ll >> ${pkgdir}/etc/dhcpcd.conf # Disable ip4vall
-}

Copied: dhcpcd/repos/testing-i686/PKGBUILD (from rev 142022, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-04 06:51:06 UTC (rev 142023)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=5.2.12
+pkgrel=3
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/dhcpcd/";
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh' 'inetutils' 'iproute2')
+backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \
+'dhcpcd.conf.d' 'remove_ifconfig.patch')
+sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5'
+  'b67b9ce6a2faaca75fea356966a16be2283b7db0'
+  'de3e14a24b479b2832c6671ba12586444bd86ebe')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # remove ifconfig call but use ip (iproute2) instead
+  patch -Np0 -i ${srcdir}/remove_ifconfig.patch
+
+  # configure variables
+  ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd
+
+  # Build
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Create Binary Symlink
+  install -d ${pkgdir}/usr/sbin
+  ln -sf /sbin/dhcpcd ${pkgdir}/usr/sbin/dhcpcd
+
+  # Install Configuration File used in /etc/rc.d/network
+  install -D -m644 ../dhcpcd.conf.d $pkgdir/etc/conf.d/$pkgname
+
+  # Install License
+  install -d $pkgdir/usr/share/licenses/$pkgname
+  awk '{if(FNR<27)print $0}' ${srcdir}/${pkgname}-${pkgver}/configure.h \
+>> ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> ${pkgdir}/et

[arch-commits] Commit in dhcpcd/trunk (PKGBUILD remove_ifconfig.patch)

2011-11-03 Thread Ronald van Haren
Date: Friday, November 4, 2011 @ 02:49:33
  Author: ronald
Revision: 142022

change net-tools/iproute2 deps and add patch for it to change config file

Added:
  dhcpcd/trunk/remove_ifconfig.patch
Modified:
  dhcpcd/trunk/PKGBUILD

---+
 PKGBUILD  |   12 
 remove_ifconfig.patch |   20 
 2 files changed, 28 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-04 06:41:37 UTC (rev 142021)
+++ PKGBUILD2011-11-04 06:49:33 UTC (rev 142022)
@@ -5,23 +5,27 @@
 
 pkgname=dhcpcd
 pkgver=5.2.12
-pkgrel=2
+pkgrel=3
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="http://roy.marples.name/dhcpcd/";
 arch=('i686' 'x86_64')
 license=('BSD')
 groups=('base')
-depends=('glibc' 'sh' 'inetutils' 'net-tools')
+depends=('glibc' 'sh' 'inetutils' 'iproute2')
 backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
 options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
 source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \
-'dhcpcd.conf.d')
+'dhcpcd.conf.d' 'remove_ifconfig.patch')
 sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5'
-  'b67b9ce6a2faaca75fea356966a16be2283b7db0')
+  'b67b9ce6a2faaca75fea356966a16be2283b7db0'
+  'de3e14a24b479b2832c6671ba12586444bd86ebe')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
+  # remove ifconfig call but use ip (iproute2) instead
+  patch -Np0 -i ${srcdir}/remove_ifconfig.patch
+
   # configure variables
   ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd
 

Added: remove_ifconfig.patch
===
--- remove_ifconfig.patch   (rev 0)
+++ remove_ifconfig.patch   2011-11-04 06:49:33 UTC (rev 142022)
@@ -0,0 +1,20 @@
+--- dhcpcd-hooks/10-mtu.orig   2011-11-04 07:45:46.477712667 +0100
 dhcpcd-hooks/10-mtu2011-11-04 07:46:38.964379550 +0100
+@@ -7,7 +7,7 @@
+ elif [ -n "$new_interface_mtu" ] && $if_up; then
+   # The smalled MTU dhcpcd can work with is 576
+   if [ "$new_interface_mtu" -ge 576 ]; then
+-  if ifconfig "$interface" mtu "$new_interface_mtu"; then
++  if ip link set "$interface" mtu "$new_interface_mtu"; then
+   syslog info "$interface: MTU set to $new_interface_mtu"
+   # Save the MTU so we can restore it later
+   if [ ! -e "$mtu_dir/$interface" ]; then
+@@ -21,7 +21,7 @@
+   # No MTU in this state, so restore the prior MTU
+   mtu=$(cat "$mtu_dir/$interface")
+   syslog info "$interface: MTU restored to $mtu"
+-  ifconfig "$interface" mtu "$mtu"
++  ip link set "$interface" mtu "$new_interface_mtu"
+   rm "$mtu_dir/$interface"
+   fi
+ fi



[arch-commits] Commit in net-tools/repos (18 files)

2011-11-03 Thread Ronald van Haren
Date: Friday, November 4, 2011 @ 02:41:37
  Author: ronald
Revision: 142021

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  net-tools/repos/testing-i686/
  net-tools/repos/testing-i686/PKGBUILD
(from rev 142020, net-tools/trunk/PKGBUILD)
  net-tools/repos/testing-i686/gcc340.patch
(from rev 142020, net-tools/trunk/gcc340.patch)
  net-tools/repos/testing-i686/net-tools-1.60-2.6-compilefix.patch
(from rev 142020, net-tools/trunk/net-tools-1.60-2.6-compilefix.patch)
  net-tools/repos/testing-i686/net-tools-1.60-miiioctl.patch
(from rev 142020, net-tools/trunk/net-tools-1.60-miiioctl.patch)
  net-tools/repos/testing-i686/net-tools-1.60-nameif.patch
(from rev 142020, net-tools/trunk/net-tools-1.60-nameif.patch)
  net-tools/repos/testing-i686/net-tools-1.60-nameif_strncpy.patch
(from rev 142020, net-tools/trunk/net-tools-1.60-nameif_strncpy.patch)
  net-tools/repos/testing-i686/net-tools.install
(from rev 142020, net-tools/trunk/net-tools.install)
  net-tools/repos/testing-i686/net-tools.patch
(from rev 142020, net-tools/trunk/net-tools.patch)
  net-tools/repos/testing-x86_64/
  net-tools/repos/testing-x86_64/PKGBUILD
(from rev 142020, net-tools/trunk/PKGBUILD)
  net-tools/repos/testing-x86_64/gcc340.patch
(from rev 142020, net-tools/trunk/gcc340.patch)
  net-tools/repos/testing-x86_64/net-tools-1.60-2.6-compilefix.patch
(from rev 142020, net-tools/trunk/net-tools-1.60-2.6-compilefix.patch)
  net-tools/repos/testing-x86_64/net-tools-1.60-miiioctl.patch
(from rev 142020, net-tools/trunk/net-tools-1.60-miiioctl.patch)
  net-tools/repos/testing-x86_64/net-tools-1.60-nameif.patch
(from rev 142020, net-tools/trunk/net-tools-1.60-nameif.patch)
  net-tools/repos/testing-x86_64/net-tools-1.60-nameif_strncpy.patch
(from rev 142020, net-tools/trunk/net-tools-1.60-nameif_strncpy.patch)
  net-tools/repos/testing-x86_64/net-tools.install
(from rev 142020, net-tools/trunk/net-tools.install)
  net-tools/repos/testing-x86_64/net-tools.patch
(from rev 142020, net-tools/trunk/net-tools.patch)

+
 testing-i686/PKGBUILD  |   43 ++
 testing-i686/gcc340.patch  |   46 +++
 testing-i686/net-tools-1.60-2.6-compilefix.patch   |   23 +++
 testing-i686/net-tools-1.60-miiioctl.patch |   17 +
 testing-i686/net-tools-1.60-nameif.patch   |   58 +++
 testing-i686/net-tools-1.60-nameif_strncpy.patch   |   13 
 testing-i686/net-tools.install |   12 +++
 testing-i686/net-tools.patch   |   30 +
 testing-x86_64/PKGBUILD|   43 ++
 testing-x86_64/gcc340.patch|   46 +++
 testing-x86_64/net-tools-1.60-2.6-compilefix.patch |   23 +++
 testing-x86_64/net-tools-1.60-miiioctl.patch   |   17 +
 testing-x86_64/net-tools-1.60-nameif.patch |   58 +++
 testing-x86_64/net-tools-1.60-nameif_strncpy.patch |   13 
 testing-x86_64/net-tools.install   |   12 +++
 testing-x86_64/net-tools.patch |   30 +
 16 files changed, 484 insertions(+)

Copied: net-tools/repos/testing-i686/PKGBUILD (from rev 142020, 
net-tools/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-04 06:41:37 UTC (rev 142021)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: judd 
+
+pkgname=net-tools
+pkgver=1.60.20110819cvs
+pkgrel=3
+pkgdesc="Configuration tools for Linux networking"
+arch=(i686 x86_64)
+license=('GPL2')
+url="http://www.tazenda.demon.co.uk/phil/net-tools";
+depends=('glibc')
+
+# http://www.tazenda.demon.co.uk/phil/$pkgname/$pkgname-$pkgver.tar.bz2
+# use cvs checkout instead
+source=(ftp://ftp.archlinux.org/other/net-tools/net-tools-1.60.20110819cvs.tar.bz2
+  net-tools-1.60-miiioctl.patch
+  net-tools-1.60-nameif_strncpy.patch)
+options=(!makeflags)
+install=net-tools.install
+sha1sums=('02946449191ff279f9f0f7fd7bc65ae21059a2bf'
+  '654a96bc6575efb4a2e04b49de45d448d240eb6e'
+  '7888000d8fe867e58b5b00fe2bcf6c3041d716b4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -Np1 -i ../net-tools-1.60-miiioctl.patch
+  patch -Np1 -i ${srcdir}/net-tools-1.60-nameif_strncpy.patch
+  yes "" | make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make BASEDIR=$pkgdir update
+
+  # the following is provided by yp-tools
+  rm "${pkgdir}"/bin/{nis,yp}domainname
+  rm "${pkgdir}"/usr/share/man/man1/{nis,yp}domainname.1
+
+  # hostname is provided by inetutils
+  rm "${pkgdir}"/bin/{hostname,dnsdomainname,domainname}
+  rm -rf "${pkgdir}"/usr/share/man/man1
+}

Copied: net-tools/repos/testing-i686/gcc340.patch (from rev 142020, 
net-tools/trunk/gcc340.patch)

[arch-commits] Commit in net-tools/trunk (PKGBUILD)

2011-11-03 Thread Ronald van Haren
Date: Friday, November 4, 2011 @ 02:34:55
  Author: ronald
Revision: 142020

uncomment the lines again that were commented in the last testing build

Modified:
  net-tools/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-04 05:58:13 UTC (rev 142019)
+++ PKGBUILD2011-11-04 06:34:55 UTC (rev 142020)
@@ -4,7 +4,7 @@
 
 pkgname=net-tools
 pkgver=1.60.20110819cvs
-pkgrel=2
+pkgrel=3
 pkgdesc="Configuration tools for Linux networking"
 arch=(i686 x86_64)
 license=('GPL2')
@@ -24,8 +24,8 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-#  patch -Np1 -i ../net-tools-1.60-miiioctl.patch
-#  patch -Np1 -i ${srcdir}/net-tools-1.60-nameif_strncpy.patch
+  patch -Np1 -i ../net-tools-1.60-miiioctl.patch
+  patch -Np1 -i ${srcdir}/net-tools-1.60-nameif_strncpy.patch
   yes "" | make
 }
 
@@ -38,6 +38,6 @@
   rm "${pkgdir}"/usr/share/man/man1/{nis,yp}domainname.1
 
   # hostname is provided by inetutils
-#  rm "${pkgdir}"/bin/{hostname,dnsdomainname,domainname}
-#  rm -rf "${pkgdir}"/usr/share/man/man1
+  rm "${pkgdir}"/bin/{hostname,dnsdomainname,domainname}
+  rm -rf "${pkgdir}"/usr/share/man/man1
 }



[arch-commits] Commit in net-tools/repos (testing-x86_64)

2011-11-03 Thread Ionut Biru
Date: Friday, November 4, 2011 @ 01:58:13
  Author: ibiru
Revision: 142019

db-remove: net-tools removed by ibiru

Deleted:
  net-tools/repos/testing-x86_64/



[arch-commits] Commit in net-tools/repos (testing-i686)

2011-11-03 Thread Ionut Biru
Date: Friday, November 4, 2011 @ 01:58:07
  Author: ibiru
Revision: 142018

db-remove: net-tools removed by ibiru

Deleted:
  net-tools/repos/testing-i686/



[arch-commits] Commit in k3b/repos (8 files)

2011-11-03 Thread Eric Bélanger
Date: Friday, November 4, 2011 @ 00:07:38
  Author: eric
Revision: 142017

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  k3b/repos/staging-i686/
  k3b/repos/staging-i686/PKGBUILD
(from rev 142016, k3b/trunk/PKGBUILD)
  k3b/repos/staging-i686/k3b-2.0.2-ffmpeg.patch
(from rev 142016, k3b/trunk/k3b-2.0.2-ffmpeg.patch)
  k3b/repos/staging-i686/k3b.install
(from rev 142016, k3b/trunk/k3b.install)
  k3b/repos/staging-x86_64/
  k3b/repos/staging-x86_64/PKGBUILD
(from rev 142016, k3b/trunk/PKGBUILD)
  k3b/repos/staging-x86_64/k3b-2.0.2-ffmpeg.patch
(from rev 142016, k3b/trunk/k3b-2.0.2-ffmpeg.patch)
  k3b/repos/staging-x86_64/k3b.install
(from rev 142016, k3b/trunk/k3b.install)

---+
 staging-i686/PKGBUILD |   40 +
 staging-i686/k3b-2.0.2-ffmpeg.patch   |   96 
 staging-i686/k3b.install  |   13 
 staging-x86_64/PKGBUILD   |   40 +
 staging-x86_64/k3b-2.0.2-ffmpeg.patch |   96 
 staging-x86_64/k3b.install|   13 
 6 files changed, 298 insertions(+)

Copied: k3b/repos/staging-i686/PKGBUILD (from rev 142016, k3b/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-11-04 04:07:38 UTC (rev 142017)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Contributor: damir 
+
+pkgname=k3b
+pkgver=2.0.2
+pkgrel=3
+pkgdesc="Feature-rich and easy to handle CD burning application"
+arch=('i686' 'x86_64')
+url="http://k3b.org/";
+license=('GPL')
+depends=('kdebase-runtime' 'kdemultimedia-kioslave' 'libsamplerate' 
+ 'ffmpeg' 'taglib' 'libmpcdec' 'libdvdread' 'cdrdao' 'cdrkit' 'libxft')
+makedepends=('cmake' 'automoc4' 'docbook-xml')
+optdepends=('dvd+rw-tools: for dvd burning support'
+'vcdimager: for vcd burning support'
+'transcode: for advanced mpeg conversion support'
+'emovix: for bootable multimedia cd/dvd support')
+options=('!libtool')
+install=k3b.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 \
+k3b-2.0.2-ffmpeg.patch)
+sha1sums=('8b30a4d07942e82559b01bc07dea6bcf2defd532'
+  '8120c0e22e6c41ea285ca6060be13723ed91c52b')
+
+build() {
+  cd "${srcdir}"
+  (cd ${pkgname}-${pkgver}; patch -p1 -i "${srcdir}/k3b-2.0.2-ffmpeg.patch")
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+  make DESTDIR="${pkgdir}" install
+}

Copied: k3b/repos/staging-i686/k3b-2.0.2-ffmpeg.patch (from rev 142016, 
k3b/trunk/k3b-2.0.2-ffmpeg.patch)
===
--- staging-i686/k3b-2.0.2-ffmpeg.patch (rev 0)
+++ staging-i686/k3b-2.0.2-ffmpeg.patch 2011-11-04 04:07:38 UTC (rev 142017)
@@ -0,0 +1,96 @@
+commit 61ca30beb978f68e72257408777c6433f33129bd
+Author: Michal Malek 
+Date:   Sun Aug 28 20:18:53 2011 +0200
+
+Fixed compilation with new FFMPEG
+
+BUG: 274817
+FIXED-IN: 2.0.3
+
+diff --git a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp 
b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
+index 0ad59fc..0c5f366 100644
+--- a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
 b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
+@@ -109,7 +109,13 @@ bool K3bFFMpegFile::open()
+ #else
+ ::AVCodecContext* codecContext =  d->formatContext->streams[0]->codec;
+ #endif
+-if( codecContext->codec_type != CODEC_TYPE_AUDIO ) {
++if( codecContext->codec_type != 
++#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 64, 0)
++AVMEDIA_TYPE_AUDIO)
++#else
++CODEC_TYPE_AUDIO)
++#endif
++{
+ kDebug() << "(K3bFFMpegFile) not a simple audio stream: " << 
m_filename;
+ return false;
+ }
+@@ -225,8 +231,11 @@ QString K3bFFMpegFile::typeComment() const
+ QString K3bFFMpegFile::title() const
+ {
+ // FIXME: is this UTF8 or something??
+-if( d->formatContext->title[0] != '\0' )
+-return QString::fromLocal8Bit( d->formatContext->title );
++AVDictionaryEntry *ade = av_dict_get( d->formatContext->metadata, 
"TITLE", NULL, 0 );
++if( ade == NULL )
++return QString();
++if( ade->value != '\0' )
++return QString::fromLocal8Bit( ade->value );
+ else
+ return QString();
+ }
+@@ -235,8 +244,11 @@ QString K3bFFMpegFile::title() const
+ QString K3bFFMpegFile::author() const
+ {
+ // FIXME: is this UTF8 or something??
+-if( d->formatContext->author[0] != '\0' )
+-return QString::fromLocal8Bit( d->formatContext->author );
++AVDictionaryEntry *ade = av_dict_get( d->formatContext->metadata, 
"ARTIST", NULL, 0 );
++if( ade == NULL )
++return QString();
++if( ade->value != '\0' )
++

[arch-commits] Commit in k3b/trunk (PKGBUILD k3b-2.0.2-ffmpeg.patch)

2011-11-03 Thread Eric Bélanger
Date: Friday, November 4, 2011 @ 00:06:03
  Author: eric
Revision: 142016

Rebuild against ffmpeg 20111030, Clean up depends and makedepends

Added:
  k3b/trunk/k3b-2.0.2-ffmpeg.patch
Modified:
  k3b/trunk/PKGBUILD

+
 PKGBUILD   |   33 
 k3b-2.0.2-ffmpeg.patch |   96 +++
 2 files changed, 113 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-04 03:17:01 UTC (rev 142015)
+++ PKGBUILD2011-11-04 04:06:03 UTC (rev 142016)
@@ -1,29 +1,31 @@
 # $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: jlvsimoes
+# Maintainer: Eric Bélanger 
 # Contributor: damir 
 
 pkgname=k3b
 pkgver=2.0.2
-pkgrel=2
-depends=('kdebase-runtime' 'kdemultimedia-kioslave' 'libsamplerate' 'libmad'
- 'ffmpeg' 'taglib' 'libmpcdec' 'libdvdread' 'cdrdao' 'cdrkit'
- 'shared-mime-info' 'libxft' 'desktop-file-utils')
-makedepends=('cmake' 'pkgconfig' 'automoc4' 'docbook-xml')
+pkgrel=3
 pkgdesc="Feature-rich and easy to handle CD burning application"
+arch=('i686' 'x86_64')
 url="http://k3b.org/";
-arch=("i686" "x86_64")
 license=('GPL')
-install="${pkgname}.install"
+depends=('kdebase-runtime' 'kdemultimedia-kioslave' 'libsamplerate' 
+ 'ffmpeg' 'taglib' 'libmpcdec' 'libdvdread' 'cdrdao' 'cdrkit' 'libxft')
+makedepends=('cmake' 'automoc4' 'docbook-xml')
 optdepends=('dvd+rw-tools: for dvd burning support'
-'vcdimager:for vcd burning support'
-'transcode:for advanced mpeg conversion support'
-'emovix:   for bootable multimedia cd/dvd support')
+'vcdimager: for vcd burning support'
+'transcode: for advanced mpeg conversion support'
+'emovix: for bootable multimedia cd/dvd support')
 options=('!libtool')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+install=k3b.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 \
+k3b-2.0.2-ffmpeg.patch)
+sha1sums=('8b30a4d07942e82559b01bc07dea6bcf2defd532'
+  '8120c0e22e6c41ea285ca6060be13723ed91c52b')
 
 build() {
   cd "${srcdir}"
+  (cd ${pkgname}-${pkgver}; patch -p1 -i "${srcdir}/k3b-2.0.2-ffmpeg.patch")
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
@@ -33,7 +35,6 @@
 }
 
 package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
+  cd "${srcdir}/build"
+  make DESTDIR="${pkgdir}" install
 }
-md5sums=('c86113af31a2032e57fd2f302b5f637a')

Added: k3b-2.0.2-ffmpeg.patch
===
--- k3b-2.0.2-ffmpeg.patch  (rev 0)
+++ k3b-2.0.2-ffmpeg.patch  2011-11-04 04:06:03 UTC (rev 142016)
@@ -0,0 +1,96 @@
+commit 61ca30beb978f68e72257408777c6433f33129bd
+Author: Michal Malek 
+Date:   Sun Aug 28 20:18:53 2011 +0200
+
+Fixed compilation with new FFMPEG
+
+BUG: 274817
+FIXED-IN: 2.0.3
+
+diff --git a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp 
b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
+index 0ad59fc..0c5f366 100644
+--- a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
 b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
+@@ -109,7 +109,13 @@ bool K3bFFMpegFile::open()
+ #else
+ ::AVCodecContext* codecContext =  d->formatContext->streams[0]->codec;
+ #endif
+-if( codecContext->codec_type != CODEC_TYPE_AUDIO ) {
++if( codecContext->codec_type != 
++#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 64, 0)
++AVMEDIA_TYPE_AUDIO)
++#else
++CODEC_TYPE_AUDIO)
++#endif
++{
+ kDebug() << "(K3bFFMpegFile) not a simple audio stream: " << 
m_filename;
+ return false;
+ }
+@@ -225,8 +231,11 @@ QString K3bFFMpegFile::typeComment() const
+ QString K3bFFMpegFile::title() const
+ {
+ // FIXME: is this UTF8 or something??
+-if( d->formatContext->title[0] != '\0' )
+-return QString::fromLocal8Bit( d->formatContext->title );
++AVDictionaryEntry *ade = av_dict_get( d->formatContext->metadata, 
"TITLE", NULL, 0 );
++if( ade == NULL )
++return QString();
++if( ade->value != '\0' )
++return QString::fromLocal8Bit( ade->value );
+ else
+ return QString();
+ }
+@@ -235,8 +244,11 @@ QString K3bFFMpegFile::title() const
+ QString K3bFFMpegFile::author() const
+ {
+ // FIXME: is this UTF8 or something??
+-if( d->formatContext->author[0] != '\0' )
+-return QString::fromLocal8Bit( d->formatContext->author );
++AVDictionaryEntry *ade = av_dict_get( d->formatContext->metadata, 
"ARTIST", NULL, 0 );
++if( ade == NULL )
++return QString();
++if( ade->value != '\0' )
++return QString::fromLocal8Bit( ade->value );
+ else
+ return QString();
+ }
+@@ -245,8 +257,11 @@ QString K3bFFMpegFile::author() const
+ QString K3bFFMpegFile::comment() const
+ {
+ // FIXME: is this 

[arch-commits] Commit in thunar/repos (10 files)

2011-11-03 Thread Evangelos Foutras
Date: Thursday, November 3, 2011 @ 23:17:01
  Author: foutrelis
Revision: 142015

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  thunar/repos/extra-i686/PKGBUILD
(from rev 142014, thunar/trunk/PKGBUILD)
  thunar/repos/extra-i686/thunar.install
(from rev 142014, thunar/trunk/thunar.install)
  thunar/repos/extra-x86_64/PKGBUILD
(from rev 142014, thunar/trunk/PKGBUILD)
  thunar/repos/extra-x86_64/thunar.install
(from rev 142014, thunar/trunk/thunar.install)
Deleted:
  thunar/repos/extra-i686/PKGBUILD
  thunar/repos/extra-i686/org.freedesktop.udisks.pkla
  thunar/repos/extra-i686/thunar.install
  thunar/repos/extra-x86_64/PKGBUILD
  thunar/repos/extra-x86_64/org.freedesktop.udisks.pkla
  thunar/repos/extra-x86_64/thunar.install

--+
 extra-i686/PKGBUILD  |  114 +
 extra-i686/org.freedesktop.udisks.pkla   |7 -
 extra-i686/thunar.install|   28 +++
 extra-x86_64/PKGBUILD|  114 +
 extra-x86_64/org.freedesktop.udisks.pkla |7 -
 extra-x86_64/thunar.install  |   28 +++
 6 files changed, 138 insertions(+), 160 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-11-04 03:16:43 UTC (rev 142014)
+++ extra-i686/PKGBUILD 2011-11-04 03:17:01 UTC (rev 142015)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: andyrtr 
-# Contributor: Andrew Simmons 
-
-pkgname=thunar
-pkgver=1.2.3
-pkgrel=1
-pkgdesc="modern file manager for Xfce"
-arch=('i686' 'x86_64')
-license=('GPL2' 'LGPL2.1')
-url="http://thunar.xfce.org";
-groups=('xfce4')
-depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 
'libnotify>=0.7.1' 'udev'
- 'gtk2' 'exo>=0.6.0' 'libxfce4util>=4.8.1' 'libxfce4ui' 'libpng')
-makedepends=('intltool' 'gtk-doc' 'xfce4-panel>=4.8.0')
-optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
-'xfce4-panel: for trash applet'
-'tumbler: for thumbnail previews'
-'thunar-volman: manages removable devices'
-'thunar-archive-plugin: create and deflate archives'
-'thunar-media-tags-plugin: view/edit id3/ogg tags')
-options=('!libtool')
-install=${pkgname}.install
-backup=('etc/polkit-1/localauthority/50-local.d/org.freedesktop.udisks.pkla')
-source=(http://archive.xfce.org/src/xfce/${pkgname}/1.2/Thunar-${pkgver}.tar.bz2
-   org.freedesktop.udisks.pkla)
-
-build() {
-  cd ${srcdir}/Thunar-${pkgver}
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib \
-   --localstatedir=/var \
-   --disable-static \
-   --enable-gio-unix \
-   --enable-dbus \
-   --enable-startup-notification \
-   --enable-gudev \
-   --enable-notifications \
-   --enable-exif \
-   --enable-pcre \
-   --enable-gtk-doc \
-   --disable-debug
-  make
-}
-
-package() {
-  cd ${srcdir}/Thunar-${pkgver}
-  make DESTDIR=${pkgdir} install
-  sed -i 's:x-directory/gnome-default-handler;::' \
-${pkgdir}/usr/share/applications/Thunar-folder-handler.desktop
-
-  # install udisks permission file
-  install -dm700 ${pkgdir}/etc/polkit-1/localauthority
-  install -dm755 ${pkgdir}/etc/polkit-1/localauthority/50-local.d
-  install -m644 ${srcdir}/org.freedesktop.udisks.pkla 
${pkgdir}/etc/polkit-1/localauthority/50-local.d/
-}
-md5sums=('0a2c36cdd3cb3a2ab52cbf6055415b85'
- 'a7ddb5eec02d9a8e91a2997862e73cd8')

Copied: thunar/repos/extra-i686/PKGBUILD (from rev 142014, 
thunar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-11-04 03:17:01 UTC (rev 142015)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Andrew Simmons 
+
+pkgname=thunar
+pkgver=1.2.3
+pkgrel=2
+pkgdesc="Modern file manager for Xfce"
+arch=('i686' 'x86_64')
+url="http://thunar.xfce.org";
+license=('GPL2' 'LGPL2.1')
+groups=('xfce4')
+depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify' 'udev'
+ 'gtk2' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
+makedepends=('intltool' 'gtk-doc' 'xfce4-panel')
+optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
+'xfce4-panel: for trash applet'
+'tumbler: for thumbnail previews'
+'thunar-volman: manages removable devices'
+'thunar-archive-plugin: create and deflate archives'
+'thunar-media-tags-plugin: view/edit id3/ogg tags')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/${pkgname}/1.2/Thunar-${pkgver}.tar.bz2)
+sha256sums=('e66aa9ad61a9202e15cc7c5fffc7b961da9ab3b4428f874c1ec8e46eb4ffaca6')
+
+build() {
+  cd "$srcdir/Thunar-$pkgver"
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--lib

[arch-commits] Commit in thunar/trunk (3 files)

2011-11-03 Thread Evangelos Foutras
Date: Thursday, November 3, 2011 @ 23:16:43
  Author: foutrelis
Revision: 142014

upgpkg: thunar 1.2.3-2

Remove org.freedesktop.udisks.pkla; mounting/unmounting of removable media 
should continue to function through gvfs.

Modified:
  thunar/trunk/PKGBUILD
  thunar/trunk/thunar.install
Deleted:
  thunar/trunk/org.freedesktop.udisks.pkla

-+
 PKGBUILD|   64 +++---
 org.freedesktop.udisks.pkla |7 
 thunar.install  |6 +--
 3 files changed, 33 insertions(+), 44 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-04 02:41:56 UTC (rev 142013)
+++ PKGBUILD2011-11-04 03:16:43 UTC (rev 142014)
@@ -1,18 +1,18 @@
 # $Id$
-# Maintainer: andyrtr 
+# Maintainer: Evangelos Foutras 
 # Contributor: Andrew Simmons 
 
 pkgname=thunar
 pkgver=1.2.3
-pkgrel=1
-pkgdesc="modern file manager for Xfce"
+pkgrel=2
+pkgdesc="Modern file manager for Xfce"
 arch=('i686' 'x86_64')
-license=('GPL2' 'LGPL2.1')
 url="http://thunar.xfce.org";
+license=('GPL2' 'LGPL2.1')
 groups=('xfce4')
-depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 
'libnotify>=0.7.1' 'udev'
- 'gtk2' 'exo>=0.6.0' 'libxfce4util>=4.8.1' 'libxfce4ui' 'libpng')
-makedepends=('intltool' 'gtk-doc' 'xfce4-panel>=4.8.0')
+depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify' 'udev'
+ 'gtk2' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
+makedepends=('intltool' 'gtk-doc' 'xfce4-panel')
 optdepends=('gvfs: for trash support, mounting with udisk and remote 
filesystems'
 'xfce4-panel: for trash applet'
 'tumbler: for thumbnail previews'
@@ -20,40 +20,36 @@
 'thunar-archive-plugin: create and deflate archives'
 'thunar-media-tags-plugin: view/edit id3/ogg tags')
 options=('!libtool')
-install=${pkgname}.install
-backup=('etc/polkit-1/localauthority/50-local.d/org.freedesktop.udisks.pkla')
-source=(http://archive.xfce.org/src/xfce/${pkgname}/1.2/Thunar-${pkgver}.tar.bz2
-   org.freedesktop.udisks.pkla)
+install=$pkgname.install
+source=(http://archive.xfce.org/src/xfce/${pkgname}/1.2/Thunar-${pkgver}.tar.bz2)
+sha256sums=('e66aa9ad61a9202e15cc7c5fffc7b961da9ab3b4428f874c1ec8e46eb4ffaca6')
 
 build() {
-  cd ${srcdir}/Thunar-${pkgver}
+  cd "$srcdir/Thunar-$pkgver"
+
   ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib \
-   --localstatedir=/var \
-   --disable-static \
-   --enable-gio-unix \
-   --enable-dbus \
-   --enable-startup-notification \
-   --enable-gudev \
-   --enable-notifications \
-   --enable-exif \
-   --enable-pcre \
-   --enable-gtk-doc \
-   --disable-debug
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--enable-gio-unix \
+--enable-dbus \
+--enable-startup-notification \
+--enable-gudev \
+--enable-notifications \
+--enable-exif \
+--enable-pcre \
+--enable-gtk-doc \
+--disable-debug
   make
 }
 
 package() {
-  cd ${srcdir}/Thunar-${pkgver}
+  cd "$srcdir/Thunar-$pkgver"
+
   make DESTDIR=${pkgdir} install
   sed -i 's:x-directory/gnome-default-handler;::' \
-${pkgdir}/usr/share/applications/Thunar-folder-handler.desktop
-
-  # install udisks permission file
-  install -dm700 ${pkgdir}/etc/polkit-1/localauthority
-  install -dm755 ${pkgdir}/etc/polkit-1/localauthority/50-local.d
-  install -m644 ${srcdir}/org.freedesktop.udisks.pkla 
${pkgdir}/etc/polkit-1/localauthority/50-local.d/
+"$pkgdir/usr/share/applications/Thunar-folder-handler.desktop"
 }
-md5sums=('0a2c36cdd3cb3a2ab52cbf6055415b85'
- 'a7ddb5eec02d9a8e91a2997862e73cd8')
+
+# vim:set ts=2 sw=2 et:

Deleted: org.freedesktop.udisks.pkla
===
--- org.freedesktop.udisks.pkla 2011-11-04 02:41:56 UTC (rev 142013)
+++ org.freedesktop.udisks.pkla 2011-11-04 03:16:43 UTC (rev 142014)
@@ -1,7 +0,0 @@
-[Local Users]
-#Identity=unix-user: your_username
-Identity=unix-group:storage
-Action=org.freedesktop.udisks.*
-ResultAny=yes
-ResultInactive=no
-ResultActive=yes

Modified: thunar.install
===
--- thunar.install  2011-11-04 02:41:56 UTC (rev 142013)
+++ thunar.install  2011-11-04 03:16:43 UTC (rev 142014)
@@ -4,11 +4,11 @@
 }
 
 post_upgrade() {
-  post_install $1
+  post_install
 }
 
 post_remove() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  post_install
 }
 
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in xfce4-dev-tools/repos (extra-any)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 22:41:56
  Author: eric
Revision: 142013

removed extra-any for xfce4-dev-tools

Deleted:
  xfce4-dev-tools/repos/extra-any/



[arch-commits] Commit in xfce4-dev-tools/repos (4 files)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 22:41:52
  Author: eric
Revision: 142012

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xfce4-dev-tools/repos/extra-i686/
  xfce4-dev-tools/repos/extra-i686/PKGBUILD
(from rev 142011, xfce4-dev-tools/trunk/PKGBUILD)
  xfce4-dev-tools/repos/extra-x86_64/
  xfce4-dev-tools/repos/extra-x86_64/PKGBUILD
(from rev 142011, xfce4-dev-tools/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   29 +
 extra-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: xfce4-dev-tools/repos/extra-i686/PKGBUILD (from rev 142011, 
xfce4-dev-tools/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-11-04 02:41:52 UTC (rev 142012)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tobias Kieslich 
+
+pkgname=xfce4-dev-tools
+pkgver=4.9.0
+pkgrel=1
+pkgdesc="Xfce developer tools"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.xfce.org/";
+depends=('gtk-doc' 'automake' 'automake' 'make' 'intltool' 'pkg-config')
+options=('!libtool')
+source=(http://archive.xfce.org/src/xfce/xfce4-dev-tools/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('325047a072f5599ec7fda9f970c47091')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: xfce4-dev-tools/repos/extra-x86_64/PKGBUILD (from rev 142011, 
xfce4-dev-tools/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-11-04 02:41:52 UTC (rev 142012)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tobias Kieslich 
+
+pkgname=xfce4-dev-tools
+pkgver=4.9.0
+pkgrel=1
+pkgdesc="Xfce developer tools"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.xfce.org/";
+depends=('gtk-doc' 'automake' 'automake' 'make' 'intltool' 'pkg-config')
+options=('!libtool')
+source=(http://archive.xfce.org/src/xfce/xfce4-dev-tools/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('325047a072f5599ec7fda9f970c47091')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in xfce4-dev-tools/trunk (PKGBUILD)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 22:41:37
  Author: eric
Revision: 142011

Upstream update, Switch arch from any to i686/x86_64

Modified:
  xfce4-dev-tools/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 23:27:16 UTC (rev 142010)
+++ PKGBUILD2011-11-04 02:41:37 UTC (rev 142011)
@@ -3,19 +3,19 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=xfce4-dev-tools
-pkgver=4.8.0
-pkgrel=2
+pkgver=4.9.0
+pkgrel=1
 pkgdesc="Xfce developer tools"
-arch=('any')
+arch=('i686' 'x86_64')
 license=('GPL2')
 url="http://www.xfce.org/";
-depends=('gtk-doc' 'automake' 'automake' 'make' 'intltool' 'pkgconfig')
+depends=('gtk-doc' 'automake' 'automake' 'make' 'intltool' 'pkg-config')
 options=('!libtool')
-source=(http://archive.xfce.org/src/xfce/xfce4-dev-tools/4.8/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('9591299c49d92d00ba47974c42a735fa')
+source=(http://archive.xfce.org/src/xfce/xfce4-dev-tools/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('325047a072f5599ec7fda9f970c47091')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd "${srcdir}/${pkgname}-${pkgver}"
   ./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib \
@@ -24,6 +24,6 @@
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
 }



[arch-commits] Commit in grantlee/repos (4 files)

2011-11-03 Thread Andrea Scarpino
Date: Thursday, November 3, 2011 @ 19:27:16
  Author: andrea
Revision: 142010

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  grantlee/repos/extra-i686/PKGBUILD
(from rev 142009, grantlee/trunk/PKGBUILD)
  grantlee/repos/extra-x86_64/PKGBUILD
(from rev 142009, grantlee/trunk/PKGBUILD)
Deleted:
  grantlee/repos/extra-i686/PKGBUILD
  grantlee/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   59 
 extra-x86_64/PKGBUILD |   59 
 2 files changed, 60 insertions(+), 58 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-11-03 23:26:48 UTC (rev 142009)
+++ extra-i686/PKGBUILD 2011-11-03 23:27:16 UTC (rev 142010)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=grantlee
-pkgver=0.1.9
-pkgrel=1
-pkgdesc="A string template engine based on the Django template system and 
written in Qt"
-arch=('i686' 'x86_64')
-url="http://www.gitorious.org/grantlee/pages/Home";
-license=('LGPL3')
-depends=('qt')
-makedepends=('cmake')
-source=("http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('3d93b5312814ebee373fba5509d88bdb')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-} 

Copied: grantlee/repos/extra-i686/PKGBUILD (from rev 142009, 
grantlee/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-11-03 23:27:16 UTC (rev 142010)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+
+pkgname=grantlee
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="A string template engine based on the Django template system and 
written in Qt"
+arch=('i686' 'x86_64')
+url="http://www.gitorious.org/grantlee/pages/Home";
+license=('LGPL3')
+depends=('qt')
+makedepends=('cmake')
+source=("http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('0622ed30630a44b5fac0bfa7e176d3fe')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+} 

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-11-03 23:26:48 UTC (rev 142009)
+++ extra-x86_64/PKGBUILD   2011-11-03 23:27:16 UTC (rev 142010)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=grantlee
-pkgver=0.1.9
-pkgrel=1
-pkgdesc="A string template engine based on the Django template system and 
written in Qt"
-arch=('i686' 'x86_64')
-url="http://www.gitorious.org/grantlee/pages/Home";
-license=('LGPL3')
-depends=('qt')
-makedepends=('cmake')
-source=("http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('3d93b5312814ebee373fba5509d88bdb')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-} 

Copied: grantlee/repos/extra-x86_64/PKGBUILD (from rev 142009, 
grantlee/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-11-03 23:27:16 UTC (rev 142010)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+
+pkgname=grantlee
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="A string template engine based on the Django template system and 
written in Qt"
+arch=('i686' 'x86_64')
+url="http://www.gitorious.org/grantlee/pages/Home";
+license=('LGPL3')
+depends=('qt')
+makedepends=('cmake')
+source=("http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('0622ed30630a44b5fac0bfa7e176d3fe')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+} 



[arch-commits] Commit in grantlee/trunk (PKGBUILD)

2011-11-03 Thread Andrea Scarpino
Date: Thursday, November 3, 2011 @ 19:26:48
  Author: andrea
Revision: 142009

upgpkg: grantlee 0.2.0-1

upstream release

Modified:
  grantlee/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 22:50:48 UTC (rev 142008)
+++ PKGBUILD2011-11-03 23:26:48 UTC (rev 142009)
@@ -1,8 +1,9 @@
 # $Id$
-# Maintainer: Andrea Scarpino 
+# Maintainer:
+# Contributor: Andrea Scarpino 
 
 pkgname=grantlee
-pkgver=0.1.9
+pkgver=0.2.0
 pkgrel=1
 pkgdesc="A string template engine based on the Django template system and 
written in Qt"
 arch=('i686' 'x86_64')
@@ -11,7 +12,7 @@
 depends=('qt')
 makedepends=('cmake')
 source=("http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('3d93b5312814ebee373fba5509d88bdb')
+md5sums=('0622ed30630a44b5fac0bfa7e176d3fe')
 
 build() {
   cd "${srcdir}"



[arch-commits] Commit in libusb-compat/repos (4 files)

2011-11-03 Thread Andrea Scarpino
Date: Thursday, November 3, 2011 @ 18:50:48
  Author: andrea
Revision: 142008

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libusb-compat/repos/testing-i686/
  libusb-compat/repos/testing-i686/PKGBUILD
(from rev 142007, libusb-compat/trunk/PKGBUILD)
  libusb-compat/repos/testing-x86_64/
  libusb-compat/repos/testing-x86_64/PKGBUILD
(from rev 142007, libusb-compat/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   27 +++
 testing-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: libusb-compat/repos/testing-i686/PKGBUILD (from rev 142007, 
libusb-compat/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 22:50:48 UTC (rev 142008)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer:
+# Contributor: Tobias Powalowski 
+# Contributor: arjan 
+
+pkgname=libusb-compat
+pkgver=0.1.3
+pkgrel=2
+pkgdesc="Library to enable user space application programs to communicate with 
USB devices"
+arch=('i686' 'x86_64')
+depends=('libusb' 'sh')
+url="http://libusb.sourceforge.net/";
+license=('LGPL')
+source=("http://downloads.sourceforge.net/${pkgname%-*}/${pkgname}-${pkgver%.*}/$pkgname-$pkgver/${pkgname}-${pkgver}.tar.bz2";)
+options=('!libtool')
+md5sums=('570ac2ea085b80d1f74ddc7c6a93c0eb')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr 
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR=${pkgdir} install
+}

Copied: libusb-compat/repos/testing-x86_64/PKGBUILD (from rev 142007, 
libusb-compat/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 22:50:48 UTC (rev 142008)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer:
+# Contributor: Tobias Powalowski 
+# Contributor: arjan 
+
+pkgname=libusb-compat
+pkgver=0.1.3
+pkgrel=2
+pkgdesc="Library to enable user space application programs to communicate with 
USB devices"
+arch=('i686' 'x86_64')
+depends=('libusb' 'sh')
+url="http://libusb.sourceforge.net/";
+license=('LGPL')
+source=("http://downloads.sourceforge.net/${pkgname%-*}/${pkgname}-${pkgver%.*}/$pkgname-$pkgver/${pkgname}-${pkgver}.tar.bz2";)
+options=('!libtool')
+md5sums=('570ac2ea085b80d1f74ddc7c6a93c0eb')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr 
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in libusb-compat/trunk (PKGBUILD)

2011-11-03 Thread Andrea Scarpino
Date: Thursday, November 3, 2011 @ 18:50:18
  Author: andrea
Revision: 142007

upgpkg: libusb-compat 0.1.3-2

Signing package

Modified:
  libusb-compat/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 21:26:34 UTC (rev 142006)
+++ PKGBUILD2011-11-03 22:50:18 UTC (rev 142007)
@@ -1,26 +1,27 @@
 # $Id$
-# Maintainer: Tobias Powalowski 
+# Maintainer:
+# Contributor: Tobias Powalowski 
 # Contributor: arjan 
 
 pkgname=libusb-compat
 pkgver=0.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Library to enable user space application programs to communicate with 
USB devices"
 arch=('i686' 'x86_64')
 depends=('libusb' 'sh')
 url="http://libusb.sourceforge.net/";
 license=('LGPL')
-source=(http://downloads.sourceforge.net/libusb/libusb-compat-0.1/$pkgname-$pkgver/${pkgname}-${pkgver}.tar.bz2)
+source=("http://downloads.sourceforge.net/${pkgname%-*}/${pkgname}-${pkgver%.*}/$pkgname-$pkgver/${pkgname}-${pkgver}.tar.bz2";)
 options=('!libtool')
 md5sums=('570ac2ea085b80d1f74ddc7c6a93c0eb')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd "${srcdir}/${pkgname}-${pkgver}"
   ./configure --prefix=/usr 
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd "${srcdir}/${pkgname}-${pkgver}"
   make DESTDIR=${pkgdir} install
 }



[arch-commits] Commit in dhcpcd/repos (8 files)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:26:34
  Author: ronald
Revision: 142006

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  dhcpcd/repos/testing-i686/PKGBUILD
(from rev 142005, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.conf.d
(from rev 142005, dhcpcd/trunk/dhcpcd.conf.d)
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 142005, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.conf.d
(from rev 142005, dhcpcd/trunk/dhcpcd.conf.d)
Deleted:
  dhcpcd/repos/testing-i686/PKGBUILD
  dhcpcd/repos/testing-i686/dhcpcd.conf.d
  dhcpcd/repos/testing-x86_64/PKGBUILD
  dhcpcd/repos/testing-x86_64/dhcpcd.conf.d

--+
 testing-i686/PKGBUILD|  100 -
 testing-i686/dhcpcd.conf.d   |   12 ++--
 testing-x86_64/PKGBUILD  |  100 -
 testing-x86_64/dhcpcd.conf.d |   12 ++--
 4 files changed, 112 insertions(+), 112 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2011-11-03 21:25:59 UTC (rev 142005)
+++ testing-i686/PKGBUILD   2011-11-03 21:26:34 UTC (rev 142006)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Tom Killian 
-# Contributor: Judd Vinet 
-
-pkgname=dhcpcd
-pkgver=5.2.12
-pkgrel=2
-pkgdesc="RFC2131 compliant DHCP client daemon"
-url="http://roy.marples.name/dhcpcd/";
-arch=('i686' 'x86_64')
-license=('BSD')
-groups=('base')
-depends=('glibc' 'sh' 'inetutils')
-backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
-options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
-source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \
-'dhcpcd.conf.d')
-sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5'
-  'b67b9ce6a2faaca75fea356966a16be2283b7db0')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # configure variables
-  ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd
-
-  # Build
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # Create Binary Symlink
-  install -d ${pkgdir}/usr/sbin
-  ln -sf /sbin/dhcpcd ${pkgdir}/usr/sbin/dhcpcd
-
-  # Install Configuration File used in /etc/rc.d/network
-  install -D -m644 ../dhcpcd.conf.d $pkgdir/etc/conf.d/$pkgname
-
-  # Install License
-  install -d $pkgdir/usr/share/licenses/$pkgname
-  awk '{if(FNR<27)print $0}' ${srcdir}/${pkgname}-${pkgver}/configure.h \
->> ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # Set Options in /etc/dhcpcd.conf
-  echo noipv4ll >> ${pkgdir}/etc/dhcpcd.conf # Disable ip4vall
-}

Copied: dhcpcd/repos/testing-i686/PKGBUILD (from rev 142005, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 21:26:34 UTC (rev 142006)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=5.2.12
+pkgrel=2
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/dhcpcd/";
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh' 'inetutils' 'net-tools')
+backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \
+'dhcpcd.conf.d')
+sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5'
+  'b67b9ce6a2faaca75fea356966a16be2283b7db0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd
+
+  # Build
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Create Binary Symlink
+  install -d ${pkgdir}/usr/sbin
+  ln -sf /sbin/dhcpcd ${pkgdir}/usr/sbin/dhcpcd
+
+  # Install Configuration File used in /etc/rc.d/network
+  install -D -m644 ../dhcpcd.conf.d $pkgdir/etc/conf.d/$pkgname
+
+  # Install License
+  install -d $pkgdir/usr/share/licenses/$pkgname
+  awk '{if(FNR<27)print $0}' ${srcdir}/${pkgname}-${pkgver}/configure.h \
+>> ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> ${pkgdir}/etc/dhcpcd.conf # Disable ip4vall
+}

Deleted: testing-i686/dhcpcd.conf.d
===
--- testing-i686/dhcpcd.conf.d  2011-11-03 21:25:59 UTC (rev 142005)
+++ testing-i686/dhcpcd.conf.d  2011-11-03 21:26:34 UTC (rev 142006)
@@ -1,6 +0,0 @@
-#
-# Arguments to be passed to the DHCP client daemon
-#
-
-DHCPCD_ARGS="-q"
-

Copied: dhcpcd/repos/testing-i686/dhcpcd.conf.d (from rev 142005, 
dhcpcd/trunk/dhcpcd.conf.d)
===

[arch-commits] Commit in dhcpcd/trunk (PKGBUILD)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:25:59
  Author: ronald
Revision: 142005

add also net-tools for ifconfig to depends

Modified:
  dhcpcd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 21:22:25 UTC (rev 142004)
+++ PKGBUILD2011-11-03 21:25:59 UTC (rev 142005)
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 license=('BSD')
 groups=('base')
-depends=('glibc' 'sh' 'inetutils')
+depends=('glibc' 'sh' 'inetutils' 'net-tools')
 backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
 options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
 source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \



[arch-commits] Commit in dhcpcd/repos (8 files)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:22:25
  Author: ronald
Revision: 142004

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  dhcpcd/repos/testing-i686/PKGBUILD
(from rev 142003, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.conf.d
(from rev 142003, dhcpcd/trunk/dhcpcd.conf.d)
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 142003, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.conf.d
(from rev 142003, dhcpcd/trunk/dhcpcd.conf.d)
Deleted:
  dhcpcd/repos/testing-i686/PKGBUILD
  dhcpcd/repos/testing-i686/dhcpcd.conf.d
  dhcpcd/repos/testing-x86_64/PKGBUILD
  dhcpcd/repos/testing-x86_64/dhcpcd.conf.d

--+
 testing-i686/PKGBUILD|  100 -
 testing-i686/dhcpcd.conf.d   |   12 ++--
 testing-x86_64/PKGBUILD  |  100 -
 testing-x86_64/dhcpcd.conf.d |   12 ++--
 4 files changed, 112 insertions(+), 112 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2011-11-03 21:21:33 UTC (rev 142003)
+++ testing-i686/PKGBUILD   2011-11-03 21:22:25 UTC (rev 142004)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Tom Killian 
-# Contributor: Judd Vinet 
-
-pkgname=dhcpcd
-pkgver=5.2.12
-pkgrel=2
-pkgdesc="RFC2131 compliant DHCP client daemon"
-url="http://roy.marples.name/dhcpcd/";
-arch=('i686' 'x86_64')
-license=('BSD')
-groups=('base')
-depends=('glibc' 'sh')
-backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
-options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
-source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \
-'dhcpcd.conf.d')
-sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5'
-  'b67b9ce6a2faaca75fea356966a16be2283b7db0')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # configure variables
-  ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd
-
-  # Build
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # Create Binary Symlink
-  install -d ${pkgdir}/usr/sbin
-  ln -sf /sbin/dhcpcd ${pkgdir}/usr/sbin/dhcpcd
-
-  # Install Configuration File used in /etc/rc.d/network
-  install -D -m644 ../dhcpcd.conf.d $pkgdir/etc/conf.d/$pkgname
-
-  # Install License
-  install -d $pkgdir/usr/share/licenses/$pkgname
-  awk '{if(FNR<27)print $0}' ${srcdir}/${pkgname}-${pkgver}/configure.h \
->> ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # Set Options in /etc/dhcpcd.conf
-  echo noipv4ll >> ${pkgdir}/etc/dhcpcd.conf # Disable ip4vall
-}

Copied: dhcpcd/repos/testing-i686/PKGBUILD (from rev 142003, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 21:22:25 UTC (rev 142004)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=5.2.12
+pkgrel=2
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/dhcpcd/";
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh' 'inetutils')
+backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \
+'dhcpcd.conf.d')
+sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5'
+  'b67b9ce6a2faaca75fea356966a16be2283b7db0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd
+
+  # Build
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Create Binary Symlink
+  install -d ${pkgdir}/usr/sbin
+  ln -sf /sbin/dhcpcd ${pkgdir}/usr/sbin/dhcpcd
+
+  # Install Configuration File used in /etc/rc.d/network
+  install -D -m644 ../dhcpcd.conf.d $pkgdir/etc/conf.d/$pkgname
+
+  # Install License
+  install -d $pkgdir/usr/share/licenses/$pkgname
+  awk '{if(FNR<27)print $0}' ${srcdir}/${pkgname}-${pkgver}/configure.h \
+>> ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> ${pkgdir}/etc/dhcpcd.conf # Disable ip4vall
+}

Deleted: testing-i686/dhcpcd.conf.d
===
--- testing-i686/dhcpcd.conf.d  2011-11-03 21:21:33 UTC (rev 142003)
+++ testing-i686/dhcpcd.conf.d  2011-11-03 21:22:25 UTC (rev 142004)
@@ -1,6 +0,0 @@
-#
-# Arguments to be passed to the DHCP client daemon
-#
-
-DHCPCD_ARGS="-q"
-

Copied: dhcpcd/repos/testing-i686/dhcpcd.conf.d (from rev 142003, 
dhcpcd/trunk/dhcpcd.conf.d)
===
--- testing-i686/dhcpcd.

[arch-commits] Commit in dhcpcd/trunk (PKGBUILD)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:21:33
  Author: ronald
Revision: 142003

sign package; add dependency on inetutils for hostname

Modified:
  dhcpcd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 21:20:18 UTC (rev 142002)
+++ PKGBUILD2011-11-03 21:21:33 UTC (rev 142003)
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 license=('BSD')
 groups=('base')
-depends=('glibc' 'sh')
+depends=('glibc' 'sh' 'inetutils')
 backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
 options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
 source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \



[arch-commits] Commit in net-tools/repos (18 files)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:20:18
  Author: ronald
Revision: 142002

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  net-tools/repos/testing-i686/
  net-tools/repos/testing-i686/PKGBUILD
(from rev 142001, net-tools/trunk/PKGBUILD)
  net-tools/repos/testing-i686/gcc340.patch
(from rev 142001, net-tools/trunk/gcc340.patch)
  net-tools/repos/testing-i686/net-tools-1.60-2.6-compilefix.patch
(from rev 142001, net-tools/trunk/net-tools-1.60-2.6-compilefix.patch)
  net-tools/repos/testing-i686/net-tools-1.60-miiioctl.patch
(from rev 142001, net-tools/trunk/net-tools-1.60-miiioctl.patch)
  net-tools/repos/testing-i686/net-tools-1.60-nameif.patch
(from rev 142001, net-tools/trunk/net-tools-1.60-nameif.patch)
  net-tools/repos/testing-i686/net-tools-1.60-nameif_strncpy.patch
(from rev 142001, net-tools/trunk/net-tools-1.60-nameif_strncpy.patch)
  net-tools/repos/testing-i686/net-tools.install
(from rev 142001, net-tools/trunk/net-tools.install)
  net-tools/repos/testing-i686/net-tools.patch
(from rev 142001, net-tools/trunk/net-tools.patch)
  net-tools/repos/testing-x86_64/
  net-tools/repos/testing-x86_64/PKGBUILD
(from rev 142001, net-tools/trunk/PKGBUILD)
  net-tools/repos/testing-x86_64/gcc340.patch
(from rev 142001, net-tools/trunk/gcc340.patch)
  net-tools/repos/testing-x86_64/net-tools-1.60-2.6-compilefix.patch
(from rev 142001, net-tools/trunk/net-tools-1.60-2.6-compilefix.patch)
  net-tools/repos/testing-x86_64/net-tools-1.60-miiioctl.patch
(from rev 142001, net-tools/trunk/net-tools-1.60-miiioctl.patch)
  net-tools/repos/testing-x86_64/net-tools-1.60-nameif.patch
(from rev 142001, net-tools/trunk/net-tools-1.60-nameif.patch)
  net-tools/repos/testing-x86_64/net-tools-1.60-nameif_strncpy.patch
(from rev 142001, net-tools/trunk/net-tools-1.60-nameif_strncpy.patch)
  net-tools/repos/testing-x86_64/net-tools.install
(from rev 142001, net-tools/trunk/net-tools.install)
  net-tools/repos/testing-x86_64/net-tools.patch
(from rev 142001, net-tools/trunk/net-tools.patch)

+
 testing-i686/PKGBUILD  |   43 ++
 testing-i686/gcc340.patch  |   46 +++
 testing-i686/net-tools-1.60-2.6-compilefix.patch   |   23 +++
 testing-i686/net-tools-1.60-miiioctl.patch |   17 +
 testing-i686/net-tools-1.60-nameif.patch   |   58 +++
 testing-i686/net-tools-1.60-nameif_strncpy.patch   |   13 
 testing-i686/net-tools.install |   12 +++
 testing-i686/net-tools.patch   |   30 +
 testing-x86_64/PKGBUILD|   43 ++
 testing-x86_64/gcc340.patch|   46 +++
 testing-x86_64/net-tools-1.60-2.6-compilefix.patch |   23 +++
 testing-x86_64/net-tools-1.60-miiioctl.patch   |   17 +
 testing-x86_64/net-tools-1.60-nameif.patch |   58 +++
 testing-x86_64/net-tools-1.60-nameif_strncpy.patch |   13 
 testing-x86_64/net-tools.install   |   12 +++
 testing-x86_64/net-tools.patch |   30 +
 16 files changed, 484 insertions(+)

Copied: net-tools/repos/testing-i686/PKGBUILD (from rev 142001, 
net-tools/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 21:20:18 UTC (rev 142002)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: judd 
+
+pkgname=net-tools
+pkgver=1.60.20110819cvs
+pkgrel=2
+pkgdesc="Configuration tools for Linux networking"
+arch=(i686 x86_64)
+license=('GPL2')
+url="http://www.tazenda.demon.co.uk/phil/net-tools";
+depends=('glibc')
+
+# http://www.tazenda.demon.co.uk/phil/$pkgname/$pkgname-$pkgver.tar.bz2
+# use cvs checkout instead
+source=(ftp://ftp.archlinux.org/other/net-tools/net-tools-1.60.20110819cvs.tar.bz2
+  net-tools-1.60-miiioctl.patch
+  net-tools-1.60-nameif_strncpy.patch)
+options=(!makeflags)
+install=net-tools.install
+sha1sums=('02946449191ff279f9f0f7fd7bc65ae21059a2bf'
+  '654a96bc6575efb4a2e04b49de45d448d240eb6e'
+  '7888000d8fe867e58b5b00fe2bcf6c3041d716b4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+#  patch -Np1 -i ../net-tools-1.60-miiioctl.patch
+#  patch -Np1 -i ${srcdir}/net-tools-1.60-nameif_strncpy.patch
+  yes "" | make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make BASEDIR=$pkgdir update
+
+  # the following is provided by yp-tools
+  rm "${pkgdir}"/bin/{nis,yp}domainname
+  rm "${pkgdir}"/usr/share/man/man1/{nis,yp}domainname.1
+
+  # hostname is provided by inetutils
+#  rm "${pkgdir}"/bin/{hostname,dnsdomainname,domainname}
+#  rm -rf "${pkgdir}"/usr/share/man/man1
+}

Copied: net-tools/repos/testing-i686/gcc340.patch (from rev 142001, 
net-tools/trunk/gcc340.

[arch-commits] Commit in grub/repos (30 files)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:19:09
  Author: ronald
Revision: 142001

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  grub/repos/testing-i686/
  grub/repos/testing-i686/040_all_grub-0.96-nxstack.patch
(from rev 141999, grub/trunk/040_all_grub-0.96-nxstack.patch)
  grub/repos/testing-i686/05-grub-0.97-initrdaddr.diff
(from rev 141999, grub/trunk/05-grub-0.97-initrdaddr.diff)
  grub/repos/testing-i686/PKGBUILD
(from rev 141999, grub/trunk/PKGBUILD)
  grub/repos/testing-i686/ext4.patch
(from rev 141999, grub/trunk/ext4.patch)
  grub/repos/testing-i686/grub-0.97-gpt.patch
(from rev 141999, grub/trunk/grub-0.97-gpt.patch)
  grub/repos/testing-i686/grub-0.97-ldflags-objcopy-remove-build-id.patch
(from rev 141999, 
grub/trunk/grub-0.97-ldflags-objcopy-remove-build-id.patch)
  grub/repos/testing-i686/grub-inode-size.patch
(from rev 141999, grub/trunk/grub-inode-size.patch)
  grub/repos/testing-i686/grub.install
(from rev 141999, grub/trunk/grub.install)
  grub/repos/testing-i686/i2o.patch
(from rev 141999, grub/trunk/i2o.patch)
  grub/repos/testing-i686/install-grub
(from rev 141999, grub/trunk/install-grub)
  grub/repos/testing-i686/intelmac.patch
(from rev 141999, grub/trunk/intelmac.patch)
  grub/repos/testing-i686/menu.lst
(from rev 141999, grub/trunk/menu.lst)
  grub/repos/testing-i686/more-raid.patch
(from rev 141999, grub/trunk/more-raid.patch)
  grub/repos/testing-i686/special-devices.patch
(from rev 141999, grub/trunk/special-devices.patch)
  grub/repos/testing-x86_64/
  grub/repos/testing-x86_64/040_all_grub-0.96-nxstack.patch
(from rev 141999, grub/trunk/040_all_grub-0.96-nxstack.patch)
  grub/repos/testing-x86_64/05-grub-0.97-initrdaddr.diff
(from rev 141999, grub/trunk/05-grub-0.97-initrdaddr.diff)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 141999, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/ext4.patch
(from rev 141999, grub/trunk/ext4.patch)
  grub/repos/testing-x86_64/grub-0.97-gpt.patch
(from rev 141999, grub/trunk/grub-0.97-gpt.patch)
  grub/repos/testing-x86_64/grub-0.97-ldflags-objcopy-remove-build-id.patch
(from rev 141999, 
grub/trunk/grub-0.97-ldflags-objcopy-remove-build-id.patch)
  grub/repos/testing-x86_64/grub-inode-size.patch
(from rev 141999, grub/trunk/grub-inode-size.patch)
  grub/repos/testing-x86_64/grub.install
(from rev 141999, grub/trunk/grub.install)
  grub/repos/testing-x86_64/i2o.patch
(from rev 141999, grub/trunk/i2o.patch)
  grub/repos/testing-x86_64/install-grub
(from rev 141999, grub/trunk/install-grub)
  grub/repos/testing-x86_64/intelmac.patch
(from rev 141999, grub/trunk/intelmac.patch)
  grub/repos/testing-x86_64/menu.lst
(from rev 141999, grub/trunk/menu.lst)
  grub/repos/testing-x86_64/more-raid.patch
(from rev 141999, grub/trunk/more-raid.patch)
  grub/repos/testing-x86_64/special-devices.patch
(from rev 141999, grub/trunk/special-devices.patch)

+
 testing-i686/040_all_grub-0.96-nxstack.patch   |  623 
++
 testing-i686/05-grub-0.97-initrdaddr.diff  |   16 
 testing-i686/PKGBUILD  |  104 +
 testing-i686/ext4.patch|  263 
 testing-i686/grub-0.97-gpt.patch   |  315 +
 testing-i686/grub-0.97-ldflags-objcopy-remove-build-id.patch   |  196 +++
 testing-i686/grub-inode-size.patch |  100 +
 testing-i686/grub.install  |   20 
 testing-i686/i2o.patch |   45 
 testing-i686/install-grub  |  204 +++
 testing-i686/intelmac.patch|   67 +
 testing-i686/menu.lst  |   48 
 testing-i686/more-raid.patch   |  100 +
 testing-i686/special-devices.patch |   18 
 testing-x86_64/040_all_grub-0.96-nxstack.patch |  623 
++
 testing-x86_64/05-grub-0.97-initrdaddr.diff|   16 
 testing-x86_64/PKGBUILD|  104 +
 testing-x86_64/ext4.patch  |  263 
 testing-x86_64/grub-0.97-gpt.patch |  315 +
 testing-x86_64/grub-0.97-ldflags-objcopy-remove-build-id.patch |  196 +++
 testing-x86_64/grub-inode-size.patch   |  100 +
 testing-x86_64/grub.install|   20 
 testing-x86_64/i2o.patch   |   45 
 testing-x86_64/install-grub|  204 +++
 testing-x86_64/intelmac.patch  |   67 +
 testing-x86_64/menu.lst|   48 
 testing-x86

[arch-commits] Commit in net-tools/trunk (PKGBUILD)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:19:03
  Author: ronald
Revision: 142000

sign package

Modified:
  net-tools/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 21:16:38 UTC (rev 141999)
+++ PKGBUILD2011-11-03 21:19:03 UTC (rev 142000)
@@ -4,7 +4,7 @@
 
 pkgname=net-tools
 pkgver=1.60.20110819cvs
-pkgrel=1
+pkgrel=2
 pkgdesc="Configuration tools for Linux networking"
 arch=(i686 x86_64)
 license=('GPL2')
@@ -24,8 +24,8 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  patch -Np1 -i ../net-tools-1.60-miiioctl.patch
-  patch -Np1 -i ${srcdir}/net-tools-1.60-nameif_strncpy.patch
+#  patch -Np1 -i ../net-tools-1.60-miiioctl.patch
+#  patch -Np1 -i ${srcdir}/net-tools-1.60-nameif_strncpy.patch
   yes "" | make
 }
 
@@ -38,6 +38,6 @@
   rm "${pkgdir}"/usr/share/man/man1/{nis,yp}domainname.1
 
   # hostname is provided by inetutils
-  rm "${pkgdir}"/bin/{hostname,dnsdomainname,domainname}
-  rm -rf "${pkgdir}"/usr/share/man/man1
+#  rm "${pkgdir}"/bin/{hostname,dnsdomainname,domainname}
+#  rm -rf "${pkgdir}"/usr/share/man/man1
 }



[arch-commits] Commit in grub/trunk (PKGBUILD)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:16:38
  Author: ronald
Revision: 141999

sign package

Modified:
  grub/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 21:12:45 UTC (rev 141998)
+++ PKGBUILD2011-11-03 21:16:38 UTC (rev 141999)
@@ -3,7 +3,7 @@
 
 pkgname=grub
 pkgver=0.97
-pkgrel=20
+pkgrel=21
 pkgdesc="A GNU multiboot boot loader"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -39,8 +39,8 @@
   '61c4b58d2eaa3c1561d8e9d8fc41341ce8882869')
 
 #set destination architecture here
-DESTARCH="i686"
-#DESTARCH="x86_64"
+#DESTARCH="i686"
+DESTARCH="x86_64"
 
 
 build() {



[arch-commits] Commit in e2fsprogs/repos (10 files)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:12:45
  Author: ronald
Revision: 141998

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  e2fsprogs/repos/testing-i686/
  e2fsprogs/repos/testing-i686/MIT-LICENSE
(from rev 141997, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-i686/PKGBUILD
(from rev 141997, e2fsprogs/trunk/PKGBUILD)
  e2fsprogs/repos/testing-i686/e2fsprogs.install
(from rev 141997, e2fsprogs/trunk/e2fsprogs.install)
  e2fsprogs/repos/testing-i686/mke2fs.conf
(from rev 141997, e2fsprogs/trunk/mke2fs.conf)
  e2fsprogs/repos/testing-x86_64/
  e2fsprogs/repos/testing-x86_64/MIT-LICENSE
(from rev 141997, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-x86_64/PKGBUILD
(from rev 141997, e2fsprogs/trunk/PKGBUILD)
  e2fsprogs/repos/testing-x86_64/e2fsprogs.install
(from rev 141997, e2fsprogs/trunk/e2fsprogs.install)
  e2fsprogs/repos/testing-x86_64/mke2fs.conf
(from rev 141997, e2fsprogs/trunk/mke2fs.conf)

--+
 testing-i686/MIT-LICENSE |   25 +++
 testing-i686/PKGBUILD|   48 +
 testing-i686/e2fsprogs.install   |   20 +++
 testing-i686/mke2fs.conf |   26 
 testing-x86_64/MIT-LICENSE   |   25 +++
 testing-x86_64/PKGBUILD  |   48 +
 testing-x86_64/e2fsprogs.install |   20 +++
 testing-x86_64/mke2fs.conf   |   26 
 8 files changed, 238 insertions(+)

Copied: e2fsprogs/repos/testing-i686/MIT-LICENSE (from rev 141997, 
e2fsprogs/trunk/MIT-LICENSE)
===
--- testing-i686/MIT-LICENSE(rev 0)
+++ testing-i686/MIT-LICENSE2011-11-03 21:12:45 UTC (rev 141998)
@@ -0,0 +1,25 @@
+Copyright (c) 2003-2007 Theodore Ts'o 
+Copyright (c) 1997-2003 Yann Dirson 
+Copyright (c) 2001 Alcove 
+Copyright (c) 1997 Klee Dienes
+Copyright (c) 1995-1996 Michael Nonweiler 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject
+to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: e2fsprogs/repos/testing-i686/PKGBUILD (from rev 141997, 
e2fsprogs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 21:12:45 UTC (rev 141998)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Ronald van Haren  
+# Contributor: judd 
+
+pkgname=e2fsprogs
+pkgver=1.41.14
+pkgrel=2
+pkgdesc="Ext2/3/4 filesystem utilities"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'MIT')
+url="http://e2fsprogs.sourceforge.net";
+groups=('base')
+depends=('sh' 'util-linux-ng')
+makedepends=('bc')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";
+'MIT-LICENSE')
+backup=('etc/mke2fs.conf')
+install=${pkgname}.install
+sha1sums=('24f9364fa3d4c0d7d00cb627b819d0e51055d6c5'
+  'f4a0d5b0cdb980e3fedd6f5e7dde0b0ffb7bbdfb')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Remove unnecessary init.d directory
+  sed -i '/init\.d/s|^|#|' misc/Makefile.in
+
+  ./configure --prefix=/usr --with-root-prefix="" --enable-elf-shlibs \
+  --disable-fsck --disable-uuidd \
+  --disable-libuuid --disable-libblkid
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install install-libs
+
+  sed -i -e 's/^AWK=.*/AWK=awk/' "${pkgdir}/usr/bin/compile_et"
+  
+  # remove references to build directory
+  sed -i -e 's#^SS_DIR=.*#SS_DIR="/usr/share/ss"#' "${pkgdir}/usr/bin/mk_cmds"
+  sed -i -e 's#^ET_DIR=.*#ET_DIR="/usr/share/et"#' 
"${pkgdir}/usr/bin/compile_et"
+
+  # install MIT license
+  install -Dm644 "${srcdir}/MIT-LICENSE" \
+"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE"
+}

Copied: e2fsprogs/repos/testing-i686/e2fsprogs.install (from rev 141997, 
e2fsprogs/trunk/e2fsprogs.install)
===

[arch-commits] Commit in e2fsprogs/trunk (PKGBUILD)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:12:01
  Author: ronald
Revision: 141997

sign package

Modified:
  e2fsprogs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 21:01:23 UTC (rev 141996)
+++ PKGBUILD2011-11-03 21:12:01 UTC (rev 141997)
@@ -4,7 +4,7 @@
 
 pkgname=e2fsprogs
 pkgver=1.41.14
-pkgrel=1
+pkgrel=2
 pkgdesc="Ext2/3/4 filesystem utilities"
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'MIT')



[arch-commits] Commit in bzip2/repos (6 files)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:01:23
  Author: ronald
Revision: 141996

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  bzip2/repos/testing-i686/
  bzip2/repos/testing-i686/PKGBUILD
(from rev 141995, bzip2/trunk/PKGBUILD)
  bzip2/repos/testing-i686/bzip2-1.0.4-bzip2recover.patch
(from rev 141995, bzip2/trunk/bzip2-1.0.4-bzip2recover.patch)
  bzip2/repos/testing-x86_64/
  bzip2/repos/testing-x86_64/PKGBUILD
(from rev 141995, bzip2/trunk/PKGBUILD)
  bzip2/repos/testing-x86_64/bzip2-1.0.4-bzip2recover.patch
(from rev 141995, bzip2/trunk/bzip2-1.0.4-bzip2recover.patch)

---+
 testing-i686/PKGBUILD |   69 
 testing-i686/bzip2-1.0.4-bzip2recover.patch   |   12 
 testing-x86_64/PKGBUILD   |   69 
 testing-x86_64/bzip2-1.0.4-bzip2recover.patch |   12 
 4 files changed, 162 insertions(+)

Copied: bzip2/repos/testing-i686/PKGBUILD (from rev 141995, 
bzip2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 21:01:23 UTC (rev 141996)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Judd  
+
+pkgname=bzip2
+pkgver=1.0.6
+pkgrel=3
+pkgdesc="A high-quality data compression program"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://sources.redhat.com/bzip2";
+groups=('base')
+depends=('glibc')
+source=(http://www.bzip.org/$pkgver/bzip2-$pkgver.tar.gz
+bzip2-1.0.4-bzip2recover.patch)
+sha1sums=('3f89f861209ce81a6bab1fd1998c0ef311712002'
+  '85ce76fdb67f52f152bba368c1de81132dcdbdb5')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # add large-file support
+  sed -e 's/^CFLAGS=\(.*\)$/CFLAGS=\1 \$(BIGFILES)/' -i ./Makefile-libbz2_so
+
+  # use our optimization
+  sed -i "s|-O2|${CFLAGS}|g" Makefile
+  sed -i "s|-O2|${CFLAGS}|g" Makefile-libbz2_so
+
+  patch -Np1 < ../bzip2-1.0.4-bzip2recover.patch
+
+  make -f Makefile-libbz2_so
+  make bzip2 bzip2recover libbz2.a
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make test
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -dm755 $pkgdir/bin
+  install -m755 bzip2-shared $pkgdir/bin/bzip2
+  install -m755 bzip2recover $pkgdir/bin
+  ln -sf bzip2 $pkgdir/bin/bunzip2
+  ln -sf bzip2 $pkgdir/bin/bzcat
+
+  install -dm755 $pkgdir/usr/bin
+  install -m755 bzdiff bzgrep bzmore $pkgdir/usr/bin
+
+  install -Dm755 libbz2.so.1.0.6 $pkgdir/lib/libbz2.so.1.0.6
+  ln -s libbz2.so.1.0.6 $pkgdir/lib/libbz2.so
+  ln -s libbz2.so.1.0.6 $pkgdir/lib/libbz2.so.1
+  ln -s libbz2.so.1.0.6 $pkgdir/lib/libbz2.so.1.0
+
+  install -Dm644 libbz2.a ${pkgdir}/usr/lib/libbz2.a
+  ln -sf ../../lib/libbz2.so ${pkgdir}/usr/lib/libbz2.so
+
+  install -Dm644 bzlib.h $pkgdir/usr/include/bzlib.h
+
+  install -Dm644 bzip2.1 $pkgdir/usr/share/man/man1/bzip2.1
+  ln -sf bzip2.1 $pkgdir/usr/share/man/man1/bunzip2.1
+  ln -sf bzip2.1 $pkgdir/usr/share/man/man1/bzcat.1
+  ln -sf bzip2.1 $pkgdir/usr/share/man/man1/bzip2recover.1
+
+  install -Dm644 $srcdir/${pkgname}-${pkgver}/LICENSE \
+ $pkgdir/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: bzip2/repos/testing-i686/bzip2-1.0.4-bzip2recover.patch (from rev 
141995, bzip2/trunk/bzip2-1.0.4-bzip2recover.patch)
===
--- testing-i686/bzip2-1.0.4-bzip2recover.patch (rev 0)
+++ testing-i686/bzip2-1.0.4-bzip2recover.patch 2011-11-03 21:01:23 UTC (rev 
141996)
@@ -0,0 +1,12 @@
+--- bzip2-1.0.4/bzip2recover.c.pom 2007-01-03 03:00:55.0 +0100
 bzip2-1.0.4/bzip2recover.c 2007-02-05 11:55:17.0 +0100
+@@ -309,7 +309,8 @@
+UInt32  buffHi, buffLo, blockCRC;
+Char*   p;
+ 
+-   strcpy ( progName, argv[0] );
++   strncpy ( progName, argv[0], BZ_MAX_FILENAME-1);
++   progName[BZ_MAX_FILENAME-1]='\0';
+inFileName[0] = outFileName[0] = 0;
+ 
+fprintf ( stderr, 

Copied: bzip2/repos/testing-x86_64/PKGBUILD (from rev 141995, 
bzip2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 21:01:23 UTC (rev 141996)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Judd  
+
+pkgname=bzip2
+pkgver=1.0.6
+pkgrel=3
+pkgdesc="A high-quality data compression program"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://sources.redhat.com/bzip2";
+groups=('base')
+depends=('glibc')
+source=(http://www.bzip.org/$pkgver/bzip2-$pkgver.tar.gz
+bzip2-1.0.4-bzip2recover.patch)
+sha1sums=('3f89f861209ce81a6bab1fd1998c0ef311712002'
+  '85ce76fdb67f52f152bba368c1de81132dcdbdb5')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # add large-file support
+  sed -e 's/^CFLAGS=\(.*\)$/CFLAGS=\1 \$

[arch-commits] Commit in bzip2/trunk (PKGBUILD)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 17:00:50
  Author: ronald
Revision: 141995

sign package

Modified:
  bzip2/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:58:44 UTC (rev 141994)
+++ PKGBUILD2011-11-03 21:00:50 UTC (rev 141995)
@@ -1,10 +1,10 @@
 # $Id$
-# Maintainer:
+# Maintainer: Ronald van Haren 
 # Contributor: Judd  
 
 pkgname=bzip2
 pkgver=1.0.6
-pkgrel=2
+pkgrel=3
 pkgdesc="A high-quality data compression program"
 arch=('i686' 'x86_64')
 license=('custom')
@@ -13,8 +13,8 @@
 depends=('glibc')
 source=(http://www.bzip.org/$pkgver/bzip2-$pkgver.tar.gz
 bzip2-1.0.4-bzip2recover.patch)
-md5sums=('00b516f4704d4a7cb50a1d97e6e8e15b'
- '8a8bca02bdeaf2fd8913aeb549577e7e')
+sha1sums=('3f89f861209ce81a6bab1fd1998c0ef311712002'
+  '85ce76fdb67f52f152bba368c1de81132dcdbdb5')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



[arch-commits] Commit in iproute2/repos (6 files)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 16:58:44
  Author: ronald
Revision: 141994

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iproute2/repos/testing-i686/
  iproute2/repos/testing-i686/PKGBUILD
(from rev 141993, iproute2/trunk/PKGBUILD)
  iproute2/repos/testing-i686/iproute2-fhs.patch
(from rev 141993, iproute2/trunk/iproute2-fhs.patch)
  iproute2/repos/testing-x86_64/
  iproute2/repos/testing-x86_64/PKGBUILD
(from rev 141993, iproute2/trunk/PKGBUILD)
  iproute2/repos/testing-x86_64/iproute2-fhs.patch
(from rev 141993, iproute2/trunk/iproute2-fhs.patch)

---+
 testing-i686/PKGBUILD |   51 +
 testing-i686/iproute2-fhs.patch   |   84 
 testing-x86_64/PKGBUILD   |   51 +
 testing-x86_64/iproute2-fhs.patch |   84 
 4 files changed, 270 insertions(+)

Copied: iproute2/repos/testing-i686/PKGBUILD (from rev 141993, 
iproute2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 20:58:44 UTC (rev 141994)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Judd Vinet 
+
+pkgname=iproute2
+pkgver=2.6.39
+pkgrel=2
+pkgdesc="IP Routing Utilities"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.linux-foundation.org/en/Net:Iproute2";
+depends=('perl')
+makedepends=('linux-atm')
+optdepends=('linux-atm: ATM support')
+provides=('iproute')
+conflicts=('iproute')
+replaces=('iproute')
+options=('!makeflags')
+backup=('etc/iproute2/ematch_map' 'etc/iproute2/rt_dsfield' 
'etc/iproute2/rt_protos' \
+   'etc/iproute2/rt_realms' 'etc/iproute2/rt_scopes' 
'etc/iproute2/rt_tables')
+source=(http://devresources.linux-foundation.org/dev/iproute2/download/iproute2-${pkgver}.tar.gz
+   'iproute2-fhs.patch')
+sha1sums=('9044ad0b4a34a377a54197724373330294d743c7'
+  '2416b11252364d7a6c742eabb4a6924a75637a46')
+
+
+build() {
+  cd $srcdir/iproute2-${pkgver}
+  
+  # set correct fhs structure
+  patch -Np1 -i ${srcdir}/iproute2-fhs.patch
+
+  ./configure
+
+  make
+}
+
+package() {
+  cd $srcdir/iproute2-${pkgver}
+
+  make DESTDIR=$pkgdir install
+
+  # allow loopback to be started before /usr is mounted, this may not be 
supported in the future
+  mkdir -p ${pkgdir}/sbin
+  mv ${pkgdir}/usr/sbin/ip ${pkgdir}/sbin/ip
+  ln -s /sbin/ip ${pkgdir}/usr/sbin/ip
+
+  # libnetlink isn't installed, install it FS#19385
+  install -Dm644 include/libnetlink.h ${pkgdir}/usr/include/libnetlink.h
+  install -Dm644 lib/libnetlink.a ${pkgdir}/usr/lib/libnetlink.a
+}

Copied: iproute2/repos/testing-i686/iproute2-fhs.patch (from rev 141993, 
iproute2/trunk/iproute2-fhs.patch)
===
--- testing-i686/iproute2-fhs.patch (rev 0)
+++ testing-i686/iproute2-fhs.patch 2011-11-03 20:58:44 UTC (rev 141994)
@@ -0,0 +1,84 @@
+diff -Naur iproute2.old/Makefile iproute2-2.6.29/Makefile
+--- iproute2.old/Makefile  2009-11-11 22:05:21.251407668 +0100
 iproute2-2.6.29/Makefile   2009-11-11 22:07:09.891833516 +0100
+@@ -1,11 +1,12 @@
+ DESTDIR=/usr/
+ ROOTDIR=$(DESTDIR)
+ LIBDIR=/usr/lib/
+-SBINDIR=/sbin
++SBINDIR=/usr/sbin
+ CONFDIR=/etc/iproute2
+-DOCDIR=/share/doc/iproute2
+-MANDIR=/share/man
++DOCDIR=/usr/share/doc/iproute2
++MANDIR=/usr/share/man
+ ARPDDIR=/var/lib/arpd
++SHAREDIR=/usr/share
+
+ # Path to db_185.h include
+ DBM_INCLUDE:=$(ROOTDIR)/usr/include
+diff -Naur iproute2.old/tc/tc_util.c iproute2-2.6.29/tc/tc_util.c
+--- iproute2.old/tc/tc_util.c  2009-11-11 22:05:21.298076943 +0100
 iproute2-2.6.29/tc/tc_util.c   2009-11-11 22:09:32.865152646 +0100
+@@ -24,8 +24,8 @@
+ #include "utils.h"
+ #include "tc_util.h"
+ 
+-#ifndef LIBDIR
+-#define LIBDIR "/usr/lib/"
++#ifndef SHAREDIR
++#define SHAREDIR "/usr/share"
+ #endif
+ 
+ const char *get_tc_lib(void)
+@@ -34,7 +34,7 @@
+ 
+   lib_dir = getenv("TC_LIB_DIR");
+   if (!lib_dir)
+-  lib_dir = LIBDIR "/tc/";
++  lib_dir = SHAREDIR "/tc/";
+ 
+   return lib_dir;
+ }
+diff -Naur iproute2.old/netem/Makefile iproute2-2.6.35/netem/Makefile
+--- iproute2.old/netem/Makefile2010-08-06 11:30:48.640940183 +0200
 iproute2-2.6.35/netem/Makefile 2010-08-06 11:32:34.210908892 +0200
+@@ -20,9 +20,9 @@
+   $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
+ 
+ install: all
+-  mkdir -p $(DESTDIR)$(LIBDIR)/tc
++  mkdir -p $(DESTDIR)$(SHAREDIR)/tc
+   for i in $(DISTDATA); \
+-  do install -m 644 $$i $(DESTDIR)$(LIBDIR)/tc; \
++  do install -m 644 $$i $(DESTDIR)$(SHAREDIR)/tc; \
+   done
+ 
+ clean:
+diff -Naur iproute2.old/tc/Makefile iproute2-2.6.35/tc/Makefile
+--- iproute2.old/tc/Makefile   2010-08-06 11:48:35.607472252 +0200
 iproute2-2.6.35/tc/Makefile

[arch-commits] Commit in iproute2/trunk (PKGBUILD)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 16:57:20
  Author: ronald
Revision: 141993

sign package

Modified:
  iproute2/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:43:33 UTC (rev 141992)
+++ PKGBUILD2011-11-03 20:57:20 UTC (rev 141993)
@@ -4,7 +4,7 @@
 
 pkgname=iproute2
 pkgver=2.6.39
-pkgrel=1
+pkgrel=2
 pkgdesc="IP Routing Utilities"
 arch=('i686' 'x86_64')
 license=('GPL2')



[arch-commits] Commit in linux-atm/repos (6 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:43:33
  Author: tpowa
Revision: 141992

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  linux-atm/repos/testing-i686/
  linux-atm/repos/testing-i686/PKGBUILD
(from rev 141991, linux-atm/trunk/PKGBUILD)
  linux-atm/repos/testing-i686/man-pages.patch
(from rev 141991, linux-atm/trunk/man-pages.patch)
  linux-atm/repos/testing-x86_64/
  linux-atm/repos/testing-x86_64/PKGBUILD
(from rev 141991, linux-atm/trunk/PKGBUILD)
  linux-atm/repos/testing-x86_64/man-pages.patch
(from rev 141991, linux-atm/trunk/man-pages.patch)

+
 testing-i686/PKGBUILD  |   29 +
 testing-i686/man-pages.patch   |   45 +++
 testing-x86_64/PKGBUILD|   29 +
 testing-x86_64/man-pages.patch |   45 +++
 4 files changed, 148 insertions(+)

Copied: linux-atm/repos/testing-i686/PKGBUILD (from rev 141991, 
linux-atm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 20:43:33 UTC (rev 141992)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Surain Mallawa Arachchi 
+
+pkgname=linux-atm
+pkgver=2.5.2
+pkgrel=1
+pkgdesc="Drivers and tools to support ATM networking under Linux."
+arch=('i686' 'x86_64')
+depends=('glibc')
+url="http://linux-atm.sourceforge.net/";
+license=(GPL)
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
+man-pages.patch)
+options=(!libtool !makeflags)
+md5sums=('d49499368c3cf15f73a05d9bce8824a8'
+ '181390736336cdb615ae32f1ae5acfa6')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i ../man-pages.patch
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: linux-atm/repos/testing-i686/man-pages.patch (from rev 141991, 
linux-atm/trunk/man-pages.patch)
===
--- testing-i686/man-pages.patch(rev 0)
+++ testing-i686/man-pages.patch2011-11-03 20:43:33 UTC (rev 141992)
@@ -0,0 +1,45 @@
+diff -up linux-atm-2.5.1/src/led/zeppelin.8.fixman 
linux-atm-2.5.1/src/led/zeppelin.8
+--- linux-atm-2.5.1/src/led/zeppelin.8.fixman  2003-05-02 19:35:04.0 
+0200
 linux-atm-2.5.1/src/led/zeppelin.8 2010-10-13 12:58:18.0 +0200
+@@ -99,7 +99,7 @@ Ring and ATM parts of the ELAN, so using
+ recommended. Token Ring support has received less testing than its
+ Ethernet counterpart.
+ .SH FILES
+-.IP \fI/var/run/lec[interface number].pid\fP
++\fI/var/run/lec[interface number].pid\fP
+ The file containing the process id of zeppelin.
+ .SH BUGS
+ John Bonham died 1980 and Led Zeppelin broke.
+diff -up linux-atm-2.5.1/src/mpoad/mpcd.8.fixman 
linux-atm-2.5.1/src/mpoad/mpcd.8
+--- linux-atm-2.5.1/src/mpoad/mpcd.8.fixman2001-10-10 00:33:07.0 
+0200
 linux-atm-2.5.1/src/mpoad/mpcd.8   2010-10-13 12:59:14.0 +0200
+@@ -28,7 +28,7 @@ mpcd \- ATM MPOA (Multi\-Protocol Over A
+ .B ]]
+ .SH DESCRIPTION
+ MPOA client
+-.SM(MPC) is responsible for creating and receiving
++.SM (MPC) is responsible for creating and receiving
+ internetwork layer shortcuts. Using these shortcuts MPCs forward
+ unicast internetwork layer packets effectively over ATM without need
+ for routing protocols.
+@@ -43,7 +43,7 @@ accepts shortcuts and packets arriving o
+ shortcuts is done with the help of
+ .SM MPOA
+ server
+-.SM(MPS).
++.SM (MPS).
+ .PP
+ Just as the Linux
+ .SM LAN
+diff -up linux-atm-2.5.1/src/sigd/atmsigd.conf.4.fixman 
linux-atm-2.5.1/src/sigd/atmsigd.conf.4
+--- linux-atm-2.5.1/src/sigd/atmsigd.conf.4.fixman 2001-10-10 
00:33:07.0 +0200
 linux-atm-2.5.1/src/sigd/atmsigd.conf.42010-10-13 12:58:49.0 
+0200
+@@ -125,7 +125,7 @@ a comment. The `#' character cannot be e
+ .P
+ If an option is specified in \fBatmsigd.conf\fP and on the command
+ line, the command line has priority.
+-.COMPATIBILITY
++.SH COMPATIBILITY
+ Certain options used by past versions of \fBatmsigd\fP but no longer 
documented
+ on the man page are still recognized and supported, but they also yield a
+ warning message. Future versions of \fBatmsigd\fP will not recognize those

Copied: linux-atm/repos/testing-x86_64/PKGBUILD (from rev 141991, 
linux-atm/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 20:43:33 UTC (rev 141992)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Surain Mallawa Arachchi 
+
+pkgname=linux-atm
+pkgver=2.5.2
+pkgrel=1
+pkgdesc="Drivers and tools to support ATM netwo

[arch-commits] Commit in linux-atm/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:43:08
  Author: tpowa
Revision: 141991

bump to latest version

Modified:
  linux-atm/trunk/PKGBUILD

--+
 PKGBUILD |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:33:03 UTC (rev 141990)
+++ PKGBUILD2011-11-03 20:43:08 UTC (rev 141991)
@@ -3,18 +3,18 @@
 # Contributor: Surain Mallawa Arachchi 
 
 pkgname=linux-atm
-pkgver=2.5.1
-pkgrel=2
+pkgver=2.5.2
+pkgrel=1
 pkgdesc="Drivers and tools to support ATM networking under Linux."
 arch=('i686' 'x86_64')
 depends=('glibc')
 url="http://linux-atm.sourceforge.net/";
 license=(GPL)
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tgz
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
 man-pages.patch)
-md5sums=('9560b0e1f410a05b849dfdab465dd758'
- '181390736336cdb615ae32f1ae5acfa6')
 options=(!libtool !makeflags)
+md5sums=('d49499368c3cf15f73a05d9bce8824a8'
+ '181390736336cdb615ae32f1ae5acfa6')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -27,4 +27,3 @@
   cd "${srcdir}/${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" install
 }
-



[arch-commits] Commit in xfsprogs/repos (4 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:33:03
  Author: tpowa
Revision: 141990

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  xfsprogs/repos/testing-i686/
  xfsprogs/repos/testing-i686/PKGBUILD
(from rev 141989, xfsprogs/trunk/PKGBUILD)
  xfsprogs/repos/testing-x86_64/
  xfsprogs/repos/testing-x86_64/PKGBUILD
(from rev 141989, xfsprogs/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   29 +
 testing-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: xfsprogs/repos/testing-i686/PKGBUILD (from rev 141989, 
xfsprogs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 20:33:03 UTC (rev 141990)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Paul Mattal 
+pkgname=xfsprogs
+pkgver=3.1.6
+pkgrel=1
+pkgdesc="XFS filesystem utilities"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://oss.sgi.com/projects/xfs/";
+groups=('base')
+depends=('util-linux-ng>=2.16')
+options=('!makeflags' '!libtool')
+# We mirror the sources as upstream tends to move them once a new release is 
out
+source=("ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('fbd2c1c5abed4b11047bea6ce53bc6e4')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DIST_ROOT="${pkgdir}" install install-dev
+  chown -R root $pkgdir
+  chgrp -R root $pkgdir
+}

Copied: xfsprogs/repos/testing-x86_64/PKGBUILD (from rev 141989, 
xfsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 20:33:03 UTC (rev 141990)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Paul Mattal 
+pkgname=xfsprogs
+pkgver=3.1.6
+pkgrel=1
+pkgdesc="XFS filesystem utilities"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://oss.sgi.com/projects/xfs/";
+groups=('base')
+depends=('util-linux-ng>=2.16')
+options=('!makeflags' '!libtool')
+# We mirror the sources as upstream tends to move them once a new release is 
out
+source=("ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('fbd2c1c5abed4b11047bea6ce53bc6e4')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DIST_ROOT="${pkgdir}" install install-dev
+  chown -R root $pkgdir
+  chgrp -R root $pkgdir
+}



[arch-commits] Commit in xfsprogs/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:32:37
  Author: tpowa
Revision: 141989

bump to latest version

Modified:
  xfsprogs/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:19:56 UTC (rev 141988)
+++ PKGBUILD2011-11-03 20:32:37 UTC (rev 141989)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Paul Mattal 
 pkgname=xfsprogs
-pkgver=3.1.5
+pkgver=3.1.6
 pkgrel=1
 pkgdesc="XFS filesystem utilities"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 options=('!makeflags' '!libtool')
 # We mirror the sources as upstream tends to move them once a new release is 
out
 source=("ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('b1db37749e2b4149a0dd178abff956be')
+md5sums=('fbd2c1c5abed4b11047bea6ce53bc6e4')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in xinetd/repos (12 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:19:56
  Author: tpowa
Revision: 141988

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  xinetd/repos/testing-i686/
  xinetd/repos/testing-i686/PKGBUILD
(from rev 141987, xinetd/trunk/PKGBUILD)
  xinetd/repos/testing-i686/servers
(from rev 141987, xinetd/trunk/servers)
  xinetd/repos/testing-i686/services
(from rev 141987, xinetd/trunk/services)
  xinetd/repos/testing-i686/xinetd
(from rev 141987, xinetd/trunk/xinetd)
  xinetd/repos/testing-i686/xinetd.conf
(from rev 141987, xinetd/trunk/xinetd.conf)
  xinetd/repos/testing-x86_64/
  xinetd/repos/testing-x86_64/PKGBUILD
(from rev 141987, xinetd/trunk/PKGBUILD)
  xinetd/repos/testing-x86_64/servers
(from rev 141987, xinetd/trunk/servers)
  xinetd/repos/testing-x86_64/services
(from rev 141987, xinetd/trunk/services)
  xinetd/repos/testing-x86_64/xinetd
(from rev 141987, xinetd/trunk/xinetd)
  xinetd/repos/testing-x86_64/xinetd.conf
(from rev 141987, xinetd/trunk/xinetd.conf)

+
 testing-i686/PKGBUILD  |   43 +++
 testing-i686/servers   |   10 ++
 testing-i686/services  |   10 ++
 testing-i686/xinetd|   38 ++
 testing-i686/xinetd.conf   |   14 ++
 testing-x86_64/PKGBUILD|   43 +++
 testing-x86_64/servers |   10 ++
 testing-x86_64/services|   10 ++
 testing-x86_64/xinetd  |   38 ++
 testing-x86_64/xinetd.conf |   14 ++
 10 files changed, 230 insertions(+)

Copied: xinetd/repos/testing-i686/PKGBUILD (from rev 141987, 
xinetd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 20:19:56 UTC (rev 141988)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer:
+# Contributor: Judd 
+
+pkgname=xinetd
+pkgver=2.3.14
+pkgrel=8
+pkgdesc="A secure replacement for inetd"
+arch=('i686' 'x86_64')
+url="http://www.xinetd.org/";
+license=('custom')
+optdepends=('perl: for xconv.pl script')
+backup=('etc/xinetd.conf' 'etc/xinetd.d/servers' 'etc/xinetd.d/services')
+source=(http://www.xinetd.org/xinetd-$pkgver.tar.gz
+xinetd.conf
+xinetd
+servers
+services)
+md5sums=('567382d7972613090215c6c54f9b82d9'
+ 'f109f699a07bc8cfb5791060f5e87f9e'
+ 'ea37a2794f202e6b953d9b6956dad16a'
+ '21f47b4aa20921cfad9f9a407f81'
+ '9fa2061dc7dd738c8424251deb86f81e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  sed -i "s#${prefix}/man#${prefix}/share/man#" configure
+  ./configure --prefix=/usr --without-libwrap
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+  
+  install -Dm755 $srcdir/xinetd $pkgdir/etc/rc.d/xinetd
+  install -Dm644 $srcdir/xinetd.conf $pkgdir/etc/xinetd.conf
+  install -Dm644 $srcdir/servers $pkgdir/etc/xinetd.d/servers
+  install -Dm644 $srcdir/services $pkgdir/etc/xinetd.d/services
+
+  # install license
+  install -Dm644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
+}

Copied: xinetd/repos/testing-i686/servers (from rev 141987, 
xinetd/trunk/servers)
===
--- testing-i686/servers(rev 0)
+++ testing-i686/servers2011-11-03 20:19:56 UTC (rev 141988)
@@ -0,0 +1,10 @@
+service servers
+{
+type= INTERNAL UNLISTED
+port= 9099
+socket_type = stream
+protocol= tcp
+wait= no
+disable = yes
+only_from   = 127.0.0.1
+}

Copied: xinetd/repos/testing-i686/services (from rev 141987, 
xinetd/trunk/services)
===
--- testing-i686/services   (rev 0)
+++ testing-i686/services   2011-11-03 20:19:56 UTC (rev 141988)
@@ -0,0 +1,10 @@
+service services
+{
+type= INTERNAL UNLISTED
+port= 9098
+socket_type = stream
+protocol= tcp
+wait= no
+disable = yes
+only_from   = 127.0.0.1
+}

Copied: xinetd/repos/testing-i686/xinetd (from rev 141987, xinetd/trunk/xinetd)
===
--- testing-i686/xinetd (rev 0)
+++ testing-i686/xinetd 2011-11-03 20:19:56 UTC (rev 141988)
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+PID=`pidof -o %PPID /usr/sbin/xinetd`
+case "$1" in
+  start)
+stat_busy "Starting xinetd"
+[ -z "$PID" ] && /usr/sbin/xinetd -stayalive -pidfile /var/run/xinetd.pid
+if [ $? -gt 0 ]; then
+  stat_fail
+else
+  echo $PID > /var/run/xinet

[arch-commits] Commit in xinetd/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:19:13
  Author: tpowa
Revision: 141987

signed rebuild

Modified:
  xinetd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:17:26 UTC (rev 141986)
+++ PKGBUILD2011-11-03 20:19:13 UTC (rev 141987)
@@ -4,7 +4,7 @@
 
 pkgname=xinetd
 pkgver=2.3.14
-pkgrel=7
+pkgrel=8
 pkgdesc="A secure replacement for inetd"
 arch=('i686' 'x86_64')
 url="http://www.xinetd.org/";



[arch-commits] Commit in sysfsutils/repos (4 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:17:26
  Author: tpowa
Revision: 141986

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sysfsutils/repos/testing-i686/
  sysfsutils/repos/testing-i686/PKGBUILD
(from rev 141985, sysfsutils/trunk/PKGBUILD)
  sysfsutils/repos/testing-x86_64/
  sysfsutils/repos/testing-x86_64/PKGBUILD
(from rev 141985, sysfsutils/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: sysfsutils/repos/testing-i686/PKGBUILD (from rev 141985, 
sysfsutils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 20:17:26 UTC (rev 141986)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=sysfsutils
+pkgver=2.1.0
+pkgrel=7
+pkgdesc="System Utilities Based on Sysfs"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+url="http://linux-diag.sourceforge.net/Sysfsutils.html";
+groups=('base')
+depends=('glibc')
+source=(http://downloads.sourceforge.net/sourceforge/linux-diag/${pkgname}-${pkgver}.tar.gz)
+md5sums=('14e7dcd0436d2f49aa403f67e1ef7ddc')
+options=(!libtool)
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}" 
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}" 
+  make DESTDIR="${pkgdir}" install
+
+  cd "${pkgdir}"
+  mkdir -v lib
+  mv -v usr/lib/libsysfs.so.2* lib/
+  ln -svf ../../lib/libsysfs.so.2 usr/lib/libsysfs.so
+}

Copied: sysfsutils/repos/testing-x86_64/PKGBUILD (from rev 141985, 
sysfsutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 20:17:26 UTC (rev 141986)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=sysfsutils
+pkgver=2.1.0
+pkgrel=7
+pkgdesc="System Utilities Based on Sysfs"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+url="http://linux-diag.sourceforge.net/Sysfsutils.html";
+groups=('base')
+depends=('glibc')
+source=(http://downloads.sourceforge.net/sourceforge/linux-diag/${pkgname}-${pkgver}.tar.gz)
+md5sums=('14e7dcd0436d2f49aa403f67e1ef7ddc')
+options=(!libtool)
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}" 
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}" 
+  make DESTDIR="${pkgdir}" install
+
+  cd "${pkgdir}"
+  mkdir -v lib
+  mv -v usr/lib/libsysfs.so.2* lib/
+  ln -svf ../../lib/libsysfs.so.2 usr/lib/libsysfs.so
+}



[arch-commits] Commit in sysfsutils/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:17:00
  Author: tpowa
Revision: 141985

signed rebuild and added check function

Modified:
  sysfsutils/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:14:20 UTC (rev 141984)
+++ PKGBUILD2011-11-03 20:17:00 UTC (rev 141985)
@@ -3,7 +3,7 @@
 
 pkgname=sysfsutils
 pkgver=2.1.0
-pkgrel=6
+pkgrel=7
 pkgdesc="System Utilities Based on Sysfs"
 arch=(i686 x86_64)
 license=('GPL' 'LGPL')
@@ -20,6 +20,11 @@
   make
 }
 
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}" 
   make DESTDIR="${pkgdir}" install



[arch-commits] Commit in rpcbind/repos (8 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:14:20
  Author: tpowa
Revision: 141984

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  rpcbind/repos/testing-i686/
  rpcbind/repos/testing-i686/PKGBUILD
(from rev 141983, rpcbind/trunk/PKGBUILD)
  rpcbind/repos/testing-i686/rpcbind
(from rev 141983, rpcbind/trunk/rpcbind)
  rpcbind/repos/testing-i686/rpcbind-sunrpc.patch
(from rev 141983, rpcbind/trunk/rpcbind-sunrpc.patch)
  rpcbind/repos/testing-x86_64/
  rpcbind/repos/testing-x86_64/PKGBUILD
(from rev 141983, rpcbind/trunk/PKGBUILD)
  rpcbind/repos/testing-x86_64/rpcbind
(from rev 141983, rpcbind/trunk/rpcbind)
  rpcbind/repos/testing-x86_64/rpcbind-sunrpc.patch
(from rev 141983, rpcbind/trunk/rpcbind-sunrpc.patch)

-+
 testing-i686/PKGBUILD   |   42 ++
 testing-i686/rpcbind|   39 +++
 testing-i686/rpcbind-sunrpc.patch   |   22 +
 testing-x86_64/PKGBUILD |   42 ++
 testing-x86_64/rpcbind  |   39 +++
 testing-x86_64/rpcbind-sunrpc.patch |   22 +
 6 files changed, 206 insertions(+)

Copied: rpcbind/repos/testing-i686/PKGBUILD (from rev 141983, 
rpcbind/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 20:14:20 UTC (rev 141984)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=rpcbind
+pkgver=0.2.0
+pkgrel=5
+pkgdesc="portmap replacement which supports RPC over various protocols"
+arch=(i686 x86_64)
+depends=('bash' 'glibc' 'libtirpc')
+url="http://rpcbind.sourceforge.net";
+license=('custom')
+replaces=('portmap')
+source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2
+rpcbind-sunrpc.patch
+rpcbind)
+md5sums=('1a77ddb1aaea8099ab19c351eeb26316'
+ 'c02ac36a98baac70b8a26190524b7b73'
+ '78a963654f57cbb209e228884767836e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # patch for iana services file
+  patch -Np1 -i ../rpcbind-sunrpc.patch
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install missing man page - https://bugs.archlinux.org/task/21271
+  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
+  # install daemon 
+  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
+  # install license
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
+}

Copied: rpcbind/repos/testing-i686/rpcbind (from rev 141983, 
rpcbind/trunk/rpcbind)
===
--- testing-i686/rpcbind(rev 0)
+++ testing-i686/rpcbind2011-11-03 20:14:20 UTC (rev 141984)
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+PID="$(pidof -o %PPID /usr/bin/rpcbind)"
+case "$1" in
+  start)
+stat_busy "Starting rpcbind"
+[ -z "$PID" ] && /usr/bin/rpcbind &>/dev/null
+if [ $? -gt 0 ]; then
+  stat_fail
+else
+  PID=$(pidof -o %PPID /usr/bin/rpcbind)
+  echo $PID > /var/run/rpcbind.pid
+  add_daemon rpcbind
+  stat_done
+fi
+;;
+  stop)
+stat_busy "Stopping rpcbind"
+[ ! -z "$PID" ]  && kill $PID &> /dev/null
+if [ $? -gt 0 ]; then
+  stat_fail
+else
+  rm /var/run/rpcbind.pid
+  rm_daemon rpcbind
+  stat_done
+fi
+;;
+  restart)
+$0 stop
+sleep 1
+$0 start
+;;
+  *)
+echo "usage: $0 {start|stop|restart}"  
+esac
+exit 0

Copied: rpcbind/repos/testing-i686/rpcbind-sunrpc.patch (from rev 141983, 
rpcbind/trunk/rpcbind-sunrpc.patch)
===
--- testing-i686/rpcbind-sunrpc.patch   (rev 0)
+++ testing-i686/rpcbind-sunrpc.patch   2011-11-03 20:14:20 UTC (rev 141984)
@@ -0,0 +1,22 @@
+--- rpcbind-0.1.7/src/rpcbind.c.orig   2008-11-19 14:17:34.0 +0100
 rpcbind-0.1.7/src/rpcbind.c2010-01-07 13:03:37.416632894 +0100
+@@ -114,7 +114,7 @@
+ char *udp_uaddr;  /* Universal UDP address */
+ char *tcp_uaddr;  /* Universal TCP address */
+ #endif
+-static char servname[] = "rpcbind";
++static char servname[] = "sunrpc";
+ static char superuser[] = "superuser";
+ 
+ int main __P((int, char *[]));
+--- rpcbind-0.1.7/src/rpcinfo.c~   2010-01-08 16:14:24.592156602 +
 rpcbind-0.1.7/src/rpcinfo.c2010-01-08 16:14:31.578838609 +
+@@ -633,7 +633,7 @@
+   {
+ memset (&hints, 0, sizeof hints);
+ hints.ai_family = AF_INET;
+-if ((error = getaddrinfo (host, "rpcbind", &hints, &res)) != 0 &&
++if ((error = getaddrinfo (host, "sunrpc", &hints, 

[arch-commits] Commit in rpcbind/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:13:50
  Author: tpowa
Revision: 141983

signed rebuild and added check function

Modified:
  rpcbind/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:12:30 UTC (rev 141982)
+++ PKGBUILD2011-11-03 20:13:50 UTC (rev 141983)
@@ -3,7 +3,7 @@
 
 pkgname=rpcbind
 pkgver=0.2.0
-pkgrel=3
+pkgrel=5
 pkgdesc="portmap replacement which supports RPC over various protocols"
 arch=(i686 x86_64)
 depends=('bash' 'glibc' 'libtirpc')
@@ -25,6 +25,11 @@
   make
 }
 
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
 package() {
   cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install



[arch-commits] Commit in dhcpcd/repos (6 files)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 16:12:30
  Author: ronald
Revision: 141982

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  dhcpcd/repos/testing-i686/
  dhcpcd/repos/testing-i686/PKGBUILD
(from rev 141981, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.conf.d
(from rev 141981, dhcpcd/trunk/dhcpcd.conf.d)
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 141981, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.conf.d
(from rev 141981, dhcpcd/trunk/dhcpcd.conf.d)

--+
 testing-i686/PKGBUILD|   50 +
 testing-i686/dhcpcd.conf.d   |6 
 testing-x86_64/PKGBUILD  |   50 +
 testing-x86_64/dhcpcd.conf.d |6 
 4 files changed, 112 insertions(+)

Copied: dhcpcd/repos/testing-i686/PKGBUILD (from rev 141981, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 20:12:30 UTC (rev 141982)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=5.2.12
+pkgrel=2
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/dhcpcd/";
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh')
+backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \
+'dhcpcd.conf.d')
+sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5'
+  'b67b9ce6a2faaca75fea356966a16be2283b7db0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd
+
+  # Build
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Create Binary Symlink
+  install -d ${pkgdir}/usr/sbin
+  ln -sf /sbin/dhcpcd ${pkgdir}/usr/sbin/dhcpcd
+
+  # Install Configuration File used in /etc/rc.d/network
+  install -D -m644 ../dhcpcd.conf.d $pkgdir/etc/conf.d/$pkgname
+
+  # Install License
+  install -d $pkgdir/usr/share/licenses/$pkgname
+  awk '{if(FNR<27)print $0}' ${srcdir}/${pkgname}-${pkgver}/configure.h \
+>> ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> ${pkgdir}/etc/dhcpcd.conf # Disable ip4vall
+}

Copied: dhcpcd/repos/testing-i686/dhcpcd.conf.d (from rev 141981, 
dhcpcd/trunk/dhcpcd.conf.d)
===
--- testing-i686/dhcpcd.conf.d  (rev 0)
+++ testing-i686/dhcpcd.conf.d  2011-11-03 20:12:30 UTC (rev 141982)
@@ -0,0 +1,6 @@
+#
+# Arguments to be passed to the DHCP client daemon
+#
+
+DHCPCD_ARGS="-q"
+

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 141981, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 20:12:30 UTC (rev 141982)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=5.2.12
+pkgrel=2
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/dhcpcd/";
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh')
+backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2"; \
+'dhcpcd.conf.d')
+sha1sums=('27378a251705c7888332e6d60eea7805d1f8aeb5'
+  'b67b9ce6a2faaca75fea356966a16be2283b7db0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd
+
+  # Build
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Create Binary Symlink
+  install -d ${pkgdir}/usr/sbin
+  ln -sf /sbin/dhcpcd ${pkgdir}/usr/sbin/dhcpcd
+
+  # Install Configuration File used in /etc/rc.d/network
+  install -D -m644 ../dhcpcd.conf.d $pkgdir/etc/conf.d/$pkgname
+
+  # Install License
+  install -d $pkgdir/usr/share/licenses/$pkgname
+  awk '{if(FNR<27)print $0}' ${srcdir}/${pkgname}-${pkgver}/configure.h \
+>> ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> ${pkgdir}/etc/dhcpcd.conf # Disable ip4vall
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.conf.d (from rev 141981, 
dhcpcd/trunk/dhcpcd.conf.d)
===
--- testing-x86_64/dhcpcd.conf.d  

[arch-commits] Commit in libusb/repos (4 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:12:06
  Author: tpowa
Revision: 141981

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libusb/repos/testing-i686/
  libusb/repos/testing-i686/PKGBUILD
(from rev 141979, libusb/trunk/PKGBUILD)
  libusb/repos/testing-x86_64/
  libusb/repos/testing-x86_64/PKGBUILD
(from rev 141980, libusb/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: libusb/repos/testing-i686/PKGBUILD (from rev 141979, 
libusb/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 20:12:06 UTC (rev 141981)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=libusb
+pkgver=1.0.8
+pkgrel=2
+depends=('glibc')
+pkgdesc="Library to enable user space application programs to communicate with 
USB devices."
+arch=(i686 x86_64)
+url="http://libusb.sourceforge.net/";
+license=('LGPL')
+source=(http://downloads.sourceforge.net/libusb/libusb-${pkgver}.tar.bz2)
+options=(!libtool)
+replaces=(libusb1)
+md5sums=('37d34e6eaa69a4b645a19ff4ca63ceef')
+
+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
+}

Copied: libusb/repos/testing-x86_64/PKGBUILD (from rev 141980, 
libusb/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 20:12:06 UTC (rev 141981)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=libusb
+pkgver=1.0.8
+pkgrel=2
+depends=('glibc')
+pkgdesc="Library to enable user space application programs to communicate with 
USB devices."
+arch=(i686 x86_64)
+url="http://libusb.sourceforge.net/";
+license=('LGPL')
+source=(http://downloads.sourceforge.net/libusb/libusb-${pkgver}.tar.bz2)
+options=(!libtool)
+replaces=(libusb1)
+md5sums=('37d34e6eaa69a4b645a19ff4ca63ceef')
+
+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
+}



[arch-commits] Commit in dhcpcd/trunk (PKGBUILD)

2011-11-03 Thread Ronald van Haren
Date: Thursday, November 3, 2011 @ 16:11:56
  Author: ronald
Revision: 141980

sign package

Modified:
  dhcpcd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:11:39 UTC (rev 141979)
+++ PKGBUILD2011-11-03 20:11:56 UTC (rev 141980)
@@ -5,7 +5,7 @@
 
 pkgname=dhcpcd
 pkgver=5.2.12
-pkgrel=1
+pkgrel=2
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="http://roy.marples.name/dhcpcd/";
 arch=('i686' 'x86_64')



[arch-commits] Commit in libusb/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:11:39
  Author: tpowa
Revision: 141979

signed rebuild and added check function

Modified:
  libusb/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:10:28 UTC (rev 141978)
+++ PKGBUILD2011-11-03 20:11:39 UTC (rev 141979)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 pkgname=libusb
 pkgver=1.0.8
-pkgrel=1
+pkgrel=2
 depends=('glibc')
 pkgdesc="Library to enable user space application programs to communicate with 
USB devices."
 arch=(i686 x86_64)
@@ -19,6 +19,11 @@
   make
 }
 
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
 package () {
   cd "${srcdir}/${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" install



[arch-commits] Commit in librpcsecgss/repos (6 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:10:28
  Author: tpowa
Revision: 141978

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  librpcsecgss/repos/testing-i686/
  librpcsecgss/repos/testing-i686/PKGBUILD
(from rev 141977, librpcsecgss/trunk/PKGBUILD)
  librpcsecgss/repos/testing-i686/librpcsecgss-0.18-heimdal.patch
(from rev 141977, librpcsecgss/trunk/librpcsecgss-0.18-heimdal.patch)
  librpcsecgss/repos/testing-x86_64/
  librpcsecgss/repos/testing-x86_64/PKGBUILD
(from rev 141977, librpcsecgss/trunk/PKGBUILD)
  librpcsecgss/repos/testing-x86_64/librpcsecgss-0.18-heimdal.patch
(from rev 141977, librpcsecgss/trunk/librpcsecgss-0.18-heimdal.patch)

+
 testing-i686/PKGBUILD  |   32 ++
 testing-i686/librpcsecgss-0.18-heimdal.patch   |   33 +++
 testing-x86_64/PKGBUILD|   32 ++
 testing-x86_64/librpcsecgss-0.18-heimdal.patch |   33 +++
 4 files changed, 130 insertions(+)

Copied: librpcsecgss/repos/testing-i686/PKGBUILD (from rev 141977, 
librpcsecgss/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 20:10:28 UTC (rev 141978)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Andrew Krawchyk , Marco Lima 
+
+pkgname=librpcsecgss
+pkgver=0.19
+pkgrel=7
+pkgdesc="Library for RPCSECGSS support"
+arch=('i686' 'x86_64')
+url="http://www.citi.umich.edu/projects/nfsv4/linux/";
+license=('GPL')
+depends=('glibc' 'krb5' 'libgssglue')
+makedepends=('pkg-config' 'autoconf')
+options=('!libtool')
+source=("http://www.citi.umich.edu/projects/nfsv4/linux/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('b45ed565bdc3099023aa35830ec92997')
+
+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
+}

Copied: librpcsecgss/repos/testing-i686/librpcsecgss-0.18-heimdal.patch (from 
rev 141977, librpcsecgss/trunk/librpcsecgss-0.18-heimdal.patch)
===
--- testing-i686/librpcsecgss-0.18-heimdal.patch
(rev 0)
+++ testing-i686/librpcsecgss-0.18-heimdal.patch2011-11-03 20:10:28 UTC 
(rev 141978)
@@ -0,0 +1,33 @@
+diff -NaurwB librpcsecgss-0.18.orig/configure.in librpcsecgss-0.18/configure.in
+--- librpcsecgss-0.18.orig/configure.in2008-04-09 00:05:40.0 
+0200
 librpcsecgss-0.18/configure.in 2008-06-12 19:05:51.0 +0200
+@@ -12,10 +12,15 @@
+ AC_PROG_RANLIB
+ 
+ # Checks for libraries.
+-PKG_CHECK_MODULES([GSSGLUE], [libgssglue >= 0.1], [],
++PKG_CHECK_MODULES([GSSGLUE], [libgssglue >= 0.1],
++  [echo GSSGLUE found; GSSAPI_IMPLEMENTATION=libgssglue],
++  [PKG_CHECK_MODULES([GSSGLUE], [heimdal-gssapi],
++[echo HEIMDAL found; GSSAPI_IMPLEMENTATION=heimdal-gssapi],
+   [AC_MSG_ERROR([Unable to locate information required to use libgssglue.
+   If you have pkgconfig installed, you might try setting environment
+-  variable PKG_CONFIG_PATH to /usr/local/lib/pkgconfig])])
++variable PKG_CONFIG_PATH to /usr/local/lib/pkgconfig])])])
++
++AC_SUBST([GSSAPI_IMPLEMENTATION])
+ 
+ # Checks for header files.
+ AC_HEADER_STDC
+diff -NaurwB librpcsecgss-0.18.orig/librpcsecgss.pc.in 
librpcsecgss-0.18/librpcsecgss.pc.in
+--- librpcsecgss-0.18.orig/librpcsecgss.pc.in  2007-09-06 17:39:04.0 
+0200
 librpcsecgss-0.18/librpcsecgss.pc.in   2008-06-12 19:06:40.0 
+0200
+@@ -5,7 +5,7 @@
+ 
+ Name: librpcsecgss
+ Description: Library that implements rpcsec_gss interface.
+-Requires: libgssglue
++Requires: @GSSAPI_IMPLEMENTATION@
+ Version: @PACKAGE_VERSION@
+ Libs: -L@libdir@ -lrpcsecgss
+ Cflags: -I@includedir@/rpcsecgss

Copied: librpcsecgss/repos/testing-x86_64/PKGBUILD (from rev 141977, 
librpcsecgss/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 20:10:28 UTC (rev 141978)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Andrew Krawchyk , Marco Lima 
+
+pkgname=librpcsecgss
+pkgver=0.19
+pkgrel=7
+pkgdesc="Library for RPCSECGSS support"
+arch=('i686' 'x86_64')
+url="http://www.citi.umich.edu/projects/nfsv4/linux/";
+license=('GPL')
+depends=('glibc' 'krb5' 'libgssglue')
+makedepends=('pkg-config' 'autoconf')
+options=('!libtool')
+source=("http://www.citi.umich.edu/projects/nfsv4/linux/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('b45ed565bdc3099023aa35830ec92997')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+

[arch-commits] Commit in librpcsecgss/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:10:04
  Author: tpowa
Revision: 141977

signed rebuild and added check function

Modified:
  librpcsecgss/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 20:08:42 UTC (rev 141976)
+++ PKGBUILD2011-11-03 20:10:04 UTC (rev 141977)
@@ -4,7 +4,7 @@
 
 pkgname=librpcsecgss
 pkgver=0.19
-pkgrel=5
+pkgrel=7
 pkgdesc="Library for RPCSECGSS support"
 arch=('i686' 'x86_64')
 url="http://www.citi.umich.edu/projects/nfsv4/linux/";
@@ -21,6 +21,11 @@
   make
 }
 
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   make DESTDIR="$pkgdir/" install



[arch-commits] Commit in iputils/repos (8 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:08:42
  Author: tpowa
Revision: 141976

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  iputils/repos/testing-i686/
  iputils/repos/testing-i686/PKGBUILD
(from rev 141975, iputils/trunk/PKGBUILD)
  iputils/repos/testing-i686/iputils-s20101006-manpages.patch
(from rev 141975, iputils/trunk/iputils-s20101006-manpages.patch)
  iputils/repos/testing-i686/permission-fix.patch
(from rev 141975, iputils/trunk/permission-fix.patch)
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 141975, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/iputils-s20101006-manpages.patch
(from rev 141975, iputils/trunk/iputils-s20101006-manpages.patch)
  iputils/repos/testing-x86_64/permission-fix.patch
(from rev 141975, iputils/trunk/permission-fix.patch)

-+
 testing-i686/PKGBUILD   |   65 +
 testing-i686/iputils-s20101006-manpages.patch   | 1044 ++
 testing-i686/permission-fix.patch   |   15 
 testing-x86_64/PKGBUILD |   65 +
 testing-x86_64/iputils-s20101006-manpages.patch | 1044 ++
 testing-x86_64/permission-fix.patch |   15 
 6 files changed, 2248 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 141975:141976 to see the changes.


[arch-commits] Commit in iputils/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 16:08:11
  Author: tpowa
Revision: 141975

signed rebuild

Modified:
  iputils/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 19:53:55 UTC (rev 141974)
+++ PKGBUILD2011-11-03 20:08:11 UTC (rev 141975)
@@ -5,7 +5,7 @@
 pkgname=iputils
 pkgver=20101006
 _traceroutever=1.4a12
-pkgrel=1
+pkgrel=2
 pkgdesc="IP Configuration Utilities (and Ping)"
 arch=('i686' 'x86_64')
 license=('GPL')



[arch-commits] Commit in ttf-thai/repos/extra-any (6 files)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 15:53:55
  Author: eric
Revision: 141974

archrelease: copy trunk to extra-any

Added:
  ttf-thai/repos/extra-any/LICENSE
(from rev 141973, ttf-thai/trunk/LICENSE)
  ttf-thai/repos/extra-any/PKGBUILD
(from rev 141973, ttf-thai/trunk/PKGBUILD)
  ttf-thai/repos/extra-any/ttf.install
(from rev 141973, ttf-thai/trunk/ttf.install)
Deleted:
  ttf-thai/repos/extra-any/LICENSE
  ttf-thai/repos/extra-any/PKGBUILD
  ttf-thai/repos/extra-any/ttf.install

-+
 LICENSE |  300 +-
 PKGBUILD|   66 ++--
 ttf.install |   30 ++---
 3 files changed, 198 insertions(+), 198 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2011-11-03 19:53:29 UTC (rev 141973)
+++ LICENSE 2011-11-03 19:53:55 UTC (rev 141974)
@@ -1,150 +0,0 @@
-This package collects Thai scalable fonts available in free licenses, and
-maintains and distributes them under GNU General Public License with
-original authors' permissions.
-
-Some fonts cannot be GPL, because they are based on fonts with different
-licenses. See the list of such fonts at the end of this file.
-
-Copyright:
-
-   - Kinnari:
-
-   Copyright (C) 1999 Db Type. All Rights Reserved.
-   Copyright (C) 2007 National Electronics and Computer Technology Center.
-   All Rights Reserved.
-
-   - Garuda:
-
-   Generated by NECTEC for Public Domain.
-   Modified under GNU General Public License by TLWG.
-
-   - Norasi:
-
-   Copyright (C) 1999, The National Font Project (v.beta). 
-   Yannis Haralambous, Virach Sornlertlamvanich and Anutara Tantraporn.
-   All rights reserved.
-   Modified under GNU General Public License, with creators' permission,
-   by Thai Linux Working Group (TLWG).
-
-   - Loma:
-
-   Copyright (C) 2003, NECTEC. All rights reserved.
-
-   - TlwgMono:
-
-   Copyright (C) 2003 Poonlap Veerathanabutr 
-
-   - Tlwg Typewriter:
-
-   Copyright (C) 2003, 2004 Poonlap Veerathanabutr 
-
-   - Tlwg Typist:
-
-   Tlwg Typist, based on Poonlap Veerathanabutr's Tlwg Typewriter.
-
-   Copyright (C) 2005-2006 Theppitak Karoonboonyanan. Tlwg Typewriter,
-   Free Thai Pseudo Monospace outline font.
-
-   Copyright (C) 2003, 2004 Poonlap Veerathanabutr 
-
-   - Purisa:
-
-   Copyright (C) 2003, 2004 Poonlap Veerathanabutr 
-   , GPL license
-
-   - Sawasdee:
-
-   Copyright (C) 2007 Pol Udomwittayanukul .
-   All rights reserved.
-
-   - Umpush:
-
-   Copyright (C) 2003 NECTEC. All rights reserved.
-   Copyright (c) 2007 Widhaya Trisarnwadhana .
-   All rights reserved.
-
-License:
-
-   This font is free software; you can redistribute it and/or modify it
-   under the terms of the GNU General Public License as published by the
-   Free Software Foundation; either version 2 of the License, or (at your
-   option) any later version.
-
-   This font is distributed in the hope that it will be useful, but
-   WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this font; if not, write to the Free Software Foundation,
-   Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-
-   As a special exception, if you create a document which uses this font,
-   and embed this font or unaltered portions of this font into the
-   document, this font does not by itself cause the resulting document
-   to be covered by the GNU General Public License. This exception does
-   not however invalidate any other reasons why the document might be
-   covered by the GNU General Public License. If you modify this font,
-   you may extend this exception to your version of the font, but you
-   are not obligated to do so. If you do not wish to do so, delete this
-   exception statement from your version.
-
-See included GPL file for the GNU General Public License (GPL) terms.
-
-
-* Non-GPL Fonts:
-
-- Waree:
-
-Copyright:
-
-   Copyright (C) 2003 by Bitstream, Inc. All Rights Reserved.
-   TLWG changes are in public domain.
-
-   Bitstream Vera is a trademark of Bitstream, Inc.
-
-License:
-
-   Permission is hereby granted, free of charge, to any person obtaining
-   a copy of the fonts accompanying this license ("Fonts") and associated
-   documentation files (the "Font Software"), to reproduce and distribute
-   the Font Software, including without limitation the rights to use,
-   copy, merge, publish, distribute, and/or sell copies of the Font
-   Software, and to permit persons to whom the Font Software is furnished
-   to do so, subject to the fol

[arch-commits] Commit in ttf-thai/trunk (PKGBUILD)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 15:53:29
  Author: eric
Revision: 141973

Upstream update

Modified:
  ttf-thai/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 19:01:44 UTC (rev 141972)
+++ PKGBUILD2011-11-03 19:53:29 UTC (rev 141973)
@@ -3,7 +3,7 @@
 # Contributor: Camille Moncelier 
 
 pkgname=ttf-thai
-pkgver=0.4.16
+pkgver=0.4.17
 pkgrel=1
 pkgdesc="A collection of basic Thai fonts"
 arch=('any')
@@ -14,7 +14,7 @@
 install=ttf.install
 
source=("ftp://linux.thai.net/pub/ThaiLinux/software/thai-ttf/thai-ttf-${pkgver}.tar.gz";
 'LICENSE')
-sha1sums=('49f94f0a25463b906b1ada02db85dbe3ccd8c7d3'
+sha1sums=('a11b2a74d3fb5cb4f7ffb42d9a94b2e2d88b4169'
   '39a8c3eb83856f9dff63a3493f891a702d3fa802')
 
 package() {



[arch-commits] Commit in ppp/repos (24 files)

2011-11-03 Thread Thomas Bächler
Date: Thursday, November 3, 2011 @ 15:01:44
  Author: thomas
Revision: 141972

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  ppp/repos/testing-i686/
  ppp/repos/testing-i686/PKGBUILD
(from rev 141971, ppp/trunk/PKGBUILD)
  ppp/repos/testing-i686/ip-down
(from rev 141971, ppp/trunk/ip-down)
  ppp/repos/testing-i686/ip-down.d.dns.sh
(from rev 141971, ppp/trunk/ip-down.d.dns.sh)
  ppp/repos/testing-i686/ip-up
(from rev 141971, ppp/trunk/ip-up)
  ppp/repos/testing-i686/ip-up.d.dns.sh
(from rev 141971, ppp/trunk/ip-up.d.dns.sh)
  ppp/repos/testing-i686/options
(from rev 141971, ppp/trunk/options)
  ppp/repos/testing-i686/plog
(from rev 141971, ppp/trunk/plog)
  ppp/repos/testing-i686/poff
(from rev 141971, ppp/trunk/poff)
  ppp/repos/testing-i686/pon
(from rev 141971, ppp/trunk/pon)
  ppp/repos/testing-i686/pon.1
(from rev 141971, ppp/trunk/pon.1)
  ppp/repos/testing-i686/ppp
(from rev 141971, ppp/trunk/ppp)
  ppp/repos/testing-x86_64/
  ppp/repos/testing-x86_64/PKGBUILD
(from rev 141971, ppp/trunk/PKGBUILD)
  ppp/repos/testing-x86_64/ip-down
(from rev 141971, ppp/trunk/ip-down)
  ppp/repos/testing-x86_64/ip-down.d.dns.sh
(from rev 141971, ppp/trunk/ip-down.d.dns.sh)
  ppp/repos/testing-x86_64/ip-up
(from rev 141971, ppp/trunk/ip-up)
  ppp/repos/testing-x86_64/ip-up.d.dns.sh
(from rev 141971, ppp/trunk/ip-up.d.dns.sh)
  ppp/repos/testing-x86_64/options
(from rev 141971, ppp/trunk/options)
  ppp/repos/testing-x86_64/plog
(from rev 141971, ppp/trunk/plog)
  ppp/repos/testing-x86_64/poff
(from rev 141971, ppp/trunk/poff)
  ppp/repos/testing-x86_64/pon
(from rev 141971, ppp/trunk/pon)
  ppp/repos/testing-x86_64/pon.1
(from rev 141971, ppp/trunk/pon.1)
  ppp/repos/testing-x86_64/ppp
(from rev 141971, ppp/trunk/ppp)

-+
 testing-i686/PKGBUILD   |   80 
 testing-i686/ip-down|   12 +
 testing-i686/ip-down.d.dns.sh   |3 
 testing-i686/ip-up  |   12 +
 testing-i686/ip-up.d.dns.sh |7 
 testing-i686/options|  352 ++
 testing-i686/plog   |7 
 testing-i686/poff   |  103 +++
 testing-i686/pon|   32 +++
 testing-i686/pon.1  |  121 +
 testing-i686/ppp|   36 +++
 testing-x86_64/PKGBUILD |   80 
 testing-x86_64/ip-down  |   12 +
 testing-x86_64/ip-down.d.dns.sh |3 
 testing-x86_64/ip-up|   12 +
 testing-x86_64/ip-up.d.dns.sh   |7 
 testing-x86_64/options  |  352 ++
 testing-x86_64/plog |7 
 testing-x86_64/poff |  103 +++
 testing-x86_64/pon  |   32 +++
 testing-x86_64/pon.1|  121 +
 testing-x86_64/ppp  |   36 +++
 22 files changed, 1530 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 141971:141972 to see the changes.


[arch-commits] Commit in ppp/trunk (PKGBUILD)

2011-11-03 Thread Thomas Bächler
Date: Thursday, November 3, 2011 @ 15:00:52
  Author: thomas
Revision: 141971

upgpkg: ppp 2.4.5-3: rebuild and sign

Modified:
  ppp/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 18:57:47 UTC (rev 141970)
+++ PKGBUILD2011-11-03 19:00:52 UTC (rev 141971)
@@ -2,7 +2,7 @@
 # Maintainer: Thomas Baechler 
 pkgname=ppp
 pkgver=2.4.5
-pkgrel=2
+pkgrel=3
 pkgdesc="A daemon which implements the Point-to-Point Protocol for dial-up 
networking"
 arch=(i686 x86_64) 
 url="http://www.samba.org/ppp/";



[arch-commits] Commit in libpcap/repos (8 files)

2011-11-03 Thread Thomas Bächler
Date: Thursday, November 3, 2011 @ 14:57:47
  Author: thomas
Revision: 141970

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libpcap/repos/testing-i686/
  
libpcap/repos/testing-i686/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch
(from rev 141969, 
libpcap/trunk/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch)
  
libpcap/repos/testing-i686/Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch
(from rev 141969, 
libpcap/trunk/Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch)
  libpcap/repos/testing-i686/PKGBUILD
(from rev 141969, libpcap/trunk/PKGBUILD)
  libpcap/repos/testing-x86_64/
  
libpcap/repos/testing-x86_64/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch
(from rev 141969, 
libpcap/trunk/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch)
  
libpcap/repos/testing-x86_64/Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch
(from rev 141969, 
libpcap/trunk/Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch)
  libpcap/repos/testing-x86_64/PKGBUILD
(from rev 141969, libpcap/trunk/PKGBUILD)

---+
 testing-i686/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch   |  
344 ++
 testing-i686/Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch   |  
159 
 testing-i686/PKGBUILD |   
41 +
 testing-x86_64/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch |  
344 ++
 testing-x86_64/Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch |  
159 
 testing-x86_64/PKGBUILD   |   
41 +
 6 files changed, 1088 insertions(+)

Copied: 
libpcap/repos/testing-i686/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch
 (from rev 141969, 
libpcap/trunk/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch)
===
--- testing-i686/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch 
(rev 0)
+++ testing-i686/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch 
2011-11-03 18:57:47 UTC (rev 141970)
@@ -0,0 +1,344 @@
+From bc937fc4ff6715e9bee939041fa02be0755d7d58 Mon Sep 17 00:00:00 2001
+From: Guy Harris 
+Date: Sat, 13 Nov 2010 17:42:47 -0800
+Subject: [PATCH] Add support for libnl 2.x, adapted from a newer version of 
the iw command.
+
+---
+ config.h.in  |3 ++
+ configure|  108 +++---
+ configure.in |   40 ++
+ pcap-linux.c |   58 ---
+ 4 files changed, 184 insertions(+), 25 deletions(-)
+
+diff --git a/config.h.in b/config.h.in
+index f988e8f..3b9ce3c 100644
+--- a/config.h.in
 b/config.h.in
+@@ -52,6 +52,9 @@
+ /* if libnl exists */
+ #undef HAVE_LIBNL
+ 
++/* if libnl exists and is version 2.x */
++#undef HAVE_LIBNL_2_x
++
+ /* Define to 1 if you have the  header file. */
+ #undef HAVE_LIMITS_H
+ 
+diff --git a/configure b/configure
+index c99c1ab..7338dee 100755
+--- a/configure
 b/configure
+@@ -7340,7 +7340,93 @@ fi
+ 
+ 
+   if test x$with_libnl != xno ; then
+-  { echo "$as_me:$LINENO: checking for nl_handle_alloc in -lnl" 
>&5
++  #
++  # Try libnl 2.x first.
++  #
++  { echo "$as_me:$LINENO: checking for nl_socket_alloc in -lnl" 
>&5
++echo $ECHO_N "checking for nl_socket_alloc in -lnl... $ECHO_C" >&6; }
++if test "${ac_cv_lib_nl_nl_socket_alloc+set}" = set; then
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
++  ac_check_lib_save_LIBS=$LIBS
++LIBS="-lnl  $LIBS"
++cat >conftest.$ac_ext <<_ACEOF
++/* confdefs.h.  */
++_ACEOF
++cat confdefs.h >>conftest.$ac_ext
++cat >>conftest.$ac_ext <<_ACEOF
++/* end confdefs.h.  */
++
++/* Override any GCC internal prototype to avoid an error.
++   Use char because int might match the return type of a GCC
++   builtin and then its argument prototype would still apply.  */
++#ifdef __cplusplus
++extern "C"
++#endif
++char nl_socket_alloc ();
++int
++main ()
++{
++return nl_socket_alloc ();
++  ;
++  return 0;
++}
++_ACEOF
++rm -f conftest.$ac_objext conftest$ac_exeext
++if { (ac_try="$ac_link"
++case "(($ac_try" in
++  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
++  *) ac_try_echo=$ac_try;;
++esac
++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
++  (eval "$ac_link") 2>conftest.er1
++  ac_status=$?
++  grep -v '^ *+' conftest.er1 >conftest.err
++  rm -f conftest.er1
++  cat conftest.err >&5
++  echo "$as_me:$LINENO: \$? = $ac_status" >&5
++  (exit $ac_status); } && {
++   test -z "$ac_c_werror_flag" ||
++   test ! -s conftest.err
++   } && test -s conftest$ac_exeext &&
++   $as_test_x conftest$ac_exeext; then
++  ac_cv_lib_nl_nl_socket_alloc=yes
++else
++  echo "$as_me: failed program was:" >&5
++sed 's/^/| /' conftest.$ac_ext >&5
++
++ 

[arch-commits] Commit in libpcap/trunk (PKGBUILD)

2011-11-03 Thread Thomas Bächler
Date: Thursday, November 3, 2011 @ 14:57:28
  Author: thomas
Revision: 141969

upgpkg: libpcap 1.1.1-4: rebuild and sign

Modified:
  libpcap/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 18:52:56 UTC (rev 141968)
+++ PKGBUILD2011-11-03 18:57:28 UTC (rev 141969)
@@ -3,23 +3,23 @@
 
 pkgname=libpcap
 pkgver=1.1.1
-pkgrel=3
+pkgrel=4
 pkgdesc="A system-independent interface for user-level packet capture"
 arch=('i686' 'x86_64')
 url="http://www.tcpdump.org/";
 license=('BSD')
 depends=('glibc' 'libnl' 'sh')
 makedepends=('flex')
-source=(http://www.tcpdump.org/release/libpcap-${pkgver}.tar.gz
-Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch
-Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch)
-sha256sums=('508cca15547e55d1318498b838456a21770c450beb2dc7d7d4a96d90816e5a85'
-'194aa268a3397be3ba406b7102dbdbc14fc16c6e4b535d0a0fab6b04d414563a'
-'f1f31c3e2b064f4c9d0e643e8ed1874a65ec17f770362f8ffa3b3f9ee9dc71bb')
+source=(http://www.tcpdump.org/release/libpcap-${pkgver}.tar.gz)
+#Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch
+#Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch)
+sha256sums=('508cca15547e55d1318498b838456a21770c450beb2dc7d7d4a96d90816e5a85')
+#'194aa268a3397be3ba406b7102dbdbc14fc16c6e4b535d0a0fab6b04d414563a'
+
#'f1f31c3e2b064f4c9d0e643e8ed1874a65ec17f770362f8ffa3b3f9ee9dc71bb')
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 -i 
"${srcdir}"/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch
-  patch -p1 -i 
"${srcdir}"/Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch
+  #patch -p1 -i 
"${srcdir}"/Add-support-for-libnl-2.x-adapted-from-a-newer-versi.patch
+  #patch -p1 -i 
"${srcdir}"/Libnl-2.x-returns-its-own-error-codes-not-errnos-han.patch
   ./configure --prefix=/usr --enable-ipv6
   make
 }



[arch-commits] Commit in crda/repos (7 files)

2011-11-03 Thread Thomas Bächler
Date: Thursday, November 3, 2011 @ 14:52:56
  Author: thomas
Revision: 141968

db-move: moved crda from [testing] to [core] (x86_64)

Added:
  crda/repos/core-x86_64/PKGBUILD
(from rev 141965, crda/repos/testing-x86_64/PKGBUILD)
  crda/repos/core-x86_64/crda.install
(from rev 141965, crda/repos/testing-x86_64/crda.install)
  crda/repos/core-x86_64/crda.rc
(from rev 141965, crda/repos/testing-x86_64/crda.rc)
Deleted:
  crda/repos/core-x86_64/PKGBUILD
  crda/repos/core-x86_64/crda.install
  crda/repos/core-x86_64/crda.rc
  crda/repos/testing-x86_64/

--+
 PKGBUILD |   78 -
 crda.install |   36 +-
 crda.rc  |   52 +++---
 3 files changed, 83 insertions(+), 83 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-11-03 18:52:55 UTC (rev 141967)
+++ core-x86_64/PKGBUILD2011-11-03 18:52:56 UTC (rev 141968)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler 
-
-pkgname=crda
-pkgver=1.1.1
-pkgrel=3
-pkgdesc="Central Regulatory Domain Agent for wireless networks"
-arch=(i686 x86_64)
-url="http://wireless.kernel.org/en/developers/Regulatory/CRDA";
-license=('custom')
-depends=('wireless-regdb' 'libnl' 'libgcrypt' 'udev' 'iw')
-makedepends=('python-m2crypto')
-install=crda.install
-source=(http://wireless.kernel.org/download/crda/${pkgname}-${pkgver}.tar.bz2
-crda.rc)
-md5sums=('5fc77af68b3e21736b8ef2f8b061c810'
- '014eef3f8655e9a130064ec6891317fc')
-  
-build() {
-  msg "Compiling crda ..."
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  sed 's|^#!/usr/bin/env python|#!/usr/bin/python2|' -i utils/key2pub.py
-  make crda regdbdump
-}
-
-package() {
-  # Install crda, regdbdump and udev rules
-  msg "Installing crda ..."
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  # This rule automatically sets the regulatory domain when cfg80211 is loaded
-  echo 'ACTION=="add" SUBSYSTEM=="module", DEVPATH=="/module/cfg80211", 
RUN+="/etc/rc.d/wireless-regdom start >/dev/null"' >> 
"${pkgdir}"/lib/udev/rules.d/85-regulatory.rules
-
-  msg "Installing license ..."
-  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE 
"${pkgdir}"/usr/share/licenses/crda/LICENSE
-  
-  msg "Installing boot script ..."
-  install -D -m755 "${srcdir}"/crda.rc "${pkgdir}"/etc/rc.d/wireless-regdom
-}

Copied: crda/repos/core-x86_64/PKGBUILD (from rev 141965, 
crda/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-11-03 18:52:56 UTC (rev 141968)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=crda
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Central Regulatory Domain Agent for wireless networks"
+arch=(i686 x86_64)
+url="http://wireless.kernel.org/en/developers/Regulatory/CRDA";
+license=('custom')
+depends=('wireless-regdb' 'libnl' 'libgcrypt' 'udev' 'iw')
+makedepends=('python-m2crypto')
+install=crda.install
+source=(http://wireless.kernel.org/download/crda/${pkgname}-${pkgver}.tar.bz2
+crda.rc)
+md5sums=('5226f65aebacf94baaf820f8b4e06df4'
+ '014eef3f8655e9a130064ec6891317fc')
+  
+build() {
+  msg "Compiling crda ..."
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  sed 's|^#!/usr/bin/env python|#!/usr/bin/python2|' -i utils/key2pub.py
+  make crda regdbdump
+}
+
+package() {
+  # Install crda, regdbdump and udev rules
+  msg "Installing crda ..."
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # This rule automatically sets the regulatory domain when cfg80211 is loaded
+  echo 'ACTION=="add" SUBSYSTEM=="module", DEVPATH=="/module/cfg80211", 
RUN+="/etc/rc.d/wireless-regdom start >/dev/null"' >> 
"${pkgdir}"/lib/udev/rules.d/85-regulatory.rules
+
+  msg "Installing license ..."
+  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE 
"${pkgdir}"/usr/share/licenses/crda/LICENSE
+  
+  msg "Installing boot script ..."
+  install -D -m755 "${srcdir}"/crda.rc "${pkgdir}"/etc/rc.d/wireless-regdom
+}

Deleted: core-x86_64/crda.install
===
--- core-x86_64/crda.install2011-11-03 18:52:55 UTC (rev 141967)
+++ core-x86_64/crda.install2011-11-03 18:52:56 UTC (rev 141968)
@@ -1,18 +0,0 @@
-## arg 1:  the new package version
-post_install() {
-  echo "Uncomment the right regulatory domain in /etc/conf.d/wireless-regdom."
-  echo "It will automatically be set when necessary."
-}
-
-## arg 1:  the new package version
-## arg 2:  the old package version
-post_upgrade() {
-  # In an upgrade from 1.0.1-1 or older, the wireless-regdom file moves from 
the crda package
-  # to the new wireless-regdb package. If the user changed the file, it is 
save to overwrite the one
- 

[arch-commits] Commit in crda/repos (7 files)

2011-11-03 Thread Thomas Bächler
Date: Thursday, November 3, 2011 @ 14:52:55
  Author: thomas
Revision: 141967

db-move: moved crda from [testing] to [core] (i686)

Added:
  crda/repos/core-i686/PKGBUILD
(from rev 141965, crda/repos/testing-i686/PKGBUILD)
  crda/repos/core-i686/crda.install
(from rev 141965, crda/repos/testing-i686/crda.install)
  crda/repos/core-i686/crda.rc
(from rev 141965, crda/repos/testing-i686/crda.rc)
Deleted:
  crda/repos/core-i686/PKGBUILD
  crda/repos/core-i686/crda.install
  crda/repos/core-i686/crda.rc
  crda/repos/testing-i686/

--+
 PKGBUILD |   78 -
 crda.install |   36 +-
 crda.rc  |   52 +++---
 3 files changed, 83 insertions(+), 83 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-11-03 18:52:54 UTC (rev 141966)
+++ core-i686/PKGBUILD  2011-11-03 18:52:55 UTC (rev 141967)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler 
-
-pkgname=crda
-pkgver=1.1.1
-pkgrel=3
-pkgdesc="Central Regulatory Domain Agent for wireless networks"
-arch=(i686 x86_64)
-url="http://wireless.kernel.org/en/developers/Regulatory/CRDA";
-license=('custom')
-depends=('wireless-regdb' 'libnl' 'libgcrypt' 'udev' 'iw')
-makedepends=('python-m2crypto')
-install=crda.install
-source=(http://wireless.kernel.org/download/crda/${pkgname}-${pkgver}.tar.bz2
-crda.rc)
-md5sums=('5fc77af68b3e21736b8ef2f8b061c810'
- '014eef3f8655e9a130064ec6891317fc')
-  
-build() {
-  msg "Compiling crda ..."
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  sed 's|^#!/usr/bin/env python|#!/usr/bin/python2|' -i utils/key2pub.py
-  make crda regdbdump
-}
-
-package() {
-  # Install crda, regdbdump and udev rules
-  msg "Installing crda ..."
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  # This rule automatically sets the regulatory domain when cfg80211 is loaded
-  echo 'ACTION=="add" SUBSYSTEM=="module", DEVPATH=="/module/cfg80211", 
RUN+="/etc/rc.d/wireless-regdom start >/dev/null"' >> 
"${pkgdir}"/lib/udev/rules.d/85-regulatory.rules
-
-  msg "Installing license ..."
-  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE 
"${pkgdir}"/usr/share/licenses/crda/LICENSE
-  
-  msg "Installing boot script ..."
-  install -D -m755 "${srcdir}"/crda.rc "${pkgdir}"/etc/rc.d/wireless-regdom
-}

Copied: crda/repos/core-i686/PKGBUILD (from rev 141965, 
crda/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-11-03 18:52:55 UTC (rev 141967)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=crda
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Central Regulatory Domain Agent for wireless networks"
+arch=(i686 x86_64)
+url="http://wireless.kernel.org/en/developers/Regulatory/CRDA";
+license=('custom')
+depends=('wireless-regdb' 'libnl' 'libgcrypt' 'udev' 'iw')
+makedepends=('python-m2crypto')
+install=crda.install
+source=(http://wireless.kernel.org/download/crda/${pkgname}-${pkgver}.tar.bz2
+crda.rc)
+md5sums=('5226f65aebacf94baaf820f8b4e06df4'
+ '014eef3f8655e9a130064ec6891317fc')
+  
+build() {
+  msg "Compiling crda ..."
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  sed 's|^#!/usr/bin/env python|#!/usr/bin/python2|' -i utils/key2pub.py
+  make crda regdbdump
+}
+
+package() {
+  # Install crda, regdbdump and udev rules
+  msg "Installing crda ..."
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # This rule automatically sets the regulatory domain when cfg80211 is loaded
+  echo 'ACTION=="add" SUBSYSTEM=="module", DEVPATH=="/module/cfg80211", 
RUN+="/etc/rc.d/wireless-regdom start >/dev/null"' >> 
"${pkgdir}"/lib/udev/rules.d/85-regulatory.rules
+
+  msg "Installing license ..."
+  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE 
"${pkgdir}"/usr/share/licenses/crda/LICENSE
+  
+  msg "Installing boot script ..."
+  install -D -m755 "${srcdir}"/crda.rc "${pkgdir}"/etc/rc.d/wireless-regdom
+}

Deleted: core-i686/crda.install
===
--- core-i686/crda.install  2011-11-03 18:52:54 UTC (rev 141966)
+++ core-i686/crda.install  2011-11-03 18:52:55 UTC (rev 141967)
@@ -1,18 +0,0 @@
-## arg 1:  the new package version
-post_install() {
-  echo "Uncomment the right regulatory domain in /etc/conf.d/wireless-regdom."
-  echo "It will automatically be set when necessary."
-}
-
-## arg 1:  the new package version
-## arg 2:  the old package version
-post_upgrade() {
-  # In an upgrade from 1.0.1-1 or older, the wireless-regdom file moves from 
the crda package
-  # to the new wireless-regdb package. If the user changed the file, it is 
save to overwrite the one
-  # from wireless-regdb by the user-defined one
-  if [ $(vercm

[arch-commits] Commit in wireless-regdb/repos (7 files)

2011-11-03 Thread Thomas Bächler
Date: Thursday, November 3, 2011 @ 14:52:54
  Author: thomas
Revision: 141966

db-move: moved wireless-regdb from [testing] to [core] (any)

Added:
  wireless-regdb/repos/core-any/PKGBUILD
(from rev 141965, wireless-regdb/repos/testing-any/PKGBUILD)
  wireless-regdb/repos/core-any/crda.conf.d
(from rev 141965, wireless-regdb/repos/testing-any/crda.conf.d)
  wireless-regdb/repos/core-any/wireless-regdb.install
(from rev 141965, wireless-regdb/repos/testing-any/wireless-regdb.install)
Deleted:
  wireless-regdb/repos/core-any/PKGBUILD
  wireless-regdb/repos/core-any/crda.conf.d
  wireless-regdb/repos/core-any/wireless-regdb.install
  wireless-regdb/repos/testing-any/

+
 PKGBUILD   |   92 +++
 crda.conf.d|8 ++--
 wireless-regdb.install |   26 ++---
 3 files changed, 63 insertions(+), 63 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2011-11-03 18:49:44 UTC (rev 141965)
+++ core-any/PKGBUILD   2011-11-03 18:52:54 UTC (rev 141966)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler 
-
-pkgname=wireless-regdb
-pkgver=2010.11.24
-pkgrel=1
-pkgdesc="Central Regulatory Domain Database"
-arch=('any')
-url="http://wireless.kernel.org/en/developers/Regulatory/CRDA";
-backup=(etc/conf.d/wireless-regdom)
-license=('custom')
-depends=('sh')
-install=wireless-regdb.install
-source=(http://wireless.kernel.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2
-crda.conf.d)
-sha256sums=('77b33ac88baef36839e777d5e235be160f5c90dfcb058f4e7707f1873d9c73d3'
-'192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b')
-
-package() {
-  # Install and verify regulatory.bin file
-  msg "Installing and verifying the regulatory.bin file ..."
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  # If crda is installed, the wireless regdb can be verified using regdbdump
-  # Keep this step optional so no depend/makedepend loop is created
-  if [ -x /sbin/regdbdump ]; then
-if /sbin/regdbdump ${pkgdir}/usr/lib/crda/regulatory.bin > /dev/null; then
-  msg "Regulatory database verification was succesful."
-else
-  error "Regulatory database verification failed."
-  return 1
-fi
-  else
-warning "Crda is not installed, regulatory database could not be verified."
-  fi
-  
-  msg "Installing /etc/conf.d/wireless-regdom ..."
-  install -D -m644 ${srcdir}/crda.conf.d ${pkgdir}/etc/conf.d/wireless-regdom
-  for dom in $(grep ^country ${srcdir}/${pkgname}-${pkgver}/db.txt | cut -d' ' 
-f2 | sed 's|:||g'); do
-echo "#WIRELESS_REGDOM=\"${dom}\"" >> 
${pkgdir}/etc/conf.d/wireless-regdom.tmp
-  done
-  sort -u ${pkgdir}/etc/conf.d/wireless-regdom.tmp >> 
${pkgdir}/etc/conf.d/wireless-regdom
-  rm -f ${pkgdir}/etc/conf.d/wireless-regdom.tmp
-
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: wireless-regdb/repos/core-any/PKGBUILD (from rev 141965, 
wireless-regdb/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2011-11-03 18:52:54 UTC (rev 141966)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=wireless-regdb
+pkgver=2011.04.28
+pkgrel=1
+pkgdesc="Central Regulatory Domain Database"
+arch=('any')
+url="http://wireless.kernel.org/en/developers/Regulatory/CRDA";
+backup=(etc/conf.d/wireless-regdom)
+license=('custom')
+depends=('sh')
+install=wireless-regdb.install
+source=(http://wireless.kernel.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+crda.conf.d)
+sha256sums=('ed1c3e134e34ba5f93594f6f76b90861fe8d24359c064839a2bb78736416642b'
+'192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b')
+
+package() {
+  # Install and verify regulatory.bin file
+  msg "Installing and verifying the regulatory.bin file ..."
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # If crda is installed, the wireless regdb can be verified using regdbdump
+  # Keep this step optional so no depend/makedepend loop is created
+  if [ -x /sbin/regdbdump ]; then
+if /sbin/regdbdump ${pkgdir}/usr/lib/crda/regulatory.bin > /dev/null; then
+  msg "Regulatory database verification was succesful."
+else
+  error "Regulatory database verification failed."
+  return 1
+fi
+  else
+warning "Crda is not installed, regulatory database could not be verified."
+  fi
+  
+  msg "Installing /etc/conf.d/wireless-regdom ..."
+  install -D -m644 ${srcdir}/crda.conf.d ${pkgdir}/etc/conf.d/wireless-regdom
+  for dom in $(grep ^country ${srcdir}/${pkgname}-${pkgver}/db.txt | cut -d' ' 
-f2 | sed 's|:||g'); do
+echo "#WIRELESS_REGDOM=\"${dom}\"" >> 
${pkgdir}/etc/conf.d/wireless-regdom.tmp
+  done
+  sort -u ${pkgdir}/etc/conf.d/wireless-regdom.

[arch-commits] Commit in cryptsetup/repos (14 files)

2011-11-03 Thread Thomas Bächler
Date: Thursday, November 3, 2011 @ 14:49:44
  Author: thomas
Revision: 141965

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  cryptsetup/repos/testing-i686/PKGBUILD
(from rev 141964, cryptsetup/trunk/PKGBUILD)
  
cryptsetup/repos/testing-i686/cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch
(from rev 141964, 
cryptsetup/trunk/cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch)
  cryptsetup/repos/testing-i686/encrypt_hook
(from rev 141964, cryptsetup/trunk/encrypt_hook)
  cryptsetup/repos/testing-i686/encrypt_install
(from rev 141964, cryptsetup/trunk/encrypt_install)
  cryptsetup/repos/testing-x86_64/PKGBUILD
(from rev 141964, cryptsetup/trunk/PKGBUILD)
  
cryptsetup/repos/testing-x86_64/cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch
(from rev 141964, 
cryptsetup/trunk/cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch)
  cryptsetup/repos/testing-x86_64/encrypt_hook
(from rev 141964, cryptsetup/trunk/encrypt_hook)
  cryptsetup/repos/testing-x86_64/encrypt_install
(from rev 141964, cryptsetup/trunk/encrypt_install)
Deleted:
  cryptsetup/repos/testing-i686/PKGBUILD
  cryptsetup/repos/testing-i686/encrypt_hook
  cryptsetup/repos/testing-i686/encrypt_install
  cryptsetup/repos/testing-x86_64/PKGBUILD
  cryptsetup/repos/testing-x86_64/encrypt_hook
  cryptsetup/repos/testing-x86_64/encrypt_install

+
 testing-i686/PKGBUILD  
|   73 +-
 testing-i686/cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch   
|   94 +++
 testing-i686/encrypt_hook  
|  296 +-
 testing-i686/encrypt_install   
|   52 -
 testing-x86_64/PKGBUILD
|   73 +-
 testing-x86_64/cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch 
|   94 +++
 testing-x86_64/encrypt_hook
|  296 +-
 testing-x86_64/encrypt_install 
|   52 -
 8 files changed, 612 insertions(+), 418 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 141964:141965 to see the changes.


[arch-commits] Commit in cryptsetup/trunk (2 files)

2011-11-03 Thread Thomas Bächler
Date: Thursday, November 3, 2011 @ 14:49:18
  Author: thomas
Revision: 141964

upgpkg: cryptsetup 1.4.0-2 - fix display of key size in plain volumes

Added:
  
cryptsetup/trunk/cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch
Modified:
  cryptsetup/trunk/PKGBUILD

-+
 PKGBUILD|   23 +-
 cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch |   94 
++
 2 files changed, 107 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 18:23:02 UTC (rev 141963)
+++ PKGBUILD2011-11-03 18:49:18 UTC (rev 141964)
@@ -2,7 +2,7 @@
 # Maintainer: Thomas Bächler 
 pkgname=cryptsetup
 pkgver=1.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Userspace setup tool for transparent encryption of block devices 
using dm-crypt"
 arch=(i686 x86_64)
 license=('GPL')
@@ -13,23 +13,26 @@
 options=('!libtool' '!emptydirs')
 source=(http://cryptsetup.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
 encrypt_hook
-   encrypt_install)
+   encrypt_install
+   cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch)
 sha256sums=('96d682853c8019cfeae0b21250cd2d00af42e46251807e8dbda2ff8427c2e9ed'
 '811bbea1337106ad811731c746d73ee81039bad00aef52398e3a377ad0766757'
-'d4380195351b70abf8fcb3cd19461879c55a7a07e4915d1f0365b295b112a573')
+'d4380195351b70abf8fcb3cd19461879c55a7a07e4915d1f0365b295b112a573'
+'6fa1d3172014ba3ba96f7a67acbcae7f26b24a61abb84b3917f526a54f81dd87')
 build() {
-  cd $srcdir/$pkgname-${pkgver}
+  cd "${srcdir}"/$pkgname-${pkgver}
+  patch -p0 -i 
"${srcdir}"/cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch
   ./configure --prefix=/usr --disable-static --sbindir=/sbin --libdir=/lib
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-${pkgver}
-  make DESTDIR=$pkgdir install
+  cd "${srcdir}"/$pkgname-${pkgver}
+  make DESTDIR="${pkgdir}" install
   # install hook
-  install -D -m644 $srcdir/encrypt_hook $pkgdir/lib/initcpio/hooks/encrypt
-  install -D -m644 $srcdir/encrypt_install $pkgdir/lib/initcpio/install/encrypt
+  install -D -m644 "${srcdir}"/encrypt_hook 
"${pkgdir}"/lib/initcpio/hooks/encrypt
+  install -D -m644 "${srcdir}"/encrypt_install 
"${pkgdir}"/lib/initcpio/install/encrypt
   # Fix pkgconfig location
-  install -d -m755 $pkgdir/usr/lib
-  mv $pkgdir/lib/pkgconfig $pkgdir/usr/lib/
+  install -d -m755 "${pkgdir}"/usr/lib
+  mv "${pkgdir}"/lib/pkgconfig "${pkgdir}"/usr/lib/
 }

Added: cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch
===
--- cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch 
(rev 0)
+++ cryptsetup-fix-crypt_get_volume_key_size-for-plain-device.patch 
2011-11-03 18:49:18 UTC (rev 141964)
@@ -0,0 +1,94 @@
+Index: ChangeLog
+===
+--- ChangeLog  (Revision 664)
 ChangeLog  (Revision 665)
+@@ -1,3 +1,6 @@
++2011-10-27  Milan Broz  
++  * Fix crypt_get_volume_key_size() for plain device.
++
+ 2011-10-25  Milan Broz  
+   * Print informative message in isLuks only in verbose mode.
+   * Version 1.4.0.
+Index: tests/api-test.c
+===
+--- tests/api-test.c   (Revision 664)
 tests/api-test.c   (Revision 665)
+@@ -660,6 +660,11 @@
+ 
+   FAIL_(crypt_init_by_name_and_header(&cd, CDEVICE_1, H_DEVICE),"can't 
init plain device by header device");
+   OK_(crypt_init_by_name(&cd, CDEVICE_1));
++  OK_(strcmp(cipher_mode,crypt_get_cipher_mode(cd)));
++  OK_(strcmp(cipher,crypt_get_cipher(cd)));
++  EQ_((int)key_size, crypt_get_volume_key_size(cd));
++  EQ_(params.skip, crypt_get_iv_offset(cd));
++  EQ_(params.offset, crypt_get_data_offset(cd));
+   OK_(crypt_deactivate(cd, CDEVICE_1));
+   crypt_free(cd);
+ 
+Index: lib/setup.c
+===
+--- lib/setup.c(Revision 664)
 lib/setup.c(Revision 665)
+@@ -56,6 +56,7 @@
+   char *plain_cipher;
+   char *plain_cipher_mode;
+   char *plain_uuid;
++  unsigned int plain_key_size;
+ 
+   /* used in CRYPT_LOOPAES */
+   struct crypt_params_loopaes loopaes_hdr;
+@@ -677,6 +678,7 @@
+   (*cd)->plain_hdr.hash = NULL; /* no way to get this */
+   (*cd)->plain_hdr.offset = dmd.offset;
+   (*cd)->plain_hdr.skip = dmd.iv_offset;
++  (*cd)->plain_key_size = dmd.vk->keylength;
+ 
+   r = crypt_parse_name_and_mode(dmd.cipher, cipher, NULL, 
cipher_mode);
+   if (!r) {
+@@ -754,6 +756,7 @@
+   return -EINVAL;
+   }
+ 
++  cd->plain_key_size = volume_key_size;
+   cd->volume_ke

[arch-commits] Commit in monodevelop-debugger-gdb/repos (4 files)

2011-11-03 Thread Daniel Isenmann
Date: Thursday, November 3, 2011 @ 14:23:02
  Author: daniel
Revision: 141963

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  monodevelop-debugger-gdb/repos/extra-i686/PKGBUILD
(from rev 141962, monodevelop-debugger-gdb/trunk/PKGBUILD)
  monodevelop-debugger-gdb/repos/extra-x86_64/PKGBUILD
(from rev 141962, monodevelop-debugger-gdb/trunk/PKGBUILD)
Deleted:
  monodevelop-debugger-gdb/repos/extra-i686/PKGBUILD
  monodevelop-debugger-gdb/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   50 
 extra-x86_64/PKGBUILD |   50 
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-11-03 18:22:36 UTC (rev 141962)
+++ extra-i686/PKGBUILD 2011-11-03 18:23:02 UTC (rev 141963)
@@ -1,25 +0,0 @@
-# Maintainer: Daniel Isenmann 
-
-pkgname=monodevelop-debugger-gdb
-pkgver=2.8.1
-pkgrel=1
-pkgdesc="Mono Debugger support"
-arch=('i686' 'x86_64')
-url="http://monodevelop.com";
-license=('GPL')
-depends=('monodevelop>=2.8.1' 'gdb')
-makedepends=('mono')
-source=(http://download.mono-project.com/sources/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('398c3b49fa1698857499a6e8261becf3')
-
-build() {
-  export MONO_SHARED_DIR="${srcdir}/.wabi"
-  mkdir -p "${MONO_SHARED_DIR}"
-  
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make || return 1
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: monodevelop-debugger-gdb/repos/extra-i686/PKGBUILD (from rev 141962, 
monodevelop-debugger-gdb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-11-03 18:23:02 UTC (rev 141963)
@@ -0,0 +1,25 @@
+# Maintainer: Daniel Isenmann 
+
+pkgname=monodevelop-debugger-gdb
+pkgver=2.8.2
+pkgrel=1
+pkgdesc="Mono Debugger support"
+arch=('i686' 'x86_64')
+url="http://monodevelop.com";
+license=('GPL')
+depends=('monodevelop>=2.8.2' 'gdb')
+makedepends=('mono')
+source=(http://download.mono-project.com/sources/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('0c1661c05d8a3fbe56cf1122d9730b26')
+
+build() {
+  export MONO_SHARED_DIR="${srcdir}/.wabi"
+  mkdir -p "${MONO_SHARED_DIR}"
+  
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make || return 1
+  make DESTDIR="${pkgdir}" install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-11-03 18:22:36 UTC (rev 141962)
+++ extra-x86_64/PKGBUILD   2011-11-03 18:23:02 UTC (rev 141963)
@@ -1,25 +0,0 @@
-# Maintainer: Daniel Isenmann 
-
-pkgname=monodevelop-debugger-gdb
-pkgver=2.8.1
-pkgrel=1
-pkgdesc="Mono Debugger support"
-arch=('i686' 'x86_64')
-url="http://monodevelop.com";
-license=('GPL')
-depends=('monodevelop>=2.8.1' 'gdb')
-makedepends=('mono')
-source=(http://download.mono-project.com/sources/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('398c3b49fa1698857499a6e8261becf3')
-
-build() {
-  export MONO_SHARED_DIR="${srcdir}/.wabi"
-  mkdir -p "${MONO_SHARED_DIR}"
-  
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make || return 1
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: monodevelop-debugger-gdb/repos/extra-x86_64/PKGBUILD (from rev 141962, 
monodevelop-debugger-gdb/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-11-03 18:23:02 UTC (rev 141963)
@@ -0,0 +1,25 @@
+# Maintainer: Daniel Isenmann 
+
+pkgname=monodevelop-debugger-gdb
+pkgver=2.8.2
+pkgrel=1
+pkgdesc="Mono Debugger support"
+arch=('i686' 'x86_64')
+url="http://monodevelop.com";
+license=('GPL')
+depends=('monodevelop>=2.8.2' 'gdb')
+makedepends=('mono')
+source=(http://download.mono-project.com/sources/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('0c1661c05d8a3fbe56cf1122d9730b26')
+
+build() {
+  export MONO_SHARED_DIR="${srcdir}/.wabi"
+  mkdir -p "${MONO_SHARED_DIR}"
+  
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make || return 1
+  make DESTDIR="${pkgdir}" install
+}
+



[arch-commits] Commit in monodevelop-debugger-gdb/trunk (PKGBUILD)

2011-11-03 Thread Daniel Isenmann
Date: Thursday, November 3, 2011 @ 14:22:36
  Author: daniel
Revision: 141962

upgpkg: monodevelop-debugger-gdb 2.8.2-1

New upstream bugfix release

Modified:
  monodevelop-debugger-gdb/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 18:22:10 UTC (rev 141961)
+++ PKGBUILD2011-11-03 18:22:36 UTC (rev 141962)
@@ -1,16 +1,16 @@
 # Maintainer: Daniel Isenmann 
 
 pkgname=monodevelop-debugger-gdb
-pkgver=2.8.1
+pkgver=2.8.2
 pkgrel=1
 pkgdesc="Mono Debugger support"
 arch=('i686' 'x86_64')
 url="http://monodevelop.com";
 license=('GPL')
-depends=('monodevelop>=2.8.1' 'gdb')
+depends=('monodevelop>=2.8.2' 'gdb')
 makedepends=('mono')
 
source=(http://download.mono-project.com/sources/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('398c3b49fa1698857499a6e8261becf3')
+md5sums=('0c1661c05d8a3fbe56cf1122d9730b26')
 
 build() {
   export MONO_SHARED_DIR="${srcdir}/.wabi"



[arch-commits] Commit in monodevelop/repos (12 files)

2011-11-03 Thread Daniel Isenmann
Date: Thursday, November 3, 2011 @ 14:22:10
  Author: daniel
Revision: 141961

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  monodevelop/repos/extra-i686/PKGBUILD
(from rev 141960, monodevelop/trunk/PKGBUILD)
  monodevelop/repos/extra-i686/monodevelop.install
(from rev 141960, monodevelop/trunk/monodevelop.install)
  monodevelop/repos/extra-i686/monodevelop_gnome3.patch
(from rev 141960, monodevelop/trunk/monodevelop_gnome3.patch)
  monodevelop/repos/extra-x86_64/PKGBUILD
(from rev 141960, monodevelop/trunk/PKGBUILD)
  monodevelop/repos/extra-x86_64/monodevelop.install
(from rev 141960, monodevelop/trunk/monodevelop.install)
  monodevelop/repos/extra-x86_64/monodevelop_gnome3.patch
(from rev 141960, monodevelop/trunk/monodevelop_gnome3.patch)
Deleted:
  monodevelop/repos/extra-i686/PKGBUILD
  monodevelop/repos/extra-i686/monodevelop.install
  monodevelop/repos/extra-i686/monodevelop_gnome3.patch
  monodevelop/repos/extra-x86_64/PKGBUILD
  monodevelop/repos/extra-x86_64/monodevelop.install
  monodevelop/repos/extra-x86_64/monodevelop_gnome3.patch

---+
 extra-i686/PKGBUILD   |   64 +-
 extra-i686/monodevelop.install|   38 +++---
 extra-i686/monodevelop_gnome3.patch   |  202 
 extra-x86_64/PKGBUILD |   64 +-
 extra-x86_64/monodevelop.install  |   38 +++---
 extra-x86_64/monodevelop_gnome3.patch |  202 
 6 files changed, 304 insertions(+), 304 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-11-03 18:21:09 UTC (rev 141960)
+++ extra-i686/PKGBUILD 2011-11-03 18:22:10 UTC (rev 141961)
@@ -1,32 +0,0 @@
-# Maintainer: Daniel Isenmann 
-# Contributor: Timm Preetz 
-# Contributor: Giovanni Scafora 
-
-pkgname=monodevelop
-pkgver=2.8.1
-pkgrel=1
-pkgdesc="An IDE primarily designed for C# and other .NET languages"
-arch=('i686' 'x86_64')
-url="http://www.monodevelop.org";
-license=('GPL')
-depends=('mono>=2.10.5' 'mono-addins>=0.6.2' 'gnome-sharp' 
'gecko-sharp-2.0>=0.10')
-options=(!makeflags)
-install=monodevelop.install
-source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('02c3f0f75e1d21d72ac5cd0b373d0e58')
-
-build() {
-  export MONO_SHARED_DIR=$srcdir/src/.wabi
-  mkdir -p $MONO_SHARED_DIR
-
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --disable-update-mimedb --disable-update-desktopdb
-  make || return 1
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  rm -r $MONO_SHARED_DIR
-}
-

Copied: monodevelop/repos/extra-i686/PKGBUILD (from rev 141960, 
monodevelop/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-11-03 18:22:10 UTC (rev 141961)
@@ -0,0 +1,32 @@
+# Maintainer: Daniel Isenmann 
+# Contributor: Timm Preetz 
+# Contributor: Giovanni Scafora 
+
+pkgname=monodevelop
+pkgver=2.8.2
+pkgrel=1
+pkgdesc="An IDE primarily designed for C# and other .NET languages"
+arch=('i686' 'x86_64')
+url="http://www.monodevelop.org";
+license=('GPL')
+depends=('mono>=2.10.5' 'mono-addins>=0.6.2' 'gnome-sharp' 
'gecko-sharp-2.0>=0.10')
+options=(!makeflags)
+install=monodevelop.install
+source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('4a445e251d5e8a12a8aa4ae22f3a6841')
+
+build() {
+  export MONO_SHARED_DIR=$srcdir/src/.wabi
+  mkdir -p $MONO_SHARED_DIR
+
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --disable-update-mimedb --disable-update-desktopdb
+  make || return 1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  rm -r $MONO_SHARED_DIR
+}
+

Deleted: extra-i686/monodevelop.install
===
--- extra-i686/monodevelop.install  2011-11-03 18:21:09 UTC (rev 141960)
+++ extra-i686/monodevelop.install  2011-11-03 18:22:10 UTC (rev 141961)
@@ -1,19 +0,0 @@
-post_install() {
-  update-mime-database /usr/share/mime 1> /dev/null
-  echo "update desktop mime database..."
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  /bin/true
-}
-
-post_remove() {
-  update-mime-database /usr/share/mime 1> /dev/null
-  echo "update desktop mime database..."
-  update-desktop-database -q
-}

Copied: monodevelop/repos/extra-i686/monodevelop.install (from rev 141960, 
monodevelop/trunk/monodevelop.install)
===
--- extra-i686/monodevelop.install  (rev 0)
+++ extra-i686/monodevelop.install  2011-11-03 18:22:10 UTC (rev 141961)
@@ -0,0 +1,19 @@
+post_install() {
+  update-mime-database /usr/share/mime 1> /dev/null
+  echo "update desktop mime dat

[arch-commits] Commit in monodevelop/trunk (PKGBUILD)

2011-11-03 Thread Daniel Isenmann
Date: Thursday, November 3, 2011 @ 14:21:09
  Author: daniel
Revision: 141960

upgpkg: monodevelop 2.8.2-1

New upstream bugfix release

Modified:
  monodevelop/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 17:33:58 UTC (rev 141959)
+++ PKGBUILD2011-11-03 18:21:09 UTC (rev 141960)
@@ -3,7 +3,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=monodevelop
-pkgver=2.8.1
+pkgver=2.8.2
 pkgrel=1
 pkgdesc="An IDE primarily designed for C# and other .NET languages"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 options=(!makeflags)
 install=monodevelop.install
 
source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('02c3f0f75e1d21d72ac5cd0b373d0e58')
+md5sums=('4a445e251d5e8a12a8aa4ae22f3a6841')
 
 build() {
   export MONO_SHARED_DIR=$srcdir/src/.wabi



[arch-commits] Commit in xfce4-clipman-plugin/repos (8 files)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 13:33:58
  Author: eric
Revision: 141959

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xfce4-clipman-plugin/repos/extra-i686/PKGBUILD
(from rev 141958, xfce4-clipman-plugin/trunk/PKGBUILD)
  xfce4-clipman-plugin/repos/extra-i686/xfce4-clipman-plugin.install
(from rev 141958, xfce4-clipman-plugin/trunk/xfce4-clipman-plugin.install)
  xfce4-clipman-plugin/repos/extra-x86_64/PKGBUILD
(from rev 141958, xfce4-clipman-plugin/trunk/PKGBUILD)
  xfce4-clipman-plugin/repos/extra-x86_64/xfce4-clipman-plugin.install
(from rev 141958, xfce4-clipman-plugin/trunk/xfce4-clipman-plugin.install)
Deleted:
  xfce4-clipman-plugin/repos/extra-i686/PKGBUILD
  xfce4-clipman-plugin/repos/extra-i686/xfce4-clipman-plugin.install
  xfce4-clipman-plugin/repos/extra-x86_64/PKGBUILD
  xfce4-clipman-plugin/repos/extra-x86_64/xfce4-clipman-plugin.install

---+
 extra-i686/PKGBUILD   |   74 +---
 extra-i686/xfce4-clipman-plugin.install   |   24 -
 extra-x86_64/PKGBUILD |   74 +---
 extra-x86_64/xfce4-clipman-plugin.install |   24 -
 4 files changed, 96 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-11-03 17:33:22 UTC (rev 141958)
+++ extra-i686/PKGBUILD 2011-11-03 17:33:58 UTC (rev 141959)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: tobias 
-# Contributor: Aurelien Foret 
-
-pkgname=xfce4-clipman-plugin
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="A clipboard plugin for the Xfce4 panel"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin";
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libunique' 'libxtst')
-makedepends=('intltool')
-options=('!libtool')
-install=${pkgname}.install
-source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('9df2441d188e90d5304e5da84dca9969')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i 's|$(TARGET_DIR)/C/media|$(docdir)/html/C/media|' doc/Makefile.in
-  ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --libexecdir=/usr/lib \
-   --localstatedir=/var \
-   --disable-static \
-   --enable-unique \
-   --disable-debug
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-
-}

Copied: xfce4-clipman-plugin/repos/extra-i686/PKGBUILD (from rev 141958, 
xfce4-clipman-plugin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-11-03 17:33:58 UTC (rev 141959)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-clipman-plugin
+pkgver=1.2.2
+pkgrel=1
+pkgdesc="A clipboard plugin for the Xfce4 panel"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin";
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libunique' 'libxtst')
+makedepends=('intltool')
+options=('!libtool')
+install=${pkgname}.install
+source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('60df7769a8271d7fcab177210f4291e8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -i 's|$(TARGET_DIR)/C/media|$(docdir)/html/C/media|' doc/Makefile.in
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib \
+   --localstatedir=/var \
+   --disable-static \
+   --enable-unique \
+   --disable-debug
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/xfce4-clipman-plugin.install
===
--- extra-i686/xfce4-clipman-plugin.install 2011-11-03 17:33:22 UTC (rev 
141958)
+++ extra-i686/xfce4-clipman-plugin.install 2011-11-03 17:33:58 UTC (rev 
141959)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-

Copied: xfce4-clipman-plugin/repos/extra-i686/xfce4-clipman-plugin.install 
(from rev 141958, xfce4-clipman-plugin/trunk/xfce4-clipman-plugin.install)
===
--- extra-i686/xfce4-clipman-plugin.install (rev 0)
+++ extra-i686/xfce4-clipman-plugin.install 2011-11-03 17:33:58 UTC (rev 
141959)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove()

[arch-commits] Commit in xfce4-clipman-plugin/trunk (PKGBUILD)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 13:33:22
  Author: eric
Revision: 141958

Upstream update, Fix license

Modified:
  xfce4-clipman-plugin/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 14:30:48 UTC (rev 141957)
+++ PKGBUILD2011-11-03 17:33:22 UTC (rev 141958)
@@ -3,11 +3,11 @@
 # Contributor: Aurelien Foret 
 
 pkgname=xfce4-clipman-plugin
-pkgver=1.2.0
+pkgver=1.2.2
 pkgrel=1
 pkgdesc="A clipboard plugin for the Xfce4 panel"
 arch=('i686' 'x86_64')
-license=('custom')
+license=('GPL')
 url="http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin";
 groups=('xfce4-goodies')
 depends=('xfce4-panel' 'libunique' 'libxtst')
@@ -15,7 +15,7 @@
 options=('!libtool')
 install=${pkgname}.install
 
source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('9df2441d188e90d5304e5da84dca9969')
+md5sums=('60df7769a8271d7fcab177210f4291e8')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -33,6 +33,4 @@
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-
 }



[arch-commits] Commit in which/repos (6 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 10:30:48
  Author: allan
Revision: 141957

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  which/repos/testing-i686/
  which/repos/testing-i686/PKGBUILD
(from rev 141956, which/trunk/PKGBUILD)
  which/repos/testing-i686/which.install
(from rev 141956, which/trunk/which.install)
  which/repos/testing-x86_64/
  which/repos/testing-x86_64/PKGBUILD
(from rev 141956, which/trunk/PKGBUILD)
  which/repos/testing-x86_64/which.install
(from rev 141956, which/trunk/which.install)

--+
 testing-i686/PKGBUILD|   27 +++
 testing-i686/which.install   |   20 
 testing-x86_64/PKGBUILD  |   27 +++
 testing-x86_64/which.install |   20 
 4 files changed, 94 insertions(+)

Copied: which/repos/testing-i686/PKGBUILD (from rev 141956, 
which/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 14:30:48 UTC (rev 141957)
@@ -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
+}

Copied: which/repos/testing-i686/which.install (from rev 141956, 
which/trunk/which.install)
===
--- testing-i686/which.install  (rev 0)
+++ testing-i686/which.install  2011-11-03 14:30:48 UTC (rev 141957)
@@ -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
+}

Copied: which/repos/testing-x86_64/PKGBUILD (from rev 141956, 
which/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 14:30:48 UTC (rev 141957)
@@ -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
+}

Copied: which/repos/testing-x86_64/which.install (from rev 141956, 
which/trunk/which.install)
===
--- testing-x86_64/which.install(rev 0)
+++ testing-x86_64/which.install2011-11-03 14:30:48 UTC (rev 141957)
@@ -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/trunk (PKGBUILD)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 10:29:40
  Author: allan
Revision: 141956

signing rebuild

Modified:
  which/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 14:24:19 UTC (rev 141955)
+++ PKGBUILD2011-11-03 14:29:40 UTC (rev 141956)
@@ -4,7 +4,7 @@
 
 pkgname=which
 pkgver=2.20
-pkgrel=4
+pkgrel=5
 pkgdesc="A utility to show the full path of commands"
 arch=('i686' 'x86_64')
 url="http://www.xs4all.nl/~carlo17/which";



[arch-commits] Commit in texinfo/repos (6 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 10:24:19
  Author: allan
Revision: 141955

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  texinfo/repos/testing-i686/
  texinfo/repos/testing-i686/PKGBUILD
(from rev 141954, texinfo/trunk/PKGBUILD)
  texinfo/repos/testing-i686/texinfo.install
(from rev 141954, texinfo/trunk/texinfo.install)
  texinfo/repos/testing-x86_64/
  texinfo/repos/testing-x86_64/PKGBUILD
(from rev 141954, texinfo/trunk/PKGBUILD)
  texinfo/repos/testing-x86_64/texinfo.install
(from rev 141954, texinfo/trunk/texinfo.install)

+
 testing-i686/PKGBUILD  |   31 +++
 testing-i686/texinfo.install   |   21 +
 testing-x86_64/PKGBUILD|   31 +++
 testing-x86_64/texinfo.install |   21 +
 4 files changed, 104 insertions(+)

Copied: texinfo/repos/testing-i686/PKGBUILD (from rev 141954, 
texinfo/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 14:24:19 UTC (rev 141955)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Tom Newsom 
+
+pkgname=texinfo
+pkgver=4.13a
+pkgrel=6
+pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line 
documentation from a single source file"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/texinfo/";
+license=('GPL3')
+groups=('base')
+depends=('ncurses' 'findutils' 'gzip')
+install=texinfo.install
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('71ba711519209b5fb583fed2b3d86fcb'
+ 'db2ca82c831684cd7cef181234017c46')
+
+build() {
+  cd ${srcdir}/${pkgname}-4.13
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-4.13
+  make DESTDIR=${pkgdir} install
+
+  # fix this here as it prevents make from trying to rebuild manual pages
+  sed -i 's#A-z#A-Za-z#' ${pkgdir}/usr/bin/texi2dvi
+}

Copied: texinfo/repos/testing-i686/texinfo.install (from rev 141954, 
texinfo/trunk/texinfo.install)
===
--- testing-i686/texinfo.install(rev 0)
+++ testing-i686/texinfo.install2011-11-03 14:24:19 UTC (rev 141955)
@@ -0,0 +1,21 @@
+infodir=usr/share/info
+filelist=(info.info info-stnd.info texinfo texinfo-1 texinfo-2 texinfo-3)
+
+post_install() {
+  # Scan *all* info files on install
+  for file in $(find $infodir -type f ! -name dir); do
+  install-info $file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+pre_remove() {
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}

Copied: texinfo/repos/testing-x86_64/PKGBUILD (from rev 141954, 
texinfo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 14:24:19 UTC (rev 141955)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Tom Newsom 
+
+pkgname=texinfo
+pkgver=4.13a
+pkgrel=6
+pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line 
documentation from a single source file"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/texinfo/";
+license=('GPL3')
+groups=('base')
+depends=('ncurses' 'findutils' 'gzip')
+install=texinfo.install
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('71ba711519209b5fb583fed2b3d86fcb'
+ 'db2ca82c831684cd7cef181234017c46')
+
+build() {
+  cd ${srcdir}/${pkgname}-4.13
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-4.13
+  make DESTDIR=${pkgdir} install
+
+  # fix this here as it prevents make from trying to rebuild manual pages
+  sed -i 's#A-z#A-Za-z#' ${pkgdir}/usr/bin/texi2dvi
+}

Copied: texinfo/repos/testing-x86_64/texinfo.install (from rev 141954, 
texinfo/trunk/texinfo.install)
===
--- testing-x86_64/texinfo.install  (rev 0)
+++ testing-x86_64/texinfo.install  2011-11-03 14:24:19 UTC (rev 141955)
@@ -0,0 +1,21 @@
+infodir=usr/share/info
+filelist=(info.info info-stnd.info texinfo texinfo-1 texinfo-2 texinfo-3)
+
+post_install() {
+  # Scan *all* info files on install
+  for file in $(find $infodir -type f ! -name dir); do
+  install-info $file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+pre_remove() {
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+

[arch-commits] Commit in texinfo/trunk (PKGBUILD)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 10:23:24
  Author: allan
Revision: 141954

signing rebuild

Modified:
  texinfo/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 14:13:05 UTC (rev 141953)
+++ PKGBUILD2011-11-03 14:23:24 UTC (rev 141954)
@@ -4,7 +4,7 @@
 
 pkgname=texinfo
 pkgver=4.13a
-pkgrel=5
+pkgrel=6
 pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line 
documentation from a single source file"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/texinfo/";
@@ -12,8 +12,9 @@
 groups=('base')
 depends=('ncurses' 'findutils' 'gzip')
 install=texinfo.install
-source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('71ba711519209b5fb583fed2b3d86fcb')
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('71ba711519209b5fb583fed2b3d86fcb'
+ 'db2ca82c831684cd7cef181234017c46')
 
 build() {
   cd ${srcdir}/${pkgname}-4.13
@@ -25,6 +26,6 @@
   cd ${srcdir}/${pkgname}-4.13
   make DESTDIR=${pkgdir} install
 
-  # fix this here as it prevent make from trying to rebuild manual pages
+  # fix this here as it prevents make from trying to rebuild manual pages
   sed -i 's#A-z#A-Za-z#' ${pkgdir}/usr/bin/texi2dvi
 }



[arch-commits] Commit in tar/repos (8 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 10:13:05
  Author: allan
Revision: 141953

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  tar/repos/testing-i686/
  tar/repos/testing-i686/PKGBUILD
(from rev 141952, tar/trunk/PKGBUILD)
  tar/repos/testing-i686/tar.1
(from rev 141952, tar/trunk/tar.1)
  tar/repos/testing-i686/tar.install
(from rev 141952, tar/trunk/tar.install)
  tar/repos/testing-x86_64/
  tar/repos/testing-x86_64/PKGBUILD
(from rev 141952, tar/trunk/PKGBUILD)
  tar/repos/testing-x86_64/tar.1
(from rev 141952, tar/trunk/tar.1)
  tar/repos/testing-x86_64/tar.install
(from rev 141952, tar/trunk/tar.install)

+
 testing-i686/PKGBUILD  |   38 
 testing-i686/tar.1 |  367 +++
 testing-i686/tar.install   |   21 ++
 testing-x86_64/PKGBUILD|   38 
 testing-x86_64/tar.1   |  367 +++
 testing-x86_64/tar.install |   21 ++
 6 files changed, 852 insertions(+)

Copied: tar/repos/testing-i686/PKGBUILD (from rev 141952, tar/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 14:13:05 UTC (rev 141953)
@@ -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
+}

Copied: tar/repos/testing-i686/tar.1 (from rev 141952, tar/trunk/tar.1)
===
--- testing-i686/tar.1  (rev 0)
+++ testing-i686/tar.1  2011-11-03 14:13:05 UTC (rev 141953)
@@ -0,0 +1,367 @@
+.\" generated by script on Fri Aug 19 16:19:30 2011
+.Dd Aug 19, 2011
+.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 -tag -width flag
+.It \-[0\-7][lmh]
+specify drive and density
+.It Fl a , Fl \-auto\-compress
+use archive suffix to determine the compression program
+.It Fl \-add\-file Ns \= Ns Ar FILE
+add given FILE to the archive (useful if its name starts with a dash)
+.It Fl \-anchored
+patterns match file name start
+.It Fl \-no\-anchored
+patterns match after any `/' (default for exclusion)
+.It Fl \-atime\-preserve
+preserve access times on dumped files, either by restoring the times
+.It Fl \-no\-auto\-compress
+do not use archive suffix to determine the compression program
+.It Fl b , Fl \-blocking\-factor Ar BLOCKS
+BLOCKS x 512 bytes per record
+.It Fl B , Fl \-read\-full\-records
+reblock as we read (for 4.2BSD pipes)
+.It Fl

[arch-commits] Commit in tar/trunk (PKGBUILD tar.1)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 10:11:43
  Author: allan
Revision: 141952

signing rebuild, update man page

Modified:
  tar/trunk/PKGBUILD
  tar/trunk/tar.1

--+
 PKGBUILD |7 ---
 tar.1|9 ++---
 2 files changed, 10 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 13:36:47 UTC (rev 141951)
+++ PKGBUILD2011-11-03 14:11:43 UTC (rev 141952)
@@ -4,7 +4,7 @@
 
 pkgname=tar
 pkgver=1.26
-pkgrel=1
+pkgrel=2
 pkgdesc="Utility used to store, backup, and transport files"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/tar/tar.html";
@@ -13,10 +13,11 @@
 depends=('glibc' 'sh')
 options=('!emptydirs')
 install=tar.install
-source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
 tar.1)
 md5sums=('0ced6f20b9fa1bea588005b5ad4b52c1'
- 'e0538778516a284e3558c454b2576c2f')
+ '6618d5fe7785e138c27d7d6a24e998b2'
+ 'e97e7343f4e23724b4c48bca2f033e38')
 
 build() {
   cd ${srcdir}/$pkgname-$pkgver

Modified: tar.1
===
--- tar.1   2011-11-03 13:36:47 UTC (rev 141951)
+++ tar.1   2011-11-03 14:11:43 UTC (rev 141952)
@@ -1,5 +1,5 @@
-.\" generated by script on Wed Mar 10 17:01:09 2010
-.Dd Mar 10, 2010
+.\" generated by script on Fri Aug 19 16:19:30 2011
+.Dd Aug 19, 2011
 .Dt TAR 1
 .Sh NAME
 .Nm tar
@@ -110,6 +110,8 @@
 run script at end of each tape (implies -M)
 .It Fl \-force\-local
 archive file is local even if it has a colon
+.It Fl \-full\-time
+print file time to its full resolution
 .It Fl g , Fl \-listed\-incremental Ar FILE
 handle new GNU-format incremental backup
 .It Fl G , Fl \-incremental
@@ -283,7 +285,7 @@
 .It Fl \-no\-unquote
 do not unquote filenames read with -T
 .It Fl \-utc
-print file modification dates in UTC
+print file modification times in UTC
 .It Fl v , Fl \-verbose
 verbosely list files processed
 .It Fl V , Fl \-label Ar TEXT
@@ -329,6 +331,7 @@
 .Fl \-file
 is not specified.
 If this environment variable is unset, use stdin or stdout instead.
+.It Ev TAR_LONGLINK_100
 .El
 .Sh EXAMPLES
 Create archive.tar from files foo and bar.



[arch-commits] Commit in sed/repos (6 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 09:36:47
  Author: allan
Revision: 141951

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sed/repos/testing-i686/
  sed/repos/testing-i686/PKGBUILD
(from rev 141950, sed/trunk/PKGBUILD)
  sed/repos/testing-i686/sed.install
(from rev 141950, sed/trunk/sed.install)
  sed/repos/testing-x86_64/
  sed/repos/testing-x86_64/PKGBUILD
(from rev 141950, sed/trunk/PKGBUILD)
  sed/repos/testing-x86_64/sed.install
(from rev 141950, sed/trunk/sed.install)

+
 testing-i686/PKGBUILD  |   34 ++
 testing-i686/sed.install   |   20 
 testing-x86_64/PKGBUILD|   34 ++
 testing-x86_64/sed.install |   20 
 4 files changed, 108 insertions(+)

Copied: sed/repos/testing-i686/PKGBUILD (from rev 141950, sed/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 13:36:47 UTC (rev 141951)
@@ -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
+}

Copied: sed/repos/testing-i686/sed.install (from rev 141950, 
sed/trunk/sed.install)
===
--- testing-i686/sed.install(rev 0)
+++ testing-i686/sed.install2011-11-03 13:36:47 UTC (rev 141951)
@@ -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
+}

Copied: sed/repos/testing-x86_64/PKGBUILD (from rev 141950, sed/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 13:36:47 UTC (rev 141951)
@@ -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
+}

Copied: sed/repos/testing-x86_64/sed.install (from rev 141950, 
sed/trunk/sed.install)
===
--- testing-x86_64/sed.install  (rev 0)
+++ testing-x86_64/sed.install  2011-11-03 13:36:47 UTC (rev 141951)
@@ -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/trunk (PKGBUILD)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 09:35:35
  Author: allan
Revision: 141950

signing rebuild

Modified:
  sed/trunk/PKGBUILD

--+
 PKGBUILD |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 12:23:03 UTC (rev 141949)
+++ PKGBUILD2011-11-03 13:35:35 UTC (rev 141950)
@@ -4,7 +4,7 @@
 
 pkgname=sed
 pkgver=4.2.1
-pkgrel=3
+pkgrel=4
 pkgdesc="GNU stream editor"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/sed";
@@ -13,21 +13,22 @@
 depends=('acl' 'sh')
 makedepends=('gettext')
 install=sed.install
-source=(ftp://ftp.gnu.org/pub/gnu/sed/${pkgname}-${pkgver}.tar.gz)
-md5sums=('f0fd4d7da574d4707e442285fd2d3b86')
+source=(ftp://ftp.gnu.org/pub/gnu/sed/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('f0fd4d7da574d4707e442285fd2d3b86'
+ '91871b227dbf0916e019ba1fb0fbfdf3')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr --bindir=/bin --without-included-regex
   make
 }
 
 check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${srcdir}/${pkgname}-${pkgver}
   make check
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 }



[arch-commits] Commit in readline/repos (8 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 08:23:03
  Author: allan
Revision: 141949

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  readline/repos/testing-i686/
  readline/repos/testing-i686/PKGBUILD
(from rev 141948, readline/trunk/PKGBUILD)
  readline/repos/testing-i686/inputrc
(from rev 141948, readline/trunk/inputrc)
  readline/repos/testing-i686/readline.install
(from rev 141948, readline/trunk/readline.install)
  readline/repos/testing-x86_64/
  readline/repos/testing-x86_64/PKGBUILD
(from rev 141948, readline/trunk/PKGBUILD)
  readline/repos/testing-x86_64/inputrc
(from rev 141948, readline/trunk/inputrc)
  readline/repos/testing-x86_64/readline.install
(from rev 141948, readline/trunk/readline.install)

-+
 testing-i686/PKGBUILD   |   62 ++
 testing-i686/inputrc|   36 ++
 testing-i686/readline.install   |   17 ++
 testing-x86_64/PKGBUILD |   62 ++
 testing-x86_64/inputrc  |   36 ++
 testing-x86_64/readline.install |   17 ++
 6 files changed, 230 insertions(+)

Copied: readline/repos/testing-i686/PKGBUILD (from rev 141948, 
readline/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 12:23:03 UTC (rev 141949)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: judd 
+
+pkgname=readline
+_basever=6.2
+_patchlevel=001 #prepare for some patches
+pkgver=$_basever.$_patchlevel
+pkgrel=3
+pkgdesc="GNU readline library"
+arch=('i686' 'x86_64')
+url="http://tiswww.case.edu/php/chet/readline/rltop.html";
+license=('GPL')
+depends=('glibc' 'ncurses')
+backup=('etc/inputrc')
+options=('!emptydirs')
+install=readline.install
+source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
+inputrc)
+if [ $_patchlevel -gt 00 ]; then
+for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
+source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 "%03d" $p){,.sig})
+done
+fi
+md5sums=('67948acb2ca081f23359d0256e9a271c'
+ '928f7d248320a65e43c2dc427e99582b'
+ '58d54966c1191db45973cb3191ac621a'
+ '83287d52a482f790dfb30ec0a8746669'
+ '8e6a51e2e0e6e45a82752e3692c111ac')
+
+build() {
+  cd ${srcdir}/${pkgname}-$_basever
+  for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
+msg "applying patch readline${_basever//./}-$(printf "%03d" $p)"
+patch -Np0 -i $srcdir/readline${_basever//./}-$(printf "%03d" $p)
+  done
+
+  # Remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+
+  # build with -fPIC for x86_64 (FS#15634)
+  [ $CARCH == "x86_64" ] && CFLAGS="$CFLAGS -fPIC"
+
+  ./configure --prefix=/usr --libdir=/lib
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-$_basever
+  make DESTDIR=${pkgdir} install
+  
+  install -Dm644 ${srcdir}/inputrc ${pkgdir}/etc/inputrc
+
+  # FHS recommends only shared libs in /lib
+  install -dm755 $pkgdir/usr/lib
+  mv $pkgdir/lib/*.a $pkgdir/usr/lib
+
+  # to make the linker find the shared lib and fix compile issues
+  cd ${pkgdir}/usr/lib
+  ln -sv /lib/libreadline.so .
+  ln -sv /lib/libhistory.so .
+}

Copied: readline/repos/testing-i686/inputrc (from rev 141948, 
readline/trunk/inputrc)
===
--- testing-i686/inputrc(rev 0)
+++ testing-i686/inputrc2011-11-03 12:23:03 UTC (rev 141949)
@@ -0,0 +1,36 @@
+# do not bell on tab-completion
+#set bell-style none
+
+set meta-flag on
+set input-meta on
+set convert-meta off
+set output-meta on
+
+$if mode=emacs
+
+# for linux console and RH/Debian xterm
+"\e[1~": beginning-of-line
+"\e[4~": end-of-line
+"\e[5~": beginning-of-history
+"\e[6~": end-of-history
+"\e[7~": beginning-of-line
+"\e[3~": delete-char
+"\e[2~": quoted-insert
+"\e[5C": forward-word
+"\e[5D": backward-word
+"\e\e[C": forward-word
+"\e\e[D": backward-word
+"\e[1;5C": forward-word
+"\e[1;5D": backward-word
+
+# for rxvt
+"\e[8~": end-of-line
+
+# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
+"\eOH": beginning-of-line
+"\eOF": end-of-line
+
+# for freebsd console
+"\e[H": beginning-of-line
+"\e[F": end-of-line
+$endif

Copied: readline/repos/testing-i686/readline.install (from rev 141948, 
readline/trunk/readline.install)
===
--- testing-i686/readline.install   (rev 0)
+++ testing-i686/readline.install   2011-11-03 12:23:03 UTC (rev 141949)
@@ -0,0 +1,17 @@
+infodir=usr/share/info
+filelist=(history.info readline.info rluserman.info)
+
+post_upgrade() {
+  [ -x usr/bin/install-info ] || return 

[arch-commits] Commit in readline/trunk (PKGBUILD)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 08:18:34
  Author: allan
Revision: 141948

signing rebuild

Modified:
  readline/trunk/PKGBUILD

--+
 PKGBUILD |   17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 12:12:51 UTC (rev 141947)
+++ PKGBUILD2011-11-03 12:18:34 UTC (rev 141948)
@@ -6,7 +6,7 @@
 _basever=6.2
 _patchlevel=001 #prepare for some patches
 pkgver=$_basever.$_patchlevel
-pkgrel=2
+pkgrel=3
 pkgdesc="GNU readline library"
 arch=('i686' 'x86_64')
 url="http://tiswww.case.edu/php/chet/readline/rltop.html";
@@ -15,23 +15,24 @@
 backup=('etc/inputrc')
 options=('!emptydirs')
 install=readline.install
-source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz
+source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
 inputrc)
 if [ $_patchlevel -gt 00 ]; then
 for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
-source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 "%03d" $p))
+source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf
 "%03d" $p){,.sig})
 done
 fi
 md5sums=('67948acb2ca081f23359d0256e9a271c'
+ '928f7d248320a65e43c2dc427e99582b'
  '58d54966c1191db45973cb3191ac621a'
- '83287d52a482f790dfb30ec0a8746669')
+ '83287d52a482f790dfb30ec0a8746669'
+ '8e6a51e2e0e6e45a82752e3692c111ac')
 
 build() {
   cd ${srcdir}/${pkgname}-$_basever
-  for p in ../readline${_basever//./}-*; do
-[ -e "$p" ] || continue
-msg "applying patch ${p}"
-patch -Np0 -i ${p}
+  for (( p=1; p<=$((10#${_patchlevel})); p++ )); do
+msg "applying patch readline${_basever//./}-$(printf "%03d" $p)"
+patch -Np0 -i $srcdir/readline${_basever//./}-$(printf "%03d" $p)
   done
 
   # Remove RPATH from shared objects (FS#14366)



[arch-commits] Commit in pkg-config/repos (6 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 08:12:51
  Author: allan
Revision: 141947

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  pkg-config/repos/testing-i686/
  pkg-config/repos/testing-i686/PKGBUILD
(from rev 141946, pkg-config/trunk/PKGBUILD)
  pkg-config/repos/testing-i686/autoconf-2.66.patch
(from rev 141946, pkg-config/trunk/autoconf-2.66.patch)
  pkg-config/repos/testing-x86_64/
  pkg-config/repos/testing-x86_64/PKGBUILD
(from rev 141946, pkg-config/trunk/PKGBUILD)
  pkg-config/repos/testing-x86_64/autoconf-2.66.patch
(from rev 141946, pkg-config/trunk/autoconf-2.66.patch)

+
 testing-i686/PKGBUILD  |   37 +++
 testing-i686/autoconf-2.66.patch   |   12 +++
 testing-x86_64/PKGBUILD|   37 +++
 testing-x86_64/autoconf-2.66.patch |   12 +++
 4 files changed, 98 insertions(+)

Copied: pkg-config/repos/testing-i686/PKGBUILD (from rev 141946, 
pkg-config/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 12:12:51 UTC (rev 141947)
@@ -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
+}

Copied: pkg-config/repos/testing-i686/autoconf-2.66.patch (from rev 141946, 
pkg-config/trunk/autoconf-2.66.patch)
===
--- testing-i686/autoconf-2.66.patch(rev 0)
+++ testing-i686/autoconf-2.66.patch2011-11-03 12:12:51 UTC (rev 141947)
@@ -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])

Copied: pkg-config/repos/testing-x86_64/PKGBUILD (from rev 141946, 
pkg-config/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 12:12:51 UTC (rev 141947)
@@ -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
+}

Copied: pkg-config/repos/testing-x86_64/autoconf-2.66.patch (from rev 141946, 
pkg-config/trunk/autoconf-2.66.patch)
===
--- testing-x86_64/autoconf-2.66.patch  (rev 0)
+++ testing-x86_64/autoconf-2.66.patch  2011-11-03 12:12:51 UTC (rev 141947)
@@ -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 pkg-config/trunk (PKGBUILD)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 08:11:45
  Author: allan
Revision: 141946

signing rebuild

Modified:
  pkg-config/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 12:04:44 UTC (rev 141945)
+++ PKGBUILD2011-11-03 12:11:45 UTC (rev 141946)
@@ -4,7 +4,7 @@
 
 pkgname=pkg-config
 pkgver=0.26
-pkgrel=1
+pkgrel=2
 pkgdesc="A system for managing library compile/link flags"
 arch=('i686' 'x86_64')
 url="http://pkgconfig.freedesktop.org/wiki/";
@@ -18,7 +18,8 @@
 md5sums=('47525c26a9ba7ba14bf85e01509a7234')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${srcdir}/${pkgname}-${pkgver}
+
   # Use system popt
   ./configure --prefix=/usr --with-installed-popt 
 
@@ -26,11 +27,11 @@
 }
 
 check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${srcdir}/${pkgname}-${pkgver}
   make check
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 }



[arch-commits] Commit in patch/repos (6 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 08:04:44
  Author: allan
Revision: 141945

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  patch/repos/testing-i686/
  patch/repos/testing-i686/PKGBUILD
(from rev 141944, patch/trunk/PKGBUILD)
  patch/repos/testing-i686/patch-2.6.1-get-arg.patch
(from rev 141944, patch/trunk/patch-2.6.1-get-arg.patch)
  patch/repos/testing-x86_64/
  patch/repos/testing-x86_64/PKGBUILD
(from rev 141944, patch/trunk/PKGBUILD)
  patch/repos/testing-x86_64/patch-2.6.1-get-arg.patch
(from rev 141944, patch/trunk/patch-2.6.1-get-arg.patch)

--+
 testing-i686/PKGBUILD|   40 +
 testing-i686/patch-2.6.1-get-arg.patch   |   12 
 testing-x86_64/PKGBUILD  |   40 +
 testing-x86_64/patch-2.6.1-get-arg.patch |   12 
 4 files changed, 104 insertions(+)

Copied: patch/repos/testing-i686/PKGBUILD (from rev 141944, 
patch/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 12:04:44 UTC (rev 141945)
@@ -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
+}

Copied: patch/repos/testing-i686/patch-2.6.1-get-arg.patch (from rev 141944, 
patch/trunk/patch-2.6.1-get-arg.patch)
===
--- testing-i686/patch-2.6.1-get-arg.patch  (rev 0)
+++ testing-i686/patch-2.6.1-get-arg.patch  2011-11-03 12:04:44 UTC (rev 
141945)
@@ -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", required_argument, NULL, 'g'},
+   {"input", required_argument, NULL, 'i'},
+   {"ignore-whitespace", no_argument, NULL, 'l'},
+ #ifdef ENABLE_MERGE

Copied: patch/repos/testing-x86_64/PKGBUILD (from rev 141944, 
patch/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 12:04:44 UTC (rev 141945)
@@ -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
+}

Copied: patch/repos/testing-x86_64/patch-2.6.1-get-arg.patch (from rev 141944, 
patch/trunk/patch-2.6.1-get-arg.patch)
===
--- testing-x86_64/patch-2.6.1-get-arg.patch   

[arch-commits] Commit in patch/trunk (PKGBUILD)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 08:03:37
  Author: allan
Revision: 141944

signing rebuild

Modified:
  patch/trunk/PKGBUILD

--+
 PKGBUILD |   21 +++--
 1 file changed, 15 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 11:43:21 UTC (rev 141943)
+++ PKGBUILD2011-11-03 12:03:37 UTC (rev 141944)
@@ -4,28 +4,37 @@
 
 pkgname=patch
 pkgver=2.6.1
-pkgrel=2
+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 
patch-2.6.1-get-arg.patch)
-md5sums=('d758eb96d3f75047efc004a720d33daf' '45cd5709adbbcdcb3ab95dc43559c07c')
+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}"
+  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
+  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}"
+  cd ${srcdir}/${pkgname}-${pkgver}
   make prefix=${pkgdir}/usr mandir=${pkgdir}/usr/share/man install
 }



[arch-commits] Commit in ncurses/repos (4 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 07:43:21
  Author: allan
Revision: 141943

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  ncurses/repos/testing-i686/
  ncurses/repos/testing-i686/PKGBUILD
(from rev 141942, ncurses/trunk/PKGBUILD)
  ncurses/repos/testing-x86_64/
  ncurses/repos/testing-x86_64/PKGBUILD
(from rev 141942, ncurses/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   74 ++
 testing-x86_64/PKGBUILD |   74 ++
 2 files changed, 148 insertions(+)

Copied: ncurses/repos/testing-i686/PKGBUILD (from rev 141942, 
ncurses/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 11:43:21 UTC (rev 141943)
@@ -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 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/testing-x86_64/PKGBUILD (from rev 141942, 
ncurses/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 11:43:21 UTC (rev 141943)
@@ -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
+  mak

[arch-commits] Commit in ncurses/trunk (PKGBUILD)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 07:42:01
  Author: allan
Revision: 141942

signing rebuild

Modified:
  ncurses/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 11:28:39 UTC (rev 141941)
+++ PKGBUILD2011-11-03 11:42:01 UTC (rev 141942)
@@ -4,14 +4,15 @@
 
 pkgname=ncurses
 pkgver=5.9
-pkgrel=1
+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)
-md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1')
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1'
+ '014ffdbbfec6d41a9a89d6cbe6434638')
 
 build() {
   cd ${srcdir}/



[arch-commits] Commit in mlocate/repos (10 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 07:28:39
  Author: allan
Revision: 141941

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  mlocate/repos/testing-i686/
  mlocate/repos/testing-i686/PKGBUILD
(from rev 141940, mlocate/trunk/PKGBUILD)
  mlocate/repos/testing-i686/mlocate.install
(from rev 141940, mlocate/trunk/mlocate.install)
  mlocate/repos/testing-i686/updatedb.conf
(from rev 141940, mlocate/trunk/updatedb.conf)
  mlocate/repos/testing-i686/updatedb.cron.daily
(from rev 141940, mlocate/trunk/updatedb.cron.daily)
  mlocate/repos/testing-x86_64/
  mlocate/repos/testing-x86_64/PKGBUILD
(from rev 141940, mlocate/trunk/PKGBUILD)
  mlocate/repos/testing-x86_64/mlocate.install
(from rev 141940, mlocate/trunk/mlocate.install)
  mlocate/repos/testing-x86_64/updatedb.conf
(from rev 141940, mlocate/trunk/updatedb.conf)
  mlocate/repos/testing-x86_64/updatedb.cron.daily
(from rev 141940, mlocate/trunk/updatedb.cron.daily)

+
 testing-i686/PKGBUILD  |   56 +++
 testing-i686/mlocate.install   |   18 +++
 testing-i686/updatedb.conf |5 +++
 testing-i686/updatedb.cron.daily   |   29 ++
 testing-x86_64/PKGBUILD|   56 +++
 testing-x86_64/mlocate.install |   18 +++
 testing-x86_64/updatedb.conf   |5 +++
 testing-x86_64/updatedb.cron.daily |   29 ++
 8 files changed, 216 insertions(+)

Copied: mlocate/repos/testing-i686/PKGBUILD (from rev 141940, 
mlocate/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 11:28:39 UTC (rev 141941)
@@ -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
+}

Copied: mlocate/repos/testing-i686/mlocate.install (from rev 141940, 
mlocate/trunk/mlocate.install)
===
--- testing-i686/mlocate.install(rev 0)
+++ testing-i686/mlocate.install2011-11-03 11:28:39 UTC (rev 141941)
@@ -0,0 +1,18 @@
+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 can be removed after {m,x}locate have both been updated
+  getent group slocate &>/dev/null && usr/sbin/groupdel slocate &>/dev/null
+  getent group mlocate &>/dev/null && usr/sbin/groupdel mlocate &>/dev/null
+
+  getent group locate &>/dev/null || usr/sbin/groupadd -g 21 locate &>/dev/null
+  chown -R root:locate var/lib/mlocate
+}
+
+pre_remove() {
+  getent group locate &>/dev/null && usr/sbin/groupdel locate &>/dev/null
+}

Copied: mlocate/repos/testing-i686/updatedb.conf (from rev 141940, 
mlocate/trunk/updatedb.conf)
===
--- testing-i686/updatedb.conf  (rev 0)
+++ testing-i686/updatedb.conf  2011-11-03 11:28:39 UTC (rev 141941)
@@ -0,0 +1,5 @@
+# directories to exclude from the slocate database:
+PRUNEPATHS="/media /mnt /tmp /var/tmp /var/cache /var/lock /var/run /var/spool"
+
+# filesystems to exclude from the slocate database:
+PRUNEFS="afs auto autofs binfmt_misc cifs coda configfs cramfs debugfs devpts 
devtmpfs ftpfs iso9660 mqueue ncpfs nfs nfs4 proc ramfs securityfs shfs smbfs 
sshfs sysfs tmpfs udf usbfs vboxsf"

Copie

[arch-commits] Commit in mlocate/trunk (PKGBUILD)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 07:27:03
  Author: allan
Revision: 141940

signing rebuild, patch testsuite failure with newer kernels

Modified:
  mlocate/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 11:23:47 UTC (rev 141939)
+++ PKGBUILD2011-11-03 11:27:03 UTC (rev 141940)
@@ -4,7 +4,7 @@
 
 pkgname=mlocate
 pkgver=0.24
-pkgrel=1
+pkgrel=2
 pkgdesc="Faster merging drop-in for slocate"
 arch=('i686' 'x86_64')
 url="http://carolina.mff.cuni.cz/~trmac/blog/mlocate";



[arch-commits] Commit in tzdata/repos (5 files)

2011-11-03 Thread andyrtr
Date: Thursday, November 3, 2011 @ 07:23:47
  Author: andyrtr
Revision: 141939

db-move: moved tzdata from [testing] to [core] (x86_64)

Added:
  tzdata/repos/core-x86_64/Makefile.patch
(from rev 141937, tzdata/repos/testing-x86_64/Makefile.patch)
  tzdata/repos/core-x86_64/PKGBUILD
(from rev 141937, tzdata/repos/testing-x86_64/PKGBUILD)
Deleted:
  tzdata/repos/core-x86_64/Makefile.patch
  tzdata/repos/core-x86_64/PKGBUILD
  tzdata/repos/testing-x86_64/

+
 Makefile.patch |  280 +++
 PKGBUILD   |   92 +-
 2 files changed, 186 insertions(+), 186 deletions(-)

Deleted: core-x86_64/Makefile.patch
===
--- core-x86_64/Makefile.patch  2011-11-03 11:23:46 UTC (rev 141938)
+++ core-x86_64/Makefile.patch  2011-11-03 11:23:47 UTC (rev 141939)
@@ -1,140 +0,0 @@
-diff -Naur src/Makefile src-p/Makefile
 src/Makefile   2007-08-20 16:47:41.0 +0200
-+++ src-p/Makefile 2007-10-02 04:07:44.0 +0200
-@@ -34,17 +34,17 @@
- 
- # Everything gets put in subdirectories of. . .
- 
--TOPDIR=   /usr/local
-+TOPDIR=   $(DESTDIR)/usr
- 
- # "Compiled" time zone information is placed in the "TZDIR" directory
- # (and subdirectories).
- # Use an absolute path name for TZDIR unless you're just testing the software.
- 
--TZDIR=$(TOPDIR)/etc/zoneinfo
-+TZDIR=$(TOPDIR)/share/zoneinfo
- 
- # The "tzselect", "zic", and "zdump" commands get installed in. . .
- 
--ETCDIR=   $(TOPDIR)/etc
-+SBINDIR=  $(TOPDIR)/sbin
- 
- # If you "make INSTALL", the "date" command gets installed in. . .
- 
-@@ -52,7 +52,7 @@
- 
- # Manual pages go in subdirectories of. . .
- 
--MANDIR=   $(TOPDIR)/man
-+MANDIR=   $(TOPDIR)/share/man
- 
- # Library functions are put in an archive in LIBDIR.
- 
-@@ -83,7 +83,7 @@
- 
- # Non-default libraries needed to link.
- # Add -lintl if you want to use `gettext' on Solaris.
--LDLIBS=
-+LDLIBS=$(LDFLAGS)
- 
- # Add the following to the end of the "CFLAGS=" line as needed.
- #  -Dconst= if `const' does not work (SunOS 4.x cc, OSF1 V5.0 cc)
-@@ -211,7 +211,7 @@
- # before the first Monday in January when a "%V" format is used and January 1
- # falls on a Friday, Saturday, or Sunday.
- 
--CFLAGS=
-+CFLAGS += -std=gnu99
- 
- # If you want zic's -s option used when installing, uncomment the next line
- # ZFLAGS= -s
-@@ -220,7 +220,7 @@
- ZIC=  $(zic) $(ZFLAGS)
- 
- # The name of a Posix-compliant `awk' on your system.
--AWK=  nawk
-+AWK=  awk
- 
- # The path where SGML DTDs are kept.
- SGML_SEARCH_PATH= $(TOPDIR)/share/doc/sgml-lib/REC-html401-19991224/
-@@ -241,8 +241,10 @@
- 
- 
###
- 
--cc=   cc
--CC=   $(cc) -DTZDIR=\"$(TZDIR)\"
-+CC+=  -DTZDIR=\"$(TZDIR)\"
-+ifeq ($(NLS),1)
-+CC += -DHAVE_GETTEXT=1 -DTZ_DOMAIN=\"libc\"
-+endif
- 
- TZCSRCS=  zic.c localtime.c asctime.c scheck.c ialloc.c
- TZCOBJS=  zic.o localtime.o asctime.o scheck.o ialloc.o
-@@ -282,14 +284,16 @@
- 
- ALL:  all date
- 
--install:  all $(DATA) $(REDO) $(TZLIB) $(MANS) $(TABDATA)
-+install:  all $(DATA) $(REDO) $(MANS) $(TABDATA)
-   $(ZIC) -y $(YEARISTYPE) \
-   -d $(TZDIR) -l $(LOCALTIME) -p $(POSIXRULES)
-   -rm -f $(TZDIR)/iso3166.tab $(TZDIR)/zone.tab
-   cp iso3166.tab zone.tab $(TZDIR)/.
--  -mkdir $(TOPDIR) $(ETCDIR)
--  cp tzselect zic zdump $(ETCDIR)/.
--  -mkdir $(TOPDIR) $(MANDIR) \
-+  -mkdir -p $(TOPDIR) $(SBINDIR)
-+  cp zic zdump $(SBINDIR)/.
-+  -mkdir -p $(TOPDIR) $(BINDIR)
-+  cp tzselect $(BINDIR)/.
-+  -mkdir -p $(TOPDIR) $(MANDIR) \
-   $(MANDIR)/man3 $(MANDIR)/man5 $(MANDIR)/man8
-   -rm -f $(MANDIR)/man3/newctime.3 \
-   $(MANDIR)/man3/newtzset.3 \
-@@ -298,13 +302,11 @@
-   $(MANDIR)/man8/zdump.8 \
-   $(MANDIR)/man8/zic.8
-   cp newctime.3 newtzset.3 $(MANDIR)/man3/.
--  cp tzfile.5 $(MANDIR)/man5/.
--  cp tzselect.8 zdump.8 zic.8 $(MANDIR)/man8/.
- 
- INSTALL:  ALL install date.1
--  -mkdir $(TOPDIR) $(BINDIR)
-+  -mkdir -p $(TOPDIR) $(BINDIR)
-   cp date $(BINDIR)/.
--  -mkdir $(TOPDIR) $(MANDIR) $(MANDIR)/man1
-+  -mkdir -p $(TOPDIR) $(MANDIR) $(MANDIR)/man1
-   -rm -f $(MANDIR)/man1/date.1
-   cp date.1 $(MANDIR)/man1/.
- 
-@@ -334,9 +336,9 @@
- # You must replace all of $(TZDIR) to switch from not using leap seconds
- # to using them, or vice versa.
- other_two:zic leapseconds $(TDATA)
--  $(ZIC) -y $(YEARISTYPE) -

[arch-commits] Commit in tzdata/repos (5 files)

2011-11-03 Thread andyrtr
Date: Thursday, November 3, 2011 @ 07:23:46
  Author: andyrtr
Revision: 141938

db-move: moved tzdata from [testing] to [core] (i686)

Added:
  tzdata/repos/core-i686/Makefile.patch
(from rev 141937, tzdata/repos/testing-i686/Makefile.patch)
  tzdata/repos/core-i686/PKGBUILD
(from rev 141937, tzdata/repos/testing-i686/PKGBUILD)
Deleted:
  tzdata/repos/core-i686/Makefile.patch
  tzdata/repos/core-i686/PKGBUILD
  tzdata/repos/testing-i686/

+
 Makefile.patch |  280 +++
 PKGBUILD   |   92 +-
 2 files changed, 186 insertions(+), 186 deletions(-)

Deleted: core-i686/Makefile.patch
===
--- core-i686/Makefile.patch2011-11-03 10:57:23 UTC (rev 141937)
+++ core-i686/Makefile.patch2011-11-03 11:23:46 UTC (rev 141938)
@@ -1,140 +0,0 @@
-diff -Naur src/Makefile src-p/Makefile
 src/Makefile   2007-08-20 16:47:41.0 +0200
-+++ src-p/Makefile 2007-10-02 04:07:44.0 +0200
-@@ -34,17 +34,17 @@
- 
- # Everything gets put in subdirectories of. . .
- 
--TOPDIR=   /usr/local
-+TOPDIR=   $(DESTDIR)/usr
- 
- # "Compiled" time zone information is placed in the "TZDIR" directory
- # (and subdirectories).
- # Use an absolute path name for TZDIR unless you're just testing the software.
- 
--TZDIR=$(TOPDIR)/etc/zoneinfo
-+TZDIR=$(TOPDIR)/share/zoneinfo
- 
- # The "tzselect", "zic", and "zdump" commands get installed in. . .
- 
--ETCDIR=   $(TOPDIR)/etc
-+SBINDIR=  $(TOPDIR)/sbin
- 
- # If you "make INSTALL", the "date" command gets installed in. . .
- 
-@@ -52,7 +52,7 @@
- 
- # Manual pages go in subdirectories of. . .
- 
--MANDIR=   $(TOPDIR)/man
-+MANDIR=   $(TOPDIR)/share/man
- 
- # Library functions are put in an archive in LIBDIR.
- 
-@@ -83,7 +83,7 @@
- 
- # Non-default libraries needed to link.
- # Add -lintl if you want to use `gettext' on Solaris.
--LDLIBS=
-+LDLIBS=$(LDFLAGS)
- 
- # Add the following to the end of the "CFLAGS=" line as needed.
- #  -Dconst= if `const' does not work (SunOS 4.x cc, OSF1 V5.0 cc)
-@@ -211,7 +211,7 @@
- # before the first Monday in January when a "%V" format is used and January 1
- # falls on a Friday, Saturday, or Sunday.
- 
--CFLAGS=
-+CFLAGS += -std=gnu99
- 
- # If you want zic's -s option used when installing, uncomment the next line
- # ZFLAGS= -s
-@@ -220,7 +220,7 @@
- ZIC=  $(zic) $(ZFLAGS)
- 
- # The name of a Posix-compliant `awk' on your system.
--AWK=  nawk
-+AWK=  awk
- 
- # The path where SGML DTDs are kept.
- SGML_SEARCH_PATH= $(TOPDIR)/share/doc/sgml-lib/REC-html401-19991224/
-@@ -241,8 +241,10 @@
- 
- 
###
- 
--cc=   cc
--CC=   $(cc) -DTZDIR=\"$(TZDIR)\"
-+CC+=  -DTZDIR=\"$(TZDIR)\"
-+ifeq ($(NLS),1)
-+CC += -DHAVE_GETTEXT=1 -DTZ_DOMAIN=\"libc\"
-+endif
- 
- TZCSRCS=  zic.c localtime.c asctime.c scheck.c ialloc.c
- TZCOBJS=  zic.o localtime.o asctime.o scheck.o ialloc.o
-@@ -282,14 +284,16 @@
- 
- ALL:  all date
- 
--install:  all $(DATA) $(REDO) $(TZLIB) $(MANS) $(TABDATA)
-+install:  all $(DATA) $(REDO) $(MANS) $(TABDATA)
-   $(ZIC) -y $(YEARISTYPE) \
-   -d $(TZDIR) -l $(LOCALTIME) -p $(POSIXRULES)
-   -rm -f $(TZDIR)/iso3166.tab $(TZDIR)/zone.tab
-   cp iso3166.tab zone.tab $(TZDIR)/.
--  -mkdir $(TOPDIR) $(ETCDIR)
--  cp tzselect zic zdump $(ETCDIR)/.
--  -mkdir $(TOPDIR) $(MANDIR) \
-+  -mkdir -p $(TOPDIR) $(SBINDIR)
-+  cp zic zdump $(SBINDIR)/.
-+  -mkdir -p $(TOPDIR) $(BINDIR)
-+  cp tzselect $(BINDIR)/.
-+  -mkdir -p $(TOPDIR) $(MANDIR) \
-   $(MANDIR)/man3 $(MANDIR)/man5 $(MANDIR)/man8
-   -rm -f $(MANDIR)/man3/newctime.3 \
-   $(MANDIR)/man3/newtzset.3 \
-@@ -298,13 +302,11 @@
-   $(MANDIR)/man8/zdump.8 \
-   $(MANDIR)/man8/zic.8
-   cp newctime.3 newtzset.3 $(MANDIR)/man3/.
--  cp tzfile.5 $(MANDIR)/man5/.
--  cp tzselect.8 zdump.8 zic.8 $(MANDIR)/man8/.
- 
- INSTALL:  ALL install date.1
--  -mkdir $(TOPDIR) $(BINDIR)
-+  -mkdir -p $(TOPDIR) $(BINDIR)
-   cp date $(BINDIR)/.
--  -mkdir $(TOPDIR) $(MANDIR) $(MANDIR)/man1
-+  -mkdir -p $(TOPDIR) $(MANDIR) $(MANDIR)/man1
-   -rm -f $(MANDIR)/man1/date.1
-   cp date.1 $(MANDIR)/man1/.
- 
-@@ -334,9 +336,9 @@
- # You must replace all of $(TZDIR) to switch from not using leap seconds
- # to using them, or vice versa.
- other_two:zic leapseconds $(TDATA)
--  $(ZIC) -y $(YEARISTYPE) -d $(TZDIR)-posix -

[arch-commits] Commit in m4/repos (8 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 06:57:23
  Author: allan
Revision: 141937

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  m4/repos/testing-i686/
  m4/repos/testing-i686/PKGBUILD
(from rev 141936, m4/trunk/PKGBUILD)
  m4/repos/testing-i686/m4-1.4.16-readlink-einval.patch
(from rev 141936, m4/trunk/m4-1.4.16-readlink-einval.patch)
  m4/repos/testing-i686/m4.install
(from rev 141936, m4/trunk/m4.install)
  m4/repos/testing-x86_64/
  m4/repos/testing-x86_64/PKGBUILD
(from rev 141936, m4/trunk/PKGBUILD)
  m4/repos/testing-x86_64/m4-1.4.16-readlink-einval.patch
(from rev 141936, m4/trunk/m4-1.4.16-readlink-einval.patch)
  m4/repos/testing-x86_64/m4.install
(from rev 141936, m4/trunk/m4.install)

+
 testing-i686/PKGBUILD  |   36 +++
 testing-i686/m4-1.4.16-readlink-einval.patch   |   12 +++
 testing-i686/m4.install|   20 
 testing-x86_64/PKGBUILD|   36 +++
 testing-x86_64/m4-1.4.16-readlink-einval.patch |   12 +++
 testing-x86_64/m4.install  |   20 
 6 files changed, 136 insertions(+)

Copied: m4/repos/testing-i686/PKGBUILD (from rev 141936, m4/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 10:57:23 UTC (rev 141937)
@@ -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/testing-i686/m4-1.4.16-readlink-einval.patch (from rev 141936, 
m4/trunk/m4-1.4.16-readlink-einval.patch)
===
--- testing-i686/m4-1.4.16-readlink-einval.patch
(rev 0)
+++ testing-i686/m4-1.4.16-readlink-einval.patch2011-11-03 10:57:23 UTC 
(rev 141937)
@@ -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);

Copied: m4/repos/testing-i686/m4.install (from rev 141936, m4/trunk/m4.install)
===
--- testing-i686/m4.install (rev 0)
+++ testing-i686/m4.install 2011-11-03 10:57:23 UTC (rev 141937)
@@ -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
+}
+
+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/testing-x86_64/PKGBUILD (from rev 141936, m4/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 10:57:23 UTC (rev 141937)
@@ -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-r

[arch-commits] Commit in m4/trunk (PKGBUILD m4-1.4.16-readlink-einval.patch)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 06:55:29
  Author: allan
Revision: 141936

signing rebuild, patch testsuite failure with newer kernels

Added:
  m4/trunk/m4-1.4.16-readlink-einval.patch
Modified:
  m4/trunk/PKGBUILD

-+
 PKGBUILD|   10 +++---
 m4-1.4.16-readlink-einval.patch |   12 
 2 files changed, 19 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 10:53:42 UTC (rev 141935)
+++ PKGBUILD2011-11-03 10:55:29 UTC (rev 141936)
@@ -4,7 +4,7 @@
 
 pkgname=m4
 pkgver=1.4.16
-pkgrel=1
+pkgrel=2
 pkgdesc="The GNU macro processor"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/m4";
@@ -12,11 +12,15 @@
 groups=('base-devel')
 depends=('glibc' 'bash')
 install=m4.install
-source=(ftp://ftp.gnu.org/gnu/m4/$pkgname-$pkgver.tar.xz)
-md5sums=('7548ec061a1ba993790159764f522d0e')
+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
 }

Added: m4-1.4.16-readlink-einval.patch
===
--- m4-1.4.16-readlink-einval.patch (rev 0)
+++ m4-1.4.16-readlink-einval.patch 2011-11-03 10:55:29 UTC (rev 141936)
@@ -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);



[arch-commits] Commit in isdn4k-utils/repos (8 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 06:53:42
  Author: tpowa
Revision: 141935

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  isdn4k-utils/repos/testing-i686/
  isdn4k-utils/repos/testing-i686/PKGBUILD
(from rev 141934, isdn4k-utils/trunk/PKGBUILD)
  isdn4k-utils/repos/testing-i686/config
(from rev 141934, isdn4k-utils/trunk/config)
  isdn4k-utils/repos/testing-i686/isdn4k-utils-3.2p1-build.patch
(from rev 141934, isdn4k-utils/trunk/isdn4k-utils-3.2p1-build.patch)
  isdn4k-utils/repos/testing-x86_64/
  isdn4k-utils/repos/testing-x86_64/PKGBUILD
(from rev 141934, isdn4k-utils/trunk/PKGBUILD)
  isdn4k-utils/repos/testing-x86_64/config
(from rev 141934, isdn4k-utils/trunk/config)
  isdn4k-utils/repos/testing-x86_64/isdn4k-utils-3.2p1-build.patch
(from rev 141934, isdn4k-utils/trunk/isdn4k-utils-3.2p1-build.patch)

---+
 testing-i686/PKGBUILD |   34 
 testing-i686/config   |  100 +
 testing-i686/isdn4k-utils-3.2p1-build.patch   | 2028 
 testing-x86_64/PKGBUILD   |   34 
 testing-x86_64/config |  100 +
 testing-x86_64/isdn4k-utils-3.2p1-build.patch | 2028 
 6 files changed, 4324 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 141934:141935 to see the changes.


[arch-commits] Commit in isdn4k-utils/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 06:53:11
  Author: tpowa
Revision: 141934

signed rebuild

Modified:
  isdn4k-utils/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 09:57:57 UTC (rev 141933)
+++ PKGBUILD2011-11-03 10:53:11 UTC (rev 141934)
@@ -4,7 +4,7 @@
 
 pkgname=isdn4k-utils
 pkgver=3.2p1
-pkgrel=6
+pkgrel=7
 pkgdesc="User space administration programs and tools for ISDN"
 arch=('i686' 'x86_64')
 url="http://www.isdn4linux.de/";



[arch-commits] Commit in libcap/repos (4 files)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 05:57:57
  Author: allan
Revision: 141933

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libcap/repos/testing-i686/
  libcap/repos/testing-i686/PKGBUILD
(from rev 141932, libcap/trunk/PKGBUILD)
  libcap/repos/testing-x86_64/
  libcap/repos/testing-x86_64/PKGBUILD
(from rev 141932, libcap/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   27 +++
 testing-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: libcap/repos/testing-i686/PKGBUILD (from rev 141932, 
libcap/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 09:57:57 UTC (rev 141933)
@@ -0,0 +1,27 @@
+#$Id$
+# Maintainer: Allan McRae 
+# Contributor: Hugo Doria 
+
+pkgname=libcap
+pkgver=2.22
+pkgrel=2
+pkgdesc="POSIX 1003.1e capabilities"
+arch=('i686' 'x86_64')
+url="http://sites.google.com/site/fullycapable/";
+license=('GPL2')
+depends=('glibc' 'attr')
+source=(http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/${pkgname}-${pkgver}.tar.gz{,.asc})
+md5sums=('b4896816b626bea445f0b3849bdd4077'
+ '9d0983e25e5a251d098507f9561d2b27')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make prefix=/usr DESTDIR=${pkgdir} LIBDIR=${pkgdir}/lib RAISE_SETFCAP=no 
install
+  rm ${pkgdir}/lib/*.a
+  chmod 755 ${pkgdir}/lib/libcap.so.${pkgver}
+}

Copied: libcap/repos/testing-x86_64/PKGBUILD (from rev 141932, 
libcap/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-03 09:57:57 UTC (rev 141933)
@@ -0,0 +1,27 @@
+#$Id$
+# Maintainer: Allan McRae 
+# Contributor: Hugo Doria 
+
+pkgname=libcap
+pkgver=2.22
+pkgrel=2
+pkgdesc="POSIX 1003.1e capabilities"
+arch=('i686' 'x86_64')
+url="http://sites.google.com/site/fullycapable/";
+license=('GPL2')
+depends=('glibc' 'attr')
+source=(http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/${pkgname}-${pkgver}.tar.gz{,.asc})
+md5sums=('b4896816b626bea445f0b3849bdd4077'
+ '9d0983e25e5a251d098507f9561d2b27')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make prefix=/usr DESTDIR=${pkgdir} LIBDIR=${pkgdir}/lib RAISE_SETFCAP=no 
install
+  rm ${pkgdir}/lib/*.a
+  chmod 755 ${pkgdir}/lib/libcap.so.${pkgver}
+}



[arch-commits] Commit in libcap/trunk (PKGBUILD)

2011-11-03 Thread Allan McRae
Date: Thursday, November 3, 2011 @ 05:56:41
  Author: allan
Revision: 141932

signing rebuild

Modified:
  libcap/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 08:55:49 UTC (rev 141931)
+++ PKGBUILD2011-11-03 09:56:41 UTC (rev 141932)
@@ -4,14 +4,15 @@
 
 pkgname=libcap
 pkgver=2.22
-pkgrel=1
+pkgrel=2
 pkgdesc="POSIX 1003.1e capabilities"
 arch=('i686' 'x86_64')
 url="http://sites.google.com/site/fullycapable/";
 license=('GPL2')
 depends=('glibc' 'attr')
-source=(http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/${pkgname}-${pkgver}.tar.gz)
-md5sums=('b4896816b626bea445f0b3849bdd4077')
+source=(http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/${pkgname}-${pkgver}.tar.gz{,.asc})
+md5sums=('b4896816b626bea445f0b3849bdd4077'
+ '9d0983e25e5a251d098507f9561d2b27')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in foobillard++/repos (4 files)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 04:55:49
  Author: eric
Revision: 141931

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  foobillard++/repos/extra-i686/PKGBUILD
(from rev 141930, foobillard++/trunk/PKGBUILD)
  foobillard++/repos/extra-x86_64/PKGBUILD
(from rev 141930, foobillard++/trunk/PKGBUILD)
Deleted:
  foobillard++/repos/extra-i686/PKGBUILD
  foobillard++/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   73 +++-
 extra-x86_64/PKGBUILD |   73 +++-
 2 files changed, 72 insertions(+), 74 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-11-03 08:55:21 UTC (rev 141930)
+++ extra-i686/PKGBUILD 2011-11-03 08:55:49 UTC (rev 141931)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=foobillard++
-pkgver=3.4beta
-pkgrel=1
-pkgdesc="An OpenGL billiard game"
-arch=('i686' 'x86_64')
-url="http://foobillardplus.sourceforge.net/";
-license=('GPL2')
-depends=('bzip2' 'freetype2' 'libpng' 'mesa' 'sdl_net')
-replaces=('foobillard')
-source=(http://downloads.sourceforge.net/foobillardplus/foobillardplus-${pkgver}.tar.gz)
-md5sums=('130418a45ba84b4132f9b27712feb919')
-sha1sums=('d8723568e460ee62cb913b0c8d7c9a9f557395ee')
-
-build() {
-  cd "${srcdir}/foobillardplus-${pkgver}"
-  sed -i 's|$prefix/foobillardplus|$prefix|' configure
-  sed -i 's|$prefix/data|$prefix/share/foobillardplus|' configure
-  sed -i 's|"/data"|"/share/foobillardplus"|' src/language.c
-  sed -i 's|/opt/foobillardplus/bin/||' foobillardplus.desktop
-  sed -i 's|/opt/foobillardplus/||' foobillardplus.desktop
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/foobillardplus-${pkgver}"
-  install -Dm755 src/foobillardplus "${pkgdir}/usr/bin/foobillardplus"
-  install -d "${pkgdir}/usr/share/foobillardplus"
-  cp -R data/* "${pkgdir}/usr/share/foobillardplus"
-  install -Dm644 foobillardplus.desktop 
"${pkgdir}/usr/share/applications/foobillardplus.desktop"
-  install -Dm644 foobillardplus.png 
"${pkgdir}/usr/share/pixmaps/foobillardplus.png"
-  install -Dm644 foobillardplus.xbm 
"${pkgdir}/usr/share/pixmaps/foobillardplus.xbm"
-  find "${pkgdir}" -depth  -type d -name .svn -exec rm -rf  {} \;
-}

Copied: foobillard++/repos/extra-i686/PKGBUILD (from rev 141930, 
foobillard++/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-11-03 08:55:49 UTC (rev 141931)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=foobillard++
+pkgver=3.41beta
+pkgrel=1
+pkgdesc="An OpenGL billiard game"
+arch=('i686' 'x86_64')
+url="http://foobillardplus.sourceforge.net/";
+license=('GPL2')
+depends=('bzip2' 'freetype2' 'libpng' 'mesa' 'sdl_net')
+replaces=('foobillard')
+source=(http://downloads.sourceforge.net/foobillardplus/foobillardplus-${pkgver}.tar.gz)
+sha1sums=('41d6db473557386ffeacd98b9a2ee26198e42c6a')
+
+build() {
+  cd "${srcdir}/foobillardplus-${pkgver}"
+  sed -i 's|$prefix/foobillardplus|$prefix|' configure
+  sed -i 's|$prefix/data|$prefix/share/foobillardplus|' configure
+  sed -i 's|"/data"|"/share/foobillardplus"|' src/language.c
+  sed -i 's|/opt/foobillardplus/bin/||' foobillardplus.desktop
+  sed -i 's|/opt/foobillardplus/||' foobillardplus.desktop
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/foobillardplus-${pkgver}"
+  install -Dm755 src/foobillardplus "${pkgdir}/usr/bin/foobillardplus"
+  install -d "${pkgdir}/usr/share/foobillardplus"
+  cp -R data/* "${pkgdir}/usr/share/foobillardplus"
+  install -Dm644 foobillardplus.desktop 
"${pkgdir}/usr/share/applications/foobillardplus.desktop"
+  install -Dm644 foobillardplus.png 
"${pkgdir}/usr/share/pixmaps/foobillardplus.png"
+  install -Dm644 foobillardplus.xbm 
"${pkgdir}/usr/share/pixmaps/foobillardplus.xbm"
+  find "${pkgdir}" -depth  -type d -name .svn -exec rm -rf  {} \;
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-11-03 08:55:21 UTC (rev 141930)
+++ extra-x86_64/PKGBUILD   2011-11-03 08:55:49 UTC (rev 141931)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=foobillard++
-pkgver=3.4beta
-pkgrel=1
-pkgdesc="An OpenGL billiard game"
-arch=('i686' 'x86_64')
-url="http://foobillardplus.sourceforge.net/";
-license=('GPL2')
-depends=('bzip2' 'freetype2' 'libpng' 'mesa' 'sdl_net')
-replaces=('foobillard')
-source=(http://downloads.sourceforge.net/foobillardplus/foobillardplus-${pkgver}.tar.gz)
-md5sums=('130418a45ba84b4132f9b27712feb919')
-sha1sums=('d8723568e460ee62cb913b0c8d7c9a9f557395ee')
-
-build() {
-  cd "${srcdir}/foobillardplus-${pkgver}"
-  sed -i 's|$prefix/foobillardplus|$prefix|' configure
-  sed -i 's|$prefix/data|$prefix/share/foobillardplus|' configur

[arch-commits] Commit in foobillard++/trunk (PKGBUILD)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 04:55:21
  Author: eric
Revision: 141930

Upstream update

Modified:
  foobillard++/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 08:40:42 UTC (rev 141929)
+++ PKGBUILD2011-11-03 08:55:21 UTC (rev 141930)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=foobillard++
-pkgver=3.4beta
+pkgver=3.41beta
 pkgrel=1
 pkgdesc="An OpenGL billiard game"
 arch=('i686' 'x86_64')
@@ -11,8 +11,7 @@
 depends=('bzip2' 'freetype2' 'libpng' 'mesa' 'sdl_net')
 replaces=('foobillard')
 
source=(http://downloads.sourceforge.net/foobillardplus/foobillardplus-${pkgver}.tar.gz)
-md5sums=('130418a45ba84b4132f9b27712feb919')
-sha1sums=('d8723568e460ee62cb913b0c8d7c9a9f557395ee')
+sha1sums=('41d6db473557386ffeacd98b9a2ee26198e42c6a')
 
 build() {
   cd "${srcdir}/foobillardplus-${pkgver}"



[arch-commits] Commit in hdparm/repos (6 files)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 04:40:42
  Author: tpowa
Revision: 141929

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  hdparm/repos/testing-i686/
  hdparm/repos/testing-i686/PKGBUILD
(from rev 141928, hdparm/trunk/PKGBUILD)
  hdparm/repos/testing-i686/wiper.sh.2_6.max-ranges.patch
(from rev 141928, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)
  hdparm/repos/testing-x86_64/
  hdparm/repos/testing-x86_64/PKGBUILD
(from rev 141928, hdparm/trunk/PKGBUILD)
  hdparm/repos/testing-x86_64/wiper.sh.2_6.max-ranges.patch
(from rev 141928, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)

--+
 testing-i686/PKGBUILD|   42 
 testing-i686/wiper.sh.2_6.max-ranges.patch   |   84 +
 testing-x86_64/PKGBUILD  |   42 
 testing-x86_64/wiper.sh.2_6.max-ranges.patch |   84 +
 4 files changed, 252 insertions(+)

Copied: hdparm/repos/testing-i686/PKGBUILD (from rev 141928, 
hdparm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 08:40:42 UTC (rev 141929)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Paul Mattal 
+
+pkgname=hdparm
+pkgver=9.37
+pkgrel=2
+pkgdesc="A shell utility for manipulating Linux IDE drive/driver parameters"
+arch=(i686 x86_64)
+depends=('glibc')
+optdepends=('sh: required by idectl and ultrabayd')
+source=(http://downloads.sourceforge.net/sourceforge/hdparm/${pkgname}-${pkgver}.tar.gz
+wiper.sh.2_6.max-ranges.patch)
+license=('BSD')
+url="http://sourceforge.net/projects/hdparm/";
+optdepends=('bash: for wiper.sh script')
+options=('emptydirs')
+md5sums=('0bb94ddd1bedd5c02b1ca62f1caaf6de'
+ '74e368f384166a7710b447573cda120a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # Fix Range input/output error when wiping Intel G2 and OCZ drives
+  patch -Np1 -i $srcdir/wiper.sh.2_6.max-ranges.patch
+  
+  # build
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # install
+  mkdir -p ${pkgdir}/{usr,sbin}
+  make DESTDIR=${pkgdir} install
+  install -m755 contrib/idectl ${pkgdir}/sbin
+  install -m755 contrib/ultrabayd ${pkgdir}/sbin
+
+  install -D -m 0644 $srcdir/$pkgname-$pkgver/wiper/README.txt 
$pkgdir/usr/share/doc/wiper/README.txt
+  install -D -m 0755 $srcdir/$pkgname-$pkgver/wiper/wiper.sh 
$pkgdir/usr/sbin/wiper.sh
+
+  #install license file
+  install -D -m 644 LICENSE.TXT $pkgdir/usr/share/licenses/hdparm/LICENSE.TXT
+}

Copied: hdparm/repos/testing-i686/wiper.sh.2_6.max-ranges.patch (from rev 
141928, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)
===
--- testing-i686/wiper.sh.2_6.max-ranges.patch  (rev 0)
+++ testing-i686/wiper.sh.2_6.max-ranges.patch  2011-11-03 08:40:42 UTC (rev 
141929)
@@ -0,0 +1,84 @@
+--- hdparm-9.28/wiper/wiper.sh.orig2010-03-09 06:17:37.0 -0800
+--- hdparm-9.28/wiper/wiper.sh 2010-05-15 03:08:02.182856971 -0700
+@@ -29,7 +29,7 @@
+ function usage_error(){
+   echo >&2
+   echo "Linux tune-up (TRIM) utility for SATA SSDs"
+-  echo "Usage:  $0 [--verbose] [--commit] " >&2
++  echo "Usage:  $0 [--max-ranges ] [--verbose] [--commit] 
" >&2
+   echo "   Eg:  $0 /dev/sda1" >&2
+   echo >&2
+   exit 1
+@@ -44,6 +44,7 @@
+ 
+ export verbose=0
+ commit=""
++max_ranges=-1
+ destroy_me=""
+ argc=$#
+ arg=""
+@@ -51,6 +52,10 @@
+   commit=yes
+   elif [ "$1" = "--verbose" ]; then
+   verbose=$((verbose + 1))
++  elif [ "$1" = "--max-ranges" -a $argc -gt 1 ]; then
++  max_ranges=$2
++  argc=$((argc - 1))
++  shift
+   elif [ "$1" = "" ]; then
+   usage_error
+   else
+@@ -499,6 +550,18 @@
+   fi
+ fi
+ 
++## Different SSD's have a different maximum number of ranges they'll accept
++## in a single TRIM command.
++if [ $max_ranges -le 0 ] ; then
++  model=`$HDPARM -I $rawdev | $GAWK '/Model Number/ { print $NF }'`
++  case "$model" in
++  SSDSA[12]*)  max_ranges=512 ;;  # Intel X18-M/X25-M
++  OCZ-VERTEX2) max_ranges=64 ;;   # OCZ Vertex2
++  *)   max_ranges=65535
++  esac
++fi
++[ $verbose -gt 0 ] && echo "max-ranges = $max_ranges"
++
+ ## All ready.  Now let the user know exactly what we intend to do:
+ ##
+ mountstatus="$fstype non-mounted"
+@@ -608,7 +671,7 @@
+   nsectors += count;
+   while (count > 0) {
+   this_count  = (count > 65535) ? 65535 : count
+-  printf "%u:%u ", lba, this_count
++  printf "%u:%u \n", lba, this_count
+   if (verbose > 1)
+   printf "%u:%u ", lba, this_count > "/dev/stderr"
+   lb

[arch-commits] Commit in hdparm/trunk (PKGBUILD)

2011-11-03 Thread Tobias Powalowski
Date: Thursday, November 3, 2011 @ 04:40:19
  Author: tpowa
Revision: 141928

signed rebuild

Modified:
  hdparm/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 08:03:29 UTC (rev 141927)
+++ PKGBUILD2011-11-03 08:40:19 UTC (rev 141928)
@@ -3,7 +3,7 @@
 
 pkgname=hdparm
 pkgver=9.37
-pkgrel=1
+pkgrel=2
 pkgdesc="A shell utility for manipulating Linux IDE drive/driver parameters"
 arch=(i686 x86_64)
 depends=('glibc')



[arch-commits] Commit in openldap/repos (12 files)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 04:03:29
  Author: eric
Revision: 141927

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  openldap/repos/testing-i686/
  openldap/repos/testing-i686/PKGBUILD
(from rev 141926, openldap/trunk/PKGBUILD)
  openldap/repos/testing-i686/ntlm.patch
(from rev 141926, openldap/trunk/ntlm.patch)
  openldap/repos/testing-i686/openldap.install
(from rev 141926, openldap/trunk/openldap.install)
  openldap/repos/testing-i686/slapd
(from rev 141926, openldap/trunk/slapd)
  openldap/repos/testing-i686/slapd.default
(from rev 141926, openldap/trunk/slapd.default)
  openldap/repos/testing-x86_64/
  openldap/repos/testing-x86_64/PKGBUILD
(from rev 141926, openldap/trunk/PKGBUILD)
  openldap/repos/testing-x86_64/ntlm.patch
(from rev 141926, openldap/trunk/ntlm.patch)
  openldap/repos/testing-x86_64/openldap.install
(from rev 141926, openldap/trunk/openldap.install)
  openldap/repos/testing-x86_64/slapd
(from rev 141926, openldap/trunk/slapd)
  openldap/repos/testing-x86_64/slapd.default
(from rev 141926, openldap/trunk/slapd.default)

-+
 testing-i686/PKGBUILD   |   96 +++
 testing-i686/ntlm.patch |  230 ++
 testing-i686/openldap.install   |   20 +++
 testing-i686/slapd  |   49 
 testing-i686/slapd.default  |6 
 testing-x86_64/PKGBUILD |   96 +++
 testing-x86_64/ntlm.patch   |  230 ++
 testing-x86_64/openldap.install |   20 +++
 testing-x86_64/slapd|   49 
 testing-x86_64/slapd.default|6 
 10 files changed, 802 insertions(+)

Copied: openldap/repos/testing-i686/PKGBUILD (from rev 141926, 
openldap/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-03 08:03:29 UTC (rev 141927)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer:
+
+pkgbase=openldap
+pkgname=('libldap' 'openldap')
+pkgver=2.4.26
+pkgrel=5
+arch=('i686' 'x86_64')
+url="http://www.openldap.org/";
+license=('custom')
+makedepends=('libfetch' 'libltdl' 'libsasl')
+source=(ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/${pkgbase}-${pkgver}.tgz
+slapd slapd.default ntlm.patch)
+md5sums=('f36f3086031dd56ae94f722ffae8df5e'
+ '40fdbdd6c343019cbadf4eb26c6189f2'
+ '6be69f6b7e522cb64cce8703da81ed32'
+ '4258ddbef923d1f29f2843bc050f8c56')
+
+build() {
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  patch -Np1 -i "${srcdir}"/ntlm.patch
+  sed -i 's|-m 644 $(LIBRARY)|-m 755 $(LIBRARY)|' 
libraries/{liblber,libldap,libldap_r}/Makefile.in
+  sed -i 's|#define LDAPI_SOCK LDAP_RUNDIR LDAP_DIRSEP "run" LDAP_DIRSEP 
"ldapi"|#define LDAPI_SOCK LDAP_DIRSEP "run" LDAP_DIRSEP "openldap" LDAP_DIRSEP 
"ldapi"|' include/ldap_defaults.h
+  sed -i 's|%LOCALSTATEDIR%/run|/run/openldap|' servers/slapd/slapd.conf
+  sed -i 's|-$(MKDIR) $(DESTDIR)$(localstatedir)/run|-$(MKDIR) 
$(DESTDIR)/run/openldap|' servers/slapd/Makefile.in
+
+  LDFLAGS="$LDFLAGS -L\"${pkgdir}\"/libldap/usr/lib" 
+  ./configure --prefix=/usr --mandir=/usr/share/man --libexecdir=/usr/lib \
+--sysconfdir=/etc --localstatedir=/var/lib/openldap \
+--enable-ipv6 --enable-syslog --enable-local \
+--enable-bdb --enable-hdb \
+--enable-crypt --enable-dynamic \
+--with-threads  --disable-wrappers \
+--enable-spasswd --with-cyrus-sasl \
+--enable-overlays=mod --enable-modules=yes
+  make
+}
+
+check() {
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  make test
+}
+
+package_libldap() {
+  pkgdesc="Lightweight Directory Access Protocol (LDAP) client libraries"
+  depends=('libsasl' 'libfetch')
+  backup=('etc/openldap/ldap.conf')
+  options=('!libtool')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  for dir in include libraries doc/man/man3 ; do
+pushd ${dir}
+make DESTDIR="${pkgdir}" install
+popd
+  done
+  install -Dm644 doc/man/man5/ldap.conf.5.tmp 
"${pkgdir}"/usr/share/man/man5/ldap.conf.5
+  
+# get rid of duplicate default conf files
+  rm "${pkgdir}"/etc/openldap/*.default
+
+  ln -sf liblber.so "${pkgdir}"/usr/lib/liblber.so.2
+  ln -sf libldap.so "${pkgdir}"/usr/lib/libldap.so.2
+
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_openldap() {
+  pkgdesc="Lightweight Directory Access Protocol (LDAP) client and server"
+  depends=("libldap>=${pkgver}" 'libltdl')
+  backup=('etc/openldap/slapd.conf' 'etc/conf.d/slapd')
+  options=('!libtool' 'emptydirs')
+  install=openldap.install
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  for dir in clients servers doc/man/man{1,5,8} ; do
+pushd ${dir}
+make DESTDIR="${pkgdir}" install
+popd
+  done
+  rm "${pkgdir}"/usr/share/man/man5/ldap.conf.5
+  rm -r "${pkgdir}"/run
+
+# get rid of duplicate default conf files
+  rm "${pkgdir}"/etc/openldap/*.defa

[arch-commits] Commit in openldap/trunk (PKGBUILD)

2011-11-03 Thread Eric Bélanger
Date: Thursday, November 3, 2011 @ 04:02:29
  Author: eric
Revision: 141926

Rebuild to add signature, Clean up depends and makedepends

Modified:
  openldap/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 07:48:25 UTC (rev 141925)
+++ PKGBUILD2011-11-03 08:02:29 UTC (rev 141926)
@@ -4,11 +4,11 @@
 pkgbase=openldap
 pkgname=('libldap' 'openldap')
 pkgver=2.4.26
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 url="http://www.openldap.org/";
 license=('custom')
-makedepends=('groff' 'libfetch' 'e2fsprogs' 'libtool' 'util-linux' 'libsasl')
+makedepends=('libfetch' 'libltdl' 'libsasl')
 
source=(ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/${pkgbase}-${pkgver}.tgz
 slapd slapd.default ntlm.patch)
 md5sums=('f36f3086031dd56ae94f722ffae8df5e'
@@ -43,7 +43,7 @@
 
 package_libldap() {
   pkgdesc="Lightweight Directory Access Protocol (LDAP) client libraries"
-  depends=('libsasl' 'libfetch' 'e2fsprogs')
+  depends=('libsasl' 'libfetch')
   backup=('etc/openldap/ldap.conf')
   options=('!libtool')
 
@@ -66,7 +66,7 @@
 
 package_openldap() {
   pkgdesc="Lightweight Directory Access Protocol (LDAP) client and server"
-  depends=("libldap>=${pkgver}" 'libtool' 'util-linux')
+  depends=("libldap>=${pkgver}" 'libltdl')
   backup=('etc/openldap/slapd.conf' 'etc/conf.d/slapd')
   options=('!libtool' 'emptydirs')
   install=openldap.install



[arch-commits] Commit in bzr/repos (4 files)

2011-11-03 Thread Andrea Scarpino
Date: Thursday, November 3, 2011 @ 03:48:25
  Author: andrea
Revision: 141925

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  bzr/repos/extra-i686/PKGBUILD
(from rev 141924, bzr/trunk/PKGBUILD)
  bzr/repos/extra-x86_64/PKGBUILD
(from rev 141924, bzr/trunk/PKGBUILD)
Deleted:
  bzr/repos/extra-i686/PKGBUILD
  bzr/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   63 
 extra-x86_64/PKGBUILD |   63 
 2 files changed, 64 insertions(+), 62 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-11-03 07:47:57 UTC (rev 141924)
+++ extra-i686/PKGBUILD 2011-11-03 07:48:25 UTC (rev 141925)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer :
-# Contributor: Hugo Doria 
-
-pkgname=bzr
-pkgver=2.4.1
-pkgrel=1
-pkgdesc="A decentralized revision control system (bazaar)"
-arch=('i686' 'x86_64')
-url="http://bazaar.canonical.com/en/";
-license=('GPL')
-depends=('python2')
-optdepends=('python-paramiko: for sftp support')
-source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('61068bfc1f0c9fb8a4b92bca204e0df8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i 's|man/man1|share/man/man1|' setup.py
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-
bzrlib/{plugins/bash_completion/bashcomp.py,tests/ssl_certs/create_ssls.py,patiencediff.py,_patiencediff_py.py}
-  python2 setup.py build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  # bash-completion
-  install -D -m644 contrib/bash/bzr "${pkgdir}/etc/bash_completion.d/bzr"
-}

Copied: bzr/repos/extra-i686/PKGBUILD (from rev 141924, bzr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-11-03 07:48:25 UTC (rev 141925)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer :
+# Contributor: Hugo Doria 
+
+pkgname=bzr
+pkgver=2.4.2
+pkgrel=1
+pkgdesc="A decentralized revision control system (bazaar)"
+arch=('i686' 'x86_64')
+url="http://bazaar.canonical.com/en/";
+license=('GPL')
+depends=('python2')
+optdepends=('python-paramiko: for sftp support')
+source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz"{,.sig})
+md5sums=('cfc06fddd348445c65a247c0b33a05db'
+ '90294e34a45df20b16be47a32c800c89')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -i 's|man/man1|share/man/man1|' setup.py
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+
bzrlib/{plugins/bash_completion/bashcomp.py,tests/ssl_certs/create_ssls.py,patiencediff.py,_patiencediff_py.py}
+  python2 setup.py build
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  # bash-completion
+  install -D -m644 contrib/bash/bzr "${pkgdir}/etc/bash_completion.d/bzr"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-11-03 07:47:57 UTC (rev 141924)
+++ extra-x86_64/PKGBUILD   2011-11-03 07:48:25 UTC (rev 141925)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer :
-# Contributor: Hugo Doria 
-
-pkgname=bzr
-pkgver=2.4.1
-pkgrel=1
-pkgdesc="A decentralized revision control system (bazaar)"
-arch=('i686' 'x86_64')
-url="http://bazaar.canonical.com/en/";
-license=('GPL')
-depends=('python2')
-optdepends=('python-paramiko: for sftp support')
-source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('61068bfc1f0c9fb8a4b92bca204e0df8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i 's|man/man1|share/man/man1|' setup.py
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-
bzrlib/{plugins/bash_completion/bashcomp.py,tests/ssl_certs/create_ssls.py,patiencediff.py,_patiencediff_py.py}
-  python2 setup.py build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  # bash-completion
-  install -D -m644 contrib/bash/bzr "${pkgdir}/etc/bash_completion.d/bzr"
-}

Copied: bzr/repos/extra-x86_64/PKGBUILD (from rev 141924, bzr/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-11-03 07:48:25 UTC (rev 141925)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer :
+# Contributor: Hugo Doria 
+
+pkgname=bzr
+pkgver=2.4.2
+pkgrel=1
+pkgdesc="A decentralized revision control system (bazaar)"
+arch=('i686' 'x86_64')
+url="http://bazaar.canonical.com/en/";
+license=('GPL')
+depends=('python2')
+optdepends=('python-paramiko: for sftp support')
+sourc

[arch-commits] Commit in bzr/trunk (PKGBUILD)

2011-11-03 Thread Andrea Scarpino
Date: Thursday, November 3, 2011 @ 03:47:57
  Author: andrea
Revision: 141924

upgpkg: bzr 2.4.2-1

Upstream release

Modified:
  bzr/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-03 07:35:28 UTC (rev 141923)
+++ PKGBUILD2011-11-03 07:47:57 UTC (rev 141924)
@@ -3,7 +3,7 @@
 # Contributor: Hugo Doria 
 
 pkgname=bzr
-pkgver=2.4.1
+pkgver=2.4.2
 pkgrel=1
 pkgdesc="A decentralized revision control system (bazaar)"
 arch=('i686' 'x86_64')
@@ -11,8 +11,9 @@
 license=('GPL')
 depends=('python2')
 optdepends=('python-paramiko: for sftp support')
-source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('61068bfc1f0c9fb8a4b92bca204e0df8')
+source=("http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz"{,.sig})
+md5sums=('cfc06fddd348445c65a247c0b33a05db'
+ '90294e34a45df20b16be47a32c800c89')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



  1   2   >