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

2013-08-18 Thread Allan McRae
Date: Sunday, August 18, 2013 @ 08:22:07
  Author: allan
Revision: 193182

upgpkg: libbsd 0.6.0-1

upstream update

Modified:
  libbsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 03:16:46 UTC (rev 193181)
+++ PKGBUILD2013-08-18 06:22:07 UTC (rev 193182)
@@ -3,28 +3,18 @@
 # Contributor: Gerardo Exequiel Pozzi vmlinuz...@yahoo.com.ar
 
 pkgname=libbsd
-pkgver=0.5.2
-pkgrel=2
+pkgver=0.6.0
+pkgrel=1
 pkgdesc=Provides useful functions commonly found on BSD systems like 
strlcpy()
 arch=('i686' 'x86_64')
 url=http://libbsd.freedesktop.org;
 license=('custom')
 depends=('glibc')
 options=('!libtool')
-source=(http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz{,.asc}
-spt.patch)
-md5sums=('be8b2e0dc4614699834c49693574fd1a'
- 'SKIP'
- '56236fb72c8ec6cbdbd0daa5f404bccb')
+source=(http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz{,.asc})
+md5sums=('f6c75f0a9818e323a589bcbd560a0eb4'
+ 'SKIP')
 
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Paper over a firefox crash
-  # http://lists.freedesktop.org/archives/libbsd/2013-June/85.html
-  patch -Np1 -i ../spt.patch
-}
-
 build() {
   cd $pkgname-$pkgver
 



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

2013-08-18 Thread Allan McRae
Date: Sunday, August 18, 2013 @ 08:23:03
  Author: allan
Revision: 193183

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

Added:
  libbsd/repos/testing-i686/
  libbsd/repos/testing-i686/PKGBUILD
(from rev 193182, libbsd/trunk/PKGBUILD)
  libbsd/repos/testing-i686/spt.patch
(from rev 193182, libbsd/trunk/spt.patch)
  libbsd/repos/testing-x86_64/
  libbsd/repos/testing-x86_64/PKGBUILD
(from rev 193182, libbsd/trunk/PKGBUILD)
  libbsd/repos/testing-x86_64/spt.patch
(from rev 193182, libbsd/trunk/spt.patch)

--+
 testing-i686/PKGBUILD|   38 ++
 testing-i686/spt.patch   |   50 +
 testing-x86_64/PKGBUILD  |   38 ++
 testing-x86_64/spt.patch |   50 +
 4 files changed, 176 insertions(+)

Copied: libbsd/repos/testing-i686/PKGBUILD (from rev 193182, 
libbsd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-18 06:23:03 UTC (rev 193183)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Gerardo Exequiel Pozzi vmlinuz...@yahoo.com.ar
+
+pkgname=libbsd
+pkgver=0.6.0
+pkgrel=1
+pkgdesc=Provides useful functions commonly found on BSD systems like 
strlcpy()
+arch=('i686' 'x86_64')
+url=http://libbsd.freedesktop.org;
+license=('custom')
+depends=('glibc')
+options=('!libtool')
+source=(http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz{,.asc})
+md5sums=('f6c75f0a9818e323a589bcbd560a0eb4'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libbsd/repos/testing-i686/spt.patch (from rev 193182, 
libbsd/trunk/spt.patch)
===
--- testing-i686/spt.patch  (rev 0)
+++ testing-i686/spt.patch  2013-08-18 06:23:03 UTC (rev 193183)
@@ -0,0 +1,50 @@
+diff -u -r libbsd-0.5.2-orig/src/setproctitle.c libbsd-0.5.2/src/setproctitle.c
+--- libbsd-0.5.2-orig/src/setproctitle.c   2013-06-08 18:26:04.0 
+0200
 libbsd-0.5.2/src/setproctitle.c2013-06-18 02:35:59.441393418 +0200
+@@ -86,7 +86,7 @@
+   if (environ != envp)
+   return 0;
+ 
+-  /* Make a copy of the old environ array of pointers, in case
++  /* Make a deep copy of the old environ array of pointers, in case
+* clearenv() or setenv() is implemented to free the internal
+* environ array, because we will need to access the old environ
+* contents to make the new copy. */
+@@ -94,11 +94,13 @@
+   envcopy = malloc(envsize);
+   if (envcopy == NULL)
+   return errno;
+-  memcpy(envcopy, envp, envsize);
++  for (i = 0; envp[i]; i++) envcopy[i] = strdup(envp[i]);
++  envcopy[i] = NULL;
+ 
+   error = spt_clearenv();
+   if (error) {
+   environ = envp;
++  for(i = 0; envcopy[i]; i++) free(envcopy[i]);
+   free(envcopy);
+   return error;
+   }
+@@ -116,18 +118,20 @@
+   if (error) {
+ #ifdef HAVE_CLEARENV
+   /* Because the old environ might not be available
+-   * anymore we will make do with the shallow copy. */
++   * anymore we will make do with the deep copy. */
+   environ = envcopy;
+ #else
+   environ = envp;
++  for(i = 0; envcopy[i]; i++) free(envcopy[i]);
+   free(envcopy);
+ #endif
+   return error;
+   }
+   }
+ 
+-  /* Dispose of the shallow copy, now that we've finished transfering
++  /* Dispose of the deep copy, now that we've finished transfering
+* the old environment. */
++  for(i = 0; envcopy[i]; i++) free(envcopy[i]);
+   free(envcopy);
+ 
+   return 0;

Copied: libbsd/repos/testing-x86_64/PKGBUILD (from rev 193182, 
libbsd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-08-18 06:23:03 UTC (rev 193183)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Gerardo Exequiel Pozzi vmlinuz...@yahoo.com.ar
+
+pkgname=libbsd
+pkgver=0.6.0
+pkgrel=1
+pkgdesc=Provides useful functions commonly found on BSD systems like 
strlcpy()
+arch=('i686' 'x86_64')
+url=http://libbsd.freedesktop.org;
+license=('custom')
+depends=('glibc')
+options=('!libtool')

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

2013-08-18 Thread Thorsten Töpper
Date: Sunday, August 18, 2013 @ 10:58:15
  Author: ttoepper
Revision: 95881

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

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

---+
 /PKGBUILD |   78 
 /mksh.install |   18 +
 community-i686/PKGBUILD   |   38 ---
 community-i686/mksh.install   |9 
 community-x86_64/PKGBUILD |   38 ---
 community-x86_64/mksh.install |9 
 6 files changed, 96 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-18 08:58:10 UTC (rev 95880)
+++ community-i686/PKGBUILD 2013-08-18 08:58:15 UTC (rev 95881)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
-# Contributor: Daniel Hommel dhom...@gmail.com
-
-pkgname=mksh
-pkgver=R48
-pkgrel=1
-pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
-url='https://www.mirbsd.org/mksh.htm'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('gcc-libs')
-install=mksh.install
-source=(https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$pkgver.tgz;
-'https://www.mirbsd.org/TaC-mksh.txt')
-md5sums=('f714fbe2caf2bbcc592a97515ac2fda5'
- '0601617f19e1c0423cbdb8599e16eec3')
-
-check() {
-  cd $srcdir/$pkgname
-  ./test.sh
-}
-
-build() {
-  cd $srcdir/$pkgname
-
-  sh Build.sh -r -c lto
-}
-
-package() {
-  cd $srcdir/$pkgname
-  install -D -m 755 mksh $pkgdir/usr/bin/mksh
-  install -D -m 644 mksh.1 $pkgdir/usr/share/man/man1/mksh.1
-  install -D -m 644 dot.mkshrc $pkgdir/etc/skel/.mkshrc
-  install -D -m 644 $srcdir/TaC-mksh.txt 
$pkgdir/usr/share/licenses/mksh/TaC-mksh.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mksh/repos/community-i686/PKGBUILD (from rev 95880, mksh/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-18 08:58:15 UTC (rev 95881)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
+# Contributor: Daniel Hommel dhom...@gmail.com
+
+pkgname=mksh
+_pkgver=R48b
+pkgver=48.1
+pkgrel=1
+pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
+url='https://www.mirbsd.org/mksh.htm'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('gcc-libs')
+install=mksh.install
+source=(https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$_pkgver.tgz;
+'https://www.mirbsd.org/TaC-mksh.txt')
+md5sums=('ab9baa6b5a4de9d0e6a3ce9957c18da0'
+ '0601617f19e1c0423cbdb8599e16eec3')
+
+check() {
+  cd $srcdir/$pkgname
+  ./test.sh
+}
+
+build() {
+  cd $srcdir/$pkgname
+
+  sh Build.sh -r -c lto
+}
+
+package() {
+  cd $srcdir/$pkgname
+  install -D -m 755 mksh $pkgdir/usr/bin/mksh
+  install -D -m 644 mksh.1 $pkgdir/usr/share/man/man1/mksh.1
+  install -D -m 644 dot.mkshrc $pkgdir/etc/skel/.mkshrc
+  install -D -m 644 $srcdir/TaC-mksh.txt 
$pkgdir/usr/share/licenses/mksh/TaC-mksh.txt
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/mksh.install
===
--- community-i686/mksh.install 2013-08-18 08:58:10 UTC (rev 95880)
+++ community-i686/mksh.install 2013-08-18 08:58:15 UTC (rev 95881)
@@ -1,9 +0,0 @@
-post_install() {
-  grep -x /bin/mksh /etc/shells /dev/null || echo /bin/mksh /etc/shells
-}
-
-post_remove() {
-  sed -i /^\/bin\/mksh$/d /etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mksh/repos/community-i686/mksh.install (from rev 95880, 
mksh/trunk/mksh.install)
===
--- community-i686/mksh.install (rev 0)
+++ community-i686/mksh.install 2013-08-18 08:58:15 UTC (rev 95881)
@@ -0,0 +1,9 @@
+post_install() {
+  grep -x /bin/mksh /etc/shells /dev/null || echo /bin/mksh /etc/shells
+}
+
+post_remove() {
+  sed -i /^\/bin\/mksh$/d /etc/shells
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-18 08:58:10 UTC (rev 95880)
+++ community-x86_64/PKGBUILD   2013-08-18 08:58:15 UTC (rev 95881)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
-# Contributor: Daniel Hommel dhom...@gmail.com
-
-pkgname=mksh
-pkgver=R48

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

2013-08-18 Thread Thorsten Töpper
Date: Sunday, August 18, 2013 @ 10:58:10
  Author: ttoepper
Revision: 95880

upgpkg: mksh 48.1-1 (R48b)

*  Introduction of a _pkgver as pacman recognizes 48b as a downgrade.

Modified:
  mksh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 05:35:59 UTC (rev 95879)
+++ PKGBUILD2013-08-18 08:58:10 UTC (rev 95880)
@@ -3,7 +3,8 @@
 # Contributor: Daniel Hommel dhom...@gmail.com
 
 pkgname=mksh
-pkgver=R48
+_pkgver=R48b
+pkgver=48.1
 pkgrel=1
 pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
 url='https://www.mirbsd.org/mksh.htm'
@@ -11,9 +12,9 @@
 arch=('i686' 'x86_64')
 depends=('gcc-libs')
 install=mksh.install
-source=(https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$pkgver.tgz;
+source=(https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$_pkgver.tgz;
 'https://www.mirbsd.org/TaC-mksh.txt')
-md5sums=('f714fbe2caf2bbcc592a97515ac2fda5'
+md5sums=('ab9baa6b5a4de9d0e6a3ce9957c18da0'
  '0601617f19e1c0423cbdb8599e16eec3')
 
 check() {



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

2013-08-18 Thread Andreas Radke
Date: Sunday, August 18, 2013 @ 11:39:25
  Author: andyrtr
Revision: 193185

clarify licenses

Modified:
  hyphen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 08:13:38 UTC (rev 193184)
+++ PKGBUILD2013-08-18 09:39:25 UTC (rev 193185)
@@ -7,7 +7,7 @@
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://hunspell.sf.net;
-license=('GPL' 'LGPL' 'MPL')
+license=('GPL2' 'LGPL2.1' 'MPL')
 makedepends=('glibc' 'perl')
 options=('!libtool')
 source=(http://downloads.sourceforge.net/hunspell/${pkgname}-${pkgver}.tar.gz)



[arch-commits] Commit in (cream)

2013-08-18 Thread Jelle van der Waa
Date: Sunday, August 18, 2013 @ 12:02:49
  Author: jelle
Revision: 95882

removing broke package

Deleted:
  cream/



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

2013-08-18 Thread Jelle van der Waa
Date: Sunday, August 18, 2013 @ 12:05:25
  Author: jelle
Revision: 95883

 FS#35723 - [impressive] optdepends on an AUR package pdftk 

Modified:
  impressive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 10:02:49 UTC (rev 95882)
+++ PKGBUILD2013-08-18 10:05:25 UTC (rev 95883)
@@ -12,8 +12,7 @@
 url='http://impressive.sourceforge.net'
 license=('GPL2')
 depends=('python2-pygame' 'python2-opengl' 'python2-imaging' 'ghostscript')
-optdepends=('pdftk: for retrieving PDF metadata (page titles, hyperlinks)'
-'xdg-utils: for starting web or e-mail hyperlinks from PDF 
documents'
+optdepends=('xdg-utils: for starting web or e-mail hyperlinks from PDF 
documents'
 'mplayer: for sound and video playback')
 provides=('keyjnote=0.10.3')
 conflicts=('keyjnote')



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

2013-08-18 Thread Jelle van der Waa
Date: Sunday, August 18, 2013 @ 12:15:13
  Author: jelle
Revision: 95884

upgpkg: impressive 0.10.3-6

fix optdepends array

Modified:
  impressive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 10:05:25 UTC (rev 95883)
+++ PKGBUILD2013-08-18 10:15:13 UTC (rev 95884)
@@ -6,7 +6,7 @@
 
 pkgname=impressive
 pkgver=0.10.3
-pkgrel=5
+pkgrel=6
 pkgdesc='A fancy PDF presentation program (previously known as KeyJNote).'
 arch=('any')
 url='http://impressive.sourceforge.net'



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

2013-08-18 Thread Jelle van der Waa
Date: Sunday, August 18, 2013 @ 12:15:40
  Author: jelle
Revision: 95885

archrelease: copy trunk to community-any

Added:
  impressive/repos/community-any/PKGBUILD
(from rev 95884, impressive/trunk/PKGBUILD)
Deleted:
  impressive/repos/community-any/PKGBUILD

--+
 PKGBUILD |   83 ++---
 1 file changed, 41 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-18 10:15:13 UTC (rev 95884)
+++ PKGBUILD2013-08-18 10:15:40 UTC (rev 95885)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Geoffroy Carrier gcarr...@aur.archlinux.org
-# Contributor: G_Syme demichan(at)mail(dot)upb(dot)de
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=impressive
-pkgver=0.10.3
-pkgrel=5
-pkgdesc='A fancy PDF presentation program (previously known as KeyJNote).'
-arch=('any')
-url='http://impressive.sourceforge.net'
-license=('GPL2')
-depends=('python2-pygame' 'python2-opengl' 'python2-imaging' 'ghostscript')
-optdepends=('pdftk: for retrieving PDF metadata (page titles, hyperlinks)'
-'xdg-utils: for starting web or e-mail hyperlinks from PDF 
documents'
-'mplayer: for sound and video playback')
-provides=('keyjnote=0.10.3')
-conflicts=('keyjnote')
-replaces=('keyjnote')
-source=(http://downloads.sourceforge.net/${pkgname}/Impressive-${pkgver}.tar.gz)
-sha256sums=('bb4865376db0df3fe307b5f60bddc2bbaf18d2ccb099b2d51bf1723dd94af95e')
-
-build() {
-  cd ${srcdir}/Impressive-${pkgver}
-
-# python2 fix
-  for file in $(find . -name '*.py' -print); do
-  sed -i 's_#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-  sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-  done
-}
-
-package() {
-  cd ${srcdir}/Impressive-${pkgver}
-
-  install -d -m755 ${pkgdir}/usr/{bin,share/{doc/${pkgname},man/man1}}
-  install -m755 ${pkgname}.py ${pkgdir}/usr/bin/${pkgname}
-  ln -s ${pkgname} ${pkgdir}/usr/bin/keyjnote
-  install -m644 ${pkgname}.html demo.pdf changelog.txt 
${pkgdir}/usr/share/doc/${pkgname}/
-  install -m644 ${pkgname}.1 ${pkgdir}/usr/share/man/man1/
-}

Copied: impressive/repos/community-any/PKGBUILD (from rev 95884, 
impressive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-18 10:15:40 UTC (rev 95885)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Geoffroy Carrier gcarr...@aur.archlinux.org
+# Contributor: G_Syme demichan(at)mail(dot)upb(dot)de
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=impressive
+pkgver=0.10.3
+pkgrel=6
+pkgdesc='A fancy PDF presentation program (previously known as KeyJNote).'
+arch=('any')
+url='http://impressive.sourceforge.net'
+license=('GPL2')
+depends=('python2-pygame' 'python2-opengl' 'python2-imaging' 'ghostscript')
+optdepends=('xdg-utils: for starting web or e-mail hyperlinks from PDF 
documents'
+'mplayer: for sound and video playback')
+provides=('keyjnote=0.10.3')
+conflicts=('keyjnote')
+replaces=('keyjnote')
+source=(http://downloads.sourceforge.net/${pkgname}/Impressive-${pkgver}.tar.gz)
+sha256sums=('bb4865376db0df3fe307b5f60bddc2bbaf18d2ccb099b2d51bf1723dd94af95e')
+
+build() {
+  cd ${srcdir}/Impressive-${pkgver}
+
+# python2 fix
+  for file in $(find . -name '*.py' -print); do
+  sed -i 's_#!.*/usr/bin/python_#!/usr/bin/python2_' $file
+  sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
+  done
+}
+
+package() {
+  cd ${srcdir}/Impressive-${pkgver}
+
+  install -d -m755 ${pkgdir}/usr/{bin,share/{doc/${pkgname},man/man1}}
+  install -m755 ${pkgname}.py ${pkgdir}/usr/bin/${pkgname}
+  ln -s ${pkgname} ${pkgdir}/usr/bin/keyjnote
+  install -m644 ${pkgname}.html demo.pdf changelog.txt 
${pkgdir}/usr/share/doc/${pkgname}/
+  install -m644 ${pkgname}.1 ${pkgdir}/usr/share/man/man1/
+}



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

2013-08-18 Thread Guillaume Alaux
Date: Sunday, August 18, 2013 @ 13:17:10
  Author: guillaume
Revision: 193186

Added link to license in sub package

Modified:
  antlr2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 09:39:25 UTC (rev 193185)
+++ PKGBUILD2013-08-18 11:17:10 UTC (rev 193186)
@@ -6,7 +6,7 @@
 pkgbase=antlr2
 pkgname=('antlr2' 'python2-antlr2')
 pkgver=2.7.7
-pkgrel=3
+pkgrel=4
 # Arch dependant files in /usr/lib/libantlr.a
 arch=('i686' 'x86_64')
 url=http://www.antlr2.org/;
@@ -56,4 +56,7 @@
 
   cd ${srcdir}/antlr-${pkgver}/lib/python
   python2 setup.py install --root=${pkgdir} --optimize=1
+
+  install -d ${pkgdir}/usr/share/licenses
+  ln -s /usr/share/licenses/antlr2 ${pkgdir}/usr/share/licenses/${pkgname}
 }



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

2013-08-18 Thread Guillaume Alaux
Date: Sunday, August 18, 2013 @ 13:23:02
  Author: guillaume
Revision: 193187

PKGBUILD cleanup

Modified:
  antlr2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 11:17:10 UTC (rev 193186)
+++ PKGBUILD2013-08-18 11:23:02 UTC (rev 193187)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
 # Contributor: George Giorgidze giorgidze (at) gmail.com
 # Contributor: Stefan Husmann stefan-husm...@t-online.de
 
@@ -7,17 +8,17 @@
 pkgname=('antlr2' 'python2-antlr2')
 pkgver=2.7.7
 pkgrel=4
-# Arch dependant files in /usr/lib/libantlr.a
+# architecture dependant files in /usr/lib/libantlr.a
 arch=('i686' 'x86_64')
 url=http://www.antlr2.org/;
 license=('custom')
 makedepends=('java-environment' 'python2' 'sh')
 source=(http://www.antlr2.org/download/antlr-${pkgver}.tar.gz;
-   'runantlr2.sh'
-   'gcc4.4.patch')
+'runantlr2.sh'
+'gcc4.4.patch')
 md5sums=('01cc9a2a454dd33dcd8c856ec89af090'
-   'e4aa827cf78f97c4e5fae086831192d6'
-   '8574c93f40e6477e83c29f9b07de49da')
+ 'e4aa827cf78f97c4e5fae086831192d6'
+ '8574c93f40e6477e83c29f9b07de49da')
 
 build() {
   cd ${srcdir}/antlr-${pkgver}
@@ -31,7 +32,7 @@
 }
 
 package_antlr2() {
-  pkgdesc=ANother Tool for Language Recognition, (formerly PCCTS) is a 
language tool that provides a framework for constructing recognizers, 
compilers, and translators from grammatical descriptions containing C++ or Java 
actions
+  pkgdesc='Tool for language recognition with C++ or Java actions'
   depends=('java-runtime' 'sh')
   replaces=('antlr')
   conflicts=('antlr')
@@ -48,7 +49,7 @@
 }
 
 package_python2-antlr2() {
-  pkgdesc=ANother Tool for Language Recognition, (formerly PCCTS) is a 
language tool that provides a framework for constructing recognizers, 
compilers, and translators from grammatical descriptions containing C++ or Java 
actions (Python version)
+  pkgdesc='Tool for language recognition with C++ or Java actions - Python 
runtime support'
   depends=('antlr2' 'python2')
   replaces=('python-antlr')
   conflicts=('python-antlr')



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

2013-08-18 Thread Guillaume Alaux
Date: Sunday, August 18, 2013 @ 13:26:04
  Author: guillaume
Revision: 193188

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

Added:
  antlr2/repos/extra-i686/PKGBUILD
(from rev 193187, antlr2/trunk/PKGBUILD)
  antlr2/repos/extra-i686/gcc4.4.patch
(from rev 193187, antlr2/trunk/gcc4.4.patch)
  antlr2/repos/extra-i686/runantlr2.sh
(from rev 193187, antlr2/trunk/runantlr2.sh)
  antlr2/repos/extra-x86_64/PKGBUILD
(from rev 193187, antlr2/trunk/PKGBUILD)
  antlr2/repos/extra-x86_64/gcc4.4.patch
(from rev 193187, antlr2/trunk/gcc4.4.patch)
  antlr2/repos/extra-x86_64/runantlr2.sh
(from rev 193187, antlr2/trunk/runantlr2.sh)
Deleted:
  antlr2/repos/extra-i686/PKGBUILD
  antlr2/repos/extra-i686/gcc4.4.patch
  antlr2/repos/extra-i686/runantlr2.sh
  antlr2/repos/extra-x86_64/PKGBUILD
  antlr2/repos/extra-x86_64/gcc4.4.patch
  antlr2/repos/extra-x86_64/runantlr2.sh

---+
 /PKGBUILD |  126 
 /gcc4.4.patch |   42 ++
 /runantlr2.sh |   10 +++
 extra-i686/PKGBUILD   |   59 
 extra-i686/gcc4.4.patch   |   21 ---
 extra-i686/runantlr2.sh   |5 -
 extra-x86_64/PKGBUILD |   59 
 extra-x86_64/gcc4.4.patch |   21 ---
 extra-x86_64/runantlr2.sh |5 -
 9 files changed, 178 insertions(+), 170 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-18 11:23:02 UTC (rev 193187)
+++ extra-i686/PKGBUILD 2013-08-18 11:26:04 UTC (rev 193188)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: George Giorgidze giorgidze (at) gmail.com
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
-
-pkgbase=antlr2
-pkgname=('antlr2' 'python2-antlr2')
-pkgver=2.7.7
-pkgrel=3
-# Arch dependant files in /usr/lib/libantlr.a
-arch=('i686' 'x86_64')
-url=http://www.antlr2.org/;
-license=('custom')
-makedepends=('java-environment' 'python2' 'sh')
-source=(http://www.antlr2.org/download/antlr-${pkgver}.tar.gz;
-   'runantlr2.sh'
-   'gcc4.4.patch')
-md5sums=('01cc9a2a454dd33dcd8c856ec89af090'
-   'e4aa827cf78f97c4e5fae086831192d6'
-   '8574c93f40e6477e83c29f9b07de49da')
-
-build() {
-  cd ${srcdir}/antlr-${pkgver}
-
-  patch -Np0 -i ${srcdir}/gcc4.4.patch
-
-  ./configure --prefix=/usr \
---disable-examples \
---disable-csharp
-  make
-}
-
-package_antlr2() {
-  pkgdesc=ANother Tool for Language Recognition, (formerly PCCTS) is a 
language tool that provides a framework for constructing recognizers, 
compilers, and translators from grammatical descriptions containing C++ or Java 
actions
-  depends=('java-runtime' 'sh')
-  replaces=('antlr')
-  conflicts=('antlr')
-  provides=(antlr=${pkgver})
-
-  cd ${srcdir}/antlr-${pkgver}/lib/cpp
-  make prefix=${pkgdir}/usr install
-
-  install -Dm644 ${srcdir}/antlr-${pkgver}/antlr/antlr.jar \
-${pkgdir}/usr/share/java/antlr2.jar
-  install -Dm755 ${srcdir}/runantlr2.sh ${pkgdir}/usr/bin/runantlr2
-  install -Dm644 ${srcdir}/antlr-${pkgver}/LICENSE.txt \
-${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python2-antlr2() {
-  pkgdesc=ANother Tool for Language Recognition, (formerly PCCTS) is a 
language tool that provides a framework for constructing recognizers, 
compilers, and translators from grammatical descriptions containing C++ or Java 
actions (Python version)
-  depends=('antlr2' 'python2')
-  replaces=('python-antlr')
-  conflicts=('python-antlr')
-  provides=(python-antlr=${pkgver})
-
-  cd ${srcdir}/antlr-${pkgver}/lib/python
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: antlr2/repos/extra-i686/PKGBUILD (from rev 193187, 
antlr2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-18 11:26:04 UTC (rev 193188)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: George Giorgidze giorgidze (at) gmail.com
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+
+pkgbase=antlr2
+pkgname=('antlr2' 'python2-antlr2')
+pkgver=2.7.7
+pkgrel=4
+# architecture dependant files in /usr/lib/libantlr.a
+arch=('i686' 'x86_64')
+url=http://www.antlr2.org/;
+license=('custom')
+makedepends=('java-environment' 'python2' 'sh')
+source=(http://www.antlr2.org/download/antlr-${pkgver}.tar.gz;
+'runantlr2.sh'
+'gcc4.4.patch')
+md5sums=('01cc9a2a454dd33dcd8c856ec89af090'
+ 'e4aa827cf78f97c4e5fae086831192d6'
+ '8574c93f40e6477e83c29f9b07de49da')
+
+build() {
+  cd ${srcdir}/antlr-${pkgver}
+
+  patch -Np0 -i ${srcdir}/gcc4.4.patch
+
+  ./configure --prefix=/usr \
+--disable-examples \
+--disable-csharp
+  make
+}
+
+package_antlr2() {
+  pkgdesc='Tool for language 

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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 13:31:23
  Author: arodseth
Revision: 95886

upgpkg: netsurf 3.0-4

Modified:
  netsurf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 10:15:40 UTC (rev 95885)
+++ PKGBUILD2013-08-18 11:31:23 UTC (rev 95886)
@@ -11,8 +11,8 @@
 arch=('x86_64' 'i686')
 url='http://www.netsurf-browser.org/'
 license=('MIT' 'GPL2')
-depends=('gtk2' 'libmng' 'curl' 'librsvg' 'desktop-file-utils' 'libnsbmp' 
'libnsgif' 'libcss' 'libwebp' 'libdom') # 'libharu' 'gstreamer0.10'
-makedepends=('js' 're2c' 'lcms' 'gendesk' 'netsurf-buildsystem' 'libglade' 
'addinclude')
+depends=('gtk2' 'libmng' 'curl' 'librsvg' 'desktop-file-utils' 'libnsbmp' 
'libnsgif' 'libcss' 'libwebp' 'libdom' 'lcms') # 'libharu' 'gstreamer0.10'
+makedepends=('js' 're2c' 'gendesk' 'netsurf-buildsystem' 'libglade' 
'addinclude')
 install=$pkgname.install
 
source=(netsurf.png::http://ubuntu.allmyapps.com/data/n/e/netsurf-netsurf-web-browser/icon_48x48_netsurf.png;
 
http://download.$pkgname-browser.org/$pkgname/releases/source/$pkgname-$pkgver-src.tar.gz;)



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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 13:33:21
  Author: arodseth
Revision: 95887

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

Added:
  netsurf/repos/community-staging-i686/
  netsurf/repos/community-staging-i686/PKGBUILD
(from rev 95886, netsurf/trunk/PKGBUILD)
  netsurf/repos/community-staging-i686/netsurf.install
(from rev 95886, netsurf/trunk/netsurf.install)
  netsurf/repos/community-staging-x86_64/
  netsurf/repos/community-staging-x86_64/PKGBUILD
(from rev 95886, netsurf/trunk/PKGBUILD)
  netsurf/repos/community-staging-x86_64/netsurf.install
(from rev 95886, netsurf/trunk/netsurf.install)

--+
 community-staging-i686/PKGBUILD  |   56 +
 community-staging-i686/netsurf.install   |   14 +++
 community-staging-x86_64/PKGBUILD|   56 +
 community-staging-x86_64/netsurf.install |   14 +++
 4 files changed, 140 insertions(+)

Copied: netsurf/repos/community-staging-i686/PKGBUILD (from rev 95886, 
netsurf/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-08-18 11:33:21 UTC (rev 95887)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+# Contributor: Georgij Kondratjev sm...@bk.ru
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=netsurf
+pkgver=3.0
+pkgrel=4
+pkgdesc='Lightweight and fast web browser'
+arch=('x86_64' 'i686')
+url='http://www.netsurf-browser.org/'
+license=('MIT' 'GPL2')
+depends=('gtk2' 'libmng' 'curl' 'librsvg' 'desktop-file-utils' 'libnsbmp' 
'libnsgif' 'libcss' 'libwebp' 'libdom' 'lcms') # 'libharu' 'gstreamer0.10'
+makedepends=('js' 're2c' 'gendesk' 'netsurf-buildsystem' 'libglade' 
'addinclude')
+install=$pkgname.install
+source=(netsurf.png::http://ubuntu.allmyapps.com/data/n/e/netsurf-netsurf-web-browser/icon_48x48_netsurf.png;
+
http://download.$pkgname-browser.org/$pkgname/releases/source/$pkgname-$pkgver-src.tar.gz;)
+sha256sums=('f0dbcc5d80bf03d706aa8b28a322aa7f169a40813848c2d1505691f6e2c7ef00'
+'7c6a48d3cc3e9a3e3a51b532ddf60f7697e97bf8b61a6d3b2ced1a2e89fbccc6')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  addinclude image/rsvg.c stdio
+  addinclude image/mng.c stdio
+  addinclude image/png.c stdio
+
+  gendesk --pkgname $pkgname --pkgdesc $pkgdesc --exec 'netsurf %U' \
+--genericname 'Web Browser' --comment 'Lightweight web browser' \
+--mimetypes 
'text/html;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/geo'
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  make \
+PREFIX=/usr \
+TARGET=gtk \
+NETSURF_USE_WEBP=YES \
+NETSURF_USE_VIDEO=NO \
+NETSURF_USE_MOZILLA_JS=YES \
+NETSURF_USE_HARU_PDF=NO
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install PREFIX=/usr DESTDIR=$pkgdir
+  install -Dm644 ../$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+  install -Dm644 $pkgname.desktop \
+$pkgdir/usr/share/applications/$pkgname.desktop
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: netsurf/repos/community-staging-i686/netsurf.install (from rev 95886, 
netsurf/trunk/netsurf.install)
===
--- community-staging-i686/netsurf.install  (rev 0)
+++ community-staging-i686/netsurf.install  2013-08-18 11:33:21 UTC (rev 
95887)
@@ -0,0 +1,14 @@
+post_upgrade() {
+  #gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Copied: netsurf/repos/community-staging-x86_64/PKGBUILD (from rev 95886, 
netsurf/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-08-18 11:33:21 UTC (rev 95887)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+# Contributor: Georgij Kondratjev sm...@bk.ru
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=netsurf
+pkgver=3.0
+pkgrel=4
+pkgdesc='Lightweight and fast web browser'
+arch=('x86_64' 'i686')
+url='http://www.netsurf-browser.org/'
+license=('MIT' 'GPL2')
+depends=('gtk2' 'libmng' 'curl' 'librsvg' 'desktop-file-utils' 'libnsbmp' 
'libnsgif' 'libcss' 'libwebp' 'libdom' 'lcms') # 'libharu' 'gstreamer0.10'
+makedepends=('js' 're2c' 'gendesk' 'netsurf-buildsystem' 'libglade' 
'addinclude')
+install=$pkgname.install
+source=(netsurf.png::http://ubuntu.allmyapps.com/data/n/e/netsurf-netsurf-web-browser/icon_48x48_netsurf.png;
+

[arch-commits] Commit in java-antlr3/trunk (PKGBUILD antlrworks-1.4.3-jdk7.patch)

2013-08-18 Thread Guillaume Alaux
Date: Sunday, August 18, 2013 @ 13:35:57
  Author: guillaume
Revision: 193189

PKGBUILD and file cleanup

Modified:
  java-antlr3/trunk/PKGBUILD
Deleted:
  java-antlr3/trunk/antlrworks-1.4.3-jdk7.patch

-+
 PKGBUILD|2 +-
 antlrworks-1.4.3-jdk7.patch |   41 -
 2 files changed, 1 insertion(+), 42 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 11:26:04 UTC (rev 193188)
+++ PKGBUILD2013-08-18 11:35:57 UTC (rev 193189)
@@ -3,7 +3,7 @@
 pkgname=java-${_libname}3
 pkgver=3.5
 pkgrel=1
-pkgdesc='Language tool that provides a framework for constructing grammatical 
parsers'
+pkgdesc='Language recognition tool providing a framework to build grammatical 
parsers'
 arch=('any')
 url='http://www.antlr.org/'
 license=('BSD')

Deleted: antlrworks-1.4.3-jdk7.patch
===
--- antlrworks-1.4.3-jdk7.patch 2013-08-18 11:26:04 UTC (rev 193188)
+++ antlrworks-1.4.3-jdk7.patch 2013-08-18 11:35:57 UTC (rev 193189)
@@ -1,41 +0,0 @@
-
-diff -up 
antlrworks-1.4.3/src/aw/org/antlr/works/grammar/decisiondfa/DecisionDFAEngine.java.orig
 
antlrworks-1.4.3/src/aw/org/antlr/works/grammar/decisiondfa/DecisionDFAEngine.java
 
antlrworks-1.4.3/src/aw/org/antlr/works/grammar/decisiondfa/DecisionDFAEngine.java.orig
2011-08-08 11:53:50.0 +0200
-+++ 
antlrworks-1.4.3/src/aw/org/antlr/works/grammar/decisiondfa/DecisionDFAEngine.java
 2012-02-02 13:53:50.536902161 +0100
-@@ -106,13 +106,13 @@ public class DecisionDFAEngine {
- if(g == null) return;
- 
- if(g.decisionsWhoseDFAsUsesSemPreds != null) {
--for(DFA dfa : g.decisionsWhoseDFAsUsesSemPreds) {
-+for(DFA dfa : (ListDFA) g.decisionsWhoseDFAsUsesSemPreds) {
- usesSemPreds.add(dfa.getDecisionNumber());
- }
- }
- 
- if(g.decisionsWhoseDFAsUsesSynPreds != null) {
--for(DFA dfa : g.decisionsWhoseDFAsUsesSynPreds) {
-+for(DFA dfa : (ListDFA) g.decisionsWhoseDFAsUsesSynPreds) {
- usesSynPreds.add(dfa.getDecisionNumber());
- }
- }
-diff -up 
antlrworks-1.4.3/src/aw/org/antlr/works/grammar/engine/GrammarPropertiesImpl.java.orig
 
antlrworks-1.4.3/src/aw/org/antlr/works/grammar/engine/GrammarPropertiesImpl.java
 
antlrworks-1.4.3/src/aw/org/antlr/works/grammar/engine/GrammarPropertiesImpl.java.orig
 2011-08-08 11:53:50.0 +0200
-+++ 
antlrworks-1.4.3/src/aw/org/antlr/works/grammar/engine/GrammarPropertiesImpl.java
  2012-02-02 13:54:24.610451213 +0100
-@@ -400,7 +400,7 @@ public class GrammarPropertiesImpl imple
- Grammar g = antlrEngine.getDefaultGrammar();
- if(g != null) {
- names.add(g.getRecognizerName());
--for(Grammar gd : g.getDelegates()) {
-+for(Grammar gd : (ListGrammar) g.getDelegates()) {
- names.add(gd.getRecognizerName());
- }
- }
-@@ -408,7 +408,7 @@ public class GrammarPropertiesImpl imple
- Grammar lexer = antlrEngine.getLexerGrammar();
- if(lexer != null) {
- names.add(lexer.getRecognizerName());
--for(Grammar gd : lexer.getDelegates()) {
-+for(Grammar gd : (ListGrammar) lexer.getDelegates()) {
- names.add(gd.getRecognizerName());
- }
- }



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

2013-08-18 Thread Guillaume Alaux
Date: Sunday, August 18, 2013 @ 13:38:53
  Author: guillaume
Revision: 193190

Aligned pkgdesc to java-antlr3

Modified:
  antlr2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 11:35:57 UTC (rev 193189)
+++ PKGBUILD2013-08-18 11:38:53 UTC (rev 193190)
@@ -32,7 +32,7 @@
 }
 
 package_antlr2() {
-  pkgdesc='Tool for language recognition with C++ or Java actions'
+  pkgdesc='Language recognition tool providing a framework to build 
grammatical parsers'
   depends=('java-runtime' 'sh')
   replaces=('antlr')
   conflicts=('antlr')
@@ -49,7 +49,7 @@
 }
 
 package_python2-antlr2() {
-  pkgdesc='Tool for language recognition with C++ or Java actions - Python 
runtime support'
+  pkgdesc='Language recognition tool providing a framework to build 
grammatical parsers'
   depends=('antlr2' 'python2')
   replaces=('python-antlr')
   conflicts=('python-antlr')



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

2013-08-18 Thread Ángel Velásquez
Date: Sunday, August 18, 2013 @ 13:59:21
  Author: angvp
Revision: 193191

upgpkg: zope-interface 4.0.5-2

Changed dependencies to setuptools instead distribute

Modified:
  zope-interface/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 11:38:53 UTC (rev 193190)
+++ PKGBUILD2013-08-18 11:59:21 UTC (rev 193191)
@@ -5,11 +5,11 @@
 pkgbase=zope-interface
 pkgname=('python-zope-interface' 'python2-zope-interface')
 pkgver=4.0.5
-pkgrel=1
+pkgrel=2
 license=('ZPL')
 arch=('any')
 url=http://pypi.python.org/pypi/zope.interface;
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 
source=(http://pypi.python.org/packages/source/z/zope.interface/zope.interface-${pkgver}.zip)
 md5sums=('caf26025ae1b02da124a58340e423dfe')
 



[arch-commits] Commit in zope-interface/repos (testing-any testing-any/PKGBUILD)

2013-08-18 Thread Ángel Velásquez
Date: Sunday, August 18, 2013 @ 14:00:01
  Author: angvp
Revision: 193192

archrelease: copy trunk to testing-any

Added:
  zope-interface/repos/testing-any/
  zope-interface/repos/testing-any/PKGBUILD
(from rev 193191, zope-interface/trunk/PKGBUILD)

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

Copied: zope-interface/repos/testing-any/PKGBUILD (from rev 193191, 
zope-interface/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-18 12:00:01 UTC (rev 193192)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgbase=zope-interface
+pkgname=('python-zope-interface' 'python2-zope-interface')
+pkgver=4.0.5
+pkgrel=2
+license=('ZPL')
+arch=('any')
+url=http://pypi.python.org/pypi/zope.interface;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/z/zope.interface/zope.interface-${pkgver}.zip)
+md5sums=('caf26025ae1b02da124a58340e423dfe')
+
+build() {
+  cd ${srcdir}
+  cp -a zope.interface-${pkgver}{,-python2}
+
+  #build python3 module
+  cd ${srcdir}/zope.interface-${pkgver}
+  python setup.py build
+
+  #build python2 module
+  cd ${srcdir}/zope.interface-${pkgver}-python2
+  python2 setup.py build
+}
+
+check() {
+  cd ${srcdir}/zope.interface-${pkgver}
+  python setup.py test
+
+  cd ${srcdir}/zope.interface-${pkgver}-python2
+  python2 setup.py test
+}
+
+package_python-zope-interface() {
+  pkgdesc=('Zope Interfaces for Python3')
+  depends=('python')
+  cd ${srcdir}/zope.interface-${pkgver}
+  python setup.py install --prefix=/usr --root=${pkgdir} --optimize=1
+  cp src/zope/__init__.py ${pkgdir}/usr/lib/python3.3/site-packages/zope/
+  #delete debug
+  rm 
${pkgdir}/usr/lib/python3.3/site-packages/zope/interface/_zope_interface_coptimizations.cpython-33m.so
+}
+
+package_python2-zope-interface(){
+  pkgdesc=('Zope Interfaces for Python2')
+  depends=('python2')
+  replaces=('zope-interface')
+  provides=('zope-interface')
+  cd ${srcdir}/zope.interface-${pkgver}-python2
+  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1
+  cp src/zope/__init__.py ${pkgdir}/usr/lib/python2.7/site-packages/zope/
+  #delete debug
+  rm 
${pkgdir}/usr/lib/python2.7/site-packages/zope/interface/_zope_interface_coptimizations.so
+}



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

2013-08-18 Thread Ike Devolder
Date: Sunday, August 18, 2013 @ 14:16:42
  Author: idevolder
Revision: 95888

php-mongo :: 1.4.3-3

+ fix FS#36572 OOPS

Modified:
  php-mongo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 11:33:21 UTC (rev 95887)
+++ PKGBUILD2013-08-18 12:16:42 UTC (rev 95888)
@@ -2,8 +2,8 @@
 # Contributor: Jarek Sedlacek jareksedla...@gmail.com
 
 pkgname=php-mongo
-pkgver=1.4.2
-pkgrel=2
+pkgver=1.4.3
+pkgrel=3
 pkgdesc=Officially supported PHP driver for MongoDB
 arch=(i686 x86_64)
 url=http://www.mongodb.org/display/DOCS/PHP+Language+Center;
@@ -26,5 +26,5 @@
make INSTALL_ROOT=$pkgdir install
install -Dm644 $srcdir/mongo.ini $pkgdir/etc/php/conf.d/mongo.ini
 }
-sha256sums=('ecbf8621c418c35abb0d5e9719432a2f315db2559023861105635bae5bfbd120'
+sha256sums=('43686e8c9fabfec6852fa42eb664aa662a6d423b4bd3eba41f42514892d8d4a4'
 'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')



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

2013-08-18 Thread Ike Devolder
Date: Sunday, August 18, 2013 @ 14:17:00
  Author: idevolder
Revision: 95889

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

Added:
  php-mongo/repos/community-i686/PKGBUILD
(from rev 95888, php-mongo/trunk/PKGBUILD)
  php-mongo/repos/community-i686/mongo.ini
(from rev 95888, php-mongo/trunk/mongo.ini)
  php-mongo/repos/community-x86_64/PKGBUILD
(from rev 95888, php-mongo/trunk/PKGBUILD)
  php-mongo/repos/community-x86_64/mongo.ini
(from rev 95888, php-mongo/trunk/mongo.ini)
Deleted:
  php-mongo/repos/community-i686/PKGBUILD
  php-mongo/repos/community-i686/mongo.ini
  php-mongo/repos/community-x86_64/PKGBUILD
  php-mongo/repos/community-x86_64/mongo.ini

+
 /PKGBUILD  |   60 +++
 /mongo.ini |   56 
 community-i686/PKGBUILD|   30 -
 community-i686/mongo.ini   |   28 
 community-x86_64/PKGBUILD  |   30 -
 community-x86_64/mongo.ini |   28 
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-18 12:16:42 UTC (rev 95888)
+++ community-i686/PKGBUILD 2013-08-18 12:17:00 UTC (rev 95889)
@@ -1,30 +0,0 @@
-# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Jarek Sedlacek jareksedla...@gmail.com
-
-pkgname=php-mongo
-pkgver=1.4.2
-pkgrel=2
-pkgdesc=Officially supported PHP driver for MongoDB
-arch=(i686 x86_64)
-url=http://www.mongodb.org/display/DOCS/PHP+Language+Center;
-license=(APACHE)
-depends=(php)
-backup=(etc/php/conf.d/mongo.ini)
-source=(
-   http://pecl.php.net/get/mongo-$pkgver.tgz;
-   mongo.ini
-)
-
-build() {
-   cd mongo-$pkgver
-   phpize
-   ./configure --prefix=/usr --enable-mongo
-}
-
-package() {
-   cd mongo-$pkgver
-   make INSTALL_ROOT=$pkgdir install
-   install -Dm644 $srcdir/mongo.ini $pkgdir/etc/php/conf.d/mongo.ini
-}
-sha256sums=('ecbf8621c418c35abb0d5e9719432a2f315db2559023861105635bae5bfbd120'
-'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Copied: php-mongo/repos/community-i686/PKGBUILD (from rev 95888, 
php-mongo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-18 12:17:00 UTC (rev 95889)
@@ -0,0 +1,30 @@
+# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Jarek Sedlacek jareksedla...@gmail.com
+
+pkgname=php-mongo
+pkgver=1.4.3
+pkgrel=3
+pkgdesc=Officially supported PHP driver for MongoDB
+arch=(i686 x86_64)
+url=http://www.mongodb.org/display/DOCS/PHP+Language+Center;
+license=(APACHE)
+depends=(php)
+backup=(etc/php/conf.d/mongo.ini)
+source=(
+   http://pecl.php.net/get/mongo-$pkgver.tgz;
+   mongo.ini
+)
+
+build() {
+   cd mongo-$pkgver
+   phpize
+   ./configure --prefix=/usr --enable-mongo
+}
+
+package() {
+   cd mongo-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+   install -Dm644 $srcdir/mongo.ini $pkgdir/etc/php/conf.d/mongo.ini
+}
+sha256sums=('43686e8c9fabfec6852fa42eb664aa662a6d423b4bd3eba41f42514892d8d4a4'
+'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b')

Deleted: community-i686/mongo.ini
===
--- community-i686/mongo.ini2013-08-18 12:16:42 UTC (rev 95888)
+++ community-i686/mongo.ini2013-08-18 12:17:00 UTC (rev 95889)
@@ -1,28 +0,0 @@
-; Tell PHP to load the Mongo Extension on startup
-extension=mongo.so
-
-[mongo]
-; If the driver should reconnect to mongo
-mongo.auto_reconnect = False
-
-; Whether to allow persistent connections
-mongo.allow_persistent = On
-
-; Maximum number of persistent connections (-1 means unlimited)
-mongo.max_persistent = -1
-
-; Maximum number of links (persistent and non-persistent, -1 means unlimited)
-mongo.max_connections = -1
-
-; Default host for mongo connection
-mongo.default_host = localhost
-
-; Default port for mongo database
-mongo.default_port = 27017
-
-; When saving files to the database, size of chunks to split them into
-mongo.chunk_size = 262400
-
-; Specify an alternate character to $ to use for special db functions ($set, 
$push, $exists, etc.)
-mongo.cmd = $
-

Copied: php-mongo/repos/community-i686/mongo.ini (from rev 95888, 
php-mongo/trunk/mongo.ini)
===
--- community-i686/mongo.ini(rev 0)
+++ community-i686/mongo.ini2013-08-18 12:17:00 UTC (rev 95889)
@@ -0,0 +1,28 @@
+; Tell PHP to load the Mongo Extension on startup
+extension=mongo.so
+
+[mongo]
+; If the driver should reconnect to mongo
+mongo.auto_reconnect = False
+
+; Whether 

[arch-commits] Commit in archlinux-keyring/repos (3 files)

2013-08-18 Thread Pierre Schmitz
Date: Sunday, August 18, 2013 @ 14:18:48
  Author: pierre
Revision: 193194

archrelease: copy trunk to testing-any

Added:
  archlinux-keyring/repos/testing-any/
  archlinux-keyring/repos/testing-any/PKGBUILD
(from rev 193193, archlinux-keyring/trunk/PKGBUILD)
  archlinux-keyring/repos/testing-any/archlinux-keyring.install
(from rev 193193, archlinux-keyring/trunk/archlinux-keyring.install)

---+
 PKGBUILD  |   20 
 archlinux-keyring.install |   22 ++
 2 files changed, 42 insertions(+)

Copied: archlinux-keyring/repos/testing-any/PKGBUILD (from rev 193193, 
archlinux-keyring/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-18 12:18:48 UTC (rev 193194)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=archlinux-keyring
+pkgver=20130818
+pkgrel=1
+pkgdesc='Arch Linux PGP keyring'
+arch=('any')
+url='https://projects.archlinux.org/archlinux-keyring.git/'
+license=('GPL')
+install=${pkgname}.install
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
+md5sums=('80a0b9f88f4ff103b3e697df41d194b1'
+ 'SKIP')
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr DESTDIR=${pkgdir} install
+}

Copied: archlinux-keyring/repos/testing-any/archlinux-keyring.install (from rev 
193193, archlinux-keyring/trunk/archlinux-keyring.install)
===
--- testing-any/archlinux-keyring.install   (rev 0)
+++ testing-any/archlinux-keyring.install   2013-08-18 12:18:48 UTC (rev 
193194)
@@ -0,0 +1,22 @@
+post_upgrade() {
+   if usr/bin/pacman-key -l /dev/null 21; then
+   usr/bin/pacman-key --populate archlinux
+
+   # Re-enable key of dwallace
+   # See https://bugs.archlinux.org/task/35478
+   if [ -z $2 ] || [ $2 = 20130525-1 ]; then
+   printf 'enable\nquit\n' | LANG=C \
+   gpg --homedir /etc/pacman.d/gnupg \
+   --no-permission-warning --command-fd 0 \
+   --quiet --batch --edit-key \
+   5559BC1A32B8F76B3FCCD9555FA5E5544F010D48 \
+   2/dev/null
+   fi
+   fi
+}
+
+post_install() {
+   if [ -x usr/bin/pacman-key ]; then
+   post_upgrade
+   fi
+}



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

2013-08-18 Thread Pierre Schmitz
Date: Sunday, August 18, 2013 @ 14:18:43
  Author: pierre
Revision: 193193

upgpkg: archlinux-keyring 20130818-1

Modified:
  archlinux-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 12:00:01 UTC (rev 193192)
+++ PKGBUILD2013-08-18 12:18:43 UTC (rev 193193)
@@ -2,8 +2,8 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=archlinux-keyring
-pkgver=20130525
-pkgrel=2
+pkgver=20130818
+pkgrel=1
 pkgdesc='Arch Linux PGP keyring'
 arch=('any')
 url='https://projects.archlinux.org/archlinux-keyring.git/'
@@ -11,7 +11,7 @@
 install=${pkgname}.install
 source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-md5sums=('22894bbd940803d3cf0310d93cdf054e'
+md5sums=('80a0b9f88f4ff103b3e697df41d194b1'
  'SKIP')
 
 package() {



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

2013-08-18 Thread Ike Devolder
Date: Sunday, August 18, 2013 @ 14:48:08
  Author: idevolder
Revision: 95890

closure-linter :: 2.3.11

https://www.archlinux.org/todo/replacement-of-distribute-dependency-in-favour-of-setuptools/

Modified:
  closure-linter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 12:17:00 UTC (rev 95889)
+++ PKGBUILD2013-08-18 12:48:08 UTC (rev 95890)
@@ -2,12 +2,12 @@
 # Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
 pkgname=closure-linter
 pkgver=2.3.11
-pkgrel=1
+pkgrel=2
 pkgdesc=A JavaScript style checker and style fixer
 arch=('any')
 url=http://code.google.com/closure;
 license=('APACHE')
-depends=('python2' 'python2-gflags' 'python2-distribute')
+depends=('python2-gflags' 'python2-setuptools')
 source=(http://$pkgname.googlecode.com/files/${pkgname/-/_}-$pkgver.tar.gz;)
 
 build() {



[arch-commits] Commit in closure-linter/repos (2 files)

2013-08-18 Thread Ike Devolder
Date: Sunday, August 18, 2013 @ 14:48:25
  Author: idevolder
Revision: 95891

archrelease: copy trunk to community-testing-any

Added:
  closure-linter/repos/community-testing-any/
  closure-linter/repos/community-testing-any/PKGBUILD
(from rev 95890, closure-linter/trunk/PKGBUILD)

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

Copied: closure-linter/repos/community-testing-any/PKGBUILD (from rev 95890, 
closure-linter/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-18 12:48:25 UTC (rev 95891)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
+pkgname=closure-linter
+pkgver=2.3.11
+pkgrel=2
+pkgdesc=A JavaScript style checker and style fixer
+arch=('any')
+url=http://code.google.com/closure;
+license=('APACHE')
+depends=('python2-gflags' 'python2-setuptools')
+source=(http://$pkgname.googlecode.com/files/${pkgname/-/_}-$pkgver.tar.gz;)
+
+build() {
+   cd ${pkgname/-/_}-$pkgver
+   python2 setup.py build
+}
+
+package() {
+   cd ${pkgname/-/_}-$pkgver
+   python2 setup.py install --root=$pkgdir
+}
+sha256sums=('a17790366c8cf07c932aafc8f1945e550b3f381178e1a8aad0f6cc75d41510f6')



[arch-commits] Commit in glances/repos (2 files)

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:01:47
  Author: bpiotrowski
Revision: 95893

archrelease: copy trunk to community-testing-any

Added:
  glances/repos/community-testing-any/
  glances/repos/community-testing-any/PKGBUILD
(from rev 95892, glances/trunk/PKGBUILD)

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

Copied: glances/repos/community-testing-any/PKGBUILD (from rev 95892, 
glances/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-18 14:01:47 UTC (rev 95893)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski s...@bpiotrowski.pl
+# Contributor: Francois Boulogne fboulogne at april dot org
+
+pkgname=glances
+pkgver=1.7
+pkgrel=2
+pkgdesc='CLI curses-based monitoring tool'
+arch=('any')
+url='https://github.com/nicolargo/glances'
+license=('LGPL')
+depends=('python2' 'python2-psutil' 'python2-setuptools')
+optdepends=('python2-jinja: HTML export'
+'python2-sensors: temperature sensors support')
+source=($url/archive/v$pkgver.tar.gz)
+sha256sums=('5ee9c05f138c143ca11aba213dac8d5a2939b337b1e24cc3794f8f4c5e0856ba')
+
+package() {
+  cd $pkgname-$pkgver
+  sed 's|^#!/usr/bin/env python$|2|' -i glances/glances.py
+  python2 setup.py install --prefix=/usr --root=$pkgdir
+}



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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:01:37
  Author: bpiotrowski
Revision: 95892

upgpkg: glances 1.7-2

- replace python2-distribute with python2-setuptools

Modified:
  glances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 12:48:25 UTC (rev 95891)
+++ PKGBUILD2013-08-18 14:01:37 UTC (rev 95892)
@@ -4,12 +4,12 @@
 
 pkgname=glances
 pkgver=1.7
-pkgrel=1
+pkgrel=2
 pkgdesc='CLI curses-based monitoring tool'
 arch=('any')
 url='https://github.com/nicolargo/glances'
 license=('LGPL')
-depends=('python2' 'python2-psutil' 'python2-distribute')
+depends=('python2' 'python2-psutil' 'python2-setuptools')
 optdepends=('python2-jinja: HTML export'
 'python2-sensors: temperature sensors support')
 source=($url/archive/v$pkgver.tar.gz)
@@ -20,5 +20,3 @@
   sed 's|^#!/usr/bin/env python$|2|' -i glances/glances.py
   python2 setup.py install --prefix=/usr --root=$pkgdir
 }
-
-# vim:ts=2:sw=2:et:



[arch-commits] Commit in pep8/repos (2 files)

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:08:04
  Author: bpiotrowski
Revision: 95895

archrelease: copy trunk to community-testing-any

Added:
  pep8/repos/community-testing-any/
  pep8/repos/community-testing-any/PKGBUILD
(from rev 95894, pep8/trunk/PKGBUILD)

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

Copied: pep8/repos/community-testing-any/PKGBUILD (from rev 95894, 
pep8/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-18 14:08:04 UTC (rev 95895)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Ismael Carnales icarnales at gmail dot com
+# Contributor: Sergey Mastykov smastykov[at]gmail[dot]com
+
+pkgbase=pep8
+pkgname=($pkgbase-python2 $pkgbase-python3)
+pkgver=1.4.6
+pkgrel=3
+pkgdesc=Python style guide checker
+arch=('any')
+url=http://github.com/jcrocholl/pep8/;
+license=('custom:Expat')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(https://github.com/jcrocholl/$pkgbase/archive/${pkgver}.tar.gz;)
+sha256sums=('723ec96fc01a1c2d8f9e7d4239a769cd5b499951a1d6c4edc3eb28c6801ed0f8')
+
+build() {
+  cd $srcdir
+  cp -r $pkgbase-$pkgver $pkgbase-$pkgver-python2
+}
+
+package_pep8-python2() {
+  depends=('python2' 'python2-distribute')
+  provides=('pep8')
+  conflicts=('pep8')
+  replaces=('pep8')
+  
+  cd $srcdir/$pkgbase-$pkgver-python2
+  python2 setup.py install --prefix=/usr --root=$pkgdir/
+  mv $pkgdir/usr/bin/pep8 $pkgdir/usr/bin/pep8-python2
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_pep8-python3() {
+  depends=('python3' 'python-distribute')
+  
+  cd $srcdir/$pkgbase-$pkgver
+  python3 setup.py install --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:07:48
  Author: bpiotrowski
Revision: 95894

upgpkg: pep8 1.4.6-3

- replace python-distribute with python-setuptools

Modified:
  pep8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 14:01:47 UTC (rev 95893)
+++ PKGBUILD2013-08-18 14:07:48 UTC (rev 95894)
@@ -6,13 +6,14 @@
 pkgbase=pep8
 pkgname=($pkgbase-python2 $pkgbase-python3)
 pkgver=1.4.6
-pkgrel=2
+pkgrel=3
 pkgdesc=Python style guide checker
 arch=('any')
 url=http://github.com/jcrocholl/pep8/;
 license=('custom:Expat')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 source=(https://github.com/jcrocholl/$pkgbase/archive/${pkgver}.tar.gz;)
+sha256sums=('723ec96fc01a1c2d8f9e7d4239a769cd5b499951a1d6c4edc3eb28c6801ed0f8')
 
 build() {
   cd $srcdir
@@ -42,4 +43,3 @@
 }
 
 # vim:set ts=2 sw=2 et:
-md5sums=('34915081522a936d3bab54b898aabd4f')



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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:09:30
  Author: bpiotrowski
Revision: 95896

upgpkg: python-bsddb 6.0.0-2

- replace python-distribute with python-setuptools 

Modified:
  python-bsddb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 14:08:04 UTC (rev 95895)
+++ PKGBUILD2013-08-18 14:09:30 UTC (rev 95896)
@@ -7,12 +7,12 @@
 pkgbase=python-bsddb
 pkgname=('python2-bsddb' 'python-bsddb')
 pkgver=6.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Python interface for BerkeleyDB
 license=('MIT')
 arch=('i686' 'x86_64')
 url=http://www.jcea.es/programacion/pybsddb.htm;
-makedepends=('python2-distribute' 'python-distribute')
+makedepends=('python2-setuptools' 'python-setuptools')
 source=(http://pypi.python.org/packages/source/b/bsddb3/bsddb3-${pkgver}.tar.gz
 LICENSE)
 sha1sums=('ca5c204b2c9cf4fff396ba3d49994fe1a95d669f'



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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:17:59
  Author: bpiotrowski
Revision: 95897

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

Added:
  python-bsddb/repos/community-testing-i686/
  python-bsddb/repos/community-testing-i686/LICENSE
(from rev 95896, python-bsddb/trunk/LICENSE)
  python-bsddb/repos/community-testing-i686/PKGBUILD
(from rev 95896, python-bsddb/trunk/PKGBUILD)
  python-bsddb/repos/community-testing-x86_64/
  python-bsddb/repos/community-testing-x86_64/LICENSE
(from rev 95896, python-bsddb/trunk/LICENSE)
  python-bsddb/repos/community-testing-x86_64/PKGBUILD
(from rev 95896, python-bsddb/trunk/PKGBUILD)

---+
 community-testing-i686/LICENSE|   19 +
 community-testing-i686/PKGBUILD   |   51 
 community-testing-x86_64/LICENSE  |   19 +
 community-testing-x86_64/PKGBUILD |   51 
 4 files changed, 140 insertions(+)

Copied: python-bsddb/repos/community-testing-i686/LICENSE (from rev 95896, 
python-bsddb/trunk/LICENSE)
===
--- community-testing-i686/LICENSE  (rev 0)
+++ community-testing-i686/LICENSE  2013-08-18 14:17:59 UTC (rev 95897)
@@ -0,0 +1,19 @@
+Copyright (c) 2008-2009 Jesus Cea Avion
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
\ No newline at end of file

Copied: python-bsddb/repos/community-testing-i686/PKGBUILD (from rev 95896, 
python-bsddb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-08-18 14:17:59 UTC (rev 95897)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Kaiting Chen kaitocr...@gmail.com
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Douglas Soares de Andrade dsandr...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgbase=python-bsddb
+pkgname=('python2-bsddb' 'python-bsddb')
+pkgver=6.0.0
+pkgrel=2
+pkgdesc=Python interface for BerkeleyDB
+license=('MIT')
+arch=('i686' 'x86_64')
+url=http://www.jcea.es/programacion/pybsddb.htm;
+makedepends=('python2-setuptools' 'python-setuptools')
+source=(http://pypi.python.org/packages/source/b/bsddb3/bsddb3-${pkgver}.tar.gz
+LICENSE)
+sha1sums=('ca5c204b2c9cf4fff396ba3d49994fe1a95d669f'
+  'ef4e4caf618781104dbf5824279ed39d127b4713')
+
+prepare() {
+  cp -r bsddb3-${pkgver}{,-python2}
+}
+
+build () {
+  # Build python 3 module
+  cd bsddb3-${pkgver}
+  python3 setup.py --berkeley-db=/usr build
+
+  # Build python 2 module
+  cd ../bsddb3-${pkgver}-python2
+  python2 setup.py --berkeley-db=/usr build
+}
+
+package_python2-bsddb() {
+  depends=('db' 'python2=2.7')
+  cd bsddb3-${pkgver}-python2
+
+  python2 setup.py --berkeley-db=/usr install --root=${pkgdir} --skip-build 
--optimize=1
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+
${pkgdir}/usr/lib/python2.7/site-packages/bsddb3/{dbshelve.py,tests/test_dbtables.py}
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python-bsddb() {
+  depends=('db' 'python=3.3')
+  cd bsddb3-${pkgver}
+
+  python3 setup.py --berkeley-db=/usr install --root=${pkgdir} --skip-build 
--optimize=1
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: python-bsddb/repos/community-testing-x86_64/LICENSE (from rev 95896, 
python-bsddb/trunk/LICENSE)
===
--- community-testing-x86_64/LICENSE(rev 0)
+++ community-testing-x86_64/LICENSE2013-08-18 14:17:59 UTC (rev 95897)
@@ -0,0 +1,19 @@
+Copyright (c) 2008-2009 Jesus Cea Avion
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the 

[arch-commits] Commit in python2-ndg-httpsclient/repos (2 files)

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:19:47
  Author: bpiotrowski
Revision: 95899

archrelease: copy trunk to community-testing-any

Added:
  python2-ndg-httpsclient/repos/community-testing-any/
  python2-ndg-httpsclient/repos/community-testing-any/PKGBUILD
(from rev 95898, python2-ndg-httpsclient/trunk/PKGBUILD)

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

Copied: python2-ndg-httpsclient/repos/community-testing-any/PKGBUILD (from rev 
95898, python2-ndg-httpsclient/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-18 14:19:47 UTC (rev 95899)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Hugo Osvaldo Barrera h...@osvaldobarrera.com.ar
+
+pkgname=python2-ndg-httpsclient
+_pkgname=ndg_httpsclient
+pkgver=0.3.2
+pkgrel=2
+pkgdesc=Provides enhanced HTTPS support for httplib and urllib2 using 
PyOpenSSL
+arch=(any)
+url=https://pypi.python.org/pypi/ndg-httpsclient;
+license=('BSD')
+depends=('python2-pyopenssl' 'python2-pyasn1')
+makedepends=('python2-setuptools')
+options=(!emptydirs)
+source=(https://pypi.python.org/packages/source/n/ndg-httpsclient/${_pkgname}-${pkgver}.tar.gz)
+
+build() {
+   cd $srcdir/$_pkgname-$pkgver
+   python2 setup.py build
+}
+
+package() {
+   cd $srcdir/$_pkgname-$pkgver
+   python2 setup.py install --skip-build -O1 --root=$pkgdir
+install -m0644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+sha256sums=('cc806d43f3e79be40f923d94f542f23a94c6ddbb9a63258b0bf875f325508973')



[arch-commits] Commit in python2-ndg-httpsclient/trunk (PKGBUILD)

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:19:38
  Author: bpiotrowski
Revision: 95898

upgpkg: python2-ndg-httpsclient 0.3.2-2

- replace python2-distribute with python2-setuptools

Modified:
  python2-ndg-httpsclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 14:17:59 UTC (rev 95897)
+++ PKGBUILD2013-08-18 14:19:38 UTC (rev 95898)
@@ -5,13 +5,13 @@
 pkgname=python2-ndg-httpsclient
 _pkgname=ndg_httpsclient
 pkgver=0.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Provides enhanced HTTPS support for httplib and urllib2 using 
PyOpenSSL
 arch=(any)
 url=https://pypi.python.org/pypi/ndg-httpsclient;
 license=('BSD')
 depends=('python2-pyopenssl' 'python2-pyasn1')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 options=(!emptydirs)
 
source=(https://pypi.python.org/packages/source/n/ndg-httpsclient/${_pkgname}-${pkgver}.tar.gz)
 



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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:26:04
  Author: bpiotrowski
Revision: 95900

upgpkg: synaptiks 0.8.1-7

- replace python2-distribute with python2-setuptools

Modified:
  synaptiks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 14:19:47 UTC (rev 95899)
+++ PKGBUILD2013-08-18 14:26:04 UTC (rev 95900)
@@ -8,12 +8,12 @@
 
 pkgname=synaptiks
 pkgver=0.8.1
-pkgrel=6
+pkgrel=7
 pkgdesc='A touchpad configuration and management tool for KDE'
 arch=('any')
 url=http://synaptiks.readthedocs.org/;
 license=('BSD')
-depends=('kdebase-workspace' 'kdebindings-python2' 'python2-distribute'
+depends=('kdebase-workspace' 'kdebindings-python2' 'python2-setuptools'
  'python2-udev' 'xf86-input-synaptics')
 install=$pkgname.install
 
source=(http://pypi.python.org/packages/source/s/$pkgname/$pkgname-$pkgver.tar.bz2;



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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 16:26:16
  Author: bpiotrowski
Revision: 95901

archrelease: copy trunk to community-testing-any

Added:
  synaptiks/repos/community-testing-any/
  synaptiks/repos/community-testing-any/PKGBUILD
(from rev 95900, synaptiks/trunk/PKGBUILD)
  synaptiks/repos/community-testing-any/pyudev-fix.patch
(from rev 95900, synaptiks/trunk/pyudev-fix.patch)
  synaptiks/repos/community-testing-any/synaptics170.patch
(from rev 95900, synaptiks/trunk/synaptics170.patch)
  synaptiks/repos/community-testing-any/synaptiks.install
(from rev 95900, synaptiks/trunk/synaptiks.install)

+
 PKGBUILD   |   36 +
 pyudev-fix.patch   |   11 ++
 synaptics170.patch |  200 +++
 synaptiks.install  |   11 ++
 4 files changed, 258 insertions(+)

Copied: synaptiks/repos/community-testing-any/PKGBUILD (from rev 95900, 
synaptiks/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-18 14:26:16 UTC (rev 95901)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas nqn1976 @ gmail.com
+# Contributor: Sebastian Wiesner lunary...@googlemail.com
+# Contributor: gobeav3rs297 vincent.t@gmail.com
+# Contributor: archtux antonio.arias99...@gmail.com
+# Contributor: neo neo[AT]acanac[DOT]net
+
+pkgname=synaptiks
+pkgver=0.8.1
+pkgrel=7
+pkgdesc='A touchpad configuration and management tool for KDE'
+arch=('any')
+url=http://synaptiks.readthedocs.org/;
+license=('BSD')
+depends=('kdebase-workspace' 'kdebindings-python2' 'python2-setuptools'
+ 'python2-udev' 'xf86-input-synaptics')
+install=$pkgname.install
+source=(http://pypi.python.org/packages/source/s/$pkgname/$pkgname-$pkgver.tar.bz2;
+'pyudev-fix.patch'
+'synaptics170.patch')
+md5sums=('4137a5c7a6117cf8f2073bfdb05466d6'
+ 'eb2b6adeab573874c1c686ba67786d9a'
+ 'e04319829a73e26ca503452f290f3ec3')
+
+package() {
+  cd $pkgname-$pkgver
+
+  # FS#31328
+  patch -p1 -i ${srcdir}/pyudev-fix.patch
+  # FS#34637
+  patch -p1 -i ${srcdir}/synaptics170.patch
+
+  python2 setup.py install --root $pkgdir --optimize=1
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: synaptiks/repos/community-testing-any/pyudev-fix.patch (from rev 95900, 
synaptiks/trunk/pyudev-fix.patch)
===
--- community-testing-any/pyudev-fix.patch  (rev 0)
+++ community-testing-any/pyudev-fix.patch  2013-08-18 14:26:16 UTC (rev 
95901)
@@ -0,0 +1,11 @@
+--- synaptiks-0.8.1/synaptiks/monitors/mouses.py~  2012-08-28 
18:58:09.540085410 -0500
 synaptiks-0.8.1/synaptiks/monitors/mouses.py   2012-08-28 
21:38:46.060947638 -0500
+@@ -74,7 +74,7 @@
+ # device.  The parent represents the actual physical device.  The name
+ # may be decorated with quotation marks, which are removed for the 
sake
+ # of a clean represenation
+-return cls(device['ID_SERIAL'], device.parent['NAME'].strip(''))
++return cls(device.get('ID_SERIAL'), device.parent['NAME'].strip(''))
+ 
+ 
+ class MouseDevicesMonitor(QObject):

Copied: synaptiks/repos/community-testing-any/synaptics170.patch (from rev 
95900, synaptiks/trunk/synaptics170.patch)
===
--- community-testing-any/synaptics170.patch(rev 0)
+++ community-testing-any/synaptics170.patch2013-08-18 14:26:16 UTC (rev 
95901)
@@ -0,0 +1,200 @@
+--- a/doc/api/touchpad.rst
 b/doc/api/touchpad.rst
+@@ -27,8 +27,6 @@ The touchpad class
+ 
+.. autoattribute:: acceleration_factor
+ 
+-   .. autoattribute:: edge_motion_always
+-
+.. rubric:: scrolling properties
+ 
+.. autoattribute:: vertical_edge_scrolling
+@@ -55,8 +53,6 @@ The touchpad class
+ 
+.. rubric:: tapping properties
+ 
+-   .. autoattribute:: fast_taps
+-
+.. autoattribute:: rt_tap_action
+ 
+.. autoattribute:: rb_tap_action
+--- a/doc/handbook/reference.rst
 b/doc/handbook/reference.rst
+@@ -69,13 +69,6 @@ The touchpad configuration module is available in 
|systemsettings| under
+   The acceleration between :guilabel:`Minimum speed` and 
:guilabel:`Maximum
+   speed`
+ 
+-:guilabel:`Continue cursor motion when hitting the touchpad edge`
+-   Continue the cursor move while the finger stays in the touchpad edge
+-
+-   :guilabel:`For all movements, not only dragging`
+-  Always continue cursor movement, when hitting the touchpad edge, not 
only
+-  when dragging
+-
+ 
+ .. _commands-scrolling-configuration:
+ 
+@@ -152,13 +145,6 @@ The touchpad configuration module is available in 
|systemsettings| under
+ 
+Screenshot of the tapping configuration page
+ 

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

2013-08-18 Thread Felix Yan
Date: Sunday, August 18, 2013 @ 17:27:17
  Author: fyan
Revision: 95902

upgpkg: goaccess 0.6-1

Modified:
  goaccess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 14:26:16 UTC (rev 95901)
+++ PKGBUILD2013-08-18 15:27:17 UTC (rev 95902)
@@ -4,15 +4,14 @@
 # Contributor: Nicolas Storme nico...@atelier-web.com
 
 pkgname=goaccess
-pkgver=0.5
-pkgrel=2
+pkgver=0.6
+pkgrel=1
 pkgdesc=An open source real-time web log analyzer and interactive viewer
 arch=('i686' 'x86_64')
 url=http://goaccess.prosoftcorp.com;
 license=('GPL')
 depends=('ncurses' 'geoip' 'glib2')
 source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('f6359a9553a460265f5859cea4d40ec0')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -24,3 +23,5 @@
   cd $srcdir/$pkgname-$pkgver
   make prefix=$pkgdir/usr install
 }
+
+sha512sums=('cd3fb241a9d84f2f9023c179a96d441f7f7d52e9c7227b31a3a18761c60ae6abdbfc70799c0a2c5ceb8788afd36eeaaf55ed7944310fb5809dd403d7fe09dfbd')



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

2013-08-18 Thread Felix Yan
Date: Sunday, August 18, 2013 @ 17:28:38
  Author: fyan
Revision: 95903

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

Added:
  goaccess/repos/community-i686/PKGBUILD
(from rev 95902, goaccess/trunk/PKGBUILD)
  goaccess/repos/community-x86_64/PKGBUILD
(from rev 95902, goaccess/trunk/PKGBUILD)
Deleted:
  goaccess/repos/community-i686/PKGBUILD
  goaccess/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-18 15:27:17 UTC (rev 95902)
+++ community-i686/PKGBUILD 2013-08-18 15:28:38 UTC (rev 95903)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Josh VanderLinden a...@cloudlery.com
-# Contributor: Nicolas Storme nico...@atelier-web.com
-
-pkgname=goaccess
-pkgver=0.5
-pkgrel=2
-pkgdesc=An open source real-time web log analyzer and interactive viewer
-arch=('i686' 'x86_64')
-url=http://goaccess.prosoftcorp.com;
-license=('GPL')
-depends=('ncurses' 'geoip' 'glib2')
-source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('f6359a9553a460265f5859cea4d40ec0')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --enable-geoip
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=$pkgdir/usr install
-}

Copied: goaccess/repos/community-i686/PKGBUILD (from rev 95902, 
goaccess/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-18 15:28:38 UTC (rev 95903)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Josh VanderLinden a...@cloudlery.com
+# Contributor: Nicolas Storme nico...@atelier-web.com
+
+pkgname=goaccess
+pkgver=0.6
+pkgrel=1
+pkgdesc=An open source real-time web log analyzer and interactive viewer
+arch=('i686' 'x86_64')
+url=http://goaccess.prosoftcorp.com;
+license=('GPL')
+depends=('ncurses' 'geoip' 'glib2')
+source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --enable-geoip
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+}
+
+sha512sums=('cd3fb241a9d84f2f9023c179a96d441f7f7d52e9c7227b31a3a18761c60ae6abdbfc70799c0a2c5ceb8788afd36eeaaf55ed7944310fb5809dd403d7fe09dfbd')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-18 15:27:17 UTC (rev 95902)
+++ community-x86_64/PKGBUILD   2013-08-18 15:28:38 UTC (rev 95903)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Josh VanderLinden a...@cloudlery.com
-# Contributor: Nicolas Storme nico...@atelier-web.com
-
-pkgname=goaccess
-pkgver=0.5
-pkgrel=2
-pkgdesc=An open source real-time web log analyzer and interactive viewer
-arch=('i686' 'x86_64')
-url=http://goaccess.prosoftcorp.com;
-license=('GPL')
-depends=('ncurses' 'geoip' 'glib2')
-source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('f6359a9553a460265f5859cea4d40ec0')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --enable-geoip
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=$pkgdir/usr install
-}

Copied: goaccess/repos/community-x86_64/PKGBUILD (from rev 95902, 
goaccess/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-08-18 15:28:38 UTC (rev 95903)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Josh VanderLinden a...@cloudlery.com
+# Contributor: Nicolas Storme nico...@atelier-web.com
+
+pkgname=goaccess
+pkgver=0.6
+pkgrel=1
+pkgdesc=An open source real-time web log analyzer and interactive viewer
+arch=('i686' 'x86_64')
+url=http://goaccess.prosoftcorp.com;
+license=('GPL')
+depends=('ncurses' 'geoip' 'glib2')
+source=(http://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --enable-geoip
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+}
+
+sha512sums=('cd3fb241a9d84f2f9023c179a96d441f7f7d52e9c7227b31a3a18761c60ae6abdbfc70799c0a2c5ceb8788afd36eeaaf55ed7944310fb5809dd403d7fe09dfbd')



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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 17:46:52
  Author: arodseth
Revision: 95905

archrelease: copy trunk to community-any

Added:
  python2-memcached/repos/community-any/LICENSE
(from rev 95904, python2-memcached/trunk/LICENSE)
  python2-memcached/repos/community-any/PKGBUILD
(from rev 95904, python2-memcached/trunk/PKGBUILD)
Deleted:
  python2-memcached/repos/community-any/LICENSE
  python2-memcached/repos/community-any/PKGBUILD

--+
 LICENSE  |  122 ++---
 PKGBUILD |   80 
 2 files changed, 101 insertions(+), 101 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2013-08-18 15:46:46 UTC (rev 95904)
+++ LICENSE 2013-08-18 15:46:52 UTC (rev 95905)
@@ -1,61 +0,0 @@
-IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.
-
-BY CLICKING ON ACCEPT WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR
-OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO
-THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT.
-
-1. This LICENSE AGREEMENT is between the Corporation for National Research
-Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191
-(CNRI), and the Individual or Organization (Licensee) accessing and
-otherwise using Python 1.6, beta 1 software in source or binary form and its
-associated documentation, as released at the www.python.org Internet site on
-August 4, 2000 (Python 1.6b1).
-
-2. Subject to the terms and conditions of this License Agreement, CNRI
-hereby grants Licensee a non-exclusive, royalty-free, world-wide license to
-reproduce, analyze, test, perform and/or display publicly, prepare derivative
-works, distribute, and otherwise use Python 1.6b1 alone or in any derivative
-version, provided, however, that CNRIs License Agreement is retained in Python
-1.6b1, alone or in any derivative version prepared by Licensee.
-
-Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the
-following text (omitting the quotes): Python 1.6, beta 1, is made available
-subject to the terms and conditions in CNRIs License Agreement. This Agreement
-may be located on the Internet using the following unique, persistent
-identifier (known as a handle): 1895.22/1011. This Agreement may also be
-obtained from a proxy server on the Internet using the
-URL:http://hdl.handle.net/1895.22/1011;.
-
-3. In the event Licensee prepares a derivative work that is based on or
-incorporates Python 1.6b1or any part thereof, and wants to make the derivative
-work available to the public as provided herein, then Licensee hereby agrees to
-indicate in any such work the nature of the modifications made to Python
-1.6b1.
-
-4. CNRI is making Python 1.6b1 available to Licensee on an AS IS basis.
-CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
-EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
-WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
-USE OF PYTHON 1.6b1WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
-
-5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE
-FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
-USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN
-IF ADVISED OF THE POSSIBILITY THEREOF.
-
-6. This License Agreement will automatically terminate upon a material
-breach of its terms and conditions.
-
-7. This License Agreement shall be governed by and interpreted in all
-respects by the law of the State of Virginia, excluding conflict of law
-provisions. Nothing in this License Agreement shall be deemed to create any
-relationship of agency, partnership, or joint venture between CNRI and
-Licensee. This License Agreement does not grant permission to use CNRI
-trademarks or trade name in a trademark sense to endorse or promote products or
-services of Licensee, or any third party.
-
-8. By clicking on the ACCEPT button where indicated, or by copying,
-installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the
-terms and conditions of this License Agreement.
-
-ACCEPT
\ No newline at end of file

Copied: python2-memcached/repos/community-any/LICENSE (from rev 95904, 
python2-memcached/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2013-08-18 15:46:52 UTC (rev 95905)
@@ -0,0 +1,61 @@
+IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.
+
+BY CLICKING ON ACCEPT WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR
+OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO
+THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT.
+
+1. This LICENSE AGREEMENT is between the Corporation for National Research
+Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191
+(CNRI), and 

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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 17:46:46
  Author: arodseth
Revision: 95904

upgpkg: python2-memcached 1.53-2

Modified:
  python2-memcached/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 15:28:38 UTC (rev 95903)
+++ PKGBUILD2013-08-18 15:46:46 UTC (rev 95904)
@@ -7,12 +7,12 @@
 pkgname=python2-memcached
 pkgdesc='Python interface to memcached'
 pkgver=1.53
-pkgrel=1
+pkgrel=2
 depends=('python2')
 url='https://bugs.launchpad.net/python-memcached'
 arch=('any')
 license=('Python')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 
source=(ftp://ftp.tummy.com/pub/python-memcached/python-memcached-$pkgver.tar.gz;
 'LICENSE')
 sha256sums=('af04ea031b271a54f085166773e028fe053fc1d9a58cd8b3c3a57945990bfb48'



[arch-commits] Commit in python2-memcached/repos (3 files)

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 17:48:44
  Author: arodseth
Revision: 95906

archrelease: copy trunk to community-staging-any

Added:
  python2-memcached/repos/community-staging-any/
  python2-memcached/repos/community-staging-any/LICENSE
(from rev 95905, python2-memcached/trunk/LICENSE)
  python2-memcached/repos/community-staging-any/PKGBUILD
(from rev 95905, python2-memcached/trunk/PKGBUILD)

--+
 LICENSE  |   61 +
 PKGBUILD |   40 
 2 files changed, 101 insertions(+)

Copied: python2-memcached/repos/community-staging-any/LICENSE (from rev 95905, 
python2-memcached/trunk/LICENSE)
===
--- community-staging-any/LICENSE   (rev 0)
+++ community-staging-any/LICENSE   2013-08-18 15:48:44 UTC (rev 95906)
@@ -0,0 +1,61 @@
+IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.
+
+BY CLICKING ON ACCEPT WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR
+OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO
+THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT.
+
+1. This LICENSE AGREEMENT is between the Corporation for National Research
+Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191
+(CNRI), and the Individual or Organization (Licensee) accessing and
+otherwise using Python 1.6, beta 1 software in source or binary form and its
+associated documentation, as released at the www.python.org Internet site on
+August 4, 2000 (Python 1.6b1).
+
+2. Subject to the terms and conditions of this License Agreement, CNRI
+hereby grants Licensee a non-exclusive, royalty-free, world-wide license to
+reproduce, analyze, test, perform and/or display publicly, prepare derivative
+works, distribute, and otherwise use Python 1.6b1 alone or in any derivative
+version, provided, however, that CNRIs License Agreement is retained in Python
+1.6b1, alone or in any derivative version prepared by Licensee.
+
+Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the
+following text (omitting the quotes): Python 1.6, beta 1, is made available
+subject to the terms and conditions in CNRIs License Agreement. This Agreement
+may be located on the Internet using the following unique, persistent
+identifier (known as a handle): 1895.22/1011. This Agreement may also be
+obtained from a proxy server on the Internet using the
+URL:http://hdl.handle.net/1895.22/1011;.
+
+3. In the event Licensee prepares a derivative work that is based on or
+incorporates Python 1.6b1or any part thereof, and wants to make the derivative
+work available to the public as provided herein, then Licensee hereby agrees to
+indicate in any such work the nature of the modifications made to Python
+1.6b1.
+
+4. CNRI is making Python 1.6b1 available to Licensee on an AS IS basis.
+CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
+EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
+WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
+USE OF PYTHON 1.6b1WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
+
+5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE
+FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
+USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN
+IF ADVISED OF THE POSSIBILITY THEREOF.
+
+6. This License Agreement will automatically terminate upon a material
+breach of its terms and conditions.
+
+7. This License Agreement shall be governed by and interpreted in all
+respects by the law of the State of Virginia, excluding conflict of law
+provisions. Nothing in this License Agreement shall be deemed to create any
+relationship of agency, partnership, or joint venture between CNRI and
+Licensee. This License Agreement does not grant permission to use CNRI
+trademarks or trade name in a trademark sense to endorse or promote products or
+services of Licensee, or any third party.
+
+8. By clicking on the ACCEPT button where indicated, or by copying,
+installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the
+terms and conditions of this License Agreement.
+
+ACCEPT
\ No newline at end of file

Copied: python2-memcached/repos/community-staging-any/PKGBUILD (from rev 95905, 
python2-memcached/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2013-08-18 15:48:44 UTC (rev 95906)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Geoffroy Carrier geoffroy.carr...@aur.archlinux.org
+# Contributor: Nathan Jones nath...@insightbb.com
+
+pkgname=python2-memcached
+pkgdesc='Python interface to 

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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 18:16:15
  Author: bpiotrowski
Revision: 95908

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

Added:
  nodejs/repos/community-i686/PKGBUILD
(from rev 95907, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-x86_64/PKGBUILD
(from rev 95907, nodejs/trunk/PKGBUILD)
Deleted:
  nodejs/repos/community-i686/PKGBUILD
  nodejs/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-18 16:15:52 UTC (rev 95907)
+++ community-i686/PKGBUILD 2013-08-18 16:16:15 UTC (rev 95908)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: James Campos james.r.cam...@gmail.com
-# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Dongsheng Cai dongsheng at moodle dot com
-# Contributor: Masutu Subric masutu.arch at googlemail dot com
-# Contributor: TIanyi Cui tianyi...@gmail.com
-
-pkgname=nodejs
-pkgver=0.10.15
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl')
-makedepends=('python2')
-checkdepends=('curl')
-options=('!emptydirs')
-source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz)
-sha256sums=('87345ab3b96aa02c5250d7b5ae1d80e620e8ae2a7f509f7fa18c4aaa340953e8')
-
-prepare() {
-  cd node-v$pkgver
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_2_' \
--e s_'python'_'python2'_ -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v$pkgver
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---shared-openssl
-
-  make
-}
-
-check() {
-  cd node-v$pkgver
-  make test || true
-}
-
-package() {
-  cd node-v$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  # install docs as per user request
-  install -d $pkgdir/usr/share/doc/nodejs
-  cp -r doc/api/{*.html,assets} \
-$pkgdir/usr/share/doc/nodejs
-
-  install -D -m644 LICENSE \
-$pkgdir/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 95907, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-18 16:16:15 UTC (rev 95908)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: James Campos james.r.cam...@gmail.com
+# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Dongsheng Cai dongsheng at moodle dot com
+# Contributor: Masutu Subric masutu.arch at googlemail dot com
+# Contributor: TIanyi Cui tianyi...@gmail.com
+
+pkgname=nodejs
+pkgver=0.10.16
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl')
+makedepends=('python2')
+checkdepends=('curl')
+options=('!emptydirs')
+source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz)
+sha256sums=('62db6ec83f34733bffdae2f8ee50d7273d568bba8814be29e78a042c1d64f31a')
+
+prepare() {
+  cd node-v$pkgver
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_2_' \
+-e s_'python'_'python2'_ -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v$pkgver
+
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--shared-openssl
+
+  make
+}
+
+check() {
+  cd node-v$pkgver
+  make test || true
+}
+
+package() {
+  cd node-v$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # install docs as per user request
+  install -d $pkgdir/usr/share/doc/nodejs
+  cp -r doc/api/{*.html,assets} \
+$pkgdir/usr/share/doc/nodejs
+
+  install -D -m644 LICENSE \
+$pkgdir/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-18 16:15:52 UTC (rev 95907)
+++ community-x86_64/PKGBUILD   2013-08-18 16:16:15 UTC (rev 95908)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: James Campos james.r.cam...@gmail.com
-# Contributor: BlackEagle  ike DOT 

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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 18:15:52
  Author: bpiotrowski
Revision: 95907

upgpkg: nodejs 0.10.16-1

- new upstream release

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 15:48:44 UTC (rev 95906)
+++ PKGBUILD2013-08-18 16:15:52 UTC (rev 95907)
@@ -8,7 +8,7 @@
 # Contributor: TIanyi Cui tianyi...@gmail.com
 
 pkgname=nodejs
-pkgver=0.10.15
+pkgver=0.10.16
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 checkdepends=('curl')
 options=('!emptydirs')
 source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz)
-sha256sums=('87345ab3b96aa02c5250d7b5ae1d80e620e8ae2a7f509f7fa18c4aaa340953e8')
+sha256sums=('62db6ec83f34733bffdae2f8ee50d7273d568bba8814be29e78a042c1d64f31a')
 
 prepare() {
   cd node-v$pkgver



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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 18:25:45
  Author: arodseth
Revision: 95909

Simplify

Modified:
  freeorion/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 1 insertion(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 16:16:15 UTC (rev 95908)
+++ PKGBUILD2013-08-18 16:25:45 UTC (rev 95909)
@@ -30,18 +30,12 @@
 source=($pkgname.sh
 
$pkgname.png::https://a.fsdn.com/con/icons/fr/freeor...@sf.net/FO_Icon_256x256.png;
 'cmake_python.patch'
-
$pkgname::svn+https://freeorion.svn.sourceforge.net/svnroot/freeorion/trunk/FreeOrion/;)
+
$pkgname::svn+https://freeorion.svn.sourceforge.net/svnroot/freeorion/trunk/FreeOrion/#revision=6344;)
 sha256sums=('25b574af5397226373e24510ce59de94c5df5b31d94562fc0de387fd70731707'
 'a6a253eed31b77b00bf4f721f4b1c6bbd95505b9e4b38b736101e551dd12ff5f'
 '3dbe8df9c3a4a0d6451f42727ebf9bcb21fed41a08d1181d1cf77ef4ab5ee81a'
 'SKIP')
 
-pkgver() {
-  svn upgrade
-  svn up -r $_svnrev
-  echo $pkgver
-}
-
 prepare() {
   cd $pkgname
 



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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 18:26:52
  Author: arodseth
Revision: 95910

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

Added:
  freeorion/repos/community-i686/PKGBUILD
(from rev 95909, freeorion/trunk/PKGBUILD)
  freeorion/repos/community-i686/cmake_python.patch
(from rev 95909, freeorion/trunk/cmake_python.patch)
  freeorion/repos/community-i686/freeorion.install
(from rev 95909, freeorion/trunk/freeorion.install)
  freeorion/repos/community-i686/freeorion.sh
(from rev 95909, freeorion/trunk/freeorion.sh)
  freeorion/repos/community-x86_64/PKGBUILD
(from rev 95909, freeorion/trunk/PKGBUILD)
  freeorion/repos/community-x86_64/cmake_python.patch
(from rev 95909, freeorion/trunk/cmake_python.patch)
  freeorion/repos/community-x86_64/freeorion.install
(from rev 95909, freeorion/trunk/freeorion.install)
  freeorion/repos/community-x86_64/freeorion.sh
(from rev 95909, freeorion/trunk/freeorion.sh)

-+
 community-i686/PKGBUILD |  109 +
 community-i686/cmake_python.patch   |   23 +
 community-i686/freeorion.install|   13 +++
 community-i686/freeorion.sh |  143 ++
 community-x86_64/PKGBUILD   |  109 +
 community-x86_64/cmake_python.patch |   23 +
 community-x86_64/freeorion.install  |   13 +++
 community-x86_64/freeorion.sh   |  143 ++
 8 files changed, 576 insertions(+)

Copied: freeorion/repos/community-i686/PKGBUILD (from rev 95909, 
freeorion/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-18 16:26:52 UTC (rev 95910)
@@ -0,0 +1,109 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Elmo Todurov todu...@gmail.com
+# Contributor: guini sidt...@googlemail.com
+# Contributor: Forrest Loomis cyberc...@gmail.com
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: fana-m gemi...@gmx.net
+
+pkgname=freeorion
+pkgver=0.4.3
+pkgrel=2
+_svnrev=6344
+_pyversion=2.7
+pkgdesc='Turn-based galactic conquest game inspired by Master of Orion'
+arch=('x86_64' 'i686')
+url='http://www.freeorion.org/'
+license=('GPL2')
+if [ $CARCH == x86_64 ]
+then
+  depends=('lib32-nvidia-cg-toolkit')
+else
+  depends=('nvidia-cg-toolkit')
+fi
+depends=('bullet' 'freealut' 'libvorbis' 'python2' 'gigi' 'desktop-file-utils' 
'libgl')
+makedepends=('boost' 'ogre=1.8.1' 'sdl' 'gigi0.8.0-18' 'graphviz' 'mesa-libgl'
+ 'desktop-file-utils' 'setconf' 'cmake' 'gendesk' 'subversion' 
'libogg'
+ 'addinclude')
+options=('!strip' '!emptydirs')
+install=$pkgname.install
+source=($pkgname.sh
+
$pkgname.png::https://a.fsdn.com/con/icons/fr/freeor...@sf.net/FO_Icon_256x256.png;
+'cmake_python.patch'
+
$pkgname::svn+https://freeorion.svn.sourceforge.net/svnroot/freeorion/trunk/FreeOrion/#revision=6344;)
+sha256sums=('25b574af5397226373e24510ce59de94c5df5b31d94562fc0de387fd70731707'
+'a6a253eed31b77b00bf4f721f4b1c6bbd95505b9e4b38b736101e551dd12ff5f'
+'3dbe8df9c3a4a0d6451f42727ebf9bcb21fed41a08d1181d1cf77ef4ab5ee81a'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  # CMake/Python fix...
+  patch -N -p1 -i $srcdir/cmake_python.patch
+
+  # Generate desktop shortcut
+  gendesk -n --pkgname $pkgname --pkgdesc $pkgdesc
+
+  addinclude -n GG/GG/adobe/once.hpp '#include stdint.h'
+  addinclude -n GG/GG/adobe/closed_hash.hpp '#include stdint.h'
+}
+
+build() {
+  cd $pkgname
+
+  # Generating makefiles
+  cmake \
+-DPYTHON_INCLUDE_DIR:PATH=/usr/include/python$_pyversion \
+-DPYTHON_LIBRARY:FILEPATH=/usr/lib/libpython$_pyversion.so \
+-G Unix Makefiles
+  
+  # GLU fix
+  if [ $CARCH == x86_64 ]
+  then
+setconf CMakeCache.txt CMAKE_CXX_FLAGS:STRING \
+  '-march=native -mtune=generic -O2 -fno-var-tracking -pipe 
-fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -lGL -lGLU 
-rpath=/usr/lib '
+  fi
+
+  # Compiling
+  make -j1
+
+  # OGRE fix
+  sed -i 's:PluginFolder=.:PluginFolder=/usr/lib/OGRE/:g' \
+$srcdir/$pkgname/ogre_plugins.cfg
+}
+
+package() {
+  cd $pkgname
+
+  # Binaries
+  install -Dm755 $srcdir/$pkgname.sh $pkgdir/usr/bin/freeorion
+  install -Dm755 freeorion $pkgdir/usr/bin/freeorion.elf
+  install -Dm755 freeorionca $pkgdir/usr/bin/freeorionca
+  install -Dm755 freeoriond $pkgdir/usr/bin/freeoriond
+
+  # Data
+  install -d $pkgdir/usr/share/$pkgname
+  install -d $pkgdir/usr/lib/$pkgname
+  cp -r default $pkgdir/usr/share/$pkgname
+  install -Dm644 OISInput.cfg $pkgdir/usr/share/$pkgname/OISInput.cfg
+
+  # Desktop shortcut and icon
+  install -Dm644 $pkgname.desktop \
+$pkgdir/usr/share/applications/freeorion.desktop
+  install -Dm644 $srcdir/$pkgname.png \
+$pkgdir/usr/share/pixmaps/freeorion.png
+
+  # 

[arch-commits] Commit in boost/trunk (PKGBUILD fix-new-glibc.patch)

2013-08-18 Thread Sven-Hendrik Haase
Date: Sunday, August 18, 2013 @ 18:42:40
  Author: svenstaro
Revision: 193195

upgpkg: boost 1.54.0-3

Add glibc patch, remove with next boost version

Added:
  boost/trunk/fix-new-glibc.patch
Modified:
  boost/trunk/PKGBUILD

-+
 PKGBUILD|   10 ++
 fix-new-glibc.patch |   14 ++
 2 files changed, 20 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 12:18:48 UTC (rev 193194)
+++ PKGBUILD2013-08-18 16:42:40 UTC (rev 193195)
@@ -10,19 +10,20 @@
 pkgname=('boost-libs' 'boost')
 pkgver=1.54.0
 _boostver=${pkgver//./_}
-pkgrel=2
+pkgrel=3
 url=http://www.boost.org/;
 arch=('i686' 'x86_64')
 license=('custom')
 makedepends=('icu=51.1' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
 
source=(http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz
 boost-1.53.0-python3.patch
-boost-1.54.0-Fix-macro-for-int128-detection.patch)
+boost-1.54.0-Fix-macro-for-int128-detection.patch
+fix-new-glibc.patch)
 sha1sums=('069501636097d3f40ddfd996d29748bb23591c53'
   '34026072a7cb2534164f20e77bb71a5c75093307'
-  'bf5177694ab8a0df6bc13aa47b05727c40febebb')
+  'bf5177694ab8a0df6bc13aa47b05727c40febebb'
+  'e3a5fac340c12b39add50070efb439b857108a0b')
 
-
 build() {
export _stagedir=${srcdir}/stagedir
local JOBS=$(sed -e 's/.*\(-j *[0-9]\+\).*/\1/'  ${MAKEFLAGS})
@@ -30,6 +31,7 @@
cd ${srcdir}/${pkgbase}_${_boostver}
 
patch -Np2 -i ../boost-1.54.0-Fix-macro-for-int128-detection.patch
+   patch -Np2 -i ../fix-new-glibc.patch
 
# Fix build errors with python 3
sed -i /PYTHON_ROOT/s/print sys.prefix/print(sys.prefix)/g bootstrap.sh

Added: fix-new-glibc.patch
===
--- fix-new-glibc.patch (rev 0)
+++ fix-new-glibc.patch 2013-08-18 16:42:40 UTC (rev 193195)
@@ -0,0 +1,14 @@
+Index: /trunk/boost/cstdint.hpp
+===
+--- /trunk/boost/cstdint.hpp   (revision 84805)
 /trunk/boost/cstdint.hpp   (revision 84950)
+@@ -42,5 +42,8 @@
+ // See https://svn.boost.org/trac/boost/ticket/3548 and 
http://sources.redhat.com/bugzilla/show_bug.cgi?id=10990
+ //
+-#if defined(BOOST_HAS_STDINT_H)  (!defined(__GLIBC__) || 
defined(__GLIBC_HAVE_LONG_LONG))
++#if defined(BOOST_HAS_STDINT_H)   \
++   (!defined(__GLIBC__) \
++  || defined(__GLIBC_HAVE_LONG_LONG)  \
++  || (defined(__GLIBC__)  ((__GLIBC__  2) || ((__GLIBC__ == 2)  
(__GLIBC_MINOR__ = 17)
+ 
+ // The following #include is an implementation artifact; not part of 
interface.



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

2013-08-18 Thread Sven-Hendrik Haase
Date: Sunday, August 18, 2013 @ 18:43:01
  Author: svenstaro
Revision: 193196

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

Added:
  boost/repos/extra-i686/PKGBUILD
(from rev 193195, boost/trunk/PKGBUILD)
  boost/repos/extra-i686/boost-1.53.0-python3.patch
(from rev 193195, boost/trunk/boost-1.53.0-python3.patch)
  boost/repos/extra-i686/boost-1.54.0-Fix-macro-for-int128-detection.patch
(from rev 193195, 
boost/trunk/boost-1.54.0-Fix-macro-for-int128-detection.patch)
  boost/repos/extra-i686/fix-new-glibc.patch
(from rev 193195, boost/trunk/fix-new-glibc.patch)
  boost/repos/extra-x86_64/PKGBUILD
(from rev 193195, boost/trunk/PKGBUILD)
  boost/repos/extra-x86_64/boost-1.53.0-python3.patch
(from rev 193195, boost/trunk/boost-1.53.0-python3.patch)
  boost/repos/extra-x86_64/boost-1.54.0-Fix-macro-for-int128-detection.patch
(from rev 193195, 
boost/trunk/boost-1.54.0-Fix-macro-for-int128-detection.patch)
  boost/repos/extra-x86_64/fix-new-glibc.patch
(from rev 193195, boost/trunk/fix-new-glibc.patch)
Deleted:
  boost/repos/extra-i686/PKGBUILD
  boost/repos/extra-i686/boost-1.53.0-python3.patch
  boost/repos/extra-i686/boost-1.54.0-Fix-macro-for-int128-detection.patch
  boost/repos/extra-x86_64/PKGBUILD
  boost/repos/extra-x86_64/boost-1.53.0-python3.patch
  boost/repos/extra-x86_64/boost-1.54.0-Fix-macro-for-int128-detection.patch

+
 /PKGBUILD  |  226 
++
 /boost-1.53.0-python3.patch|  192 
 /boost-1.54.0-Fix-macro-for-int128-detection.patch |   70 +++
 extra-i686/PKGBUILD|  111 
 extra-i686/boost-1.53.0-python3.patch  |   96 
 extra-i686/boost-1.54.0-Fix-macro-for-int128-detection.patch   |   35 -
 extra-i686/fix-new-glibc.patch |   14 
 extra-x86_64/PKGBUILD  |  111 
 extra-x86_64/boost-1.53.0-python3.patch|   96 
 extra-x86_64/boost-1.54.0-Fix-macro-for-int128-detection.patch |   35 -
 extra-x86_64/fix-new-glibc.patch   |   14 
 11 files changed, 516 insertions(+), 484 deletions(-)

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


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

2013-08-18 Thread Sven-Hendrik Haase
Date: Sunday, August 18, 2013 @ 19:24:10
  Author: svenstaro
Revision: 95911

upgpkg: gigi 6142-3

Remove boost fix

Modified:
  gigi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 16:26:52 UTC (rev 95910)
+++ PKGBUILD2013-08-18 17:24:10 UTC (rev 95911)
@@ -7,14 +7,14 @@
 
 pkgname=gigi
 pkgver=6142
-pkgrel=2
+pkgrel=3
 pkgdesc='Small, efficient and feature rich GUI for OpenGL and C++ (freeorion 
fork)'
 #url='http://gigi.sourceforge.net/'
 url='http://freeorion.svn.sourceforge.net/viewvc/freeorion/trunk/FreeOrion/GG/'
 arch=('x86_64' 'i686')
 license=('LGPL')
 depends=('boost' 'libpng' 'libtiff' 'ogre' 'sdl' 'python')
-makedepends=('subversion' 'cmake' 'setconf' 'doxygen' 'addinclude' 
'mesa-libgl')
+makedepends=('subversion' 'cmake' 'setconf' 'doxygen' 'mesa-libgl')
 #https://gigi.svn.sourceforge.net/svnroot/gigi/trunk/GG/
 
source=($pkgname::svn+https://freeorion.svn.sourceforge.net/svnroot/freeorion/trunk/FreeOrion/GG/;)
 sha256sums=('SKIP')
@@ -31,7 +31,6 @@
   setconf cmake/GiGiOgre.pc.in prefix /usr
   setconf cmake/GiGi.pc.in prefix /usr
   setconf cmake/GiGiSDL.pc.in prefix /usr
-  addinclude -n GG/adobe/once.hpp '#include stdint.h'
 }
 
 build() {



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

2013-08-18 Thread Sven-Hendrik Haase
Date: Sunday, August 18, 2013 @ 19:24:22
  Author: svenstaro
Revision: 95912

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

Added:
  gigi/repos/community-i686/PKGBUILD
(from rev 95911, gigi/trunk/PKGBUILD)
  gigi/repos/community-x86_64/PKGBUILD
(from rev 95911, gigi/trunk/PKGBUILD)
Deleted:
  gigi/repos/community-i686/PKGBUILD
  gigi/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  120 
 community-i686/PKGBUILD   |   61 --
 community-x86_64/PKGBUILD |   61 --
 3 files changed, 120 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-18 17:24:10 UTC (rev 95911)
+++ community-i686/PKGBUILD 2013-08-18 17:24:22 UTC (rev 95912)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: fana-m gemi...@gmx.net
-# Contributor: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Manuel Gaul inka...@hotmail.com
-
-pkgname=gigi
-pkgver=6142
-pkgrel=2
-pkgdesc='Small, efficient and feature rich GUI for OpenGL and C++ (freeorion 
fork)'
-#url='http://gigi.sourceforge.net/'
-url='http://freeorion.svn.sourceforge.net/viewvc/freeorion/trunk/FreeOrion/GG/'
-arch=('x86_64' 'i686')
-license=('LGPL')
-depends=('boost' 'libpng' 'libtiff' 'ogre' 'sdl' 'python')
-makedepends=('subversion' 'cmake' 'setconf' 'doxygen' 'addinclude' 
'mesa-libgl')
-#https://gigi.svn.sourceforge.net/svnroot/gigi/trunk/GG/
-source=($pkgname::svn+https://freeorion.svn.sourceforge.net/svnroot/freeorion/trunk/FreeOrion/GG/;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-
-  svnversion | tr -d [A-z]
-}
-
-prepare() {
-  cd $pkgname
-
-  setconf cmake/GiGiOgre.pc.in prefix /usr
-  setconf cmake/GiGi.pc.in prefix /usr
-  setconf cmake/GiGiSDL.pc.in prefix /usr
-  addinclude -n GG/adobe/once.hpp '#include stdint.h'
-}
-
-build() {
-  cd $pkgname
-
-  cmake \
--D CMAKE_INSTALL_PREFIX=$srcdir/pkg/usr \
--D BUILD_TUTORIALS=OFF \
--D CPACK_GENERATOR=GiGiDevel \
--D CMAKE_C_FLAGS_RELEASE='-DNDEBUG' \
-.
-  make -j1
-}
-
-package() {
-  cd $pkgname
-
-  make install
-  mv -v $srcdir/pkg/usr $pkgdir/
-
-  # python3 fix
-  for f in `find $pkgdir/usr -name *.py`; do
-sed -i s:/env python:/python3:g $f
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gigi/repos/community-i686/PKGBUILD (from rev 95911, gigi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-18 17:24:22 UTC (rev 95912)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: fana-m gemi...@gmx.net
+# Contributor: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Manuel Gaul inka...@hotmail.com
+
+pkgname=gigi
+pkgver=6142
+pkgrel=3
+pkgdesc='Small, efficient and feature rich GUI for OpenGL and C++ (freeorion 
fork)'
+#url='http://gigi.sourceforge.net/'
+url='http://freeorion.svn.sourceforge.net/viewvc/freeorion/trunk/FreeOrion/GG/'
+arch=('x86_64' 'i686')
+license=('LGPL')
+depends=('boost' 'libpng' 'libtiff' 'ogre' 'sdl' 'python')
+makedepends=('subversion' 'cmake' 'setconf' 'doxygen' 'mesa-libgl')
+#https://gigi.svn.sourceforge.net/svnroot/gigi/trunk/GG/
+source=($pkgname::svn+https://freeorion.svn.sourceforge.net/svnroot/freeorion/trunk/FreeOrion/GG/;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+
+  svnversion | tr -d [A-z]
+}
+
+prepare() {
+  cd $pkgname
+
+  setconf cmake/GiGiOgre.pc.in prefix /usr
+  setconf cmake/GiGi.pc.in prefix /usr
+  setconf cmake/GiGiSDL.pc.in prefix /usr
+}
+
+build() {
+  cd $pkgname
+
+  cmake \
+-D CMAKE_INSTALL_PREFIX=$srcdir/pkg/usr \
+-D BUILD_TUTORIALS=OFF \
+-D CPACK_GENERATOR=GiGiDevel \
+-D CMAKE_C_FLAGS_RELEASE='-DNDEBUG' \
+.
+  make -j1
+}
+
+package() {
+  cd $pkgname
+
+  make install
+  mv -v $srcdir/pkg/usr $pkgdir/
+
+  # python3 fix
+  for f in `find $pkgdir/usr -name *.py`; do
+sed -i s:/env python:/python3:g $f
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-18 17:24:10 UTC (rev 95911)
+++ community-x86_64/PKGBUILD   2013-08-18 17:24:22 UTC (rev 95912)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: fana-m gemi...@gmx.net
-# Contributor: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Manuel Gaul inka...@hotmail.com
-
-pkgname=gigi
-pkgver=6142
-pkgrel=2
-pkgdesc='Small, efficient and feature rich GUI for OpenGL and C++ (freeorion 
fork)'
-#url='http://gigi.sourceforge.net/'

[arch-commits] Commit in (5 files)

2013-08-18 Thread speps
Date: Sunday, August 18, 2013 @ 19:24:45
  Author: speps
Revision: 95913

addpkg: v4l2ucp 2.0.2-1

Added:
  v4l2ucp/
  v4l2ucp/repos/
  v4l2ucp/trunk/
  v4l2ucp/trunk/PKGBUILD
  v4l2ucp/trunk/v4l2ucp.install

-+
 PKGBUILD|   35 +++
 v4l2ucp.install |   11 +++
 2 files changed, 46 insertions(+)

Added: v4l2ucp/trunk/PKGBUILD
===
--- v4l2ucp/trunk/PKGBUILD  (rev 0)
+++ v4l2ucp/trunk/PKGBUILD  2013-08-18 17:24:45 UTC (rev 95913)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Xavion Xavion (dot) 0 (at) Gmail (dot) com
+# Contributor: Giovanni Scafora linuxma...@gmail.com
+
+pkgname=v4l2ucp
+pkgver=2.0.2
+pkgrel=1
+pkgdesc=A universal control panel for Video for Linux Two (V4L2) devices
+arch=('i686' 'x86_64')
+url=http://v4l2ucp.sourceforge.net/;
+license=('GPL')
+depends=('qt4' 'v4l-utils')
+optdepends=('mplayer: video preview')
+makedepends=('cmake')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2;)
+md5sums=('e5bc6e71e2cd3ab123c277b2f7154b4f')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  # use videodev2.h header
+  sed -i 's|\(videodev\)\.|\12\.|' src/v4l2ctrl.c
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}


Property changes on: v4l2ucp/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: v4l2ucp/trunk/v4l2ucp.install
===
--- v4l2ucp/trunk/v4l2ucp.install   (rev 0)
+++ v4l2ucp/trunk/v4l2ucp.install   2013-08-18 17:24:45 UTC (rev 95913)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 19:26:50
  Author: arodseth
Revision: 95914

upgpkg: python2-memcached 1.53-3

Modified:
  python2-memcached/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:24:45 UTC (rev 95913)
+++ PKGBUILD2013-08-18 17:26:50 UTC (rev 95914)
@@ -7,7 +7,7 @@
 pkgname=python2-memcached
 pkgdesc='Python interface to memcached'
 pkgver=1.53
-pkgrel=2
+pkgrel=3
 depends=('python2')
 url='https://bugs.launchpad.net/python-memcached'
 arch=('any')



[arch-commits] Commit in python2-memcached/repos/community-staging-any (4 files)

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 19:26:57
  Author: arodseth
Revision: 95915

archrelease: copy trunk to community-staging-any

Added:
  python2-memcached/repos/community-staging-any/LICENSE
(from rev 95914, python2-memcached/trunk/LICENSE)
  python2-memcached/repos/community-staging-any/PKGBUILD
(from rev 95914, python2-memcached/trunk/PKGBUILD)
Deleted:
  python2-memcached/repos/community-staging-any/LICENSE
  python2-memcached/repos/community-staging-any/PKGBUILD

--+
 LICENSE  |  122 ++---
 PKGBUILD |   80 
 2 files changed, 101 insertions(+), 101 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2013-08-18 17:26:50 UTC (rev 95914)
+++ LICENSE 2013-08-18 17:26:57 UTC (rev 95915)
@@ -1,61 +0,0 @@
-IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.
-
-BY CLICKING ON ACCEPT WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR
-OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO
-THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT.
-
-1. This LICENSE AGREEMENT is between the Corporation for National Research
-Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191
-(CNRI), and the Individual or Organization (Licensee) accessing and
-otherwise using Python 1.6, beta 1 software in source or binary form and its
-associated documentation, as released at the www.python.org Internet site on
-August 4, 2000 (Python 1.6b1).
-
-2. Subject to the terms and conditions of this License Agreement, CNRI
-hereby grants Licensee a non-exclusive, royalty-free, world-wide license to
-reproduce, analyze, test, perform and/or display publicly, prepare derivative
-works, distribute, and otherwise use Python 1.6b1 alone or in any derivative
-version, provided, however, that CNRIs License Agreement is retained in Python
-1.6b1, alone or in any derivative version prepared by Licensee.
-
-Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the
-following text (omitting the quotes): Python 1.6, beta 1, is made available
-subject to the terms and conditions in CNRIs License Agreement. This Agreement
-may be located on the Internet using the following unique, persistent
-identifier (known as a handle): 1895.22/1011. This Agreement may also be
-obtained from a proxy server on the Internet using the
-URL:http://hdl.handle.net/1895.22/1011;.
-
-3. In the event Licensee prepares a derivative work that is based on or
-incorporates Python 1.6b1or any part thereof, and wants to make the derivative
-work available to the public as provided herein, then Licensee hereby agrees to
-indicate in any such work the nature of the modifications made to Python
-1.6b1.
-
-4. CNRI is making Python 1.6b1 available to Licensee on an AS IS basis.
-CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
-EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
-WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
-USE OF PYTHON 1.6b1WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
-
-5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE
-FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
-USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN
-IF ADVISED OF THE POSSIBILITY THEREOF.
-
-6. This License Agreement will automatically terminate upon a material
-breach of its terms and conditions.
-
-7. This License Agreement shall be governed by and interpreted in all
-respects by the law of the State of Virginia, excluding conflict of law
-provisions. Nothing in this License Agreement shall be deemed to create any
-relationship of agency, partnership, or joint venture between CNRI and
-Licensee. This License Agreement does not grant permission to use CNRI
-trademarks or trade name in a trademark sense to endorse or promote products or
-services of Licensee, or any third party.
-
-8. By clicking on the ACCEPT button where indicated, or by copying,
-installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the
-terms and conditions of this License Agreement.
-
-ACCEPT
\ No newline at end of file

Copied: python2-memcached/repos/community-staging-any/LICENSE (from rev 95914, 
python2-memcached/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2013-08-18 17:26:57 UTC (rev 95915)
@@ -0,0 +1,61 @@
+IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY.
+
+BY CLICKING ON ACCEPT WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR
+OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO
+THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT.
+
+1. This LICENSE AGREEMENT is between the Corporation for National Research
+Initiatives, having an office at 1895 

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

2013-08-18 Thread Andreas Radke
Date: Sunday, August 18, 2013 @ 19:26:27
  Author: andyrtr
Revision: 193197

upgpkg: java7-openjdk 7.u40_2.4.1-3

symlink license to sub packages

Modified:
  java7-openjdk/trunk/PKGBUILD

--+
 PKGBUILD |   13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 16:43:01 UTC (rev 193196)
+++ PKGBUILD2013-08-18 17:26:27 UTC (rev 193197)
@@ -23,7 +23,7 @@
 _bootstrap=0 # 0/1 for quick build or full bootstrap
 
 pkgver=${_java_ver}.${_updatever}_${_icedtea_ver}
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url=http://icedtea.classpath.org;
 license=('custom')
@@ -207,6 +207,9 @@
   install -m755 -d ${pkgdir}/usr/share/licenses/${pkgbase}/
   install -m644 ASSEMBLY_EXCEPTION LICENSE THIRD_PARTY_README \
  ${pkgdir}/usr/share/licenses/${pkgbase}
+
+  # link license
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
 
   # Put some more files under backup control
   install -m755 -d ${pkgdir}/etc/java-7-openjdk/
@@ -273,6 +276,10 @@
   # Install desktop files.
   install -m755 -d ${pkgdir}/usr/share/applications
   install -m644 ${srcdir}/icedtea-${_icedtea_ver}/policytool.desktop 
${pkgdir}/usr/share/applications
+
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
 }
 
 package_jdk7-openjdk() {
@@ -327,6 +334,10 @@
 
   # Temporarily fixing FS#35141
   chmod go+r ${pkgdir}/usr/lib/jvm/java-7-openjdk/lib/sa-jdi.jar
+
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
 }
 
 package_openjdk7-src() {



[arch-commits] Commit in java7-openjdk/repos (36 files)

2013-08-18 Thread Andreas Radke
Date: Sunday, August 18, 2013 @ 19:27:18
  Author: andyrtr
Revision: 193198

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

Added:
  java7-openjdk/repos/extra-i686/PKGBUILD
(from rev 193197, java7-openjdk/trunk/PKGBUILD)
  java7-openjdk/repos/extra-i686/fontconfig-paths.diff
(from rev 193197, java7-openjdk/trunk/fontconfig-paths.diff)
  java7-openjdk/repos/extra-i686/jdk7-openjdk.profile
(from rev 193197, java7-openjdk/trunk/jdk7-openjdk.profile)
  java7-openjdk/repos/extra-i686/jdk7-openjdk.profile.csh
(from rev 193197, java7-openjdk/trunk/jdk7-openjdk.profile.csh)
  java7-openjdk/repos/extra-i686/jre7-openjdk-headless.install
(from rev 193197, java7-openjdk/trunk/jre7-openjdk-headless.install)
  java7-openjdk/repos/extra-i686/jre7-openjdk.install
(from rev 193197, java7-openjdk/trunk/jre7-openjdk.install)
  java7-openjdk/repos/extra-i686/jre7-openjdk.profile
(from rev 193197, java7-openjdk/trunk/jre7-openjdk.profile)
  java7-openjdk/repos/extra-i686/jre7-openjdk.profile.csh
(from rev 193197, java7-openjdk/trunk/jre7-openjdk.profile.csh)
  java7-openjdk/repos/extra-i686/openjdk7_nonreparenting-wm.diff
(from rev 193197, java7-openjdk/trunk/openjdk7_nonreparenting-wm.diff)
  java7-openjdk/repos/extra-x86_64/PKGBUILD
(from rev 193197, java7-openjdk/trunk/PKGBUILD)
  java7-openjdk/repos/extra-x86_64/fontconfig-paths.diff
(from rev 193197, java7-openjdk/trunk/fontconfig-paths.diff)
  java7-openjdk/repos/extra-x86_64/jdk7-openjdk.profile
(from rev 193197, java7-openjdk/trunk/jdk7-openjdk.profile)
  java7-openjdk/repos/extra-x86_64/jdk7-openjdk.profile.csh
(from rev 193197, java7-openjdk/trunk/jdk7-openjdk.profile.csh)
  java7-openjdk/repos/extra-x86_64/jre7-openjdk-headless.install
(from rev 193197, java7-openjdk/trunk/jre7-openjdk-headless.install)
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.install
(from rev 193197, java7-openjdk/trunk/jre7-openjdk.install)
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.profile
(from rev 193197, java7-openjdk/trunk/jre7-openjdk.profile)
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.profile.csh
(from rev 193197, java7-openjdk/trunk/jre7-openjdk.profile.csh)
  java7-openjdk/repos/extra-x86_64/openjdk7_nonreparenting-wm.diff
(from rev 193197, java7-openjdk/trunk/openjdk7_nonreparenting-wm.diff)
Deleted:
  java7-openjdk/repos/extra-i686/PKGBUILD
  java7-openjdk/repos/extra-i686/fontconfig-paths.diff
  java7-openjdk/repos/extra-i686/jdk7-openjdk.profile
  java7-openjdk/repos/extra-i686/jdk7-openjdk.profile.csh
  java7-openjdk/repos/extra-i686/jre7-openjdk-headless.install
  java7-openjdk/repos/extra-i686/jre7-openjdk.install
  java7-openjdk/repos/extra-i686/jre7-openjdk.profile
  java7-openjdk/repos/extra-i686/jre7-openjdk.profile.csh
  java7-openjdk/repos/extra-i686/openjdk7_nonreparenting-wm.diff
  java7-openjdk/repos/extra-x86_64/PKGBUILD
  java7-openjdk/repos/extra-x86_64/fontconfig-paths.diff
  java7-openjdk/repos/extra-x86_64/jdk7-openjdk.profile
  java7-openjdk/repos/extra-x86_64/jdk7-openjdk.profile.csh
  java7-openjdk/repos/extra-x86_64/jre7-openjdk-headless.install
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.install
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.profile
  java7-openjdk/repos/extra-x86_64/jre7-openjdk.profile.csh
  java7-openjdk/repos/extra-x86_64/openjdk7_nonreparenting-wm.diff

--+
 /PKGBUILD|  716 +
 /fontconfig-paths.diff   |  268 +
 /jdk7-openjdk.profile|2 
 /jdk7-openjdk.profile.csh|2 
 /jre7-openjdk-headless.install   |   22 
 /jre7-openjdk.install|   36 +
 /jre7-openjdk.profile|8 
 /jre7-openjdk.profile.csh|8 
 /openjdk7_nonreparenting-wm.diff |  116 
 extra-i686/PKGBUILD  |  347 
 extra-i686/fontconfig-paths.diff |  134 
 extra-i686/jdk7-openjdk.profile  |1 
 extra-i686/jdk7-openjdk.profile.csh  |1 
 extra-i686/jre7-openjdk-headless.install |   11 
 extra-i686/jre7-openjdk.install  |   18 
 extra-i686/jre7-openjdk.profile  |4 
 extra-i686/jre7-openjdk.profile.csh  |4 
 extra-i686/openjdk7_nonreparenting-wm.diff   |   58 --
 extra-x86_64/PKGBUILD|  347 
 extra-x86_64/fontconfig-paths.diff   |  134 
 extra-x86_64/jdk7-openjdk.profile|1 
 extra-x86_64/jdk7-openjdk.profile.csh|1 
 extra-x86_64/jre7-openjdk-headless.install   |   11 
 extra-x86_64/jre7-openjdk.install|   18 
 extra-x86_64/jre7-openjdk.profile|4 
 extra-x86_64/jre7-openjdk.profile.csh|4 
 extra-x86_64/openjdk7_nonreparenting-wm.diff |   58 --
 27 files changed, 1178 

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

2013-08-18 Thread speps
Date: Sunday, August 18, 2013 @ 19:31:10
  Author: speps
Revision: 95916

upgpkg: v4l2ucp 2.0.2-1

Modified:
  v4l2ucp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:26:57 UTC (rev 95915)
+++ PKGBUILD2013-08-18 17:31:10 UTC (rev 95916)
@@ -20,7 +20,7 @@
 prepare() {
   cd $srcdir/$pkgname-$pkgver
   # use videodev2.h header
-  sed -i 's|\(videodev\)\.|\12\.|' src/v4l2ctrl.c
+  sed -i 's/videodev/2/' src/v4l2ctrl.c
 }
 
 build() {



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

2013-08-18 Thread speps
Date: Sunday, August 18, 2013 @ 19:31:41
  Author: speps
Revision: 95917

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

Added:
  v4l2ucp/repos/community-i686/
  v4l2ucp/repos/community-i686/PKGBUILD
(from rev 95916, v4l2ucp/trunk/PKGBUILD)
  v4l2ucp/repos/community-i686/v4l2ucp.install
(from rev 95916, v4l2ucp/trunk/v4l2ucp.install)
  v4l2ucp/repos/community-x86_64/
  v4l2ucp/repos/community-x86_64/PKGBUILD
(from rev 95916, v4l2ucp/trunk/PKGBUILD)
  v4l2ucp/repos/community-x86_64/v4l2ucp.install
(from rev 95916, v4l2ucp/trunk/v4l2ucp.install)

--+
 community-i686/PKGBUILD  |   35 +++
 community-i686/v4l2ucp.install   |   11 +++
 community-x86_64/PKGBUILD|   35 +++
 community-x86_64/v4l2ucp.install |   11 +++
 4 files changed, 92 insertions(+)

Copied: v4l2ucp/repos/community-i686/PKGBUILD (from rev 95916, 
v4l2ucp/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-18 17:31:41 UTC (rev 95917)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Xavion Xavion (dot) 0 (at) Gmail (dot) com
+# Contributor: Giovanni Scafora linuxma...@gmail.com
+
+pkgname=v4l2ucp
+pkgver=2.0.2
+pkgrel=1
+pkgdesc=A universal control panel for Video for Linux Two (V4L2) devices
+arch=('i686' 'x86_64')
+url=http://v4l2ucp.sourceforge.net/;
+license=('GPL')
+depends=('qt4' 'v4l-utils')
+optdepends=('mplayer: video preview')
+makedepends=('cmake')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2;)
+md5sums=('e5bc6e71e2cd3ab123c277b2f7154b4f')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  # use videodev2.h header
+  sed -i 's/videodev/2/' src/v4l2ctrl.c
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}

Copied: v4l2ucp/repos/community-i686/v4l2ucp.install (from rev 95916, 
v4l2ucp/trunk/v4l2ucp.install)
===
--- community-i686/v4l2ucp.install  (rev 0)
+++ community-i686/v4l2ucp.install  2013-08-18 17:31:41 UTC (rev 95917)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: v4l2ucp/repos/community-x86_64/PKGBUILD (from rev 95916, 
v4l2ucp/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-08-18 17:31:41 UTC (rev 95917)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Xavion Xavion (dot) 0 (at) Gmail (dot) com
+# Contributor: Giovanni Scafora linuxma...@gmail.com
+
+pkgname=v4l2ucp
+pkgver=2.0.2
+pkgrel=1
+pkgdesc=A universal control panel for Video for Linux Two (V4L2) devices
+arch=('i686' 'x86_64')
+url=http://v4l2ucp.sourceforge.net/;
+license=('GPL')
+depends=('qt4' 'v4l-utils')
+optdepends=('mplayer: video preview')
+makedepends=('cmake')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2;)
+md5sums=('e5bc6e71e2cd3ab123c277b2f7154b4f')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  # use videodev2.h header
+  sed -i 's/videodev/2/' src/v4l2ctrl.c
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}

Copied: v4l2ucp/repos/community-x86_64/v4l2ucp.install (from rev 95916, 
v4l2ucp/trunk/v4l2ucp.install)
===
--- community-x86_64/v4l2ucp.install(rev 0)
+++ community-x86_64/v4l2ucp.install2013-08-18 17:31:41 UTC (rev 95917)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 19:34:12
  Author: bpiotrowski
Revision: 95918

upgpkg: mupdf 1.3-2

- install mupdf-x11-curl as /usr/bin/mupdf (fixes FS#36567)
- remove /usr/bin/mupdf-x11

Modified:
  mupdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:31:41 UTC (rev 95917)
+++ PKGBUILD2013-08-18 17:34:12 UTC (rev 95918)
@@ -7,7 +7,7 @@
 
 pkgname=mupdf
 pkgver=1.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight PDF and XPS viewer'
 arch=('i686' 'x86_64')
 url='http://mupdf.com'
@@ -22,13 +22,16 @@
   CXXFLAGS+=' -fPIC'
 
   cd $pkgname-$pkgver-source
-  make build=release
+  make build=release CURL_LIBS='-lcurl -lpthread'
 }
 
 package() {
   cd $pkgname-$pkgver-source
   make build=release prefix=$pkgdir/usr install
 
+  mv $pkgdir/usr/bin/mupdf-x11-curl $pkgdir/usr/bin/mupdf
+  rm $pkgdir/usr/bin/mupdf-x11
+
   cd platform/debian
   sed -i 's/mupdf.xpm/mupdf/' mupdf.desktop
   sed -i 's/application\/x-pdf/application\/x-pdf/' mupdf.desktop



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

2013-08-18 Thread Bartłomiej Piotrowski
Date: Sunday, August 18, 2013 @ 19:34:31
  Author: bpiotrowski
Revision: 95919

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

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

+
 /PKGBUILD  |   84 +++
 /mupdf.install |   24 +++
 community-i686/PKGBUILD|   39 --
 community-i686/mupdf.install   |   12 -
 community-x86_64/PKGBUILD  |   39 --
 community-x86_64/mupdf.install |   12 -
 6 files changed, 108 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-18 17:34:12 UTC (rev 95918)
+++ community-i686/PKGBUILD 2013-08-18 17:34:31 UTC (rev 95919)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Brad Fanella bradfane...@archlinux.us
-# Contributor: Stefan Husmann stefan-husm...@t-online.de
-# Contributor: Pierre-Paul Paquin pierrepaulpaq...@gmail.com
-# Contributor: xduugu
-
-pkgname=mupdf
-pkgver=1.3
-pkgrel=1
-pkgdesc='Lightweight PDF and XPS viewer'
-arch=('i686' 'x86_64')
-url='http://mupdf.com'
-license=('GPL3')
-depends=('desktop-file-utils' 'libxext' 'openssl')
-install=mupdf.install
-source=(https://mupdf.googlecode.com/files/$pkgname-$pkgver-source.tar.gz)
-sha256sums=('aba8b31bee9cc0a16abedab5e31c81c65996cba5591e62a50a79bea2a63d4478')
-
-build() {
-  CFLAGS+=' -fPIC'
-  CXXFLAGS+=' -fPIC'
-
-  cd $pkgname-$pkgver-source
-  make build=release
-}
-
-package() {
-  cd $pkgname-$pkgver-source
-  make build=release prefix=$pkgdir/usr install
-
-  cd platform/debian
-  sed -i 's/mupdf.xpm/mupdf/' mupdf.desktop
-  sed -i 's/application\/x-pdf/application\/x-pdf/' mupdf.desktop
-  install -Dm644 mupdf.desktop $pkgdir/usr/share/applications/mupdf.desktop
-  install -Dm644 mupdf.xpm $pkgdir/usr/share/pixmaps/mupdf.xpm
-
-  chmod 644 $pkgdir/usr/lib/libmupdf{,-js-none}.a
-}

Copied: mupdf/repos/community-i686/PKGBUILD (from rev 95918, 
mupdf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-18 17:34:31 UTC (rev 95919)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Brad Fanella bradfane...@archlinux.us
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Pierre-Paul Paquin pierrepaulpaq...@gmail.com
+# Contributor: xduugu
+
+pkgname=mupdf
+pkgver=1.3
+pkgrel=2
+pkgdesc='Lightweight PDF and XPS viewer'
+arch=('i686' 'x86_64')
+url='http://mupdf.com'
+license=('GPL3')
+depends=('desktop-file-utils' 'libxext' 'openssl')
+install=mupdf.install
+source=(https://mupdf.googlecode.com/files/$pkgname-$pkgver-source.tar.gz)
+sha256sums=('aba8b31bee9cc0a16abedab5e31c81c65996cba5591e62a50a79bea2a63d4478')
+
+build() {
+  CFLAGS+=' -fPIC'
+  CXXFLAGS+=' -fPIC'
+
+  cd $pkgname-$pkgver-source
+  make build=release CURL_LIBS='-lcurl -lpthread'
+}
+
+package() {
+  cd $pkgname-$pkgver-source
+  make build=release prefix=$pkgdir/usr install
+
+  mv $pkgdir/usr/bin/mupdf-x11-curl $pkgdir/usr/bin/mupdf
+  rm $pkgdir/usr/bin/mupdf-x11
+
+  cd platform/debian
+  sed -i 's/mupdf.xpm/mupdf/' mupdf.desktop
+  sed -i 's/application\/x-pdf/application\/x-pdf/' mupdf.desktop
+  install -Dm644 mupdf.desktop $pkgdir/usr/share/applications/mupdf.desktop
+  install -Dm644 mupdf.xpm $pkgdir/usr/share/pixmaps/mupdf.xpm
+
+  chmod 644 $pkgdir/usr/lib/libmupdf{,-js-none}.a
+}

Deleted: community-i686/mupdf.install
===
--- community-i686/mupdf.install2013-08-18 17:34:12 UTC (rev 95918)
+++ community-i686/mupdf.install2013-08-18 17:34:31 UTC (rev 95919)
@@ -1,12 +0,0 @@
-post_install() {
-   update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}
-

Copied: mupdf/repos/community-i686/mupdf.install (from rev 95918, 
mupdf/trunk/mupdf.install)
===
--- community-i686/mupdf.install(rev 0)
+++ community-i686/mupdf.install2013-08-18 17:34:31 UTC (rev 95919)
@@ -0,0 +1,12 @@
+post_install() {
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+

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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 19:38:52
  Author: arodseth
Revision: 95920

setuptools TODO fix

Modified:
  python-pymongo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:34:31 UTC (rev 95919)
+++ PKGBUILD2013-08-18 17:38:52 UTC (rev 95920)
@@ -6,12 +6,12 @@
 pkgbase=python-pymongo
 pkgname=('python-pymongo' 'python2-pymongo')
 pkgver=2.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Python driver for MongoDB'
 arch=('x86_64' 'i686')
 license=('APACHE')
 url='http://pypi.python.org/pypi/pymongo/'
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 
source=(http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
 sha256sums=('84ac1da67d0dabc711fa8259324d4e94b26a85411bcf0c12dc80a427d9f93ecc')
 



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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 19:53:33
  Author: arodseth
Revision: 95921

setuptools TODO fix

Modified:
  python2-rst2pdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:38:52 UTC (rev 95920)
+++ PKGBUILD2013-08-18 17:53:33 UTC (rev 95921)
@@ -5,12 +5,12 @@
 
 pkgname=python2-rst2pdf
 pkgver=0.93
-pkgrel=4
+pkgrel=5
 pkgdesc='Create PDFs from simple text markup, no LaTeX required'
 arch=('any')
 url='http://rst2pdf.googlecode.com/'
 license=('MIT')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 depends=('python2-docutils' 'python2-reportlab' 'python2-pygments' 
'python2-pdfrw')
 optdepends=('uniconvertor: vector images support'
 #'python2-svglib: some SVG support'



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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 19:54:54
  Author: arodseth
Revision: 95922

setuptools TODO fix

Modified:
  python-simplejson/trunk/PKGBUILD
Deleted:
  python-simplejson/trunk/python-simplejson.changelog

-+
 PKGBUILD|4 ++--
 python-simplejson.changelog |   20 
 2 files changed, 2 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:53:33 UTC (rev 95921)
+++ PKGBUILD2013-08-18 17:54:54 UTC (rev 95922)
@@ -7,12 +7,12 @@
 pkgbase=python-simplejson
 pkgname=($pkgbase 'python2-simplejson')
 pkgver=3.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
 license=('MIT')
 arch=('x86_64' 'i686')
 url='http://undefined.org/python/#simplejson'
-makedepends=('python' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver};)
 sha256sums=('ed7e700a9b689f81e54738d796ce456eca12481412f198d44d42f69d8d6f9a82')
 

Deleted: python-simplejson.changelog
===
--- python-simplejson.changelog 2013-08-18 17:53:33 UTC (rev 95921)
+++ python-simplejson.changelog 2013-08-18 17:54:54 UTC (rev 95922)
@@ -1,20 +0,0 @@
-2012-07-09 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * python-simplejson 2.6.1-1
-
-2012-05-24 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * python-simplejson 2.5.2-1
-
-2012-03-08 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * python-simplejson 2.3.3-1
-
-2011-10-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * python-simplejson 2.2.1-1
-
-2011-05-01 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * python-simplejson 2.1.3-1
-
-2010-05-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * Update to major release 2.1.1
-
-2010-03-27 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * Update to major release 2.1.0



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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 19:56:52
  Author: arodseth
Revision: 95923

setuptools TODO fix

Modified:
  python2-sqlobject/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:54:54 UTC (rev 95922)
+++ PKGBUILD2013-08-18 17:56:52 UTC (rev 95923)
@@ -6,13 +6,13 @@
 
 pkgname=python2-sqlobject
 pkgver=1.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Provides an object interface to your database'
 arch=('any')
 license=('LGPL')
 url='http://sqlobject.org/'
 depends=('python2-formencode')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 optdepends=('python2-psycopg2: PostgreSQL database support'
 'python2-pysqlite-legacy: SQLite database support')
 
source=(https://pypi.python.org/packages/source/S/SQLObject/SQLObject-$pkgver.tar.gz;)



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

2013-08-18 Thread Alexander Rødseth
Date: Sunday, August 18, 2013 @ 19:58:16
  Author: arodseth
Revision: 95924

setuptools TODO fix

Modified:
  python2-tagpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:56:52 UTC (rev 95923)
+++ PKGBUILD2013-08-18 17:58:16 UTC (rev 95924)
@@ -6,13 +6,13 @@
 
 pkgname=python2-tagpy
 pkgver=0.94.8
-pkgrel=4
+pkgrel=5
 pkgdesc='Python bindings for TagLib'
 arch=('x86_64' 'i686')
 url='http://pypi.python.org/pypi/tagpy'
 license=('MIT')
 depends=('python2' 'taglib' 'boost-libs')
-makedepends=('python2-distribute' 'boost')
+makedepends=('python2-setuptools' 'boost')
 replaces=('tagpy')
 conflicts=('tagpy')
 source=(http://pypi.python.org/packages/source/t/tagpy/tagpy-$pkgver.tar.gz;



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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 00:26:48
  Author: alucryd
Revision: 95926

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

Added:
  higan-gtk/repos/community-i686/PKGBUILD
(from rev 95925, higan-gtk/trunk/PKGBUILD)
  higan-gtk/repos/community-i686/higan
(from rev 95925, higan-gtk/trunk/higan)
  higan-gtk/repos/community-i686/higan.desktop
(from rev 95925, higan-gtk/trunk/higan.desktop)
  higan-gtk/repos/community-i686/purify.desktop
(from rev 95925, higan-gtk/trunk/purify.desktop)
  higan-gtk/repos/community-x86_64/PKGBUILD
(from rev 95925, higan-gtk/trunk/PKGBUILD)
  higan-gtk/repos/community-x86_64/higan
(from rev 95925, higan-gtk/trunk/higan)
  higan-gtk/repos/community-x86_64/higan.desktop
(from rev 95925, higan-gtk/trunk/higan.desktop)
  higan-gtk/repos/community-x86_64/purify.desktop
(from rev 95925, higan-gtk/trunk/purify.desktop)
Deleted:
  higan-gtk/repos/community-i686/PKGBUILD
  higan-gtk/repos/community-i686/higan
  higan-gtk/repos/community-i686/higan.desktop
  higan-gtk/repos/community-i686/purify.desktop
  higan-gtk/repos/community-x86_64/PKGBUILD
  higan-gtk/repos/community-x86_64/higan
  higan-gtk/repos/community-x86_64/higan.desktop
  higan-gtk/repos/community-x86_64/purify.desktop

-+
 /PKGBUILD   |  164 ++
 /higan  |   26 ++
 /higan.desktop  |   16 +++
 /purify.desktop |   16 +++
 community-i686/PKGBUILD |   74 -
 community-i686/higan|   13 ---
 community-i686/higan.desktop|8 -
 community-i686/purify.desktop   |8 -
 community-x86_64/PKGBUILD   |   74 -
 community-x86_64/higan  |   13 ---
 community-x86_64/higan.desktop  |8 -
 community-x86_64/purify.desktop |8 -
 12 files changed, 222 insertions(+), 206 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-18 22:26:31 UTC (rev 95925)
+++ community-i686/PKGBUILD 2013-08-18 22:26:48 UTC (rev 95926)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-
-pkgname=higan-gtk
-pkgver=092
-pkgrel=4
-pkgdesc=Nintendo multi-system emulator - GTK version
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/higan/;
-license=('GPL3')
-depends=('libao' 'libpulse' 'libxv' 'openal' 'sdl' 'xdialog')
-makedepends=('mesa')
-optdepends=('beat: Delta patcher')
-conflicts=('higan-qt')
-source=(http://higan.googlecode.com/files/higan_v${pkgver}-source.tar.xz; 
http://higan.googlecode.com/files/purify_v03-source.tar.xz; 'higan' 
'higan.desktop' 'purify.desktop')
-sha1sums=('a205005f118f6e138065af6e0d14ed990b8f1ce1'
-  '2aa16f492c879d2cc1d4ffa28f4729a5ed5bb1c3'
-  '931baedc3bbdd343d2decda72c13b7d0efdcba3c'
-  '55f4de0a65d6428840d013f9b003d88158c131c7'
-  '093643998a2fb676d795c316e35d49cf6293ce86')
-
-_profiles=accuracy balanced performance
-
-build() {
-# Compile libananke
-  cd ${srcdir}/purify_v03-source/ananke
-  make compiler=gcc platform=x phoenix=gtk
-
-# Compile purify
-  cd ${srcdir}/purify_v03-source/purify
-  make compiler=gcc platform=x link='-s -lX11 -ldl -Wl,-export-dynamic' 
phoenix=gtk
-
-# Compile higan
-  cd ${srcdir}/higan_v${pkgver}-source/higan
-  sed -i 's|flags += -march=native|flags += -mtune=generic|' Makefile
-  for _profile in ${_profiles} ; do
-make compiler=gcc platform=x target=ethos phoenix=gtk profile=${_profile}
-mv out/higan out/higan-${_profile}
-make clean
-  done
-}
-
-package() {
-# Install common files
-  cd ${srcdir}/higan_v${pkgver}-source
-  install -dm 755 ${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan}}
-  install -m 755 ${srcdir}/higan ${pkgdir}/usr/bin/higan
-  install -m 644 ${srcdir}/higan.desktop 
${pkgdir}/usr/share/applications/higan.desktop
-  install -m 644 higan/data/higan.png ${pkgdir}/usr/share/pixmaps/higan.png
-  cp -dr --no-preserve=ownership higan/{profile/*,data/cheats.bml} 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve=ownership shaders ${pkgdir}/usr/share/higan/Video 
Shaders
-
-# Fix some permissions
-  find ${pkgdir}/usr/share/higan/ -type d -exec chmod 755 {} +
-  find ${pkgdir}/usr/share/higan/ -type f -exec chmod 644 {} +
-
-# Install libananke
-  cd ${srcdir}/purify_v03-source/ananke
-  install -m 644 libananke.so ${pkgdir}/usr/lib/libananke.so.1
-  ln -s /usr/lib/libananke.so.1 ${pkgdir}/usr/lib/libananke.so
-
-# Install purify
-  cd ${srcdir}/purify_v03-source/purify
-  install -m 755 purify ${pkgdir}/usr/bin/purify
-  install -m 644 ${srcdir}/purify.desktop 
${pkgdir}/usr/share/applications/purify.desktop
-
-# Install higan
-  cd ${srcdir}/higan_v${pkgver}-source/higan
-  for _profile in ${_profiles} ; do
-install -m 755 out/higan-${_profile} ${pkgdir}/usr/bin/higan-${_profile}
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: 

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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 00:26:31
  Author: alucryd
Revision: 95925

upgpkg: higan-gtk 093-1

Modified:
  higan-gtk/trunk/PKGBUILD

--+
 PKGBUILD |   70 +
 1 file changed, 39 insertions(+), 31 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:58:16 UTC (rev 95924)
+++ PKGBUILD2013-08-18 22:26:31 UTC (rev 95925)
@@ -2,8 +2,8 @@
 # Maintainer: Maxime Gauduin aluc...@gmail.com
 
 pkgname=higan-gtk
-pkgver=092
-pkgrel=4
+pkgver=093
+pkgrel=1
 pkgdesc=Nintendo multi-system emulator - GTK version
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/higan/;
@@ -12,8 +12,12 @@
 makedepends=('mesa')
 optdepends=('beat: Delta patcher')
 conflicts=('higan-qt')
-source=(http://higan.googlecode.com/files/higan_v${pkgver}-source.tar.xz; 
http://higan.googlecode.com/files/purify_v03-source.tar.xz; 'higan' 
'higan.desktop' 'purify.desktop')
-sha1sums=('a205005f118f6e138065af6e0d14ed990b8f1ce1'
+source=(http://byuu.org/higan/release/higan_v${pkgver}-source.tar.xz;
+http://higan.googlecode.com/files/purify_v03-source.tar.xz;
+'higan'
+'higan.desktop'
+'purify.desktop')
+sha1sums=('a1a117159a9c2c6b10a239b870479f520e45408d'
   '2aa16f492c879d2cc1d4ffa28f4729a5ed5bb1c3'
   '931baedc3bbdd343d2decda72c13b7d0efdcba3c'
   '55f4de0a65d6428840d013f9b003d88158c131c7'
@@ -21,54 +25,58 @@
 
 _profiles=accuracy balanced performance
 
+prepare() {
+  cd higan_v${pkgver}-source
+
+  sed -i s/flags   += -I. -O3 -fomit-frame-pointer/flags   += -I. 
-fomit-frame-pointer -std=gnu++11/
+  s/flags += -march=native/flags += $CXXFLAGS/g Makefile
+}
+
 build() {
 # Compile libananke
-  cd ${srcdir}/purify_v03-source/ananke
-  make compiler=gcc platform=x phoenix=gtk
+  cd ${srcdir}/higan_v${pkgver}-source/ananke
+  make compiler=g++ platform=x phoenix=gtk flags=$CXXFLAGS -I.. 
-fomit-frame-pointer -std=gnu++11
 
-# Compile purify
-  cd ${srcdir}/purify_v03-source/purify
-  make compiler=gcc platform=x link='-s -lX11 -ldl -Wl,-export-dynamic' 
phoenix=gtk
-
 # Compile higan
-  cd ${srcdir}/higan_v${pkgver}-source/higan
-  sed -i 's|flags += -march=native|flags += -mtune=generic|' Makefile
-  for _profile in ${_profiles} ; do
-make compiler=gcc platform=x target=ethos phoenix=gtk profile=${_profile}
+  cd ${srcdir}/higan_v${pkgver}-source
+  for _profile in ${_profiles}; do
+make compiler=g++ platform=x target=ethos phoenix=gtk profile=${_profile}
 mv out/higan out/higan-${_profile}
 make clean
   done
+
+# Compile purify
+  cd ${srcdir}/purify_v03-source/purify
+  make compiler=g++ platform=x phoenix=gtk flags=$CXXFLAGS -I. 
-fomit-frame-pointer -std=gnu++11 link='-s -lX11 -ldl -Wl,-export-dynamic'
 }
 
 package() {
 # Install common files
   cd ${srcdir}/higan_v${pkgver}-source
-  install -dm 755 ${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan}}
-  install -m 755 ${srcdir}/higan ${pkgdir}/usr/bin/higan
-  install -m 644 ${srcdir}/higan.desktop 
${pkgdir}/usr/share/applications/higan.desktop
-  install -m 644 higan/data/higan.png ${pkgdir}/usr/share/pixmaps/higan.png
-  cp -dr --no-preserve=ownership higan/{profile/*,data/cheats.bml} 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve=ownership shaders ${pkgdir}/usr/share/higan/Video 
Shaders
+  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
+  install -m 755 ../higan ${pkgdir}/usr/bin/higan
+  install -m 644 ../higan.desktop 
${pkgdir}/usr/share/applications/higan.desktop
+  install -m 644 data/higan512.png ${pkgdir}/usr/share/pixmaps/higan.png
+  cp -dr --no-preserve=ownership profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
+  cp -dr --no-preserve=ownership shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
 
-# Fix some permissions
-  find ${pkgdir}/usr/share/higan/ -type d -exec chmod 755 {} +
-  find ${pkgdir}/usr/share/higan/ -type f -exec chmod 644 {} +
-
 # Install libananke
-  cd ${srcdir}/purify_v03-source/ananke
-  install -m 644 libananke.so ${pkgdir}/usr/lib/libananke.so.1
+  install -m 644 ananke/libananke.so ${pkgdir}/usr/lib/libananke.so.1
   ln -s /usr/lib/libananke.so.1 ${pkgdir}/usr/lib/libananke.so
 
+# Install higan
+  for _profile in ${_profiles} ; do
+install -m 755 out/higan-${_profile} ${pkgdir}/usr/bin/higan-${_profile}
+  done
+
 # Install purify
   cd ${srcdir}/purify_v03-source/purify
   install -m 755 purify ${pkgdir}/usr/bin/purify
   install -m 644 ${srcdir}/purify.desktop 
${pkgdir}/usr/share/applications/purify.desktop
 
-# Install higan
-  cd ${srcdir}/higan_v${pkgver}-source/higan
-  for _profile in ${_profiles} ; do
-install -m 755 out/higan-${_profile} ${pkgdir}/usr/bin/higan-${_profile}
-  done
+# Fix permissions
+  find ${pkgdir}/usr/share/higan/ -type d -exec chmod 755 {} +
+  find ${pkgdir}/usr/share/higan/ -type f -exec chmod 644 {} +
 }
 
 

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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 00:46:46
  Author: alucryd
Revision: 95927

upgpkg: higan-qt 093-1

Modified:
  higan-qt/trunk/PKGBUILD

--+
 PKGBUILD |   95 ++---
 1 file changed, 53 insertions(+), 42 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 22:26:48 UTC (rev 95926)
+++ PKGBUILD2013-08-18 22:46:46 UTC (rev 95927)
@@ -2,9 +2,9 @@
 # Maintainer: Maxime Gauduin aluc...@gmail.com
 
 pkgname=higan-qt
-pkgver=092
-pkgrel=6
-pkgdesc=Nintendo multi-system emulator - QT version
+pkgver=093
+pkgrel=1
+pkgdesc=Nintendo multi-system emulator - Qt version
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/higan/;
 license=('GPL3')
@@ -12,69 +12,80 @@
 makedepends=('mesa')
 optdepends=('beat: Delta patcher')
 conflicts=('higan-gtk')
-source=(http://higan.googlecode.com/files/higan_v${pkgver}-source.tar.xz; 
http://higan.googlecode.com/files/purify_v03-source.tar.xz; 'higan' 
'higan.desktop' 'purify.desktop')
-sha1sums=('a205005f118f6e138065af6e0d14ed990b8f1ce1'
-  '2aa16f492c879d2cc1d4ffa28f4729a5ed5bb1c3'
-  '931baedc3bbdd343d2decda72c13b7d0efdcba3c'
-  '55f4de0a65d6428840d013f9b003d88158c131c7'
-  '093643998a2fb676d795c316e35d49cf6293ce86')
+source=(http://byuu.org/higan/release/higan_v${pkgver}-source.tar.xz;
+http://higan.googlecode.com/files/purify_v03-source.tar.xz;
+'higan'
+'higan.desktop'
+'purify.desktop')
+sha256sums=('6ad526ab7ac16a5b814f84235fbcd48946310af8645c42980b0063e3270ec538'
+'2020f0b5a744f08c24085a15a6c2ec1d7c4424bba6727f244e513b95c4247e38'
+'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048'
+'e9daf06d65fc95e3bfca4e9b9953dcc16830014ba895053c5553d5972031ffbc'
+'5f24cc7884d19721b6f9ad14c14a98347de209a2791f4c830be83bd032f693f8')
 
 _profiles=accuracy balanced performance
 
+prepare() {
+  cd ${srcdir}/higan_v${pkgver}-source
+
+# Qt 4.8 fix
+  moc-qt4 -i -Iphoenix/qt/ -o phoenix/qt/platform.moc 
phoenix/qt/platform.moc.hpp
+
+# Use $CXXFLAGS
+  sed -i s/flags   += -I. -O3 -fomit-frame-pointer/flags   += -I. 
-fomit-frame-pointer -std=gnu++11/
+  s/flags += -march=native/flags += $CXXFLAGS/g Makefile
+
+  cd ${srcdir}/purify_v03-source
+
+# Qt 4.8 fix
+  moc-qt4 -i -Ipurify/phoenix/qt/ -o purify/phoenix/qt/platform.moc 
purify/phoenix/qt/platform.moc.hpp
+}
+
 build() {
-# QT 4.8.0 fix
-  cd ${srcdir}
-  moc-qt4 -i -Ipurify_v03-source/ananke/phoenix/qt/ -o 
purify_v03-source/ananke/phoenix/qt/platform.moc 
purify_v03-source/ananke/phoenix/qt/platform.moc.hpp
-  moc-qt4 -i -Ipurify_v03-source/purify/phoenix/qt/ -o 
purify_v03-source/purify/phoenix/qt/platform.moc 
purify_v03-source/purify/phoenix/qt/platform.moc.hpp
-  moc-qt4 -i -Ihigan_v${pkgver}-source/higan/phoenix/qt/ -o 
higan_v${pkgver}-source/higan/phoenix/qt/platform.moc 
higan_v${pkgver}-source/higan/phoenix/qt/platform.moc.hpp
-
 # Compile libananke
-  cd ${srcdir}/purify_v03-source/ananke
-  make compiler=gcc platform=x phoenix=qt
+  cd ${srcdir}/higan_v${pkgver}-source/ananke
+  make compiler=g++ platform=x phoenix=gtk flags=$CXXFLAGS -I.. 
-fomit-frame-pointer -std=gnu++11
 
-# Compile purify
-  cd ${srcdir}/purify_v03-source/purify
-  make compiler=gcc platform=x link='-s -lX11 -ldl -Wl,-export-dynamic' 
phoenix=qt
-
 # Compile higan
-  cd ${srcdir}/higan_v${pkgver}-source/higan
-  sed -i 's|flags += -march=native|flags += -mtune=generic|' Makefile
-  for _profile in ${_profiles} ; do
-make compiler=gcc platform=x target=ethos phoenix=qt profile=${_profile}
+  cd ${srcdir}/higan_v${pkgver}-source
+  for _profile in ${_profiles}; do
+make compiler=g++ platform=x target=ethos phoenix=gtk profile=${_profile}
 mv out/higan out/higan-${_profile}
 make clean
   done
+
+# Compile purify
+  cd ${srcdir}/purify_v03-source/purify
+  make compiler=g++ platform=x phoenix=gtk flags=$CXXFLAGS -I. 
-fomit-frame-pointer -std=gnu++11 link='-s -lX11 -ldl -Wl,-export-dynamic'
 }
 
 package() {
 # Install common files
   cd ${srcdir}/higan_v${pkgver}-source
-  install -dm 755 ${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan}}
-  install -m 755 ${srcdir}/higan ${pkgdir}/usr/bin/higan
-  install -m 644 ${srcdir}/higan.desktop 
${pkgdir}/usr/share/applications/higan.desktop
-  install -m 644 higan/data/higan.png ${pkgdir}/usr/share/pixmaps/higan.png
-  cp -dr --no-preserve=ownership higan/{profile/*,data/cheats.bml} 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve=ownership shaders ${pkgdir}/usr/share/higan/Video 
Shaders
+  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
+  install -m 755 ../higan ${pkgdir}/usr/bin/higan
+  install -m 644 ../higan.desktop 
${pkgdir}/usr/share/applications/higan.desktop
+  install -m 644 data/higan512.png ${pkgdir}/usr/share/pixmaps/higan.png
+  cp -dr 

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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 00:47:02
  Author: alucryd
Revision: 95928

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

Added:
  higan-qt/repos/community-i686/PKGBUILD
(from rev 95927, higan-qt/trunk/PKGBUILD)
  higan-qt/repos/community-i686/higan
(from rev 95927, higan-qt/trunk/higan)
  higan-qt/repos/community-i686/higan.desktop
(from rev 95927, higan-qt/trunk/higan.desktop)
  higan-qt/repos/community-i686/purify.desktop
(from rev 95927, higan-qt/trunk/purify.desktop)
  higan-qt/repos/community-x86_64/PKGBUILD
(from rev 95927, higan-qt/trunk/PKGBUILD)
  higan-qt/repos/community-x86_64/higan
(from rev 95927, higan-qt/trunk/higan)
  higan-qt/repos/community-x86_64/higan.desktop
(from rev 95927, higan-qt/trunk/higan.desktop)
  higan-qt/repos/community-x86_64/purify.desktop
(from rev 95927, higan-qt/trunk/purify.desktop)
Deleted:
  higan-qt/repos/community-i686/PKGBUILD
  higan-qt/repos/community-i686/higan
  higan-qt/repos/community-i686/higan.desktop
  higan-qt/repos/community-i686/purify.desktop
  higan-qt/repos/community-x86_64/PKGBUILD
  higan-qt/repos/community-x86_64/higan
  higan-qt/repos/community-x86_64/higan.desktop
  higan-qt/repos/community-x86_64/purify.desktop

-+
 /PKGBUILD   |  182 ++
 /higan  |   26 +
 /higan.desktop  |   16 +++
 /purify.desktop |   16 +++
 community-i686/PKGBUILD |   80 
 community-i686/higan|   13 --
 community-i686/higan.desktop|8 -
 community-i686/purify.desktop   |8 -
 community-x86_64/PKGBUILD   |   80 
 community-x86_64/higan  |   13 --
 community-x86_64/higan.desktop  |8 -
 community-x86_64/purify.desktop |8 -
 12 files changed, 240 insertions(+), 218 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-18 22:46:46 UTC (rev 95927)
+++ community-i686/PKGBUILD 2013-08-18 22:47:02 UTC (rev 95928)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-
-pkgname=higan-qt
-pkgver=092
-pkgrel=6
-pkgdesc=Nintendo multi-system emulator - QT version
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/higan/;
-license=('GPL3')
-depends=('libao' 'libpulse' 'openal' 'qt4' 'sdl' 'xdialog')
-makedepends=('mesa')
-optdepends=('beat: Delta patcher')
-conflicts=('higan-gtk')
-source=(http://higan.googlecode.com/files/higan_v${pkgver}-source.tar.xz; 
http://higan.googlecode.com/files/purify_v03-source.tar.xz; 'higan' 
'higan.desktop' 'purify.desktop')
-sha1sums=('a205005f118f6e138065af6e0d14ed990b8f1ce1'
-  '2aa16f492c879d2cc1d4ffa28f4729a5ed5bb1c3'
-  '931baedc3bbdd343d2decda72c13b7d0efdcba3c'
-  '55f4de0a65d6428840d013f9b003d88158c131c7'
-  '093643998a2fb676d795c316e35d49cf6293ce86')
-
-_profiles=accuracy balanced performance
-
-build() {
-# QT 4.8.0 fix
-  cd ${srcdir}
-  moc-qt4 -i -Ipurify_v03-source/ananke/phoenix/qt/ -o 
purify_v03-source/ananke/phoenix/qt/platform.moc 
purify_v03-source/ananke/phoenix/qt/platform.moc.hpp
-  moc-qt4 -i -Ipurify_v03-source/purify/phoenix/qt/ -o 
purify_v03-source/purify/phoenix/qt/platform.moc 
purify_v03-source/purify/phoenix/qt/platform.moc.hpp
-  moc-qt4 -i -Ihigan_v${pkgver}-source/higan/phoenix/qt/ -o 
higan_v${pkgver}-source/higan/phoenix/qt/platform.moc 
higan_v${pkgver}-source/higan/phoenix/qt/platform.moc.hpp
-
-# Compile libananke
-  cd ${srcdir}/purify_v03-source/ananke
-  make compiler=gcc platform=x phoenix=qt
-
-# Compile purify
-  cd ${srcdir}/purify_v03-source/purify
-  make compiler=gcc platform=x link='-s -lX11 -ldl -Wl,-export-dynamic' 
phoenix=qt
-
-# Compile higan
-  cd ${srcdir}/higan_v${pkgver}-source/higan
-  sed -i 's|flags += -march=native|flags += -mtune=generic|' Makefile
-  for _profile in ${_profiles} ; do
-make compiler=gcc platform=x target=ethos phoenix=qt profile=${_profile}
-mv out/higan out/higan-${_profile}
-make clean
-  done
-}
-
-package() {
-# Install common files
-  cd ${srcdir}/higan_v${pkgver}-source
-  install -dm 755 ${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan}}
-  install -m 755 ${srcdir}/higan ${pkgdir}/usr/bin/higan
-  install -m 644 ${srcdir}/higan.desktop 
${pkgdir}/usr/share/applications/higan.desktop
-  install -m 644 higan/data/higan.png ${pkgdir}/usr/share/pixmaps/higan.png
-  cp -dr --no-preserve=ownership higan/{profile/*,data/cheats.bml} 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve=ownership shaders ${pkgdir}/usr/share/higan/Video 
Shaders
-
-# Fix some permissions
-  find ${pkgdir}/usr/share/higan -type d -exec chmod 755 {} +
-  find ${pkgdir}/usr/share/higan -type f -exec chmod 644 {} +
-
-# Install libananke
-  cd ${srcdir}/purify_v03-source/ananke
-  install -m 644 libananke.so ${pkgdir}/usr/lib/libananke.so.1
-  ln 

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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:24:27
  Author: alucryd
Revision: 95929

setuptools todo: python2-pylast 0.5.11-4

Modified:
  python2-pylast/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 22:47:02 UTC (rev 95928)
+++ PKGBUILD2013-08-19 00:24:27 UTC (rev 95929)
@@ -6,13 +6,13 @@
 
 pkgname=python2-pylast
 pkgver=0.5.11
-pkgrel=3
+pkgrel=4
 pkgdesc='A Python interface to the last.fm API'
 arch=('any')
 url='http://pylast.googlecode.com'
 license=('Apache')
 depends=('python2')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 
source=(http://pypi.python.org/packages/source/p/${pkgname#*-}/${pkgname#*-}-$pkgver.tar.gz;)
 sha256sums=('bf35820be35447d55564d36072d40b09ac8a7fd41a6f1a7a9d408f4d0eaefac4')
 
@@ -25,7 +25,7 @@
 package() {
   cd ${pkgname#*-}-$pkgver
 
-  python2 setup.py install --root=$pkgdir --optimize=1
+  python2 setup.py install --root=${pkgdir} --optimize=1
 }
 
 # vim: ts=2 sw=2 et:



[arch-commits] Commit in python2-pylast/repos (2 files)

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:24:35
  Author: alucryd
Revision: 95930

archrelease: copy trunk to community-testing-any

Added:
  python2-pylast/repos/community-testing-any/
  python2-pylast/repos/community-testing-any/PKGBUILD
(from rev 95929, python2-pylast/trunk/PKGBUILD)

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

Copied: python2-pylast/repos/community-testing-any/PKGBUILD (from rev 95929, 
python2-pylast/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-19 00:24:35 UTC (rev 95930)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Limao Luo luolimao+...@gmail.com
+# Contributor: Wieland Hoffmann the_mi...@web.de
+# Contributor: Amr Hassan amr.has...@gmail.com
+
+pkgname=python2-pylast
+pkgver=0.5.11
+pkgrel=4
+pkgdesc='A Python interface to the last.fm API'
+arch=('any')
+url='http://pylast.googlecode.com'
+license=('Apache')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=(http://pypi.python.org/packages/source/p/${pkgname#*-}/${pkgname#*-}-$pkgver.tar.gz;)
+sha256sums=('bf35820be35447d55564d36072d40b09ac8a7fd41a6f1a7a9d408f4d0eaefac4')
+
+build() {
+  cd ${pkgname#*-}-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#*-}-$pkgver
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}
+
+# vim: ts=2 sw=2 et:



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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:26:51
  Author: alucryd
Revision: 95931

setuptools rebuild: python2-munkres 1.0.5.4-3

Modified:
  python2-munkres/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 00:24:35 UTC (rev 95930)
+++ PKGBUILD2013-08-19 00:26:51 UTC (rev 95931)
@@ -4,15 +4,15 @@
 
 pkgname=python2-munkres
 pkgver=1.0.5.4
-pkgrel=2
+pkgrel=3
 pkgdesc='Munkres algorithm for the assignment problem'
 arch=('any')
 url='http://bmc.github.com/munkres/'
 license=('BSD')
 depends=('python2')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 
source=(http://pypi.python.org/packages/source/m/${pkgname#*-}/${pkgname#*-}-${pkgver}.tar.gz;)
-md5sums=('cb9d114fb523428bab4742e88bc83696')
+sha256sums=('105adad30659dbdf82815d3e12a74d4c01a3e0741d5ccbce194ee2ad4e5338d2')
 
 prepare() {
   cd ${pkgname#*-}-${pkgver}



[arch-commits] Commit in python2-munkres/repos (2 files)

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:26:59
  Author: alucryd
Revision: 95932

archrelease: copy trunk to community-testing-any

Added:
  python2-munkres/repos/community-testing-any/
  python2-munkres/repos/community-testing-any/PKGBUILD
(from rev 95931, python2-munkres/trunk/PKGBUILD)

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

Copied: python2-munkres/repos/community-testing-any/PKGBUILD (from rev 95931, 
python2-munkres/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-19 00:26:59 UTC (rev 95932)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Adrian Sampson adr...@radbox.org
+
+pkgname=python2-munkres
+pkgver=1.0.5.4
+pkgrel=3
+pkgdesc='Munkres algorithm for the assignment problem'
+arch=('any')
+url='http://bmc.github.com/munkres/'
+license=('BSD')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=(http://pypi.python.org/packages/source/m/${pkgname#*-}/${pkgname#*-}-${pkgver}.tar.gz;)
+sha256sums=('105adad30659dbdf82815d3e12a74d4c01a3e0741d5ccbce194ee2ad4e5338d2')
+
+prepare() {
+  cd ${pkgname#*-}-${pkgver}
+
+  sed -i 's|^#!.*python$|#!/usr/bin/python2|' $(grep -rl '^#!.*python')
+}
+
+build() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+
+# License
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 {,${pkgdir}/usr/share/licenses/${pkgname}/}LICENSE
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in python2-musicbrainzngs/repos (2 files)

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:29:27
  Author: alucryd
Revision: 95934

archrelease: copy trunk to community-testing-any

Added:
  python2-musicbrainzngs/repos/community-testing-any/
  python2-musicbrainzngs/repos/community-testing-any/PKGBUILD
(from rev 95933, python2-musicbrainzngs/trunk/PKGBUILD)

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

Copied: python2-musicbrainzngs/repos/community-testing-any/PKGBUILD (from rev 
95933, python2-musicbrainzngs/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-19 00:29:27 UTC (rev 95934)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Adrian Sampson adr...@radbox.org
+
+pkgname=python2-musicbrainzngs
+pkgver=0.4
+pkgrel=4
+pkgdesc='Bindings for the MusicBrainz NGS service'
+arch=('any')
+url='https://github.com/alastair/python-musicbrainz-ngs'
+license=('BSD')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=(http://pypi.python.org/packages/source/m/${pkgname#*-}/${pkgname#*-}-${pkgver}.tar.gz;)
+sha256sums=('1a1b7c3cce851c491d5ad71b501bbed2bd653098e33565a0534050d4b922265a')
+
+build() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+  rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/{docs,examples,test}
+
+# License
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 {,${pkgdir}/usr/share/licenses/${pkgname}/}COPYING
+}
+
+# vim: ts=2 sw=2 et:



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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:29:18
  Author: alucryd
Revision: 95933

setuptools todo: python2-musicbrainzngs 0.4-4

Modified:
  python2-musicbrainzngs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 00:26:59 UTC (rev 95932)
+++ PKGBUILD2013-08-19 00:29:18 UTC (rev 95933)
@@ -4,24 +4,24 @@
 
 pkgname=python2-musicbrainzngs
 pkgver=0.4
-pkgrel=3
+pkgrel=4
 pkgdesc='Bindings for the MusicBrainz NGS service'
 arch=('any')
 url='https://github.com/alastair/python-musicbrainz-ngs'
 license=('BSD')
 depends=('python2')
-makedepends=('python2-distribute')
-source=(http://pypi.python.org/packages/source/m/${pkgname#*-}/${pkgname#*-}-$pkgver.tar.gz;)
+makedepends=('python2-setuptools')
+source=(http://pypi.python.org/packages/source/m/${pkgname#*-}/${pkgname#*-}-${pkgver}.tar.gz;)
 sha256sums=('1a1b7c3cce851c491d5ad71b501bbed2bd653098e33565a0534050d4b922265a')
 
 build() {
-  cd ${pkgname#*-}-$pkgver
+  cd ${pkgname#*-}-${pkgver}
 
   python2 setup.py build
 }
 
 package() {
-  cd ${pkgname#*-}-$pkgver
+  cd ${pkgname#*-}-${pkgver}
 
   python2 setup.py install --root=${pkgdir} --optimize=1
   rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/{docs,examples,test}



[arch-commits] Commit in python2-pyacoustid/repos (2 files)

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:31:07
  Author: alucryd
Revision: 95936

archrelease: copy trunk to community-testing-any

Added:
  python2-pyacoustid/repos/community-testing-any/
  python2-pyacoustid/repos/community-testing-any/PKGBUILD
(from rev 95935, python2-pyacoustid/trunk/PKGBUILD)

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

Copied: python2-pyacoustid/repos/community-testing-any/PKGBUILD (from rev 
95935, python2-pyacoustid/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-19 00:31:07 UTC (rev 95936)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Fernando Jiménez Solano f...@sdfeu.org
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+
+pkgname=python2-pyacoustid
+pkgver=1.0.0
+pkgrel=3
+pkgdesc=Bindings for Chromaprint acoustic fingerprinting and the Acoustid API
+arch=('any')
+url='https://github.com/sampsyo/pyacoustid'
+license=('MIT')
+depends=('chromaprint')
+makedepends=('python2-setuptools')
+source=(http://pypi.python.org/packages/source/p/${pkgname#*-}/${pkgname#*-}-${pkgver}.tar.gz;
+'https://raw.github.com/sampsyo/beets/master/LICENSE')
+sha256sums=('31900428e7b344dca0c2da594b387e88620c319298e3a6400a968078194407d4'
+'ea007e11dca00f67ef7f290d4eaa608b4f2d5b2668a47787d69b6cff348f2fcd')
+
+build() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname#*-}-${pkgver}
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+
+# License
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 {../,${pkgdir}/usr/share/licenses/${pkgname}/}LICENSE
+}
+
+# vim: ts=2 sw=2 et:



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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:30:59
  Author: alucryd
Revision: 95935

setuptools todo: python2-pyacoustid 1.0.0-3

Modified:
  python2-pyacoustid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 00:29:27 UTC (rev 95934)
+++ PKGBUILD2013-08-19 00:30:59 UTC (rev 95935)
@@ -5,13 +5,13 @@
 
 pkgname=python2-pyacoustid
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc=Bindings for Chromaprint acoustic fingerprinting and the Acoustid API
 arch=('any')
 url='https://github.com/sampsyo/pyacoustid'
 license=('MIT')
 depends=('chromaprint')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 
source=(http://pypi.python.org/packages/source/p/${pkgname#*-}/${pkgname#*-}-${pkgver}.tar.gz;
 'https://raw.github.com/sampsyo/beets/master/LICENSE')
 sha256sums=('31900428e7b344dca0c2da594b387e88620c319298e3a6400a968078194407d4'



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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:34:56
  Author: alucryd
Revision: 95937

setuptools todo: beets 1.2.1-3

Modified:
  beets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 00:31:07 UTC (rev 95936)
+++ PKGBUILD2013-08-19 00:34:56 UTC (rev 95937)
@@ -4,12 +4,13 @@
 
 pkgname=beets
 pkgver=1.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Flexible music library manager and tagger
 arch=('any')
 url=http://beets.radbox.org/;
 license=('MIT')
-depends=('mutagen' 'python2-distribute' 'python2-munkres' 
'python2-musicbrainzngs' 'python2-unidecode' 'python2-yaml')
+depends=('mutagen' 'python2-munkres' 'python2-musicbrainzngs' 
'python2-unidecode' 'python2-yaml')
+makedepends=('python2-setuptools')
 optdepends=('gstreamer0.10-python: BPD audio player plugin'
 'python2-flask: Web interface'
 'python2-pyacoustid: Acoustic fingerprinting'



[arch-commits] Commit in beets/repos (2 files)

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:35:04
  Author: alucryd
Revision: 95938

archrelease: copy trunk to community-testing-any

Added:
  beets/repos/community-testing-any/
  beets/repos/community-testing-any/PKGBUILD
(from rev 95937, beets/trunk/PKGBUILD)

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

Copied: beets/repos/community-testing-any/PKGBUILD (from rev 95937, 
beets/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-19 00:35:04 UTC (rev 95938)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Adrian Sampson adr...@radbox.org
+
+pkgname=beets
+pkgver=1.2.1
+pkgrel=3
+pkgdesc=Flexible music library manager and tagger
+arch=('any')
+url=http://beets.radbox.org/;
+license=('MIT')
+depends=('mutagen' 'python2-munkres' 'python2-musicbrainzngs' 
'python2-unidecode' 'python2-yaml')
+makedepends=('python2-setuptools')
+optdepends=('gstreamer0.10-python: BPD audio player plugin'
+'python2-flask: Web interface'
+'python2-pyacoustid: Acoustic fingerprinting'
+'python2-pylast: Lastgenre plugin')
+source=(http://pypi.python.org/packages/source/b/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7424708a7ebd0884141537970b31cd41a09c5b799d9ce5d00d3704ce8aa520b6')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+
+# Manpages
+  install -dm 755 ${pkgdir}/usr/share/man/man{1,5}
+  install -m 644 man/beet.1 ${pkgdir}/usr/share/man/man1/beet.1
+  install -m 644 man/beetsconfig.5 ${pkgdir}/usr/share/man/man5/beetsconfig.5
+  gzip -9 ${pkgdir}/usr/share/man/man{1/beet.1,5/beetsconfig.5}
+
+# License
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 {,${pkgdir}/usr/share/licenses/${pkgname}/}LICENSE
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in python2-unidecode/repos (2 files)

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:37:38
  Author: alucryd
Revision: 95940

archrelease: copy trunk to community-testing-any

Added:
  python2-unidecode/repos/community-testing-any/
  python2-unidecode/repos/community-testing-any/PKGBUILD
(from rev 95939, python2-unidecode/trunk/PKGBUILD)

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

Copied: python2-unidecode/repos/community-testing-any/PKGBUILD (from rev 95939, 
python2-unidecode/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-19 00:37:38 UTC (rev 95940)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Kwpolska kwpol...@kwpolska.tk
+
+pkgname=python2-unidecode
+pkgver=0.04.13
+pkgrel=3
+pkgdesc='ASCII transliterations of Unicode text'
+arch=('any')
+url='http://pypi.python.org/pypi/Unidecode/'
+license=('GPL')
+depends=('python2')
+makedepends=('python2-setuptools')
+options=('!emptydirs')
+source=(http://pypi.python.org/packages/source/U/Unidecode/Unidecode-${pkgver}.tar.gz;)
+sha256sums=('ca58bf0ce984a20ad3a5d7fdbb7e773d8d1e5fd1570951e47c1908eed8fe0442')
+
+build() {
+  cd Unidecode-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd Unidecode-${pkgver}
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}
+
+# vim: ts=2 sw=2 et:



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

2013-08-18 Thread Maxime Gauduin
Date: Monday, August 19, 2013 @ 02:37:29
  Author: alucryd
Revision: 95939

setuptools todo: python2-unidecode 0.04.13-3

Modified:
  python2-unidecode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 00:35:04 UTC (rev 95938)
+++ PKGBUILD2013-08-19 00:37:29 UTC (rev 95939)
@@ -3,14 +3,14 @@
 # Contributor: Kwpolska kwpol...@kwpolska.tk
 
 pkgname=python2-unidecode
-_pyname=Unidecode
 pkgver=0.04.13
-pkgrel=2
+pkgrel=3
 pkgdesc='ASCII transliterations of Unicode text'
 arch=('any')
 url='http://pypi.python.org/pypi/Unidecode/'
 license=('GPL')
 depends=('python2')
+makedepends=('python2-setuptools')
 options=('!emptydirs')
 
source=(http://pypi.python.org/packages/source/U/Unidecode/Unidecode-${pkgver}.tar.gz;)
 sha256sums=('ca58bf0ce984a20ad3a5d7fdbb7e773d8d1e5fd1570951e47c1908eed8fe0442')



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

2013-08-18 Thread Jan Steffens
Date: Monday, August 19, 2013 @ 03:29:57
  Author: heftig
Revision: 193199

3.8.4

Modified:
  bijiben/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-18 17:27:18 UTC (rev 193198)
+++ PKGBUILD2013-08-19 01:29:57 UTC (rev 193199)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=bijiben
-pkgver=3.8.3
+pkgver=3.8.4
 pkgrel=1
 pkgdesc=Write out notes, every detail matters
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 install=bijiben.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('287742267c7484a92ead8c896091ceb0b2603ba8b5dccf304ea534456735beec')
+sha256sums=('5b8f6580fa726139dd707bea8ee581531c21b8470c04723b9b1046033cb999db')
 
 build() {
   cd $pkgname-$pkgver



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

2013-08-18 Thread Jan Steffens
Date: Monday, August 19, 2013 @ 03:30:39
  Author: heftig
Revision: 193200

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

Added:
  bijiben/repos/extra-i686/PKGBUILD
(from rev 193199, bijiben/trunk/PKGBUILD)
  bijiben/repos/extra-i686/bijiben.install
(from rev 193199, bijiben/trunk/bijiben.install)
  bijiben/repos/extra-x86_64/PKGBUILD
(from rev 193199, bijiben/trunk/PKGBUILD)
  bijiben/repos/extra-x86_64/bijiben.install
(from rev 193199, bijiben/trunk/bijiben.install)
Deleted:
  bijiben/repos/extra-i686/PKGBUILD
  bijiben/repos/extra-i686/bijiben.install
  bijiben/repos/extra-x86_64/PKGBUILD
  bijiben/repos/extra-x86_64/bijiben.install

--+
 /PKGBUILD|   56 +
 /bijiben.install |   26 +++
 extra-i686/PKGBUILD  |   28 
 extra-i686/bijiben.install   |   13 -
 extra-x86_64/PKGBUILD|   28 
 extra-x86_64/bijiben.install |   13 -
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-19 01:29:57 UTC (rev 193199)
+++ extra-i686/PKGBUILD 2013-08-19 01:30:39 UTC (rev 193200)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=bijiben
-pkgver=3.8.3
-pkgrel=1
-pkgdesc=Write out notes, every detail matters
-arch=(i686 x86_64)
-url=https://live.gnome.org/Bijiben;
-license=(GPL)
-depends=(tracker clutter-gtk libzeitgeist webkitgtk3 hicolor-icon-theme 
desktop-file-utils)
-makedepends=(intltool itstool)
-options=(!emptydirs)
-install=bijiben.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('287742267c7484a92ead8c896091ceb0b2603ba8b5dccf304ea534456735beec')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: bijiben/repos/extra-i686/PKGBUILD (from rev 193199, 
bijiben/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-19 01:30:39 UTC (rev 193200)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=bijiben
+pkgver=3.8.4
+pkgrel=1
+pkgdesc=Write out notes, every detail matters
+arch=(i686 x86_64)
+url=https://live.gnome.org/Bijiben;
+license=(GPL)
+depends=(tracker clutter-gtk libzeitgeist webkitgtk3 hicolor-icon-theme 
desktop-file-utils)
+makedepends=(intltool itstool)
+options=(!emptydirs)
+install=bijiben.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::3}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('5b8f6580fa726139dd707bea8ee581531c21b8470c04723b9b1046033cb999db')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/bijiben.install
===
--- extra-i686/bijiben.install  2013-08-19 01:29:57 UTC (rev 193199)
+++ extra-i686/bijiben.install  2013-08-19 01:30:39 UTC (rev 193200)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: bijiben/repos/extra-i686/bijiben.install (from rev 193199, 
bijiben/trunk/bijiben.install)
===
--- extra-i686/bijiben.install  (rev 0)
+++ extra-i686/bijiben.install  2013-08-19 01:30:39 UTC (rev 193200)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-19 01:29:57 UTC (rev 193199)
+++ extra-x86_64/PKGBUILD   2013-08-19 01:30:39 UTC (rev 193200)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=bijiben
-pkgver=3.8.3
-pkgrel=1
-pkgdesc=Write out notes, every detail matters
-arch=(i686 x86_64)
-url=https://live.gnome.org/Bijiben;
-license=(GPL)
-depends=(tracker clutter-gtk libzeitgeist webkitgtk3 hicolor-icon-theme 
desktop-file-utils)
-makedepends=(intltool itstool)
-options=(!emptydirs)

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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 03:36:56
  Author: dwallace
Revision: 95941

upgpkg: connman 1.16-1

upgpkg: connman 1.16-1

Modified:
  connman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 00:37:38 UTC (rev 95940)
+++ PKGBUILD2013-08-19 01:36:56 UTC (rev 95941)
@@ -3,7 +3,7 @@
 # Contributor: Lucas De Marchi lucas.de.mar...@gmail.com
 
 pkgname=connman
-pkgver=1.15
+pkgver=1.16
 pkgrel=1
 pkgdesc=Wireless LAN network manager
 url=http://connman.net/;
@@ -17,7 +17,7 @@
 options=('!libtool')
 
source=(http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
 'allow_group_network.diff')
-md5sums=('d68ec364b4b3fba3131defe074c768dc'
+md5sums=('2a6958ba28c29802ccdf9481d9a87fa2'
  'a8d22ee089fb0ed725130d16ad393047')
 
 prepare(){



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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 03:37:35
  Author: dwallace
Revision: 95942

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 95941, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 95941, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 95941, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 95941, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |   98 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   49 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   49 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-19 01:36:56 UTC (rev 95941)
+++ community-i686/PKGBUILD 2013-08-19 01:37:35 UTC (rev 95942)
@@ -1,49 +0,0 @@
-#$Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: Lucas De Marchi lucas.de.mar...@gmail.com
-
-pkgname=connman
-pkgver=1.15
-pkgrel=1
-pkgdesc=Wireless LAN network manager
-url=http://connman.net/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus-core' 'iptables' 'glib2' 'gnutls')
-conflicts=('openresolv')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn')
-options=('!libtool')
-source=(http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
-'allow_group_network.diff')
-md5sums=('d68ec364b4b3fba3131defe074c768dc'
- 'a8d22ee089fb0ed725130d16ad393047')
-
-prepare(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/allow_group_network.diff
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --bindir=/usr/bin \
- --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-threads \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client
-
-  make
-}
-
-package(){
-  make -C ${srcdir}/${pkgname}-${pkgver} DESTDIR=${pkgdir} install
-  install -Dm755 $srcdir/$pkgname-$pkgver/client/${pkgname}ctl 
$pkgdir/usr/bin/${pkgname}ctl
-  find $pkgdir/usr -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 95941, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-19 01:37:35 UTC (rev 95942)
@@ -0,0 +1,49 @@
+#$Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Lucas De Marchi lucas.de.mar...@gmail.com
+
+pkgname=connman
+pkgver=1.16
+pkgrel=1
+pkgdesc=Wireless LAN network manager
+url=http://connman.net/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus-core' 'iptables' 'glib2' 'gnutls')
+conflicts=('openresolv')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn')
+options=('!libtool')
+source=(http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
+'allow_group_network.diff')
+md5sums=('2a6958ba28c29802ccdf9481d9a87fa2'
+ 'a8d22ee089fb0ed725130d16ad393047')
+
+prepare(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/allow_group_network.diff
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --bindir=/usr/bin \
+ --sbindir=/usr/bin \
+  --with-systemdunitdir=/usr/lib/systemd/system \
+  --enable-threads \
+  --enable-openconnect \
+  --enable-vpnc \
+  --enable-openvpn \
+  --enable-polkit \
+  --enable-client
+
+  make
+}
+
+package(){
+  make -C ${srcdir}/${pkgname}-${pkgver} DESTDIR=${pkgdir} install
+  install -Dm755 $srcdir/$pkgname-$pkgver/client/${pkgname}ctl 
$pkgdir/usr/bin/${pkgname}ctl
+  find $pkgdir/usr -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
+}

Deleted: community-i686/allow_group_network.diff
===
--- 

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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 03:44:28
  Author: dwallace
Revision: 95943

upgpkg: lib32-curl 7.32.0-1

upgpkg: lib32-curl 7.32.0-1

Modified:
  lib32-curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 01:37:35 UTC (rev 95942)
+++ PKGBUILD2013-08-19 01:44:28 UTC (rev 95943)
@@ -8,7 +8,7 @@
 
 pkgname=lib32-curl
 _pkgname=curl
-pkgver=7.31.0
+pkgver=7.32.0
 pkgrel=1
 pkgdesc=An URL retrieval utility and library (32-bit)
 arch=('x86_64')
@@ -17,7 +17,7 @@
 depends=('lib32-libssh2' ${_pkgname})
 options=('!libtool')
 source=(http://curl.haxx.se/download/$_pkgname-$pkgver.tar.gz{,.asc})
-md5sums=('6f26843f7e3a2fb06e02f68a55efe8c7'
+md5sums=('f77cf3cb59cf2bfe686b80338323fd40'
  'SKIP')
 
 build() {



[arch-commits] Commit in lib32-curl/repos/multilib-x86_64 (6 files)

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 03:44:52
  Author: dwallace
Revision: 95944

archrelease: copy trunk to multilib-x86_64

Added:
  
lib32-curl/repos/multilib-x86_64/0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch
(from rev 95943, 
lib32-curl/trunk/0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch)
  lib32-curl/repos/multilib-x86_64/PKGBUILD
(from rev 95943, lib32-curl/trunk/PKGBUILD)
  lib32-curl/repos/multilib-x86_64/curlbuild.h
(from rev 95943, lib32-curl/trunk/curlbuild.h)
Deleted:
  
lib32-curl/repos/multilib-x86_64/0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch
  lib32-curl/repos/multilib-x86_64/PKGBUILD
  lib32-curl/repos/multilib-x86_64/curlbuild.h

-+
 0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch |   78 ++---
 PKGBUILD|  134 
+-
 curlbuild.h |   18 -
 3 files changed, 115 insertions(+), 115 deletions(-)

Deleted: 0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch
===
--- 0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch 
2013-08-19 01:44:28 UTC (rev 95943)
+++ 0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch 
2013-08-19 01:44:52 UTC (rev 95944)
@@ -1,39 +0,0 @@
-From da3fc1ee91de656a30f3a12de394bcba55119872 Mon Sep 17 00:00:00 2001
-From: Linus Nielsen Feltzing li...@haxx.se
-Date: Sun, 10 Feb 2013 22:57:58 +0100
-Subject: [PATCH] Fix NULL pointer reference when closing an unused multi
- handle.
-

- lib/multi.c|  8 +---
- tests/data/Makefile.am |  1 +
- tests/data/test1508| 31 +
- tests/libtest/Makefile.inc |  6 +-
- tests/libtest/lib1508.c| 49 ++
- 5 files changed, 91 insertions(+), 4 deletions(-)
- create mode 100644 tests/data/test1508
- create mode 100644 tests/libtest/lib1508.c
-
-diff --git a/lib/multi.c b/lib/multi.c
-index fa0afb9..706df23 100644
 a/lib/multi.c
-+++ b/lib/multi.c
-@@ -1773,10 +1773,12 @@ CURLMcode curl_multi_cleanup(CURLM *multi_handle)
- /* Close all the connections in the connection cache */
- close_all_connections(multi);
- 
--multi-closure_handle-dns.hostcache = multi-hostcache;
--Curl_hostcache_clean(multi-closure_handle);
-+if(multi-closure_handle) {
-+  multi-closure_handle-dns.hostcache = multi-hostcache;
-+  Curl_hostcache_clean(multi-closure_handle);
- 
--Curl_close(multi-closure_handle);
-+  Curl_close(multi-closure_handle);
-+}
- multi-closure_handle = NULL;
- 
- Curl_hash_destroy(multi-sockhash);
--- 
-1.8.1.3
-

Copied: 
lib32-curl/repos/multilib-x86_64/0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch
 (from rev 95943, 
lib32-curl/trunk/0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch)
===
--- 0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch 
(rev 0)
+++ 0001-Fix-NULL-pointer-reference-when-closing-an-unused-mu.patch 
2013-08-19 01:44:52 UTC (rev 95944)
@@ -0,0 +1,39 @@
+From da3fc1ee91de656a30f3a12de394bcba55119872 Mon Sep 17 00:00:00 2001
+From: Linus Nielsen Feltzing li...@haxx.se
+Date: Sun, 10 Feb 2013 22:57:58 +0100
+Subject: [PATCH] Fix NULL pointer reference when closing an unused multi
+ handle.
+
+---
+ lib/multi.c|  8 +---
+ tests/data/Makefile.am |  1 +
+ tests/data/test1508| 31 +
+ tests/libtest/Makefile.inc |  6 +-
+ tests/libtest/lib1508.c| 49 ++
+ 5 files changed, 91 insertions(+), 4 deletions(-)
+ create mode 100644 tests/data/test1508
+ create mode 100644 tests/libtest/lib1508.c
+
+diff --git a/lib/multi.c b/lib/multi.c
+index fa0afb9..706df23 100644
+--- a/lib/multi.c
 b/lib/multi.c
+@@ -1773,10 +1773,12 @@ CURLMcode curl_multi_cleanup(CURLM *multi_handle)
+ /* Close all the connections in the connection cache */
+ close_all_connections(multi);
+ 
+-multi-closure_handle-dns.hostcache = multi-hostcache;
+-Curl_hostcache_clean(multi-closure_handle);
++if(multi-closure_handle) {
++  multi-closure_handle-dns.hostcache = multi-hostcache;
++  Curl_hostcache_clean(multi-closure_handle);
+ 
+-Curl_close(multi-closure_handle);
++  Curl_close(multi-closure_handle);
++}
+ multi-closure_handle = NULL;
+ 
+ Curl_hash_destroy(multi-sockhash);
+-- 
+1.8.1.3
+

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-19 01:44:28 UTC (rev 95943)
+++ PKGBUILD2013-08-19 01:44:52 UTC (rev 95944)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace 

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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 03:53:18
  Author: dwallace
Revision: 95945

upgpkg: youtube-viewer 1:3.0.7_01-1

upgpkg: youtube-viewer 3.0.7_01

Modified:
  youtube-viewer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 01:44:52 UTC (rev 95944)
+++ PKGBUILD2013-08-19 01:53:18 UTC (rev 95945)
@@ -5,14 +5,14 @@
 pkgname=youtube-viewer
 _pkgdir=trizen-youtube-viewer
 epoch=1
-pkgver=3.0.7
-pkgrel=4
+pkgver=3.0.7_01
+pkgrel=1
 pkgdesc=A command line utility for viewing youtube-videos in MPlayer.
 arch=('any')
 url=https://github.com/trizen/youtube-viewer;
 license=('GPL3')
 
source=($pkgname-$pkgver.zip::https://github.com/trizen/$pkgname/zipball/$pkgver;)
-sha256sums=('2531df72fab612ff338774339b6ec956a6c542db2a8aba26b41b28be1fe89c79')
+sha256sums=('6ca09cd18ebe0e9df0e266244c34aa0861978cb71fafc564766f265dc2af73e4')
 
 depends=('perl=5.10.0' 'perl-data-dump' 'perl-libwww' 'perl-xml-fast')
 optdepends=('vlc: for playinng videos'



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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 03:53:41
  Author: dwallace
Revision: 95946

archrelease: copy trunk to community-any

Added:
  youtube-viewer/repos/community-any/PKGBUILD
(from rev 95945, youtube-viewer/trunk/PKGBUILD)
Deleted:
  youtube-viewer/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-19 01:53:18 UTC (rev 95945)
+++ PKGBUILD2013-08-19 01:53:41 UTC (rev 95946)
@@ -1,44 +0,0 @@
-$Id$
-# Maintainer: Daniel Wallace  danielwallace at gtmanfred dot com
-# Contributor: Trizen echo dHJpemVueEBnbWFpbC5jb20K | base64 -d
-
-pkgname=youtube-viewer
-_pkgdir=trizen-youtube-viewer
-epoch=1
-pkgver=3.0.7
-pkgrel=4
-pkgdesc=A command line utility for viewing youtube-videos in MPlayer.
-arch=('any')
-url=https://github.com/trizen/youtube-viewer;
-license=('GPL3')
-source=($pkgname-$pkgver.zip::https://github.com/trizen/$pkgname/zipball/$pkgver;)
-sha256sums=('2531df72fab612ff338774339b6ec956a6c542db2a8aba26b41b28be1fe89c79')
-
-depends=('perl=5.10.0' 'perl-data-dump' 'perl-libwww' 'perl-xml-fast')
-optdepends=('vlc: for playinng videos'
-   'mplayer: for playing videos'
-   'perl-term-readkey: to get the terminal width size'
-'perl-term-readline-gnu: for a better STDIN support'
-'perl-lwp-protocol-https: for login and https support'
-'gcap: for retrieving Youtube closed captions. [in AUR]')
-
-
-build() {
-cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
-
-perl Build.PL   # --gtk-youtube-viewer
-}
-
-check(){
-cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
-
-./Build test
-}
-
-package() {
-cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
-
-./Build install --install_path script=/usr/bin --destdir=$pkgdir
-rm -r $pkgdir/usr/lib/
-
-}

Copied: youtube-viewer/repos/community-any/PKGBUILD (from rev 95945, 
youtube-viewer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-19 01:53:41 UTC (rev 95946)
@@ -0,0 +1,44 @@
+$Id$
+# Maintainer: Daniel Wallace  danielwallace at gtmanfred dot com
+# Contributor: Trizen echo dHJpemVueEBnbWFpbC5jb20K | base64 -d
+
+pkgname=youtube-viewer
+_pkgdir=trizen-youtube-viewer
+epoch=1
+pkgver=3.0.7_01
+pkgrel=1
+pkgdesc=A command line utility for viewing youtube-videos in MPlayer.
+arch=('any')
+url=https://github.com/trizen/youtube-viewer;
+license=('GPL3')
+source=($pkgname-$pkgver.zip::https://github.com/trizen/$pkgname/zipball/$pkgver;)
+sha256sums=('6ca09cd18ebe0e9df0e266244c34aa0861978cb71fafc564766f265dc2af73e4')
+
+depends=('perl=5.10.0' 'perl-data-dump' 'perl-libwww' 'perl-xml-fast')
+optdepends=('vlc: for playinng videos'
+   'mplayer: for playing videos'
+   'perl-term-readkey: to get the terminal width size'
+'perl-term-readline-gnu: for a better STDIN support'
+'perl-lwp-protocol-https: for login and https support'
+'gcap: for retrieving Youtube closed captions. [in AUR]')
+
+
+build() {
+cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
+
+perl Build.PL   # --gtk-youtube-viewer
+}
+
+check(){
+cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
+
+./Build test
+}
+
+package() {
+cd $srcdir/$_pkgdir*/WWW-YoutubeViewer
+
+./Build install --install_path script=/usr/bin --destdir=$pkgdir
+rm -r $pkgdir/usr/lib/
+
+}



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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 03:56:48
  Author: dwallace
Revision: 95947

upgpkg: python-beautifulsoup4 4.3.1-1

upgpkg: beautifulsoup4 4.3.1

Modified:
  python-beautifulsoup4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 01:53:41 UTC (rev 95946)
+++ PKGBUILD2013-08-19 01:56:48 UTC (rev 95947)
@@ -4,15 +4,15 @@
 
 pkgbase=python-beautifulsoup4
 pkgname=('python2-beautifulsoup4' 'python-beautifulsoup4')
-pkgver=4.2.1
+pkgver=4.3.1
 pkgrel=1
 pkgdesc=A Python HTML/XML parser designed for quick turnaround projects like 
screen-scraping
 arch=('any')
 url=http://www.crummy.com/software/BeautifulSoup/index.html;
 license=('PSF')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 
source=(http://www.crummy.com/software/BeautifulSoup/bs4/download/${pkgver%.*}/${pkgbase#*-}-${pkgver}.tar.gz;)
-md5sums=('91ea70ce16a5f1f43e58f2ef05651679')
+md5sums=('508095f2784c64114e06856edc1dafed')
 
 build() {
   cd ${srcdir}



[arch-commits] Commit in python-beautifulsoup4/repos (2 files)

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 03:57:08
  Author: dwallace
Revision: 95948

archrelease: copy trunk to community-testing-any

Added:
  python-beautifulsoup4/repos/community-testing-any/
  python-beautifulsoup4/repos/community-testing-any/PKGBUILD
(from rev 95947, python-beautifulsoup4/trunk/PKGBUILD)

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

Copied: python-beautifulsoup4/repos/community-testing-any/PKGBUILD (from rev 
95947, python-beautifulsoup4/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-19 01:57:08 UTC (rev 95948)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Giovanni Scafora giova...@archlinux.org
+
+pkgbase=python-beautifulsoup4
+pkgname=('python2-beautifulsoup4' 'python-beautifulsoup4')
+pkgver=4.3.1
+pkgrel=1
+pkgdesc=A Python HTML/XML parser designed for quick turnaround projects like 
screen-scraping
+arch=('any')
+url=http://www.crummy.com/software/BeautifulSoup/index.html;
+license=('PSF')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://www.crummy.com/software/BeautifulSoup/bs4/download/${pkgver%.*}/${pkgbase#*-}-${pkgver}.tar.gz;)
+md5sums=('508095f2784c64114e06856edc1dafed')
+
+build() {
+  cd ${srcdir}
+  cp -a beautifulsoup4-${pkgver}{,-python2}
+
+  # Build python 3 module
+  cd ${srcdir}/beautifulsoup4-${pkgver}
+  python setup.py build
+
+  # Build python 2 module
+  cd ${srcdir}/beautifulsoup4-${pkgver}-python2
+  python2 setup.py build
+}
+
+package_python2-beautifulsoup4() {
+  optdepends=('python2-chardet: universal encoding detector'
+  'python2-lxml: pythonic binding for the libxml2 and libxslt 
libraries')
+
+  cd ${srcdir}/beautifulsoup4-${pkgver}-python2
+  python2 setup.py install --root=${pkgdir}/ --optimize=1 --skip-build
+
+  rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/bs4/tests
+}
+
+package_python-beautifulsoup4() {
+  optdepends=('python-chardet: universal encoding detector'
+  'python-lxml: pythonic binding for the libxml2 and libxslt 
libraries')
+
+  cd ${srcdir}/beautifulsoup4-${pkgver}
+  python setup.py install --root=${pkgdir}/ --optimize=1 --skip-build
+
+  rm -rf 
${pkgdir}/usr/lib/python3.2/site-packages/bs4/{__pycache__,tests,builder/__pycache__}
+}



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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 04:16:54
  Author: dwallace
Revision: 95949

upgpkg: libpng12 1.2.50-3

upgpkg: libpng12 1.2.50-3

Modified:
  libpng12/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 01:57:08 UTC (rev 95948)
+++ PKGBUILD2013-08-19 02:16:54 UTC (rev 95949)
@@ -8,7 +8,7 @@
 pkgname=libpng12
 _realname=libpng
 pkgver=1.2.50
-pkgrel=2
+pkgrel=3
 pkgdesc=A collection of routines used to create PNG format graphics files
 arch=('i686' 'x86_64')
 url=http://www.libpng.org/pub/png/libpng.html;
@@ -44,6 +44,8 @@
   rm -fr ${pkgdir}/usr/lib/pkgconfig/libpng.pc
   rm -rf ${pkgdir}/usr/include/{pngconf.h,png.h}
 
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/libpng12/LICENSE
+
 }
 
 md5sums=('a3e00fccbfe356174ab515b5c00641c7'



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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 04:17:35
  Author: dwallace
Revision: 95950

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

Added:
  libpng12/repos/community-i686/PKGBUILD
(from rev 95949, libpng12/trunk/PKGBUILD)
  libpng12/repos/community-x86_64/PKGBUILD
(from rev 95949, libpng12/trunk/PKGBUILD)
Deleted:
  libpng12/repos/community-i686/PKGBUILD
  libpng12/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  104 
 community-i686/PKGBUILD   |   50 -
 community-x86_64/PKGBUILD |   50 -
 3 files changed, 104 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-19 02:16:54 UTC (rev 95949)
+++ community-i686/PKGBUILD 2013-08-19 02:17:35 UTC (rev 95950)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: dorphellarchlinux.org: dorphell
-# Contributor: Travis Willard  archlinux.org: travis
-# Contributor: Douglas Soares de Andrade   archlinux.org: douglas
-# Contributor: Jesse Jaara gmail.com: jesse.jaara
-
-pkgname=libpng12
-_realname=libpng
-pkgver=1.2.50
-pkgrel=2
-pkgdesc=A collection of routines used to create PNG format graphics files
-arch=('i686' 'x86_64')
-url=http://www.libpng.org/pub/png/libpng.html;
-license=('custom')
-depends=('zlib')
-options=('!libtool')
-source=(http://sourceforge.net/projects/libpng/files/libpng-${pkgver}.tar.xz;
-
http://sourceforge.net/projects/apng/files/libpng/libpng12/libpng-${pkgver}-apng.patch.gz;)
-
-build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-
-  patch -Np0 -i ${srcdir}/libpng-${pkgver}-apng.patch
-
-  libtoolize --force --copy
-  aclocal
-  autoconf
-  automake --add-missing
-
-  ./configure --prefix=/usr
-
-  make ECHO=echo
-}
-
-package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-
-  make ECHO=echo DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/share
-  rm -rf ${pkgdir}/usr/bin/libpng-config
-  rm -rf ${pkgdir}/usr/lib/{libpng.so,libpng.a}
-  rm -fr ${pkgdir}/usr/lib/pkgconfig/libpng.pc
-  rm -rf ${pkgdir}/usr/include/{pngconf.h,png.h}
-
-}
-
-md5sums=('a3e00fccbfe356174ab515b5c00641c7'
- 'b06ac3f6a6f982abc2036359665e82a9')

Copied: libpng12/repos/community-i686/PKGBUILD (from rev 95949, 
libpng12/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-19 02:17:35 UTC (rev 95950)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: dorphellarchlinux.org: dorphell
+# Contributor: Travis Willard  archlinux.org: travis
+# Contributor: Douglas Soares de Andrade   archlinux.org: douglas
+# Contributor: Jesse Jaara gmail.com: jesse.jaara
+
+pkgname=libpng12
+_realname=libpng
+pkgver=1.2.50
+pkgrel=3
+pkgdesc=A collection of routines used to create PNG format graphics files
+arch=('i686' 'x86_64')
+url=http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('zlib')
+options=('!libtool')
+source=(http://sourceforge.net/projects/libpng/files/libpng-${pkgver}.tar.xz;
+
http://sourceforge.net/projects/apng/files/libpng/libpng12/libpng-${pkgver}-apng.patch.gz;)
+
+build() {
+  cd ${srcdir}/${_realname}-${pkgver}
+
+  patch -Np0 -i ${srcdir}/libpng-${pkgver}-apng.patch
+
+  libtoolize --force --copy
+  aclocal
+  autoconf
+  automake --add-missing
+
+  ./configure --prefix=/usr
+
+  make ECHO=echo
+}
+
+package() {
+  cd ${srcdir}/${_realname}-${pkgver}
+
+  make ECHO=echo DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/share
+  rm -rf ${pkgdir}/usr/bin/libpng-config
+  rm -rf ${pkgdir}/usr/lib/{libpng.so,libpng.a}
+  rm -fr ${pkgdir}/usr/lib/pkgconfig/libpng.pc
+  rm -rf ${pkgdir}/usr/include/{pngconf.h,png.h}
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/libpng12/LICENSE
+
+}
+
+md5sums=('a3e00fccbfe356174ab515b5c00641c7'
+ 'b06ac3f6a6f982abc2036359665e82a9')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-19 02:16:54 UTC (rev 95949)
+++ community-x86_64/PKGBUILD   2013-08-19 02:17:35 UTC (rev 95950)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: dorphellarchlinux.org: dorphell
-# Contributor: Travis Willard  archlinux.org: travis
-# Contributor: Douglas Soares de Andrade   archlinux.org: douglas
-# Contributor: Jesse Jaara gmail.com: jesse.jaara
-
-pkgname=libpng12
-_realname=libpng
-pkgver=1.2.50
-pkgrel=2
-pkgdesc=A collection of routines used to create PNG 

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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 04:20:38
  Author: dwallace
Revision: 95951

upgpkg: reptyr 0.5-1

upgpkg: reptyr 0.5-1

Modified:
  reptyr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 02:17:35 UTC (rev 95950)
+++ PKGBUILD2013-08-19 02:20:38 UTC (rev 95951)
@@ -2,15 +2,15 @@
 # Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
 
 pkgname=reptyr
-pkgver=0.4
-pkgrel=2
+pkgver=0.5
+pkgrel=1
 pkgdesc='Utility for taking an existing running program and attaching it to a 
new terminal'
 arch=('i686' 'x86_64')
 license=('BSD')
 url=https://github.com/nelhage/reptyr;
 depends=('glibc')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/nelhage/$pkgname/tarball/$pkgname-$pkgver;)
-md5sums=('4846a0b22c267a154853ce1409e823da')
+md5sums=('837318cfbdee76267162297987a94b8c')
 
 build() {
cd $srcdir/nelhage-$pkgname-*
@@ -22,4 +22,5 @@
cd $srcdir/nelhage-$pkgname-*
 
make DESTDIR=$pkgdir PREFIX=/usr install
+install -Dm644 COPYING $pkgdir/usr/share/licenses/reptyr/LICENSE
 } 



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

2013-08-18 Thread Daniel Wallace
Date: Monday, August 19, 2013 @ 04:21:16
  Author: dwallace
Revision: 95952

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

Added:
  reptyr/repos/community-i686/PKGBUILD
(from rev 95951, reptyr/trunk/PKGBUILD)
  reptyr/repos/community-x86_64/PKGBUILD
(from rev 95951, reptyr/trunk/PKGBUILD)
Deleted:
  reptyr/repos/community-i686/PKGBUILD
  reptyr/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   52 
 community-i686/PKGBUILD   |   25 -
 community-x86_64/PKGBUILD |   25 -
 3 files changed, 52 insertions(+), 50 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-19 02:20:38 UTC (rev 95951)
+++ community-i686/PKGBUILD 2013-08-19 02:21:16 UTC (rev 95952)
@@ -1,25 +0,0 @@
-$Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-
-pkgname=reptyr
-pkgver=0.4
-pkgrel=2
-pkgdesc=A tool for \re-ptying\ programs
-arch=('i686' 'x86_64')
-license=('BSD')
-url=https://github.com/nelhage/reptyr;
-depends=('glibc')
-source=($pkgname-$pkgver.tar.gz::https://github.com/nelhage/$pkgname/tarball/$pkgname-$pkgver;)
-md5sums=('4846a0b22c267a154853ce1409e823da')
-
-build() {
-   cd $srcdir/nelhage-$pkgname-*
-
-   make
-}
-
-package() {
-   cd $srcdir/nelhage-$pkgname-*
-
-   make DESTDIR=$pkgdir PREFIX=/usr install
-} 

Copied: reptyr/repos/community-i686/PKGBUILD (from rev 95951, 
reptyr/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-19 02:21:16 UTC (rev 95952)
@@ -0,0 +1,26 @@
+$Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+
+pkgname=reptyr
+pkgver=0.5
+pkgrel=1
+pkgdesc='Utility for taking an existing running program and attaching it to a 
new terminal'
+arch=('i686' 'x86_64')
+license=('BSD')
+url=https://github.com/nelhage/reptyr;
+depends=('glibc')
+source=($pkgname-$pkgver.tar.gz::https://github.com/nelhage/$pkgname/tarball/$pkgname-$pkgver;)
+md5sums=('837318cfbdee76267162297987a94b8c')
+
+build() {
+   cd $srcdir/nelhage-$pkgname-*
+
+   make
+}
+
+package() {
+   cd $srcdir/nelhage-$pkgname-*
+
+   make DESTDIR=$pkgdir PREFIX=/usr install
+install -Dm644 COPYING $pkgdir/usr/share/licenses/reptyr/LICENSE
+} 

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-19 02:20:38 UTC (rev 95951)
+++ community-x86_64/PKGBUILD   2013-08-19 02:21:16 UTC (rev 95952)
@@ -1,25 +0,0 @@
-$Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-
-pkgname=reptyr
-pkgver=0.4
-pkgrel=2
-pkgdesc=A tool for \re-ptying\ programs
-arch=('i686' 'x86_64')
-license=('BSD')
-url=https://github.com/nelhage/reptyr;
-depends=('glibc')
-source=($pkgname-$pkgver.tar.gz::https://github.com/nelhage/$pkgname/tarball/$pkgname-$pkgver;)
-md5sums=('4846a0b22c267a154853ce1409e823da')
-
-build() {
-   cd $srcdir/nelhage-$pkgname-*
-
-   make
-}
-
-package() {
-   cd $srcdir/nelhage-$pkgname-*
-
-   make DESTDIR=$pkgdir PREFIX=/usr install
-} 

Copied: reptyr/repos/community-x86_64/PKGBUILD (from rev 95951, 
reptyr/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-08-19 02:21:16 UTC (rev 95952)
@@ -0,0 +1,26 @@
+$Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+
+pkgname=reptyr
+pkgver=0.5
+pkgrel=1
+pkgdesc='Utility for taking an existing running program and attaching it to a 
new terminal'
+arch=('i686' 'x86_64')
+license=('BSD')
+url=https://github.com/nelhage/reptyr;
+depends=('glibc')
+source=($pkgname-$pkgver.tar.gz::https://github.com/nelhage/$pkgname/tarball/$pkgname-$pkgver;)
+md5sums=('837318cfbdee76267162297987a94b8c')
+
+build() {
+   cd $srcdir/nelhage-$pkgname-*
+
+   make
+}
+
+package() {
+   cd $srcdir/nelhage-$pkgname-*
+
+   make DESTDIR=$pkgdir PREFIX=/usr install
+install -Dm644 COPYING $pkgdir/usr/share/licenses/reptyr/LICENSE
+} 



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

2013-08-18 Thread Gaetan Bisson
Date: Monday, August 19, 2013 @ 07:30:25
  Author: bisson
Revision: 95954

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

Added:
  scribus/repos/community-i686/PKGBUILD
(from rev 95953, scribus/trunk/PKGBUILD)
  scribus/repos/community-i686/install
(from rev 95953, scribus/trunk/install)
  scribus/repos/community-x86_64/PKGBUILD
(from rev 95953, scribus/trunk/PKGBUILD)
  scribus/repos/community-x86_64/install
(from rev 95953, scribus/trunk/install)
Deleted:
  scribus/repos/community-i686/PKGBUILD
  scribus/repos/community-i686/install
  scribus/repos/community-x86_64/PKGBUILD
  scribus/repos/community-x86_64/install

---+
 /PKGBUILD |   98 
 /install  |   22 +
 community-i686/PKGBUILD   |   49 --
 community-i686/install|   11 
 community-x86_64/PKGBUILD |   49 --
 community-x86_64/install  |   11 
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-19 05:29:42 UTC (rev 95953)
+++ community-i686/PKGBUILD 2013-08-19 05:30:25 UTC (rev 95954)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Ronald van Haren ronald.archlinux.org
-# Contributor: tobias tob...@archlinux.org
-# Contributor: Ben b...@benmazer.net
-
-pkgname=scribus
-pkgver=1.4.3
-pkgrel=1
-pkgdesc='Desktop publishing software'
-url='http://www.scribus.net/'
-license=('GPL')
-arch=('i686' 'x86_64')
-makedepends=('cmake' 'boost' 'mesa')
-depends=('qt4' 'cairo' 'lcms2' 'libcups' 'libxml2' 'hyphen'
- 'ghostscript' 'python2' 'podofo' 'boost-libs'
- 'desktop-file-utils' 'shared-mime-info')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('23d85fcfe0a61ff88cc003639efdbb38d43feb7f')
-
-options=('!libtool')
-install=install
-
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver}
-   sed 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' -i 
scribus.desktop
-   sed \
-   -e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
-   -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-   -i scribus/plugins/scriptplugin/{samples,scripts}/*
-   install -d ../build
-}
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}/build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DLIB_SUFFIX=
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}/build
-   make DESTDIR=${pkgdir} install
-   install -Dm644 ../${pkgname}-${pkgver}/scribus.desktop 
${pkgdir}/usr/share/applications/scribus.desktop
-}

Copied: scribus/repos/community-i686/PKGBUILD (from rev 95953, 
scribus/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-19 05:30:25 UTC (rev 95954)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: tobias tob...@archlinux.org
+# Contributor: Ben b...@benmazer.net
+
+pkgname=scribus
+pkgver=1.4.3
+pkgrel=2
+pkgdesc='Desktop publishing software'
+url='http://www.scribus.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'boost' 'mesa')
+depends=('qt4' 'cairo' 'lcms2' 'libcups' 'libxml2' 'hyphen'
+ 'ghostscript' 'python2' 'podofo' 'boost-libs'
+ 'desktop-file-utils' 'shared-mime-info')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('30c111762790e4407c13236bbb4b06f04e907f71')
+
+options=('!libtool')
+install=install
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   sed 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' -i 
scribus.desktop
+   sed \
+   -e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+   -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+   -i scribus/plugins/scriptplugin/{samples,scripts}/*
+   install -d ../build
+}
+
+build() {
+   cd ${srcdir}/build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DLIB_SUFFIX=
+   make
+}
+
+package() {
+   cd ${srcdir}/build
+   make DESTDIR=${pkgdir} install
+   install -Dm644 ../${pkgname}-${pkgver}/scribus.desktop 
${pkgdir}/usr/share/applications/scribus.desktop
+}

Deleted: community-i686/install

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

2013-08-18 Thread Gaetan Bisson
Date: Monday, August 19, 2013 @ 07:29:42
  Author: bisson
Revision: 95953

fix FS#36426

Modified:
  scribus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 02:21:16 UTC (rev 95952)
+++ PKGBUILD2013-08-19 05:29:42 UTC (rev 95953)
@@ -7,7 +7,7 @@
 
 pkgname=scribus
 pkgver=1.4.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Desktop publishing software'
 url='http://www.scribus.net/'
 license=('GPL')
@@ -17,13 +17,13 @@
  'ghostscript' 'python2' 'podofo' 'boost-libs'
  'desktop-file-utils' 'shared-mime-info')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('23d85fcfe0a61ff88cc003639efdbb38d43feb7f')
+sha1sums=('30c111762790e4407c13236bbb4b06f04e907f71')
 
 options=('!libtool')
 install=install
 
 prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver}
+   cd ${srcdir}/${pkgname}-${pkgver}
sed 's|Icon=scribus|Icon=/usr/share/scribus/icons/scribus.png|' -i 
scribus.desktop
sed \
-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
@@ -33,7 +33,7 @@
 }
 
 build() {
-   cd ${srcdir}/${pkgname}-${pkgver}/build
+   cd ${srcdir}/build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
@@ -43,7 +43,7 @@
 }
 
 package() {
-   cd ${srcdir}/${pkgname}-${pkgver}/build
+   cd ${srcdir}/build
make DESTDIR=${pkgdir} install
install -Dm644 ../${pkgname}-${pkgver}/scribus.desktop 
${pkgdir}/usr/share/applications/scribus.desktop
 }