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

2013-08-24 Thread Jan Steffens
Date: Sunday, August 25, 2013 @ 06:25:07
  Author: heftig
Revision: 96316

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-glibc/repos/multilib-testing-x86_64/
  lib32-glibc/repos/multilib-testing-x86_64/PKGBUILD
(from rev 96315, lib32-glibc/trunk/PKGBUILD)
  
lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-readdir_r-CVE-2013-4237.patch
(from rev 96315, lib32-glibc/trunk/glibc-2.18-readdir_r-CVE-2013-4237.patch)
  lib32-glibc/repos/multilib-testing-x86_64/glibc-2.18-strstr-hackfix.patch
(from rev 96315, lib32-glibc/trunk/glibc-2.18-strstr-hackfix.patch)
  lib32-glibc/repos/multilib-testing-x86_64/lib32-glibc.conf
(from rev 96315, lib32-glibc/trunk/lib32-glibc.conf)

--+
 PKGBUILD |  137 ++
 glibc-2.18-readdir_r-CVE-2013-4237.patch |  281 +
 glibc-2.18-strstr-hackfix.patch  |   13 +
 lib32-glibc.conf |1 
 4 files changed, 432 insertions(+)

Copied: lib32-glibc/repos/multilib-testing-x86_64/PKGBUILD (from rev 96315, 
lib32-glibc/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2013-08-25 04:25:07 UTC (rev 96316)
@@ -0,0 +1,137 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+# NOTE: valgrind requires rebuilt with each major glibc version
+
+_pkgbasename=glibc
+pkgname=lib32-$_pkgbasename
+pkgver=2.18
+pkgrel=3
+pkgdesc="GNU C Library for multilib"
+arch=('x86_64')
+url="http://www.gnu.org/software/libc";
+license=('GPL' 'LGPL')
+makedepends=('gcc-multilib>=4.7')
+options=('!strip' '!emptydirs')
+source=(http://ftp.gnu.org/gnu/libc/${_pkgbasename}-${pkgver}.tar.xz{,.sig}
+glibc-2.18-readdir_r-CVE-2013-4237.patch
+glibc-2.18-strstr-hackfix.patch
+lib32-glibc.conf)
+md5sums=('88fbbceafee809e82efd52efa1e3c58f'
+ 'SKIP'
+ '154da6bf5a5248f42a7bf5bf08e01a47'
+ '4441f6dfe7d75ced1fa75e54dd21d36e'
+ '6e052f1cb693d5d3203f50f9d4e8c33b')
+
+
+prepare() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  
+  # upstream commit 91ce4085
+  patch -p1 -i $srcdir/glibc-2.18-readdir_r-CVE-2013-4237.patch
+  
+  # hack fix for strstr issues on x86
+  patch -p1 -i $srcdir/glibc-2.18-strstr-hackfix.patch
+
+  mkdir ${srcdir}/glibc-build
+}
+
+build() {
+  cd ${srcdir}/glibc-build
+
+  #if [[ ${CARCH} = "i686" ]]; then
+# Hack to fix NPTL issues with Xen, only required on 32bit platforms
+# TODO: make separate glibc-xen package for i686
+export CFLAGS="${CFLAGS} -mno-tls-direct-seg-refs"
+  #fi
+
+  echo "slibdir=/usr/lib32" >> configparms
+  echo "sbindir=/usr/bin" >> configparms
+  echo "rootsbindir=/usr/bin" >> configparms
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+
+  # remove hardening options for building libraries
+  CFLAGS=${CFLAGS/-fstack-protector/}
+  CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
+
+  ${srcdir}/${_pkgbasename}-${pkgver}/configure --prefix=/usr \
+  --libdir=/usr/lib32 --libexecdir=/usr/lib32 \
+  --with-headers=/usr/include \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-add-ons=nptl,libidn \
+  --enable-obsolete-rpc \
+  --enable-kernel=2.6.32 \
+  --enable-bind-now --disable-profile \
+  --enable-stackguard-randomization \
+  --enable-lock-elision \
+  --enable-multi-arch i686-unknown-linux-gnu
+
+  # build libraries with hardening disabled
+  echo "build-programs=no" >> configparms
+  make
+  
+  # re-enable hardening for programs
+  sed -i "/build-programs=/s#no#yes#" configparms
+  echo "CC += -fstack-protector -D_FORTIFY_SOURCE=2" >> configparms
+  echo "CXX += -fstack-protector -D_FORTIFY_SOURCE=2" >> configparms
+  make
+
+  # remove harding in preparation to run test-suite
+  sed -i '4,6d' configparms
+}
+
+check() {
+  # bug to file - the linker commands need to be reordered
+  LDFLAGS=${LDFLAGS/--as-needed,/}
+
+  cd ${srcdir}/glibc-build
+  make check
+}
+
+package() {
+  cd ${srcdir}/glibc-build
+  make install_root=${pkgdir} install
+
+  rm -rf ${pkgdir}/{etc,sbin,usr/{bin,sbin,share},var}
+
+  # We need one 32 bit specific header file
+  find ${pkgdir}/usr/include -type f -not -name stubs-32.h -delete
+
+
+  # Dynamic linker
+  mkdir ${pkgdir}/usr/lib
+  ln -s ../lib32/ld-linux.so.2 ${pkgdir}/usr/lib/
+
+  # Add lib32 paths to the default library search path
+  install -Dm644 "$srcdir/lib32-glibc.conf" 
"$pkgdir/etc/ld.so.conf.d/lib32-glibc.conf"
+
+  # Symlink /usr/lib32/locale to /usr/lib/locale
+  ln -s ../lib/locale "$pkgdir/usr/lib32/locale"
+
+  # Do not strip the following files for improved debugging support
+  # ("improved" as in not breaking gdb and valgrind...):
+  #   ld-${

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

2013-08-24 Thread Jan Steffens
Date: Sunday, August 25, 2013 @ 06:19:39
  Author: heftig
Revision: 96315

enable lock elision

Modified:
  lib32-glibc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-25 04:14:31 UTC (rev 96314)
+++ PKGBUILD2013-08-25 04:19:39 UTC (rev 96315)
@@ -9,7 +9,7 @@
 _pkgbasename=glibc
 pkgname=lib32-$_pkgbasename
 pkgver=2.18
-pkgrel=2
+pkgrel=3
 pkgdesc="GNU C Library for multilib"
 arch=('x86_64')
 url="http://www.gnu.org/software/libc";
@@ -68,6 +68,7 @@
   --enable-kernel=2.6.32 \
   --enable-bind-now --disable-profile \
   --enable-stackguard-randomization \
+  --enable-lock-elision \
   --enable-multi-arch i686-unknown-linux-gnu
 
   # build libraries with hardening disabled



[arch-commits] Commit in ydcv/repos/community-any (PKGBUILD PKGBUILD)

2013-08-24 Thread Felix Yan
Date: Sunday, August 25, 2013 @ 06:14:31
  Author: fyan
Revision: 96314

archrelease: copy trunk to community-any

Added:
  ydcv/repos/community-any/PKGBUILD
(from rev 96313, ydcv/trunk/PKGBUILD)
Deleted:
  ydcv/repos/community-any/PKGBUILD

--+
 PKGBUILD |   65 ++---
 1 file changed, 33 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-25 04:13:39 UTC (rev 96313)
+++ PKGBUILD2013-08-25 04:14:31 UTC (rev 96314)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=ydcv
-pkgname=('ydcv' 'ydcv-python2')
-pkgver=0.3.2
-pkgrel=2
-arch=("any")
-url="https://github.com/felixonmars/ydcv";
-license=("GPL")
-source=("https://github.com/felixonmars/$pkgbase/archive/$pkgver.tar.gz";)
-
-package_ydcv() {
-  pkgdesc="YouDao Console Version - Simple wrapper for Youdao online translate 
(Chinese <-> English) service API, as an alternative to the StarDict Console 
Version(sdcv)"
-  depends=("python3")
-  install -Dm755 "${srcdir}/$pkgbase-$pkgver/$pkgbase.py" 
"${pkgdir}/usr/bin/$pkgbase"
-}
-
-package_ydcv-python2() {
-  pkgdesc="YouDao Console Version - Simple wrapper for Youdao online translate 
(Chinese <-> English) service API, as an alternative to the StarDict Console 
Version(sdcv) - Python2 version"
-  depends=("python2")
-  provides=('ydcv')
-  conflicts=('ydcv')
-
-  cp "${srcdir}/$pkgbase-$pkgver/$pkgbase.py" 
"${srcdir}/$pkgbase-$pkgver/$pkgbase-python2.py"
-  sed -i -e "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" 
"${srcdir}/$pkgbase-$pkgver/$pkgbase-python2.py"
-
-  install -Dm755 "${srcdir}/$pkgbase-$pkgver/$pkgbase-python2.py" 
"${pkgdir}/usr/bin/$pkgbase"
-}
-
-# vim:set ts=2 sw=2 et:
-md5sums=('e95296b92f56b43fa5382bd9418956db')

Copied: ydcv/repos/community-any/PKGBUILD (from rev 96313, ydcv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-25 04:14:31 UTC (rev 96314)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=ydcv
+pkgname=('ydcv' 'ydcv-python2')
+pkgver=0.3.3
+pkgrel=1
+arch=("any")
+url="https://github.com/felixonmars/ydcv";
+license=("GPL")
+makedepends=('python2' 'python3')
+source=("https://github.com/felixonmars/$pkgbase/archive/$pkgver.tar.gz";)
+
+package_ydcv() {
+  pkgdesc="YouDao Console Version - Simple wrapper for Youdao online translate 
(Chinese <-> English) service API, as an alternative to the StarDict Console 
Version(sdcv)"
+  depends=("python3")
+  install -Dm755 "${srcdir}/$pkgbase-$pkgver/$pkgbase.py" 
"${pkgdir}/usr/bin/$pkgbase"
+}
+
+package_ydcv-python2() {
+  pkgdesc="YouDao Console Version - Simple wrapper for Youdao online translate 
(Chinese <-> English) service API, as an alternative to the StarDict Console 
Version(sdcv) - Python2 version"
+  depends=("python2")
+  provides=('ydcv')
+  conflicts=('ydcv')
+
+  cp "${srcdir}/$pkgbase-$pkgver/$pkgbase.py" 
"${srcdir}/$pkgbase-$pkgver/$pkgbase-python2.py"
+  sed -i -e "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" 
"${srcdir}/$pkgbase-$pkgver/$pkgbase-python2.py"
+
+  install -Dm755 "${srcdir}/$pkgbase-$pkgver/$pkgbase-python2.py" 
"${pkgdir}/usr/bin/$pkgbase"
+}
+
+# vim:set ts=2 sw=2 et:
+sha512sums=('9e355f3e925153bb2eb7534e34064b02854720c2c94583ded08d8dc93f5835049c0767e10a665bd5b03a641018852f9c9455cee9de586e8c49732f25c5f9f5f7')



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

2013-08-24 Thread Felix Yan
Date: Sunday, August 25, 2013 @ 06:13:39
  Author: fyan
Revision: 96313

upgpkg: ydcv 0.3.3-1

Modified:
  ydcv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 20:48:12 UTC (rev 96312)
+++ PKGBUILD2013-08-25 04:13:39 UTC (rev 96313)
@@ -3,11 +3,12 @@
 
 pkgbase=ydcv
 pkgname=('ydcv' 'ydcv-python2')
-pkgver=0.3.2
-pkgrel=2
+pkgver=0.3.3
+pkgrel=1
 arch=("any")
 url="https://github.com/felixonmars/ydcv";
 license=("GPL")
+makedepends=('python2' 'python3')
 source=("https://github.com/felixonmars/$pkgbase/archive/$pkgver.tar.gz";)
 
 package_ydcv() {
@@ -29,4 +30,4 @@
 }
 
 # vim:set ts=2 sw=2 et:
-md5sums=('e95296b92f56b43fa5382bd9418956db')
+sha512sums=('9e355f3e925153bb2eb7534e34064b02854720c2c94583ded08d8dc93f5835049c0767e10a665bd5b03a641018852f9c9455cee9de586e8c49732f25c5f9f5f7')



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

2013-08-24 Thread Allan McRae
Date: Sunday, August 25, 2013 @ 05:50:30
  Author: allan
Revision: 193597

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

Added:
  glibc/repos/testing-i686/
  glibc/repos/testing-i686/PKGBUILD
(from rev 193596, glibc/trunk/PKGBUILD)
  glibc/repos/testing-i686/glibc-2.18-readdir_r-CVE-2013-4237.patch
(from rev 193596, glibc/trunk/glibc-2.18-readdir_r-CVE-2013-4237.patch)
  glibc/repos/testing-i686/glibc-2.18-strstr-hackfix.patch
(from rev 193596, glibc/trunk/glibc-2.18-strstr-hackfix.patch)
  glibc/repos/testing-i686/glibc.install
(from rev 193596, glibc/trunk/glibc.install)
  glibc/repos/testing-i686/locale-gen
(from rev 193596, glibc/trunk/locale-gen)
  glibc/repos/testing-i686/locale.gen.txt
(from rev 193596, glibc/trunk/locale.gen.txt)
  glibc/repos/testing-i686/nscd.service
(from rev 193596, glibc/trunk/nscd.service)
  glibc/repos/testing-i686/nscd.tmpfiles
(from rev 193596, glibc/trunk/nscd.tmpfiles)
  glibc/repos/testing-x86_64/
  glibc/repos/testing-x86_64/PKGBUILD
(from rev 193596, glibc/trunk/PKGBUILD)
  glibc/repos/testing-x86_64/glibc-2.18-readdir_r-CVE-2013-4237.patch
(from rev 193596, glibc/trunk/glibc-2.18-readdir_r-CVE-2013-4237.patch)
  glibc/repos/testing-x86_64/glibc-2.18-strstr-hackfix.patch
(from rev 193596, glibc/trunk/glibc-2.18-strstr-hackfix.patch)
  glibc/repos/testing-x86_64/glibc.install
(from rev 193596, glibc/trunk/glibc.install)
  glibc/repos/testing-x86_64/locale-gen
(from rev 193596, glibc/trunk/locale-gen)
  glibc/repos/testing-x86_64/locale.gen.txt
(from rev 193596, glibc/trunk/locale.gen.txt)
  glibc/repos/testing-x86_64/nscd.service
(from rev 193596, glibc/trunk/nscd.service)
  glibc/repos/testing-x86_64/nscd.tmpfiles
(from rev 193596, glibc/trunk/nscd.tmpfiles)

-+
 testing-i686/PKGBUILD   |  148 +++
 testing-i686/glibc-2.18-readdir_r-CVE-2013-4237.patch   |  281 ++
 testing-i686/glibc-2.18-strstr-hackfix.patch|   13 
 testing-i686/glibc.install  |   19 
 testing-i686/locale-gen |   42 ++
 testing-i686/locale.gen.txt |   23 +
 testing-i686/nscd.service   |   18 
 testing-i686/nscd.tmpfiles  |4 
 testing-x86_64/PKGBUILD |  148 +++
 testing-x86_64/glibc-2.18-readdir_r-CVE-2013-4237.patch |  281 ++
 testing-x86_64/glibc-2.18-strstr-hackfix.patch  |   13 
 testing-x86_64/glibc.install|   19 
 testing-x86_64/locale-gen   |   42 ++
 testing-x86_64/locale.gen.txt   |   23 +
 testing-x86_64/nscd.service |   18 
 testing-x86_64/nscd.tmpfiles|4 
 16 files changed, 1096 insertions(+)

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


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

2013-08-24 Thread Allan McRae
Date: Sunday, August 25, 2013 @ 05:48:04
  Author: allan
Revision: 193596

upgpkg: glibc 2.18-3

enable lock elision

Modified:
  glibc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 22:19:33 UTC (rev 193595)
+++ PKGBUILD2013-08-25 03:48:04 UTC (rev 193596)
@@ -6,7 +6,7 @@
 
 pkgname=glibc
 pkgver=2.18
-pkgrel=2
+pkgrel=3
 pkgdesc="GNU C Library"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/libc";
@@ -74,6 +74,7 @@
   --enable-kernel=2.6.32 \
   --enable-bind-now --disable-profile \
   --enable-stackguard-randomization \
+  --enable-lock-elision \
   --enable-multi-arch
 
   # build libraries with hardening disabled



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

2013-08-24 Thread Eric Bélanger
Date: Sunday, August 25, 2013 @ 00:19:33
  Author: eric
Revision: 193595

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

Added:
  glsof/repos/extra-i686/PKGBUILD
(from rev 193594, glsof/trunk/PKGBUILD)
  glsof/repos/extra-i686/glsof-filemonitor
(from rev 193594, glsof/trunk/glsof-filemonitor)
  glsof/repos/extra-i686/glsof-queries
(from rev 193594, glsof/trunk/glsof-queries)
  glsof/repos/extra-x86_64/PKGBUILD
(from rev 193594, glsof/trunk/PKGBUILD)
  glsof/repos/extra-x86_64/glsof-filemonitor
(from rev 193594, glsof/trunk/glsof-filemonitor)
  glsof/repos/extra-x86_64/glsof-queries
(from rev 193594, glsof/trunk/glsof-queries)
Deleted:
  glsof/repos/extra-i686/PKGBUILD
  glsof/repos/extra-i686/glsof-filemonitor
  glsof/repos/extra-i686/glsof-queries
  glsof/repos/extra-x86_64/PKGBUILD
  glsof/repos/extra-x86_64/glsof-filemonitor
  glsof/repos/extra-x86_64/glsof-queries

+
 /PKGBUILD  |   76 +++
 /glsof-filemonitor |4 ++
 /glsof-queries |4 ++
 extra-i686/PKGBUILD|   36 --
 extra-i686/glsof-filemonitor   |2 -
 extra-i686/glsof-queries   |2 -
 extra-x86_64/PKGBUILD  |   36 --
 extra-x86_64/glsof-filemonitor |2 -
 extra-x86_64/glsof-queries |2 -
 9 files changed, 84 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-24 22:18:17 UTC (rev 193594)
+++ extra-i686/PKGBUILD 2013-08-24 22:19:33 UTC (rev 193595)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=glsof
-pkgver=2.2.0
-_fmver=2.2.0
-_qver=1.0.0
-pkgrel=1
-pkgdesc="Two separate GUI utilities (Queries and Filemonitor) to the lsof 
command line utility"
-arch=('i686' 'x86_64')
-url="http://glsof.sourceforge.net/";
-license=('GPL3')
-depends=('sh' 'java-runtime' 'lsof')
-source=(http://downloads.sourceforge.net/sourceforge/glsof/filemonitor-${_fmver}.tar.gz
 \
-
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux32.tar.gz
 \
-
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux64.tar.gz
 \
-glsof-filemonitor glsof-queries)
-sha1sums=('01697febfacc466b1cf0d7932c83ffd24b6e6784'
-  'd5a17d66dd02cd78bad5ffdda0b936c7848e4890'
-  'c5dd12e9b2860f1c427ed7cd482e898978051d2c'
-  '197b58f40880995d6442fd42a58fa1f4594fd19d'
-  '2797c326904af16a254c3e39b8c529ea14ef37e5')
-
-package() {
-  cd "${srcdir}"
-  install -D -m755 glsof-filemonitor "${pkgdir}/usr/bin/glsof-filemonitor"
-  install -D -m755 glsof-queries "${pkgdir}/usr/bin/glsof-queries"
-  install -D -m644 filemonitor/filemonitor.jar 
"${pkgdir}/usr/share/java/glsof/filemonitor.jar"
-  if [ "$CARCH" = "i686" ]; then
-install -D -m644 queries_linux32/queries.jar 
"${pkgdir}/usr/share/java/glsof/queries.jar"
-install -D -m644 queries_linux32/queries.pdf 
"${pkgdir}/usr/share/doc/glsof/queries.pdf"
-  elif [ "$CARCH" = "x86_64" ]; then
-install -D -m644 queries_linux64/queries.jar 
"${pkgdir}/usr/share/java/glsof/queries.jar"
-install -D -m644 queries_linux64/queries.pdf 
"${pkgdir}/usr/share/doc/glsof/queries.pdf"
-  fi
-}

Copied: glsof/repos/extra-i686/PKGBUILD (from rev 193594, glsof/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-24 22:19:33 UTC (rev 193595)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=glsof
+pkgver=2.4.0
+_fmver=2.4.0
+_qver=1.0.0
+pkgrel=1
+pkgdesc="Two separate GUI utilities (Queries and Filemonitor) to the lsof 
command line utility"
+arch=('i686' 'x86_64')
+url="http://glsof.sourceforge.net/";
+license=('GPL3')
+depends=('sh' 'java-runtime' 'lsof')
+source=(http://downloads.sourceforge.net/sourceforge/glsof/filemonitor-${_fmver}.tar.gz
 \
+
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux32.tar.gz
 \
+
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux64.tar.gz
 \
+glsof-filemonitor glsof-queries)
+sha1sums=('a605167063492da724ae75fab0492b9cc44fa93f'
+  'd5a17d66dd02cd78bad5ffdda0b936c7848e4890'
+  'c5dd12e9b2860f1c427ed7cd482e898978051d2c'
+  '9c3097119aa98723c5c59196e6089226829cf09d'
+  '2797c326904af16a254c3e39b8c529ea14ef37e5')
+
+package() {
+  cd "${srcdir}"
+  install -D -m755 glsof-filemonitor "${pkgdir}/usr/bin/glsof-filemonitor"
+  install -D -m755 glsof-queries "${pkgdir}/usr/bin/glsof-queries"
+  install -d "${pkgdir}/usr/share/java/glsof"
+  install -D -m644 filemonitor/*.jar "${pkgdir}/usr/share/java/glsof"
+  install -D -m644 filemonitor/*.txt "${pkgdir}/usr/share/java/glsof"
+  if [ "$CARCH" = "i686" ]; then
+install -D -m644 quer

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

2013-08-24 Thread Eric Bélanger
Date: Sunday, August 25, 2013 @ 00:18:17
  Author: eric
Revision: 193594

upgpkg: glsof 2.4.0-1

Upstream update, Add server jar and security files, Update glsof-filemonitor 
script

Modified:
  glsof/trunk/PKGBUILD
  glsof/trunk/glsof-filemonitor

---+
 PKGBUILD  |   12 +++-
 glsof-filemonitor |2 +-
 2 files changed, 8 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 21:16:29 UTC (rev 193593)
+++ PKGBUILD2013-08-24 22:18:17 UTC (rev 193594)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=glsof
-pkgver=2.2.0
-_fmver=2.2.0
+pkgver=2.4.0
+_fmver=2.4.0
 _qver=1.0.0
 pkgrel=1
 pkgdesc="Two separate GUI utilities (Queries and Filemonitor) to the lsof 
command line utility"
@@ -15,10 +15,10 @@
 
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux32.tar.gz
 \
 
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux64.tar.gz
 \
 glsof-filemonitor glsof-queries)
-sha1sums=('01697febfacc466b1cf0d7932c83ffd24b6e6784'
+sha1sums=('a605167063492da724ae75fab0492b9cc44fa93f'
   'd5a17d66dd02cd78bad5ffdda0b936c7848e4890'
   'c5dd12e9b2860f1c427ed7cd482e898978051d2c'
-  '197b58f40880995d6442fd42a58fa1f4594fd19d'
+  '9c3097119aa98723c5c59196e6089226829cf09d'
   '2797c326904af16a254c3e39b8c529ea14ef37e5')
 
 package() {
@@ -25,7 +25,9 @@
   cd "${srcdir}"
   install -D -m755 glsof-filemonitor "${pkgdir}/usr/bin/glsof-filemonitor"
   install -D -m755 glsof-queries "${pkgdir}/usr/bin/glsof-queries"
-  install -D -m644 filemonitor/filemonitor.jar 
"${pkgdir}/usr/share/java/glsof/filemonitor.jar"
+  install -d "${pkgdir}/usr/share/java/glsof"
+  install -D -m644 filemonitor/*.jar "${pkgdir}/usr/share/java/glsof"
+  install -D -m644 filemonitor/*.txt "${pkgdir}/usr/share/java/glsof"
   if [ "$CARCH" = "i686" ]; then
 install -D -m644 queries_linux32/queries.jar 
"${pkgdir}/usr/share/java/glsof/queries.jar"
 install -D -m644 queries_linux32/queries.pdf 
"${pkgdir}/usr/share/doc/glsof/queries.pdf"

Modified: glsof-filemonitor
===
--- glsof-filemonitor   2013-08-24 21:16:29 UTC (rev 193593)
+++ glsof-filemonitor   2013-08-24 22:18:17 UTC (rev 193594)
@@ -1,2 +1,2 @@
 #!/bin/sh
-java -jar /usr/share/java/glsof/filemonitor.jar
+java -Djava.security.policy=/usr/share/java/glsof/security-client.txt -jar 
/usr/share/java/glsof/filemonitor.jar



[arch-commits] Commit in python-astroid/repos/testing-any (PKGBUILD PKGBUILD)

2013-08-24 Thread Ángel Velásquez
Date: Saturday, August 24, 2013 @ 23:15:17
  Author: angvp
Revision: 193592

archrelease: copy trunk to testing-any

Added:
  python-astroid/repos/testing-any/PKGBUILD
(from rev 193591, python-astroid/trunk/PKGBUILD)
Deleted:
  python-astroid/repos/testing-any/PKGBUILD

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-24 21:14:32 UTC (rev 193591)
+++ PKGBUILD2013-08-24 21:15:17 UTC (rev 193592)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-
-pkgbase=python-astroid
-pkgname=('python2-astroid' 'python-astroid')
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="Useful miscellaneous modules used by Logilab projects"
-arch=('any')
-url="http://www.logilab.org/project/logilab-common";
-license=('LGPL')
-makedepends=('python2' 'python')
-source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
-sha1sums=('2ebba76d115cb8a2d84d8777d8535ddac86daaa6')
-
-build() {
-  cd "${srcdir}"
-
-  cp -a astroid-${pkgver}{,-py3}
-
-  cd astroid-${pkgver}
-  python2 setup.py build
-
-  cd ../astroid-${pkgver}-py3
-  python3 setup.py build
-}
-
-package_python2-astroid() {
-  depends=('python2')
-  replaces=('python2-logilab-astng')
-  conflicts=('python2-logilab-astng')
-  cd "${srcdir}"/astroid-${pkgver}
-
-  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root="${pkgdir}"
-
-  # fix permissions ...
-  find "${pkgdir}" -type f -exec chmod +r {} \;
-}
-
-package_python-astroid() {
-  depends=('python')
-  replaces=('python-logilab-astng')
-  conflicts=('python-logilab-astng')
-  cd "${srcdir}"/astroid-${pkgver}-py3
-
-  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root="${pkgdir}"
-
-  # fix permissions ...
-  find "${pkgdir}" -type f -exec chmod +r {} \;
-}

Copied: python-astroid/repos/testing-any/PKGBUILD (from rev 193591, 
python-astroid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-24 21:15:17 UTC (rev 193592)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+
+pkgbase=python-astroid
+pkgname=('python2-astroid' 'python-astroid')
+pkgver=1.0.0
+pkgrel=2
+pkgdesc="Useful miscellaneous modules used by Logilab projects"
+arch=('any')
+url="http://www.logilab.org/project/logilab-common";
+license=('LGPL')
+makedepends=('python2' 'python')
+source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
+sha1sums=('2ebba76d115cb8a2d84d8777d8535ddac86daaa6')
+
+build() {
+  cd "${srcdir}"
+
+  cp -a astroid-${pkgver}{,-py3}
+
+  cd astroid-${pkgver}
+  python2 setup.py build
+
+  cd ../astroid-${pkgver}-py3
+  python3 setup.py build
+}
+
+package_python2-astroid() {
+  depends=('python2' 'python2-logilab-common')
+  replaces=('python2-logilab-astng')
+  conflicts=('python2-logilab-astng')
+  cd "${srcdir}"/astroid-${pkgver}
+
+  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root="${pkgdir}"
+
+  # fix permissions ...
+  find "${pkgdir}" -type f -exec chmod +r {} \;
+}
+
+package_python-astroid() {
+  depends=('python')
+  replaces=('python-logilab-astng' 'python-logilab-common')
+  conflicts=('python-logilab-astng')
+  cd "${srcdir}"/astroid-${pkgver}-py3
+
+  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root="${pkgdir}"
+
+  # fix permissions ...
+  find "${pkgdir}" -type f -exec chmod +r {} \;
+}



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

2013-08-24 Thread Ángel Velásquez
Date: Saturday, August 24, 2013 @ 23:14:32
  Author: angvp
Revision: 193591

upgpkg: python-astroid 1.0.0-2

Add logilab-common dependency. Fixes FS#36688

Modified:
  python-astroid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 17:41:43 UTC (rev 193590)
+++ PKGBUILD2013-08-24 21:14:32 UTC (rev 193591)
@@ -4,7 +4,7 @@
 pkgbase=python-astroid
 pkgname=('python2-astroid' 'python-astroid')
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Useful miscellaneous modules used by Logilab projects"
 arch=('any')
 url="http://www.logilab.org/project/logilab-common";
@@ -26,7 +26,7 @@
 }
 
 package_python2-astroid() {
-  depends=('python2')
+  depends=('python2' 'python2-logilab-common')
   replaces=('python2-logilab-astng')
   conflicts=('python2-logilab-astng')
   cd "${srcdir}"/astroid-${pkgver}
@@ -39,7 +39,7 @@
 
 package_python-astroid() {
   depends=('python')
-  replaces=('python-logilab-astng')
+  replaces=('python-logilab-astng' 'python-logilab-common')
   conflicts=('python-logilab-astng')
   cd "${srcdir}"/astroid-${pkgver}-py3
 



[arch-commits] Commit in lib32-qt4/repos/multilib-testing-x86_64 (PKGBUILD PKGBUILD)

2013-08-24 Thread Florian Pritz
Date: Saturday, August 24, 2013 @ 22:48:12
  Author: bluewind
Revision: 96312

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-qt4/repos/multilib-testing-x86_64/PKGBUILD
(from rev 96311, lib32-qt4/trunk/PKGBUILD)
Deleted:
  lib32-qt4/repos/multilib-testing-x86_64/PKGBUILD

--+
 PKGBUILD |  191 ++---
 1 file changed, 95 insertions(+), 96 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-24 20:48:09 UTC (rev 96311)
+++ PKGBUILD2013-08-24 20:48:12 UTC (rev 96312)
@@ -1,96 +0,0 @@
-# $Id: PKGBUILD 80785 2012-12-03 16:17:19Z bluewind $
-# Maintainer: Florian Pritz 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-_pkgbasename=qt4
-pkgname=lib32-$_pkgbasename
-pkgver=4.8.5
-pkgrel=2
-pkgdesc='A cross-platform application and UI framework (32-bit)'
-arch=('x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL')
-depends=(lib32-{fontconfig,sqlite3,alsa-lib,glib2,dbus-core,openssl}
- lib32-lib{png,tiff,mng,gl,sm,xrandr,xv,xi} $_pkgbasename)
-optdepends=('lib32-libxinerama: Xinerama support'
-'lib32-libxcursor: Xcursor support'
-'lib32-libxfixes: Xfixes support')
-makedepends=(cups gcc-multilib lib32-{mesa,libcups,libxfixes,gtk2})
-options=('!libtool')
-provides=(lib32-qtwebkit)
-replaces=(lib32-qtwebkit 'lib32-qt<=4.8.4')
-conflicts=(lib32-qtwebkit lib32-qt)
-_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
-source=("http://download.qt-project.org/official_releases/qt/4.8/${pkgver}/${_pkgfqn}.tar.gz";)
-md5sums=('1864987bdbb2f58f8ae8b350dfdbe133')
-
-prepare() {
-  cd $srcdir/$_pkgfqn
-
-  export QT4DIR=$srcdir/$_pkgfqn
-  export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  # some of those are likely unnecessary, but I'm too lazy to find and remove 
them
-  sed -i "/^QMAKE_LINK\s/s|g++|g++ -m32|g" mkspecs/common/g++-base.conf
-  sed -i "s|-O2|${CXXFLAGS} -m32|" mkspecs/common/g++-base.conf
-  sed -i "s|-O2|${CXXFLAGS} -m32|" mkspecs/common/gcc-base.conf
-  sed -i "/^QMAKE_LFLAGS_RPATH/s| -Wl,-rpath,||g" 
mkspecs/common/gcc-base-unix.conf
-  sed -i "/^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS} -m32|g" 
mkspecs/common/gcc-base.conf
-  sed -i "s|-Wl,-O1|-m32 -Wl,-O1|" mkspecs/common/g++-unix.conf
-  sed -e "s|-O2|$CXXFLAGS -m32|" \
-  -e "/^QMAKE_RPATH/s| -Wl,-rpath,||g" \
-  -e "/^QMAKE_LINK\s/s|g++|g++ -m32|g" \
-  -e "/^QMAKE_LFLAGS\s/s|+=|+= $LDFLAGS|g" \
-  -i mkspecs/common/g++.conf
-}
-
-build() {
-  cd $srcdir/$_pkgfqn
-  export QT4DIR=$srcdir/$_pkgfqn
-  export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  ./configure -confirm-license -opensource -v -platform linux-g++-32 \
--prefix /usr \
--libdir /usr/lib32 \
--plugindir /usr/lib32/qt/plugins \
--importdir /usr/lib32/qt/imports \
--datadir /usr/share/qt \
--translationdir /usr/share/qt/translations \
--sysconfdir /etc \
--system-sqlite \
--no-phonon \
--no-phonon-backend \
--webkit \
--graphicssystem raster \
--openssl-linked \
--nomake demos \
--nomake examples \
--nomake docs \
--nomake tools \
--optimized-qmake \
--no-rpath \
--dbus-linked \
--reduce-relocations \
--no-openvg
-
-  make
-}
-
-package() {
-  cd $srcdir/$_pkgfqn
-  make INSTALL_ROOT=$pkgdir install
-
-  # Fix wrong path in pkgconfig files
-  find ${pkgdir}/usr/lib32/pkgconfig -type f -name '*.pc' \
--exec perl -pi -e "s, -L${srcdir}/?\S+,,g" {} \;
-  # Fix wrong path in prl files
-  find ${pkgdir}/usr/lib32 -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin,tests}
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-qt4/repos/multilib-testing-x86_64/PKGBUILD (from rev 96311, 
lib32-qt4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-24 20:48:12 UTC (rev 96312)
@@ -0,0 +1,95 @@
+# $Id: PKGBUILD 80785 2012-12-03 16:17:19Z bluewind $
+# Maintainer: Florian Pritz 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+_pkgbasename=qt4
+pkgname=lib32-$_pkgbasename
+pkgver=4.8.5
+pkgrel=3
+pkgdesc='A cross-platform application and UI framework (32-bit)'
+arch=('x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL')
+depends=(lib32-{fontconfig,sqlite3,alsa-lib,glib2,dbus-core,openssl}
+ lib32-lib{png,tiff,mng,gl,sm,xrandr,xv,xi} $_pkgbasename)
+optdepends=('lib32-libxinerama: Xinerama support'
+'lib32-libxcursor: Xcursor support'
+'lib32-libxfixes: Xfixes support')
+makedepends=(cups gcc-multilib lib32-{mesa,libcups,libxfixes,gtk2})
+opti

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

2013-08-24 Thread Florian Pritz
Date: Saturday, August 24, 2013 @ 22:48:09
  Author: bluewind
Revision: 96311

upgpkg: lib32-qt4 4.8.5-3

fix FS#36606

Modified:
  lib32-qt4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 20:06:01 UTC (rev 96310)
+++ PKGBUILD2013-08-24 20:48:09 UTC (rev 96311)
@@ -6,7 +6,7 @@
 _pkgbasename=qt4
 pkgname=lib32-$_pkgbasename
 pkgver=4.8.5
-pkgrel=2
+pkgrel=3
 pkgdesc='A cross-platform application and UI framework (32-bit)'
 arch=('x86_64')
 url='http://qt-project.org/'
@@ -69,7 +69,6 @@
 -nomake demos \
 -nomake examples \
 -nomake docs \
--nomake tools \
 -optimized-qmake \
 -no-rpath \
 -dbus-linked \



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

2013-08-24 Thread Alexander Rødseth
Date: Saturday, August 24, 2013 @ 22:05:49
  Author: arodseth
Revision: 96309

upgpkg: python-openbabel 2.3.2-2

Modified:
  python-openbabel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 20:05:48 UTC (rev 96308)
+++ PKGBUILD2013-08-24 20:05:49 UTC (rev 96309)
@@ -5,7 +5,7 @@
 
 pkgname=('python-openbabel' 'python2-openbabel')
 pkgver=2.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Python bindings for the openbabel library'
 arch=('x86_64' 'i686')
 url='http://openbabel.org/wiki/Python'



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

2013-08-24 Thread Connor Behan
Date: Saturday, August 24, 2013 @ 22:05:48
  Author: cbehan
Revision: 96308

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

Added:
  mesa-dri1/repos/community-i686/LICENSE
(from rev 96307, mesa-dri1/trunk/LICENSE)
  mesa-dri1/repos/community-i686/PKGBUILD
(from rev 96307, mesa-dri1/trunk/PKGBUILD)
  mesa-dri1/repos/community-x86_64/LICENSE
(from rev 96307, mesa-dri1/trunk/LICENSE)
  mesa-dri1/repos/community-x86_64/PKGBUILD
(from rev 96307, mesa-dri1/trunk/PKGBUILD)
Deleted:
  mesa-dri1/repos/community-i686/PKGBUILD
  mesa-dri1/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  230 
 community-i686/LICENSE|   82 +++
 community-i686/PKGBUILD   |   97 --
 community-x86_64/LICENSE  |   82 +++
 community-x86_64/PKGBUILD |   97 --
 5 files changed, 394 insertions(+), 194 deletions(-)

Copied: mesa-dri1/repos/community-i686/LICENSE (from rev 96307, 
mesa-dri1/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2013-08-24 20:05:48 UTC (rev 96308)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+Inc.(SGI). However, the author does not possess an OpenGL license
+from SGI, and makes no claim that Mesa is in any way a compatible
+replacement for OpenGL or associated with SGI. Those who want a
+licensed implementation of OpenGL should contact a licensed
+vendor.
+
+Please do not refer to the library as MesaGL (for legal
+reasons). It's just Mesa or The Mesa 3-D graphics
+library
+
+* OpenGL is a trademark of Silicon Graphics Incorporated.
+
+License / Copyright Information
+
+The Mesa distribution consists of several components.  Different copyrights
+and licenses apply to different components.  For example, GLUT is copyrighted
+by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
+device drivers are copyrighted by their authors.  See below for a list of
+Mesa's main components and the license for each.
+
+The core Mesa library is licensed according to the terms of the MIT license.
+This allows integration with the XFree86, Xorg and DRI projects.
+
+The default Mesa license is as follows:
+
+Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
+
+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
+BRIAN PAUL 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.
+
+Attention, Contributors
+
+When contributing to the Mesa project you must agree to the licensing terms
+of the component to which you're contributing.
+The following section lists the primary components of the Mesa distribution
+and their respective licenses.
+
+
+Mesa Component Licenses
+
+Component Location   Primary Author  License
+
+Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
+
+Device driverssrc/mesa/drivers/* See drivers See drivers
+
+Ext headers   include/GL/glext.h SGI SGI Free B
+  include/GL/glxext.h
+
+GLUT  src/glut/  Mark KilgardMark's copyright
+
+Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
+
+SGI GLU library   src/glu/sgi/   SGI SGI Free B
+
+demo programs progs/demos/   various see source files
+
+X demos   progs/xdemos/  Brian Paul  see source files
+
+SGI demos progs/samples/ SGI SGI copyright
+
+RedBook demos progs/redbook/ SGI SGI copyright

Deleted: community-i686/PKGBUILD
===
--- community-

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

2013-08-24 Thread Alexander Rødseth
Date: Saturday, August 24, 2013 @ 22:06:01
  Author: arodseth
Revision: 96310

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

Added:
  python-openbabel/repos/community-i686/PKGBUILD
(from rev 96309, python-openbabel/trunk/PKGBUILD)
  python-openbabel/repos/community-x86_64/PKGBUILD
(from rev 96309, python-openbabel/trunk/PKGBUILD)
Deleted:
  python-openbabel/repos/community-i686/PKGBUILD
  python-openbabel/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  114 
 community-i686/PKGBUILD   |   57 --
 community-x86_64/PKGBUILD |   57 --
 3 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-24 20:05:49 UTC (rev 96309)
+++ community-i686/PKGBUILD 2013-08-24 20:06:01 UTC (rev 96310)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Andrea Scarpino 
-# Contributor: Michal Bozon 
-
-pkgname=('python-openbabel' 'python2-openbabel')
-pkgver=2.3.2
-pkgrel=1
-pkgdesc='Python bindings for the openbabel library'
-arch=('x86_64' 'i686')
-url='http://openbabel.org/wiki/Python'
-license=('GPL')
-depends=('gcc-libs' "openbabel=${pkgver}" 'eigen2')
-makedepends=('swig' 'cmake' 'python-setuptools' 'python2-setuptools')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/openbabel/openbabel-$pkgver.tar.gz";)
-sha256sums=('4eaca26679aa6cc85ebf96af19191472ac63ca442c36b0427b369c3a25705188')
-
-build() {
-  cp -r openbabel-$pkgver python2-openbabel-$pkgver
-  cd $srcdir/openbabel-$pkgver
-  
-  # Create babelconfig.h
-  cmake .
-
-  # Regenerate interface with the patched swig 2.0.2
-  cd scripts
-  swig -O -I../include/ -python -py3 -c++  openbabel-python.i
-  mv openbabel-python_wrap.cxx python/openbabel-python.cpp
-  mv openbabel.py python/
-
-  cd python
-  sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py
-  sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py
-
-  cd $srcdir/python2-openbabel-$pkgver/scripts/python
-  sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py
-  sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py
-}
-
-package_python-openbabel() {
-  depends+=('python')
-
-  cd "$srcdir/openbabel-$pkgver/scripts/python"
-
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-}
-
-package_python2-openbabel() {
-  depends+=('python2')
-
-  cd "$srcdir/python2-openbabel-$pkgver/scripts/python"
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-openbabel/repos/community-i686/PKGBUILD (from rev 96309, 
python-openbabel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-24 20:06:01 UTC (rev 96310)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Andrea Scarpino 
+# Contributor: Michal Bozon 
+
+pkgname=('python-openbabel' 'python2-openbabel')
+pkgver=2.3.2
+pkgrel=2
+pkgdesc='Python bindings for the openbabel library'
+arch=('x86_64' 'i686')
+url='http://openbabel.org/wiki/Python'
+license=('GPL')
+depends=('gcc-libs' "openbabel=${pkgver}" 'eigen2')
+makedepends=('swig' 'cmake' 'python-setuptools' 'python2-setuptools')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/openbabel/openbabel-$pkgver.tar.gz";)
+sha256sums=('4eaca26679aa6cc85ebf96af19191472ac63ca442c36b0427b369c3a25705188')
+
+build() {
+  cp -r openbabel-$pkgver python2-openbabel-$pkgver
+  cd $srcdir/openbabel-$pkgver
+  
+  # Create babelconfig.h
+  cmake .
+
+  # Regenerate interface with the patched swig 2.0.2
+  cd scripts
+  swig -O -I../include/ -python -py3 -c++  openbabel-python.i
+  mv openbabel-python_wrap.cxx python/openbabel-python.cpp
+  mv openbabel.py python/
+
+  cd python
+  sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py
+  sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py
+
+  cd $srcdir/python2-openbabel-$pkgver/scripts/python
+  sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py
+  sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py
+}
+
+package_python-openbabel() {
+  depends+=('python')
+
+  cd "$srcdir/openbabel-$pkgver/scripts/python"
+
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}
+
+package_python2-openbabel() {
+  depends+=('python2')
+
+  cd "$srcdir/python2-openbabel-$pkgver/scripts/python"
+
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-24 20:05:49 UTC (rev 96309)
+++ community-x86_64/PKGBUILD   2013-08-24 20:06:01 UTC (rev 

[arch-commits] Commit in mesa-dri1/trunk (LICENSE PKGBUILD)

2013-08-24 Thread Connor Behan
Date: Saturday, August 24, 2013 @ 22:04:54
  Author: cbehan
Revision: 96307

upgpkg: mesa-dri1 7.11.2-5

Update to 7.11.2-5

Added:
  mesa-dri1/trunk/LICENSE
Modified:
  mesa-dri1/trunk/PKGBUILD

--+
 LICENSE  |   82 +
 PKGBUILD |   24 +++--
 2 files changed, 103 insertions(+), 3 deletions(-)

Added: LICENSE
===
--- LICENSE (rev 0)
+++ LICENSE 2013-08-24 20:04:54 UTC (rev 96307)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+Inc.(SGI). However, the author does not possess an OpenGL license
+from SGI, and makes no claim that Mesa is in any way a compatible
+replacement for OpenGL or associated with SGI. Those who want a
+licensed implementation of OpenGL should contact a licensed
+vendor.
+
+Please do not refer to the library as MesaGL (for legal
+reasons). It's just Mesa or The Mesa 3-D graphics
+library
+
+* OpenGL is a trademark of Silicon Graphics Incorporated.
+
+License / Copyright Information
+
+The Mesa distribution consists of several components.  Different copyrights
+and licenses apply to different components.  For example, GLUT is copyrighted
+by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
+device drivers are copyrighted by their authors.  See below for a list of
+Mesa's main components and the license for each.
+
+The core Mesa library is licensed according to the terms of the MIT license.
+This allows integration with the XFree86, Xorg and DRI projects.
+
+The default Mesa license is as follows:
+
+Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
+
+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
+BRIAN PAUL 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.
+
+Attention, Contributors
+
+When contributing to the Mesa project you must agree to the licensing terms
+of the component to which you're contributing.
+The following section lists the primary components of the Mesa distribution
+and their respective licenses.
+
+
+Mesa Component Licenses
+
+Component Location   Primary Author  License
+
+Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
+
+Device driverssrc/mesa/drivers/* See drivers See drivers
+
+Ext headers   include/GL/glext.h SGI SGI Free B
+  include/GL/glxext.h
+
+GLUT  src/glut/  Mark KilgardMark's copyright
+
+Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
+
+SGI GLU library   src/glu/sgi/   SGI SGI Free B
+
+demo programs progs/demos/   various see source files
+
+X demos   progs/xdemos/  Brian Paul  see source files
+
+SGI demos progs/samples/ SGI SGI copyright
+
+RedBook demos progs/redbook/ SGI SGI copyright

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 19:59:07 UTC (rev 96306)
+++ PKGBUILD2013-08-24 20:04:54 UTC (rev 96307)
@@ -4,14 +4,16 @@
 pkgname=('unichrome-dri' 'i810-dri' 'mach64-dri' 'mga-dri' 'r128-dri' 
'savage-dri' 'sis-dri' 'tdfx-dri')
 
 pkgver=7.11.2
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 makedepends=('glproto>=1.4.14' 'dri2proto' 'libdrm>=2.4.26' 
'libxxf86vm>=1.1.1' 'libxdamage>=1.1.3' 'expat>=2.0.1' 'libx11>=1.4.3' 
'libxt>=1.1.1' 
  'gcc-libs>=4.6.1' 'python2' 'libxml2' 'imake' 'llvm' 'udev')
 url="http://mesa3d.sourceforge.net";
 license=('custom')
-source=("ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2";)
-md5sums=('0837c52698fe3252369c3fdb5195afcc')
+source=("ftp://ftp.fre

[arch-commits] Commit in lib32-gdk-pixbuf2/trunk (PKGBUILD)

2013-08-24 Thread Florian Pritz
Date: Saturday, August 24, 2013 @ 21:59:07
  Author: bluewind
Revision: 96306

fix license

Modified:
  lib32-gdk-pixbuf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 19:57:20 UTC (rev 96305)
+++ PKGBUILD2013-08-24 19:59:07 UTC (rev 96306)
@@ -7,7 +7,7 @@
 pkgdesc="An image loading library (32-bit)"
 arch=('x86_64')
 url="http://www.gtk.org/";
-license=('LGPL2')
+license=('LGPL2.1')
 depends=(lib32-glib2 lib32-libpng lib32-libtiff lib32-libjpeg lib32-libx11
  $_pkgbasename)
 makedepends=(gcc-multilib)



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

2013-08-24 Thread Florian Pritz
Date: Saturday, August 24, 2013 @ 21:57:20
  Author: bluewind
Revision: 96305

fix missing license symlink

Modified:
  lib32-ncurses/trunk/PKGBUILD
  lib32-speex/trunk/PKGBUILD

--+
 lib32-ncurses/trunk/PKGBUILD |2 ++
 lib32-speex/trunk/PKGBUILD   |2 ++
 2 files changed, 4 insertions(+)

Modified: lib32-ncurses/trunk/PKGBUILD
===
--- lib32-ncurses/trunk/PKGBUILD2013-08-24 19:46:46 UTC (rev 96304)
+++ lib32-ncurses/trunk/PKGBUILD2013-08-24 19:57:20 UTC (rev 96305)
@@ -67,6 +67,8 @@
   done
 
   rm -rf "${pkgdir}"/usr/{include,share,bin}
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
 }
 
 # vim: set et ts=2 sw=2:

Modified: lib32-speex/trunk/PKGBUILD
===
--- lib32-speex/trunk/PKGBUILD  2013-08-24 19:46:46 UTC (rev 96304)
+++ lib32-speex/trunk/PKGBUILD  2013-08-24 19:57:20 UTC (rev 96305)
@@ -30,4 +30,6 @@
   cd $srcdir/speex-$pkgver
   make DESTDIR=$pkgdir install
   rm -rf "${pkgdir}"/usr/{include,share,bin}
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
 }



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

2013-08-24 Thread Florian Pritz
Date: Saturday, August 24, 2013 @ 21:46:40
  Author: bluewind
Revision: 96303

upgpkg: ack 2.08-1

upstream update

Modified:
  ack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 19:36:22 UTC (rev 96302)
+++ PKGBUILD2013-08-24 19:46:40 UTC (rev 96303)
@@ -4,7 +4,7 @@
 # Contributor: Michael S. Walker 
 
 pkgname=ack
-pkgver=2.04
+pkgver=2.08
 pkgrel=1
 pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees 
of heterogeneous source code"
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('perl-file-next')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/$pkgname-$pkgver.tar.gz)
-md5sums=('bfd1b9fc4e79b6cad1c410406e199fe5')
+md5sums=('7b10e878c07b84b9fa874eff6e014ef3')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



[arch-commits] Commit in ack/repos/community-any (PKGBUILD PKGBUILD)

2013-08-24 Thread Florian Pritz
Date: Saturday, August 24, 2013 @ 21:46:46
  Author: bluewind
Revision: 96304

archrelease: copy trunk to community-any

Added:
  ack/repos/community-any/PKGBUILD
(from rev 96303, ack/trunk/PKGBUILD)
Deleted:
  ack/repos/community-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-24 19:46:40 UTC (rev 96303)
+++ PKGBUILD2013-08-24 19:46:46 UTC (rev 96304)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor:  TDY 
-# Contributor: Michael S. Walker 
-
-pkgname=ack
-pkgver=2.04
-pkgrel=1
-pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees 
of heterogeneous source code"
-arch=('any')
-url="http://betterthangrep.com/";
-license=('GPL' 'PerlArtistic')
-depends=('perl-file-next')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/$pkgname-$pkgver.tar.gz)
-md5sums=('bfd1b9fc4e79b6cad1c410406e199fe5')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver"
-  # some standalone tests are failing
-  make test || true
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: ack/repos/community-any/PKGBUILD (from rev 96303, ack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-24 19:46:46 UTC (rev 96304)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor:  TDY 
+# Contributor: Michael S. Walker 
+
+pkgname=ack
+pkgver=2.08
+pkgrel=1
+pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees 
of heterogeneous source code"
+arch=('any')
+url="http://betterthangrep.com/";
+license=('GPL' 'PerlArtistic')
+depends=('perl-file-next')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/$pkgname-$pkgver.tar.gz)
+md5sums=('7b10e878c07b84b9fa874eff6e014ef3')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # some standalone tests are failing
+  make test || true
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}



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

2013-08-24 Thread Alexander Rødseth
Date: Saturday, August 24, 2013 @ 21:36:22
  Author: arodseth
Revision: 96302

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

Added:
  python-openbabel/repos/community-i686/PKGBUILD
(from rev 96301, python-openbabel/trunk/PKGBUILD)
  python-openbabel/repos/community-x86_64/PKGBUILD
(from rev 96301, python-openbabel/trunk/PKGBUILD)
Deleted:
  python-openbabel/repos/community-i686/PKGBUILD
  python-openbabel/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  114 
 community-i686/PKGBUILD   |   58 --
 community-x86_64/PKGBUILD |   58 --
 3 files changed, 114 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-24 19:36:10 UTC (rev 96301)
+++ community-i686/PKGBUILD 2013-08-24 19:36:22 UTC (rev 96302)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Andrea Scarpino 
-# Contributor: Michal Bozon 
-
-pkgname=('python-openbabel' 'python2-openbabel')
-pkgver=2.3.2
-pkgrel=1
-pkgdesc='Python bindings for the openbabel library'
-arch=('x86_64' 'i686')
-url='http://openbabel.org/wiki/Python'
-license=('GPL')
-depends=('gcc-libs' "openbabel=${pkgver}" 'eigen2')
-makedepends=('swig' 'cmake' 'python-distribute' 'python2-distribute')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/openbabel/openbabel-$pkgver.tar.gz";)
-sha256sums=('4eaca26679aa6cc85ebf96af19191472ac63ca442c36b0427b369c3a25705188')
-
-build() {
-  cp -r openbabel-$pkgver python2-openbabel-$pkgver
-
-  cd $srcdir/openbabel-$pkgver
-  
-  # Create babelconfig.h
-  cmake .
-
-  # Regenerate interface with the patched swig 2.0.2
-  cd scripts
-  swig -I../include/ -python -py3 -c++  openbabel-python.i
-  mv openbabel-python_wrap.cxx python/openbabel-python.cpp
-  mv openbabel.py python/
-
-  cd python
-  sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py
-  sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py
-
-  cd $srcdir/python2-openbabel-$pkgver/scripts/python
-  sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py
-  sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py
-}
-
-package_python-openbabel() {
-  depends+=('python')
-
-  cd "$srcdir/openbabel-$pkgver/scripts/python"
-
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-}
-
-package_python2-openbabel() {
-  depends+=('python2')
-
-  cd "$srcdir/python2-openbabel-$pkgver/scripts/python"
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-openbabel/repos/community-i686/PKGBUILD (from rev 96301, 
python-openbabel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-24 19:36:22 UTC (rev 96302)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Andrea Scarpino 
+# Contributor: Michal Bozon 
+
+pkgname=('python-openbabel' 'python2-openbabel')
+pkgver=2.3.2
+pkgrel=1
+pkgdesc='Python bindings for the openbabel library'
+arch=('x86_64' 'i686')
+url='http://openbabel.org/wiki/Python'
+license=('GPL')
+depends=('gcc-libs' "openbabel=${pkgver}" 'eigen2')
+makedepends=('swig' 'cmake' 'python-setuptools' 'python2-setuptools')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/openbabel/openbabel-$pkgver.tar.gz";)
+sha256sums=('4eaca26679aa6cc85ebf96af19191472ac63ca442c36b0427b369c3a25705188')
+
+build() {
+  cp -r openbabel-$pkgver python2-openbabel-$pkgver
+  cd $srcdir/openbabel-$pkgver
+  
+  # Create babelconfig.h
+  cmake .
+
+  # Regenerate interface with the patched swig 2.0.2
+  cd scripts
+  swig -O -I../include/ -python -py3 -c++  openbabel-python.i
+  mv openbabel-python_wrap.cxx python/openbabel-python.cpp
+  mv openbabel.py python/
+
+  cd python
+  sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py
+  sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py
+
+  cd $srcdir/python2-openbabel-$pkgver/scripts/python
+  sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py
+  sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py
+}
+
+package_python-openbabel() {
+  depends+=('python')
+
+  cd "$srcdir/openbabel-$pkgver/scripts/python"
+
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}
+
+package_python2-openbabel() {
+  depends+=('python2')
+
+  cd "$srcdir/python2-openbabel-$pkgver/scripts/python"
+
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-24 19:36:10 UTC (rev 96301)
+++ community-x86_64/PKGBUILD   2013-08-24 19:36:22 UTC (rev 9

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

2013-08-24 Thread Alexander Rødseth
Date: Saturday, August 24, 2013 @ 21:36:10
  Author: arodseth
Revision: 96301

upgpkg: python-openbabel 2.3.2-1

Modified:
  python-openbabel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 19:12:52 UTC (rev 96300)
+++ PKGBUILD2013-08-24 19:36:10 UTC (rev 96301)
@@ -11,7 +11,7 @@
 url='http://openbabel.org/wiki/Python'
 license=('GPL')
 depends=('gcc-libs' "openbabel=${pkgver}" 'eigen2')
-makedepends=('swig' 'cmake' 'python-distribute' 'python2-distribute')
+makedepends=('swig' 'cmake' 'python-setuptools' 'python2-setuptools')
 options=('!libtool')
 source=("http://downloads.sourceforge.net/openbabel/openbabel-$pkgver.tar.gz";)
 sha256sums=('4eaca26679aa6cc85ebf96af19191472ac63ca442c36b0427b369c3a25705188')
@@ -18,7 +18,6 @@
 
 build() {
   cp -r openbabel-$pkgver python2-openbabel-$pkgver
-
   cd $srcdir/openbabel-$pkgver
   
   # Create babelconfig.h
@@ -26,7 +25,7 @@
 
   # Regenerate interface with the patched swig 2.0.2
   cd scripts
-  swig -I../include/ -python -py3 -c++  openbabel-python.i
+  swig -O -I../include/ -python -py3 -c++  openbabel-python.i
   mv openbabel-python_wrap.cxx python/openbabel-python.cpp
   mv openbabel.py python/
 



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

2013-08-24 Thread Alexander Rødseth
Date: Saturday, August 24, 2013 @ 21:12:44
  Author: arodseth
Revision: 96299

upgpkg: grails 2.2.4-1

Modified:
  grails/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 12:18:47 UTC (rev 96298)
+++ PKGBUILD2013-08-24 19:12:44 UTC (rev 96299)
@@ -3,8 +3,8 @@
 
 pkgbase=grails
 pkgname=('grails' 'grails-docs')
-pkgver=2.2.3
-pkgrel=2
+pkgver=2.2.4
+pkgrel=1
 pkgdesc='Groovy on rails, web framework'
 arch=('any')
 url='http://grails.org/'
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 
source=("http://dist.springframework.org.s3.amazonaws.com/release/GRAILS/$pkgname-$pkgver.zip";
 "$pkgname.sh")
-sha256sums=('af084206cb134c50cd52e93cd7abb056e55488a8712d247af0d8a60234cdd43a'
+sha256sums=('7453eb23856f4b1acad4b084990f748494b260eb18dfbcdf0c4a28c2f54ce92f'
 '009f00755c1d5312f8ee4ad7e407e3b4a5328b6820e04b94b39750c43fe76d56')
 
 prepare() {



[arch-commits] Commit in grails/repos/community-any (4 files)

2013-08-24 Thread Alexander Rødseth
Date: Saturday, August 24, 2013 @ 21:12:52
  Author: arodseth
Revision: 96300

archrelease: copy trunk to community-any

Added:
  grails/repos/community-any/PKGBUILD
(from rev 96299, grails/trunk/PKGBUILD)
  grails/repos/community-any/grails.sh
(from rev 96299, grails/trunk/grails.sh)
Deleted:
  grails/repos/community-any/PKGBUILD
  grails/repos/community-any/grails.sh

---+
 PKGBUILD  |  134 ++--
 grails.sh |   14 +++---
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-24 19:12:44 UTC (rev 96299)
+++ PKGBUILD2013-08-24 19:12:52 UTC (rev 96300)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-
-pkgbase=grails
-pkgname=('grails' 'grails-docs')
-pkgver=2.2.3
-pkgrel=2
-pkgdesc='Groovy on rails, web framework'
-arch=('any')
-url='http://grails.org/'
-license=('APACHE')
-makedepends=('setconf' 'apache-ant')
-optdepends=('groovy: the groovy programming language'
-'grails-docs: documentation for grails')
-options=('!emptydirs')
-source=("http://dist.springframework.org.s3.amazonaws.com/release/GRAILS/$pkgname-$pkgver.zip";
-"$pkgname.sh")
-sha256sums=('af084206cb134c50cd52e93cd7abb056e55488a8712d247af0d8a60234cdd43a'
-'009f00755c1d5312f8ee4ad7e407e3b4a5328b6820e04b94b39750c43fe76d56')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # configure paths
-  setconf bin/grails DIRNAME /usr/share/grails
-  setconf bin/grails-debug DIRNAME /usr/share/grails
-}
-
-package_grails() {
-  depends=('java-environment' 'junit' 'bash' 'sh')
-  cd "$pkgname-$pkgver"
-
-  mkdir -p "$pkgdir/usr/share/pixmaps/"
-  cp -r "$srcdir/$pkgname-$pkgver" "$pkgdir/usr/share/$pkgname"
-
-  # wrapper scripts
-  install -Dm755 bin/startGrails \
-"$pkgdir/usr/share/$pkgname/startGrails"
-  install -Dm755 "../$pkgname.sh" \
-"$pkgdir/usr/bin/$pkgname"
-  install -Dm755 "../$pkgname.sh" \
-"$pkgdir/usr/share/$pkgname/bin/$pkgname"
-
-  # icons
-  cp media/icons/*.png "$pkgdir/usr/share/pixmaps/"
-  
-  # profile.d script
-  echo 'export GRAILS_HOME=/usr/share/grails' > "$pkgname.sh"
-  install -Dm755 "$pkgname.sh" "$pkgdir/etc/profile.d/$pkgname.sh"
-
-  # clean up
-  cd "$pkgdir/usr/share/$pkgname"
-  rm -rf doc INSTALL LICENSE README
-  find "$pkgdir/usr/share" -name "*.bat" -exec rm {} \;
-}
-
-package_grails-docs() {
-  pkgdesc='Documentation for Grails'
-  cd "grails-$pkgver"
-
-  mkdir -p "$pkgdir/usr/share/doc"
-  cp -r doc "$pkgdir/usr/share/doc/grails-$pkgver"
-  mkdir -p "$pkgdir/usr/share/grails"
-  ln -s "/usr/share/doc/grails-$pkgver" "$pkgdir/usr/share/grails/doc"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: grails/repos/community-any/PKGBUILD (from rev 96299, 
grails/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-24 19:12:52 UTC (rev 96300)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+
+pkgbase=grails
+pkgname=('grails' 'grails-docs')
+pkgver=2.2.4
+pkgrel=1
+pkgdesc='Groovy on rails, web framework'
+arch=('any')
+url='http://grails.org/'
+license=('APACHE')
+makedepends=('setconf' 'apache-ant')
+optdepends=('groovy: the groovy programming language'
+'grails-docs: documentation for grails')
+options=('!emptydirs')
+source=("http://dist.springframework.org.s3.amazonaws.com/release/GRAILS/$pkgname-$pkgver.zip";
+"$pkgname.sh")
+sha256sums=('7453eb23856f4b1acad4b084990f748494b260eb18dfbcdf0c4a28c2f54ce92f'
+'009f00755c1d5312f8ee4ad7e407e3b4a5328b6820e04b94b39750c43fe76d56')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # configure paths
+  setconf bin/grails DIRNAME /usr/share/grails
+  setconf bin/grails-debug DIRNAME /usr/share/grails
+}
+
+package_grails() {
+  depends=('java-environment' 'junit' 'bash' 'sh')
+  cd "$pkgname-$pkgver"
+
+  mkdir -p "$pkgdir/usr/share/pixmaps/"
+  cp -r "$srcdir/$pkgname-$pkgver" "$pkgdir/usr/share/$pkgname"
+
+  # wrapper scripts
+  install -Dm755 bin/startGrails \
+"$pkgdir/usr/share/$pkgname/startGrails"
+  install -Dm755 "../$pkgname.sh" \
+"$pkgdir/usr/bin/$pkgname"
+  install -Dm755 "../$pkgname.sh" \
+"$pkgdir/usr/share/$pkgname/bin/$pkgname"
+
+  # icons
+  cp media/icons/*.png "$pkgdir/usr/share/pixmaps/"
+  
+  # profile.d script
+  echo 'export GRAILS_HOME=/usr/share/grails' > "$pkgname.sh"
+  install -Dm755 "$pkgname.sh" "$pkgdir/etc/profile.d/$pkgname.sh"
+
+  # clean up
+  cd "$pkgdir/usr/share/$pkgname"
+  rm -rf doc INSTALL LICENSE README
+  find "$pkgdir/usr/share" -name "*.bat" -exec rm {} \;
+}
+
+package_grails-docs() {
+  pkgdesc='Documentation for Grails'
+  cd "grails-$pkgver"
+
+  mkdir -p "$pkgdir/usr/share/doc"
+  cp -r doc "$pkgdir/usr/share/doc/grails-$pkgver"
+  mkdir -p "$pkgdir/usr/share/grails"
+  ln -s "/usr/share/doc/grails-$pkgver" "$pkgdir/usr/share/grails/doc"
+}
+

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

2013-08-24 Thread Ray Rashif
Date: Saturday, August 24, 2013 @ 19:41:21
  Author: schiv
Revision: 193589

upgpkg: suil 0.6.14-2

rebuild against new lv2
missed it on the last update of both
locking down versions so I remember in future
also add build argument to waf for consistency

Modified:
  suil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 16:58:24 UTC (rev 193588)
+++ PKGBUILD2013-08-24 17:41:21 UTC (rev 193589)
@@ -4,12 +4,12 @@
 
 pkgname=suil
 pkgver=0.6.14
-pkgrel=1
+pkgrel=2
 pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs"
 arch=('i686' 'x86_64')
 url="http://drobilla.net/software/suil/";
 license=('custom:ISC')
-depends=('lv2')
+depends=('lv2>=1.6.0')
 makedepends=('python2' 'qt4' 'gtk2')
 optdepends=('qt4: Qt 4.x UI wrapping support'
 'gtk2: GTK+ 2.x UI wrapping support')
@@ -23,7 +23,7 @@
   sed -i "/ldconfig/d" wscript
 
   python2 waf configure --prefix=/usr
-  python2 waf
+  python2 waf build $MAKEFLAGS
 }
 
 package() {



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

2013-08-24 Thread Ray Rashif
Date: Saturday, August 24, 2013 @ 19:41:43
  Author: schiv
Revision: 193590

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

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

---+
 /PKGBUILD |   78 
 extra-i686/PKGBUILD   |   39 
 extra-x86_64/PKGBUILD |   39 
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-24 17:41:21 UTC (rev 193589)
+++ extra-i686/PKGBUILD 2013-08-24 17:41:43 UTC (rev 193590)
@@ -1,39 +0,0 @@
-# $Id: PKGBUILD 73980 2012-07-18 00:34:26Z speps $
-# Maintainer: Ray Rashif 
-# Contributor: speps 
-
-pkgname=suil
-pkgver=0.6.14
-pkgrel=1
-pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs"
-arch=('i686' 'x86_64')
-url="http://drobilla.net/software/suil/";
-license=('custom:ISC')
-depends=('lv2')
-makedepends=('python2' 'qt4' 'gtk2')
-optdepends=('qt4: Qt 4.x UI wrapping support'
-'gtk2: GTK+ 2.x UI wrapping support')
-source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2";)
-md5sums=('c9738de0d6974aca1fe75dd280114158')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # remove ldconfig --speps
-  sed -i "/ldconfig/d" wscript
-
-  python2 waf configure --prefix=/usr
-  python2 waf
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  python2 waf install --destdir="$pkgdir"
-
-  # license
-  install -Dm644 COPYING \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: suil/repos/extra-i686/PKGBUILD (from rev 193589, suil/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-24 17:41:43 UTC (rev 193590)
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 73980 2012-07-18 00:34:26Z speps $
+# Maintainer: Ray Rashif 
+# Contributor: speps 
+
+pkgname=suil
+pkgver=0.6.14
+pkgrel=2
+pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs"
+arch=('i686' 'x86_64')
+url="http://drobilla.net/software/suil/";
+license=('custom:ISC')
+depends=('lv2>=1.6.0')
+makedepends=('python2' 'qt4' 'gtk2')
+optdepends=('qt4: Qt 4.x UI wrapping support'
+'gtk2: GTK+ 2.x UI wrapping support')
+source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2";)
+md5sums=('c9738de0d6974aca1fe75dd280114158')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # remove ldconfig --speps
+  sed -i "/ldconfig/d" wscript
+
+  python2 waf configure --prefix=/usr
+  python2 waf build $MAKEFLAGS
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python2 waf install --destdir="$pkgdir"
+
+  # license
+  install -Dm644 COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-24 17:41:21 UTC (rev 193589)
+++ extra-x86_64/PKGBUILD   2013-08-24 17:41:43 UTC (rev 193590)
@@ -1,39 +0,0 @@
-# $Id: PKGBUILD 73980 2012-07-18 00:34:26Z speps $
-# Maintainer: Ray Rashif 
-# Contributor: speps 
-
-pkgname=suil
-pkgver=0.6.14
-pkgrel=1
-pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs"
-arch=('i686' 'x86_64')
-url="http://drobilla.net/software/suil/";
-license=('custom:ISC')
-depends=('lv2')
-makedepends=('python2' 'qt4' 'gtk2')
-optdepends=('qt4: Qt 4.x UI wrapping support'
-'gtk2: GTK+ 2.x UI wrapping support')
-source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2";)
-md5sums=('c9738de0d6974aca1fe75dd280114158')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # remove ldconfig --speps
-  sed -i "/ldconfig/d" wscript
-
-  python2 waf configure --prefix=/usr
-  python2 waf
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  python2 waf install --destdir="$pkgdir"
-
-  # license
-  install -Dm644 COPYING \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: suil/repos/extra-x86_64/PKGBUILD (from rev 193589, suil/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-08-24 17:41:43 UTC (rev 193590)
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 73980 2012-07-18 00:34:26Z speps $
+# Maintainer: Ray Rashif 
+# Contributor: speps 
+
+pkgname=suil
+pkgver=0.6.14
+pkgrel=2
+pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs"
+arch=('i686' 'x86_64')
+url="http://drobilla.net/software/suil/";
+license=('custom:ISC')
+depends=('lv2>=1.6.0')
+makedepends=('python2' 'qt4' 'gtk2')
+optdepends=(

[arch-commits] Commit in git/repos (16 files)

2013-08-24 Thread Dan McGee
Date: Saturday, August 24, 2013 @ 18:58:24
  Author: dan
Revision: 193588

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

Added:
  git/repos/extra-i686/PKGBUILD
(from rev 193587, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon.socket
(from rev 193587, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 193587, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 193587, git/trunk/git.install)
  git/repos/extra-x86_64/PKGBUILD
(from rev 193587, git/trunk/PKGBUILD)
  git/repos/extra-x86_64/git-daemon.socket
(from rev 193587, git/trunk/git-daemon.socket)
  git/repos/extra-x86_64/git-daemon@.service
(from rev 193587, git/trunk/git-daemon@.service)
  git/repos/extra-x86_64/git.install
(from rev 193587, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon.socket
  git/repos/extra-i686/git-daemon@.service
  git/repos/extra-i686/git.install
  git/repos/extra-x86_64/PKGBUILD
  git/repos/extra-x86_64/git-daemon.socket
  git/repos/extra-x86_64/git-daemon@.service
  git/repos/extra-x86_64/git.install

--+
 /PKGBUILD|  234 +
 /git-daemon.socket   |   18 ++
 /git-daemon@.service |   20 +++
 /git.install |   42 ++
 extra-i686/PKGBUILD  |  117 --
 extra-i686/git-daemon.socket |9 -
 extra-i686/git-daemon@.service   |   10 -
 extra-i686/git.install   |   21 ---
 extra-x86_64/PKGBUILD|  117 --
 extra-x86_64/git-daemon.socket   |9 -
 extra-x86_64/git-daemon@.service |   10 -
 extra-x86_64/git.install |   21 ---
 12 files changed, 314 insertions(+), 314 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-24 16:58:10 UTC (rev 193587)
+++ extra-i686/PKGBUILD 2013-08-24 16:58:24 UTC (rev 193588)
@@ -1,117 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgname=git
-pkgver=1.8.3.4
-pkgrel=1
-pkgdesc="the fast distributed version control system"
-arch=(i686 x86_64)
-url="http://git-scm.com/";
-license=('GPL2')
-depends=('curl' 'expat>=2.0' 'perl-error' 'perl>=5.14.0' 'openssl' 'pcre')
-makedepends=('python2' 'emacs' 'libgnome-keyring')
-optdepends=('tk: gitk and git gui'
-'perl-libwww: git svn'
-'perl-term-readkey: git svn'
-'perl-mime-tools: git send-email'
-'perl-net-smtp-ssl: git send-email TLS support'
-'perl-authen-sasl: git send-email TLS support'
-'python2: various helper scripts'
-'subversion: git svn'
-'cvsps: git cvsimport'
-'gnome-keyring: GNOME keyring credential helper')
-replaces=('git-core')
-provides=('git-core')
-install=git.install
-source=("http://git-core.googlecode.com/files/git-$pkgver.tar.gz";
-"http://git-core.googlecode.com/files/git-manpages-$pkgver.tar.gz";
-git-daemon@.service
-git-daemon.socket)
-
-build() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-all
-
-  make -C contrib/emacs prefix=/usr
-  make -C contrib/credential/gnome-keyring
-}
-
-check() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  local jobs
-  jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*')
-  mkdir -p /dev/shm/git-test
-  # We used to use this, but silly git regressions:
-  #GIT_TEST_OPTS="--root=/dev/shm/" \
-  # http://comments.gmane.org/gmane.comp.version-control.git/202020
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-NO_SVN_TESTS=y \
-DEFAULT_TEST_TARGET=prove \
-GIT_PROVE_OPTS="$jobs -Q" \
-GIT_TEST_OPTS="--root=/dev/shm/git-test" \
-test
-}
-
-package() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-INSTALLDIRS=vendor DESTDIR="$pkgdir" install
-
-  # bash completion
-  mkdir -p "$pkgdir"/usr/share/bash-completion/completions/
-  install -m644 ./contrib/completion/git-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/git
-  # fancy git prompt
-  mkdir -p "$pkgdir"/usr/share/git/
-  install -m644 ./contrib/completion/git-prompt.sh 
"$pkgdir"/usr/share/git/git-prompt.sh
-  # emacs
-  make -C contrib/emacs prefix=/usr DESTDIR="$pkgdir" install
-  # gnome credentials helper
-  install -m755 contrib/credential/gnome-keyring/git-credential-gnome-keyring \
-  "$pkgdir"/usr/lib/git-core/git-credential-gnome-keyring
-

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

2013-08-24 Thread Dan McGee
Date: Saturday, August 24, 2013 @ 18:58:10
  Author: dan
Revision: 193587

upgpkg: git 1.8.4-1

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 16:53:45 UTC (rev 193586)
+++ PKGBUILD2013-08-24 16:58:10 UTC (rev 193587)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.8.3.4
+pkgver=1.8.4
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -86,13 +86,13 @@
   cp -a ./contrib/* $pkgdir/usr/share/git/
 
   # scripts are for python 2.x
-  sed -i 's|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|' \
+  sed -i 's|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|' \
 $(find "$pkgdir" -name '*.py') \
 "$pkgdir"/usr/lib/git-core/git-p4 \
 "$pkgdir"/usr/share/git/gitview/gitview \
 "$pkgdir"/usr/share/git/remote-helpers/git-remote-bzr \
 "$pkgdir"/usr/share/git/remote-helpers/git-remote-hg
-  sed -i 's|#![ ]*/usr/bin/python|#!/usr/bin/python2|' \
+  sed -i 's|#![ ]*/usr/bin/python$|#!/usr/bin/python2|' \
 "$pkgdir"/usr/share/git/svn-fe/svnrdump_sim.py
 
 
@@ -111,7 +111,7 @@
   install -D -m 644 "$srcdir"/git-daemon.socket 
"$pkgdir"/usr/lib/systemd/system/git-daemon.socket
 }
 
-md5sums=('80eec3201a5d012913d287b85adaee8e'
- '86fd812754d25201fd72c7476045dfec'
+md5sums=('355768a1c70d0cb4fedf4b598ac1375b'
+ 'e3720f56e18a5ab8ee1871ac9c72ca7c'
  '042524f942785772d7bd52a1f02fe5ae'
  'f67869315c2cc112e076f0c73f248002')



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

2013-08-24 Thread Dan McGee
Date: Saturday, August 24, 2013 @ 18:53:35
  Author: dan
Revision: 193585

upgpkg: doxygen 1.8.5-1

Modified:
  doxygen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 14:45:36 UTC (rev 193584)
+++ PKGBUILD2013-08-24 16:53:35 UTC (rev 193585)
@@ -3,7 +3,7 @@
 
 pkgbase=doxygen
 pkgname=('doxygen' 'doxygen-docs')
-pkgver=1.8.4
+pkgver=1.8.5
 pkgrel=1
 license=('GPL')
 arch=(i686 x86_64)
@@ -11,8 +11,8 @@
 makedepends=('gcc-libs' 'flex' 'qt4' 'texlive-core' 'ghostscript'
  'texlive-latexextra' 'graphviz')
 source=(http://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz)
-md5sums=('5f460b91c0d8c34a76173cf22015c2fc')
-sha1sums=('a363811b932e44d479addbadffcc8257cde60b44')
+md5sums=('db51274568755e2c75c2657e30a78a55')
+sha1sums=('1fc5ceec21122fe5037edee4c308ac94b59ee33e')
 
 build() {
   export PATH=$PATH:/usr/lib/qt4/bin



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

2013-08-24 Thread Dan McGee
Date: Saturday, August 24, 2013 @ 18:53:45
  Author: dan
Revision: 193586

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

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

---+
 /PKGBUILD |   78 
 extra-i686/PKGBUILD   |   39 
 extra-x86_64/PKGBUILD |   39 
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-24 16:53:35 UTC (rev 193585)
+++ extra-i686/PKGBUILD 2013-08-24 16:53:45 UTC (rev 193586)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgbase=doxygen
-pkgname=('doxygen' 'doxygen-docs')
-pkgver=1.8.4
-pkgrel=1
-license=('GPL')
-arch=(i686 x86_64)
-url="http://www.doxygen.org/";
-makedepends=('gcc-libs' 'flex' 'qt4' 'texlive-core' 'ghostscript'
- 'texlive-latexextra' 'graphviz')
-source=(http://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz)
-md5sums=('5f460b91c0d8c34a76173cf22015c2fc')
-sha1sums=('a363811b932e44d479addbadffcc8257cde60b44')
-
-build() {
-  export PATH=$PATH:/usr/lib/qt4/bin
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  QTDIR=/usr ./configure --prefix /usr --with-doxywizard
-  make
-}
-
-package_doxygen() {
-  pkgdesc="A documentation system for C++, C, Java, IDL and PHP"
-  depends=('gcc-libs')
-  optdepends=('graphviz: for caller/callee graph generation'
-  'qt4: for doxywizard')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make INSTALL="${pkgdir}"/usr MAN1DIR=share/man/man1 install
-}
-
-package_doxygen-docs() {
-  pkgdesc="Developer documentation for doxygen"
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make INSTALL="${pkgdir}"/usr MAN1DIR=share/man/man1 install_docs
-}

Copied: doxygen/repos/extra-i686/PKGBUILD (from rev 193585, 
doxygen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-24 16:53:45 UTC (rev 193586)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Dan McGee 
+
+pkgbase=doxygen
+pkgname=('doxygen' 'doxygen-docs')
+pkgver=1.8.5
+pkgrel=1
+license=('GPL')
+arch=(i686 x86_64)
+url="http://www.doxygen.org/";
+makedepends=('gcc-libs' 'flex' 'qt4' 'texlive-core' 'ghostscript'
+ 'texlive-latexextra' 'graphviz')
+source=(http://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz)
+md5sums=('db51274568755e2c75c2657e30a78a55')
+sha1sums=('1fc5ceec21122fe5037edee4c308ac94b59ee33e')
+
+build() {
+  export PATH=$PATH:/usr/lib/qt4/bin
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  QTDIR=/usr ./configure --prefix /usr --with-doxywizard
+  make
+}
+
+package_doxygen() {
+  pkgdesc="A documentation system for C++, C, Java, IDL and PHP"
+  depends=('gcc-libs')
+  optdepends=('graphviz: for caller/callee graph generation'
+  'qt4: for doxywizard')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make INSTALL="${pkgdir}"/usr MAN1DIR=share/man/man1 install
+}
+
+package_doxygen-docs() {
+  pkgdesc="Developer documentation for doxygen"
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make INSTALL="${pkgdir}"/usr MAN1DIR=share/man/man1 install_docs
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-24 16:53:35 UTC (rev 193585)
+++ extra-x86_64/PKGBUILD   2013-08-24 16:53:45 UTC (rev 193586)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgbase=doxygen
-pkgname=('doxygen' 'doxygen-docs')
-pkgver=1.8.4
-pkgrel=1
-license=('GPL')
-arch=(i686 x86_64)
-url="http://www.doxygen.org/";
-makedepends=('gcc-libs' 'flex' 'qt4' 'texlive-core' 'ghostscript'
- 'texlive-latexextra' 'graphviz')
-source=(http://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz)
-md5sums=('5f460b91c0d8c34a76173cf22015c2fc')
-sha1sums=('a363811b932e44d479addbadffcc8257cde60b44')
-
-build() {
-  export PATH=$PATH:/usr/lib/qt4/bin
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  QTDIR=/usr ./configure --prefix /usr --with-doxywizard
-  make
-}
-
-package_doxygen() {
-  pkgdesc="A documentation system for C++, C, Java, IDL and PHP"
-  depends=('gcc-libs')
-  optdepends=('graphviz: for caller/callee graph generation'
-  'qt4: for doxywizard')
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make INSTALL="${pkgdir}"/usr MAN1DIR=share/man/man1 install
-}
-
-package_doxygen-docs() {
-  pkgdesc="Developer documentation for doxygen"
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make INSTALL="${pkgdir}"/usr MAN1DIR=share/man/man1 install_docs
-}

Copied: doxygen/repos/extra-x86_64/PKGBUILD (from rev 193585, 
doxygen/trunk/PKGBUILD)
=

[arch-commits] Commit in libreoffice-i18n/trunk (PKGBUILD.41)

2013-08-24 Thread Andreas Radke
Date: Saturday, August 24, 2013 @ 16:45:36
  Author: andyrtr
Revision: 193584

prepare new release

Modified:
  libreoffice-i18n/trunk/PKGBUILD.41

-+
 PKGBUILD.41 |  342 +-
 1 file changed, 171 insertions(+), 171 deletions(-)

Modified: PKGBUILD.41
===
--- PKGBUILD.41 2013-08-24 13:59:45 UTC (rev 193583)
+++ PKGBUILD.41 2013-08-24 14:45:36 UTC (rev 193584)
@@ -111,12 +111,12 @@
  'libreoffice-zh-CN'
  'libreoffice-zh-TW'
  'libreoffice-zu')
-_rcver=4.1.0.4
-pkgver=4.1.0
+_rcver=4.1.1.2
+pkgver=4.1.1
 pkgrel=1
 
-_oodlver=${pkgver}
-#_oodlver=${_rcver}
+#_oodlver=${pkgver}
+_oodlver=${_rcver}
 _dirver=${_rcver}
 
 pkgdesc="LibreOffice language/localisation files"
@@ -128,8 +128,8 @@
 # http://wiki.documentfoundation.org/Language_Teams
 
 #http://download.documentfoundation.org/mirrors/all.html
-_url="http://download.documentfoundation.org/libreoffice/stable";
-#_url="http://download.documentfoundation.org/libreoffice/testing";
+#_url="http://download.documentfoundation.org/libreoffice/stable";
+_url="http://download.documentfoundation.org/libreoffice/testing";
 #_url="http://dev-builds.libreoffice.org/pre-releases";
 #_url="http://www.libreoffice.org/download/pre-releases";
 
@@ -245,171 +245,171 @@
 
${_url}/LibreOffice_${_oodlver}_Linux_x86_rpm_{langpack,helppack}_zh-CN.tar.gz
 
${_url}/LibreOffice_${_oodlver}_Linux_x86_rpm_{langpack,helppack}_zh-TW.tar.gz
 ${_url}/LibreOffice_${_oodlver}_Linux_x86_rpm_langpack_zu.tar.gz)
-md5sums=('8f9b182d8ffc1fb8e74355986ffcce97'
- 'e1163118538981b47f2c17492b629b9f'
- '7549164c2649c4181ed271706a0a201f'
- '183faf420a15610a716d171d3e97a7ad'
- 'c1636cedf8fe0c42bb81712a3a3fd0ce'
- '15031a94853c476e0a0b11c39c09a90a'
- '17d0cf19d9cbccff47a6dc9693c25539'
- '0baee0a5359c180fab60d3d93529e3b8'
- '06bf4dece9a7a2d12561452009b3d9ce'
- '2099beb4ed488425762110375ab5cb45'
- 'b42bb03a43552ad2db065f0989c666ee'
- '111be922d513474a1573b376d31dbc59'
- '5c56ad8af877a5fda40c292257d1d71c'
- 'ae6571b87799f45fb5f7bad310ab4db2'
- '8d821f247b6930440ab412709a27956f'
- 'ef063754da11fed3986148c5dca23cd2'
- '8da92a02690035a9e454dced92d7e87d'
- '8519e69968fa4096059b2b5db360830a'
- 'dd199ff596bd93590177ed3435986551'
- '699e7e39021510e0bce4f82c2a71a0c7'
- '8e581275629e07bf54b58706216a80c9'
- 'e4e23264533bd92a7d0d3877ba7a64b1'
- '30a7e3b6787c7b5de200bb172e9fc7d1'
- '46596e374b5f2747b9bd9857a8f3a72b'
- 'd865ec1c14047c0160aaaf73452ea246'
- 'f7e4a424aad0bf5bd3b7ff010ca09aa3'
- '480302499d82004ff047103c40282db0'
- 'a2acc97987e30cf3dc95561712c79ccc'
- 'e775a8fdeb16d63e9f627eeda7d5c481'
- '5a9ab520a476e35f4c6d4e586dea84ed'
- '891c40c52a7ff3938e3d0a7063a0451a'
- '2739d74158ad09be83bab23faf9b2d67'
- '72e3a43020d71939544963cd9c874f09'
- '2985dc7ea495e6ff5f29fbb779749c3e'
- 'f306ab652e01221d89f71886084473c3'
- 'a49754cc759c726f1a49df6782ed74bd'
- '32280137c754504f0726d71eaf999775'
- 'b47dec3ee243bc61441161b5b938d3fe'
- '9da5ca76f2ffd5103607b8fa580cff3b'
- 'ddabe4a1bb475e71e8402b8874f88094'
- '69d05c6c40c3802fa33b574dd91f11a5'
- '107ee4349326d13002ba0de1d37380d2'
- '374988fc4f31a5e25ba3dfa211a2e14c'
- 'be73522e998e66a5182261d713e0adfd'
- '85e726c3ff7eba8cb3a53c52e6c458d3'
- 'b685b4a49f7c67da4e50582d3f4bc39a'
- '695426d69a11589b29580060c9bd9ae3'
- '90b6227d408cdf18d3e2c8d8f96b637f'
- '8f418c37d6a75209e54b7b54d57c3b8c'
- '0e34ae08f412a355a693f7af5043b695'
- '5e52626dd93b7b8b53d7ddd1ea93582a'
- 'e7a94b74541b0aa911f8138f6581dc9f'
- '98eb4beab2dc597c17f93659346969fb'
- 'd870fd45eed9d1af7d0d77a455d65c55'
- '6fbab1f2d65622129d5cc77fc4248e48'
- '028078039357feff602e12c9c2df77cc'
- '42d3836f77ad9901862378a2e594721b'
- 'bbc3030ce284c54aa7e6ad158afc1687'
- 'a5122de96eeedca6177268dba660025d'
- '72cf4678ab3b4802b728a26f9aff07b9'
- '4d85524c8b53421914564fbf0e194269'
- '540146fe858f22989bbdc126393cbec9'
- 'fcaa040dc8dd15aeefacb6e84f2bef10'
- 'ee1b048fa4da08f0fbc03ff1eb7b5068'
- '037f863c82096d56ff4a9769db3684b0'
- '445105ed4c4fb0c1b138f0f02ee079bd'
- '44aa7f6006bad4a8aeb9ba1aeaee1177'
- '8e942231e42c477cd094ce9f11f71488'
- 'a3cdc22fdae586c320a4baed7e61c340'
- 'edb157b5071f8e43137ed24189f1a4bc'
- '889eb03ba4d8daa16a0206c663a91a08'
- '172442d08be38e3366f84ce6137bf7d7'
- 'ac49289066e528e56b361f272eb17591'
- 'c507e21c077288387e76bc7a8943b50e'
- '293e53dc30e636e7cb09bbd8a9

[arch-commits] Commit in libreoffice/trunk (PKGBUILD.41)

2013-08-24 Thread Andreas Radke
Date: Saturday, August 24, 2013 @ 15:59:45
  Author: andyrtr
Revision: 193583

prepare new release

Modified:
  libreoffice/trunk/PKGBUILD.41

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

Modified: PKGBUILD.41
===
--- PKGBUILD.41 2013-08-24 13:01:07 UTC (rev 193582)
+++ PKGBUILD.41 2013-08-24 13:59:45 UTC (rev 193583)
@@ -18,8 +18,8 @@
'libreoffice-extension-presentation-minimizer'
'libreoffice-extension-wiki-publisher'
'libreoffice-extension-nlpsolver') # svn up -r 142692 (last one with 
all extensions built)
-_LOver=4.1.0.4
-pkgver=4.1.0
+_LOver=4.1.1.2
+pkgver=4.1.1
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
@@ -33,7 +33,7 @@
  # the runtime dependencies
  "curl>=7.20.0" "hunspell>=1.2.8" "python>=3.3" 'libwpd>=0.9.2' 
'libwps' 'libxaw' "neon>=0.28.6"
  'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib' 
'libxslt' 'librsvg' "icu>=51.1" 
- 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh'  'libtextcat' 
'graphite' 'lcms2' 'poppler>=0.22.4' 
+ 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh'  'libtextcat' 
'graphite' 'lcms2' 'poppler>=0.24.0' 
  'hicolor-icon-theme' 'desktop-file-utils' 'shared-mime-info' 
'gtk2' 'orbit2' 'translate-toolkit' 'xdg-utils'
 'ttf-dejavu') # to satisfy regression tests
 
@@ -115,9 +115,9 @@
libmspub-0.0.6.tar.bz2
libmwaw-0.1.10.tar.bz2
libvisio-0.0.30.tar.bz2 )
-md5sums=('5311656e1b54eadd4b93f948dfd5e68e'
- 'e2cd3b63e3050771a1330fc98e41a701'
- '1f4438828cbcf83c257742482dade3ef'
+md5sums=('4eb8fd2b0d1177d19b2f797faabc4ea2'
+ 'f6b418a1ed94ef9d5ee30e9f5d7f305a'
+ 'e8c69bdb55586531cc192904467f5e24'
  'f02578f5218f217a9f20e9c30e119c6a'
  '1f24ab1d39f4a51faf22244c94a6203f'
  '35c94d2df8893241173de1d16b6034c0'
@@ -158,7 +158,7 @@
 
 prepare() {
 
-cd ${srcdir}/libreoffice-$_LOver
+cd libreoffice-$_LOver
 
 # fix exttextcat build error
 # /usr/include/features.h:330:4: error: #warning _FORTIFY_SOURCE requires 
compiling with optimization (-O) [-Werror=cpp]
@@ -188,7 +188,7 @@
 }
 
 build() {
-cd ${srcdir}/libreoffice-$_LOver
+cd libreoffice-$_LOver
 
#autoconf -f
 
@@ -283,7 +283,7 @@
  pkgdesc="common files for LibreOffice - a productivity suite that is 
compatible with other major office suites"
  install=libreoffice-common.install
  depends=('libreoffice-langpack' "hunspell>=1.2.8" "python>=3.3" 
"neon>=0.28.6" 'dbus-glib' 'librsvg'
-  'nss' 'libsm' 'redland' 'hyphen' 'graphite' "icu>=51.1" 'clucene' 
'lcms2' "poppler>=0.22.4"
+  'nss' 'libsm' 'redland' 'hyphen' 'graphite' "icu>=51.1" 'clucene' 
'lcms2' "poppler>=0.24.0"
   'harfbuzz-icu' 'hicolor-icon-theme' 'desktop-file-utils' 
'shared-mime-info' 'xdg-utils')
  optdepends=('libreoffice-langpack: additional language support'
  'java-runtime: adds java support'



[arch-commits] Commit in kde-meta/repos/extra-any (PKGBUILD PKGBUILD)

2013-08-24 Thread Andrea Scarpino
Date: Saturday, August 24, 2013 @ 15:01:07
  Author: andrea
Revision: 193582

archrelease: copy trunk to extra-any

Added:
  kde-meta/repos/extra-any/PKGBUILD
(from rev 193581, kde-meta/trunk/PKGBUILD)
Deleted:
  kde-meta/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  711 ++---
 1 file changed, 356 insertions(+), 355 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-24 13:01:01 UTC (rev 193581)
+++ PKGBUILD2013-08-24 13:01:07 UTC (rev 193582)
@@ -1,355 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgbase=kde-meta
-pkgname=('kde-meta-kdeaccessibility'
- 'kde-meta-kdeadmin'
- 'kde-meta-kdeartwork'
- 'kde-meta-kdebase'
- 'kde-meta-kdeedu'
- 'kde-meta-kdegames'
- 'kde-meta-kdegraphics'
- 'kde-meta-kdemultimedia'
- 'kde-meta-kdenetwork'
- 'kde-meta-kdepim'
- 'kde-meta-kdeplasma-addons'
- 'kde-meta-kdesdk'
- 'kde-meta-kdetoys'
- 'kde-meta-kdeutils'
- 'kde-meta-kdewebdev')
-pkgver=4.11
-pkgrel=2
-arch=('any')
-url='http://www.archlinux.org/'
-license=('GPL')
-groups=('kde-meta')
-
-package_kde-meta-kdeaccessibility() {
-   pkgdesc=('Meta package for kdeaccessibility')
-   depends=('kdeaccessibility-jovie'
- 'kdeaccessibility-kaccessible'
-'kdeaccessibility-kmag'
-'kdeaccessibility-kmousetool'
-'kdeaccessibility-kmouth')
-   replaces=('kdeaccessibility')
-   conflicts=('kdeaccessibility')
-}
-
-package_kde-meta-kdeadmin() {
-   pkgdesc=('Meta package for kdeadmin')
-   depends=('kdeadmin-kcron'
-'kdeadmin-ksystemlog'
- 'kdeadmin-kuser')
-   replaces=('kdeadmin')
-   conflicts=('kdeadmin')
-}
-
-package_kde-meta-kdeartwork() {
-   pkgdesc=('Meta package for kdeartwork')
-   depends=('kdeartwork-colorschemes'
-'kdeartwork-desktopthemes'
-'kdeartwork-emoticons'
-'kdeartwork-iconthemes'
-'kdeartwork-kscreensaver'
-'kdeartwork-sounds'
-'kdeartwork-styles'
-'kdeartwork-wallpapers'
-'kdeartwork-weatherwallpapers')
-   replaces=('kdeartwork')
-   conflicts=('kdeartwork')
-}
-
-package_kde-meta-kdebase() {
-   pkgdesc=('Meta package for kdebase')
-   depends=('kdebase-dolphin'
-'kdebase-kdepasswd'
-'kdebase-kdialog'
-'kdebase-kfind'
- 'kdebase-keditbookmarks'
-'kdebase-konqueror'
- 'kdebase-konq-plugins'
-'kdebase-konsole'
-'kdebase-kwrite'
-'kdebase-plasma')
-   replaces=('kdebase')
-   conflicts=('kdebase')
-}
-
-package_kde-meta-kdeedu() {
-   pkgdesc=('Meta package for kdeedu')
-   depends=('kdeedu-blinken'
-'kdeedu-cantor'
-'kdeedu-kalgebra'
-'kdeedu-kalzium'
-'kdeedu-kanagram'
-'kdeedu-kbruch'
-'kdeedu-kgeography'
-'kdeedu-khangman'
-'kdeedu-kig'
-'kdeedu-kiten'
-'kdeedu-klettres'
-'kdeedu-kmplot'
-'kdeedu-kstars'
-'kdeedu-ktouch'
-'kdeedu-kturtle'
-'kdeedu-kwordquiz'
-'kdeedu-marble'
- 'kdeedu-pairs'
-'kdeedu-parley'
-'kdeedu-rocs'
-'kdeedu-step')
-   replaces=('kdeedu')
-   conflicts=('kdeedu')
-}
-
-package_kde-meta-kdegames() {
-   pkgdesc=('Meta package for kdegames')
-   depends=('kdegames-bomber'
-'kdegames-bovo'
-'kdegames-granatier'
-'kdegames-kajongg'
-'kdegames-kapman'
-'kdegames-katomic'
-'kdegames-kblackbox'
-'kdegames-kblocks'
-'kdegames-kbounce'
-'kdegames-kbreakout'
-'kdegames-kdiamond'
-'kdegames-kfourinline'
-'kdegames-kgoldrunner'
-'kdegames-kigo'
-'kdegames-killbots'
-'kdegames-kiriki'
-'kdegames-kjumpingcube'
-'kdegames-klines'
-'kdegames-klickety'
-'kdegames-kmahjongg'
-'kdegames-kmines'
-'kdegames-knavalbattle' 
- 'kdegames-knetwalk'
-'kdegames-kolf'
-'kdegames-kollision'
-'kdegames-konquest'
-'kdegames-kpatience'
-'kdegames-kreversi'
-'kdegames-kshisen'
-'kdegames-ksirk'
- 'kdegames-ksnakeduel'
-   

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

2013-08-24 Thread Andrea Scarpino
Date: Saturday, August 24, 2013 @ 15:01:01
  Author: andrea
Revision: 193581

upgpkg: kde-meta 4.11-3

Add kde-wallpapers to kde-meta-kdebase

Modified:
  kde-meta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 12:37:03 UTC (rev 193580)
+++ PKGBUILD2013-08-24 13:01:01 UTC (rev 193581)
@@ -19,7 +19,7 @@
  'kde-meta-kdeutils'
  'kde-meta-kdewebdev')
 pkgver=4.11
-pkgrel=2
+pkgrel=3
 arch=('any')
 url='http://www.archlinux.org/'
 license=('GPL')
@@ -71,7 +71,8 @@
  'kdebase-konq-plugins'
 'kdebase-konsole'
 'kdebase-kwrite'
-'kdebase-plasma')
+'kdebase-plasma'
+   'kde-wallpapers')
replaces=('kdebase')
conflicts=('kdebase')
 }



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

2013-08-24 Thread Andrea Scarpino
Date: Saturday, August 24, 2013 @ 14:37:03
  Author: andrea
Revision: 193580

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

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

---+
 /PKGBUILD |  128 
 extra-i686/PKGBUILD   |   64 
 extra-x86_64/PKGBUILD |   64 
 3 files changed, 128 insertions(+), 128 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-24 12:36:55 UTC (rev 193579)
+++ extra-i686/PKGBUILD 2013-08-24 12:37:03 UTC (rev 193580)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai , Ben 
-
-pkgbase=sip
-pkgname=('sip' 'python-sip' 'python2-sip')
-pkgver=4.15
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/sip/intro'
-license=('custom:"sip"')
-makedepends=('python' 'python2')
-source=("http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz";)
-md5sums=('8c1133c96c9ddec92c0ab429dec96fe6')
-
-build() {
-  cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}
-
-  cd ${pkgbase}-${pkgver}
-  python configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
-  make
-  
-  ### Python2 version ###
-  cd ../python2-${pkgbase}-${pkgver}
-  python2 configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
-  make
-}
-
-package_sip() {
-  pkgdesc="A tool that makes it easy to create Python bindings for C and C++ 
libraries"
-  depends=('glibc')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install -C sipgen
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python-sip() {
-  pkgdesc="Python 3.x SIP bindings for C and C++ libraries"
-  depends=('sip' 'python')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install -C siplib
-  
-  install -Dm644 sipconfig.py 
"${pkgdir}"/usr/lib/python3.3/site-packages/sipconfig.py
-  install -Dm644 sipdistutils.py 
"${pkgdir}"/usr/lib/python3.3/site-packages/sipdistutils.py
-  
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-sip() {
-  pkgdesc="Python 2.x SIP bindings for C and C++ libraries"
-  depends=('sip' 'python2')
-
-  cd python2-${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install -C siplib
-  
-  install -Dm644 sipconfig.py 
"${pkgdir}"/usr/lib/python2.7/site-packages/sipconfig.py
-  install -Dm644 sipdistutils.py 
"${pkgdir}"/usr/lib/python2.7/site-packages/sipdistutils.py
-  
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: sip/repos/extra-i686/PKGBUILD (from rev 193579, sip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-24 12:37:03 UTC (rev 193580)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai , Ben 
+
+pkgbase=sip
+pkgname=('sip' 'python-sip' 'python2-sip')
+pkgver=4.15.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/sip/intro'
+license=('custom:"sip"')
+makedepends=('python' 'python2')
+source=("http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz";)
+md5sums=('ec1ce361ac3618fe05359ec6f5368463')
+
+build() {
+  cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}
+
+  cd ${pkgbase}-${pkgver}
+  python configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
+  make
+  
+  ### Python2 version ###
+  cd ../python2-${pkgbase}-${pkgver}
+  python2 configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
+  make
+}
+
+package_sip() {
+  pkgdesc="A tool that makes it easy to create Python bindings for C and C++ 
libraries"
+  depends=('glibc')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install -C sipgen
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python-sip() {
+  pkgdesc="Python 3.x SIP bindings for C and C++ libraries"
+  depends=('sip' 'python')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install -C siplib
+  
+  install -Dm644 sipconfig.py 
"${pkgdir}"/usr/lib/python3.3/site-packages/sipconfig.py
+  install -Dm644 sipdistutils.py 
"${pkgdir}"/usr/lib/python3.3/site-packages/sipdistutils.py
+  
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-sip() {
+  pkgdesc="Python 2.x SIP bindings for C and C++ libraries"
+  depends=('sip' 'python2')
+
+  cd python2-${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install -C siplib
+  
+  install -Dm644 sipconfig.py 
"${pkgdir}"/usr/lib/python2.7/site-packages/sipconfig.py
+  install -Dm644 sipdistutils.py 

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

2013-08-24 Thread Andrea Scarpino
Date: Saturday, August 24, 2013 @ 14:36:55
  Author: andrea
Revision: 193579

upgpkg: sip 4.15.1-1

Upstream release

Modified:
  sip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 12:17:50 UTC (rev 193578)
+++ PKGBUILD2013-08-24 12:36:55 UTC (rev 193579)
@@ -5,14 +5,14 @@
 
 pkgbase=sip
 pkgname=('sip' 'python-sip' 'python2-sip')
-pkgver=4.15
+pkgver=4.15.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.riverbankcomputing.com/software/sip/intro'
 license=('custom:"sip"')
 makedepends=('python' 'python2')
 source=("http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz";)
-md5sums=('8c1133c96c9ddec92c0ab429dec96fe6')
+md5sums=('ec1ce361ac3618fe05359ec6f5368463')
 
 build() {
   cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}



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

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:18:44
  Author: tpowa
Revision: 96296

db-move: moved tp_smapi from [community-testing] to [community] (i686, x86_64)

Added:
  tp_smapi/repos/community-i686/PKGBUILD
(from rev 96292, tp_smapi/repos/community-testing-i686/PKGBUILD)
  tp_smapi/repos/community-i686/tp_smapi.install
(from rev 96292, tp_smapi/repos/community-testing-i686/tp_smapi.install)
  tp_smapi/repos/community-x86_64/PKGBUILD
(from rev 96292, tp_smapi/repos/community-testing-x86_64/PKGBUILD)
  tp_smapi/repos/community-x86_64/tp_smapi.install
(from rev 96292, tp_smapi/repos/community-testing-x86_64/tp_smapi.install)
Deleted:
  tp_smapi/repos/community-i686/PKGBUILD
  tp_smapi/repos/community-i686/tp_smapi.install
  tp_smapi/repos/community-testing-i686/
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-x86_64/PKGBUILD
  tp_smapi/repos/community-x86_64/tp_smapi.install

---+
 /PKGBUILD |  118 
 /tp_smapi.install |   26 +++
 community-i686/PKGBUILD   |   59 --
 community-i686/tp_smapi.install   |   13 ---
 community-x86_64/PKGBUILD |   59 --
 community-x86_64/tp_smapi.install |   13 ---
 6 files changed, 144 insertions(+), 144 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-24 12:18:43 UTC (rev 96295)
+++ community-i686/PKGBUILD 2013-08-24 12:18:44 UTC (rev 96296)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-# Contributor: xduugu
-# Contributor: nh2
-# Contributor: Steven Davidovitz 
-# Contributor: Nick B 
-# Contributor: Christof Musik 
-# Contributor: Stefan Rupp 
-# Contributor: Ignas Anikevicius 
-
-pkgname=tp_smapi
-pkgver=0.41
-pkgrel=31
-pkgdesc="Modules for ThinkPad's SMAPI functionality"
-arch=('i686' 'x86_64')
-url='https://github.com/evgeni/tp_smapi'
-license=('GPL')
-depends=('linux>=3.10' 'linux<3.11')
-makedepends=('linux-headers>=3.10' 'linux-headers<3.11')
-install="${pkgname}.install"
-source=("https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('63c683415c764568f6bf17c7eabe4752')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f "/usr/lib/modules/${_kernver}/extramodules" || 
true)
-  _kernver=$(< "${_extramodules}/version")
-
-  sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \
- -e "s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}#" Makefile
-
-  make HDAPS=1
-}
-
-package() {
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f "/usr/lib/modules/${_kernver}/extramodules" || 
true)
-  _kernver=$(< "${_extramodules}/version")
-
-  make -C "${_extramodules%/*}/${_kernver}/build" \
-INSTALL_MOD_PATH="${pkgdir}/${_extramodules%%/lib/*}" \
-M="${srcdir}/${pkgname}-${pkgver}" modules_install
-
-  cd "${pkgdir}/${_extramodules%/*}"
-  mv "${_kernver}/extra" "${_extramodules##*/}"
-  rmdir "${_kernver}"
-
-  # compress kernel modules
-  find "${pkgdir}" -name "*.ko" -exec gzip -9 {} +
-
-  # load module on startup
-  echo tp_smapi > "${srcdir}/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.conf" 
"${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf"
-
-  # update kernel version in install file
-  sed -ri "s#^(extramodules=).*\$#\1${_extramodules}#" 
"${startdir}/${pkgname}.install"
-}

Copied: tp_smapi/repos/community-i686/PKGBUILD (from rev 96292, 
tp_smapi/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-24 12:18:44 UTC (rev 96296)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.41
+pkgrel=32
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=3.10' 'linux<3.11')
+makedepends=('linux-headers>=3.10' 'linux-headers<3.11')
+install="${pkgname}.install"
+source=("https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  _kernver=${_kernver:-$(uname -r)}
+  _extramodules=$(readlink -f "/usr/lib/modules/${_kernver}/extramodules" || 
true)
+  _kernver=$(< "${_extramodules}/version")
+
+  sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \
+ -e "s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}#" Makefile
+
+  make HDAPS=1
+}
+
+package() {
+  _kernver=${_kernver:-$(uname -r)}
+  _extramodules=$(readlink -f "/

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

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:18:46
  Author: tpowa
Revision: 96297

db-move: moved vhba-module from [community-testing] to [community] (i686, 
x86_64)

Added:
  vhba-module/repos/community-i686/60-vhba.rules
(from rev 96292, vhba-module/repos/community-testing-i686/60-vhba.rules)
  vhba-module/repos/community-i686/PKGBUILD
(from rev 96292, vhba-module/repos/community-testing-i686/PKGBUILD)
  vhba-module/repos/community-i686/vhba-module.install
(from rev 96292, 
vhba-module/repos/community-testing-i686/vhba-module.install)
  vhba-module/repos/community-x86_64/60-vhba.rules
(from rev 96292, vhba-module/repos/community-testing-x86_64/60-vhba.rules)
  vhba-module/repos/community-x86_64/PKGBUILD
(from rev 96292, vhba-module/repos/community-testing-x86_64/PKGBUILD)
  vhba-module/repos/community-x86_64/vhba-module.install
(from rev 96292, 
vhba-module/repos/community-testing-x86_64/vhba-module.install)
Deleted:
  vhba-module/repos/community-i686/60-vhba.rules
  vhba-module/repos/community-i686/PKGBUILD
  vhba-module/repos/community-i686/vhba-module.install
  vhba-module/repos/community-testing-i686/
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-x86_64/60-vhba.rules
  vhba-module/repos/community-x86_64/PKGBUILD
  vhba-module/repos/community-x86_64/vhba-module.install

--+
 /60-vhba.rules   |2 
 /PKGBUILD|   80 +
 /vhba-module.install |   44 ++
 community-i686/60-vhba.rules |1 
 community-i686/PKGBUILD  |   40 
 community-i686/vhba-module.install   |   22 -
 community-x86_64/60-vhba.rules   |1 
 community-x86_64/PKGBUILD|   40 
 community-x86_64/vhba-module.install |   22 -
 9 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/60-vhba.rules
===
--- community-i686/60-vhba.rules2013-08-24 12:18:44 UTC (rev 96296)
+++ community-i686/60-vhba.rules2013-08-24 12:18:46 UTC (rev 96297)
@@ -1 +0,0 @@
-ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-i686/60-vhba.rules (from rev 96292, 
vhba-module/repos/community-testing-i686/60-vhba.rules)
===
--- community-i686/60-vhba.rules(rev 0)
+++ community-i686/60-vhba.rules2013-08-24 12:18:46 UTC (rev 96297)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-24 12:18:44 UTC (rev 96296)
+++ community-i686/PKGBUILD 2013-08-24 12:18:46 UTC (rev 96297)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif 
-# Contributor: Mateusz Herych 
-# Contributor: Charles Lindsay 
-
-pkgname=vhba-module
-pkgver=20130607
-_extramodules=extramodules-3.10-ARCH
-pkgrel=10
-pkgdesc="Kernel module that emulates SCSI devices"
-arch=('i686' 'x86_64')
-url="http://cdemu.sourceforge.net/";
-license=('GPL')
-depends=('linux>=3.10' 'linux<3.11')
-makedepends=('linux-headers')
-options=(!makeflags)
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2";
-'60-vhba.rules')
-md5sums=('92a681e4665aa85a8335d00395a61697'
- '4dc37dc348b5a2c83585829bde790dcc')
-
-build() {
-  cd $pkgname-$pkgver
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  make KDIR=/usr/lib/modules/$_kernver/build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 vhba.ko "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko"
-  install -Dm644 ../60-vhba.rules "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules"
-
-  cd $startdir
-  cp -f $install ${install}.pkg
-  true && install=${install}.pkg
-  sed -i "s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/" $install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-i686/PKGBUILD (from rev 96292, 
vhba-module/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-24 12:18:46 UTC (rev 96297)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgname=vhba-module
+pkgver=20130607
+_extramodules=extramodules-3.10-ARCH
+pkgrel=11
+pkgdesc="Kernel module that emulates SCSI devices"
+arch=('i686' 'x86_64')
+url="http://cdemu.sourceforge.net/";
+license=('GPL')
+depends=('linux>=3.10' 'linux<3.11')
+makedepends=('linux-headers')
+options=(!makeflags)
+install=$pkgname.install
+source

[arch-commits] Commit in virtualbox-modules/repos (18 files)

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:18:47
  Author: tpowa
Revision: 96298

db-move: moved virtualbox-modules from [community-testing] to [community] 
(i686, x86_64)

Added:
  virtualbox-modules/repos/community-i686/PKGBUILD
(from rev 96292, virtualbox-modules/repos/community-testing-i686/PKGBUILD)
  virtualbox-modules/repos/community-i686/build.sh
(from rev 96292, virtualbox-modules/repos/community-testing-i686/build.sh)
  virtualbox-modules/repos/community-i686/virtualbox-guest-modules.install
(from rev 96292, 
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install)
  virtualbox-modules/repos/community-i686/virtualbox-host-modules.install
(from rev 96292, 
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install)
  virtualbox-modules/repos/community-x86_64/PKGBUILD
(from rev 96292, virtualbox-modules/repos/community-testing-x86_64/PKGBUILD)
  virtualbox-modules/repos/community-x86_64/build.sh
(from rev 96292, virtualbox-modules/repos/community-testing-x86_64/build.sh)
  virtualbox-modules/repos/community-x86_64/virtualbox-guest-modules.install
(from rev 96292, 
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install)
  virtualbox-modules/repos/community-x86_64/virtualbox-host-modules.install
(from rev 96292, 
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install)
Deleted:
  virtualbox-modules/repos/community-i686/PKGBUILD
  virtualbox-modules/repos/community-i686/build.sh
  virtualbox-modules/repos/community-i686/virtualbox-guest-modules.install
  virtualbox-modules/repos/community-i686/virtualbox-host-modules.install
  virtualbox-modules/repos/community-testing-i686/
  virtualbox-modules/repos/community-testing-x86_64/
  virtualbox-modules/repos/community-x86_64/PKGBUILD
  virtualbox-modules/repos/community-x86_64/build.sh
  virtualbox-modules/repos/community-x86_64/virtualbox-guest-modules.install
  virtualbox-modules/repos/community-x86_64/virtualbox-host-modules.install

---+
 /PKGBUILD |  130 
 /build.sh |   50 +++
 /virtualbox-guest-modules.install |   42 ++
 /virtualbox-host-modules.install  |   46 +++
 community-i686/PKGBUILD   |   65 --
 community-i686/build.sh   |   25 ---
 community-i686/virtualbox-guest-modules.install   |   21 ---
 community-i686/virtualbox-host-modules.install|   23 ---
 community-x86_64/PKGBUILD |   65 --
 community-x86_64/build.sh |   25 ---
 community-x86_64/virtualbox-guest-modules.install |   21 ---
 community-x86_64/virtualbox-host-modules.install  |   23 ---
 12 files changed, 268 insertions(+), 268 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-24 12:18:46 UTC (rev 96297)
+++ community-i686/PKGBUILD 2013-08-24 12:18:47 UTC (rev 96298)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Sébastien Luttringer
-
-pkgbase=virtualbox-modules
-pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
-pkgver=4.2.16
-pkgrel=7
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux>=3.10' 'linux<3.11'
- 'linux-headers>=3.10' 'linux-headers<3.11'
- "virtualbox-host-dkms>=$pkgver"
- "virtualbox-guest-dkms>=$pkgver"
- 'expac'
- 'sed'
- 'bc')
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-3.10-ARCH
-
-build() {
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  # dkms need modification to be run as user
-  cp -r /var/lib/dkms .
-  echo "dkms_tree='$srcdir/dkms'" > dkms.conf
-  # build host modules
-  msg2 'Host modules'
-  dkms --dkmsframework dkms.conf build "vboxhost/$pkgver" -k "$_kernver"
-  # build guest modules
-  msg2 'Guest modules'
-  dkms --dkmsframework dkms.conf build "vboxguest/$pkgver" -k "$_kernver"
-}
-
-package_virtualbox-host-modules(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux>=3.10' 'linux<3.11')
-  replaces=('virtualbox-modules')
-  conflicts=('virtualbox-modules')
-  install=virtualbox-host-modules.install
-
-  cd "dkms/vboxhost/$pkgver/$_kernver/$CARCH/module"
-  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
-  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
-  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-}
-
-package_virtualbox-guest-modules(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Guest kernel modules for VirtualBox'
-  license=('GPL')
-  depends=('linux>=3.10' 'linux<3.

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

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:18:41
  Author: tpowa
Revision: 96294

db-move: moved r8168 from [community-testing] to [community] (i686, x86_64)

Added:
  r8168/repos/community-i686/PKGBUILD
(from rev 96292, r8168/repos/community-testing-i686/PKGBUILD)
  r8168/repos/community-i686/linux-3.10.patch
(from rev 96292, r8168/repos/community-testing-i686/linux-3.10.patch)
  r8168/repos/community-i686/r8168.install
(from rev 96292, r8168/repos/community-testing-i686/r8168.install)
  r8168/repos/community-x86_64/PKGBUILD
(from rev 96292, r8168/repos/community-testing-x86_64/PKGBUILD)
  r8168/repos/community-x86_64/linux-3.10.patch
(from rev 96292, r8168/repos/community-testing-x86_64/linux-3.10.patch)
  r8168/repos/community-x86_64/r8168.install
(from rev 96292, r8168/repos/community-testing-x86_64/r8168.install)
Deleted:
  r8168/repos/community-i686/PKGBUILD
  r8168/repos/community-i686/linux-3.10.patch
  r8168/repos/community-i686/r8168.install
  r8168/repos/community-testing-i686/
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-x86_64/PKGBUILD
  r8168/repos/community-x86_64/linux-3.10.patch
  r8168/repos/community-x86_64/r8168.install

---+
 /PKGBUILD |  102 +++
 /linux-3.10.patch |  118 
 /r8168.install|   34 ++
 community-i686/PKGBUILD   |   51 ---
 community-i686/linux-3.10.patch   |   59 --
 community-i686/r8168.install  |   17 -
 community-x86_64/PKGBUILD |   51 ---
 community-x86_64/linux-3.10.patch |   59 --
 community-x86_64/r8168.install|   17 -
 9 files changed, 254 insertions(+), 254 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-24 12:18:40 UTC (rev 96293)
+++ community-i686/PKGBUILD 2013-08-24 12:18:41 UTC (rev 96294)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Bob Fanger < bfanger(at)gmail >
-# Contributor: Filip , Det < nimetonmaili(at)gmail >
-
-pkgname=r8168
-pkgver=8.036.00
-pkgrel=7
-pkgdesc="A kernel module for Realtek 8168 network cards"
-url="http://www.realtek.com.tw";
-license=("GPL")
-arch=('i686' 'x86_64')
-depends=('glibc' 'linux')
-makedepends=('linux-headers')
-source=(http://r8168.googlecode.com/files/$pkgname-$pkgver.tar.bz2 
linux-3.10.patch)
-install=$pkgname.install
-
-prepare() {
-   cd "$pkgname-$pkgver"
-   patch -p0 -i "$srcdir/linux-3.10.patch"
-}
-
-build() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
-
-   cd "$pkgname-$pkgver"
-
-   # avoid using the Makefile directly -- it doesn't understand
-   # any kernel but the current.
-   make -C /usr/lib/modules/$KERNEL_RELEASE/build \
-   SUBDIRS="$srcdir/$pkgname-$pkgver/src" \
-   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
-   modules
-}
-
-package() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)")
-   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
-   msg "Kernel = $KERNEL_VERSION"
-
-   cd "$pkgname-$pkgver"
-   install -Dm644 src/$pkgname.ko 
"$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH/$pkgname.ko"
-   find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-
-   sed -i "s|extramodules-.*-ARCH|extramodules-3.$_kernver-ARCH|" 
"$startdir/$pkgname.install"
-}
-
-sha256sums=('937fd5d7d4cbfc95cf2859d8c3beb15a8536dc4e41752f7a53f2a25f07cdcd33'
-'1fb115b4d1b6b058d23322b89fad52d29748ce75b2774815e72c679a235d0e87')

Copied: r8168/repos/community-i686/PKGBUILD (from rev 96292, 
r8168/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-24 12:18:41 UTC (rev 96294)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.036.00
+pkgrel=8
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(http://r8168.googlecode.com/files/$pkgname-$pkgver.tar.bz2 
linux-3.10.patch)
+install=$pkgname.install
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -p0 -i "$srcdir/linux-3.10.patch"
+}
+
+build() {
+   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
+   KERNEL_RELEASE=$(cat 

[arch-commits] Commit in rt3562sta/repos (46 files)

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:18:43
  Author: tpowa
Revision: 96295

db-move: moved rt3562sta from [community-testing] to [community] (i686, x86_64)

Added:
  rt3562sta/repos/community-i686/PKGBUILD
(from rev 96292, rt3562sta/repos/community-testing-i686/PKGBUILD)
  rt3562sta/repos/community-i686/linux-3.8.patch
(from rev 96292, rt3562sta/repos/community-testing-i686/linux-3.8.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-WPA-mixed.patch
(from rev 96292, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-WPA-mixed.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-config.patch
(from rev 96292, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-config.patch)
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
(from rev 96292, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
(from rev 96292, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch
(from rev 96292, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch)
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
(from rev 96292, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove_date_time.patch
(from rev 96292, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove_date_time.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-return_nonvoid.patch
(from rev 96292, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-return_nonvoid.patch)
  rt3562sta/repos/community-i686/rt3562sta.install
(from rev 96292, rt3562sta/repos/community-testing-i686/rt3562sta.install)
  rt3562sta/repos/community-x86_64/PKGBUILD
(from rev 96292, rt3562sta/repos/community-testing-x86_64/PKGBUILD)
  rt3562sta/repos/community-x86_64/linux-3.8.patch
(from rev 96292, rt3562sta/repos/community-testing-x86_64/linux-3.8.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch
(from rev 96292, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-config.patch
(from rev 96292, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-config.patch)
  
rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
(from rev 96292, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
(from rev 96292, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch
(from rev 96292, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch)
  
rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
(from rev 96292, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-remove_date_time.patch
(from rev 96292, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-remove_date_time.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-return_nonvoid.patch
(from rev 96292, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-return_nonvoid.patch)
  rt3562sta/repos/community-x86_64/rt3562sta.install
(from rev 96292, rt3562sta/repos/community-testing-x86_64/rt3562sta.install)
Deleted:
  rt3562sta/repos/community-i686/PKGBUILD
  rt3562sta/repos/community-i686/linux-3.8.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-config.patch
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove_date_time.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-return_nonvoid.patch
  rt3562sta/repos/community-i686/rt3562sta.install
  rt3562sta/repos/community-testing-i686/
  rt3562sta/repos/community-testing-x86_64/
  rt3562sta/repos/community-x86_64/PKGBUILD
  rt3562sta/repos/community-x86_64/linux-3.8.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-config.patch
  
rt3562sta/repos/community-x86_64/rt3

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

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:18:40
  Author: tpowa
Revision: 96293

db-move: moved bbswitch from [community-testing] to [community] (i686, x86_64)

Added:
  bbswitch/repos/community-i686/PKGBUILD
(from rev 96292, bbswitch/repos/community-testing-i686/PKGBUILD)
  bbswitch/repos/community-i686/bbswitch.install
(from rev 96292, bbswitch/repos/community-testing-i686/bbswitch.install)
  bbswitch/repos/community-x86_64/PKGBUILD
(from rev 96292, bbswitch/repos/community-testing-x86_64/PKGBUILD)
  bbswitch/repos/community-x86_64/bbswitch.install
(from rev 96292, bbswitch/repos/community-testing-x86_64/bbswitch.install)
Deleted:
  bbswitch/repos/community-i686/PKGBUILD
  bbswitch/repos/community-i686/bbswitch.install
  bbswitch/repos/community-testing-i686/
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-x86_64/PKGBUILD
  bbswitch/repos/community-x86_64/bbswitch.install

---+
 /PKGBUILD |   64 
 /bbswitch.install |   24 +
 community-i686/PKGBUILD   |   32 --
 community-i686/bbswitch.install   |   12 --
 community-x86_64/PKGBUILD |   32 --
 community-x86_64/bbswitch.install |   12 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-24 09:07:29 UTC (rev 96292)
+++ community-i686/PKGBUILD 2013-08-24 12:18:40 UTC (rev 96293)
@@ -1,32 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: M0Rf30
-# Contributor: Samsagax 
-
-pkgname=bbswitch
-pkgver=0.7
-_extramodules=extramodules-3.10-ARCH # Don't forget to update bbswitch.install
-pkgrel=10
-pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
-arch=('i686' 'x86_64')
-url=("http://github.com/Bumblebee-Project/bbswitch";)
-license=('GPL')
-depends=('linux>=3.10' 'linux<3.11')
-makedepends=('linux-headers>=3.10' 'linux-headers<3.11')
-install=bbswitch.install
-source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
-md5sums=('b9df5ea40109ef9766448a0577c798e6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-
-  make KDIR=/usr/src/linux-${_kernver}
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-   
-  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
-  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
-}

Copied: bbswitch/repos/community-i686/PKGBUILD (from rev 96292, 
bbswitch/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-24 12:18:40 UTC (rev 96293)
@@ -0,0 +1,32 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgname=bbswitch
+pkgver=0.7
+_extramodules=extramodules-3.10-ARCH # Don't forget to update bbswitch.install
+pkgrel=11
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('i686' 'x86_64')
+url=("http://github.com/Bumblebee-Project/bbswitch";)
+license=('GPL')
+depends=('linux>=3.10' 'linux<3.11')
+makedepends=('linux-headers>=3.10' 'linux-headers<3.11')
+install=bbswitch.install
+source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
+md5sums=('b9df5ea40109ef9766448a0577c798e6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/usr/src/linux-${_kernver}
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}

Deleted: community-i686/bbswitch.install
===
--- community-i686/bbswitch.install 2013-08-24 09:07:29 UTC (rev 96292)
+++ community-i686/bbswitch.install 2013-08-24 12:18:40 UTC (rev 96293)
@@ -1,12 +0,0 @@
-post_install() {
-EXTRAMODULES='extramodules-3.10-ARCH'
-depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: bbswitch/repos/community-i686/bbswitch.install (from rev 96292, 
bbswitch/repos/community-testing-i686/bbswitch.install)
===
--- community-i686/bbswitch.install (rev 0)
+++ community-i686/bbswitch.install 2013-08-24 12:18:40 UTC (rev 96293)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-3.10-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)

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

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:17:50
  Author: tpowa
Revision: 193578

db-move: moved gettext from [testing] to [core] (i686, x86_64)

Added:
  gettext/repos/core-i686/PKGBUILD
(from rev 193577, gettext/repos/testing-i686/PKGBUILD)
  gettext/repos/core-i686/gettext.install
(from rev 193577, gettext/repos/testing-i686/gettext.install)
  gettext/repos/core-x86_64/PKGBUILD
(from rev 193577, gettext/repos/testing-x86_64/PKGBUILD)
  gettext/repos/core-x86_64/gettext.install
(from rev 193577, gettext/repos/testing-x86_64/gettext.install)
Deleted:
  gettext/repos/core-i686/PKGBUILD
  gettext/repos/core-i686/gettext.install
  gettext/repos/core-x86_64/PKGBUILD
  gettext/repos/core-x86_64/gettext.install
  gettext/repos/testing-i686/
  gettext/repos/testing-x86_64/

-+
 /PKGBUILD   |   68 ++
 /gettext.install|   44 +++
 core-i686/PKGBUILD  |   33 
 core-i686/gettext.install   |   22 -
 core-x86_64/PKGBUILD|   33 
 core-x86_64/gettext.install |   22 -
 6 files changed, 112 insertions(+), 110 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2013-08-24 12:17:24 UTC (rev 193577)
+++ core-i686/PKGBUILD  2013-08-24 12:17:50 UTC (rev 193578)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=gettext
-pkgver=0.18.3
-pkgrel=1
-pkgdesc="GNU internationalization library"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/gettext/";
-license=('GPL')
-groups=('base' 'base-devel')
-depends=('gcc-libs' 'acl' 'sh' 'glib2')
-optdepends=('cvs: for autopoint tool')
-options=(!libtool !docs)
-install=gettext.install
-source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
-md5sums=('3fa4236c41b7e837355de144210207ec'
- 'SKIP')
-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: gettext/repos/core-i686/PKGBUILD (from rev 193577, 
gettext/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2013-08-24 12:17:50 UTC (rev 193578)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:
+
+pkgname=gettext
+pkgver=0.18.3.1
+pkgrel=1
+pkgdesc="GNU internationalization library"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/gettext/";
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('gcc-libs' 'acl' 'sh' 'glib2')
+optdepends=('cvs: for autopoint tool')
+options=(!libtool !docs)
+install=gettext.install
+source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('3fc808f7d25487fc72b5759df7419e02'
+ 'SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: core-i686/gettext.install
===
--- core-i686/gettext.install   2013-08-24 12:17:24 UTC (rev 193577)
+++ core-i686/gettext.install   2013-08-24 12:17:50 UTC (rev 193578)
@@ -1,22 +0,0 @@
-infodir=/usr/share/info
-filelist=(gettext.info.gz autosprintf.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gettext/repos/core-i686/gettext.install (from rev 193577, 
gettext/repos/testing-i686/gettext.install)
===
--- core-i686/gettext.install   (rev 0)
+++ core-i686/gettext.install   2013-08-24 12:17:50 UTC (rev 193578)
@@ -0,0 +1,22 @@
+infodir=/usr/share/info
+filelist=(gettext.info.gz autosprintf.info.gz)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2013-08-24 12:17:24 UTC (rev 19

[arch-commits] Commit in linux-lts/repos (50 files)

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:17:24
  Author: tpowa
Revision: 193577

db-move: moved linux-lts from [testing] to [core] (i686, x86_64)

Added:
  linux-lts/repos/core-i686/3.0.54-ptrace-i686-build.patch
(from rev 193576, 
linux-lts/repos/testing-i686/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/core-i686/PKGBUILD
(from rev 193576, linux-lts/repos/testing-i686/PKGBUILD)
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
(from rev 193576, 
linux-lts/repos/testing-i686/change-default-console-loglevel.patch)
  linux-lts/repos/core-i686/config
(from rev 193576, linux-lts/repos/testing-i686/config)
  linux-lts/repos/core-i686/config.x86_64
(from rev 193576, linux-lts/repos/testing-i686/config.x86_64)
  linux-lts/repos/core-i686/ext4-options.patch
(from rev 193576, linux-lts/repos/testing-i686/ext4-options.patch)
  
linux-lts/repos/core-i686/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
(from rev 193576, 
linux-lts/repos/testing-i686/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch)
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
(from rev 193576, 
linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-i686/linux-lts.install
(from rev 193576, linux-lts/repos/testing-i686/linux-lts.install)
  linux-lts/repos/core-i686/linux-lts.preset
(from rev 193576, linux-lts/repos/testing-i686/linux-lts.preset)
  linux-lts/repos/core-i686/module-init-wait-3.0.patch
(from rev 193576, linux-lts/repos/testing-i686/module-init-wait-3.0.patch)
  linux-lts/repos/core-i686/module-symbol-waiting-3.0.patch
(from rev 193576, 
linux-lts/repos/testing-i686/module-symbol-waiting-3.0.patch)
  linux-lts/repos/core-x86_64/3.0.54-ptrace-i686-build.patch
(from rev 193576, 
linux-lts/repos/testing-x86_64/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/core-x86_64/PKGBUILD
(from rev 193576, linux-lts/repos/testing-x86_64/PKGBUILD)
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 193576, 
linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux-lts/repos/core-x86_64/config
(from rev 193576, linux-lts/repos/testing-x86_64/config)
  linux-lts/repos/core-x86_64/config.x86_64
(from rev 193576, linux-lts/repos/testing-x86_64/config.x86_64)
  linux-lts/repos/core-x86_64/ext4-options.patch
(from rev 193576, linux-lts/repos/testing-x86_64/ext4-options.patch)
  
linux-lts/repos/core-x86_64/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
(from rev 193576, 
linux-lts/repos/testing-x86_64/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch)
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
(from rev 193576, 
linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-x86_64/linux-lts.install
(from rev 193576, linux-lts/repos/testing-x86_64/linux-lts.install)
  linux-lts/repos/core-x86_64/linux-lts.preset
(from rev 193576, linux-lts/repos/testing-x86_64/linux-lts.preset)
  linux-lts/repos/core-x86_64/module-init-wait-3.0.patch
(from rev 193576, linux-lts/repos/testing-x86_64/module-init-wait-3.0.patch)
  linux-lts/repos/core-x86_64/module-symbol-waiting-3.0.patch
(from rev 193576, 
linux-lts/repos/testing-x86_64/module-symbol-waiting-3.0.patch)
Deleted:
  linux-lts/repos/core-i686/3.0.54-ptrace-i686-build.patch
  linux-lts/repos/core-i686/PKGBUILD
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
  linux-lts/repos/core-i686/config
  linux-lts/repos/core-i686/config.x86_64
  linux-lts/repos/core-i686/ext4-options.patch
  
linux-lts/repos/core-i686/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-i686/linux-lts.install
  linux-lts/repos/core-i686/linux-lts.preset
  linux-lts/repos/core-i686/module-init-wait-3.0.patch
  linux-lts/repos/core-i686/module-symbol-waiting-3.0.patch
  linux-lts/repos/core-x86_64/3.0.54-ptrace-i686-build.patch
  linux-lts/repos/core-x86_64/PKGBUILD
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
  linux-lts/repos/core-x86_64/config
  linux-lts/repos/core-x86_64/config.x86_64
  linux-lts/repos/core-x86_64/ext4-options.patch
  
linux-lts/repos/core-x86_64/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-x86_64/linux-lts.install
  linux-lts/repos/core-x86_64/linux-lts.preset
  linux-lts/repos/core-x86_64/module-init-wait-3.0.patch
  linux-lts/repos/core-x86_64/module-symbol-waiting-3.0.patch
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-x86_64/

--+
 /3.0.54-ptrace-i686-build.patch  | 
  82 
 /PKGBUILD  

[arch-commits] Commit in nvidia-304xx/repos (14 files)

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:16:54
  Author: tpowa
Revision: 193575

db-move: moved nvidia-304xx from [testing] to [extra] (i686, x86_64)

Added:
  nvidia-304xx/repos/extra-i686/PKGBUILD
(from rev 193572, nvidia-304xx/repos/testing-i686/PKGBUILD)
  nvidia-304xx/repos/extra-i686/nvidia-linux-3.10.patch
(from rev 193572, nvidia-304xx/repos/testing-i686/nvidia-linux-3.10.patch)
  nvidia-304xx/repos/extra-i686/nvidia.install
(from rev 193572, nvidia-304xx/repos/testing-i686/nvidia.install)
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
(from rev 193572, nvidia-304xx/repos/testing-x86_64/PKGBUILD)
  nvidia-304xx/repos/extra-x86_64/nvidia-linux-3.10.patch
(from rev 193572, nvidia-304xx/repos/testing-x86_64/nvidia-linux-3.10.patch)
  nvidia-304xx/repos/extra-x86_64/nvidia.install
(from rev 193572, nvidia-304xx/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia-304xx/repos/extra-i686/PKGBUILD
  nvidia-304xx/repos/extra-i686/nvidia-linux-3.10.patch
  nvidia-304xx/repos/extra-i686/nvidia.install
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
  nvidia-304xx/repos/extra-x86_64/nvidia-linux-3.10.patch
  nvidia-304xx/repos/extra-x86_64/nvidia.install
  nvidia-304xx/repos/testing-i686/
  nvidia-304xx/repos/testing-x86_64/

--+
 /PKGBUILD|  104 ++
 /nvidia-linux-3.10.patch | 1266 +
 /nvidia.install  |   30 
 extra-i686/PKGBUILD  |   51 -
 extra-i686/nvidia-linux-3.10.patch   |  633 
 extra-i686/nvidia.install|   15 
 extra-x86_64/PKGBUILD|   51 -
 extra-x86_64/nvidia-linux-3.10.patch |  633 
 extra-x86_64/nvidia.install  |   15 
 9 files changed, 1400 insertions(+), 1398 deletions(-)

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


[arch-commits] Commit in nvidia-304xx-utils/repos (6 files)

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:16:55
  Author: tpowa
Revision: 193576

db-move: moved nvidia-304xx-utils from [testing] to [extra] (i686, x86_64)

Added:
  nvidia-304xx-utils/repos/extra-i686/PKGBUILD
(from rev 193572, nvidia-304xx-utils/repos/testing-i686/PKGBUILD)
  nvidia-304xx-utils/repos/extra-x86_64/PKGBUILD
(from rev 193572, nvidia-304xx-utils/repos/testing-x86_64/PKGBUILD)
Deleted:
  nvidia-304xx-utils/repos/extra-i686/PKGBUILD
  nvidia-304xx-utils/repos/extra-x86_64/PKGBUILD
  nvidia-304xx-utils/repos/testing-i686/
  nvidia-304xx-utils/repos/testing-x86_64/

---+
 /PKGBUILD |  228 
 extra-i686/PKGBUILD   |  112 ---
 extra-x86_64/PKGBUILD |  112 ---
 3 files changed, 228 insertions(+), 224 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-24 12:16:54 UTC (rev 193575)
+++ extra-i686/PKGBUILD 2013-08-24 12:16:55 UTC (rev 193576)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgbase=nvidia-304xx-utils
-pkgname=('nvidia-304xx-utils' 'opencl-nvidia-304xx')
-pkgver=304.88
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/";
-license=('custom')
-options=('!strip')
-
-if [ "$CARCH" = "i686" ]; then
-_arch='x86'
-_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
-
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('f60d4aef766029c98914ed665235029a')
-elif [ "$CARCH" = "x86_64" ]; then
-_arch='x86_64'
-_pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
-
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('35e0c7d30de795cccb6b95bda991fb77')
-fi
-
-create_links() {
-# create soname links
-while read -d '' _lib; do
-_soname="$(dirname "${_lib}")/$(LC_ALL=C readelf -d "${_lib}" | sed 
-nr 's/.*Library soname: \[(.*)\].*/\1/p')"
-[[ -e "${_soname}" ]] || ln -s "$(basename "${_lib}")" "${_soname}"
-[[ -e "${_soname/.[0-9]*/}" ]] || ln -s "$(basename "${_soname}")" 
"${_soname/.[0-9]*/}"
-done < <(find "${pkgdir}" -type f -name '*.so*' -print0)
-}
-
-build() {
-cd "${srcdir}"
-sh "${_pkg}.run" --extract-only
-}
-
-package_opencl-nvidia-304xx() {
-pkgdesc="OpenCL implemention for NVIDIA, 304xx legacy branch"
-depends=('libcl' 'zlib')
-optdepends=('opencl-headers: headers necessary for OpenCL development')
-provides=('opencl-nvidia')
-conflicts=('opencl-nvidia')
- 
-cd "${srcdir}/${_pkg}"
-
-# OpenCL
-install -D -m644 nvidia.icd "${pkgdir}/etc/OpenCL/vendors/nvidia.icd"
-install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}"
-install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver}" 
-
-create_links
-}
-
-package_nvidia-304xx-utils() {
-pkgdesc="NVIDIA drivers utilities and libraries, 304xx legacy branch"
-depends=('xorg-server' 'libxvmc')
-optdepends=('gtk2: nvidia-settings'
-'pkg-config: nvidia-xconfig'
-'opencl-nvidia-304xx: OpenCL support')
-conflicts=('libgl' 'nvidia-utils')
-provides=('libgl' 'nvidia-utils')
-cd "${srcdir}/${_pkg}"
-
-# X driver
-install -D -m755 nvidia_drv.so 
"${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so"
-# GLX extension module for X
-install -D -m755 "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so.${pkgver}"
-ln -s "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so"  # X doesn't find glx 
otherwise
-# OpenGL library
-install -D -m755 "libGL.so.${pkgver}" 
"${pkgdir}/usr/lib/libGL.so.${pkgver}"
-# OpenGL core library
-install -D -m755 "libnvidia-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-glcore.so.${pkgver}"
-# XvMC
-#install -D -m644 libXvMCNVIDIA.a "${pkgdir}/usr/lib/libXvMCNVIDIA.a"
-install -D -m755 "libXvMCNVIDIA.so.${pkgver}" 
"${pkgdir}/usr/lib/libXvMCNVIDIA.so.${pkgver}"
-# VDPAU
-install -D -m755 "libvdpau_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/vdpau/libvdpau_nvidia.so.${pkgver}"
-# nvidia-tls library
-install -D -m755 "tls/libnvidia-tls.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-tls.so.${pkgver}"
-install -D -m755 "libnvidia-cfg.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-cfg.so.${pkgver}"
-
-install -D -m755 "libnvidia-ml.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-ml.so.${pkgver}"
-# CUDA
-install -D -m755 "libcuda.so.${pkgver}" 
"${pkgdir}/usr/lib/libcuda.so.${pkgver}"
-install -D -m755 "libnvcuvid.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvcuvid.so.${pkgver}"
-
-# nvidia-xconfig
-install -D -m755 nvidia-xconfig "${pkgdir}/usr/bin/nvidia-xconfig"
-install -D -m644 nvidia-xconfig.1.gz 
"${pkgdir}/usr/share/man/man1/nvidia-xconfig.1.gz

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

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:16:53
  Author: tpowa
Revision: 193574

db-move: moved nvidia from [testing] to [extra] (i686, x86_64)

Added:
  nvidia/repos/extra-i686/PKGBUILD
(from rev 193572, nvidia/repos/testing-i686/PKGBUILD)
  nvidia/repos/extra-i686/nvidia.install
(from rev 193572, nvidia/repos/testing-i686/nvidia.install)
  nvidia/repos/extra-x86_64/PKGBUILD
(from rev 193572, nvidia/repos/testing-x86_64/PKGBUILD)
  nvidia/repos/extra-x86_64/nvidia.install
(from rev 193572, nvidia/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia/repos/extra-i686/PKGBUILD
  nvidia/repos/extra-i686/nvidia.install
  nvidia/repos/extra-x86_64/PKGBUILD
  nvidia/repos/extra-x86_64/nvidia.install
  nvidia/repos/testing-i686/
  nvidia/repos/testing-x86_64/

-+
 /PKGBUILD   |   90 ++
 /nvidia.install |   36 
 extra-i686/PKGBUILD |   45 -
 extra-i686/nvidia.install   |   18 
 extra-x86_64/PKGBUILD   |   45 -
 extra-x86_64/nvidia.install |   18 
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-24 12:16:52 UTC (rev 193573)
+++ extra-i686/PKGBUILD 2013-08-24 12:16:53 UTC (rev 193574)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer : Thomas Baechler 
-
-pkgname=nvidia
-pkgver=325.15
-_extramodules=extramodules-3.10-ARCH
-pkgrel=3
-pkgdesc="NVIDIA drivers for linux"
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/";
-depends=('linux>=3.10' 'linux<3.11' "nvidia-libgl" "nvidia-utils=${pkgver}")
-makedepends=('linux-headers>=3.10' 'linux-headers<3.11')
-conflicts=('nvidia-96xx' 'nvidia-173xx')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-
-if [ "$CARCH" = "i686" ]; then
-_arch='x86'
-_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
-
source+=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums+=('528fc538584de6446384b9cec3099d6c')
-elif [ "$CARCH" = "x86_64" ]; then
-_arch='x86_64'
-   _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
-
source+=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums+=('63b2caa0cb128efa1a7808d7bddb2074')
-fi
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${srcdir}"
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}/kernel"
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package() {
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
-echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" 
"${startdir}/nvidia.install"
-gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-}

Copied: nvidia/repos/extra-i686/PKGBUILD (from rev 193572, 
nvidia/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-24 12:16:53 UTC (rev 193574)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia
+pkgver=325.15
+_extramodules=extramodules-3.10-ARCH
+pkgrel=4
+pkgdesc="NVIDIA drivers for linux"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.10' 'linux<3.11' "nvidia-libgl" "nvidia-utils=${pkgver}")
+makedepends=('linux-headers>=3.10' 'linux-headers<3.11')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source+=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums+=('528fc538584de6446384b9cec3099d6c')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+   _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+
source+=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums+=('63b2caa0cb128efa1a7808d7bddb2074')
+fi
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}/kernel"
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" 
"${startdir}/nvidia.install"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+}

Deleted: extra-i686/nvidia.install
==

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

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:16:35
  Author: tpowa
Revision: 193572

db-move: moved linux from [testing] to [core] (i686, x86_64)

Added:
  linux/repos/core-i686/3.10.6-logitech-dj.patch
(from rev 193571, linux/repos/testing-i686/3.10.6-logitech-dj.patch)
  linux/repos/core-i686/3.10.6-reset-superseed-xhci-hcd.patch
(from rev 193571, 
linux/repos/testing-i686/3.10.6-reset-superseed-xhci-hcd.patch)
  linux/repos/core-i686/PKGBUILD
(from rev 193571, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 193571, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 193571, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.3.11
(from rev 193571, linux/repos/testing-i686/config.3.11)
  linux/repos/core-i686/config.x86_64
(from rev 193571, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/config.x86_64.3.11
(from rev 193571, linux/repos/testing-i686/config.x86_64.3.11)
  linux/repos/core-i686/criu-no-expert.patch
(from rev 193571, linux/repos/testing-i686/criu-no-expert.patch)
  linux/repos/core-i686/linux.install
(from rev 193571, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 193571, linux/repos/testing-i686/linux.preset)
  linux/repos/core-x86_64/3.10.6-logitech-dj.patch
(from rev 193571, linux/repos/testing-x86_64/3.10.6-logitech-dj.patch)
  linux/repos/core-x86_64/3.10.6-reset-superseed-xhci-hcd.patch
(from rev 193571, 
linux/repos/testing-x86_64/3.10.6-reset-superseed-xhci-hcd.patch)
  linux/repos/core-x86_64/PKGBUILD
(from rev 193571, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 193571, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 193571, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.3.11
(from rev 193571, linux/repos/testing-x86_64/config.3.11)
  linux/repos/core-x86_64/config.x86_64
(from rev 193571, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/config.x86_64.3.11
(from rev 193571, linux/repos/testing-x86_64/config.x86_64.3.11)
  linux/repos/core-x86_64/criu-no-expert.patch
(from rev 193571, linux/repos/testing-x86_64/criu-no-expert.patch)
  linux/repos/core-x86_64/linux.install
(from rev 193571, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 193571, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-i686/3.10.6-logitech-dj.patch
  linux/repos/core-i686/3.10.6-reset-superseed-xhci-hcd.patch
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.3.11
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/config.x86_64.3.11
  linux/repos/core-i686/criu-no-expert.patch
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/core-x86_64/3.10.6-logitech-dj.patch
  linux/repos/core-x86_64/3.10.6-reset-superseed-xhci-hcd.patch
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.3.11
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/config.x86_64.3.11
  linux/repos/core-x86_64/criu-no-expert.patch
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/testing-i686/
  linux/repos/testing-x86_64/

---+
 /3.10.6-logitech-dj.patch |  344 
 /3.10.6-reset-superseed-xhci-hcd.patch|   48 
 /PKGBUILD |  682 +
 /change-default-console-loglevel.patch|   24 
 /config   |12680 +++
 /config.3.11  |12904 
 /config.x86_64|12280 +++
 /config.x86_64.3.11   |12508 +++
 /criu-no-expert.patch |   44 
 /linux.install|   62 
 /linux.preset |   28 
 core-i686/3.10.6-logitech-dj.patch|  172 
 core-i686/3.10.6-reset-superseed-xhci-hcd.patch   |   24 
 core-i686/PKGBUILD|  341 
 core-i686/change-default-console-loglevel.patch   |   12 
 core-i686/config  | 6340 -
 core-i686/config.3.11 | 6452 --
 core-i686/config.x86_64   | 6140 -
 core-i686/config.x86_64.3.11  | 6254 -
 core-i686/criu-no-expert.patch   

[arch-commits] Commit in lirc/repos (54 files)

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 14:16:52
  Author: tpowa
Revision: 193573

db-move: moved lirc from [testing] to [extra] (i686, x86_64)

Added:
  lirc/repos/extra-i686/PKGBUILD
(from rev 193572, lirc/repos/testing-i686/PKGBUILD)
  lirc/repos/extra-i686/irexec.service
(from rev 193572, lirc/repos/testing-i686/irexec.service)
  lirc/repos/extra-i686/kernel-2.6.39.patch
(from rev 193572, lirc/repos/testing-i686/kernel-2.6.39.patch)
  lirc/repos/extra-i686/linux-3.8.patch
(from rev 193572, lirc/repos/testing-i686/linux-3.8.patch)
  lirc/repos/extra-i686/lirc-utils.install
(from rev 193572, lirc/repos/testing-i686/lirc-utils.install)
  lirc/repos/extra-i686/lirc.install
(from rev 193572, lirc/repos/testing-i686/lirc.install)
  lirc/repos/extra-i686/lirc.logrotate
(from rev 193572, lirc/repos/testing-i686/lirc.logrotate)
  lirc/repos/extra-i686/lirc.service
(from rev 193572, lirc/repos/testing-i686/lirc.service)
  lirc/repos/extra-i686/lirc.tmpfiles
(from rev 193572, lirc/repos/testing-i686/lirc.tmpfiles)
  lirc/repos/extra-i686/lirc_atiusb-kfifo.patch
(from rev 193572, lirc/repos/testing-i686/lirc_atiusb-kfifo.patch)
  lirc/repos/extra-i686/lirc_wpc8769l.patch
(from rev 193572, lirc/repos/testing-i686/lirc_wpc8769l.patch)
  lirc/repos/extra-i686/lircd-handle-large-config.patch
(from rev 193572, lirc/repos/testing-i686/lircd-handle-large-config.patch)
  lirc/repos/extra-i686/lircm.service
(from rev 193572, lirc/repos/testing-i686/lircm.service)
  lirc/repos/extra-x86_64/PKGBUILD
(from rev 193572, lirc/repos/testing-x86_64/PKGBUILD)
  lirc/repos/extra-x86_64/irexec.service
(from rev 193572, lirc/repos/testing-x86_64/irexec.service)
  lirc/repos/extra-x86_64/kernel-2.6.39.patch
(from rev 193572, lirc/repos/testing-x86_64/kernel-2.6.39.patch)
  lirc/repos/extra-x86_64/linux-3.8.patch
(from rev 193572, lirc/repos/testing-x86_64/linux-3.8.patch)
  lirc/repos/extra-x86_64/lirc-utils.install
(from rev 193572, lirc/repos/testing-x86_64/lirc-utils.install)
  lirc/repos/extra-x86_64/lirc.install
(from rev 193572, lirc/repos/testing-x86_64/lirc.install)
  lirc/repos/extra-x86_64/lirc.logrotate
(from rev 193572, lirc/repos/testing-x86_64/lirc.logrotate)
  lirc/repos/extra-x86_64/lirc.service
(from rev 193572, lirc/repos/testing-x86_64/lirc.service)
  lirc/repos/extra-x86_64/lirc.tmpfiles
(from rev 193572, lirc/repos/testing-x86_64/lirc.tmpfiles)
  lirc/repos/extra-x86_64/lirc_atiusb-kfifo.patch
(from rev 193572, lirc/repos/testing-x86_64/lirc_atiusb-kfifo.patch)
  lirc/repos/extra-x86_64/lirc_wpc8769l.patch
(from rev 193572, lirc/repos/testing-x86_64/lirc_wpc8769l.patch)
  lirc/repos/extra-x86_64/lircd-handle-large-config.patch
(from rev 193572, lirc/repos/testing-x86_64/lircd-handle-large-config.patch)
  lirc/repos/extra-x86_64/lircm.service
(from rev 193572, lirc/repos/testing-x86_64/lircm.service)
Deleted:
  lirc/repos/extra-i686/PKGBUILD
  lirc/repos/extra-i686/irexec.service
  lirc/repos/extra-i686/kernel-2.6.39.patch
  lirc/repos/extra-i686/linux-3.8.patch
  lirc/repos/extra-i686/lirc-utils.install
  lirc/repos/extra-i686/lirc.install
  lirc/repos/extra-i686/lirc.logrotate
  lirc/repos/extra-i686/lirc.service
  lirc/repos/extra-i686/lirc.tmpfiles
  lirc/repos/extra-i686/lirc_atiusb-kfifo.patch
  lirc/repos/extra-i686/lirc_wpc8769l.patch
  lirc/repos/extra-i686/lircd-handle-large-config.patch
  lirc/repos/extra-i686/lircm.service
  lirc/repos/extra-x86_64/PKGBUILD
  lirc/repos/extra-x86_64/irexec.service
  lirc/repos/extra-x86_64/kernel-2.6.39.patch
  lirc/repos/extra-x86_64/linux-3.8.patch
  lirc/repos/extra-x86_64/lirc-utils.install
  lirc/repos/extra-x86_64/lirc.install
  lirc/repos/extra-x86_64/lirc.logrotate
  lirc/repos/extra-x86_64/lirc.service
  lirc/repos/extra-x86_64/lirc.tmpfiles
  lirc/repos/extra-x86_64/lirc_atiusb-kfifo.patch
  lirc/repos/extra-x86_64/lirc_wpc8769l.patch
  lirc/repos/extra-x86_64/lircd-handle-large-config.patch
  lirc/repos/extra-x86_64/lircm.service
  lirc/repos/testing-i686/
  lirc/repos/testing-x86_64/

--+
 /PKGBUILD|  214 +
 /irexec.service  |   22 ++
 /kernel-2.6.39.patch |  108 
 /linux-3.8.patch |  160 ++
 /lirc-utils.install  |   14 +
 /lirc.install|   32 +++
 /lirc.logrotate  |   10 +
 /lirc.service|   22 ++
 /lirc.tmpfiles   |2 
 /lirc_atiusb-kfifo.patch |   62 +++
 /lirc_wpc8769l.patch |  176 
 /lircd-handle-large-config.patch |   78 +
 /lircm.service   |   22 ++
 extra-i686/PKGBUILD   

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

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 13:39:39
  Author: tpowa
Revision: 193570

upgpkg: gummiboot 36-1

bump to latest version

Modified:
  gummiboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 08:25:38 UTC (rev 193569)
+++ PKGBUILD2013-08-24 11:39:39 UTC (rev 193570)
@@ -5,7 +5,7 @@
 # Contributor:  Mantas Mikulėnas 
 
 pkgname="gummiboot"
-pkgver="35"
+pkgver="36"
 pkgrel="1"
 pkgdesc="Simple text-mode UEFI Boot Manager"
 url="http://freedesktop.org/wiki/Software/gummiboot";
@@ -16,17 +16,20 @@
 conflicts=('gummiboot-efi')
 provides=('gummiboot-efi')
 replaces=('gummiboot-efi')
-options=('!strip')
+options=('!strip' '!makeflags')
 source=("git://anongit.freedesktop.org/${pkgname}#tag=${pkgver}"
 'loader.conf'
 'arch.conf')
 install="gummiboot.install"
+md5sums=('SKIP'
+ '6ea803e5179d623716e3be0b636de658'
+ '82bda9612e3a361a74cf8de2a0134b15')
 
 build() {
cd ${srcdir}/${pkgname}
 
./autogen.sh
-   ./configure --sysconfdir=/etc --libexecdir=/usr/lib --libdir=/usr/lib
+   ./configure --sysconfdir=/etc  --with-efi-ldsdir=/usr/lib 
--libexecdir=/usr/lib --libdir=/usr/lib

make
 }
@@ -40,6 +43,3 @@
 
make DESTDIR="${pkgdir}" install
 }
-md5sums=('SKIP'
- '6ea803e5179d623716e3be0b636de658'
- '82bda9612e3a361a74cf8de2a0134b15')



[arch-commits] Commit in gummiboot/repos (16 files)

2013-08-24 Thread Tobias Powalowski
Date: Saturday, August 24, 2013 @ 13:40:00
  Author: tpowa
Revision: 193571

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

Added:
  gummiboot/repos/testing-i686/PKGBUILD
(from rev 193570, gummiboot/trunk/PKGBUILD)
  gummiboot/repos/testing-i686/arch.conf
(from rev 193570, gummiboot/trunk/arch.conf)
  gummiboot/repos/testing-i686/gummiboot.install
(from rev 193570, gummiboot/trunk/gummiboot.install)
  gummiboot/repos/testing-i686/loader.conf
(from rev 193570, gummiboot/trunk/loader.conf)
  gummiboot/repos/testing-x86_64/PKGBUILD
(from rev 193570, gummiboot/trunk/PKGBUILD)
  gummiboot/repos/testing-x86_64/arch.conf
(from rev 193570, gummiboot/trunk/arch.conf)
  gummiboot/repos/testing-x86_64/gummiboot.install
(from rev 193570, gummiboot/trunk/gummiboot.install)
  gummiboot/repos/testing-x86_64/loader.conf
(from rev 193570, gummiboot/trunk/loader.conf)
Deleted:
  gummiboot/repos/testing-i686/PKGBUILD
  gummiboot/repos/testing-i686/arch.conf
  gummiboot/repos/testing-i686/gummiboot.install
  gummiboot/repos/testing-i686/loader.conf
  gummiboot/repos/testing-x86_64/PKGBUILD
  gummiboot/repos/testing-x86_64/arch.conf
  gummiboot/repos/testing-x86_64/gummiboot.install
  gummiboot/repos/testing-x86_64/loader.conf

--+
 /PKGBUILD|   90 +
 /arch.conf   |   14 +
 /gummiboot.install   |   26 ++
 /loader.conf |4 +
 testing-i686/PKGBUILD|   45 --
 testing-i686/arch.conf   |7 --
 testing-i686/gummiboot.install   |   13 -
 testing-i686/loader.conf |2 
 testing-x86_64/PKGBUILD  |   45 --
 testing-x86_64/arch.conf |7 --
 testing-x86_64/gummiboot.install |   13 -
 testing-x86_64/loader.conf   |2 
 12 files changed, 134 insertions(+), 134 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-08-24 11:39:39 UTC (rev 193570)
+++ testing-i686/PKGBUILD   2013-08-24 11:40:00 UTC (rev 193571)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-# Contributor: Keshav P R <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)>
-# Contributor:  Mantas Mikulėnas 
-
-pkgname="gummiboot"
-pkgver="35"
-pkgrel="1"
-pkgdesc="Simple text-mode UEFI Boot Manager"
-url="http://freedesktop.org/wiki/Software/gummiboot";
-arch=('x86_64' 'i686')
-license=('LGPL2.1')
-makedepends=('gnu-efi-libs' 'docbook-xsl' 'git')
-depends=('util-linux')
-conflicts=('gummiboot-efi')
-provides=('gummiboot-efi')
-replaces=('gummiboot-efi')
-options=('!strip')
-source=("git://anongit.freedesktop.org/${pkgname}#tag=${pkgver}"
-'loader.conf'
-'arch.conf')
-install="gummiboot.install"
-
-build() {
-   cd ${srcdir}/${pkgname}
-
-   ./autogen.sh
-   ./configure --sysconfdir=/etc --libexecdir=/usr/lib --libdir=/usr/lib
-   
-   make
-}
-
-package() {
-   ## Install gummiboot example configuration files (can go away with 
systemd's kernel-install)
-   install -D -m0644 "${srcdir}/loader.conf" 
"${pkgdir}/usr/lib/gummiboot/loader/loader.conf"
-   install -D -m0644 "${srcdir}/arch.conf" 
"${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf"
-
-   cd ${srcdir}/${pkgname}
-
-   make DESTDIR="${pkgdir}" install
-}
-md5sums=('SKIP'
- '6ea803e5179d623716e3be0b636de658'
- '82bda9612e3a361a74cf8de2a0134b15')

Copied: gummiboot/repos/testing-i686/PKGBUILD (from rev 193570, 
gummiboot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-24 11:40:00 UTC (rev 193571)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+# Contributor: Keshav P R <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)>
+# Contributor:  Mantas Mikulėnas 
+
+pkgname="gummiboot"
+pkgver="36"
+pkgrel="1"
+pkgdesc="Simple text-mode UEFI Boot Manager"
+url="http://freedesktop.org/wiki/Software/gummiboot";
+arch=('x86_64' 'i686')
+license=('LGPL2.1')
+makedepends=('gnu-efi-libs' 'docbook-xsl' 'git')
+depends=('util-linux')
+conflicts=('gummiboot-efi')
+provides=('gummiboot-efi')
+replaces=('gummiboot-efi')
+options=('!strip' '!makeflags')
+source=("git://anongit.freedesktop.org/${pkgname}#tag=${pkgver}"
+'loader.conf'
+'arch.conf')
+install="gummiboot.install"
+md5sums=('SKIP'
+ '6ea803e5179d623716e3be0b636de658'
+ '82bda9612e3a361a74cf8de2a0134b15')
+
+build() {
+   cd ${srcdir}/${pkgname}
+
+   ./autogen.sh
+   ./configure --sysconfdir=/etc  --with-efi-ldsdir=/usr/lib 
--libexecdir=/usr/lib --libdir=/usr/lib
+   
+   make
+}
+
+package() {
+   ## Install gummiboot ex

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

2013-08-24 Thread Felix Yan
Date: Saturday, August 24, 2013 @ 11:07:29
  Author: fyan
Revision: 96292

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

Added:
  zsync/repos/community-i686/
  zsync/repos/community-i686/PKGBUILD
(from rev 96291, zsync/trunk/PKGBUILD)
  zsync/repos/community-x86_64/
  zsync/repos/community-x86_64/PKGBUILD
(from rev 96291, zsync/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   31 +++
 community-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: zsync/repos/community-i686/PKGBUILD (from rev 96291, 
zsync/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-24 09:07:29 UTC (rev 96292)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Xavion 
+# Contributor: damir 
+
+pkgname=zsync
+pkgver=0.6.2
+pkgrel=2
+pkgdesc="A file transfer program that's able to connect to rsync servers"
+arch=("i686" "x86_64")
+url="http://zsync.moria.org.uk/";
+depends=("glibc")
+license=("custom:Artistic")
+#source=(http://belnet.dl.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+source=(http://${pkgname}.moria.org.uk/download/${pkgname}-${pkgver}.tar.bz2)
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  make prefix="${pkgdir}"/usr install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/common/$pkgname/COPYING"
+}
+
+sha1sums=('5e69f084c8adaad6a677b68f7388ae0f9507617a')

Copied: zsync/repos/community-x86_64/PKGBUILD (from rev 96291, 
zsync/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-08-24 09:07:29 UTC (rev 96292)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Xavion 
+# Contributor: damir 
+
+pkgname=zsync
+pkgver=0.6.2
+pkgrel=2
+pkgdesc="A file transfer program that's able to connect to rsync servers"
+arch=("i686" "x86_64")
+url="http://zsync.moria.org.uk/";
+depends=("glibc")
+license=("custom:Artistic")
+#source=(http://belnet.dl.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+source=(http://${pkgname}.moria.org.uk/download/${pkgname}-${pkgver}.tar.bz2)
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  make prefix="${pkgdir}"/usr install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/common/$pkgname/COPYING"
+}
+
+sha1sums=('5e69f084c8adaad6a677b68f7388ae0f9507617a')



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

2013-08-24 Thread Felix Yan
Date: Saturday, August 24, 2013 @ 11:06:14
  Author: fyan
Revision: 96291

upgpkg: zsync 0.6.2-2 fix license

Modified:
  zsync/trunk/PKGBUILD  (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 09:00:25 UTC (rev 96290)
+++ PKGBUILD2013-08-24 09:06:14 UTC (rev 96291)
@@ -5,12 +5,12 @@
 
 pkgname=zsync
 pkgver=0.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A file transfer program that's able to connect to rsync servers"
 arch=("i686" "x86_64")
 url="http://zsync.moria.org.uk/";
 depends=("glibc")
-license=("artistic")
+license=("custom:Artistic")
 
#source=(http://belnet.dl.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
 source=(http://${pkgname}.moria.org.uk/download/${pkgname}-${pkgver}.tar.bz2)
 
@@ -25,6 +25,7 @@
   cd "${srcdir}"/${pkgname}-${pkgver}
 
   make prefix="${pkgdir}"/usr install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/common/$pkgname/COPYING"
 }
 
 sha1sums=('5e69f084c8adaad6a677b68f7388ae0f9507617a')


Property changes on: zsync/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2013-08-24 Thread Felix Yan
Date: Saturday, August 24, 2013 @ 11:00:25
  Author: fyan
Revision: 96290

addpkg: zsync 0.6.2-1

Added:
  zsync/
  zsync/repos/
  zsync/trunk/
  zsync/trunk/PKGBUILD

--+
 PKGBUILD |   30 ++
 1 file changed, 30 insertions(+)

Added: zsync/trunk/PKGBUILD
===
--- zsync/trunk/PKGBUILD(rev 0)
+++ zsync/trunk/PKGBUILD2013-08-24 09:00:25 UTC (rev 96290)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Xavion 
+# Contributor: damir 
+
+pkgname=zsync
+pkgver=0.6.2
+pkgrel=1
+pkgdesc="A file transfer program that's able to connect to rsync servers"
+arch=("i686" "x86_64")
+url="http://zsync.moria.org.uk/";
+depends=("glibc")
+license=("artistic")
+#source=(http://belnet.dl.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+source=(http://${pkgname}.moria.org.uk/download/${pkgname}-${pkgver}.tar.bz2)
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  make prefix="${pkgdir}"/usr install
+}
+
+sha1sums=('5e69f084c8adaad6a677b68f7388ae0f9507617a')



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

2013-08-24 Thread Andreas Radke
Date: Saturday, August 24, 2013 @ 10:25:14
  Author: andyrtr
Revision: 193568

upgpkg: libwpd 0.9.9-1

upstream update 0.9.9

Modified:
  libwpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 08:12:29 UTC (rev 193567)
+++ PKGBUILD2013-08-24 08:25:14 UTC (rev 193568)
@@ -2,7 +2,7 @@
 # Maintainer: AndyRTR 
 
 pkgname=libwpd
-pkgver=0.9.6
+pkgver=0.9.9
 pkgrel=1
 pkgdesc="Library for importing WordPerfect (tm) documents"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('libgsf>=1.14.26')
 options=('!libtool' '!emptydirs')
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-md5sums=('63f476b892bf783072854b98d2fc4fa2')
+md5sums=('6b74a863c957563924546e16cc833591')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



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

2013-08-24 Thread Andreas Radke
Date: Saturday, August 24, 2013 @ 10:25:38
  Author: andyrtr
Revision: 193569

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

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

---+
 /PKGBUILD |   52 
 extra-i686/PKGBUILD   |   26 
 extra-x86_64/PKGBUILD |   26 
 3 files changed, 52 insertions(+), 52 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-24 08:25:14 UTC (rev 193568)
+++ extra-i686/PKGBUILD 2013-08-24 08:25:38 UTC (rev 193569)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-pkgname=libwpd
-pkgver=0.9.6
-pkgrel=1
-pkgdesc="Library for importing WordPerfect (tm) documents"
-arch=('i686' 'x86_64')
-url="http://libwpd.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'zlib')
-makedepends=('libgsf>=1.14.26')
-options=('!libtool' '!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-md5sums=('63f476b892bf783072854b98d2fc4fa2')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libwpd/repos/extra-i686/PKGBUILD (from rev 193568, 
libwpd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-24 08:25:38 UTC (rev 193569)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: AndyRTR 
+
+pkgname=libwpd
+pkgver=0.9.9
+pkgrel=1
+pkgdesc="Library for importing WordPerfect (tm) documents"
+arch=('i686' 'x86_64')
+url="http://libwpd.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'zlib')
+makedepends=('libgsf>=1.14.26')
+options=('!libtool' '!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.xz)
+md5sums=('6b74a863c957563924546e16cc833591')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-24 08:25:14 UTC (rev 193568)
+++ extra-x86_64/PKGBUILD   2013-08-24 08:25:38 UTC (rev 193569)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-pkgname=libwpd
-pkgver=0.9.6
-pkgrel=1
-pkgdesc="Library for importing WordPerfect (tm) documents"
-arch=('i686' 'x86_64')
-url="http://libwpd.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'zlib')
-makedepends=('libgsf>=1.14.26')
-options=('!libtool' '!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-md5sums=('63f476b892bf783072854b98d2fc4fa2')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libwpd/repos/extra-x86_64/PKGBUILD (from rev 193568, 
libwpd/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-08-24 08:25:38 UTC (rev 193569)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: AndyRTR 
+
+pkgname=libwpd
+pkgver=0.9.9
+pkgrel=1
+pkgdesc="Library for importing WordPerfect (tm) documents"
+arch=('i686' 'x86_64')
+url="http://libwpd.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'zlib')
+makedepends=('libgsf>=1.14.26')
+options=('!libtool' '!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.xz)
+md5sums=('6b74a863c957563924546e16cc833591')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2013-08-24 Thread Andreas Radke
Date: Saturday, August 24, 2013 @ 10:12:15
  Author: andyrtr
Revision: 193566

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

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

---+
 /PKGBUILD |   64 
 extra-i686/PKGBUILD   |   32 
 extra-x86_64/PKGBUILD |   32 
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-24 08:11:52 UTC (rev 193565)
+++ extra-i686/PKGBUILD 2013-08-24 08:12:15 UTC (rev 193566)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: Aaron Griffin 
-
-pkgname=lftp
-pkgver=4.4.8
-pkgrel=1
-pkgdesc="Sophisticated command line based FTP client"
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh')
-optdepends=('perl: needed for convert-netscape-cookies and verify-file')
-url="http://lftp.yar.ru/";
-backup=('etc/lftp.conf')
-source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 )
-md5sums=('7140263fbe12f17f74183cf065a7d381')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---with-gnutls \
---without-openssl \
---without-included-regex \
---disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/lib
-}

Copied: lftp/repos/extra-i686/PKGBUILD (from rev 193565, lftp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-24 08:12:15 UTC (rev 193566)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Aaron Griffin 
+
+pkgname=lftp
+pkgver=4.4.9
+pkgrel=1
+pkgdesc="Sophisticated command line based FTP client"
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh')
+optdepends=('perl: needed for convert-netscape-cookies and verify-file')
+url="http://lftp.yar.ru/";
+backup=('etc/lftp.conf')
+source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 )
+md5sums=('f942d632d71b7bf35dca2e75a8432b83')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--with-gnutls \
+--without-openssl \
+--without-included-regex \
+--disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -rf ${pkgdir}/usr/lib
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-24 08:11:52 UTC (rev 193565)
+++ extra-x86_64/PKGBUILD   2013-08-24 08:12:15 UTC (rev 193566)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: Aaron Griffin 
-
-pkgname=lftp
-pkgver=4.4.8
-pkgrel=1
-pkgdesc="Sophisticated command line based FTP client"
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh')
-optdepends=('perl: needed for convert-netscape-cookies and verify-file')
-url="http://lftp.yar.ru/";
-backup=('etc/lftp.conf')
-source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 )
-md5sums=('7140263fbe12f17f74183cf065a7d381')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---with-gnutls \
---without-openssl \
---without-included-regex \
---disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/lib
-}

Copied: lftp/repos/extra-x86_64/PKGBUILD (from rev 193565, lftp/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-08-24 08:12:15 UTC (rev 193566)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Aaron Griffin 
+
+pkgname=lftp
+pkgver=4.4.9
+pkgrel=1
+pkgdesc="Sophisticated command line based FTP client"
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh')
+optdepends=('perl: needed for convert-netscape-cookies and verify-file')
+url="http://lftp.yar.ru/";
+backup=('etc/lftp.conf')
+source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 )
+md5sums=('f942d632d71b7bf35dca2e75a8432b83')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--with-gnutls \
+--without-openssl \
+--without-included-regex \
+--disable-static
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkg

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

2013-08-24 Thread Andreas Radke
Date: Saturday, August 24, 2013 @ 10:11:52
  Author: andyrtr
Revision: 193565

upgpkg: lftp 4.4.9-1

upstream update 4.4.9

Modified:
  lftp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 05:33:50 UTC (rev 193564)
+++ PKGBUILD2013-08-24 08:11:52 UTC (rev 193565)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=lftp
-pkgver=4.4.8
+pkgver=4.4.9
 pkgrel=1
 pkgdesc="Sophisticated command line based FTP client"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url="http://lftp.yar.ru/";
 backup=('etc/lftp.conf')
 source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 )
-md5sums=('7140263fbe12f17f74183cf065a7d381')
+md5sums=('f942d632d71b7bf35dca2e75a8432b83')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2013-08-24 Thread Thorsten Töpper
Date: Saturday, August 24, 2013 @ 09:44:52
  Author: ttoepper
Revision: 96288

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

Added:
  pragha/repos/community-i686/PKGBUILD
(from rev 96287, pragha/trunk/PKGBUILD)
  pragha/repos/community-i686/pragha.install
(from rev 96287, pragha/trunk/pragha.install)
  pragha/repos/community-x86_64/PKGBUILD
(from rev 96287, pragha/trunk/PKGBUILD)
  pragha/repos/community-x86_64/pragha.install
(from rev 96287, pragha/trunk/pragha.install)
Deleted:
  pragha/repos/community-i686/PKGBUILD
  pragha/repos/community-i686/pragha.install
  pragha/repos/community-x86_64/PKGBUILD
  pragha/repos/community-x86_64/pragha.install

-+
 /PKGBUILD   |  100 ++
 /pragha.install |   20 +++
 community-i686/PKGBUILD |   50 ---
 community-i686/pragha.install   |   10 ---
 community-x86_64/PKGBUILD   |   50 ---
 community-x86_64/pragha.install |   10 ---
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-24 07:44:47 UTC (rev 96287)
+++ community-i686/PKGBUILD 2013-08-24 07:44:52 UTC (rev 96288)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: J0k3r 
-# Contributor: Alois Nespor 
-# Contributor: JerichoKru   
-
-pkgname=pragha
-pkgver=1.1.2
-pkgrel=2
-pkgdesc="A lightweight GTK+ music manager - fork of Consonance Music Manager."
-arch=('i686' 'x86_64')
-url="http://pragha.wikispaces.com/";
-license=('GPL3')
-depends=('libnotify' 'libcdio-paranoia' 'gst-plugins-base'
- 'taglib' 'hicolor-icon-theme'  'gtk2'
- 'dbus-glib' 'sqlite' 'desktop-file-utils'
- 'libclastfm')
-optdepends=('notification-daemon: OSD notification'
-'gst-plugins-good: A collection of gstreamer codecs'
-'gst-plugins-bad: A collection of gstreamer codecs'
-'gst-plugins-ugly: A collection of gstreamer codecs')
-makedepends=('intltool')
-replaces=('dissonance')
-install=pragha.install
-source=("http://dissonance.googlecode.com/files/pragha-$pkgver.tar.bz2";)
-sha1sums=('3e6456275a216110bd6942b2dc19b1120f4d14e5')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  LIBS+="-ldbus-glib-1"  \
-./configure --prefix=/usr \
---with-gstreamer=1.0 \
-CPPFLAGS="-DHAVE_PARANOIA_NEW_INCLUDES"
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-
-  install -m 644 "data/$pkgname.desktop" "$pkgdir/usr/share/applications"
-  install -d "$pkgdir/usr/share/pixmaps"
-  install -m 644 "data/$pkgname.png" "$pkgdir/usr/share/pixmaps/"
-  install -m 644 "data/$pkgname.1" "$pkgdir/usr/share/man/man1/"
-
-}
-
-# vim:ts=2:sw=2:expandtab
-

Copied: pragha/repos/community-i686/PKGBUILD (from rev 96287, 
pragha/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-24 07:44:52 UTC (rev 96288)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Thorsten Töpper 
+# Contributor: J0k3r 
+# Contributor: Alois Nespor 
+# Contributor: JerichoKru   
+
+pkgname=pragha
+pkgver=1.1.2.1
+pkgrel=1
+pkgdesc="A lightweight GTK+ music manager - fork of Consonance Music Manager."
+arch=('i686' 'x86_64')
+url="http://pragha.wikispaces.com/";
+license=('GPL3')
+depends=('libnotify' 'libcdio-paranoia' 'gst-plugins-base'
+ 'taglib' 'hicolor-icon-theme'  'gtk2'
+ 'dbus-glib' 'sqlite' 'desktop-file-utils'
+ 'libclastfm')
+optdepends=('notification-daemon: OSD notification'
+'gst-plugins-good: A collection of gstreamer codecs'
+'gst-plugins-bad: A collection of gstreamer codecs'
+'gst-plugins-ugly: A collection of gstreamer codecs')
+makedepends=('intltool')
+replaces=('dissonance')
+install=pragha.install
+source=("http://dissonance.googlecode.com/files/pragha-$pkgver.tar.bz2";)
+sha1sums=('f8fe9f1f6fa89b6d9657dedad26a90db494b200b')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  LIBS+="-ldbus-glib-1"  \
+./configure --prefix=/usr \
+--with-gstreamer=1.0 \
+CPPFLAGS="-DHAVE_PARANOIA_NEW_INCLUDES"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+
+  install -m 644 "data/$pkgname.desktop" "$pkgdir/usr/share/applications"
+  install -d "$pkgdir/usr/share/pixmaps"
+  install -m 644 "data/$pkgname.png" "$pkgdir/usr/share/pixmaps/"
+  install -m 644 "data/$pkgname.1" "$pkgdir/usr/share/man/man1/"
+
+}
+
+# vim:ts=2:sw=2:expandtab
+

Deleted: community-i686/pragha.install
===
--- community-i686/pragha.install   2013-08-24 07:44:47 UTC (rev 96287)
+++ community-i686/pragha.insta

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

2013-08-24 Thread Thorsten Töpper
Date: Saturday, August 24, 2013 @ 09:44:47
  Author: ttoepper
Revision: 96287

upgpkg: pragha 1.1.2.1-1

Modified:
  pragha/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 07:42:23 UTC (rev 96286)
+++ PKGBUILD2013-08-24 07:44:47 UTC (rev 96287)
@@ -6,7 +6,7 @@
 
 pkgname=pragha
 pkgver=1.1.2.1
-pkgrel=2
+pkgrel=1
 pkgdesc="A lightweight GTK+ music manager - fork of Consonance Music Manager."
 arch=('i686' 'x86_64')
 url="http://pragha.wikispaces.com/";



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

2013-08-24 Thread Thorsten Töpper
Date: Saturday, August 24, 2013 @ 09:42:23
  Author: ttoepper
Revision: 96286

upgpkg: pragha 1.1.2.1-2

Modified:
  pragha/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 02:03:53 UTC (rev 96285)
+++ PKGBUILD2013-08-24 07:42:23 UTC (rev 96286)
@@ -5,7 +5,7 @@
 # Contributor: JerichoKru   
 
 pkgname=pragha
-pkgver=1.1.2
+pkgver=1.1.2.1
 pkgrel=2
 pkgdesc="A lightweight GTK+ music manager - fork of Consonance Music Manager."
 arch=('i686' 'x86_64')
@@ -23,7 +23,7 @@
 replaces=('dissonance')
 install=pragha.install
 source=("http://dissonance.googlecode.com/files/pragha-$pkgver.tar.bz2";)
-sha1sums=('3e6456275a216110bd6942b2dc19b1120f4d14e5')
+sha1sums=('f8fe9f1f6fa89b6d9657dedad26a90db494b200b')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"