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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 04:52:03
  Author: allan
Revision: 102057

upgpkg: iptables 1.4.10-1
upstream update

Modified:
  iptables/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-04 03:15:47 UTC (rev 102056)
+++ PKGBUILD2010-12-04 09:52:03 UTC (rev 102057)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Baechler tho...@archlinux.org
 
 pkgname=iptables
-pkgver=1.4.9
+pkgver=1.4.10
 pkgrel=1
 pkgdesc=A Linux kernel packet control tool
 arch=('i686' 'x86_64')
@@ -11,10 +11,14 @@
 url=http://www.netfilter.org/;
 depends=('glibc' 'bash')
 options=('!libtool')
-source=(http://www.iptables.org/projects/iptables/files/${pkgname}-${pkgver}.tar.bz2
 \
-iptables ip6tables empty.rules simple_firewall.rules iptables.conf.d)
+source=(http://www.iptables.org/projects/iptables/files/${pkgname}-${pkgver}.tar.bz2
+iptables
+ip6tables
+empty.rules
+simple_firewall.rules
+iptables.conf.d)
 backup=(etc/conf.d/iptables)
-sha1sums=('c961b58c57cb99b10f5bb753bf3b436c0df05c7c'
+sha1sums=('8190b8c9714a3eec825317e8ac1deeb3d11c6d29'
   'd7540316581bb66c5594885882a14ba394e95098'
   '70d70113e3a23f0fe99404c5536507a887a4ca5c'
   '83b3363878e3660ce23b2ad325b53cbd6c796ecf'
@@ -33,13 +37,13 @@
--with-xtlibdir=/usr/lib/iptables \
--enable-devel --enable-libipq
 
-  make || return 1
+  make
 }
 
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
-  make DESTDIR=${pkgdir} install || return 1
+  make DESTDIR=${pkgdir} install
 
   install -D -m755 ../iptables ${pkgdir}/etc/rc.d/iptables
   install -D -m755 ../ip6tables ${pkgdir}/etc/rc.d/ip6tables



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 04:53:11
  Author: allan
Revision: 102058

archrelease: copy trunk to testing-i686

Added:
  iptables/repos/testing-i686/



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 04:54:24
  Author: allan
Revision: 102059

archrelease: copy trunk to testing-x86_64

Added:
  iptables/repos/testing-x86_64/



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 05:48:14
  Author: allan
Revision: 102060

upgpkg: isdn4k-utils 3.2p1-6
rebuild of old package, tidy up PKGBUILD, squich all build fix patches into one

Added:
  isdn4k-utils/trunk/isdn4k-utils-3.2p1-build.patch
Modified:
  isdn4k-utils/trunk/PKGBUILD
Deleted:
  isdn4k-utils/trunk/gcc3.3-slashdev.patch
  isdn4k-utils/trunk/gcc34.patch

+
 PKGBUILD   |   33 
 gcc3.3-slashdev.patch  |   62 -
 gcc34.patch|   91 -
 isdn4k-utils-3.2p1-build.patch | 2028 +++
 4 files changed, 2046 insertions(+), 168 deletions(-)

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


[arch-commits] Commit in isdn4k-utils/trunk (isdn4k-utils-gcc4.patch)

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 05:51:39
  Author: allan
Revision: 102061

upgpkg: isdn4k-utils 3.2p1-6
rebuild of old package, tidy up PKGBUILD, squich all build fix patches into one

Deleted:
  isdn4k-utils/trunk/isdn4k-utils-gcc4.patch

-+
 isdn4k-utils-gcc4.patch |   61 --
 1 file changed, 61 deletions(-)

Deleted: isdn4k-utils-gcc4.patch
===
--- isdn4k-utils-gcc4.patch 2010-12-04 10:48:14 UTC (rev 102060)
+++ isdn4k-utils-gcc4.patch 2010-12-04 10:51:39 UTC (rev 102061)
@@ -1,61 +0,0 @@
 ./eicon/eiconctrl.c.gcc4   2001-03-01 15:59:12.0 +0100
-+++ ./eicon/eiconctrl.c2005-07-21 19:37:33.0 +0200
-@@ -1970,7 +1970,7 @@
-   val = strtol(p, q, 16);
-   p = q;
-   val = strtol(p, q, 16);
--  (unsigned short) *buffer = (unsigned short) val;
-+  *buffer = (unsigned short) val;
-   pos = 2;
-   while ((p != q)  (*q != 0)) {
-   p = q;
 ./hisax/hisaxctrl.c.gcc4   2000-06-29 19:38:26.0 +0200
-+++ ./hisax/hisaxctrl.c2005-07-21 19:21:41.0 +0200
-@@ -43,7 +43,8 @@
-   fprintf(stderr, cannot open file %s\n, fname);
-   exit(-1);
-   }
--  p = (int *) buffer = (unsigned char *) malloc(MAX_SIZE+4);
-+  buffer = (unsigned char *) malloc(MAX_SIZE+4);
-+  p = (int *) buffer;
-   if (!buffer) {
-   fprintf(stderr, cannot get %d byte memory\n, MAX_SIZE+4);
-   exit(-1);
 ./ipppd/main.c.gcc42002-07-18 02:06:21.0 +0200
-+++ ./ipppd/main.c 2005-07-21 19:39:38.0 +0200
-@@ -1041,9 +1041,14 @@
- static char line[256];/* line to be logged 
accumulated here */
- static char *linep;
- 
-+#ifdef __STDC__
-+static void pr_log(void *arg, char *fmt, ...);
-+#else /* __STDC__ */
-+static void pr_log(arg, fmt, va_alist);
-+#endif
-+
- void log_packet(u_char *p,int len,char *prefix,int linkunit)
- {
--  static void pr_log __P((void *, char *, ...));
- 
- int i, n;
- u_short proto;
 ./isdnlog/tools/isdnrate.c.gcc42002-08-15 19:22:43.0 +0200
-+++ ./isdnlog/tools/isdnrate.c 2005-07-21 19:14:24.0 +0200
-@@ -309,7 +309,7 @@
- 
- static void print_header(void);
- 
--static char *myname, *myshortname;
-+char *myname, *myshortname;
- static char options[] = ab:d:f:h:l:op:st:v::x:CD::G:HLNP:O:S:TUVX::Z;
- static char usage[] = %s: usage: %s [ -%s ] Destination ...\n;
- 
-@@ -318,7 +318,7 @@
- static int usestat = 0;
- static int duration = LCR_DURATION;
- static time_t start;
--static int day, month, year, hour, min, sec;
-+int day, month, year, hour, min, sec;
- static char ignore[MAXPROVIDER];
- static char *fromarea = 0;
- static char wanted_day;



[arch-commits] Commit in isdn4k-utils/repos (testing-i686)

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 05:52:14
  Author: allan
Revision: 102062

archrelease: copy trunk to testing-i686

Added:
  isdn4k-utils/repos/testing-i686/



[arch-commits] Commit in isdn4k-utils/repos (testing-x86_64)

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 05:53:00
  Author: allan
Revision: 102063

archrelease: copy trunk to testing-x86_64

Added:
  isdn4k-utils/repos/testing-x86_64/



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 05:58:12
  Author: allan
Revision: 102064

upgpkg: reiserfsprogs 3.6.21-3
rebuild of old package, tidy up PKGBUILD

Modified:
  reiserfsprogs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-04 10:53:00 UTC (rev 102063)
+++ PKGBUILD2010-12-04 10:58:12 UTC (rev 102064)
@@ -4,10 +4,10 @@
 
 pkgname=reiserfsprogs
 pkgver=3.6.21
-pkgrel=2
+pkgrel=3
 pkgdesc=Reiserfs utilities
-arch=(i686 x86_64)
-url=http://www.kernel.org/pub/linux/utils/fs/reiserfs/README
+arch=('i686' 'x86_64')
+url=http://www.kernel.org/pub/linux/utils/fs/reiserfs/README;
 license=('GPL')
 groups=('base')
 depends=('util-linux-ng=2.16')
@@ -16,9 +16,14 @@
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sbindir=/sbin || return 1
-  make || return 1
-  make DESTDIR=${pkgdir} install || return 1
+  ./configure --prefix=/usr --sbindir=/sbin
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
   ln -s reiserfsck ${pkgdir}/sbin/fsck.reiserfs
   ln -s mkreiserfs ${pkgdir}/sbin/mkfs.reiserfs
 }



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 05:58:50
  Author: allan
Revision: 102065

archrelease: copy trunk to testing-i686

Added:
  reiserfsprogs/repos/testing-i686/



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 05:59:27
  Author: allan
Revision: 102066

archrelease: copy trunk to testing-x86_64

Added:
  reiserfsprogs/repos/testing-x86_64/



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 06:22:12
  Author: allan
Revision: 102067

upgpkg: nfsidmap 0.23-4
rebuild of old package, tidy up PKGBUILD

Modified:
  nfsidmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-04 10:59:27 UTC (rev 102066)
+++ PKGBUILD2010-12-04 11:22:12 UTC (rev 102067)
@@ -4,7 +4,7 @@
 
 pkgname=nfsidmap
 pkgver=0.23
-pkgrel=3
+pkgrel=4
 pkgdesc=Library to help mapping IDs, mainly for NFSv4
 arch=('i686' 'x86_64')
 url=http://www.citi.umich.edu/projects/nfsv4/linux/;
@@ -17,12 +17,17 @@
 build() {
   cd $srcdir/lib$pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc
-  make || return 1
-  make DESTDIR=$pkgdir install || return 1
+  make
+}
+
+package() {
+  cd $srcdir/lib$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
   # remove idmap manpage provided by nfs-utils!
-  rm $pkgdir/usr/share/man/man5/idmapd.conf.5 || return 1
+  rm $pkgdir/usr/share/man/man5/idmapd.conf.5
+
   # install license
-  install -Dm644 COPYING \
-   $pkgdir/usr/share/licenses/nfsidmap/LICENSE || return 1
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/nfsidmap/LICENSE
 }
 



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 06:22:48
  Author: allan
Revision: 102068

archrelease: copy trunk to testing-i686

Added:
  nfsidmap/repos/testing-i686/



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 06:23:22
  Author: allan
Revision: 102069

archrelease: copy trunk to testing-x86_64

Added:
  nfsidmap/repos/testing-x86_64/



[arch-commits] Commit in kdelibs/kde-unstable (PKGBUILD)

2010-12-04 Thread Andrea Scarpino
Date: Saturday, December 4, 2010 @ 06:28:28
  Author: andrea
Revision: 102070

libxcursor is not needed

Modified:
  kdelibs/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-04 11:23:22 UTC (rev 102069)
+++ PKGBUILD2010-12-04 11:28:28 UTC (rev 102070)
@@ -9,10 +9,10 @@
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
 license=('GPL' 'LGPL' 'FDL')
-depends=('strigi' 'attica' 'libxss' 'libxcursor' 'xz' 'openssl' 'soprano'
+depends=('strigi' 'attica' 'libxss' 'xz' 'openssl' 'soprano' 'heimdal'
 'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt' 
'grantlee'
 'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr' 'xdg-utils'
-'phonon' 'hicolor-icon-theme' 'upower' 'udisks' 'heimdal')
+'phonon' 'hicolor-icon-theme' 'upower' 'udisks')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'intltool' 'avahi' 'libgl' 'hspell'
 'docbook-xsl')
 replaces=('arts' 'kdelibs-experimental')



[arch-commits] Commit in kdebase-workspace/kde-unstable (PKGBUILD)

2010-12-04 Thread Andrea Scarpino
Date: Saturday, December 4, 2010 @ 06:28:47
  Author: andrea
Revision: 102071

add libxcursor

Modified:
  kdebase-workspace/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-04 11:28:28 UTC (rev 102070)
+++ PKGBUILD2010-12-04 11:28:47 UTC (rev 102071)
@@ -14,7 +14,8 @@
 #  not detected by namcap because libgl depends on it
 #  but nvidia providing libgl does not depend on libxdamage
 depends=('kdepim-runtime' 'lm_sensors' 'libraw1394' 'qimageblitz' 
'libqalculate'
-'polkit-kde' 'consolekit' 'xorg-utils' 'libxdamage' 'libxkbfile' 
'libdmtx')
+'polkit-kde' 'consolekit' 'xorg-utils' 'libxdamage' 'libxkbfile' 
'libdmtx'
+'libxcursor')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'networkmanager' 'bluez'
 'docbook-xsl' 'python2')
 replaces=('kdmtheme' 'kde-common' 'guidance-power-manager' 'policykit-kde' 
'kdebase-kinfocenter')



[arch-commits] Commit in kdebase-workspace/kde-unstable (PKGBUILD)

2010-12-04 Thread Andrea Scarpino
Date: Saturday, December 4, 2010 @ 06:32:18
  Author: andrea
Revision: 102072

kdebindings-python is needed at build time

Modified:
  kdebase-workspace/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-04 11:28:47 UTC (rev 102071)
+++ PKGBUILD2010-12-04 11:32:18 UTC (rev 102072)
@@ -17,7 +17,7 @@
 'polkit-kde' 'consolekit' 'xorg-utils' 'libxdamage' 'libxkbfile' 
'libdmtx'
 'libxcursor')
 makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'networkmanager' 'bluez'
-'docbook-xsl' 'python2')
+'docbook-xsl' 'python2' 'kdebindings-python')
 replaces=('kdmtheme' 'kde-common' 'guidance-power-manager' 'policykit-kde' 
'kdebase-kinfocenter')
 conflicts=('kde-common' 'guidance-power-manager' 'policykit-kde' 
'kdebase-kinfocenter')
 install=${pkgname}.install



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 06:43:19
  Author: allan
Revision: 102073

upgpkg: attr 2.4.44-2
rebuild of old package, tidy up PKGBUILD

Modified:
  attr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-04 11:32:18 UTC (rev 102072)
+++ PKGBUILD2010-12-04 11:43:19 UTC (rev 102073)
@@ -2,9 +2,9 @@
 # Maintainer: Thomas Bächler tho...@archlinux.org
 pkgname=attr
 pkgver=2.4.44
-pkgrel=1
+pkgrel=2
 pkgdesc=Extended attribute support library for ACL support
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 url=http://oss.sgi.com/projects/xfs/;
 license=('LGPL')
 depends=('glibc') 
@@ -21,13 +21,17 @@
   autoconf
   ./configure --prefix=/usr 
   sed -i -e 's/man2//g' man/Makefile
-  make || return 1 
+  make
+}
+
+package() {
+  cd $srcdir/attr-$pkgver
   make prefix=${pkgdir}/usr install install-lib install-dev
 
   # tidy up
   cd ${pkgdir}
 
-  mkdir -v lib
+  install -dm755 lib
   mv -v usr/lib/libattr.so* lib/
   ln -sv ../../lib/libattr.so.1 usr/lib/libattr.so
 



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 06:43:59
  Author: allan
Revision: 102074

archrelease: copy trunk to testing-i686

Added:
  attr/repos/testing-i686/



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

2010-12-04 Thread Allan McRae
Date: Saturday, December 4, 2010 @ 06:44:36
  Author: allan
Revision: 102075

archrelease: copy trunk to testing-x86_64

Added:
  attr/repos/testing-x86_64/



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

2010-12-04 Thread Ionut Biru
Date: Saturday, December 4, 2010 @ 07:37:04
  Author: ibiru
Revision: 102076

upgpkg: python-telepathy 0.15.19-1
update to 0.15.19

Modified:
  python-telepathy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-12-04 11:44:36 UTC (rev 102075)
+++ PKGBUILD2010-12-04 12:37:04 UTC (rev 102076)
@@ -2,8 +2,8 @@
 # Maintainer:  Ionut Biru ib...@archlinux.org
 # Contributor: Daniel Balieiro dan...@balieiro.com
 pkgname=python-telepathy
-pkgver=0.15.18
-pkgrel=2
+pkgver=0.15.19
+pkgrel=1
 pkgdesc=Python libraries for use in Telepathy clients and connection managers
 arch=('i686' 'x86_64')
 url=http://telepathy.freedesktop.org;
@@ -11,7 +11,7 @@
 depends=('dbus-python')
 makedepends=('libxslt')
 
source=(http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-${pkgver}.tar.gz)
-md5sums=('51da78a77681b0652d9b4ca941da0658')
+md5sums=('f7ca25ab3c88874015b7e9728f7f3017')
 
 build() {
 cd ${srcdir}/telepathy-python-${pkgver}



[arch-commits] Commit in python-telepathy/repos (extra-i686)

2010-12-04 Thread Ionut Biru
Date: Saturday, December 4, 2010 @ 07:37:09
  Author: ibiru
Revision: 102077

archrelease: remove extra-i686

Deleted:
  python-telepathy/repos/extra-i686/



[arch-commits] Commit in python-telepathy/repos (extra-i686)

2010-12-04 Thread Ionut Biru
Date: Saturday, December 4, 2010 @ 07:37:23
  Author: ibiru
Revision: 102078

archrelease: copy trunk to extra-i686

Added:
  python-telepathy/repos/extra-i686/



[arch-commits] Commit in python-telepathy/repos (extra-x86_64)

2010-12-04 Thread Ionut Biru
Date: Saturday, December 4, 2010 @ 07:37:30
  Author: ibiru
Revision: 102079

archrelease: remove extra-x86_64

Deleted:
  python-telepathy/repos/extra-x86_64/



[arch-commits] Commit in python-telepathy/repos (extra-x86_64)

2010-12-04 Thread Ionut Biru
Date: Saturday, December 4, 2010 @ 07:37:43
  Author: ibiru
Revision: 102080

archrelease: copy trunk to extra-x86_64

Added:
  python-telepathy/repos/extra-x86_64/