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

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:32:15
  Author: andyrtr
Revision: 135275

upgpkg: ghostscript 9.04-3
fix broken color printing FS#25519; revert to internal lcms library

Modified:
  ghostscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-11 20:01:59 UTC (rev 135274)
+++ PKGBUILD2011-08-12 06:32:15 UTC (rev 135275)
@@ -3,11 +3,11 @@
 
 pkgname=ghostscript
 pkgver=9.04
-pkgrel=2
+pkgrel=3
 pkgdesc=An interpreter for the PostScript language
 arch=('i686' 'x86_64')
 license=('GPL3' 'custom')
-depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng' 'libjpeg' 
'libtiff' 'lcms')
+depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng' 'libjpeg' 
'libtiff') # 'lcms' 'lcms2') # move in libpaper from community?
 makedepends=('gtk2' 'gnutls')
 optdepends=('texlive-core:  needed for dvipdf'
 'gtk2:  needed for gsx')
@@ -20,7 +20,7 @@
   cd ${srcdir}/ghostscript-${pkgver}
 
   # force it to use system-libs
-  rm -rf jpeg libpng zlib jasper expat tiff lcms
+  rm -rf jpeg libpng zlib jasper expat tiff freetype #lcms lcms2 # system 
lcms2 would not be used. lcms breaks color printing 
https://bugs.archlinux.org/task/25519
 
   ./configure --prefix=/usr \
--enable-dynamic \
@@ -31,8 +31,11 @@
--with-drivers=ALL\
--with-fontpath=/usr/share/fonts/Type1:/usr/share/fonts \
--with-install-cups \
-   --disable-compile-inits # needed for linking with system-zlib
-  make || return 1
+   --enable-fontconfig \
+   --enable-freetype \
+   --without-luratech \
+   --disable-compile-inits #--help # needed for linking with system-zlib
+  make
   
   # Build IJS
   cd ${srcdir}/ghostscript-${pkgver}/ijs



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

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:32:26
  Author: andyrtr
Revision: 135276

archrelease: remove extra-i686

Deleted:
  ghostscript/repos/extra-i686/



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

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:32:42
  Author: andyrtr
Revision: 135277

archrelease: copy trunk to extra-i686

Added:
  ghostscript/repos/extra-i686/



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

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:32:47
  Author: andyrtr
Revision: 135278

archrelease: remove extra-x86_64

Deleted:
  ghostscript/repos/extra-x86_64/



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

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:33:04
  Author: andyrtr
Revision: 135279

archrelease: copy trunk to extra-x86_64

Added:
  ghostscript/repos/extra-x86_64/



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

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:48:04
  Author: andyrtr
Revision: 135280

upgpkg: gnutls 3.0.0-2
fix AES-NI hardware acceleration on i686 architecture

Added:
  gnutls/trunk/align.patch
Modified:
  gnutls/trunk/PKGBUILD

-+
 PKGBUILD|   21 +--
 align.patch |   64 ++
 2 files changed, 75 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 06:33:04 UTC (rev 135279)
+++ PKGBUILD2011-08-12 06:48:04 UTC (rev 135280)
@@ -3,7 +3,7 @@
 
 pkgname=gnutls
 pkgver=3.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A library which provides a secure layer over a reliable transport 
layer
 arch=('i686' 'x86_64')
 license=('GPL3' 'LGPL')
@@ -11,11 +11,15 @@
 install=gnutls.install
 options=('!libtool' '!zipman')
 depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle=2.2')
-source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz)
-md5sums=('0677a7f48810ff8df8335a9a9f9b')
+source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz
+   align.patch)
+md5sums=('0677a7f48810ff8df8335a9a9f9b'
+ 'bce979498addb45d0fa8d6951f93fab3')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  # fix AES-NI for i686
+  patch -Np1 -i ${srcdir}/align.patch
   ./configure --prefix=/usr \
--with-zlib \
--disable-static \
@@ -24,14 +28,11 @@
   make
 }
 
-# i686 test segfault
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check # passes all  || /bin/true
+}
 
-#check() {
-#  cd ${srcdir}/${pkgname}-${pkgver}
-  #make check # passes all  || /bin/true
-#  make check # || /bin/true # see 
https://lists.gnu.org/archive/html/gnutls-devel/2011-06/msg7.html
-#}
-
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install

Added: align.patch
===
--- align.patch (rev 0)
+++ align.patch 2011-08-12 06:48:04 UTC (rev 135280)
@@ -0,0 +1,64 @@
+diff --git a/lib/accelerated/intel/aes-x86.c b/lib/accelerated/intel/aes-x86.c
+index 6801e7e..ff5b714 100644
+--- a/lib/accelerated/intel/aes-x86.c
 b/lib/accelerated/intel/aes-x86.c
+@@ -40,6 +40,10 @@ struct aes_ctx
+   uint8_t iv[16];
+ };
+ 
++#define AESNI_MIN_ALIGN 16
++#define AESNI_ALIGN(x) \
++((void *)(((size_t)(x)+AESNI_MIN_ALIGN-1)~(AESNI_MIN_ALIGN-1)))
++
+ static int
+ aes_cipher_init (gnutls_cipher_algorithm_t algorithm, void **_ctx)
+ {
+@@ -69,11 +73,11 @@ aes_cipher_setkey (void *_ctx, const void *userkey, size_t 
keysize)
+   struct aes_ctx *ctx = _ctx;
+   int ret;
+ 
+-  ret = aesni_set_encrypt_key (userkey, keysize * 8, ctx-expanded_key);
++  ret = aesni_set_encrypt_key (userkey, keysize * 8, 
AESNI_ALIGN(ctx-expanded_key));
+   if (ret != 0)
+ return gnutls_assert_val (GNUTLS_E_ENCRYPTION_FAILED);
+ 
+-  ret = aesni_set_decrypt_key (userkey, keysize * 8, ctx-expanded_key_dec);
++  ret = aesni_set_decrypt_key (userkey, keysize * 8, 
AESNI_ALIGN(ctx-expanded_key_dec));
+   if (ret != 0)
+ return gnutls_assert_val (GNUTLS_E_ENCRYPTION_FAILED);
+ 
+@@ -95,7 +99,7 @@ aes_encrypt (void *_ctx, const void *src, size_t src_size,
+ {
+   struct aes_ctx *ctx = _ctx;
+ 
+-  aesni_cbc_encrypt (src, dst, src_size, ctx-expanded_key, ctx-iv, 1);
++  aesni_cbc_encrypt (src, dst, src_size, AESNI_ALIGN(ctx-expanded_key), 
ctx-iv, 1);
+   return 0;
+ }
+ 
+@@ -105,7 +109,7 @@ aes_decrypt (void *_ctx, const void *src, size_t src_size,
+ {
+   struct aes_ctx *ctx = _ctx;
+ 
+-  aesni_cbc_encrypt (src, dst, src_size, ctx-expanded_key_dec, ctx-iv, 0);
++  aesni_cbc_encrypt (src, dst, src_size, AESNI_ALIGN(ctx-expanded_key_dec), 
ctx-iv, 0);
+ 
+   return 0;
+ }
+diff --git a/lib/accelerated/intel/aes-x86.h b/lib/accelerated/intel/aes-x86.h
+index 8f49ff3..20a169e 100644
+--- a/lib/accelerated/intel/aes-x86.h
 b/lib/accelerated/intel/aes-x86.h
+@@ -11,10 +11,11 @@ void register_x86_crypto (void);
+ # define ALIGN16
+ #endif
+ 
++#define AES_KEY_ALIGN_SIZE 8
+ #define AES_MAXNR 14
+ typedef struct
+ {
+-  uint32_t ALIGN16 rd_key[4 * (AES_MAXNR + 1)];
++  uint32_t rd_key[4 * (AES_MAXNR + 1)+AES_KEY_ALIGN_SIZE];
+   int rounds;
+ } AES_KEY;
+ 



[arch-commits] Commit in gnutls/repos (staging-i686)

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:48:13
  Author: andyrtr
Revision: 135281

archrelease: remove staging-i686

Deleted:
  gnutls/repos/staging-i686/



[arch-commits] Commit in gnutls/repos (staging-i686)

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:48:30
  Author: andyrtr
Revision: 135282

archrelease: copy trunk to staging-i686

Added:
  gnutls/repos/staging-i686/



[arch-commits] Commit in gnutls/repos (staging-x86_64)

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:48:34
  Author: andyrtr
Revision: 135283

archrelease: remove staging-x86_64

Deleted:
  gnutls/repos/staging-x86_64/



[arch-commits] Commit in gnutls/repos (staging-x86_64)

2011-08-12 Thread andyrtr
Date: Friday, August 12, 2011 @ 02:48:51
  Author: andyrtr
Revision: 135284

archrelease: copy trunk to staging-x86_64

Added:
  gnutls/repos/staging-x86_64/



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:21:08
  Author: tpowa
Revision: 135285

upgpkg: qemu 0.15.0-1
bump to latest version, removed esound

Modified:
  qemu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 06:48:51 UTC (rev 135284)
+++ PKGBUILD2011-08-12 09:21:08 UTC (rev 135285)
@@ -1,17 +1,17 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=qemu
-pkgver=0.14.1
+pkgver=0.15.0
 pkgrel=1
-pkgdesc=QEMU is a generic and open source processor emulator which achieves a 
good emulation speed by using dynamic translation.
+pkgdesc=A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation.
 arch=('i686' 'x86_64')
 license=('GPL2' 'LGPL2.1')
 url=http://wiki.qemu.org/Index.html;
-makedepends=('texi2html' 'perl')
-depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'esound' 'gnutls=2.4.1' 'bluez' 
'vde2' 'util-linux-ng' 'curl' 'libsasl')
+makedepends=('texi2html' 'perl' 'python2')
+depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls=2.4.1' 
'bluez' 'vde2' 'util-linux-ng' 'curl' 'libsasl' 'libgl')
 backup=('etc/qemu/target-x86_64.conf')
 install=qemu.install
-source=(http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.gz
+source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.gz
 65-kvm.rules)
 options=(!strip)
 
@@ -19,10 +19,10 @@
 {
   cd ${srcdir}/${pkgname}-${pkgver}
   sed -i -e 's/lib64/lib/g' x86_64.ld
-  ./configure --prefix=/usr --sysconfdir=/etc 
--audio-drv-list=oss,alsa,sdl,esd \
+  ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl \
+  --python=/usr/bin/python2 \
   --audio-card-list=ac97,sb16,es1370,hda \
-  --enable-docs \
-  --kerneldir=/usr/src/linux-$(uname -r)
+  --enable-docs
   make
 }
 
@@ -40,5 +40,5 @@
 done
 
 }
-md5sums=('b6c713a8db638e173af53a62d5178640'
+md5sums=('dbc55b014bcd21b98e347f6a90f7fb6d'
  'b316a066d2f1bb57d8f5b7ea1d0d1caf')



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:21:21
  Author: tpowa
Revision: 135286

archrelease: remove extra-i686

Deleted:
  qemu/repos/extra-i686/



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:21:36
  Author: tpowa
Revision: 135287

archrelease: copy trunk to extra-i686

Added:
  qemu/repos/extra-i686/



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:21:40
  Author: tpowa
Revision: 135288

archrelease: remove extra-x86_64

Deleted:
  qemu/repos/extra-x86_64/



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:21:55
  Author: tpowa
Revision: 135289

archrelease: copy trunk to extra-x86_64

Added:
  qemu/repos/extra-x86_64/



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:22:48
  Author: tpowa
Revision: 135290

upgpkg: qemu-kvm 0.15.0-1
bump to latest version, removed esound depend

Modified:
  qemu-kvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 09:21:55 UTC (rev 135289)
+++ PKGBUILD2011-08-12 09:22:48 UTC (rev 135290)
@@ -1,14 +1,14 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=qemu-kvm
-pkgver=0.14.1
-pkgrel=2
+pkgver=0.15.0
+pkgrel=1
 pkgdesc=Latest KVM QEMU is a generic and open source processor emulator which 
achieves a good emulation speed by using dynamic translation.
 arch=(i686 x86_64)
 license=('GPL2' 'LGPL2.1')
 url=http://www.linux-kvm.org;
-depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'esound' 
'gnutls=2.4.1' 'bluez' 'vde2' 'util-linux-ng')
-makedepends=('texi2html' 'perl')
+depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 
'gnutls=2.4.1' 'bluez' 'vde2' 'util-linux-ng')
+makedepends=('texi2html' 'perl' 'python2')
 backup=('etc/qemu/target-x86_64.conf')
 install=qemu-kvm.install
 conflicts=('qemu')
@@ -23,8 +23,9 @@
 cd ${srcdir}/${pkgname}-${pkgver}
 # fix esound building
 ./configure --prefix=/usr \
+--python=/usr/bin/python2 \
 --sysconfdir=/etc \
---audio-drv-list=alsa,sdl,oss,esd \
+--audio-drv-list=alsa,sdl,oss \
 --audio-card-list=ac97,sb16,es1370,hda \
 --enable-docs
 make
@@ -53,5 +54,5 @@
   esac
 done
 }
-md5sums=('ed37a2c0b1981220b842920140574c63'
+md5sums=('b45b0deebba4ce47dcaaab3807f6ed47'
  'b316a066d2f1bb57d8f5b7ea1d0d1caf')



[arch-commits] Commit in qemu-kvm/repos (extra-i686)

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:22:54
  Author: tpowa
Revision: 135291

archrelease: remove extra-i686

Deleted:
  qemu-kvm/repos/extra-i686/



[arch-commits] Commit in qemu-kvm/repos (extra-i686)

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:23:10
  Author: tpowa
Revision: 135292

archrelease: copy trunk to extra-i686

Added:
  qemu-kvm/repos/extra-i686/



[arch-commits] Commit in qemu-kvm/repos (extra-x86_64)

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:23:14
  Author: tpowa
Revision: 135293

archrelease: remove extra-x86_64

Deleted:
  qemu-kvm/repos/extra-x86_64/



[arch-commits] Commit in qemu-kvm/repos (extra-x86_64)

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 05:23:33
  Author: tpowa
Revision: 135294

archrelease: copy trunk to extra-x86_64

Added:
  qemu-kvm/repos/extra-x86_64/



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 06:01:24
  Author: tpowa
Revision: 135295

upgpkg: samba 3.6.0-1
bump to latest version

Modified:
  samba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 09:23:33 UTC (rev 135294)
+++ PKGBUILD2011-08-12 10:01:24 UTC (rev 135295)
@@ -3,11 +3,11 @@
 # Contributor: judd jvi...@zeroflux.org
 pkgbase=samba
 pkgname=('smbclient' 'samba')
-pkgver=3.5.11
+pkgver=3.6.0
 # We use the 'A' to fake out pacman's version comparators.  Samba chooses
 # to append 'a','b',etc to their subsequent releases, which pamcan
 # misconstrues as alpha, beta, etc.  Bad samba!
-_realver=3.5.11
+_realver=3.6.0
 pkgrel=1
 arch=(i686 x86_64)
 url=http://www.samba.org;
@@ -129,7 +129,7 @@
   # copy ldap example
   install -D -m644 ${srcdir}/samba-${_realver}/examples/LDAP/samba.schema 
${pkgdir}/usr/share/doc/samba/examples/LDAP/samba.schema
 }
-md5sums=('81bbd16048c6ca40baea8c59126ee385'
+md5sums=('e297e0ea7923c7de8d7c1d8fd0ec0a05'
  'a3da19515a234c703876cf850c44e996'
  '5697da77590ec092cc8a883bae06093c'
  'a4bbfa39fee95bba2e7ad6b535fae7e6'



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 06:01:41
  Author: tpowa
Revision: 135296

archrelease: copy trunk to testing-i686

Added:
  samba/repos/testing-i686/



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 06:01:57
  Author: tpowa
Revision: 135297

archrelease: copy trunk to testing-x86_64

Added:
  samba/repos/testing-x86_64/



[arch-commits] Commit in java-commons-daemon/trunk (PKGBUILD)

2011-08-12 Thread Guillaume Alaux
Date: Friday, August 12, 2011 @ 09:22:21
  Author: guillaume
Revision: 135298

upgpkg: java-commons-daemon 1.0.6-1
Upstream release

Modified:
  java-commons-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 10:01:57 UTC (rev 135297)
+++ PKGBUILD2011-08-12 13:22:21 UTC (rev 135298)
@@ -1,14 +1,14 @@
 # Maintainer: Guillaume ALAUX guilla...@archlinux.org
 pkgname=('java-commons-daemon' 'java-jsvc')
 pkgbase=java-commons-daemon
-pkgver=1.0.5
+pkgver=1.0.6
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://commons.apache.org/daemon/;
 license=('APACHE')
 _libname=commons-daemon
 
source=(http://archive.apache.org/dist/commons/daemon/source/${_libname}-${pkgver}-src.tar.gz)
-md5sums=('2fe0a35d4a9c0338ecd45dad20f33662')
+md5sums=('28dc2e0a3634b2dc3605e9e6444d079f')
 makedepends=('apache-ant' 'docbook2x' 'docbook-xsl')
 
 
@@ -25,7 +25,7 @@
 }
 
 package_java-commons-daemon() {
-  pkgdesc=Set of Apache libraries for making Java applications run on UNIX 
more easily
+  pkgdesc=Alternative invocation mechanism for unix-daemon-like java code
   depends=('java-runtime')
 
   cd ${srcdir}/${_libname}-${pkgver}-src
@@ -40,7 +40,6 @@
   pkgdesc=Apache application for making Java applications run on UNIX more 
easily
   depends=(java-${_libname} 'libcap')
 
-  # jsvc
   cd ${srcdir}/${_libname}-${pkgver}-src/src/native/unix
 
   install -Dm755 jsvc ${pkgdir}/usr/bin/jsvc



[arch-commits] Commit in java-commons-daemon/repos (extra-i686)

2011-08-12 Thread Guillaume Alaux
Date: Friday, August 12, 2011 @ 09:22:33
  Author: guillaume
Revision: 135299

archrelease: remove extra-i686

Deleted:
  java-commons-daemon/repos/extra-i686/



[arch-commits] Commit in java-commons-daemon/repos (extra-i686)

2011-08-12 Thread Guillaume Alaux
Date: Friday, August 12, 2011 @ 09:22:47
  Author: guillaume
Revision: 135300

archrelease: copy trunk to extra-i686

Added:
  java-commons-daemon/repos/extra-i686/



[arch-commits] Commit in java-commons-daemon/repos (extra-x86_64)

2011-08-12 Thread Guillaume Alaux
Date: Friday, August 12, 2011 @ 09:22:51
  Author: guillaume
Revision: 135301

archrelease: remove extra-x86_64

Deleted:
  java-commons-daemon/repos/extra-x86_64/



[arch-commits] Commit in java-commons-daemon/repos (extra-x86_64)

2011-08-12 Thread Guillaume Alaux
Date: Friday, August 12, 2011 @ 09:23:05
  Author: guillaume
Revision: 135302

archrelease: copy trunk to extra-x86_64

Added:
  java-commons-daemon/repos/extra-x86_64/



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

2011-08-12 Thread Guillaume Alaux
Date: Friday, August 12, 2011 @ 09:24:00
  Author: guillaume
Revision: 135303

upgpkg: tomcat7 7.0.20-1
Upstream release

Modified:
  tomcat7/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 13:23:05 UTC (rev 135302)
+++ PKGBUILD2011-08-12 13:24:00 UTC (rev 135303)
@@ -1,6 +1,6 @@
 # Maintainer: Guillaume ALAUX guilla...@archlinux.org
 pkgname=tomcat7
-pkgver=7.0.19
+pkgver=7.0.20
 pkgrel=1
 pkgdesc=Servlet-3.0/JSP-2.2 Container
 arch=('any')
@@ -24,7 +24,7 @@
 tomcat7.install)
 
 noextract=(dbcp-${pkgver}.jar)
-md5sums=('8ff875b37e463b481b8e5c30b9368ac1'
+md5sums=('bb13b2910cc71c29e571ea062ad6ab3a'
  '13eb5570b4d7dcbbe8b8372575c010c9'
  '70eabcf5bbfa0978e738d95c64abb7a7'
  '1be39071bd27781c352b2d73b765e29d')



[arch-commits] Commit in tomcat7/repos (extra-any)

2011-08-12 Thread Guillaume Alaux
Date: Friday, August 12, 2011 @ 09:24:04
  Author: guillaume
Revision: 135304

archrelease: remove extra-any

Deleted:
  tomcat7/repos/extra-any/



[arch-commits] Commit in tomcat7/repos (extra-any)

2011-08-12 Thread Guillaume Alaux
Date: Friday, August 12, 2011 @ 09:24:18
  Author: guillaume
Revision: 135305

archrelease: copy trunk to extra-any

Added:
  tomcat7/repos/extra-any/



[arch-commits] Commit in pacman/repos (core-i686)

2011-08-12 Thread Ionut Biru
Date: Friday, August 12, 2011 @ 10:40:10
  Author: ibiru
Revision: 135306

db-move: pacman removed by ibiru for move to [core] (i686)

Deleted:
  pacman/repos/core-i686/



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

2011-08-12 Thread Ionut Biru
Date: Friday, August 12, 2011 @ 10:40:11
  Author: ibiru
Revision: 135307

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

Added:
  pacman/repos/core-i686/
Deleted:
  pacman/repos/testing-i686/



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

2011-08-12 Thread Ionut Biru
Date: Friday, August 12, 2011 @ 10:40:13
  Author: ibiru
Revision: 135309

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

Added:
  pacman/repos/core-x86_64/
Deleted:
  pacman/repos/testing-x86_64/



[arch-commits] Commit in pacman/repos (core-x86_64)

2011-08-12 Thread Ionut Biru
Date: Friday, August 12, 2011 @ 10:40:13
  Author: ibiru
Revision: 135308

db-move: pacman removed by ibiru for move to [core] (x86_64)

Deleted:
  pacman/repos/core-x86_64/



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

2011-08-12 Thread Ionut Biru
Date: Friday, August 12, 2011 @ 10:45:48
  Author: ibiru
Revision: 135310

drop esound

Modified:
  sdl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 14:40:13 UTC (rev 135309)
+++ PKGBUILD2011-08-12 14:45:48 UTC (rev 135310)
@@ -4,13 +4,13 @@
 
 pkgname=sdl
 pkgver=1.2.14
-pkgrel=6
+pkgrel=7
 pkgdesc=A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard
 arch=('i686' 'x86_64')
 url=http://www.libsdl.org;
 license=('LGPL')
 depends=('glibc' 'libxext' 'libxrender' 'libx11')
-makedepends=('alsa-lib' 'esound' 'mesa' 'libpulse')
+makedepends=('alsa-lib' 'mesa' 'libpulse')
 options=('!libtool')
 source=(http://www.libsdl.org/release/SDL-${pkgver}.tar.gz
 sdl-1.2.14-joystick-crash.diff



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

2011-08-12 Thread Ionut Biru
Date: Friday, August 12, 2011 @ 10:49:34
  Author: ibiru
Revision: 135311

archrelease: remove extra-i686

Deleted:
  sdl/repos/extra-i686/



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

2011-08-12 Thread Ionut Biru
Date: Friday, August 12, 2011 @ 10:49:56
  Author: ibiru
Revision: 135312

archrelease: copy trunk to extra-i686

Added:
  sdl/repos/extra-i686/



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

2011-08-12 Thread Ionut Biru
Date: Friday, August 12, 2011 @ 10:50:00
  Author: ibiru
Revision: 135313

archrelease: remove extra-x86_64

Deleted:
  sdl/repos/extra-x86_64/



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

2011-08-12 Thread Ionut Biru
Date: Friday, August 12, 2011 @ 10:50:22
  Author: ibiru
Revision: 135314

archrelease: copy trunk to extra-x86_64

Added:
  sdl/repos/extra-x86_64/



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

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 12:52:46
  Author: tpowa
Revision: 135315

upgpkg: qemu-kvm 0.15.0-2
rebuild against gnutls

Modified:
  qemu-kvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 14:50:22 UTC (rev 135314)
+++ PKGBUILD2011-08-12 16:52:46 UTC (rev 135315)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=qemu-kvm
 pkgver=0.15.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Latest KVM QEMU is a generic and open source processor emulator which 
achieves a good emulation speed by using dynamic translation.
 arch=(i686 x86_64)
 license=('GPL2' 'LGPL2.1')



[arch-commits] Commit in qemu-kvm/repos (staging-i686)

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 12:53:43
  Author: tpowa
Revision: 135316

archrelease: copy trunk to staging-i686

Added:
  qemu-kvm/repos/staging-i686/



[arch-commits] Commit in qemu-kvm/repos (staging-x86_64)

2011-08-12 Thread Tobias Powalowski
Date: Friday, August 12, 2011 @ 12:53:58
  Author: tpowa
Revision: 135317

archrelease: copy trunk to staging-x86_64

Added:
  qemu-kvm/repos/staging-x86_64/



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 15:30:04
  Author: bisson
Revision: 135318

upstream update

Modified:
  libedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 16:53:58 UTC (rev 135317)
+++ PKGBUILD2011-08-12 19:30:04 UTC (rev 135318)
@@ -4,7 +4,7 @@
 # Contributor: Roman Cheplyaka r...@ro-che.info
 
 pkgname=libedit
-pkgver=20110709_3.0
+pkgver=20110802_3.0
 pkgrel=1
 pkgdesc='Command line editor library providing generic line editing, history, 
and tokenization functions'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('ncurses')
 options=('!libtool')
 source=(http://www.thrysoee.dk/editline/libedit-${pkgver/_/-}.tar.gz;)
-sha1sums=('63a62e0c52a0a2b3c933f400039e24724498cfb4')
+sha1sums=('b06e3cf248a4235617c71454e15ca3a54a61d467')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver/_/-}



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 15:30:16
  Author: bisson
Revision: 135319

archrelease: copy trunk to testing-i686

Added:
  libedit/repos/testing-i686/



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 15:30:24
  Author: bisson
Revision: 135320

archrelease: copy trunk to testing-x86_64

Added:
  libedit/repos/testing-x86_64/



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 16:58:53
  Author: bisson
Revision: 135321

upstream update

Modified:
  audacious-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 19:30:24 UTC (rev 135320)
+++ PKGBUILD2011-08-12 20:58:53 UTC (rev 135321)
@@ -4,8 +4,8 @@
 # Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=audacious-plugins
-pkgver=3.0
-pkgrel=6
+pkgver=3.0.1
+pkgrel=1
 pkgdesc='Plugins for Audacious'
 arch=('i686' 'x86_64')
 url='http://audacious-media-player.org/'
@@ -43,7 +43,7 @@
 'libcue: CUE playlist format')
 
 source=(http://distfiles.atheme.org/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('ee45757e8a856f3fff2e96ebfe28a6dae88b056c')
+sha1sums=('59f8f1f6a197eac8ccab7b84fb541b4fefac9458')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in audacious-plugins/repos (extra-i686)

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 16:58:59
  Author: bisson
Revision: 135322

archrelease: remove extra-i686

Deleted:
  audacious-plugins/repos/extra-i686/



[arch-commits] Commit in audacious-plugins/repos (extra-i686)

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 16:59:05
  Author: bisson
Revision: 135323

archrelease: copy trunk to extra-i686

Added:
  audacious-plugins/repos/extra-i686/



[arch-commits] Commit in audacious-plugins/repos (extra-x86_64)

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 16:59:07
  Author: bisson
Revision: 135324

archrelease: remove extra-x86_64

Deleted:
  audacious-plugins/repos/extra-x86_64/



[arch-commits] Commit in audacious-plugins/repos (extra-x86_64)

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 16:59:16
  Author: bisson
Revision: 135325

archrelease: copy trunk to extra-x86_64

Added:
  audacious-plugins/repos/extra-x86_64/



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 16:59:31
  Author: bisson
Revision: 135326

upstream update

Modified:
  audacious/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 20:59:16 UTC (rev 135325)
+++ PKGBUILD2011-08-12 20:59:31 UTC (rev 135326)
@@ -4,8 +4,8 @@
 # Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=audacious
-pkgver=3.0
-pkgrel=5
+pkgver=3.0.1
+pkgrel=1
 pkgdesc='Lightweight, GTK-based advanced audio player focused on audio quality'
 arch=('i686' 'x86_64')
 url='http://audacious-media-player.org/'
@@ -13,7 +13,7 @@
 depends=('gtk3' 'libmcs' 'dbus-glib' 'libguess' 'libsm' 'audacious-plugins' 
'desktop-file-utils' 'hicolor-icon-theme')
 optdepends=('unzip: zipped skins support')
 source=(http://distfiles.atheme.org/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('d32de719f5b09440d0f6c802a5140a32b3827475')
+sha1sums=('1532fce78702da80418d940dea96b857b75c1f9e')
 
 provides=('audacious-player')
 replaces=('audacious-player')



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 16:59:34
  Author: bisson
Revision: 135327

archrelease: remove extra-i686

Deleted:
  audacious/repos/extra-i686/



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 16:59:40
  Author: bisson
Revision: 135328

archrelease: copy trunk to extra-i686

Added:
  audacious/repos/extra-i686/



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 17:00:30
  Author: bisson
Revision: 135329

archrelease: remove extra-i686

Deleted:
  audacious/repos/extra-i686/



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 17:00:35
  Author: bisson
Revision: 135330

archrelease: copy trunk to extra-i686

Added:
  audacious/repos/extra-i686/



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 17:00:38
  Author: bisson
Revision: 135331

archrelease: remove extra-x86_64

Deleted:
  audacious/repos/extra-x86_64/



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

2011-08-12 Thread Gaetan Bisson
Date: Friday, August 12, 2011 @ 17:00:43
  Author: bisson
Revision: 135332

archrelease: copy trunk to extra-x86_64

Added:
  audacious/repos/extra-x86_64/



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

2011-08-12 Thread Evangelos Foutras
Date: Friday, August 12, 2011 @ 17:18:27
  Author: foutrelis
Revision: 135333

Remove cyrus-sasl-plugins dependency.

Modified:
  pidgin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 21:00:43 UTC (rev 135332)
+++ PKGBUILD2011-08-12 21:18:27 UTC (rev 135333)
@@ -74,8 +74,7 @@
 
 package_libpurple(){
   pkgdesc=IM library extracted from Pidgin
-  depends=('farsight2' 'libsasl' 'dbus-glib' 'silc-toolkit' 'nss'
-   'cyrus-sasl-plugins')
+  depends=('farsight2' 'libsasl' 'dbus-glib' 'silc-toolkit' 'nss')
   optdepends=('avahi: Bonjour protocol support'
   'dbus-python: for purple-remote and purple-url-handler')
 



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

2011-08-12 Thread Giovanni Scafora
Date: Friday, August 12, 2011 @ 17:28:33
  Author: giovanni
Revision: 135334

upgpkg: ettercap NG_0.7.3-18
Fixed FS25528

Modified:
  ettercap/trunk/01_pointers_and_ints_dont_mix.diff
  ettercap/trunk/PKGBUILD
  ettercap/trunk/ettercap-NG-0.7.3_dns_support_on_x86_64.patch

---+
 01_pointers_and_ints_dont_mix.diff|7 ---
 PKGBUILD  |6 +++---
 ettercap-NG-0.7.3_dns_support_on_x86_64.patch |2 +-
 3 files changed, 8 insertions(+), 7 deletions(-)

Modified: 01_pointers_and_ints_dont_mix.diff
===
--- 01_pointers_and_ints_dont_mix.diff  2011-08-12 21:18:27 UTC (rev 135333)
+++ 01_pointers_and_ints_dont_mix.diff  2011-08-12 21:28:33 UTC (rev 135334)
@@ -1,12 +1,13 @@
 See debian bug #521857, patch from Timothy Redaelli timo...@redaelli.eu
+Revised by Robert Edmonds edmo...@debian.org
 
 ettercap-0.7.3.orig/src/protocols/ec_tcp.c
-+++ ettercap-0.7.3/src/protocols/ec_tcp.c
+--- a/src/protocols/ec_tcp.c
 b/src/protocols/ec_tcp.c
 @@ -116,7 +116,7 @@
 tcp = (struct tcp_header *)DECODE_DATA;
 
 opt_start = (u_char *)(tcp + 1);
 -   opt_end = (u_char *)((int)tcp + tcp-off * 4);
-+   opt_end = (u_char *)(tcp + tcp-off * 4);
++   opt_end = (u_char *)(((u_char *)tcp) + tcp-off * 4);
  
 DECODED_LEN = (u_int32)(tcp-off * 4);

Modified: PKGBUILD
===
--- PKGBUILD2011-08-12 21:18:27 UTC (rev 135333)
+++ PKGBUILD2011-08-12 21:28:33 UTC (rev 135334)
@@ -5,7 +5,7 @@
 pkgname=ettercap
 pkgver=NG_0.7.3
 _origver=NG-0.7.3
-pkgrel=17
+pkgrel=18
 pkgdesc=A network sniffer/interceptor/logger for ethernet LANs - console
 arch=('i686' 'x86_64')
 url=http://ettercap.sourceforge.net/;
@@ -18,8 +18,8 @@
 01_pointers_and_ints_dont_mix.diff
 ettercap-NG-0.7.3_dns_support_on_x86_64.patch)
 md5sums=('28fb15cd024162c55249888fe1b97820'
- 'ad235cd90aaa3e168575d06efac4d862'
- 'f3d66186eece056a6d71453f9f288623')
+ 'c8f2b004f69ac3522ffebb530478b324'
+ 'd44f80292afcefdc13cba9a30c6391d6')
 
 build() {
   cd ${srcdir}/${pkgname}-${_origver}

Modified: ettercap-NG-0.7.3_dns_support_on_x86_64.patch
===
--- ettercap-NG-0.7.3_dns_support_on_x86_64.patch   2011-08-12 21:18:27 UTC 
(rev 135333)
+++ ettercap-NG-0.7.3_dns_support_on_x86_64.patch   2011-08-12 21:28:33 UTC 
(rev 135334)
@@ -14,7 +14,7 @@
  
  else
 -   if false; then
-+if true; then
++   if true; then
HAVE_DN_EXPAND_TRUE=
HAVE_DN_EXPAND_FALSE='#'
  else



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

2011-08-12 Thread Giovanni Scafora
Date: Friday, August 12, 2011 @ 17:28:36
  Author: giovanni
Revision: 135335

archrelease: remove extra-i686

Deleted:
  ettercap/repos/extra-i686/



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

2011-08-12 Thread Giovanni Scafora
Date: Friday, August 12, 2011 @ 17:28:51
  Author: giovanni
Revision: 135336

archrelease: copy trunk to extra-i686

Added:
  ettercap/repos/extra-i686/



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

2011-08-12 Thread Giovanni Scafora
Date: Friday, August 12, 2011 @ 17:28:54
  Author: giovanni
Revision: 135337

archrelease: remove extra-x86_64

Deleted:
  ettercap/repos/extra-x86_64/



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

2011-08-12 Thread Giovanni Scafora
Date: Friday, August 12, 2011 @ 17:29:10
  Author: giovanni
Revision: 135338

archrelease: copy trunk to extra-x86_64

Added:
  ettercap/repos/extra-x86_64/



[arch-commits] Commit in udev/trunk (81-arch.rules)

2011-08-12 Thread Tom Gundersen
Date: Friday, August 12, 2011 @ 20:11:44
  Author: tomegun
Revision: 135339

rules: removed comments, this is in the manpage

Modified:
  udev/trunk/81-arch.rules

---+
 81-arch.rules |   18 --
 1 file changed, 18 deletions(-)

Modified: 81-arch.rules
===
--- 81-arch.rules   2011-08-12 21:29:10 UTC (rev 135338)
+++ 81-arch.rules   2011-08-13 00:11:44 UTC (rev 135339)
@@ -1,23 +1,5 @@
 # Udev rules for Archlinux by Tobias Powalowski tp...@archlinux.org
 # do not edit this file, it will be overwritten on update
-#
-# There are a number of modifiers that are allowed to be used in some
-# of the different fields. They provide the following subsitutions:
-#
-# %n the kernel number of the device.
-#For example, 'sda3' has a kernel number of '3'
-# %k the kernel name for the device.
-# %M the kernel major number for the device
-# %m the kernel minor number for the device
-# %b the bus id for the device
-# %c the string returned by the PROGRAM
-# %s{filename} the content of a sysfs attribute.
-# %% the '%' char itself.
-#
-# There are a number of modifiers that are allowed to be used in some of the
-# fields.  See the udev man page for a full description of them.
-# global stuff
-#
 
 # permission for sg devices
 KERNEL==sg[0-9]*, ATTRS{type}!=3|6, GROUP=disk, MODE=0660



[arch-commits] Commit in udev/trunk (81-arch.rules)

2011-08-12 Thread Tom Gundersen
Date: Friday, August 12, 2011 @ 20:13:40
  Author: tomegun
Revision: 135340

rules: remove disk rule

Assigning scsi_general devices to the disk rule is done in the
upstream files. It is slightly different, but more likely to be correct.

Modified:
  udev/trunk/81-arch.rules

---+
 81-arch.rules |3 ---
 1 file changed, 3 deletions(-)

Modified: 81-arch.rules
===
--- 81-arch.rules   2011-08-13 00:11:44 UTC (rev 135339)
+++ 81-arch.rules   2011-08-13 00:13:40 UTC (rev 135340)
@@ -1,9 +1,6 @@
 # Udev rules for Archlinux by Tobias Powalowski tp...@archlinux.org
 # do not edit this file, it will be overwritten on update
 
-# permission for sg devices
-KERNEL==sg[0-9]*, ATTRS{type}!=3|6, GROUP=disk, MODE=0660
-
 # permissions for IDE CD devices
 SUBSYSTEMS==ide, KERNEL==hd[a-z], ATTR{removable}==1, 
ATTRS{media}==cdrom*, GROUP=optical
 



[arch-commits] Commit in udev/trunk (81-arch.rules)

2011-08-12 Thread Tom Gundersen
Date: Friday, August 12, 2011 @ 20:17:06
  Author: tomegun
Revision: 135341

rules: remove scsi optical rule

Assigning scsi_general devices to the optical/cdrom group is done in the
upstream files. It is slightly different, but more likely to be correct.

Modified:
  udev/trunk/81-arch.rules

---+
 81-arch.rules |3 ---
 1 file changed, 3 deletions(-)

Modified: 81-arch.rules
===
--- 81-arch.rules   2011-08-13 00:13:40 UTC (rev 135340)
+++ 81-arch.rules   2011-08-13 00:17:06 UTC (rev 135341)
@@ -4,9 +4,6 @@
 # permissions for IDE CD devices
 SUBSYSTEMS==ide, KERNEL==hd[a-z], ATTR{removable}==1, 
ATTRS{media}==cdrom*, GROUP=optical
 
-# permissions for SCSI CD devices
-SUBSYSTEMS==scsi, KERNEL==s[rg][0-9]*, ATTRS{type}==5, GROUP=optical
-
 # permissions for removable devices like cardreaders or sticks
 KERNEL==sd*, ATTRS{scsi_level}==3, ATTRS{type}==0, GROUP=storage
 



[arch-commits] Commit in udev/trunk (81-arch.rules)

2011-08-12 Thread Tom Gundersen
Date: Friday, August 12, 2011 @ 20:34:34
  Author: tomegun
Revision: 135342

rules: remove IDE optical rule

Assigning devices to the optical/cdrom group is done in the
upstream files. It is different, and recently changed. If it is
wrong we should file an upstream bug. Check before releasing.

Modified:
  udev/trunk/81-arch.rules

---+
 81-arch.rules |3 ---
 1 file changed, 3 deletions(-)

Modified: 81-arch.rules
===
--- 81-arch.rules   2011-08-13 00:17:06 UTC (rev 135341)
+++ 81-arch.rules   2011-08-13 00:34:34 UTC (rev 135342)
@@ -1,9 +1,6 @@
 # Udev rules for Archlinux by Tobias Powalowski tp...@archlinux.org
 # do not edit this file, it will be overwritten on update
 
-# permissions for IDE CD devices
-SUBSYSTEMS==ide, KERNEL==hd[a-z], ATTR{removable}==1, 
ATTRS{media}==cdrom*, GROUP=optical
-
 # permissions for removable devices like cardreaders or sticks
 KERNEL==sd*, ATTRS{scsi_level}==3, ATTRS{type}==0, GROUP=storage
 



[arch-commits] Commit in udev/trunk (81-arch.rules)

2011-08-12 Thread Tom Gundersen
Date: Friday, August 12, 2011 @ 20:44:45
  Author: tomegun
Revision: 135343

rules: remove arbitrary symlinks

Symlinks from dev to dev0 does not make much sense,
in case there is more than one devX. Remove the few we have left.

This is similar to what was done for cdrom rules a while back.

Modified:
  udev/trunk/81-arch.rules

---+
 81-arch.rules |9 -
 1 file changed, 9 deletions(-)

Modified: 81-arch.rules
===
--- 81-arch.rules   2011-08-13 00:34:34 UTC (rev 135342)
+++ 81-arch.rules   2011-08-13 00:44:45 UTC (rev 135343)
@@ -21,17 +21,8 @@
 # permissions for SCSI scanners
 SUBSYSTEMS==scsi, KERNEL==sg[0-9]*, ATTRS{type}==6, GROUP=scanner
 
-# mem
-KERNEL==ram0, SYMLINK+=ramdisk
-KERNEL==ram1, SYMLINK+=ram
-
 # video4linux
-
-KERNEL==vbi0,SYMLINK+=vbi
-KERNEL==radio0,  SYMLINK+=radio
 KERNEL==radio[0-9]*, GROUP=video
-KERNEL==video0,  SYMLINK+=video
-KERNEL==vtx0,SYMLINK+=vtx
 
 # misc
 KERNEL==sgi_fetchop, MODE=0666



[arch-commits] Commit in udev/trunk (81-arch.rules)

2011-08-12 Thread Tom Gundersen
Date: Friday, August 12, 2011 @ 20:53:59
  Author: tomegun
Revision: 135344

rules: remove v4l rule

All v4l devices are put in the video group in the upstream file. This 
includes 
radio devices, so no need for this rule.

Modified:
  udev/trunk/81-arch.rules

---+
 81-arch.rules |3 ---
 1 file changed, 3 deletions(-)

Modified: 81-arch.rules
===
--- 81-arch.rules   2011-08-13 00:44:45 UTC (rev 135343)
+++ 81-arch.rules   2011-08-13 00:53:59 UTC (rev 135344)
@@ -21,9 +21,6 @@
 # permissions for SCSI scanners
 SUBSYSTEMS==scsi, KERNEL==sg[0-9]*, ATTRS{type}==6, GROUP=scanner
 
-# video4linux
-KERNEL==radio[0-9]*, GROUP=video
-
 # misc
 KERNEL==sgi_fetchop, MODE=0666
 KERNEL==sonypi,  MODE=0666



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

2011-08-12 Thread Eric Bélanger
Date: Friday, August 12, 2011 @ 21:50:31
  Author: eric
Revision: 135345

upgpkg: blender 2.59-1
Upstream update

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-13 00:53:59 UTC (rev 135344)
+++ PKGBUILD2011-08-13 01:50:31 UTC (rev 135345)
@@ -5,14 +5,14 @@
 # Apparently, the blender guys refuse to release source tarballs for
 # intermediate releases that deal mainly with binaries but incorporate tiny
 # minor changes from svn. Since I'm sick and tired of the urges of users that
-# look for release numbers only we make a messy PKGBUILD that can checkout svn
+# look for release numbers only, we make a messy PKGBUILD that can checkout svn
 # release if necessary.
 
-_svn=true
-#_svn=false
+#_svn=true
+_svn=false
 
 pkgname=blender
-pkgver=2.58a
+pkgver=2.59
 pkgrel=1
 epoch=2
 pkgdesc=A fully integrated 3D graphics creation suite
@@ -25,8 +25,8 @@
 makedepends=('cmake') # 'subversion'
 install=blender.install
 if [ $_svn = false ]; then
-  source=(http://download.blender.org/source/$pkgname-$pkgver.tgz)
-  md5sums=('04a0d43ff27aa0abf14ca559f6a6bf67')
+  source=(http://download.blender.org/source/$pkgname-$pkgver.tar.gz)
+  md5sums=('6f68fe3c3c2b6a85f1ba9ebc5b1155fe')
 else
   source=(ftp://ftp.archlinux.org/other/${pkgname}/$pkgname-$pkgver.tar.xz)
   md5sums=('7579d1139d0d6025df8afcfca64a65c4')



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

2011-08-12 Thread Eric Bélanger
Date: Friday, August 12, 2011 @ 21:50:51
  Author: eric
Revision: 135346

archrelease: copy trunk to testing-i686

Added:
  blender/repos/testing-i686/



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

2011-08-12 Thread Eric Bélanger
Date: Friday, August 12, 2011 @ 21:50:59
  Author: eric
Revision: 135347

archrelease: copy trunk to testing-x86_64

Added:
  blender/repos/testing-x86_64/



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

2011-08-12 Thread Eric Bélanger
Date: Friday, August 12, 2011 @ 22:05:04
  Author: eric
Revision: 135348

db-remove: esound removed by eric

Deleted:
  esound/repos/extra-i686/



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

2011-08-12 Thread Eric Bélanger
Date: Friday, August 12, 2011 @ 22:05:56
  Author: eric
Revision: 135349

db-remove: esound removed by eric

Deleted:
  esound/repos/extra-x86_64/



[arch-commits] Commit in (esound)

2011-08-12 Thread Eric Bélanger
Date: Friday, August 12, 2011 @ 22:07:21
  Author: eric
Revision: 135350

Obsolete. Removing from repo.

Deleted:
  esound/



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

2011-08-12 Thread Eric Bélanger
Date: Friday, August 12, 2011 @ 22:21:59
  Author: eric
Revision: 135351

Remove esound reference

Modified:
  timidity++/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-13 02:07:21 UTC (rev 135350)
+++ PKGBUILD2011-08-13 02:21:59 UTC (rev 135351)
@@ -18,14 +18,22 @@
 timidity.cfg timidity++.sh 2.13.2-gcc4.patch 
TiMidity++-2.13.2+flac-1.1.3.patch \
 timidity++-2.13.2-exiterror.patch timidity++-2.13.2-gtk26.patch \
 timidity++-2.13.2-polling.patch)
-md5sums=('a82ceeb2245e22f4de2b41da21eaee32' '3fcc8f065c959205113fa7e9ab2be3c6'\
- '35606c12af9c6be9361d64fc536f046f' '0868926c5290817cacb9a1849bc043c2'\
- 'fcbd27ff83066f69a3f8bd2442a3b3e2' '31bdaea612f18e2c3d45a8a73ab44c81'\
- '16a4adec164836d4390dc6b0f9a69ce9' '3f0034ead451cdd1078868e9e9b0494c')
-sha1sums=('8e603146e1164335303a5ac5dff291f369241b4e' 
'660b3afbb720d26e8f008034cee66dd8da082d6e'\
- '9f3e732a7ca1e97119a76df62ecf154df04d4f77' 
'8d50618a2379c078b07e8d0fc59457855c16106c'\
- '59b0dbe3cde8f7b41d83676d8c37809255d3fb36' 
'7cd697b4f7cb1ce45cec46c2e0f6e5e8bf1d9d60'\
- 'ce115e84d99708f0bdb5b57bd98b0c3514fa2bf4' 
'6abaedaecdecabf9dc76c062f7157571aed53984')
+md5sums=('a82ceeb2245e22f4de2b41da21eaee32'
+ '3fcc8f065c959205113fa7e9ab2be3c6'
+ '35606c12af9c6be9361d64fc536f046f'
+ '0868926c5290817cacb9a1849bc043c2'
+ 'fcbd27ff83066f69a3f8bd2442a3b3e2'
+ '31bdaea612f18e2c3d45a8a73ab44c81'
+ '16a4adec164836d4390dc6b0f9a69ce9'
+ '3f0034ead451cdd1078868e9e9b0494c')
+sha1sums=('8e603146e1164335303a5ac5dff291f369241b4e'
+  '660b3afbb720d26e8f008034cee66dd8da082d6e'
+  '9f3e732a7ca1e97119a76df62ecf154df04d4f77'
+  '8d50618a2379c078b07e8d0fc59457855c16106c'
+  '59b0dbe3cde8f7b41d83676d8c37809255d3fb36'
+  '7cd697b4f7cb1ce45cec46c2e0f6e5e8bf1d9d60'
+  'ce115e84d99708f0bdb5b57bd98b0c3514fa2bf4'
+  '6abaedaecdecabf9dc76c062f7157571aed53984')
 
 build() {
   cd ${srcdir}/TiMidity++-${pkgver}
@@ -39,7 +47,7 @@
 
   ./configure --prefix=/usr --mandir=/usr/share/man 
--with-default-path=/etc/timidity++/ \
--enable-server --enable-alsaseq --enable-spectrogram \
-   --enable-audio=alsa,oss,ao,vorbis,flac,esd,jack \
+   --enable-audio=alsa,oss,ao,vorbis,flac,jack \
--enable-dynamic=ncurses,tcltk,vt100,xaw,gtk \
--disable-gtktest
   make