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

2014-05-05 Thread Felix Yan
Date: Tuesday, May 6, 2014 @ 06:29:53
  Author: fyan
Revision: 110748

upgpkg: python-tornado 3.2.1-1

- add tests (not passing though)

Modified:
  python-tornado/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-06 04:12:19 UTC (rev 110747)
+++ PKGBUILD2014-05-06 04:29:53 UTC (rev 110748)
@@ -3,35 +3,48 @@
 # Contributor: Thomas Dziedzic  gostrc at gmail 
 
 pkgname=('python-tornado' 'python2-tornado')
-pkgver=3.2.0
-pkgrel=2
+pkgver=3.2.1
+pkgrel=1
 pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
 arch=('i686' 'x86_64')
 url='http://www.tornadoweb.org/'
 license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 
'python2-backports.ssl_match_hostname')
-source=(https://github.com/facebook/tornado/archive/v${pkgver}.tar.gz;)
+makedepends=('python-setuptools' 'python2-setuptools' 
'python2-backports.ssl_match_hostname' 'git')
+checkdepends=('python-pycurl' 'python2-pycurl' 'python-mock' 'python2-mock' 
'twisted')
+source=(git+https://github.com/facebook/tornado.git#tag=v$pkgver;)
+sha512sums=('SKIP')
 
-build() {
-  cp -r tornado-${pkgver} python2-tornado-${pkgver}
+prepare() {
+  cp -a tornado{,-py2}
 
-  cd tornado-${pkgver}
+  # python - python2 rename
+  find tornado-py2 -name '*py' -exec sed -e 's_#!/usr/bin/env python_2_' -i 
{} \;
+}
 
+build() {
+  cd tornado
   python setup.py build
 
-  cd ../python2-tornado-${pkgver}
+  cd ../tornado-py2
+  python2 setup.py build
+}
 
-  # python - python2 rename
-  find -name '*py' -exec sed -e 's_#!/usr/bin/env python_2_' -i {} \;
+check() {
+  cd tornado
+  python -m tornado.test.runtests || :
+  python -m tornado.test.runtests 
--ioloop=tornado.platform.asyncio.AsyncIOLoop || :
+  python -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop || :
 
-  python2 setup.py build
+  cd ../tornado-py2
+  python2 -m tornado.test.runtests || :
+  python2 -m tornado.test.runtests 
--ioloop=tornado.platform.twisted.TwistedIOLoop || :
+  python2 -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop || :
 }
 
 package_python-tornado() {
   depends=('python')
 
-  cd tornado-${pkgver}
-
+  cd tornado
   python setup.py install --root=${pkgdir} --optimize=1
 }
 
@@ -38,9 +51,7 @@
 package_python2-tornado() {
   depends=('python2' 'python2-backports.ssl_match_hostname')
 
-  cd python2-tornado-${pkgver}
-
+  cd tornado-py2
   python2 setup.py install --root=${pkgdir} --optimize=1
 }
 
-sha512sums=('1703178be34060a6c36e9e0aa742b87ad905dfb0f565e43a1158edfe5c7800fe35aff9168b60aabd3b831b339af6ef95aaa144a9fb167c5d93f548eb59fc2557')



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

2014-05-05 Thread Felix Yan
Date: Tuesday, May 6, 2014 @ 06:31:01
  Author: fyan
Revision: 110749

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-06 04:29:53 UTC (rev 110748)
+++ community-i686/PKGBUILD 2014-05-06 04:31:01 UTC (rev 110749)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-
-pkgname=('python-tornado' 'python2-tornado')
-pkgver=3.2.0
-pkgrel=2
-pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
-arch=('i686' 'x86_64')
-url='http://www.tornadoweb.org/'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 
'python2-backports.ssl_match_hostname')
-source=(https://github.com/facebook/tornado/archive/v${pkgver}.tar.gz;)
-
-build() {
-  cp -r tornado-${pkgver} python2-tornado-${pkgver}
-
-  cd tornado-${pkgver}
-
-  python setup.py build
-
-  cd ../python2-tornado-${pkgver}
-
-  # python - python2 rename
-  find -name '*py' -exec sed -e 's_#!/usr/bin/env python_2_' -i {} \;
-
-  python2 setup.py build
-}
-
-package_python-tornado() {
-  depends=('python')
-
-  cd tornado-${pkgver}
-
-  python setup.py install --root=${pkgdir} --optimize=1
-}
-
-package_python2-tornado() {
-  depends=('python2' 'python2-backports.ssl_match_hostname')
-
-  cd python2-tornado-${pkgver}
-
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}
-
-sha512sums=('1703178be34060a6c36e9e0aa742b87ad905dfb0f565e43a1158edfe5c7800fe35aff9168b60aabd3b831b339af6ef95aaa144a9fb167c5d93f548eb59fc2557')

Copied: python-tornado/repos/community-i686/PKGBUILD (from rev 110748, 
python-tornado/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-06 04:31:01 UTC (rev 110749)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+
+pkgname=('python-tornado' 'python2-tornado')
+pkgver=3.2.1
+pkgrel=1
+pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
+arch=('i686' 'x86_64')
+url='http://www.tornadoweb.org/'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 
'python2-backports.ssl_match_hostname' 'git')
+checkdepends=('python-pycurl' 'python2-pycurl' 'python-mock' 'python2-mock' 
'twisted')
+source=(git+https://github.com/facebook/tornado.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a tornado{,-py2}
+
+  # python - python2 rename
+  find tornado-py2 -name '*py' -exec sed -e 's_#!/usr/bin/env python_2_' -i 
{} \;
+}
+
+build() {
+  cd tornado
+  python setup.py build
+
+  cd ../tornado-py2
+  python2 setup.py build
+}
+
+check() {
+  cd tornado
+  python -m tornado.test.runtests || :
+  python -m tornado.test.runtests 
--ioloop=tornado.platform.asyncio.AsyncIOLoop || :
+  python -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop || :
+
+  cd ../tornado-py2
+  python2 -m tornado.test.runtests || :
+  python2 -m tornado.test.runtests 
--ioloop=tornado.platform.twisted.TwistedIOLoop || :
+  python2 -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop || :
+}
+
+package_python-tornado() {
+  depends=('python')
+
+  cd tornado
+  python setup.py install --root=${pkgdir} --optimize=1
+}
+
+package_python2-tornado() {
+  depends=('python2' 'python2-backports.ssl_match_hostname')
+
+  cd tornado-py2
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-06 04:29:53 UTC (rev 110748)
+++ community-x86_64/PKGBUILD   2014-05-06 04:31:01 UTC (rev 110749)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-
-pkgname=('python-tornado' 'python2-tornado')
-pkgver=3.2.0
-pkgrel=2
-pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
-arch=('i686' 'x86_64')
-url='http://www.tornadoweb.org/'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 
'python2-backports.ssl_match_hostname')

[arch-commits] Commit in lvm2/repos (42 files)

2014-05-05 Thread Thomas Bächler
Date: Monday, May 5, 2014 @ 09:44:24
  Author: thomas
Revision: 212046

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

Added:
  lvm2/repos/core-i686/11-dm-initramfs.rules
(from rev 212045, lvm2/repos/testing-i686/11-dm-initramfs.rules)
  lvm2/repos/core-i686/PKGBUILD
(from rev 212045, lvm2/repos/testing-i686/PKGBUILD)
  lvm2/repos/core-i686/lvm2-fix-pvscan-service.patch
(from rev 212045, lvm2/repos/testing-i686/lvm2-fix-pvscan-service.patch)
  lvm2/repos/core-i686/lvm2-make-sockets-static.patch
(from rev 212045, lvm2/repos/testing-i686/lvm2-make-sockets-static.patch)
  lvm2/repos/core-i686/lvm2.install
(from rev 212045, lvm2/repos/testing-i686/lvm2.install)
  lvm2/repos/core-i686/lvm2_hook
(from rev 212045, lvm2/repos/testing-i686/lvm2_hook)
  lvm2/repos/core-i686/lvm2_install
(from rev 212045, lvm2/repos/testing-i686/lvm2_install)
  lvm2/repos/core-i686/sd-lvm2
(from rev 212045, lvm2/repos/testing-i686/sd-lvm2)
  lvm2/repos/core-x86_64/11-dm-initramfs.rules
(from rev 212045, lvm2/repos/testing-x86_64/11-dm-initramfs.rules)
  lvm2/repos/core-x86_64/PKGBUILD
(from rev 212045, lvm2/repos/testing-x86_64/PKGBUILD)
  lvm2/repos/core-x86_64/lvm2-fix-pvscan-service.patch
(from rev 212045, lvm2/repos/testing-x86_64/lvm2-fix-pvscan-service.patch)
  lvm2/repos/core-x86_64/lvm2-make-sockets-static.patch
(from rev 212045, lvm2/repos/testing-x86_64/lvm2-make-sockets-static.patch)
  lvm2/repos/core-x86_64/lvm2.install
(from rev 212045, lvm2/repos/testing-x86_64/lvm2.install)
  lvm2/repos/core-x86_64/lvm2_hook
(from rev 212045, lvm2/repos/testing-x86_64/lvm2_hook)
  lvm2/repos/core-x86_64/lvm2_install
(from rev 212045, lvm2/repos/testing-x86_64/lvm2_install)
  lvm2/repos/core-x86_64/sd-lvm2
(from rev 212045, lvm2/repos/testing-x86_64/sd-lvm2)
Deleted:
  lvm2/repos/core-i686/11-dm-initramfs.rules
  lvm2/repos/core-i686/PKGBUILD
  lvm2/repos/core-i686/dmeventd.service
  lvm2/repos/core-i686/dmeventd.socket
  lvm2/repos/core-i686/lvm-monitoring.service
  lvm2/repos/core-i686/lvm2.conf
  lvm2/repos/core-i686/lvm2.install
  lvm2/repos/core-i686/lvm2_hook
  lvm2/repos/core-i686/lvm2_install
  lvm2/repos/core-i686/lvmetad.service
  lvm2/repos/core-i686/lvmetad.socket
  lvm2/repos/core-i686/sd-lvm2
  lvm2/repos/core-x86_64/11-dm-initramfs.rules
  lvm2/repos/core-x86_64/PKGBUILD
  lvm2/repos/core-x86_64/dmeventd.service
  lvm2/repos/core-x86_64/dmeventd.socket
  lvm2/repos/core-x86_64/lvm-monitoring.service
  lvm2/repos/core-x86_64/lvm2.conf
  lvm2/repos/core-x86_64/lvm2.install
  lvm2/repos/core-x86_64/lvm2_hook
  lvm2/repos/core-x86_64/lvm2_install
  lvm2/repos/core-x86_64/lvmetad.service
  lvm2/repos/core-x86_64/lvmetad.socket
  lvm2/repos/core-x86_64/sd-lvm2
  lvm2/repos/testing-i686/
  lvm2/repos/testing-x86_64/

+
 /11-dm-initramfs.rules |6 
 /PKGBUILD  |  210 +++
 /lvm2.install  |   50 ++
 /lvm2_hook |   24 +++
 /lvm2_install  |   58 +++
 /sd-lvm2   |   64 
 core-i686/11-dm-initramfs.rules|3 
 core-i686/PKGBUILD |   99 
 core-i686/dmeventd.service |   14 -
 core-i686/dmeventd.socket  |   11 -
 core-i686/lvm-monitoring.service   |   17 --
 core-i686/lvm2-fix-pvscan-service.patch|   11 +
 core-i686/lvm2-make-sockets-static.patch   |   20 ++
 core-i686/lvm2.conf|2 
 core-i686/lvm2.install |   16 --
 core-i686/lvm2_hook|   12 -
 core-i686/lvm2_install |   29 ---
 core-i686/lvmetad.service  |   16 --
 core-i686/lvmetad.socket   |   10 -
 core-i686/sd-lvm2  |   31 ---
 core-x86_64/11-dm-initramfs.rules  |3 
 core-x86_64/PKGBUILD   |   99 
 core-x86_64/dmeventd.service   |   14 -
 core-x86_64/dmeventd.socket|   11 -
 core-x86_64/lvm-monitoring.service |   17 --
 core-x86_64/lvm2-fix-pvscan-service.patch  |   11 +
 core-x86_64/lvm2-make-sockets-static.patch |   20 ++
 core-x86_64/lvm2.conf  |2 
 core-x86_64/lvm2.install   |   16 --
 core-x86_64/lvm2_hook  |   12 -
 core-x86_64/lvm2_install   |   29 ---
 core-x86_64/lvmetad.service|   16 --
 core-x86_64/lvmetad.socket |   10 -
 core-x86_64/sd-lvm2|   31 ---
 34 files changed, 474 insertions(+), 520 deletions(-)

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


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

2014-05-05 Thread Maxime Gauduin
Date: Monday, May 5, 2014 @ 09:48:59
  Author: alucryd
Revision: 110678

archrelease: copy trunk to community-any

Added:
  numix-themes/repos/community-any/PKGBUILD
(from rev 110677, numix-themes/trunk/PKGBUILD)
Deleted:
  numix-themes/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 07:48:50 UTC (rev 110677)
+++ PKGBUILD2014-05-05 07:48:59 UTC (rev 110678)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: Diego cdprinc...@gmail.com
-
-pkgname=numix-themes
-pkgver=2.2.2
-pkgrel=1
-pkgdesc=A flat and light theme with a modern look (GNOME, Openbox, Unity, 
Xfce)
-arch=('any')
-url='http://numixproject.org/'
-license=('GPL3')
-depends=('gtk-engine-murrine')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/shimmerproject/Numix/archive/v${pkgver}.tar.gz;)
-sha256sums=('b31e6fededfe21102debf5396eab54ce9de222d6977647ffe33b94c5fca854f7')
-
-package() {
-  cd Numix-${pkgver}
-
-  install -dm 755 $pkgdir/usr/share/themes/Numix
-  rm -rf .git .gitignore CREDITS LICENSE README.md
-  cp -dr --no-preserve='ownership' * $pkgdir/usr/share/themes/Numix/
-}
-
-# vim: ts=2 sw=2 et:

Copied: numix-themes/repos/community-any/PKGBUILD (from rev 110677, 
numix-themes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 07:48:59 UTC (rev 110678)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Diego cdprinc...@gmail.com
+
+pkgname=numix-themes
+pkgver=2.2.3
+pkgrel=1
+pkgdesc=A flat and light theme with a modern look (GNOME, Openbox, Unity, 
Xfce)
+arch=('any')
+url='http://numixproject.org/'
+license=('GPL3')
+depends=('gtk-engine-murrine')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/shimmerproject/Numix/archive/v${pkgver}.tar.gz;)
+sha256sums=('b0acc2d81300b898403766456d3406304553cc7016677381f3179dbeb1192a2d')
+
+package() {
+  cd Numix-${pkgver}
+
+  install -dm 755 $pkgdir/usr/share/themes/Numix
+  rm -rf .git .gitignore CREDITS LICENSE README.md
+  cp -dr --no-preserve='ownership' * $pkgdir/usr/share/themes/Numix/
+}
+
+# vim: ts=2 sw=2 et:



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

2014-05-05 Thread Maxime Gauduin
Date: Monday, May 5, 2014 @ 09:48:50
  Author: alucryd
Revision: 110677

upgpkg: numix-themes 2.2.3-1

Modified:
  numix-themes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 00:03:53 UTC (rev 110676)
+++ PKGBUILD2014-05-05 07:48:50 UTC (rev 110677)
@@ -3,7 +3,7 @@
 # Contributor: Diego cdprinc...@gmail.com
 
 pkgname=numix-themes
-pkgver=2.2.2
+pkgver=2.2.3
 pkgrel=1
 pkgdesc=A flat and light theme with a modern look (GNOME, Openbox, Unity, 
Xfce)
 arch=('any')
@@ -11,7 +11,7 @@
 license=('GPL3')
 depends=('gtk-engine-murrine')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/shimmerproject/Numix/archive/v${pkgver}.tar.gz;)
-sha256sums=('b31e6fededfe21102debf5396eab54ce9de222d6977647ffe33b94c5fca854f7')
+sha256sums=('b0acc2d81300b898403766456d3406304553cc7016677381f3179dbeb1192a2d')
 
 package() {
   cd Numix-${pkgver}



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:14:04
  Author: spupykin
Revision: 110679

upgpkg: libmicrohttpd 0.9.35-1

upd

Modified:
  libmicrohttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 07:48:59 UTC (rev 110678)
+++ PKGBUILD2014-05-05 09:14:04 UTC (rev 110679)
@@ -6,7 +6,7 @@
 # Contributor: Mathias Rohnstock links...@gmx.de
 
 pkgname=libmicrohttpd
-pkgver=0.9.34
+pkgver=0.9.35
 pkgrel=1
 pkgdesc=a small C library that is supposed to make it easy to run an HTTP 
server as part of another application.
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 optdepends=('file' 'curl')
 install=libmicrohttpd.install
 source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
-md5sums=('2947eee13c2c8affb95023a0cb6fda0c')
+md5sums=('a9d747b879569036bb791653a1c7')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:14:21
  Author: spupykin
Revision: 110680

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

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

+
 /PKGBUILD  |   70 +++
 /libmicrohttpd.install |   40 +
 community-i686/PKGBUILD|   35 ---
 community-i686/libmicrohttpd.install   |   20 
 community-x86_64/PKGBUILD  |   35 ---
 community-x86_64/libmicrohttpd.install |   20 
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 09:14:04 UTC (rev 110679)
+++ community-i686/PKGBUILD 2014-05-05 09:14:21 UTC (rev 110680)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Norberto Lopes shel...@mail.telepac.pt
-# Contributor: Kao Dome kaod...@gmail.com
-# Contributor: Dmitrij D. Czarkoff czark...@gmail.com
-# Contributor: Mathias Rohnstock links...@gmx.de
-
-pkgname=libmicrohttpd
-pkgver=0.9.34
-pkgrel=1
-pkgdesc=a small C library that is supposed to make it easy to run an HTTP 
server as part of another application.
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/libmicrohttpd/;
-license=('LGPL')
-depends=('gnutls' 'libgcrypt')
-optdepends=('file' 'curl')
-install=libmicrohttpd.install
-source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
-md5sums=('2947eee13c2c8affb95023a0cb6fda0c')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
-   --enable-curl --enable-messages --with-pic
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
-   ${pkgdir}/usr/include/$pkgname/platform.h
-  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
-   $pkgdir/usr/lib/pkgconfig/libmicrohttpd.pc
-}

Copied: libmicrohttpd/repos/community-i686/PKGBUILD (from rev 110679, 
libmicrohttpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 09:14:21 UTC (rev 110680)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Norberto Lopes shel...@mail.telepac.pt
+# Contributor: Kao Dome kaod...@gmail.com
+# Contributor: Dmitrij D. Czarkoff czark...@gmail.com
+# Contributor: Mathias Rohnstock links...@gmx.de
+
+pkgname=libmicrohttpd
+pkgver=0.9.35
+pkgrel=1
+pkgdesc=a small C library that is supposed to make it easy to run an HTTP 
server as part of another application.
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/libmicrohttpd/;
+license=('LGPL')
+depends=('gnutls' 'libgcrypt')
+optdepends=('file' 'curl')
+install=libmicrohttpd.install
+source=(ftp://ftp.gnu.org/gnu/libmicrohttpd/$pkgname-$pkgver.tar.gz)
+md5sums=('a9d747b879569036bb791653a1c7')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \
+   --enable-curl --enable-messages --with-pic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/src/include/platform.h \
+   ${pkgdir}/usr/include/$pkgname/platform.h
+  sed -i 's#Cflags: -I${includedir}#Cflags: -I${includedir} 
-I${includedir}/libmicrohttpd#' \
+   $pkgdir/usr/lib/pkgconfig/libmicrohttpd.pc
+}

Deleted: community-i686/libmicrohttpd.install
===
--- community-i686/libmicrohttpd.install2014-05-05 09:14:04 UTC (rev 
110679)
+++ community-i686/libmicrohttpd.install2014-05-05 09:14:21 UTC (rev 
110680)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(libmicrohttpd.info libmicrohttpd-tutorial.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file.gz $infodir/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-

[arch-commits] Commit in openvswitch/repos (20 files)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:14:44
  Author: spupykin
Revision: 110682

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

Added:
  openvswitch/repos/community-i686/PKGBUILD
(from rev 110681, openvswitch/trunk/PKGBUILD)
  openvswitch/repos/community-i686/openvswitch.install
(from rev 110681, openvswitch/trunk/openvswitch.install)
  openvswitch/repos/community-i686/openvswitch.tmpfiles
(from rev 110681, openvswitch/trunk/openvswitch.tmpfiles)
  openvswitch/repos/community-i686/ovs-vswitchd.service
(from rev 110681, openvswitch/trunk/ovs-vswitchd.service)
  openvswitch/repos/community-i686/ovsdb-server.service
(from rev 110681, openvswitch/trunk/ovsdb-server.service)
  openvswitch/repos/community-x86_64/PKGBUILD
(from rev 110681, openvswitch/trunk/PKGBUILD)
  openvswitch/repos/community-x86_64/openvswitch.install
(from rev 110681, openvswitch/trunk/openvswitch.install)
  openvswitch/repos/community-x86_64/openvswitch.tmpfiles
(from rev 110681, openvswitch/trunk/openvswitch.tmpfiles)
  openvswitch/repos/community-x86_64/ovs-vswitchd.service
(from rev 110681, openvswitch/trunk/ovs-vswitchd.service)
  openvswitch/repos/community-x86_64/ovsdb-server.service
(from rev 110681, openvswitch/trunk/ovsdb-server.service)
Deleted:
  openvswitch/repos/community-i686/PKGBUILD
  openvswitch/repos/community-i686/openvswitch.install
  openvswitch/repos/community-i686/openvswitch.tmpfiles
  openvswitch/repos/community-i686/ovs-vswitchd.service
  openvswitch/repos/community-i686/ovsdb-server.service
  openvswitch/repos/community-x86_64/PKGBUILD
  openvswitch/repos/community-x86_64/openvswitch.install
  openvswitch/repos/community-x86_64/openvswitch.tmpfiles
  openvswitch/repos/community-x86_64/ovs-vswitchd.service
  openvswitch/repos/community-x86_64/ovsdb-server.service

---+
 /PKGBUILD |  128 
 /openvswitch.install  |   32 
 /openvswitch.tmpfiles |2 
 /ovs-vswitchd.service |   28 +++
 /ovsdb-server.service |   12 +++
 community-i686/PKGBUILD   |   59 --
 community-i686/openvswitch.install|   16 
 community-i686/openvswitch.tmpfiles   |1 
 community-i686/ovs-vswitchd.service   |   14 ---
 community-i686/ovsdb-server.service   |6 -
 community-x86_64/PKGBUILD |   59 --
 community-x86_64/openvswitch.install  |   16 
 community-x86_64/openvswitch.tmpfiles |1 
 community-x86_64/ovs-vswitchd.service |   14 ---
 community-x86_64/ovsdb-server.service |6 -
 15 files changed, 202 insertions(+), 192 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 09:14:25 UTC (rev 110681)
+++ community-i686/PKGBUILD 2014-05-05 09:14:44 UTC (rev 110682)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Pedro Martinez-Julia (pedr...@um.es)
-# Contributor: Matt Monaco net 0x01b dgbaley27
-
-pkgname=openvswitch
-pkgver=2.1.1
-pkgrel=1
-pkgdesc=Production Quality, Multilayer Open Virtual Switch
-url=http://openvswitch.org;
-license=('APACHE')
-arch=(x86_64 i686)
-install=openvswitch.install
-source=(http://openvswitch.org/releases/openvswitch-$pkgver.tar.gz;
-   openvswitch.install
-   openvswitch.tmpfiles
-   ovsdb-server.service
-   ovs-vswitchd.service)
-depends=('openssl')
-makedepends=('python2')
-optdepends=('python2')
-sha256sums=('014907bcf2f98228dfa4472ea1547871d24b8fb8192dcfff3ead1af93c433a67'
-'9d30ed859214f4cdeb6b6450d5c5defaf31f2c593c05201109df66fa9373ef0c'
-'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
-'5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657'
-'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45')
-sha256sums=('a032fcc3becd98802b4816488cb3a2441b6b88b510ec28a929e756f948eb48c0'
-'9d30ed859214f4cdeb6b6450d5c5defaf31f2c593c05201109df66fa9373ef0c'
-'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
-'5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657'
-'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45')
-sha256sums=('43f228ac145f682a7c6681bae7b9bee004fcdd9d4a4503d87ca65c0e9fe1a04b'
-'9d30ed859214f4cdeb6b6450d5c5defaf31f2c593c05201109df66fa9373ef0c'
-'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
-'5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657'
-'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   ./boot.sh
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   

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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:14:25
  Author: spupykin
Revision: 110681

upgpkg: openvswitch 2.1.2-1

upd

Modified:
  openvswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:14:21 UTC (rev 110680)
+++ PKGBUILD2014-05-05 09:14:25 UTC (rev 110681)
@@ -4,7 +4,7 @@
 # Contributor: Matt Monaco net 0x01b dgbaley27
 
 pkgname=openvswitch
-pkgver=2.1.1
+pkgver=2.1.2
 pkgrel=1
 pkgdesc=Production Quality, Multilayer Open Virtual Switch
 url=http://openvswitch.org;
@@ -34,6 +34,11 @@
 'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
 '5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657'
 'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45')
+sha256sums=('875429b052c4001815b6cb38616c7a6cb212df4bba74602164ee0a99b172079b'
+'9d30ed859214f4cdeb6b6450d5c5defaf31f2c593c05201109df66fa9373ef0c'
+'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
+'5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657'
+'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45')
 
 build() {
cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in perl-cpan-perl-releases/trunk (PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:14:48
  Author: spupykin
Revision: 110683

upgpkg: perl-cpan-perl-releases 1.68-1

upd

Modified:
  perl-cpan-perl-releases/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:14:44 UTC (rev 110682)
+++ PKGBUILD2014-05-05 09:14:48 UTC (rev 110683)
@@ -2,7 +2,7 @@
 # Maintainer: 
 
 pkgname=perl-cpan-perl-releases
-pkgver=1.66
+pkgver=1.68
 pkgrel=1
 pkgdesc='Mapping Perl releases on CPAN to the location of the tarballs'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-$pkgver.tar.gz;)
-md5sums=('0ab74d63693c4e96c843fb74604e5096')
+md5sums=('2ac6549c5192cfc8eedebe79656b1f91')
 
 build() {
   cd CPAN-Perl-Releases-$pkgver



[arch-commits] Commit in perl-cpan-perl-releases/repos/community-any (2 files)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:14:59
  Author: spupykin
Revision: 110684

archrelease: copy trunk to community-any

Added:
  perl-cpan-perl-releases/repos/community-any/PKGBUILD
(from rev 110683, perl-cpan-perl-releases/trunk/PKGBUILD)
Deleted:
  perl-cpan-perl-releases/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 09:14:48 UTC (rev 110683)
+++ PKGBUILD2014-05-05 09:14:59 UTC (rev 110684)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: 
-
-pkgname=perl-cpan-perl-releases
-pkgver=1.66
-pkgrel=1
-pkgdesc='Mapping Perl releases on CPAN to the location of the tarballs'
-arch=('any')
-url=https://metacpan.org/release/CPAN-Perl-Releases;
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-$pkgver.tar.gz;)
-md5sums=('0ab74d63693c4e96c843fb74604e5096')
-
-build() {
-  cd CPAN-Perl-Releases-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd CPAN-Perl-Releases-$pkgver
-  make test
-}
-
-package() {
-  cd CPAN-Perl-Releases-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: perl-cpan-perl-releases/repos/community-any/PKGBUILD (from rev 110683, 
perl-cpan-perl-releases/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 09:14:59 UTC (rev 110684)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: 
+
+pkgname=perl-cpan-perl-releases
+pkgver=1.68
+pkgrel=1
+pkgdesc='Mapping Perl releases on CPAN to the location of the tarballs'
+arch=('any')
+url=https://metacpan.org/release/CPAN-Perl-Releases;
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-$pkgver.tar.gz;)
+md5sums=('2ac6549c5192cfc8eedebe79656b1f91')
+
+build() {
+  cd CPAN-Perl-Releases-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd CPAN-Perl-Releases-$pkgver
+  make test
+}
+
+package() {
+  cd CPAN-Perl-Releases-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:15:07
  Author: spupykin
Revision: 110685

upgpkg: perl-curses 1.31-1

upd

Modified:
  perl-curses/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:14:59 UTC (rev 110684)
+++ PKGBUILD2014-05-05 09:15:07 UTC (rev 110685)
@@ -4,7 +4,7 @@
 # Contributor: Francois Charette firmi...@gmx.net
 
 pkgname=perl-curses
-pkgver=1.29
+pkgver=1.31
 pkgrel=1
 pkgdesc=Character screen handling and windowing
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('perl' 'ncurses')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
-md5sums=('236de0209223e40b458c55e5250da2b3')
+md5sums=('119aff0faaa9347ed32dad127c4a6707')
 
 build() {
   cd  $srcdir/Curses-$pkgver



[arch-commits] Commit in perl-devel-patchperl/repos/community-any (PKGBUILD PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:15:51
  Author: spupykin
Revision: 110690

archrelease: copy trunk to community-any

Added:
  perl-devel-patchperl/repos/community-any/PKGBUILD
(from rev 110689, perl-devel-patchperl/trunk/PKGBUILD)
Deleted:
  perl-devel-patchperl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 09:15:42 UTC (rev 110689)
+++ PKGBUILD2014-05-05 09:15:51 UTC (rev 110690)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-devel-patchperl
-pkgver=1.20
-pkgrel=1
-pkgdesc=Patch perl source a la Devel::PPPort's buildperl.pl
-arch=('any')
-url=https://metacpan.org/release/Devel-PatchPerl;
-license=('PerlArtistic' 'GPL')
-depends=('perl' 'perl-file-pushd')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/Devel-PatchPerl-$pkgver.tar.gz;)
-md5sums=('79f9a1fd4b9ebe511d844863b777')
-
-build() {
-  cd Devel-PatchPerl-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Devel-PatchPerl-$pkgver
-  make test
-}
-
-package() {
-  cd Devel-PatchPerl-$pkgver
-  make install DESTDIR=$pkgdir
-}
-

Copied: perl-devel-patchperl/repos/community-any/PKGBUILD (from rev 110689, 
perl-devel-patchperl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 09:15:51 UTC (rev 110690)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-devel-patchperl
+pkgver=1.22
+pkgrel=1
+pkgdesc=Patch perl source a la Devel::PPPort's buildperl.pl
+arch=('any')
+url=https://metacpan.org/release/Devel-PatchPerl;
+license=('PerlArtistic' 'GPL')
+depends=('perl' 'perl-file-pushd')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/Devel-PatchPerl-$pkgver.tar.gz;)
+md5sums=('3264cd23597912a0a2d837c97fdbae93')
+
+build() {
+  cd Devel-PatchPerl-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Devel-PatchPerl-$pkgver
+  make test
+}
+
+package() {
+  cd Devel-PatchPerl-$pkgver
+  make install DESTDIR=$pkgdir
+}
+



[arch-commits] Commit in perl-email-address/repos/community-any (PKGBUILD PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:16:03
  Author: spupykin
Revision: 110692

archrelease: copy trunk to community-any

Added:
  perl-email-address/repos/community-any/PKGBUILD
(from rev 110691, perl-email-address/trunk/PKGBUILD)
Deleted:
  perl-email-address/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 09:15:54 UTC (rev 110691)
+++ PKGBUILD2014-05-05 09:16:03 UTC (rev 110692)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sergej Pupykin pupykin.s+...@gmail.com
-
-pkgname=perl-email-address
-pkgver=1.901
-pkgrel=1
-pkgdesc=RFC 2822 Address Parsing and Creation 
-arch=('any')
-url=http://search.cpan.org/dist/Email-Address;
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Address-$pkgver.tar.gz;)
-md5sums=('9ba0cc26b1813315f2e5b71d104f51fb')
-
-build() {
-  cd  $srcdir/Email-Address-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Email-Address-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-email-address/repos/community-any/PKGBUILD (from rev 110691, 
perl-email-address/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 09:16:03 UTC (rev 110692)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+...@gmail.com
+
+pkgname=perl-email-address
+pkgver=1.903
+pkgrel=1
+pkgdesc=RFC 2822 Address Parsing and Creation 
+arch=('any')
+url=http://search.cpan.org/dist/Email-Address;
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Address-$pkgver.tar.gz;)
+md5sums=('9cf17604b3527121d85f7c9c53702ff6')
+
+build() {
+  cd  $srcdir/Email-Address-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Email-Address-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:15:39
  Author: spupykin
Revision: 110688

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

Added:
  perl-datetime/repos/community-i686/PKGBUILD
(from rev 110687, perl-datetime/trunk/PKGBUILD)
  perl-datetime/repos/community-x86_64/PKGBUILD
(from rev 110687, perl-datetime/trunk/PKGBUILD)
Deleted:
  perl-datetime/repos/community-i686/PKGBUILD
  perl-datetime/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 09:15:26 UTC (rev 110687)
+++ community-i686/PKGBUILD 2014-05-05 09:15:39 UTC (rev 110688)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-datetime
-pkgver=1.08
-pkgrel=1
-pkgdesc=A complete, easy to use date and time object
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/DateTime;
-license=('GPL' 'PerlArtistic')
-depends=('perl-datetime-timezone=0.59' 'perl-datetime-locale=0.41'
-'perl-params-validate=0.76' 'perl-math-round')
-LC_NUMERIC=C
-provides=(perl-datetime=`printf %.4f $pkgver`)
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz)
-md5sums=('e928c3cdf31b7e39b2f7865f4037ce8b')
-
-build() {
-  cd  $srcdir/DateTime-$pkgver
-  perl Build.PL installdirs=vendor destdir=$pkgdir/
-  ./Build
-}
-
-check() {
-  cd  $srcdir/DateTime-$pkgver
-#  ./Build test
-  true
-}
-
-package() {
-  cd  $srcdir/DateTime-$pkgver
-  ./Build install
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-datetime/repos/community-i686/PKGBUILD (from rev 110687, 
perl-datetime/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 09:15:39 UTC (rev 110688)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-datetime
+pkgver=1.09
+pkgrel=1
+pkgdesc=A complete, easy to use date and time object
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/DateTime;
+license=('GPL' 'PerlArtistic')
+depends=('perl-datetime-timezone=0.59' 'perl-datetime-locale=0.41'
+'perl-params-validate=0.76' 'perl-math-round')
+LC_NUMERIC=C
+provides=(perl-datetime=`printf %.4f $pkgver`)
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz)
+md5sums=('5bd3b4145ea08df1af71f2e8979ca178')
+
+build() {
+  cd  $srcdir/DateTime-$pkgver
+  perl Build.PL installdirs=vendor destdir=$pkgdir/
+  ./Build
+}
+
+check() {
+  cd  $srcdir/DateTime-$pkgver
+#  ./Build test
+  true
+}
+
+package() {
+  cd  $srcdir/DateTime-$pkgver
+  ./Build install
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-05 09:15:26 UTC (rev 110687)
+++ community-x86_64/PKGBUILD   2014-05-05 09:15:39 UTC (rev 110688)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-datetime
-pkgver=1.08
-pkgrel=1
-pkgdesc=A complete, easy to use date and time object
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/DateTime;
-license=('GPL' 'PerlArtistic')
-depends=('perl-datetime-timezone=0.59' 'perl-datetime-locale=0.41'
-'perl-params-validate=0.76' 'perl-math-round')
-LC_NUMERIC=C
-provides=(perl-datetime=`printf %.4f $pkgver`)
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz)
-md5sums=('e928c3cdf31b7e39b2f7865f4037ce8b')
-
-build() {
-  cd  $srcdir/DateTime-$pkgver
-  perl Build.PL installdirs=vendor destdir=$pkgdir/
-  ./Build
-}
-
-check() {
-  cd  $srcdir/DateTime-$pkgver
-#  ./Build test
-  true
-}
-
-package() {
-  cd  $srcdir/DateTime-$pkgver
-  ./Build install
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-datetime/repos/community-x86_64/PKGBUILD (from rev 110687, 
perl-datetime/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-05 09:15:39 UTC (rev 110688)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-datetime

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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:15:26
  Author: spupykin
Revision: 110687

upgpkg: perl-datetime 1.09-1

upd

Modified:
  perl-datetime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:15:21 UTC (rev 110686)
+++ PKGBUILD2014-05-05 09:15:26 UTC (rev 110687)
@@ -3,7 +3,7 @@
 # Contributor: François Charette firmicus ατ gmx δοτ net
 
 pkgname=perl-datetime
-pkgver=1.08
+pkgver=1.09
 pkgrel=1
 pkgdesc=A complete, easy to use date and time object
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 provides=(perl-datetime=`printf %.4f $pkgver`)
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz)
-md5sums=('e928c3cdf31b7e39b2f7865f4037ce8b')
+md5sums=('5bd3b4145ea08df1af71f2e8979ca178')
 
 build() {
   cd  $srcdir/DateTime-$pkgver



[arch-commits] Commit in perl-term-progressbar/repos/community-any (PKGBUILD PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:16:13
  Author: spupykin
Revision: 110694

archrelease: copy trunk to community-any

Added:
  perl-term-progressbar/repos/community-any/PKGBUILD
(from rev 110693, perl-term-progressbar/trunk/PKGBUILD)
Deleted:
  perl-term-progressbar/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 09:16:05 UTC (rev 110693)
+++ PKGBUILD2014-05-05 09:16:13 UTC (rev 110694)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Charles Mauch cma...@gmail.com
-
-pkgname=perl-term-progressbar
-pkgver=2.14
-pkgrel=1
-pkgdesc=Perl/CPAN Module Term::ProgressBar : Progress bar in just ASCII  
using Term
-arch=(any)
-url=http://search.cpan.org/dist/Term-ProgressBar;
-license=(GPL PerlArtistic)
-depends=(perl-class-methodmaker perl-term-readkey)
-source=(http://search.cpan.org/CPAN/authors/id/S/SZ/SZABGAB/Term-ProgressBar-$pkgver.tar.gz;)
-md5sums=('eaa537548988167bb72fa38f4fde32bf')
-
-build() {
-  cd $srcdir/Term-ProgressBar-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd $srcdir/Term-ProgressBar-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-term-progressbar/repos/community-any/PKGBUILD (from rev 110693, 
perl-term-progressbar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 09:16:13 UTC (rev 110694)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+
+pkgname=perl-term-progressbar
+pkgver=2.15
+pkgrel=1
+pkgdesc=Perl/CPAN Module Term::ProgressBar : Progress bar in just ASCII  
using Term
+arch=(any)
+url=http://search.cpan.org/dist/Term-ProgressBar;
+license=(GPL PerlArtistic)
+depends=(perl-class-methodmaker perl-term-readkey)
+source=(http://search.cpan.org/CPAN/authors/id/S/SZ/SZABGAB/Term-ProgressBar-$pkgver.tar.gz;)
+md5sums=('ce8ff9ae12f626fa2119885f124af5be')
+
+build() {
+  cd $srcdir/Term-ProgressBar-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $srcdir/Term-ProgressBar-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}



[arch-commits] Commit in perl-term-progressbar/trunk (PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:16:05
  Author: spupykin
Revision: 110693

upgpkg: perl-term-progressbar 2.15-1

upd

Modified:
  perl-term-progressbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:16:03 UTC (rev 110692)
+++ PKGBUILD2014-05-05 09:16:05 UTC (rev 110693)
@@ -3,7 +3,7 @@
 # Maintainer: Charles Mauch cma...@gmail.com
 
 pkgname=perl-term-progressbar
-pkgver=2.14
+pkgver=2.15
 pkgrel=1
 pkgdesc=Perl/CPAN Module Term::ProgressBar : Progress bar in just ASCII  
using Term
 arch=(any)
@@ -11,7 +11,7 @@
 license=(GPL PerlArtistic)
 depends=(perl-class-methodmaker perl-term-readkey)
 
source=(http://search.cpan.org/CPAN/authors/id/S/SZ/SZABGAB/Term-ProgressBar-$pkgver.tar.gz;)
-md5sums=('eaa537548988167bb72fa38f4fde32bf')
+md5sums=('ce8ff9ae12f626fa2119885f124af5be')
 
 build() {
   cd $srcdir/Term-ProgressBar-$pkgver



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:15:21
  Author: spupykin
Revision: 110686

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

Added:
  perl-curses/repos/community-i686/PKGBUILD
(from rev 110685, perl-curses/trunk/PKGBUILD)
  perl-curses/repos/community-x86_64/PKGBUILD
(from rev 110685, perl-curses/trunk/PKGBUILD)
Deleted:
  perl-curses/repos/community-i686/PKGBUILD
  perl-curses/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 09:15:07 UTC (rev 110685)
+++ community-i686/PKGBUILD 2014-05-05 09:15:21 UTC (rev 110686)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Charles Mauch cma...@gmail.com
-# Contributor: Francois Charette firmi...@gmx.net
-
-pkgname=perl-curses
-pkgver=1.29
-pkgrel=1
-pkgdesc=Character screen handling and windowing
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/Curses;
-license=('GPL' 'PerlArtistic')
-depends=('perl' 'ncurses')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
-md5sums=('236de0209223e40b458c55e5250da2b3')
-
-build() {
-  cd  $srcdir/Curses-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Curses-$pkgver
-  make pure_install doc_install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-curses/repos/community-i686/PKGBUILD (from rev 110685, 
perl-curses/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 09:15:21 UTC (rev 110686)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+# Contributor: Francois Charette firmi...@gmx.net
+
+pkgname=perl-curses
+pkgver=1.31
+pkgrel=1
+pkgdesc=Character screen handling and windowing
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Curses;
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'ncurses')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
+md5sums=('119aff0faaa9347ed32dad127c4a6707')
+
+build() {
+  cd  $srcdir/Curses-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Curses-$pkgver
+  make pure_install doc_install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-05 09:15:07 UTC (rev 110685)
+++ community-x86_64/PKGBUILD   2014-05-05 09:15:21 UTC (rev 110686)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Charles Mauch cma...@gmail.com
-# Contributor: Francois Charette firmi...@gmx.net
-
-pkgname=perl-curses
-pkgver=1.29
-pkgrel=1
-pkgdesc=Character screen handling and windowing
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/Curses;
-license=('GPL' 'PerlArtistic')
-depends=('perl' 'ncurses')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
-md5sums=('236de0209223e40b458c55e5250da2b3')
-
-build() {
-  cd  $srcdir/Curses-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Curses-$pkgver
-  make pure_install doc_install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-curses/repos/community-x86_64/PKGBUILD (from rev 110685, 
perl-curses/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-05 09:15:21 UTC (rev 110686)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+# Contributor: Francois Charette firmi...@gmx.net
+
+pkgname=perl-curses
+pkgver=1.31
+pkgrel=1
+pkgdesc=Character screen handling and windowing
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/Curses;
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'ncurses')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-$pkgver.tgz)
+md5sums=('119aff0faaa9347ed32dad127c4a6707')
+
+build() {
+  cd  $srcdir/Curses-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Curses-$pkgver
+  

[arch-commits] Commit in perl-email-address/trunk (PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:15:54
  Author: spupykin
Revision: 110691

upgpkg: perl-email-address 1.903-1

upd

Modified:
  perl-email-address/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:15:51 UTC (rev 110690)
+++ PKGBUILD2014-05-05 09:15:54 UTC (rev 110691)
@@ -3,7 +3,7 @@
 # Contributor: Sergej Pupykin pupykin.s+...@gmail.com
 
 pkgname=perl-email-address
-pkgver=1.901
+pkgver=1.903
 pkgrel=1
 pkgdesc=RFC 2822 Address Parsing and Creation 
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Address-$pkgver.tar.gz;)
-md5sums=('9ba0cc26b1813315f2e5b71d104f51fb')
+md5sums=('9cf17604b3527121d85f7c9c53702ff6')
 
 build() {
   cd  $srcdir/Email-Address-$pkgver



[arch-commits] Commit in perl-devel-patchperl/trunk (PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:15:42
  Author: spupykin
Revision: 110689

upgpkg: perl-devel-patchperl 1.22-1

upd

Modified:
  perl-devel-patchperl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:15:39 UTC (rev 110688)
+++ PKGBUILD2014-05-05 09:15:42 UTC (rev 110689)
@@ -2,7 +2,7 @@
 # Maintainer:
 
 pkgname=perl-devel-patchperl
-pkgver=1.20
+pkgver=1.22
 pkgrel=1
 pkgdesc=Patch perl source a la Devel::PPPort's buildperl.pl
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl' 'perl-file-pushd')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/Devel-PatchPerl-$pkgver.tar.gz;)
-md5sums=('79f9a1fd4b9ebe511d844863b777')
+md5sums=('3264cd23597912a0a2d837c97fdbae93')
 
 build() {
   cd Devel-PatchPerl-$pkgver



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:16:16
  Author: spupykin
Revision: 110695

upgpkg: squid 3.4.5-1

upd

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:16:13 UTC (rev 110694)
+++ PKGBUILD2014-05-05 09:16:16 UTC (rev 110695)
@@ -5,8 +5,8 @@
 # Contributor: Kevin Piche ke...@archlinux.org
 
 pkgname=squid
-pkgver=3.4.4.2
-pkgrel=2
+pkgver=3.4.5
+pkgrel=1
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64' 'i686')
 url='http://www.squid-cache.org'
@@ -21,18 +21,16 @@
 'squid.pam'
 'squid.cron'
 'squid.service'
-'squid.tmpfiles'
-ssl.patch::http://bugs.squid-cache.org/attachment.cgi?id=3036;)
-md5sums=('d9d4a3d414db60e687d99080fbc68d1e'
+'squid.tmpfiles')
+md5sums=('b6bee84755c9bd08a119a386c26c9189'
  '270977cdd9b47ef44c0c427ab9034777'
  'a71425c4951f2e5b640d19e6a5048531'
  'ceeb57c69ebb165676219222f109a24e'
- 'd243da117c1aee03c0cc6052f023a380'
- '4a21c881444707586095c4acc238eae6')
+ 'd243da117c1aee03c0cc6052f023a380')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver
-  patch -p0 $srcdir/ssl.patch
+#  patch -p0 $srcdir/ssl.patch
 }
 
 build() {



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:16:38
  Author: spupykin
Revision: 110696

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

Added:
  squid/repos/community-i686/PKGBUILD
(from rev 110695, squid/trunk/PKGBUILD)
  squid/repos/community-i686/squid.cron
(from rev 110695, squid/trunk/squid.cron)
  squid/repos/community-i686/squid.install
(from rev 110695, squid/trunk/squid.install)
  squid/repos/community-i686/squid.pam
(from rev 110695, squid/trunk/squid.pam)
  squid/repos/community-i686/squid.service
(from rev 110695, squid/trunk/squid.service)
  squid/repos/community-i686/squid.tmpfiles
(from rev 110695, squid/trunk/squid.tmpfiles)
  squid/repos/community-x86_64/PKGBUILD
(from rev 110695, squid/trunk/PKGBUILD)
  squid/repos/community-x86_64/squid.cron
(from rev 110695, squid/trunk/squid.cron)
  squid/repos/community-x86_64/squid.install
(from rev 110695, squid/trunk/squid.install)
  squid/repos/community-x86_64/squid.pam
(from rev 110695, squid/trunk/squid.pam)
  squid/repos/community-x86_64/squid.service
(from rev 110695, squid/trunk/squid.service)
  squid/repos/community-x86_64/squid.tmpfiles
(from rev 110695, squid/trunk/squid.tmpfiles)
Deleted:
  squid/repos/community-i686/PKGBUILD
  squid/repos/community-i686/squid.cron
  squid/repos/community-i686/squid.install
  squid/repos/community-i686/squid.pam
  squid/repos/community-i686/squid.service
  squid/repos/community-i686/squid.tmpfiles
  squid/repos/community-x86_64/PKGBUILD
  squid/repos/community-x86_64/squid.cron
  squid/repos/community-x86_64/squid.install
  squid/repos/community-x86_64/squid.pam
  squid/repos/community-x86_64/squid.service
  squid/repos/community-x86_64/squid.tmpfiles

-+
 /PKGBUILD   |  184 ++
 /squid.cron |   18 +++
 /squid.install  |   30 ++
 /squid.pam  |8 +
 /squid.service  |   26 +
 /squid.tmpfiles |2 
 community-i686/PKGBUILD |   94 ---
 community-i686/squid.cron   |9 -
 community-i686/squid.install|   15 ---
 community-i686/squid.pam|4 
 community-i686/squid.service|   13 --
 community-i686/squid.tmpfiles   |1 
 community-x86_64/PKGBUILD   |   94 ---
 community-x86_64/squid.cron |9 -
 community-x86_64/squid.install  |   15 ---
 community-x86_64/squid.pam  |4 
 community-x86_64/squid.service  |   13 --
 community-x86_64/squid.tmpfiles |1 
 18 files changed, 268 insertions(+), 272 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 09:16:16 UTC (rev 110695)
+++ community-i686/PKGBUILD 2014-05-05 09:16:38 UTC (rev 110696)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Mark Coolen mark.coo...@gmail.com
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Kevin Piche ke...@archlinux.org
-
-pkgname=squid
-pkgver=3.4.4.2
-pkgrel=2
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64' 'i686')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'cron' 'perl' 'libltdl' 'libpcap')
-makedepends=('libcap' 'krb5')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-'etc/squid/mime.conf')
-install=$pkgname.install
-source=(http://www.squid-cache.org/Versions/v3/3.4/$pkgname-$pkgver.tar.bz2;
-'squid.pam'
-'squid.cron'
-'squid.service'
-'squid.tmpfiles'
-ssl.patch::http://bugs.squid-cache.org/attachment.cgi?id=3036;)
-md5sums=('d9d4a3d414db60e687d99080fbc68d1e'
- '270977cdd9b47ef44c0c427ab9034777'
- 'a71425c4951f2e5b640d19e6a5048531'
- 'ceeb57c69ebb165676219222f109a24e'
- 'd243da117c1aee03c0cc6052f023a380'
- '4a21c881444707586095c4acc238eae6')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -p0 $srcdir/ssl.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---datadir=/usr/share/squid \
---sysconfdir=/etc/squid \
---libexecdir=/usr/lib/squid \
---localstatedir=/var \
---with-logdir=/var/log/squid \
---with-pidfile=/run/squid.pid \
---enable-auth \
---enable-auth-basic \
---enable-auth-ntlm \
---enable-auth-digest \
---enable-auth-negotiate \
---enable-removal-policies=lru,heap \
---enable-storeio=aufs,ufs,diskd \
---enable-delay-pools \
---enable-arp-acl \
---enable-ssl \
---enable-snmp \
---enable-linux-netfilter \
---enable-ident-lookups \
---enable-useragent-log \
---enable-cache-digests \
---enable-referer-log \
---enable-arp-acl \
---enable-htcp \
---enable-carp \
---enable-epoll \
---with-large-files \
-

[arch-commits] Commit in firefox-adblock-plus/repos/community-any (PKGBUILD PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:47:53
  Author: spupykin
Revision: 110698

archrelease: copy trunk to community-any

Added:
  firefox-adblock-plus/repos/community-any/PKGBUILD
(from rev 110697, firefox-adblock-plus/trunk/PKGBUILD)
Deleted:
  firefox-adblock-plus/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 09:47:45 UTC (rev 110697)
+++ PKGBUILD2014-05-05 09:47:53 UTC (rev 110698)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=firefox-adblock-plus
-pkgver=2.5.1
-_addons_file=244872
-pkgrel=1
-pkgdesc=plugin for firefox which block ads and banners
-arch=('any')
-url=http://adblockplus.org/;
-license=('GPL')
-depends=(firefox)
-makedepends=('unzip')
-noextract=(adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
-source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
-md5sums=('7e1c072961be0d108c81ab91bd89d687')
-
-package() {
-#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1-2 -d.`
-#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
-
-  cd $srcdir
-  [ $NOEXTRACT -eq 1 ] || unzip adblock_plus-$pkgver-fx+tb+fn+sm.xpi
-  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
-  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
-  [ -n ${emid} ] || return 1
-  install -d $dstdir
-#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion20.*/em:maxVersion#' 
install.rdf
-  cp -R * $dstdir
-  rm $dstdir/*.xpi
-  find $pkgdir -type d -exec chmod 0755 {} \;
-  find $pkgdir -type f -exec chmod 0644 {} \;
-}

Copied: firefox-adblock-plus/repos/community-any/PKGBUILD (from rev 110697, 
firefox-adblock-plus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 09:47:53 UTC (rev 110698)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=firefox-adblock-plus
+pkgver=2.6
+_addons_file=254870
+pkgrel=1
+pkgdesc=plugin for firefox which block ads and banners
+arch=('any')
+url=http://adblockplus.org/;
+license=('GPL')
+depends=(firefox)
+makedepends=('unzip')
+noextract=(adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
+source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
+md5sums=('fa3ccbbd5f9ea6718fbb8cfbb321e556')
+
+package() {
+#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1-2 -d.`
+#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
+
+  cd $srcdir
+  [ $NOEXTRACT -eq 1 ] || unzip adblock_plus-$pkgver-fx+tb+fn+sm.xpi
+  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
+  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
+  [ -n ${emid} ] || return 1
+  install -d $dstdir
+#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion20.*/em:maxVersion#' 
install.rdf
+  cp -R * $dstdir
+  rm $dstdir/*.xpi
+  find $pkgdir -type d -exec chmod 0755 {} \;
+  find $pkgdir -type f -exec chmod 0644 {} \;
+}



[arch-commits] Commit in firefox-adblock-plus/trunk (PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:47:45
  Author: spupykin
Revision: 110697

upgpkg: firefox-adblock-plus 2.6-1

upd

Modified:
  firefox-adblock-plus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:16:38 UTC (rev 110696)
+++ PKGBUILD2014-05-05 09:47:45 UTC (rev 110697)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=firefox-adblock-plus
-pkgver=2.5.1
-_addons_file=244872
+pkgver=2.6
+_addons_file=254870
 pkgrel=1
 pkgdesc=plugin for firefox which block ads and banners
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('unzip')
 noextract=(adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
 
source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
-md5sums=('7e1c072961be0d108c81ab91bd89d687')
+md5sums=('fa3ccbbd5f9ea6718fbb8cfbb321e556')
 
 package() {
 #  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1-2 -d.`



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:47:56
  Author: spupykin
Revision: 110699

upgpkg: lazarus 1.2.2-1

upd

Modified:
  lazarus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:47:53 UTC (rev 110698)
+++ PKGBUILD2014-05-05 09:47:56 UTC (rev 110699)
@@ -5,9 +5,9 @@
 
 pkgbase=lazarus
 pkgname=('lazarus' 'lazarus-gtk2' 'lazarus-qt')
-pkgver=1.2
+pkgver=1.2.2
 _pkgsubver=0
-pkgrel=2
+pkgrel=1
 url='http://www.lazarus.freepascal.org/'
 license=('GPL2' 'MPL' 'custom:modifiedLGPL')
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 options=('!emptydirs' '!makeflags')
 
source=(http://downloads.sourceforge.net/project/lazarus/Lazarus%20Zip%20_%20GZip/Lazarus%20$pkgver/lazarus-$pkgver-${_pkgsubver}.tar.gz;
'lazcontrols2.diff')
-md5sums=('f36e7182cf5a5d75a7157104d1370e0b'
+md5sums=('f6dccb86952906e60484ee46d238'
  '288bca6ad5ade79deec34c3602d9')
 
 build() {



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:48:16
  Author: spupykin
Revision: 110700

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

Added:
  lazarus/repos/community-i686/ChangeLog
(from rev 110699, lazarus/trunk/ChangeLog)
  lazarus/repos/community-i686/PKGBUILD
(from rev 110699, lazarus/trunk/PKGBUILD)
  lazarus/repos/community-i686/lazarus-ide.install
(from rev 110699, lazarus/trunk/lazarus-ide.install)
  lazarus/repos/community-i686/lazcontrols2.diff
(from rev 110699, lazarus/trunk/lazcontrols2.diff)
  lazarus/repos/community-x86_64/ChangeLog
(from rev 110699, lazarus/trunk/ChangeLog)
  lazarus/repos/community-x86_64/PKGBUILD
(from rev 110699, lazarus/trunk/PKGBUILD)
  lazarus/repos/community-x86_64/lazarus-ide.install
(from rev 110699, lazarus/trunk/lazarus-ide.install)
  lazarus/repos/community-x86_64/lazcontrols2.diff
(from rev 110699, lazarus/trunk/lazcontrols2.diff)
Deleted:
  lazarus/repos/community-i686/ChangeLog
  lazarus/repos/community-i686/PKGBUILD
  lazarus/repos/community-i686/lazarus-ide.install
  lazarus/repos/community-i686/lazcontrols2.diff
  lazarus/repos/community-x86_64/ChangeLog
  lazarus/repos/community-x86_64/PKGBUILD
  lazarus/repos/community-x86_64/lazarus-ide.install
  lazarus/repos/community-x86_64/lazcontrols2.diff

--+
 /ChangeLog   |   36 
 /PKGBUILD|  262 +
 /lazarus-ide.install |   68 
 /lazcontrols2.diff   |   92 +++
 community-i686/ChangeLog |   18 --
 community-i686/PKGBUILD  |  131 
 community-i686/lazarus-ide.install   |   34 
 community-i686/lazcontrols2.diff |   46 -
 community-x86_64/ChangeLog   |   18 --
 community-x86_64/PKGBUILD|  131 
 community-x86_64/lazarus-ide.install |   34 
 community-x86_64/lazcontrols2.diff   |   46 -
 12 files changed, 458 insertions(+), 458 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2014-05-05 09:47:56 UTC (rev 110699)
+++ community-i686/ChangeLog2014-05-05 09:48:16 UTC (rev 110700)
@@ -1,18 +0,0 @@
-2012-05-15  BlackIkeEagle
-   * fix lazcontrols failure
- see: http://doublecmd.sourceforge.net/mantisbt/view.php?id=347
-   * add compiled files again
-
-2012-05-08  BlackIkeEagle
-   * fix FS#29807
-   * should not have removed Makefiles
-
-2012-04-30  BlackIkeEagle
-   * split pkgbuild
-   * lazarus (can be used for compiling)
-   * lazarus-qt (qt ide)
-   * lazarus-gtk (gtk ide)
-
-2008-01-21  JJDaNiMoTh  jjdanimoth@gmail.com
-
-* PKGBUILD: moved man pages to /usr/share

Copied: lazarus/repos/community-i686/ChangeLog (from rev 110699, 
lazarus/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2014-05-05 09:48:16 UTC (rev 110700)
@@ -0,0 +1,18 @@
+2012-05-15  BlackIkeEagle
+   * fix lazcontrols failure
+ see: http://doublecmd.sourceforge.net/mantisbt/view.php?id=347
+   * add compiled files again
+
+2012-05-08  BlackIkeEagle
+   * fix FS#29807
+   * should not have removed Makefiles
+
+2012-04-30  BlackIkeEagle
+   * split pkgbuild
+   * lazarus (can be used for compiling)
+   * lazarus-qt (qt ide)
+   * lazarus-gtk (gtk ide)
+
+2008-01-21  JJDaNiMoTh  jjdanimoth@gmail.com
+
+* PKGBUILD: moved man pages to /usr/share

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 09:47:56 UTC (rev 110699)
+++ community-i686/PKGBUILD 2014-05-05 09:48:16 UTC (rev 110700)
@@ -1,131 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jens Adam (byte/jra) j_a...@web.de
-# Contributor: BlackIkeEagle ike DOT devolder AT gmail DOT com
-
-pkgbase=lazarus
-pkgname=('lazarus' 'lazarus-gtk2' 'lazarus-qt')
-pkgver=1.2
-_pkgsubver=0
-pkgrel=2
-url='http://www.lazarus.freepascal.org/'
-license=('GPL2' 'MPL' 'custom:modifiedLGPL')
-arch=('i686' 'x86_64')
-makedepends=('fpc' 'fpc-src' 'gtk2' 'qt4pas' 'rsync')
-options=('!emptydirs' '!makeflags')
-source=(http://downloads.sourceforge.net/project/lazarus/Lazarus%20Zip%20_%20GZip/Lazarus%20$pkgver/lazarus-$pkgver-${_pkgsubver}.tar.gz;
-   'lazcontrols2.diff')
-md5sums=('f36e7182cf5a5d75a7157104d1370e0b'
- '288bca6ad5ade79deec34c3602d9')
-
-build() {
-  cd $srcdir/${pkgbase}
-
-  # build gtk2 ide
-  make FPC=/usr/bin/fpc LCL_PLATFORM=gtk2 clean bigide
-  # move gtk binaries
-  mv lazarus lazarus-gtk2
-  mv startlazarus startlazarus-gtk2
-
-  # build qt ide
-  make FPC=/usr/bin/fpc LCL_PLATFORM=qt bigide
-  # move qt binaries
-  mv lazarus 

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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:50:03
  Author: spupykin
Revision: 110701

upgpkg: libvirt 1.2.4-1

upd

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:48:16 UTC (rev 110700)
+++ PKGBUILD2014-05-05 09:50:03 UTC (rev 110701)
@@ -3,8 +3,8 @@
 # Contributor: Jonathan Wiersma archaur at jonw dot org
 
 pkgname=libvirt
-pkgver=1.2.3
-pkgrel=4
+pkgver=1.2.4
+pkgrel=1
 pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
 arch=('i686' 'x86_64')
 url=http://libvirt.org/;
@@ -62,7 +62,7 @@
libvirtd.conf.d
libvirtd-guests.conf.d
libvirt.tmpfiles.d)
-md5sums=('ad1602a2fcc3609c83b885a28f3eecbd'
+md5sums=('da7a9ca519df45a460659189fe0024e6'
  '3ed0e24f5b5e25bf553f5427d64915e6'
  '0a96ed876ffb1fcb9dff5a9b3a609c1e'
  '020971887442ebbf1b6949e031c8dd3f')



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:50:38
  Author: spupykin
Revision: 110703

upgpkg: sniffit 0.3.7.beta-15

upd

Modified:
  sniffit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:50:23 UTC (rev 110702)
+++ PKGBUILD2014-05-05 09:50:38 UTC (rev 110703)
@@ -4,7 +4,7 @@
 
 pkgname=sniffit
 pkgver=0.3.7.beta
-pkgrel=14
+pkgrel=15
 pkgdesc=Very good packet sniffer for unix with ncurses interactive mode
 arch=('i686' 'x86_64')
 url=http://packages.ubuntu.com/source/sniffit;
@@ -33,7 +33,18 @@
 
 package() {
   cd ${srcdir}/${pkgname}.${pkgver}
-  install -d -m0755 -g root -o root 
${pkgdir}/usr/{bin,share/licenses/${pkgname}}
-  install -D -m0744 -g root -o root sniffit ${pkgdir}/usr/bin/sniffit
-  install -D -m0644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}
+  install -dm0755 -g root -o root ${pkgdir}/usr/{bin,share/licenses/${pkgname}}
+  install -Dm0744 -g root -o root sniffit ${pkgdir}/usr/bin/sniffit
+  install -Dm0644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}
+
+  # docs
+  install -Dm0644 sniffit.5 $pkgdir/usr/share/man/man5/sniffit.5
+  install -Dm0644 sniffit.8 $pkgdir/usr/share/man/man8/sniffit.8
+
+  for i in BETA-TESTING PLUGIN-HOWTO README.FIRST sniffit-FAQ; do
+install -Dm0644 $i $pkgdir/usr/share/doc/sniffit/$i
+  done
+  for i in dns_plugin.plug dummy_plugin.plug sample_config_file; do
+install -Dm0644 $i $pkgdir/usr/share/doc/sniffit/examples/$i
+  done
 }



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:50:50
  Author: spupykin
Revision: 110704

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

Added:
  sniffit/repos/community-i686/PKGBUILD
(from rev 110703, sniffit/trunk/PKGBUILD)
  sniffit/repos/community-i686/sniffit-fix.patch
(from rev 110703, sniffit/trunk/sniffit-fix.patch)
  sniffit/repos/community-x86_64/PKGBUILD
(from rev 110703, sniffit/trunk/PKGBUILD)
  sniffit/repos/community-x86_64/sniffit-fix.patch
(from rev 110703, sniffit/trunk/sniffit-fix.patch)
Deleted:
  sniffit/repos/community-i686/PKGBUILD
  sniffit/repos/community-i686/sniffit-fix.patch
  sniffit/repos/community-x86_64/PKGBUILD
  sniffit/repos/community-x86_64/sniffit-fix.patch

+
 /PKGBUILD  |  100 +
 /sniffit-fix.patch | 1874 +++
 community-i686/PKGBUILD|   39 
 community-i686/sniffit-fix.patch   |  937 -
 community-x86_64/PKGBUILD  |   39 
 community-x86_64/sniffit-fix.patch |  937 -
 6 files changed, 1974 insertions(+), 1952 deletions(-)

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


[arch-commits] Commit in libvirt/repos (20 files)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:50:23
  Author: spupykin
Revision: 110702

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

Added:
  libvirt/repos/community-i686/PKGBUILD
(from rev 110701, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-i686/libvirt.install
(from rev 110701, libvirt/trunk/libvirt.install)
  libvirt/repos/community-i686/libvirt.tmpfiles.d
(from rev 110701, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-i686/libvirtd-guests.conf.d
(from rev 110701, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-i686/libvirtd.conf.d
(from rev 110701, libvirt/trunk/libvirtd.conf.d)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 110701, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 110701, libvirt/trunk/libvirt.install)
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
(from rev 110701, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
(from rev 110701, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-x86_64/libvirtd.conf.d
(from rev 110701, libvirt/trunk/libvirtd.conf.d)
Deleted:
  libvirt/repos/community-i686/PKGBUILD
  libvirt/repos/community-i686/libvirt.install
  libvirt/repos/community-i686/libvirt.tmpfiles.d
  libvirt/repos/community-i686/libvirtd-guests.conf.d
  libvirt/repos/community-i686/libvirtd.conf.d
  libvirt/repos/community-x86_64/PKGBUILD
  libvirt/repos/community-x86_64/libvirt.install
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
  libvirt/repos/community-x86_64/libvirtd.conf.d

-+
 /PKGBUILD   |  228 ++
 /libvirt.install|   30 +++
 /libvirt.tmpfiles.d |8 +
 /libvirtd-guests.conf.d |   22 ++
 /libvirtd.conf.d|6 
 community-i686/PKGBUILD |  114 ---
 community-i686/libvirt.install  |   15 -
 community-i686/libvirt.tmpfiles.d   |4 
 community-i686/libvirtd-guests.conf.d   |   11 -
 community-i686/libvirtd.conf.d  |3 
 community-x86_64/PKGBUILD   |  114 ---
 community-x86_64/libvirt.install|   15 -
 community-x86_64/libvirt.tmpfiles.d |4 
 community-x86_64/libvirtd-guests.conf.d |   11 -
 community-x86_64/libvirtd.conf.d|3 
 15 files changed, 294 insertions(+), 294 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 09:50:03 UTC (rev 110701)
+++ community-i686/PKGBUILD 2014-05-05 09:50:23 UTC (rev 110702)
@@ -1,114 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jonathan Wiersma archaur at jonw dot org
-
-pkgname=libvirt
-pkgver=1.2.3
-pkgrel=4
-pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
-arch=('i686' 'x86_64')
-url=http://libvirt.org/;
-license=('LGPL')
-depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 'python2'
-'avahi' 'yajl' 'libpciaccess' 'udev' 'dbus-core' 'libxau' 'libxdmcp' 
'libpcap'
-'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 
'gcc-libs'
-'iproute2' 'libnl' 'libx11' 'numactl')
-   # 'audit'
-makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc')
-optdepends=('bridge-utils: for briged networking (default)'
-   'dnsmasq: for NAT/DHCP for guests'
-   'openbsd-netcat: for remote management over ssh'
-   'qemu'
-   'radvd'
-   'dmidecode'
-   'ebtables'
-   'pm-utils: host power management')
-options=('emptydirs')
-backup=('etc/conf.d/libvirt-guests'
-   'etc/conf.d/libvirtd'
-   'etc/libvirt/libvirt.conf'
-   'etc/libvirt/libvirtd.conf'
-   'etc/libvirt/lxc.conf'
-   'etc/libvirt/nwfilter/allow-arp.xml'
-   'etc/libvirt/nwfilter/allow-dhcp-server.xml'
-   'etc/libvirt/nwfilter/allow-dhcp.xml'
-   'etc/libvirt/nwfilter/allow-incoming-ipv4.xml'
-   'etc/libvirt/nwfilter/allow-ipv4.xml'
-   'etc/libvirt/nwfilter/clean-traffic.xml'
-   'etc/libvirt/nwfilter/no-arp-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-spoofing.xml'
-   'etc/libvirt/nwfilter/no-ip-multicast.xml'
-   'etc/libvirt/nwfilter/no-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-mac-broadcast.xml'
-   'etc/libvirt/nwfilter/no-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-other-l2-traffic.xml'
-   'etc/libvirt/nwfilter/no-other-rarp-traffic.xml'
-   'etc/libvirt/nwfilter/qemu-announce-self-rarp.xml'
-   'etc/libvirt/nwfilter/qemu-announce-self.xml'
-   'etc/libvirt/qemu-lockd.conf'
-   'etc/libvirt/qemu.conf'
-   

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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:51:12
  Author: spupykin
Revision: 110705

upgpkg: firefox-noscript 2.6.8.21-1

upd

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:50:50 UTC (rev 110704)
+++ PKGBUILD2014-05-05 09:51:12 UTC (rev 110705)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=firefox-noscript
-pkgver=2.6.8.20
+pkgver=2.6.8.21
 pkgrel=1
 pkgdesc=plugin for firefox which disables script
 arch=('any')
@@ -11,7 +11,7 @@
 depends=()
 makedepends=('unzip')
 source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('d0943c2090bd449609b690b248c3cdfa')
+md5sums=('764604ba4872a94abc4f5244ae693fb0')
 
 package() {
 #  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:51:20
  Author: spupykin
Revision: 110706

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 110705, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 09:51:12 UTC (rev 110705)
+++ PKGBUILD2014-05-05 09:51:20 UTC (rev 110706)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=firefox-noscript
-pkgver=2.6.8.20
-pkgrel=1
-pkgdesc=plugin for firefox which disables script
-arch=('any')
-url=http://noscript.net/;
-license=('GPL2')
-depends=()
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('d0943c2090bd449609b690b248c3cdfa')
-
-package() {
-#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
-#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
-  depends=(firefox)
-
-  cd $srcdir
-  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
-  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
-  install -d $dstdir
-#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
-  cp -R * $dstdir
-  rm $dstdir/noscript-$pkgver.xpi
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 110705, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 09:51:20 UTC (rev 110706)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=firefox-noscript
+pkgver=2.6.8.21
+pkgrel=1
+pkgdesc=plugin for firefox which disables script
+arch=('any')
+url=http://noscript.net/;
+license=('GPL2')
+depends=()
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
+md5sums=('764604ba4872a94abc4f5244ae693fb0')
+
+package() {
+#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
+#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
+  depends=(firefox)
+
+  cd $srcdir
+  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
+  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
+  install -d $dstdir
+#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
+  cp -R * $dstdir
+  rm $dstdir/noscript-$pkgver.xpi
+}



[arch-commits] Commit in perl-local-lib/trunk (PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:55:21
  Author: spupykin
Revision: 110707

upgpkg: perl-local-lib 2.11-1

upd

Modified:
  perl-local-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:51:20 UTC (rev 110706)
+++ PKGBUILD2014-05-05 09:55:21 UTC (rev 110707)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=perl-local-lib
-pkgver=2.10
+pkgver=2.11
 pkgrel=1
 pkgdesc=Create and use a local lib/ for perl modules with PERL5LIB
 arch=('any')
@@ -10,8 +10,8 @@
 license=('PerlArtistic' 'GPL')
 depends=('perl')
 options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/local-lib-$pkgver.tar.gz;)
-md5sums=('1223c470aad10fd4d7bcd9f77a729b53')
+source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/local-lib-$pkgver.tar.gz;)
+md5sums=('33a5a662dbb23f0c6e20cdd5b69e9af6')
 
 build() {
   cd local-lib-${pkgver}



[arch-commits] Commit in perl-local-lib/repos/community-any (PKGBUILD PKGBUILD)

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 11:55:29
  Author: spupykin
Revision: 110708

archrelease: copy trunk to community-any

Added:
  perl-local-lib/repos/community-any/PKGBUILD
(from rev 110707, perl-local-lib/trunk/PKGBUILD)
Deleted:
  perl-local-lib/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 09:55:21 UTC (rev 110707)
+++ PKGBUILD2014-05-05 09:55:29 UTC (rev 110708)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=perl-local-lib
-pkgver=2.10
-pkgrel=1
-pkgdesc=Create and use a local lib/ for perl modules with PERL5LIB
-arch=('any')
-url=http://search.cpan.org/dist/local-lib/;
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/local-lib-$pkgver.tar.gz;)
-md5sums=('1223c470aad10fd4d7bcd9f77a729b53')
-
-build() {
-  cd local-lib-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd local-lib-${pkgver}
-  make test
-}
-
-package() {
-  cd local-lib-${pkgver}
-  make DESTDIR=$pkgdir install
-}

Copied: perl-local-lib/repos/community-any/PKGBUILD (from rev 110707, 
perl-local-lib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 09:55:29 UTC (rev 110708)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=perl-local-lib
+pkgver=2.11
+pkgrel=1
+pkgdesc=Create and use a local lib/ for perl modules with PERL5LIB
+arch=('any')
+url=http://search.cpan.org/dist/local-lib/;
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/local-lib-$pkgver.tar.gz;)
+md5sums=('33a5a662dbb23f0c6e20cdd5b69e9af6')
+
+build() {
+  cd local-lib-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd local-lib-${pkgver}
+  make test
+}
+
+package() {
+  cd local-lib-${pkgver}
+  make DESTDIR=$pkgdir install
+}



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 12:31:05
  Author: spupykin
Revision: 110710

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 110709, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 10:30:52 UTC (rev 110709)
+++ PKGBUILD2014-05-05 10:31:05 UTC (rev 110710)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=firefox-noscript
-pkgver=2.6.8.21
-pkgrel=1
-pkgdesc=plugin for firefox which disables script
-arch=('any')
-url=http://noscript.net/;
-license=('GPL2')
-depends=()
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('764604ba4872a94abc4f5244ae693fb0')
-
-package() {
-#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
-#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
-  depends=(firefox)
-
-  cd $srcdir
-  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
-  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
-  install -d $dstdir
-#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
-  cp -R * $dstdir
-  rm $dstdir/noscript-$pkgver.xpi
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 110709, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 10:31:05 UTC (rev 110710)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=firefox-noscript
+pkgver=2.6.8.22
+pkgrel=1
+pkgdesc=plugin for firefox which disables script
+arch=('any')
+url=http://noscript.net/;
+license=('GPL2')
+depends=()
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
+md5sums=('4dd166549e407760dcca2b649a2ee46d')
+
+package() {
+#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
+#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
+  depends=(firefox)
+
+  cd $srcdir
+  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
+  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
+  install -d $dstdir
+#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
+  cp -R * $dstdir
+  rm $dstdir/noscript-$pkgver.xpi
+}



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 12:30:52
  Author: spupykin
Revision: 110709

upgpkg: firefox-noscript 2.6.8.22-1

upd

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 09:55:29 UTC (rev 110708)
+++ PKGBUILD2014-05-05 10:30:52 UTC (rev 110709)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=firefox-noscript
-pkgver=2.6.8.21
+pkgver=2.6.8.22
 pkgrel=1
 pkgdesc=plugin for firefox which disables script
 arch=('any')
@@ -11,7 +11,7 @@
 depends=()
 makedepends=('unzip')
 source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('764604ba4872a94abc4f5244ae693fb0')
+md5sums=('4dd166549e407760dcca2b649a2ee46d')
 
 package() {
 #  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`



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

2014-05-05 Thread speps
Date: Monday, May 5, 2014 @ 13:27:54
  Author: speps
Revision: 110711

upgpkg: amsynth 1.4.2-1

Modified:
  amsynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 10:31:05 UTC (rev 110710)
+++ PKGBUILD2014-05-05 11:27:54 UTC (rev 110711)
@@ -3,17 +3,18 @@
 # Contributor: Alessio Biancalana dottorblas...@gmail.com
 
 pkgname=amsynth
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 pkgdesc=Analogue Modeling SYNTHesizer
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/$pkgname/;
 license=('GPL')
+groups=('dssi-plugins' 'lv2-plugins')
 depends=('gtkmm' 'jack' 'liblo' 'desktop-file-utils')
 makedepends=('dssi' 'ladspa')
 install=$pkgname.install
 
source=(http://downloads.sourceforge.net/project/amsynthe/amsynth-$pkgver.tar.gz;)
-md5sums=('ea3815142cf2000572f40c64b21fd982')
+md5sums=('92aeadad41792e4dfedff5ab16a5cc5e')
 
 build() {
   cd $pkgname-$pkgver



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

2014-05-05 Thread speps
Date: Monday, May 5, 2014 @ 13:28:10
  Author: speps
Revision: 110712

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

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

--+
 /PKGBUILD|   56 +
 /amsynth.install |   22 ++
 community-i686/PKGBUILD  |   27 -
 community-i686/amsynth.install   |   11 ---
 community-x86_64/PKGBUILD|   27 -
 community-x86_64/amsynth.install |   11 ---
 6 files changed, 78 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 11:27:54 UTC (rev 110711)
+++ community-i686/PKGBUILD 2014-05-05 11:28:10 UTC (rev 110712)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-# Contributor: Alessio Biancalana dottorblas...@gmail.com
-
-pkgname=amsynth
-pkgver=1.4.1
-pkgrel=1
-pkgdesc=Analogue Modeling SYNTHesizer
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/$pkgname/;
-license=('GPL')
-depends=('gtkmm' 'jack' 'liblo' 'desktop-file-utils')
-makedepends=('dssi' 'ladspa')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/project/amsynthe/amsynth-$pkgver.tar.gz;)
-md5sums=('ea3815142cf2000572f40c64b21fd982')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: amsynth/repos/community-i686/PKGBUILD (from rev 110711, 
amsynth/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 11:28:10 UTC (rev 110712)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Alessio Biancalana dottorblas...@gmail.com
+
+pkgname=amsynth
+pkgver=1.4.2
+pkgrel=1
+pkgdesc=Analogue Modeling SYNTHesizer
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/$pkgname/;
+license=('GPL')
+groups=('dssi-plugins' 'lv2-plugins')
+depends=('gtkmm' 'jack' 'liblo' 'desktop-file-utils')
+makedepends=('dssi' 'ladspa')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/project/amsynthe/amsynth-$pkgver.tar.gz;)
+md5sums=('92aeadad41792e4dfedff5ab16a5cc5e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-i686/amsynth.install
===
--- community-i686/amsynth.install  2014-05-05 11:27:54 UTC (rev 110711)
+++ community-i686/amsynth.install  2014-05-05 11:28:10 UTC (rev 110712)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: amsynth/repos/community-i686/amsynth.install (from rev 110711, 
amsynth/trunk/amsynth.install)
===
--- community-i686/amsynth.install  (rev 0)
+++ community-i686/amsynth.install  2014-05-05 11:28:10 UTC (rev 110712)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-05 11:27:54 UTC (rev 110711)
+++ community-x86_64/PKGBUILD   2014-05-05 11:28:10 UTC (rev 110712)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-# Contributor: Alessio Biancalana dottorblas...@gmail.com
-
-pkgname=amsynth
-pkgver=1.4.1
-pkgrel=1
-pkgdesc=Analogue Modeling SYNTHesizer
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/$pkgname/;
-license=('GPL')
-depends=('gtkmm' 'jack' 'liblo' 'desktop-file-utils')
-makedepends=('dssi' 'ladspa')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/project/amsynthe/amsynth-$pkgver.tar.gz;)
-md5sums=('ea3815142cf2000572f40c64b21fd982')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: amsynth/repos/community-x86_64/PKGBUILD (from rev 110711, 

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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 13:29:07
  Author: spupykin
Revision: 110713

upgpkg: firefox-noscript 2.6.8.23-1

upd

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 11:28:10 UTC (rev 110712)
+++ PKGBUILD2014-05-05 11:29:07 UTC (rev 110713)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=firefox-noscript
-pkgver=2.6.8.22
+pkgver=2.6.8.23
 pkgrel=1
 pkgdesc=plugin for firefox which disables script
 arch=('any')
@@ -11,7 +11,7 @@
 depends=()
 makedepends=('unzip')
 source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('4dd166549e407760dcca2b649a2ee46d')
+md5sums=('873b4ceded027a890adb8aacd7f02ad8')
 
 package() {
 #  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`



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

2014-05-05 Thread Sergej Pupykin
Date: Monday, May 5, 2014 @ 13:29:18
  Author: spupykin
Revision: 110714

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 110713, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-05 11:29:07 UTC (rev 110713)
+++ PKGBUILD2014-05-05 11:29:18 UTC (rev 110714)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=firefox-noscript
-pkgver=2.6.8.22
-pkgrel=1
-pkgdesc=plugin for firefox which disables script
-arch=('any')
-url=http://noscript.net/;
-license=('GPL2')
-depends=()
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('4dd166549e407760dcca2b649a2ee46d')
-
-package() {
-#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
-#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
-  depends=(firefox)
-
-  cd $srcdir
-  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
-  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
-  install -d $dstdir
-#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
-  cp -R * $dstdir
-  rm $dstdir/noscript-$pkgver.xpi
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 110713, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-05 11:29:18 UTC (rev 110714)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=firefox-noscript
+pkgver=2.6.8.23
+pkgrel=1
+pkgdesc=plugin for firefox which disables script
+arch=('any')
+url=http://noscript.net/;
+license=('GPL2')
+depends=()
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
+md5sums=('873b4ceded027a890adb8aacd7f02ad8')
+
+package() {
+#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
+#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
+  depends=(firefox)
+
+  cd $srcdir
+  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
+  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
+  install -d $dstdir
+#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
+  cp -R * $dstdir
+  rm $dstdir/noscript-$pkgver.xpi
+}



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

2014-05-05 Thread Andrea Scarpino
Date: Monday, May 5, 2014 @ 14:13:11
  Author: andrea
Revision: 212047

upgpkg: libkscreen 1.0.3-1

Upstream release

Modified:
  libkscreen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 07:44:24 UTC (rev 212046)
+++ PKGBUILD2014-05-05 12:13:11 UTC (rev 212047)
@@ -3,7 +3,7 @@
 # Contributor: birdflesh antkoul at gmail dot com
 
 pkgname=libkscreen
-pkgver=1.0.2
+pkgver=1.0.3
 pkgrel=1
 pkgdesc=KDE's screen management library
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('kdelibs' 'qjson')
 makedepends=('cmake' 'automoc4')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('39f5316ef4f9203dd7a42180edbab122')
+md5sums=('7048db071d669193f8dafc9a1319998b')
 
 prepare() {
   mkdir build



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

2014-05-05 Thread Andrea Scarpino
Date: Monday, May 5, 2014 @ 14:13:22
  Author: andrea
Revision: 212048

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-05 12:13:11 UTC (rev 212047)
+++ extra-i686/PKGBUILD 2014-05-05 12:13:22 UTC (rev 212048)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: birdflesh antkoul at gmail dot com
-
-pkgname=libkscreen
-pkgver=1.0.2
-pkgrel=1
-pkgdesc=KDE's screen management library
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/libkscreen'
-license=('GPL')
-depends=('kdelibs' 'qjson')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('39f5316ef4f9203dd7a42180edbab122')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DQT_QMAKE_EXECUTABLE=qmake-qt4 \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkscreen/repos/extra-i686/PKGBUILD (from rev 212047, 
libkscreen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-05 12:13:22 UTC (rev 212048)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: birdflesh antkoul at gmail dot com
+
+pkgname=libkscreen
+pkgver=1.0.3
+pkgrel=1
+pkgdesc=KDE's screen management library
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/libkscreen'
+license=('GPL')
+depends=('kdelibs' 'qjson')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('7048db071d669193f8dafc9a1319998b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-05 12:13:11 UTC (rev 212047)
+++ extra-x86_64/PKGBUILD   2014-05-05 12:13:22 UTC (rev 212048)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: birdflesh antkoul at gmail dot com
-
-pkgname=libkscreen
-pkgver=1.0.2
-pkgrel=1
-pkgdesc=KDE's screen management library
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/libkscreen'
-license=('GPL')
-depends=('kdelibs' 'qjson')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('39f5316ef4f9203dd7a42180edbab122')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DQT_QMAKE_EXECUTABLE=qmake-qt4 \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkscreen/repos/extra-x86_64/PKGBUILD (from rev 212047, 
libkscreen/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-05-05 12:13:22 UTC (rev 212048)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: birdflesh antkoul at gmail dot com
+
+pkgname=libkscreen
+pkgver=1.0.3
+pkgrel=1
+pkgdesc=KDE's screen management library
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/libkscreen'
+license=('GPL')
+depends=('kdelibs' 'qjson')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('7048db071d669193f8dafc9a1319998b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-05 Thread Bartłomiej Piotrowski
Date: Monday, May 5, 2014 @ 16:15:56
  Author: bpiotrowski
Revision: 110716

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

Added:
  fish/repos/community-i686/CVE-2014-2905.patch
(from rev 110715, fish/trunk/CVE-2014-2905.patch)
  fish/repos/community-i686/CVE-2014-2906.patch
(from rev 110715, fish/trunk/CVE-2014-2906.patch)
  fish/repos/community-i686/PKGBUILD
(from rev 110715, fish/trunk/PKGBUILD)
  fish/repos/community-i686/fish.install
(from rev 110715, fish/trunk/fish.install)
  fish/repos/community-x86_64/CVE-2014-2905.patch
(from rev 110715, fish/trunk/CVE-2014-2905.patch)
  fish/repos/community-x86_64/CVE-2014-2906.patch
(from rev 110715, fish/trunk/CVE-2014-2906.patch)
  fish/repos/community-x86_64/PKGBUILD
(from rev 110715, fish/trunk/PKGBUILD)
  fish/repos/community-x86_64/fish.install
(from rev 110715, fish/trunk/fish.install)
Deleted:
  fish/repos/community-i686/PKGBUILD
  fish/repos/community-i686/fish.install
  fish/repos/community-x86_64/PKGBUILD
  fish/repos/community-x86_64/fish.install

--+
 /PKGBUILD|   82 ++
 /fish.install|   22 ++
 community-i686/CVE-2014-2905.patch   |  263 +
 community-i686/CVE-2014-2906.patch   |   67 
 community-i686/PKGBUILD  |   31 ---
 community-i686/fish.install  |   11 -
 community-x86_64/CVE-2014-2905.patch |  263 +
 community-x86_64/CVE-2014-2906.patch |   67 
 community-x86_64/PKGBUILD|   31 ---
 community-x86_64/fish.install|   11 -
 10 files changed, 764 insertions(+), 84 deletions(-)

Copied: fish/repos/community-i686/CVE-2014-2905.patch (from rev 110715, 
fish/trunk/CVE-2014-2905.patch)
===
--- community-i686/CVE-2014-2905.patch  (rev 0)
+++ community-i686/CVE-2014-2905.patch  2014-05-05 14:15:56 UTC (rev 110716)
@@ -0,0 +1,263 @@
+From 8412c867a501e3a68e55fef6215e86d3ac9f617b Mon Sep 17 00:00:00 2001
+From: David Adam zanc...@ucc.gu.uwa.edu.au
+Date: Sun, 20 Apr 2014 17:51:27 +0800
+Subject: [PATCH] Check effective credentials of socket peers
+
+Fix for CVE-2014-2905.
+
+Code for getpeereid() on non-BSD systems imported from the PostgreSQL
+project under a BSD-style license.
+---
+ configure.ac|  4 +--
+ doc_src/license.hdr | 30 +++-
+ env_universal.cpp   |  9 ++
+ fallback.cpp| 80 -
+ fallback.h  |  4 +++
+ fishd.cpp   |  9 +-
+ osx/config.h|  6 
+ 7 files changed, 137 insertions(+), 5 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index ea7c592..bdfa5f0 100644
+--- a/configure.ac
 b/configure.ac
+@@ -557,7 +557,7 @@ LIBS=$LIBS_COMMON
+ # Check presense of various header files
+ #
+ 
+-AC_CHECK_HEADERS([getopt.h termios.h sys/resource.h term.h ncurses/term.h 
ncurses.h curses.h stropts.h siginfo.h sys/select.h sys/ioctl.h execinfo.h 
spawn.h sys/sysctl.h])
++AC_CHECK_HEADERS([getopt.h termios.h sys/resource.h term.h ncurses/term.h 
ncurses.h curses.h stropts.h siginfo.h sys/select.h sys/ioctl.h execinfo.h 
spawn.h sys/sysctl.h sys/un.h sys/ucred.h ucred.h ])
+ 
+ if test x$local_gettext != xno; then
+   AC_CHECK_HEADERS([libintl.h])
+@@ -698,7 +698,7 @@ fi
+ AC_CHECK_FUNCS( wcsdup wcsndup wcslen wcscasecmp wcsncasecmp fwprintf )
+ AC_CHECK_FUNCS( futimes wcwidth wcswidth wcstok fputwc fgetwc )
+ AC_CHECK_FUNCS( wcstol wcslcat wcslcpy lrand48_r killpg )
+-AC_CHECK_FUNCS( backtrace backtrace_symbols sysconf getifaddrs )
++AC_CHECK_FUNCS( backtrace backtrace_symbols sysconf getifaddrs getpeerucred 
getpeereid )
+ 
+ if test x$local_gettext != xno; then
+   AC_CHECK_FUNCS( gettext dcgettext )
+diff --git a/doc_src/license.hdr b/doc_src/license.hdr
+index 64bab10..f292722 100644
+--- a/doc_src/license.hdr
 b/doc_src/license.hdr
+@@ -1400,6 +1400,34 @@ POSSIBILITY OF SUCH DAMAGES.
+ 
+ P
+ 
+-*/
++hr
++
++h2License for getpeereid/h2
++
++\c fish contains code imported from the PostgreSQL project under
++license, namely the getpeereid fallback function. This code is copyrighted
++by:
++
++Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
++
++Portions Copyright (c) 1994, The Regents of the University of California
++
++Permission to use, copy, modify, and distribute this software and its
++documentation for any purpose, without fee, and without a written agreement
++is hereby granted, provided that the above copyright notice and this
++paragraph and the following two paragraphs appear in all copies.
++
++IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
++DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
++LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
++DOCUMENTATION, EVEN IF THE 

[arch-commits] Commit in fish/trunk (CVE-2014-2905.patch CVE-2014-2906.patch PKGBUILD)

2014-05-05 Thread Bartłomiej Piotrowski
Date: Monday, May 5, 2014 @ 16:15:38
  Author: bpiotrowski
Revision: 110715

upgpkg: fish 2.1.0-3

fix CVE-2014-2905 and CVE-2014-2906

Added:
  fish/trunk/CVE-2014-2905.patch
  fish/trunk/CVE-2014-2906.patch
Modified:
  fish/trunk/PKGBUILD

-+
 CVE-2014-2905.patch |  263 ++
 CVE-2014-2906.patch |   67 
 PKGBUILD|   20 ++-
 3 files changed, 345 insertions(+), 5 deletions(-)

Added: CVE-2014-2905.patch
===
--- CVE-2014-2905.patch (rev 0)
+++ CVE-2014-2905.patch 2014-05-05 14:15:38 UTC (rev 110715)
@@ -0,0 +1,263 @@
+From 8412c867a501e3a68e55fef6215e86d3ac9f617b Mon Sep 17 00:00:00 2001
+From: David Adam zanc...@ucc.gu.uwa.edu.au
+Date: Sun, 20 Apr 2014 17:51:27 +0800
+Subject: [PATCH] Check effective credentials of socket peers
+
+Fix for CVE-2014-2905.
+
+Code for getpeereid() on non-BSD systems imported from the PostgreSQL
+project under a BSD-style license.
+---
+ configure.ac|  4 +--
+ doc_src/license.hdr | 30 +++-
+ env_universal.cpp   |  9 ++
+ fallback.cpp| 80 -
+ fallback.h  |  4 +++
+ fishd.cpp   |  9 +-
+ osx/config.h|  6 
+ 7 files changed, 137 insertions(+), 5 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index ea7c592..bdfa5f0 100644
+--- a/configure.ac
 b/configure.ac
+@@ -557,7 +557,7 @@ LIBS=$LIBS_COMMON
+ # Check presense of various header files
+ #
+ 
+-AC_CHECK_HEADERS([getopt.h termios.h sys/resource.h term.h ncurses/term.h 
ncurses.h curses.h stropts.h siginfo.h sys/select.h sys/ioctl.h execinfo.h 
spawn.h sys/sysctl.h])
++AC_CHECK_HEADERS([getopt.h termios.h sys/resource.h term.h ncurses/term.h 
ncurses.h curses.h stropts.h siginfo.h sys/select.h sys/ioctl.h execinfo.h 
spawn.h sys/sysctl.h sys/un.h sys/ucred.h ucred.h ])
+ 
+ if test x$local_gettext != xno; then
+   AC_CHECK_HEADERS([libintl.h])
+@@ -698,7 +698,7 @@ fi
+ AC_CHECK_FUNCS( wcsdup wcsndup wcslen wcscasecmp wcsncasecmp fwprintf )
+ AC_CHECK_FUNCS( futimes wcwidth wcswidth wcstok fputwc fgetwc )
+ AC_CHECK_FUNCS( wcstol wcslcat wcslcpy lrand48_r killpg )
+-AC_CHECK_FUNCS( backtrace backtrace_symbols sysconf getifaddrs )
++AC_CHECK_FUNCS( backtrace backtrace_symbols sysconf getifaddrs getpeerucred 
getpeereid )
+ 
+ if test x$local_gettext != xno; then
+   AC_CHECK_FUNCS( gettext dcgettext )
+diff --git a/doc_src/license.hdr b/doc_src/license.hdr
+index 64bab10..f292722 100644
+--- a/doc_src/license.hdr
 b/doc_src/license.hdr
+@@ -1400,6 +1400,34 @@ POSSIBILITY OF SUCH DAMAGES.
+ 
+ P
+ 
+-*/
++hr
++
++h2License for getpeereid/h2
++
++\c fish contains code imported from the PostgreSQL project under
++license, namely the getpeereid fallback function. This code is copyrighted
++by:
++
++Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
++
++Portions Copyright (c) 1994, The Regents of the University of California
++
++Permission to use, copy, modify, and distribute this software and its
++documentation for any purpose, without fee, and without a written agreement
++is hereby granted, provided that the above copyright notice and this
++paragraph and the following two paragraphs appear in all copies.
++
++IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
++DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
++LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
++DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE
++POSSIBILITY OF SUCH DAMAGE.
++
++THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
++INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
++AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
++ON AN AS IS BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
++PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+ 
+ \htmlonly /div \endhtmlonly
++*/
+diff --git a/env_universal.cpp b/env_universal.cpp
+index c7d060a..987f88b 100644
+--- a/env_universal.cpp
 b/env_universal.cpp
+@@ -88,6 +88,8 @@ static int try_get_socket_once(void)
+ 
+ wdir = path;
+ wuname = user;
++uid_t seuid;
++gid_t segid;
+ 
+ if ((s = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
+ {
+@@ -135,6 +137,13 @@ static int try_get_socket_once(void)
+ return -1;
+ }
+ 
++if ((getpeereid(s, seuid, segid) != 0) || seuid != geteuid())
++{
++debug(1, LWrong credentials for socket %s at fd %d, name.c_str(), 
s);
++close(s);
++return -1;
++}
++
+ if ((make_fd_nonblocking(s) != 0) || (fcntl(s, F_SETFD, FD_CLOEXEC) != 0))
+ {
+ wperror(Lfcntl);
+diff --git a/fallback.cpp b/fallback.cpp
+index 5e4b3e1..34db397 100644
+--- a/fallback.cpp
 b/fallback.cpp
+@@ -15,8 +15,9 @@

[arch-commits] Commit in gnome-settings-daemon/trunk (PKGBUILD)

2014-05-05 Thread Jan de Groot
Date: Monday, May 5, 2014 @ 18:33:58
  Author: jgc
Revision: 212050

upgpkg: gnome-settings-daemon 3.12.2-1

Modified:
  gnome-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 12:26:57 UTC (rev 212049)
+++ PKGBUILD2014-05-05 16:33:58 UTC (rev 212050)
@@ -2,8 +2,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=gnome-settings-daemon
-pkgver=3.12.1
-pkgrel=2
+pkgver=3.12.2
+pkgrel=1
 pkgdesc=The GNOME Settings daemon
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -16,7 +16,7 @@
 url=http://www.gnome.org;
 groups=('gnome')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('639df1fb978c765009d574d0fb892abbf35f1e875ba71e801cb0dd555a15f23c')
+sha256sums=('e887bd63c733febccb7f2c1453c075016342e223214fa9cfc60d90f1e16e080f')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in gnome-settings-daemon/repos (8 files)

2014-05-05 Thread Jan de Groot
Date: Monday, May 5, 2014 @ 18:34:04
  Author: jgc
Revision: 212051

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

Added:
  gnome-settings-daemon/repos/extra-i686/PKGBUILD
(from rev 212050, gnome-settings-daemon/trunk/PKGBUILD)
  gnome-settings-daemon/repos/extra-i686/gnome-settings-daemon.install
(from rev 212050, gnome-settings-daemon/trunk/gnome-settings-daemon.install)
  gnome-settings-daemon/repos/extra-x86_64/PKGBUILD
(from rev 212050, gnome-settings-daemon/trunk/PKGBUILD)
  gnome-settings-daemon/repos/extra-x86_64/gnome-settings-daemon.install
(from rev 212050, gnome-settings-daemon/trunk/gnome-settings-daemon.install)
Deleted:
  gnome-settings-daemon/repos/extra-i686/PKGBUILD
  gnome-settings-daemon/repos/extra-i686/gnome-settings-daemon.install
  gnome-settings-daemon/repos/extra-x86_64/PKGBUILD
  gnome-settings-daemon/repos/extra-x86_64/gnome-settings-daemon.install

+
 /PKGBUILD  |   72 +++
 /gnome-settings-daemon.install |   24 +
 extra-i686/PKGBUILD|   36 -
 extra-i686/gnome-settings-daemon.install   |   12 
 extra-x86_64/PKGBUILD  |   36 -
 extra-x86_64/gnome-settings-daemon.install |   12 
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-05 16:33:58 UTC (rev 212050)
+++ extra-i686/PKGBUILD 2014-05-05 16:34:04 UTC (rev 212051)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=gnome-settings-daemon
-pkgver=3.12.1
-pkgrel=2
-pkgdesc=The GNOME Settings daemon
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dconf' 'gnome-desktop' 'gsettings-desktop-schemas' 
'hicolor-icon-theme' 'libcanberra-pulse' 'libnotify'
- 'libsystemd' 'libwacom' 'pulseaudio' 'pulseaudio-alsa' 'upower' 
'libibus' 'librsvg' 'libgweather' 'geocode-glib' 'geoclue2'
- 'nss')
-makedepends=('intltool' 'xf86-input-wacom' 'libxslt' 'docbook-xsl')
-options=('!emptydirs')
-install=gnome-settings-daemon.install
-url=http://www.gnome.org;
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('639df1fb978c765009d574d0fb892abbf35f1e875ba71e801cb0dd555a15f23c')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gnome-settings-daemon/repos/extra-i686/PKGBUILD (from rev 212050, 
gnome-settings-daemon/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-05 16:34:04 UTC (rev 212051)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=gnome-settings-daemon
+pkgver=3.12.2
+pkgrel=1
+pkgdesc=The GNOME Settings daemon
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dconf' 'gnome-desktop' 'gsettings-desktop-schemas' 
'hicolor-icon-theme' 'libcanberra-pulse' 'libnotify'
+ 'libsystemd' 'libwacom' 'pulseaudio' 'pulseaudio-alsa' 'upower' 
'libibus' 'librsvg' 'libgweather' 'geocode-glib' 'geoclue2'
+ 'nss')
+makedepends=('intltool' 'xf86-input-wacom' 'libxslt' 'docbook-xsl')
+options=('!emptydirs')
+install=gnome-settings-daemon.install
+url=http://www.gnome.org;
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e887bd63c733febccb7f2c1453c075016342e223214fa9cfc60d90f1e16e080f')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/gnome-settings-daemon.install
===
--- extra-i686/gnome-settings-daemon.install2014-05-05 16:33:58 UTC (rev 
212050)
+++ extra-i686/gnome-settings-daemon.install2014-05-05 16:34:04 UTC (rev 
212051)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-settings-daemon/repos/extra-i686/gnome-settings-daemon.install 
(from rev 212050, 

[arch-commits] Commit in kscreen/trunk (kscreen.install)

2014-05-05 Thread Andrea Scarpino
Date: Monday, May 5, 2014 @ 19:47:59
  Author: andrea
Revision: 212052

Use qdbus-qt4 which exists for sure

Modified:
  kscreen/trunk/kscreen.install

-+
 kscreen.install |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: kscreen.install
===
--- kscreen.install 2014-05-05 16:34:04 UTC (rev 212051)
+++ kscreen.install 2014-05-05 17:47:59 UTC (rev 212052)
@@ -1,8 +1,8 @@
 post_install() {
 printf == To enable KSceen, run in a terminal:\n
-printf qdbus org.kde.kded /kded org.kde.kded.unloadModule 
randrmonitor\n
-printf qdbus org.kde.kded /kded org.kde.kded.setModuleAutoloading 
randrmonitor false\n
-printf qdbus org.kde.kded /kded org.kde.kded.loadModule kscreen\n
+printf qdbus-qt4 org.kde.kded /kded org.kde.kded.unloadModule 
randrmonitor\n
+printf qdbus-qt4 org.kde.kded /kded org.kde.kded.setModuleAutoloading 
randrmonitor false\n
+printf qdbus-qt4 org.kde.kded /kded org.kde.kded.loadModule kscreen\n
 
xdg-icon-resource forceupdate --theme hicolor  /dev/null
 }



[arch-commits] Commit in baloo/trunk (PKGBUILD krunner-crash.patch)

2014-05-05 Thread Andrea Scarpino
Date: Monday, May 5, 2014 @ 19:50:08
  Author: andrea
Revision: 212053

upgpkg: baloo 4.13.0-2

Fix krunner crash (FS#40222)

Added:
  baloo/trunk/krunner-crash.patch
Modified:
  baloo/trunk/PKGBUILD

-+
 PKGBUILD|   13 +
 krunner-crash.patch |   35 +++
 2 files changed, 44 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 17:47:59 UTC (rev 212052)
+++ PKGBUILD2014-05-05 17:50:08 UTC (rev 212053)
@@ -3,7 +3,7 @@
 
 pkgname=baloo
 pkgver=4.13.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A framework for searching and managing metadata
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kdelibs/baloo'
@@ -11,11 +11,16 @@
 depends=('kdepimlibs' 'xapian-core' 'kfilemetadata')
 makedepends=('cmake' 'automoc4' 'boost')
 install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('ace3a80d3c0e3bb444ebe7f30392db791eab7c61')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
+'krunner-crash.patch')
+sha1sums=('ace3a80d3c0e3bb444ebe7f30392db791eab7c61'
+  'fdb37257dca64531559fdc2ddf4730582b9a009c')
 
 prepare() {
   mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/krunner-crash.patch
 }
 
 build() {
@@ -22,7 +27,7 @@
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr
+-DCMAKE_INSTALL_PREFIX=/usr
   make
 }
 

Added: krunner-crash.patch
===
--- krunner-crash.patch (rev 0)
+++ krunner-crash.patch 2014-05-05 17:50:08 UTC (rev 212053)
@@ -0,0 +1,35 @@
+commit 5bdb32928dc3eabf482676bb039104d1137cf1fb
+Author: Vishesh Handa m...@vhanda.in
+Date:   Mon May 5 16:28:17 2014 +0200
+
+XapianSearchStore: Split the string based on + * / - =
+
+When we receive a search string, we typically split it up by spaces and
+dots. Then each sub string is checked, if it is = 3 characters, we use
+our own expansion scheme (imperfect) otherwise xapians.
+
+We need to use our own completion scheme because xapian's consumes too
+much memory in the case of very few characters. It basically expands the
+string to every possible completion result it has in its db, this
+results in loads and loads of memory being consumed.
+
+We now split based on some extra characters so that when searching for
+'2*2=' will not consume all your RAM in the case when your DB has many
+words starting with 2.
+
+BUG: 332253
+FIXED-IN: 4.13.1
+
+diff --git a/src/xapian/xapiansearchstore.cpp 
b/src/xapian/xapiansearchstore.cpp
+index a0529ce..1a59e3e 100644
+--- a/src/xapian/xapiansearchstore.cpp
 b/src/xapian/xapiansearchstore.cpp
+@@ -174,7 +174,7 @@ namespace {
+ Xapian::Query XapianSearchStore::constructSearchQuery(const QString str)
+ {
+ QVectorXapian::Query queries;
+-QRegExp splitRegex([\\s.]);
++QRegExp splitRegex([\\s.+*/\\-=]);
+ QStringList list = str.split(splitRegex, QString::SkipEmptyParts);
+ 
+ QMutableListIteratorQString iter(list);



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

2014-05-05 Thread Andrea Scarpino
Date: Monday, May 5, 2014 @ 19:50:18
  Author: andrea
Revision: 212054

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

Added:
  baloo/repos/extra-i686/PKGBUILD
(from rev 212053, baloo/trunk/PKGBUILD)
  baloo/repos/extra-i686/baloo.install
(from rev 212053, baloo/trunk/baloo.install)
  baloo/repos/extra-i686/krunner-crash.patch
(from rev 212053, baloo/trunk/krunner-crash.patch)
  baloo/repos/extra-x86_64/PKGBUILD
(from rev 212053, baloo/trunk/PKGBUILD)
  baloo/repos/extra-x86_64/baloo.install
(from rev 212053, baloo/trunk/baloo.install)
  baloo/repos/extra-x86_64/krunner-crash.patch
(from rev 212053, baloo/trunk/krunner-crash.patch)
Deleted:
  baloo/repos/extra-i686/PKGBUILD
  baloo/repos/extra-i686/baloo.install
  baloo/repos/extra-x86_64/PKGBUILD
  baloo/repos/extra-x86_64/baloo.install

--+
 /PKGBUILD|   74 +
 /baloo.install   |   22 +++
 extra-i686/PKGBUILD  |   32 
 extra-i686/baloo.install |   11 -
 extra-i686/krunner-crash.patch   |   35 +
 extra-x86_64/PKGBUILD|   32 
 extra-x86_64/baloo.install   |   11 -
 extra-x86_64/krunner-crash.patch |   35 +
 8 files changed, 166 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-05 17:50:08 UTC (rev 212053)
+++ extra-i686/PKGBUILD 2014-05-05 17:50:18 UTC (rev 212054)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=baloo
-pkgver=4.13.0
-pkgrel=1
-pkgdesc=A framework for searching and managing metadata
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs/baloo'
-license=('LGPL')
-depends=('kdepimlibs' 'xapian-core' 'kfilemetadata')
-makedepends=('cmake' 'automoc4' 'boost')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('ace3a80d3c0e3bb444ebe7f30392db791eab7c61')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: baloo/repos/extra-i686/PKGBUILD (from rev 212053, baloo/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-05 17:50:18 UTC (rev 212054)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=baloo
+pkgver=4.13.0
+pkgrel=2
+pkgdesc=A framework for searching and managing metadata
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdelibs/baloo'
+license=('LGPL')
+depends=('kdepimlibs' 'xapian-core' 'kfilemetadata')
+makedepends=('cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
+'krunner-crash.patch')
+sha1sums=('ace3a80d3c0e3bb444ebe7f30392db791eab7c61'
+  'fdb37257dca64531559fdc2ddf4730582b9a009c')
+
+prepare() {
+  mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/krunner-crash.patch
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/baloo.install
===
--- extra-i686/baloo.install2014-05-05 17:50:08 UTC (rev 212053)
+++ extra-i686/baloo.install2014-05-05 17:50:18 UTC (rev 212054)
@@ -1,11 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: baloo/repos/extra-i686/baloo.install (from rev 212053, 
baloo/trunk/baloo.install)
===
--- extra-i686/baloo.install(rev 0)
+++ extra-i686/baloo.install2014-05-05 17:50:18 UTC (rev 212054)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: baloo/repos/extra-i686/krunner-crash.patch (from rev 212053, 
baloo/trunk/krunner-crash.patch)
===
--- extra-i686/krunner-crash.patch  (rev 0)
+++ extra-i686/krunner-crash.patch  2014-05-05 17:50:18 UTC (rev 212054)
@@ -0,0 +1,35 @@
+commit 5bdb32928dc3eabf482676bb039104d1137cf1fb
+Author: Vishesh Handa m...@vhanda.in
+Date:   Mon May 5 16:28:17 2014 +0200
+
+XapianSearchStore: Split the string based on + * / - 

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

2014-05-05 Thread Jan Steffens
Date: Monday, May 5, 2014 @ 20:56:45
  Author: heftig
Revision: 212055

3.12.1

Modified:
  totem/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 17:50:18 UTC (rev 212054)
+++ PKGBUILD2014-05-05 18:56:45 UTC (rev 212055)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=totem
-pkgver=3.12.0
+pkgver=3.12.1
 pkgrel=1
 pkgdesc=GNOME3 movie player based on GStreamer
 url=http://www.gnome.org;
@@ -28,7 +28,7 @@
 replaces=(totem-plugin)
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
 browser-plugins.ini bugreport.patch)
-sha256sums=('96762a1c2026f7bbc6ef8a431cf7626647e54ac2d195eb573a71d62dc3a2c430'
+sha256sums=('dd168cdd4051d01131d47c24fa45bfd08b6ccf45900ac4b64bae47f6f47a35e3'
 'a50a3bbf35f0535f7e8e20af1893446a2e5711015484f9ae6d1ff91af3b23c4e'
 '30481dab7e21b66257e3238f5a8b708e1a5c4797d7da904f7ebaba4c2c2ef167')
 



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

2014-05-05 Thread Jan Steffens
Date: Monday, May 5, 2014 @ 20:59:54
  Author: heftig
Revision: 212056

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

Added:
  totem/repos/extra-i686/PKGBUILD
(from rev 212055, totem/trunk/PKGBUILD)
  totem/repos/extra-i686/browser-plugins.ini
(from rev 212055, totem/trunk/browser-plugins.ini)
  totem/repos/extra-i686/bugreport.patch
(from rev 212055, totem/trunk/bugreport.patch)
  totem/repos/extra-i686/totem.install
(from rev 212055, totem/trunk/totem.install)
  totem/repos/extra-x86_64/PKGBUILD
(from rev 212055, totem/trunk/PKGBUILD)
  totem/repos/extra-x86_64/browser-plugins.ini
(from rev 212055, totem/trunk/browser-plugins.ini)
  totem/repos/extra-x86_64/bugreport.patch
(from rev 212055, totem/trunk/bugreport.patch)
  totem/repos/extra-x86_64/totem.install
(from rev 212055, totem/trunk/totem.install)
Deleted:
  totem/repos/extra-i686/PKGBUILD
  totem/repos/extra-i686/browser-plugins.ini
  totem/repos/extra-i686/bugreport.patch
  totem/repos/extra-i686/totem.install
  totem/repos/extra-x86_64/PKGBUILD
  totem/repos/extra-x86_64/browser-plugins.ini
  totem/repos/extra-x86_64/bugreport.patch
  totem/repos/extra-x86_64/totem.install

--+
 /PKGBUILD|  128 +
 /browser-plugins.ini |4 +
 /bugreport.patch |   44 
 /totem.install   |   26 +++
 extra-i686/PKGBUILD  |   64 --
 extra-i686/browser-plugins.ini   |2 
 extra-i686/bugreport.patch   |   22 --
 extra-i686/totem.install |   13 ---
 extra-x86_64/PKGBUILD|   64 --
 extra-x86_64/browser-plugins.ini |2 
 extra-x86_64/bugreport.patch |   22 --
 extra-x86_64/totem.install   |   13 ---
 12 files changed, 202 insertions(+), 202 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-05 18:56:45 UTC (rev 212055)
+++ extra-i686/PKGBUILD 2014-05-05 18:59:54 UTC (rev 212056)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=totem
-pkgver=3.12.0
-pkgrel=1
-pkgdesc=GNOME3 movie player based on GStreamer
-url=http://www.gnome.org;
-arch=(i686 x86_64)
-license=(GPL2 custom)
-depends=(totem-plparser desktop-file-utils iso-codes libpeas clutter-gtk 
clutter-gst grilo
- hicolor-icon-theme gnome-icon-theme gsettings-desktop-schemas dconf
- python-gobject python-xdg
- gst-plugins-base gst-plugins-good gst-plugins-bad)
-makedepends=(intltool libnautilus-extension lirc-utils vala zeitgeist
- itstool docbook-xsl python-pylint)
-optdepends=('gst-plugins-ugly: Extra media codecs'
-'gst-libav: Extra media codecs'
-'lirc-utils: Infrared Remote Control plugin'
-'grilo-plugins: Media discovery'
-'zeitgeist: Zeitgeist plugin')
-groups=(gnome)
-options=('!emptydirs')
-backup=(etc/totem/browser-plugins.ini)
-install=totem.install
-conflicts=(totem-plugin)
-replaces=(totem-plugin)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-browser-plugins.ini bugreport.patch)
-sha256sums=('96762a1c2026f7bbc6ef8a431cf7626647e54ac2d195eb573a71d62dc3a2c430'
-'a50a3bbf35f0535f7e8e20af1893446a2e5711015484f9ae6d1ff91af3b23c4e'
-'30481dab7e21b66257e3238f5a8b708e1a5c4797d7da904f7ebaba4c2c2ef167')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Make compatible with Python 3 and Gstreamer 1.0
-  patch -Np1 -i ../bugreport.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/totem \
---localstatedir=/var \
---disable-static \
---enable-python \
---enable-nautilus
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 ../browser-plugins.ini $pkgdir/etc/totem/browser-plugins.ini
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/totem/COPYING
-}

Copied: totem/repos/extra-i686/PKGBUILD (from rev 212055, totem/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-05 18:59:54 UTC (rev 212056)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=totem
+pkgver=3.12.1
+pkgrel=1
+pkgdesc=GNOME3 movie player based on GStreamer
+url=http://www.gnome.org;
+arch=(i686 x86_64)
+license=(GPL2 custom)
+depends=(totem-plparser desktop-file-utils iso-codes libpeas clutter-gtk 
clutter-gst grilo
+ hicolor-icon-theme 

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

2014-05-05 Thread Andreas Radke
Date: Monday, May 5, 2014 @ 21:13:20
  Author: andyrtr
Revision: 212057

upgpkg: libetpan 1.5-1

upstream update 1.5

Modified:
  libetpan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 18:59:54 UTC (rev 212056)
+++ PKGBUILD2014-05-05 19:13:20 UTC (rev 212057)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=libetpan
-pkgver=1.4.1
+pkgver=1.5
 pkgrel=1
 pkgdesc=A portable middleware for email access
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=(custom:etpan)
 depends=('libsasl' 'curl' 'expat')
 source=(https://github.com/dinhviethoa/${pkgname}/archive/${pkgver}.tar.gz)
-md5sums=('430a530a38d3bc6028b973a75d219891')
+md5sums=('f5a0ae8071937b31d0facc1f2d874ead')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2014-05-05 Thread Andreas Radke
Date: Monday, May 5, 2014 @ 21:13:40
  Author: andyrtr
Revision: 212058

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-05 19:13:20 UTC (rev 212057)
+++ extra-i686/PKGBUILD 2014-05-05 19:13:40 UTC (rev 212058)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgname=libetpan
-pkgver=1.4.1
-pkgrel=1
-pkgdesc=A portable middleware for email access
-arch=('i686' 'x86_64')
-url=http://www.etpan.org/libetpan.html;
-license=(custom:etpan)
-depends=('libsasl' 'curl' 'expat')
-source=(https://github.com/dinhviethoa/${pkgname}/archive/${pkgver}.tar.gz)
-md5sums=('430a530a38d3bc6028b973a75d219891')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  
-  # generate automake files that are not included in the tarball
-  libtoolize --force --copy
-  aclocal -I m4
-  autoheader
-  autoconf
-  automake --add-missing --foreign --force --copy
-  #autoreconf -vfi
-
-  ./configure --prefix=/usr \
---disable-static \
---disable-db
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-  cd tests
-  make imap-sample
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -Dm644 COPYRIGHT ${pkgdir}/usr/share/licenses/$pkgname/license.txt
-}

Copied: libetpan/repos/extra-i686/PKGBUILD (from rev 212057, 
libetpan/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-05 19:13:40 UTC (rev 212058)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=libetpan
+pkgver=1.5
+pkgrel=1
+pkgdesc=A portable middleware for email access
+arch=('i686' 'x86_64')
+url=http://www.etpan.org/libetpan.html;
+license=(custom:etpan)
+depends=('libsasl' 'curl' 'expat')
+source=(https://github.com/dinhviethoa/${pkgname}/archive/${pkgver}.tar.gz)
+md5sums=('f5a0ae8071937b31d0facc1f2d874ead')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  
+  # generate automake files that are not included in the tarball
+  libtoolize --force --copy
+  aclocal -I m4
+  autoheader
+  autoconf
+  automake --add-missing --foreign --force --copy
+  #autoreconf -vfi
+
+  ./configure --prefix=/usr \
+--disable-static \
+--disable-db
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+  cd tests
+  make imap-sample
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 COPYRIGHT ${pkgdir}/usr/share/licenses/$pkgname/license.txt
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-05 19:13:20 UTC (rev 212057)
+++ extra-x86_64/PKGBUILD   2014-05-05 19:13:40 UTC (rev 212058)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgname=libetpan
-pkgver=1.4.1
-pkgrel=1
-pkgdesc=A portable middleware for email access
-arch=('i686' 'x86_64')
-url=http://www.etpan.org/libetpan.html;
-license=(custom:etpan)
-depends=('libsasl' 'curl' 'expat')
-source=(https://github.com/dinhviethoa/${pkgname}/archive/${pkgver}.tar.gz)
-md5sums=('430a530a38d3bc6028b973a75d219891')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  
-  # generate automake files that are not included in the tarball
-  libtoolize --force --copy
-  aclocal -I m4
-  autoheader
-  autoconf
-  automake --add-missing --foreign --force --copy
-  #autoreconf -vfi
-
-  ./configure --prefix=/usr \
---disable-static \
---disable-db
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-  cd tests
-  make imap-sample
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -Dm644 COPYRIGHT ${pkgdir}/usr/share/licenses/$pkgname/license.txt
-}

Copied: libetpan/repos/extra-x86_64/PKGBUILD (from rev 212057, 
libetpan/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-05-05 19:13:40 UTC (rev 212058)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=libetpan
+pkgver=1.5
+pkgrel=1
+pkgdesc=A portable middleware for email access
+arch=('i686' 'x86_64')
+url=http://www.etpan.org/libetpan.html;
+license=(custom:etpan)
+depends=('libsasl' 'curl' 'expat')

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

2014-05-05 Thread Bartłomiej Piotrowski
Date: Monday, May 5, 2014 @ 21:26:56
  Author: bpiotrowski
Revision: 212059

upgpkg: ffmpeg 1:2.2.2-1

new upstream release

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 19:13:40 UTC (rev 212058)
+++ PKGBUILD2014-05-05 19:26:56 UTC (rev 212059)
@@ -5,7 +5,7 @@
 # Contributor: Paul Mattal p...@archlinux.org
 
 pkgname=ffmpeg
-pkgver=2.2.1
+pkgver=2.2.2
 pkgrel=1
 epoch=1
 pkgdesc='Complete and free Internet live audio and video broadcasting solution'
@@ -19,17 +19,10 @@
   'v4l-utils' 'x264' 'xvidcore' 'zlib' 'x265'
   )
 makedepends=('libvdpau' 'yasm')
-source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc}
-0001-libx265-Support-API-version-9.patch)
-md5sums=('b8a1ee4964c2638f46fcc803ed453818'
- 'SKIP'
- '4cbf9b13dc013e96be36445b4a2bfdac')
+source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('581affe5d820d89ce21fe3f0316ef2c3'
+ 'SKIP')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../0001-libx265-Support-API-version-9.patch
-}
-
 build() {
   cd $pkgname-$pkgver
 



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

2014-05-05 Thread Bartłomiej Piotrowski
Date: Monday, May 5, 2014 @ 21:27:06
  Author: bpiotrowski
Revision: 212060

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

Added:
  ffmpeg/repos/extra-i686/0001-libx265-Support-API-version-9.patch
(from rev 212059, ffmpeg/trunk/0001-libx265-Support-API-version-9.patch)
  ffmpeg/repos/extra-i686/PKGBUILD
(from rev 212059, ffmpeg/trunk/PKGBUILD)
  ffmpeg/repos/extra-x86_64/0001-libx265-Support-API-version-9.patch
(from rev 212059, ffmpeg/trunk/0001-libx265-Support-API-version-9.patch)
  ffmpeg/repos/extra-x86_64/PKGBUILD
(from rev 212059, ffmpeg/trunk/PKGBUILD)
Deleted:
  ffmpeg/repos/extra-i686/0001-libx265-Support-API-version-9.patch
  ffmpeg/repos/extra-i686/PKGBUILD
  ffmpeg/repos/extra-x86_64/0001-libx265-Support-API-version-9.patch
  ffmpeg/repos/extra-x86_64/PKGBUILD

---+
 /0001-libx265-Support-API-version-9.patch |  100 ++
 /PKGBUILD |  158 
 extra-i686/0001-libx265-Support-API-version-9.patch   |   50 -
 extra-i686/PKGBUILD   |   86 
 extra-x86_64/0001-libx265-Support-API-version-9.patch |   50 -
 extra-x86_64/PKGBUILD |   86 
 6 files changed, 258 insertions(+), 272 deletions(-)

Deleted: extra-i686/0001-libx265-Support-API-version-9.patch
===
--- extra-i686/0001-libx265-Support-API-version-9.patch 2014-05-05 19:26:56 UTC 
(rev 212059)
+++ extra-i686/0001-libx265-Support-API-version-9.patch 2014-05-05 19:27:06 UTC 
(rev 212060)
@@ -1,50 +0,0 @@
-From d67dbfa7c195fabce706ca03c439419450f9bd8a Mon Sep 17 00:00:00 2001
-From: Derek Buitenhuis derek.buitenh...@gmail.com
-Date: Thu, 6 Mar 2014 20:01:17 +
-Subject: [PATCH] libx265: Support API version 9
-
-Signed-off-by: Derek Buitenhuis derek.buitenh...@gmail.com

- configure|4 ++--
- libavcodec/libx265.c |   10 +-
- 2 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/configure b/configure
-index d3f5f33..4d7382a 100755
 a/configure
-+++ b/configure
-@@ -3980,8 +3980,8 @@ enabled libx264require libx264 x264.h 
x264_encoder_encode -lx264 
-  { check_cpp_condition x264.h X264_BUILD = 118 
||
-die ERROR: libx264 version must be = 
0.118.; }
- enabled libx265require_pkg_config x265 x265.h 
x265_encoder_encode 
-- { check_cpp_condition x265.h X265_BUILD = 7 ||
--   die ERROR: libx265 version must be = 7.; }
-+ { check_cpp_condition x265.h X265_BUILD = 9 ||
-+   die ERROR: libx265 version must be = 9.; }
- enabled libxavsrequire libxavs xavs.h xavs_encoder_encode -lxavs
- enabled libxvidrequire libxvid xvid.h xvid_global -lxvidcore
- enabled openssl{ check_lib openssl/ssl.h SSL_library_init -lssl 
-lcrypto ||
-diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c
-index 961fc74..a6e4193 100644
 a/libavcodec/libx265.c
-+++ b/libavcodec/libx265.c
-@@ -121,11 +121,11 @@ static av_cold int libx265_encode_init(AVCodecContext 
*avctx)
- av_reduce(sar_num, sar_den,
-   avctx-sample_aspect_ratio.num,
-   avctx-sample_aspect_ratio.den, 4096);
--ctx-params-bEnableVuiParametersPresentFlag = 1;
--ctx-params-bEnableAspectRatioIdc   = 1;
--ctx-params-aspectRatioIdc  = 255;
--ctx-params-sarWidth= sar_num;
--ctx-params-sarHeight   = sar_den;
-+ctx-params-vui.bEnableVuiParametersPresentFlag = 1;
-+ctx-params-vui.bEnableAspectRatioIdc   = 1;
-+ctx-params-vui.aspectRatioIdc  = 255;
-+ctx-params-vui.sarWidth= sar_num;
-+ctx-params-vui.sarHeight   = sar_den;
- 
- if (x265_max_bit_depth == 8)
- ctx-params-internalBitDepth = 8;
--- 
-1.7.10.4
-

Copied: ffmpeg/repos/extra-i686/0001-libx265-Support-API-version-9.patch (from 
rev 212059, ffmpeg/trunk/0001-libx265-Support-API-version-9.patch)
===
--- extra-i686/0001-libx265-Support-API-version-9.patch 
(rev 0)
+++ extra-i686/0001-libx265-Support-API-version-9.patch 2014-05-05 19:27:06 UTC 
(rev 212060)
@@ -0,0 +1,50 @@
+From d67dbfa7c195fabce706ca03c439419450f9bd8a Mon Sep 17 00:00:00 2001
+From: Derek Buitenhuis derek.buitenh...@gmail.com
+Date: Thu, 6 Mar 2014 20:01:17 +
+Subject: [PATCH] libx265: Support API version 9
+
+Signed-off-by: Derek Buitenhuis derek.buitenh...@gmail.com
+---
+ configure|4 ++--
+ libavcodec/libx265.c |   10 +-
+ 2 files changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/configure 

[arch-commits] Commit in (4 files)

2014-05-05 Thread speps
Date: Monday, May 5, 2014 @ 21:43:17
  Author: speps
Revision: 110718

addpkg: g2reverb 0.7.1
since version 0.7.1 rev-plugins does not provide g2reverb.so anymore
adding for continuity and for preventing breaking of popular presets

Added:
  g2reverb/
  g2reverb/repos/
  g2reverb/trunk/
  g2reverb/trunk/PKGBUILD

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

Added: g2reverb/trunk/PKGBUILD
===
--- g2reverb/trunk/PKGBUILD (rev 0)
+++ g2reverb/trunk/PKGBUILD 2014-05-05 19:43:17 UTC (rev 110718)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+
+pkgname=g2reverb
+pkgver=0.7.1
+pkgrel=1
+pkgdesc=LADSPA stereo reverb plugin based on greverb
+arch=('i686' 'x86_64')
+url=http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=(${url}../downloads/$pkgname-$pkgver.tar.bz2)
+md5sums=('072c2af1f0ed526be432ede7e7a529ae')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  # plugin
+  install -Dm755 $pkgname.so \
+$pkgdir/usr/lib/ladspa/$pkgname.so
+}



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

2014-05-05 Thread speps
Date: Monday, May 5, 2014 @ 21:45:33
  Author: speps
Revision: 110720

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 19:45:14 UTC (rev 110719)
+++ community-i686/PKGBUILD 2014-05-05 19:45:33 UTC (rev 110720)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-
-pkgname=rev-plugins
-pkgver=0.3.1
-pkgrel=1
-pkgdesc=LADSPA stereo reverb plugin based on greverb
-arch=('i686' 'x86_64')
-url=http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
-license=('GPL')
-groups=('ladspa-plugins')
-depends=('ladspa')
-source=(${url}../downloads/REV-plugins-$pkgver.tar.bz2)
-md5sums=('bca920c2cbf5e33989e7cafab6fbaee4')
-
-build() {
-  cd $srcdir/REV-plugins-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/REV-plugins-$pkgver
-
-  # plugin
-  install -Dm 755 g2reverb.so \
-$pkgdir/usr/lib/ladspa/g2reverb.so
-}

Copied: rev-plugins/repos/community-i686/PKGBUILD (from rev 110719, 
rev-plugins/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 19:45:33 UTC (rev 110720)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+
+pkgname=rev-plugins
+pkgver=0.7.1
+pkgrel=1
+pkgdesc=LADSPA stereo and ambisonic reverb plugin based on zita-rev1
+arch=('i686' 'x86_64')
+url=http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=(${url}../downloads/REV-plugins-$pkgver.tar.bz2)
+md5sums=('9f0be0d26592f67ba5fe16102c6bc332')
+
+build() {
+  cd REV-plugins-$pkgver
+  make
+}
+
+package() {
+  cd REV-plugins-$pkgver
+
+  # plugin
+  install -Dm755 zita-reverbs.so \
+$pkgdir/usr/lib/ladspa/zita-reverbs.so
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-05 19:45:14 UTC (rev 110719)
+++ community-x86_64/PKGBUILD   2014-05-05 19:45:33 UTC (rev 110720)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-
-pkgname=rev-plugins
-pkgver=0.3.1
-pkgrel=1
-pkgdesc=LADSPA stereo reverb plugin based on greverb
-arch=('i686' 'x86_64')
-url=http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
-license=('GPL')
-groups=('ladspa-plugins')
-depends=('ladspa')
-source=(${url}../downloads/REV-plugins-$pkgver.tar.bz2)
-md5sums=('bca920c2cbf5e33989e7cafab6fbaee4')
-
-build() {
-  cd $srcdir/REV-plugins-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/REV-plugins-$pkgver
-
-  # plugin
-  install -Dm 755 g2reverb.so \
-$pkgdir/usr/lib/ladspa/g2reverb.so
-}

Copied: rev-plugins/repos/community-x86_64/PKGBUILD (from rev 110719, 
rev-plugins/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-05 19:45:33 UTC (rev 110720)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+
+pkgname=rev-plugins
+pkgver=0.7.1
+pkgrel=1
+pkgdesc=LADSPA stereo and ambisonic reverb plugin based on zita-rev1
+arch=('i686' 'x86_64')
+url=http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=(${url}../downloads/REV-plugins-$pkgver.tar.bz2)
+md5sums=('9f0be0d26592f67ba5fe16102c6bc332')
+
+build() {
+  cd REV-plugins-$pkgver
+  make
+}
+
+package() {
+  cd REV-plugins-$pkgver
+
+  # plugin
+  install -Dm755 zita-reverbs.so \
+$pkgdir/usr/lib/ladspa/zita-reverbs.so
+}



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

2014-05-05 Thread speps
Date: Monday, May 5, 2014 @ 21:45:56
  Author: speps
Revision: 110721

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

Added:
  g2reverb/repos/community-i686/
  g2reverb/repos/community-i686/PKGBUILD
(from rev 110720, g2reverb/trunk/PKGBUILD)
  g2reverb/repos/community-x86_64/
  g2reverb/repos/community-x86_64/PKGBUILD
(from rev 110720, g2reverb/trunk/PKGBUILD)

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

Copied: g2reverb/repos/community-i686/PKGBUILD (from rev 110720, 
g2reverb/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 19:45:56 UTC (rev 110721)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+
+pkgname=g2reverb
+pkgver=0.7.1
+pkgrel=1
+pkgdesc=LADSPA stereo reverb plugin based on greverb
+arch=('i686' 'x86_64')
+url=http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=(${url}../downloads/$pkgname-$pkgver.tar.bz2)
+md5sums=('072c2af1f0ed526be432ede7e7a529ae')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  # plugin
+  install -Dm755 $pkgname.so \
+$pkgdir/usr/lib/ladspa/$pkgname.so
+}

Copied: g2reverb/repos/community-x86_64/PKGBUILD (from rev 110720, 
g2reverb/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-05 19:45:56 UTC (rev 110721)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+
+pkgname=g2reverb
+pkgver=0.7.1
+pkgrel=1
+pkgdesc=LADSPA stereo reverb plugin based on greverb
+arch=('i686' 'x86_64')
+url=http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=(${url}../downloads/$pkgname-$pkgver.tar.bz2)
+md5sums=('072c2af1f0ed526be432ede7e7a529ae')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  # plugin
+  install -Dm755 $pkgname.so \
+$pkgdir/usr/lib/ladspa/$pkgname.so
+}



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

2014-05-05 Thread speps
Date: Monday, May 5, 2014 @ 21:45:14
  Author: speps
Revision: 110719

upgpkg: rev-plugins 0.7.1-1

Modified:
  rev-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 19:43:17 UTC (rev 110718)
+++ PKGBUILD2014-05-05 19:45:14 UTC (rev 110719)
@@ -2,9 +2,9 @@
 # Maintainer : speps speps at aur dot archlinux dot org
 
 pkgname=rev-plugins
-pkgver=0.3.1
+pkgver=0.7.1
 pkgrel=1
-pkgdesc=LADSPA stereo reverb plugin based on greverb
+pkgdesc=LADSPA stereo and ambisonic reverb plugin based on zita-rev1
 arch=('i686' 'x86_64')
 url=http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/;
 license=('GPL')
@@ -11,17 +11,17 @@
 groups=('ladspa-plugins')
 depends=('ladspa')
 source=(${url}../downloads/REV-plugins-$pkgver.tar.bz2)
-md5sums=('bca920c2cbf5e33989e7cafab6fbaee4')
+md5sums=('9f0be0d26592f67ba5fe16102c6bc332')
 
 build() {
-  cd $srcdir/REV-plugins-$pkgver
+  cd REV-plugins-$pkgver
   make
 }
 
 package() {
-  cd $srcdir/REV-plugins-$pkgver
+  cd REV-plugins-$pkgver
 
   # plugin
-  install -Dm 755 g2reverb.so \
-$pkgdir/usr/lib/ladspa/g2reverb.so
+  install -Dm755 zita-reverbs.so \
+$pkgdir/usr/lib/ladspa/zita-reverbs.so
 }



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

2014-05-05 Thread Sébastien Luttringer
Date: Monday, May 5, 2014 @ 23:10:41
  Author: seblu
Revision: 212061

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

Added:
  btrfs-progs/repos/core-i686/PKGBUILD
(from rev 212060, btrfs-progs/repos/testing-i686/PKGBUILD)
  btrfs-progs/repos/core-i686/btrfs-progs.install
(from rev 212060, btrfs-progs/repos/testing-i686/btrfs-progs.install)
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
(from rev 212060, btrfs-progs/repos/testing-i686/initcpio-hook-btrfs)
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
(from rev 212060, btrfs-progs/repos/testing-i686/initcpio-install-btrfs)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 212060, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 212060, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 212060, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 212060, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-i686/PKGBUILD
  btrfs-progs/repos/core-i686/btrfs-progs.install
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-x86_64/

+
 /PKGBUILD  |   98 +++
 /btrfs-progs.install   |   18 ++
 /initcpio-hook-btrfs   |   14 +
 /initcpio-install-btrfs|   34 
 core-i686/PKGBUILD |   49 -
 core-i686/btrfs-progs.install  |9 ---
 core-i686/initcpio-hook-btrfs  |7 --
 core-i686/initcpio-install-btrfs   |   17 --
 core-x86_64/PKGBUILD   |   49 -
 core-x86_64/btrfs-progs.install|9 ---
 core-x86_64/initcpio-hook-btrfs|7 --
 core-x86_64/initcpio-install-btrfs |   17 --
 12 files changed, 164 insertions(+), 164 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-05-05 19:27:06 UTC (rev 212060)
+++ core-i686/PKGBUILD  2014-05-05 21:10:41 UTC (rev 212061)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer
-# Contributor: Tom Gundersen t...@jklm.no
-# Contributor: Tobias Powalowski tp...@archlinux.org
-
-pkgname=btrfs-progs
-pkgver=3.14
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('i686' 'x86_64')
-depends=('glibc' 'e2fsprogs' 'lzo2' 'zlib')
-makedepends=('git')
-url='http://btrfs.wiki.kernel.org/'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-source=(git://git.kernel.org/pub/scm/linux/kernel/git/mason/${pkgname}.git#tag=v${pkgver}
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs')
-install=btrfs-progs.install
-options=(!staticlibs)
-md5sums=('SKIP'
- '7241ba3a4286d08da0d50b7176941112'
- 'b09688a915a0ec8f40e2f5aacbabc9ad')
-
-build() {
-   cd $pkgname
-   make CFLAGS=$CFLAGS
-   make CFLAGS=$CFLAGS btrfs-select-super
-}
-
-package() {
-   cd $pkgname
-
-   make prefix=$pkgdir/usr install
-   install -Dm755 btrfs-select-super $pkgdir/usr/bin
-
-   # fix manpage
-   install -d $pkgdir/usr/share/
-   mv $pkgdir/usr/man $pkgdir/usr/share/man
-
-   # install mkinitcpio hooks
-   cd $srcdir
-   install -Dm644 initcpio-install-btrfs 
$pkgdir/usr/lib/initcpio/install/btrfs
-   install -Dm644 initcpio-hook-btrfs $pkgdir/usr/lib/initcpio/hooks/btrfs
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/core-i686/PKGBUILD (from rev 212060, 
btrfs-progs/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-05-05 21:10:41 UTC (rev 212061)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=btrfs-progs
+pkgver=3.14.1
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'e2fsprogs' 'lzo2' 'zlib')
+makedepends=('git')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=(git://git.kernel.org/pub/scm/linux/kernel/git/mason/${pkgname}.git#tag=v${pkgver}
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '7241ba3a4286d08da0d50b7176941112'
+

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

2014-05-05 Thread Sébastien Luttringer
Date: Monday, May 5, 2014 @ 23:10:57
  Author: seblu
Revision: 110722

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

Added:
  python-msgpack/repos/community-i686/PKGBUILD
(from rev 110721, python-msgpack/repos/community-testing-i686/PKGBUILD)
  python-msgpack/repos/community-x86_64/PKGBUILD
(from rev 110721, python-msgpack/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  python-msgpack/repos/community-i686/PKGBUILD
  python-msgpack/repos/community-testing-i686/
  python-msgpack/repos/community-testing-x86_64/
  python-msgpack/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 19:45:56 UTC (rev 110721)
+++ community-i686/PKGBUILD 2014-05-05 21:10:57 UTC (rev 110722)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer
-
-pkgbase=python-msgpack
-pkgname=('python-msgpack' 'python2-msgpack')
-pkgver=0.4.1
-pkgrel=2
-arch=('i686' 'x86_64')
-url='https://github.com/msgpack/msgpack-python'
-license=('Apache')
-makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest' 'python-six' 'python2-six')
-source=(http://pypi.python.org/packages/source/m/msgpack-python/msgpack-python-$pkgver.tar.gz;)
-md5sums=('3ff478e75e783f4e69c1a8d5ca63dea4')
-
-build() {
-  cd msgpack-python-$pkgver
-  python setup.py build --build-lib=build/python
-  python2 setup.py build --build-lib=build/python2
-  find build/python2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-}
-
-check() {
-  cd msgpack-python-$pkgver
-  msg2 'python'
-  PYTHONPATH=$PWD/build/python py.test test
-  msg2 'python2'
-  PYTHONPATH=$PWD/build/python2 py.test2 test
-}
-
-package_python-msgpack() {
-  pkgdesc='MessagePack serializer implementation for Python'
-  depends=('python')
-
-  cd msgpack-python-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root=$pkgdir --optimize=1
-}
-
-package_python2-msgpack() {
-  pkgdesc='MessagePack serializer implementation for Python2'
-  depends=('python2')
-
-  cd msgpack-python-$pkgver
-  python2 setup.py build --build-lib=build/python2 \
-   install --root=$pkgdir --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-msgpack/repos/community-i686/PKGBUILD (from rev 110721, 
python-msgpack/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 21:10:57 UTC (rev 110722)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer
+
+pkgbase=python-msgpack
+pkgname=('python-msgpack' 'python2-msgpack')
+pkgver=0.4.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://github.com/msgpack/msgpack-python'
+license=('Apache')
+makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-six' 'python2-six')
+source=(http://pypi.python.org/packages/source/m/msgpack-python/msgpack-python-$pkgver.tar.gz;)
+md5sums=('e3a0fdfd864c72c958bb501d39b39caf')
+
+build() {
+  cd msgpack-python-$pkgver
+  python setup.py build --build-lib=build/python
+  python2 setup.py build --build-lib=build/python2
+  find build/python2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+#check() {
+#  cd msgpack-python-$pkgver
+#  msg2 'python'
+#  PYTHONPATH=$PWD/build/python py.test test
+#  msg2 'python2'
+#  PYTHONPATH=$PWD/build/python2 py.test2 test
+#}
+
+package_python-msgpack() {
+  pkgdesc='MessagePack serializer implementation for Python'
+  depends=('python')
+
+  cd msgpack-python-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root=$pkgdir --optimize=1
+}
+
+package_python2-msgpack() {
+  pkgdesc='MessagePack serializer implementation for Python2'
+  depends=('python2')
+
+  cd msgpack-python-$pkgver
+  python2 setup.py build --build-lib=build/python2 \
+   install --root=$pkgdir --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-05 19:45:56 UTC (rev 110721)
+++ community-x86_64/PKGBUILD   2014-05-05 21:10:57 UTC (rev 110722)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer
-
-pkgbase=python-msgpack
-pkgname=('python-msgpack' 'python2-msgpack')
-pkgver=0.4.1
-pkgrel=2
-arch=('i686' 'x86_64')

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

2014-05-05 Thread Sébastien Luttringer
Date: Monday, May 5, 2014 @ 23:23:54
  Author: seblu
Revision: 110723

upgpkg: rxvt-unicode 9.20-1

Modified:
  rxvt-unicode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 21:10:57 UTC (rev 110722)
+++ PKGBUILD2014-05-05 21:23:54 UTC (rev 110723)
@@ -6,7 +6,7 @@
 
 pkgbase=rxvt-unicode
 pkgname=('rxvt-unicode' 'rxvt-unicode-terminfo')
-pkgver=9.19
+pkgver=9.20
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://software.schmorp.de/pkg/rxvt-unicode.html'
@@ -18,7 +18,7 @@
   'urxvtc.desktop'
   'urxvt-tabbed.desktop'
 )
-md5sums=('45ad197eb9b5a840c0f65e3a8131921c'
+md5sums=('4a5b823f08d21036f94a6c51e94d025b'
  'fec94dc986fa37ec380079d81de3e0b2'
  'fac55f0a8404c86dad3e702146762332'
  '8a5599197568c63720e282b9722a7990')



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

2014-05-05 Thread Sébastien Luttringer
Date: Monday, May 5, 2014 @ 23:25:11
  Author: seblu
Revision: 110724

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

Added:
  rxvt-unicode/repos/community-i686/PKGBUILD
(from rev 110723, rxvt-unicode/trunk/PKGBUILD)
  rxvt-unicode/repos/community-i686/urxvt-tabbed.desktop
(from rev 110723, rxvt-unicode/trunk/urxvt-tabbed.desktop)
  rxvt-unicode/repos/community-i686/urxvt.desktop
(from rev 110723, rxvt-unicode/trunk/urxvt.desktop)
  rxvt-unicode/repos/community-i686/urxvtc.desktop
(from rev 110723, rxvt-unicode/trunk/urxvtc.desktop)
  rxvt-unicode/repos/community-x86_64/PKGBUILD
(from rev 110723, rxvt-unicode/trunk/PKGBUILD)
  rxvt-unicode/repos/community-x86_64/urxvt-tabbed.desktop
(from rev 110723, rxvt-unicode/trunk/urxvt-tabbed.desktop)
  rxvt-unicode/repos/community-x86_64/urxvt.desktop
(from rev 110723, rxvt-unicode/trunk/urxvt.desktop)
  rxvt-unicode/repos/community-x86_64/urxvtc.desktop
(from rev 110723, rxvt-unicode/trunk/urxvtc.desktop)
Deleted:
  rxvt-unicode/repos/community-i686/PKGBUILD
  rxvt-unicode/repos/community-i686/urxvt-tabbed.desktop
  rxvt-unicode/repos/community-i686/urxvt.desktop
  rxvt-unicode/repos/community-i686/urxvtc.desktop
  rxvt-unicode/repos/community-x86_64/PKGBUILD
  rxvt-unicode/repos/community-x86_64/urxvt-tabbed.desktop
  rxvt-unicode/repos/community-x86_64/urxvt.desktop
  rxvt-unicode/repos/community-x86_64/urxvtc.desktop

---+
 /PKGBUILD |  172 
 /urxvt-tabbed.desktop |   18 +++
 /urxvt.desktop|   18 +++
 /urxvtc.desktop   |   18 +++
 community-i686/PKGBUILD   |   86 
 community-i686/urxvt-tabbed.desktop   |9 -
 community-i686/urxvt.desktop  |9 -
 community-i686/urxvtc.desktop |9 -
 community-x86_64/PKGBUILD |   86 
 community-x86_64/urxvt-tabbed.desktop |9 -
 community-x86_64/urxvt.desktop|9 -
 community-x86_64/urxvtc.desktop   |9 -
 12 files changed, 226 insertions(+), 226 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 21:23:54 UTC (rev 110723)
+++ community-i686/PKGBUILD 2014-05-05 21:25:11 UTC (rev 110724)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: tobias tob...@archlinux.org
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-
-pkgbase=rxvt-unicode
-pkgname=('rxvt-unicode' 'rxvt-unicode-terminfo')
-pkgver=9.19
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://software.schmorp.de/pkg/rxvt-unicode.html'
-license=('GPL')
-makedepends=('libxft' 'perl' 'startup-notification')
-source=(
-  http://dist.schmorp.de/rxvt-unicode/$pkgname-$pkgver.tar.bz2;
-  'urxvt.desktop'
-  'urxvtc.desktop'
-  'urxvt-tabbed.desktop'
-)
-md5sums=('45ad197eb9b5a840c0f65e3a8131921c'
- 'fec94dc986fa37ec380079d81de3e0b2'
- 'fac55f0a8404c86dad3e702146762332'
- '8a5599197568c63720e282b9722a7990')
-
-build() {
-  cd $pkgname-$pkgver
-  # we disable smart-resize (FS#34807)
-  ./configure \
---prefix=/usr \
---with-terminfo=/usr/share/terminfo \
---enable-256-color \
---enable-combining \
---enable-fading \
---enable-font-styles \
---enable-iso14755 \
---enable-keepscrolling \
---enable-lastlog \
---enable-mousewheel \
---enable-next-scroll \
---enable-perl \
---enable-pointer-blank \
---enable-rxvt-scroll \
---enable-selectionscrolling \
---enable-slipwheeling \
---disable-smart-resize \
---enable-startup-notification \
---enable-transparency \
---enable-unicode3 \
---enable-utmp \
---enable-wtmp \
---enable-xft \
---enable-xim \
---enable-xterm-scroll \
---disable-pixbuf \
---disable-frills
-  make
-}
-
-package_rxvt-unicode() {
-  pkgdesc='An unicode enabled rxvt-clone terminal emulator (urxvt)'
-  depends=('rxvt-unicode-terminfo' 'libxft' 'perl' 'startup-notification')
-  optdepends=('gtk2-perl: to use the urxvt-tabbed')
-
-  # install freedesktop menu
-  for _f in urxvt urxvtc urxvt-tabbed; do
-install -Dm644 $_f.desktop $pkgdir/usr/share/applications/$_f.desktop
-  done
-  cd $pkgname-$pkgver
-  # workaround terminfo installation
-  export TERMINFO=$srcdir/terminfo
-  install -d $TERMINFO
-  make DESTDIR=$pkgdir install
-  # install the tabbing wrapper ( requires gtk2-perl! )
-  sed -i 's/\rxvt\/urxvt/' doc/rxvt-tabbed
-  install -Dm 755 doc/rxvt-tabbed $pkgdir/usr/bin/urxvt-tabbed
-}
-
-package_rxvt-unicode-terminfo() {
-  pkgdesc='Terminfo files for urxvt'
-  conflict=('rxvt-unicode=9.18-6')
-  install -dm 755 $pkgdir/usr/share/
-  mv terminfo $pkgdir/usr/share/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: 

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

2014-05-05 Thread Sébastien Luttringer
Date: Monday, May 5, 2014 @ 23:29:44
  Author: seblu
Revision: 110725

upgpkg: salt 2014.1.4-1

Modified:
  salt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 21:25:11 UTC (rev 110724)
+++ PKGBUILD2014-05-05 21:29:44 UTC (rev 110725)
@@ -4,7 +4,7 @@
 # Contibutor: Christer Edwards christer.edwa...@gmail.com
 
 pkgname=salt
-pkgver=2014.1.3
+pkgver=2014.1.4
 pkgrel=1
 pkgdesc='Central system and configuration manager'
 arch=('any')
@@ -27,7 +27,7 @@
 'etc/salt/minion')
 install=salt.install
 source=(http://pypi.python.org/packages/source/s/salt/salt-$pkgver.tar.gz;)
-md5sums=('e9d0e19b6a326f99c210f86ae72a7c3d')
+md5sums=('3a34a45c34e29e83572977d72258fc37')
 
 package() {
   cd $pkgname-$pkgver



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

2014-05-05 Thread Sébastien Luttringer
Date: Monday, May 5, 2014 @ 23:30:18
  Author: seblu
Revision: 110726

archrelease: copy trunk to community-testing-any

Added:
  salt/repos/community-testing-any/
  salt/repos/community-testing-any/PKGBUILD
(from rev 110725, salt/trunk/PKGBUILD)
  salt/repos/community-testing-any/salt.install
(from rev 110725, salt/trunk/salt.install)

--+
 PKGBUILD |   47 +++
 salt.install |   15 +++
 2 files changed, 62 insertions(+)

Copied: salt/repos/community-testing-any/PKGBUILD (from rev 110725, 
salt/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2014-05-05 21:30:18 UTC (rev 110726)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contibutor: Christer Edwards christer.edwa...@gmail.com
+
+pkgname=salt
+pkgver=2014.1.4
+pkgrel=1
+pkgdesc='Central system and configuration manager'
+arch=('any')
+url='http://saltstack.org/'
+license=('Apache')
+depends=('python2'
+ 'python2-crypto'
+ 'python2-jinja'
+ 'python2-m2crypto'
+ 'python2-msgpack'
+ 'python2-psutil'
+ 'python2-pyzmq'
+ 'python2-systemd'
+ 'python2-requests'
+ 'python2-yaml'
+ 'apache-libcloud'
+ 'sshpass')
+optdepends=('dmidecode: decode SMBIOS/DMI tables')
+backup=('etc/salt/master'
+'etc/salt/minion')
+install=salt.install
+source=(http://pypi.python.org/packages/source/s/salt/salt-$pkgver.tar.gz;)
+md5sums=('3a34a45c34e29e83572977d72258fc37')
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root=$pkgdir --optimize=1 \
+--salt-pidfile-dir=/run/salt
+
+  # default config
+  install -Dm644 conf/master $pkgdir/etc/salt/master
+  install -Dm644 conf/minion $pkgdir/etc/salt/minion
+
+  # systemd services
+  for _svc in salt-master.service salt-syndic.service salt-minion.service; do
+install -Dm644 pkg/$_svc $pkgdir/usr/lib/systemd/system/$_svc
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Copied: salt/repos/community-testing-any/salt.install (from rev 110725, 
salt/trunk/salt.install)
===
--- community-testing-any/salt.install  (rev 0)
+++ community-testing-any/salt.install  2014-05-05 21:30:18 UTC (rev 110726)
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if [ $(vercmp $2 2014.1.1-1) -le 0 ]; then
+cat  EOF
+== Since version 2014.1.1-2, salt-master runs by default as root user.
+== You need to manually update your configuration and remove the salt user and
+== group to follow the new default behavior.
+EOF
+fi
+}
+
+# vim:set ts=2 sw=2 ft=sh et:



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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 00:05:29
  Author: seblu
Revision: 110727

upgpkg: python-psutil 2.1.1-1

Modified:
  python-psutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 21:30:18 UTC (rev 110726)
+++ PKGBUILD2014-05-05 22:05:29 UTC (rev 110727)
@@ -3,7 +3,7 @@
 
 pkgbase=python-psutil
 pkgname=('python-psutil' 'python2-psutil')
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://code.google.com/p/psutil/'
@@ -11,7 +11,7 @@
 makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
 checkdepends=('net-tools' 'procps-ng')
 
source=(https://pypi.python.org/packages/source/p/psutil/psutil-$pkgver.tar.gz;)
-md5sums=('ba1f51f4c8e2c74cba48cef70b8a5bec')
+md5sums=('72a6b15d589fab11f6ca245b775bc3c6')
 
 build() {
   cd psutil-$pkgver
@@ -25,20 +25,20 @@
 sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
 }
 
-#check() {
-#  cd psutil-$pkgver
-#
-#  msg2 python
-#  export PYTHONPATH=$PWD/build/python
-#  #python test/test_psutil.py
-#  python test/test_memory_leaks.py
-#
-#  msg2 python2
-#  export PYTHONPATH=$PWD/build/python2
-#  #python2 test/test_psutil.py
-#  python2 test/test_memory_leaks.py
-#}
+check() {
+  cd psutil-$pkgver
 
+  msg2 python
+  export PYTHONPATH=$PWD/build/python
+  #python test/test_psutil.py
+  python test/test_memory_leaks.py
+
+  msg2 python2
+  export PYTHONPATH=$PWD/build/python2
+  #python2 test/test_psutil.py
+  python2 test/test_memory_leaks.py
+}
+
 package_python-psutil() {
   pkgdesc='A cross-platform process and system utilities module for Python'
   depends=('glibc' 'python')



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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 00:06:27
  Author: seblu
Revision: 110728

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 22:05:29 UTC (rev 110727)
+++ community-i686/PKGBUILD 2014-05-05 22:06:27 UTC (rev 110728)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=python-psutil
-pkgname=('python-psutil' 'python2-psutil')
-pkgver=2.1.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://code.google.com/p/psutil/'
-license=('custom: BSD')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
-checkdepends=('net-tools' 'procps-ng')
-source=(https://pypi.python.org/packages/source/p/psutil/psutil-$pkgver.tar.gz;)
-md5sums=('ba1f51f4c8e2c74cba48cef70b8a5bec')
-
-build() {
-  cd psutil-$pkgver
-
-  msg2 python
-  python setup.py build --build-lib=build/python
-
-  msg2 python2
-  python2 setup.py build --build-lib=build/python2
-  find build/python2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-}
-
-#check() {
-#  cd psutil-$pkgver
-#
-#  msg2 python
-#  export PYTHONPATH=$PWD/build/python
-#  #python test/test_psutil.py
-#  python test/test_memory_leaks.py
-#
-#  msg2 python2
-#  export PYTHONPATH=$PWD/build/python2
-#  #python2 test/test_psutil.py
-#  python2 test/test_memory_leaks.py
-#}
-
-package_python-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python'
-  depends=('glibc' 'python')
-
-  cd psutil-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root=$pkgdir --optimize=1
-  install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python2'
-  depends=('glibc' 'python2')
-
-  cd psutil-$pkgver
-  python2 setup.py build --build-lib=build/python2 \
-   install --root=$pkgdir --optimize=1
-  install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-psutil/repos/community-i686/PKGBUILD (from rev 110727, 
python-psutil/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 22:06:27 UTC (rev 110728)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=2.1.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/psutil/'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng')
+source=(https://pypi.python.org/packages/source/p/psutil/psutil-$pkgver.tar.gz;)
+md5sums=('72a6b15d589fab11f6ca245b775bc3c6')
+
+build() {
+  cd psutil-$pkgver
+
+  msg2 python
+  python setup.py build --build-lib=build/python
+
+  msg2 python2
+  python2 setup.py build --build-lib=build/python2
+  find build/python2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+check() {
+  cd psutil-$pkgver
+
+  msg2 python
+  export PYTHONPATH=$PWD/build/python
+  #python test/test_psutil.py
+  python test/test_memory_leaks.py
+
+  msg2 python2
+  export PYTHONPATH=$PWD/build/python2
+  #python2 test/test_psutil.py
+  python2 test/test_memory_leaks.py
+}
+
+package_python-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python'
+  depends=('glibc' 'python')
+
+  cd psutil-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root=$pkgdir --optimize=1
+  install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python2'
+  depends=('glibc' 'python2')
+
+  cd psutil-$pkgver
+  python2 setup.py build --build-lib=build/python2 \
+   install --root=$pkgdir --optimize=1
+  install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-05 22:05:29 UTC (rev 

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

2014-05-05 Thread Alexander Rødseth
Date: Tuesday, May 6, 2014 @ 00:09:31
  Author: arodseth
Revision: 110729

upgpkg: plan9port 20140306-1

Modified:
  plan9port/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 22:06:27 UTC (rev 110728)
+++ PKGBUILD2014-05-05 22:09:31 UTC (rev 110729)
@@ -5,8 +5,8 @@
 # Contributor: Chris Brannon cmbranno...@gmail.com
 
 pkgname=plan9port
-pkgver=20131024
-pkgrel=4
+pkgver=20140306
+pkgrel=1
 pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems'
 arch=('x86_64' 'i686')
 url='http://swtch.com/plan9port/'
@@ -18,7 +18,7 @@
 options=('!zipman' 'staticlibs')
 source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz;
 'plan9.sh')
-sha256sums=('5cba7856bdb35a96a923120e61d320d424fee1a6f09b7af3e87eb7814a747d4f'
+sha256sums=('cbb826cde693abdaa2051c49e7ebf75119bf2a4791fe3b3229f1ac36a408eaeb'
 '8768c080a8ceb0a52a3f866bd8ffc4b26f9deb97c6877ceea78ec0b316325a6b')
 
 package() {
@@ -46,12 +46,6 @@
   rm -f config install.log install.sum install.txt configure Makefile INSTALL \
 LICENSE
 
-  # The old method for fixing hardcoded paths
-  #for f in `grep -H -r $pkgdir$d/$pkgname | cut -d: -f1`; do
-  #  echo -n \t$f
-  #  [ -e $f ]  sed -i s:$pkgdir$d/$pkgname:$d/$pkgname: $f || true
-  #done
-
   # Fix python scripts
   find $pkgdir -name '*.py' -print0 |xargs -0 \
 sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/python2,' \
@@ -71,7 +65,6 @@
   done
 
   # Once more
-  #grep --null -l -r $pkgdir/usr/local/plan9 | xargs --null sed -i 
s!$pkgdir/usr/local/plan9!${PLAN9}!g
   grep --null -l -r $pkgdir$PLAN9 | xargs --null sed -i 
s!$pkgdir$PLAN9!${PLAN9}!g || true
   grep --null -l -r /build/plan9port/pkg/plan9port/$PLAN9 | xargs --null sed 
-i s!/build/plan9port/pkg/plan9port/$PLAN9!${PLAN9}!g || true
 }



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

2014-05-05 Thread Alexander Rødseth
Date: Tuesday, May 6, 2014 @ 00:09:47
  Author: arodseth
Revision: 110730

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

Added:
  plan9port/repos/community-i686/PKGBUILD
(from rev 110729, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-i686/plan9.install
(from rev 110729, plan9port/trunk/plan9.install)
  plan9port/repos/community-i686/plan9.sh
(from rev 110729, plan9port/trunk/plan9.sh)
  plan9port/repos/community-x86_64/PKGBUILD
(from rev 110729, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-x86_64/plan9.install
(from rev 110729, plan9port/trunk/plan9.install)
  plan9port/repos/community-x86_64/plan9.sh
(from rev 110729, plan9port/trunk/plan9.sh)
Deleted:
  plan9port/repos/community-i686/PKGBUILD
  plan9port/repos/community-i686/plan9.install
  plan9port/repos/community-i686/plan9.sh
  plan9port/repos/community-x86_64/PKGBUILD
  plan9port/repos/community-x86_64/plan9.install
  plan9port/repos/community-x86_64/plan9.sh

+
 /PKGBUILD  |  144 +++
 /plan9.install |   16 
 /plan9.sh  |8 ++
 community-i686/PKGBUILD|   79 -
 community-i686/plan9.install   |8 --
 community-i686/plan9.sh|4 -
 community-x86_64/PKGBUILD  |   79 -
 community-x86_64/plan9.install |8 --
 community-x86_64/plan9.sh  |4 -
 9 files changed, 168 insertions(+), 182 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 22:09:31 UTC (rev 110729)
+++ community-i686/PKGBUILD 2014-05-05 22:09:47 UTC (rev 110730)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: phrakture aaronmgriffin--gmail--com
-# Contributor: Fazlul Shahriar
-# Contributor: Chris Brannon cmbranno...@gmail.com
-
-pkgname=plan9port
-pkgver=20131024
-pkgrel=4
-pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems'
-arch=('x86_64' 'i686')
-url='http://swtch.com/plan9port/'
-license=('custom')
-depends=('xorg-server' 'libxt' 'libxext' 'fuse')
-optdepends=('python2: for the codereview script')
-provides=('plan9')
-install='plan9.install'
-options=('!zipman' 'staticlibs')
-source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz;
-'plan9.sh')
-sha256sums=('5cba7856bdb35a96a923120e61d320d424fee1a6f09b7af3e87eb7814a747d4f'
-'8768c080a8ceb0a52a3f866bd8ffc4b26f9deb97c6877ceea78ec0b316325a6b')
-
-package() {
-  cd $pkgname
-
-  # Try the gentoo way for fixing hardcoded paths
-  PLAN9=/usr/lib/plan9
-  grep --null -l -r '/usr/local/plan9' | xargs --null sed -i 
s!/usr/local/plan9!${PLAN9}!g
-
-  d=usr/lib
-
-  ./INSTALL -b
-  install -Dm755 ../plan9.sh $pkgdir/etc/profile.d/plan9.sh
-  install -d $pkgdir/$d
-  install -d $pkgdir/usr/share/doc/$pkgname
-  cp -r $srcdir/$pkgname $pkgdir/$d/plan9
-  cd $pkgdir/$d/plan9
-  ./INSTALL -c -r $pkgdir/$d/plan9
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # Clean up
-  rm -rf .hg/
-  rm -f .hgignore .hgtags
-  find . -name '.cvsignore' -print0 |xargs -0 rm -f
-  rm -f config install.log install.sum install.txt configure Makefile INSTALL \
-LICENSE
-
-  # The old method for fixing hardcoded paths
-  #for f in `grep -H -r $pkgdir$d/$pkgname | cut -d: -f1`; do
-  #  echo -n \t$f
-  #  [ -e $f ]  sed -i s:$pkgdir$d/$pkgname:$d/$pkgname: $f || true
-  #done
-
-  # Fix python scripts
-  find $pkgdir -name '*.py' -print0 |xargs -0 \
-sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/python2,' \
--e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-
-  # Package text files
-  for i in CHANGES CONTRIBUTORS README TODO; do
-install -m644 $i $pkgdir/usr/share/doc/$pkgname
-rm -f $i
-  done
-
-  # Decompress the plan9 man pages
-  for i in `find $pkgdir/$d/plan9/man -type f`; do
-if [ ${i##*.} = gz ]; then
-  gunzip $i
-fi
-  done
-
-  # Once more
-  #grep --null -l -r $pkgdir/usr/local/plan9 | xargs --null sed -i 
s!$pkgdir/usr/local/plan9!${PLAN9}!g
-  grep --null -l -r $pkgdir$PLAN9 | xargs --null sed -i 
s!$pkgdir$PLAN9!${PLAN9}!g || true
-  grep --null -l -r /build/plan9port/pkg/plan9port/$PLAN9 | xargs --null sed 
-i s!/build/plan9port/pkg/plan9port/$PLAN9!${PLAN9}!g || true
-}
-
-# vim:set ts=2 sw=2 et:

Copied: plan9port/repos/community-i686/PKGBUILD (from rev 110729, 
plan9port/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 22:09:47 UTC (rev 110730)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: phrakture aaronmgriffin--gmail--com
+# Contributor: Fazlul Shahriar
+# Contributor: Chris Brannon cmbranno...@gmail.com
+
+pkgname=plan9port
+pkgver=20140306

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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 00:11:02
  Author: seblu
Revision: 110731

upgpkg: lz4 117-1

Modified:
  lz4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 22:09:47 UTC (rev 110730)
+++ PKGBUILD2014-05-05 22:11:02 UTC (rev 110731)
@@ -5,7 +5,7 @@
 # He only push tested release code into svn and support using revision as 
version
 
 pkgname=lz4
-pkgver=116
+pkgver=117
 pkgrel=1
 pkgdesc='Very fast lossless compression algorithm'
 arch=('i686' 'x86_64')



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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 00:12:01
  Author: seblu
Revision: 110732

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 22:11:02 UTC (rev 110731)
+++ community-i686/PKGBUILD 2014-05-05 22:12:01 UTC (rev 110732)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-# Contacted by mail, author use svn commit as release version.
-# He only push tested release code into svn and support using revision as 
version
-
-pkgname=lz4
-pkgver=116
-pkgrel=1
-pkgdesc='Very fast lossless compression algorithm'
-arch=('i686' 'x86_64')
-url='https://code.google.com/p/lz4/'
-license=('GPL2')
-makedepends=('svn')
-checkdepends=('diffutils')
-depends=('glibc')
-source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  make
-}
-
-check() {
-  $pkgname/programs/lz4 /etc/passwd passwd.lz4
-  $pkgname/programs/lz4 -d passwd.lz4 passwd
-  diff -q /etc/passwd passwd
-  rm passwd
-}
-
-package() {
-  cd $pkgname
-  make install DESTDIR=$pkgdir
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lz4/repos/community-i686/PKGBUILD (from rev 110731, lz4/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-05 22:12:01 UTC (rev 110732)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+# Contacted by mail, author use svn commit as release version.
+# He only push tested release code into svn and support using revision as 
version
+
+pkgname=lz4
+pkgver=117
+pkgrel=1
+pkgdesc='Very fast lossless compression algorithm'
+arch=('i686' 'x86_64')
+url='https://code.google.com/p/lz4/'
+license=('GPL2')
+makedepends=('svn')
+checkdepends=('diffutils')
+depends=('glibc')
+source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+  make
+}
+
+check() {
+  $pkgname/programs/lz4 /etc/passwd passwd.lz4
+  $pkgname/programs/lz4 -d passwd.lz4 passwd
+  diff -q /etc/passwd passwd
+  rm passwd
+}
+
+package() {
+  cd $pkgname
+  make install DESTDIR=$pkgdir
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-05 22:11:02 UTC (rev 110731)
+++ community-x86_64/PKGBUILD   2014-05-05 22:12:01 UTC (rev 110732)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-# Contacted by mail, author use svn commit as release version.
-# He only push tested release code into svn and support using revision as 
version
-
-pkgname=lz4
-pkgver=116
-pkgrel=1
-pkgdesc='Very fast lossless compression algorithm'
-arch=('i686' 'x86_64')
-url='https://code.google.com/p/lz4/'
-license=('GPL2')
-makedepends=('svn')
-checkdepends=('diffutils')
-depends=('glibc')
-source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  make
-}
-
-check() {
-  $pkgname/programs/lz4 /etc/passwd passwd.lz4
-  $pkgname/programs/lz4 -d passwd.lz4 passwd
-  diff -q /etc/passwd passwd
-  rm passwd
-}
-
-package() {
-  cd $pkgname
-  make install DESTDIR=$pkgdir
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lz4/repos/community-x86_64/PKGBUILD (from rev 110731, 
lz4/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-05 22:12:01 UTC (rev 110732)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+# Contacted by mail, author use svn commit as release version.
+# He only push tested release code into svn and support using revision as 
version
+
+pkgname=lz4
+pkgver=117
+pkgrel=1
+pkgdesc='Very fast lossless compression algorithm'
+arch=('i686' 'x86_64')
+url='https://code.google.com/p/lz4/'
+license=('GPL2')
+makedepends=('svn')
+checkdepends=('diffutils')
+depends=('glibc')
+source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+  make
+}
+
+check() {
+  $pkgname/programs/lz4 /etc/passwd passwd.lz4
+  $pkgname/programs/lz4 -d passwd.lz4 passwd
+  diff -q /etc/passwd passwd
+  rm passwd
+}
+
+package() {
+  cd $pkgname
+  make install DESTDIR=$pkgdir
+}

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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 00:29:59
  Author: seblu
Revision: 110733

upgpkg: bind 9.10.0-1

Modified:
  bind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 22:12:01 UTC (rev 110732)
+++ PKGBUILD2014-05-05 22:29:59 UTC (rev 110733)
@@ -5,9 +5,9 @@
 # Contributor: Mario Vazquez mario_v...@hotmail.com
 
 pkgname=bind
-_pkgver=9.9.5-W1
-pkgver=${_pkgver//-/.}
-pkgrel=2
+_pkgver=9.10.0
+pkgver=9.10.0
+pkgrel=1
 pkgdesc='The ISC BIND nameserver'
 url='http://www.isc.org/software/bind/'
 license=('custom:ISC')
@@ -26,7 +26,7 @@
 'named.logrotate'
 'localhost.zone'
 '127.0.0.zone')
-sha1sums=('bc2b62ef31231c75b4aa8256f7bbd2ae3c1c6cd5'
+sha1sums=('75776823efc5fa6fed1618030854b6a265694abd'
   'SKIP'
   '029f89c49550c40ec7a95116b6a33f0e5a041094'
   'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11'



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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 00:31:07
  Author: seblu
Revision: 110734

upgpkg: mailman 2.1.18-1

Modified:
  mailman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 22:29:59 UTC (rev 110733)
+++ PKGBUILD2014-05-05 22:31:07 UTC (rev 110734)
@@ -3,13 +3,13 @@
 # Contributor: Paul Mattal p...@archlinux.org
 
 pkgname=mailman
-pkgver=2.1.17
+pkgver=2.1.18
 pkgrel=1
 pkgdesc='The GNU Mailing List Manager'
 arch=(i686 x86_64)
 license=('GPL')
 url='http://www.list.org/'
-depends=('glibc' 'python2' 'smtp-server')
+depends=('glibc' 'python2' 'smtp-server' 'python2-dnspython')
 # we need to have the mailman user to build mailman
 makedepends=('mailman')
 # 'Defaults.py' should not be changed by users; 'mm_cfg.py' should instead.
@@ -20,7 +20,7 @@
 $pkgname.profile.sh
 $pkgname.profile.csh
 $pkgname.service)
-md5sums=('39043257f91eb876082fa90470aa8d28'
+md5sums=('02ce493711248e1d3723356188446d9f'
  'ed04d062379eb21e39ce1e70e6b1ade2'
  'a9c71ec940c56173415fbd49087d10b0'
  '85a8c30ffc444e677b286f54df530482'



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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 00:32:51
  Author: seblu
Revision: 110735

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

Added:
  mailman/repos/community-testing-i686/
  mailman/repos/community-testing-i686/PKGBUILD
(from rev 110734, mailman/trunk/PKGBUILD)
  mailman/repos/community-testing-i686/mailman-2.1-build.patch
(from rev 110734, mailman/trunk/mailman-2.1-build.patch)
  mailman/repos/community-testing-i686/mailman.install
(from rev 110734, mailman/trunk/mailman.install)
  mailman/repos/community-testing-i686/mailman.profile.csh
(from rev 110734, mailman/trunk/mailman.profile.csh)
  mailman/repos/community-testing-i686/mailman.profile.sh
(from rev 110734, mailman/trunk/mailman.profile.sh)
  mailman/repos/community-testing-i686/mailman.service
(from rev 110734, mailman/trunk/mailman.service)
  mailman/repos/community-testing-x86_64/
  mailman/repos/community-testing-x86_64/PKGBUILD
(from rev 110734, mailman/trunk/PKGBUILD)
  mailman/repos/community-testing-x86_64/mailman-2.1-build.patch
(from rev 110734, mailman/trunk/mailman-2.1-build.patch)
  mailman/repos/community-testing-x86_64/mailman.install
(from rev 110734, mailman/trunk/mailman.install)
  mailman/repos/community-testing-x86_64/mailman.profile.csh
(from rev 110734, mailman/trunk/mailman.profile.csh)
  mailman/repos/community-testing-x86_64/mailman.profile.sh
(from rev 110734, mailman/trunk/mailman.profile.sh)
  mailman/repos/community-testing-x86_64/mailman.service
(from rev 110734, mailman/trunk/mailman.service)

--+
 community-testing-i686/PKGBUILD  |   82 ++
 community-testing-i686/mailman-2.1-build.patch   |  694 +
 community-testing-i686/mailman.install   |   30 
 community-testing-i686/mailman.profile.csh   |1 
 community-testing-i686/mailman.profile.sh|3 
 community-testing-i686/mailman.service   |   13 
 community-testing-x86_64/PKGBUILD|   82 ++
 community-testing-x86_64/mailman-2.1-build.patch |  694 +
 community-testing-x86_64/mailman.install |   30 
 community-testing-x86_64/mailman.profile.csh |1 
 community-testing-x86_64/mailman.profile.sh  |3 
 community-testing-x86_64/mailman.service |   13 
 12 files changed, 1646 insertions(+)

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


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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 00:46:18
  Author: seblu
Revision: 110736

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

Added:
  bind/repos/community-testing-i686/
  bind/repos/community-testing-i686/127.0.0.zone
(from rev 110733, bind/trunk/127.0.0.zone)
  bind/repos/community-testing-i686/PKGBUILD
(from rev 110733, bind/trunk/PKGBUILD)
  bind/repos/community-testing-i686/bind.install
(from rev 110733, bind/trunk/bind.install)
  bind/repos/community-testing-i686/localhost.zone
(from rev 110733, bind/trunk/localhost.zone)
  bind/repos/community-testing-i686/named.conf
(from rev 110733, bind/trunk/named.conf)
  bind/repos/community-testing-i686/named.logrotate
(from rev 110733, bind/trunk/named.logrotate)
  bind/repos/community-testing-i686/named.service
(from rev 110733, bind/trunk/named.service)
  bind/repos/community-testing-i686/tmpfiles.d
(from rev 110733, bind/trunk/tmpfiles.d)
  bind/repos/community-testing-x86_64/
  bind/repos/community-testing-x86_64/127.0.0.zone
(from rev 110733, bind/trunk/127.0.0.zone)
  bind/repos/community-testing-x86_64/PKGBUILD
(from rev 110733, bind/trunk/PKGBUILD)
  bind/repos/community-testing-x86_64/bind.install
(from rev 110734, bind/trunk/bind.install)
  bind/repos/community-testing-x86_64/localhost.zone
(from rev 110734, bind/trunk/localhost.zone)
  bind/repos/community-testing-x86_64/named.conf
(from rev 110734, bind/trunk/named.conf)
  bind/repos/community-testing-x86_64/named.logrotate
(from rev 110734, bind/trunk/named.logrotate)
  bind/repos/community-testing-x86_64/named.service
(from rev 110734, bind/trunk/named.service)
  bind/repos/community-testing-x86_64/tmpfiles.d
(from rev 110734, bind/trunk/tmpfiles.d)

--+
 community-testing-i686/127.0.0.zone  |   11 +++
 community-testing-i686/PKGBUILD  |   81 +
 community-testing-i686/bind.install  |   23 
 community-testing-i686/localhost.zone|   10 +++
 community-testing-i686/named.conf|   64 ++
 community-testing-i686/named.logrotate   |6 ++
 community-testing-i686/named.service |   11 +++
 community-testing-i686/tmpfiles.d|1 
 community-testing-x86_64/127.0.0.zone|   11 +++
 community-testing-x86_64/PKGBUILD|   81 +
 community-testing-x86_64/bind.install|   23 
 community-testing-x86_64/localhost.zone  |   10 +++
 community-testing-x86_64/named.conf  |   64 ++
 community-testing-x86_64/named.logrotate |6 ++
 community-testing-x86_64/named.service   |   11 +++
 community-testing-x86_64/tmpfiles.d  |1 
 16 files changed, 414 insertions(+)

Copied: bind/repos/community-testing-i686/127.0.0.zone (from rev 110733, 
bind/trunk/127.0.0.zone)
===
--- community-testing-i686/127.0.0.zone (rev 0)
+++ community-testing-i686/127.0.0.zone 2014-05-05 22:46:18 UTC (rev 110736)
@@ -0,0 +1,11 @@
+$ORIGIN 0.0.127.in-addr.arpa.
+
+@  1D IN SOA   localhost. root.localhost. (
+   42  ; serial (mmdd##)
+   3H  ; refresh
+   15M ; retry
+   1W  ; expiry
+   1D ); minimum ttl
+
+   1D IN NSlocalhost.
+1  1D IN PTR   localhost.

Copied: bind/repos/community-testing-i686/PKGBUILD (from rev 110733, 
bind/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-05-05 22:46:18 UTC (rev 110736)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+# Contributor: Mario Vazquez mario_v...@hotmail.com
+
+pkgname=bind
+_pkgver=9.10.0
+pkgver=9.10.0
+pkgrel=1
+pkgdesc='The ISC BIND nameserver'
+url='http://www.isc.org/software/bind/'
+license=('custom:ISC')
+arch=('i686' 'x86_64')
+options=('!makeflags')
+depends=('openssl' 'krb5' 'libxml2')
+provides=('dns-server')
+backup=('etc/logrotate.d/named'
+'etc/named.conf')
+install=$pkgname.install
+source=(http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz{,.asc}
+'root.hint::http://www.internic.net/zones/named.root'
+'tmpfiles.d'
+'named.conf'
+'named.service'
+'named.logrotate'
+'localhost.zone'
+'127.0.0.zone')
+sha1sums=('75776823efc5fa6fed1618030854b6a265694abd'
+  'SKIP'
+  '029f89c49550c40ec7a95116b6a33f0e5a041094'
+  

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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 01:38:13
  Author: seblu
Revision: 110737

upgpkg: znc 1.2-3

- fix FS#39854

Added:
  znc/trunk/01-sec-correctly-handle-channel-names.patch
Modified:
  znc/trunk/PKGBUILD

-+
 01-sec-correctly-handle-channel-names.patch |   72 ++
 PKGBUILD|   12 +++-
 2 files changed, 81 insertions(+), 3 deletions(-)

Added: 01-sec-correctly-handle-channel-names.patch
===
--- 01-sec-correctly-handle-channel-names.patch (rev 0)
+++ 01-sec-correctly-handle-channel-names.patch 2014-05-05 23:38:13 UTC (rev 
110737)
@@ -0,0 +1,72 @@
+From 8756be513ab6663dcd64087006b257ff34e8e487 Mon Sep 17 00:00:00 2001
+From: Uli Schlachter psyc...@znc.in
+Date: Sun, 13 Apr 2014 20:36:55 +0200
+Subject: [PATCH] webadmin/add channel: Correctly handle channel names
+
+The CChan constructor makes sure that the channel name begins with a valid
+channel prefix. Thus, this could change the name of the resulting channel.
+
+When you edited an irc network which already had a channel #foo, were
+connected to IRC (so ZNC knows which prefixes are valid) and added a channel
+foo, this would lead to a problem:
+
+Webadmin checks and sees that there is no channel foo yet. Webadmin creates a
+new CChan instance for foo. The CChan constructor notices that f is not a
+valid channel prefix and instead calls itself #foo. Then,
+CIRCNetwork::AddChan() would see that this channel already exists, delete the
+given channel and return false.
+
+However, webadmin didn't check this result and would continue changing settings
+on an already destroyed CChan instance.
+
+Fix this by checking if the channel exists after CChan had its chance to mess
+with the channel name. Also handle failures from CIRCNetwork::AddChan().
+
+Fixes #528.
+
+Signed-off-by: Uli Schlachter psyc...@znc.in
+(cherry picked from commit 5e6e3be32acfeadeaf1fb3bb17bada08aec6432f)
+---
+ modules/webadmin.cpp | 16 +++-
+ 1 file changed, 11 insertions(+), 5 deletions(-)
+
+diff --git a/modules/webadmin.cpp b/modules/webadmin.cpp
+index ec67508..2a03367 100644
+--- a/modules/webadmin.cpp
 b/modules/webadmin.cpp
+@@ -667,13 +667,19 @@ class CWebAdminMod : public CModule {
+   return true;
+   }
+ 
+-  if (pNetwork-FindChan(sChanName.Token(0))) {
+-  WebSock.PrintErrorPage(Channel [ + 
sChanName.Token(0) + ] already exists);
++  // This could change the channel name and e.g. add a 
# prefix
++  pChan = new CChan(sChanName, pNetwork, true);
++
++  if (pNetwork-FindChan(pChan-GetName())) {
++  WebSock.PrintErrorPage(Channel [ + 
pChan-GetName() + ] already exists);
++  delete pChan;
+   return true;
+   }
+ 
+-  pChan = new CChan(sChanName, pNetwork, true);
+-  pNetwork-AddChan(pChan);
++  if (!pNetwork-AddChan(pChan)) {
++  WebSock.PrintErrorPage(Could not add channel 
[ + pChan-GetName() + ]);
++  return true;
++  }
+   }
+ 
+   pChan-SetBufferCount(WebSock.GetParam(buffercount).ToUInt(), 
spSession-IsAdmin());
+@@ -699,7 +705,7 @@ class CWebAdminMod : public CModule {
+ 
+   CTemplate TmplMod;
+   TmplMod[User] = pUser-GetUserName();
+-  TmplMod[ChanName] = sChanName;
++  TmplMod[ChanName] = pChan-GetName();
+   TmplMod[WebadminAction] = change;
+   FOR_EACH_MODULE(it, pNetwork) {
+   (*it)-OnEmbeddedWebRequest(WebSock, 
webadmin/channel, TmplMod);
+-- 
+1.9.1
+

Modified: PKGBUILD
===
--- PKGBUILD2014-05-05 22:46:18 UTC (rev 110736)
+++ PKGBUILD2014-05-05 23:38:13 UTC (rev 110737)
@@ -5,7 +5,7 @@
 
 pkgname=znc
 pkgver=1.2
-pkgrel=2
+pkgrel=3
 pkgdesc='An IRC bouncer with modules  scripts support'
 url='http://en.znc.in/wiki/index.php/ZNC'
 license=('GPL2')
@@ -17,9 +17,15 @@
 'perl: modperl module'
 'cyrus-sasl: saslauth module')
 install=$pkgname.install
-source=(http://znc.in/releases/$pkgname-$pkgver.tar.gz;)
-md5sums=('ef18e5402a82cc3fcab5c2ac5c2e6f3b')
+source=(http://znc.in/releases/$pkgname-$pkgver.tar.gz;
+'01-sec-correctly-handle-channel-names.patch')
+md5sums=('ef18e5402a82cc3fcab5c2ac5c2e6f3b'
+ 'SKIP')
 
+prepare() {
+  patch -p1 -d $pkgname-$pkgver  01-sec-correctly-handle-channel-names.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr \



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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 01:39:14
  Author: seblu
Revision: 110738

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

Added:
  znc/repos/community-i686/01-sec-correctly-handle-channel-names.patch
(from rev 110737, znc/trunk/01-sec-correctly-handle-channel-names.patch)
  znc/repos/community-i686/PKGBUILD
(from rev 110737, znc/trunk/PKGBUILD)
  znc/repos/community-i686/znc.install
(from rev 110737, znc/trunk/znc.install)
  znc/repos/community-x86_64/01-sec-correctly-handle-channel-names.patch
(from rev 110737, znc/trunk/01-sec-correctly-handle-channel-names.patch)
  znc/repos/community-x86_64/PKGBUILD
(from rev 110737, znc/trunk/PKGBUILD)
  znc/repos/community-x86_64/znc.install
(from rev 110737, znc/trunk/znc.install)
Deleted:
  znc/repos/community-i686/PKGBUILD
  znc/repos/community-i686/znc.install
  znc/repos/community-x86_64/PKGBUILD
  znc/repos/community-x86_64/znc.install

--+
 /PKGBUILD|   90 ++
 /znc.install |   58 ++
 community-i686/01-sec-correctly-handle-channel-names.patch   |   72 
 community-i686/PKGBUILD  |   39 
 community-i686/znc.install   |   29 ---
 community-x86_64/01-sec-correctly-handle-channel-names.patch |   72 
 community-x86_64/PKGBUILD|   39 
 community-x86_64/znc.install |   29 ---
 8 files changed, 292 insertions(+), 136 deletions(-)

Copied: znc/repos/community-i686/01-sec-correctly-handle-channel-names.patch 
(from rev 110737, znc/trunk/01-sec-correctly-handle-channel-names.patch)
===
--- community-i686/01-sec-correctly-handle-channel-names.patch  
(rev 0)
+++ community-i686/01-sec-correctly-handle-channel-names.patch  2014-05-05 
23:39:14 UTC (rev 110738)
@@ -0,0 +1,72 @@
+From 8756be513ab6663dcd64087006b257ff34e8e487 Mon Sep 17 00:00:00 2001
+From: Uli Schlachter psyc...@znc.in
+Date: Sun, 13 Apr 2014 20:36:55 +0200
+Subject: [PATCH] webadmin/add channel: Correctly handle channel names
+
+The CChan constructor makes sure that the channel name begins with a valid
+channel prefix. Thus, this could change the name of the resulting channel.
+
+When you edited an irc network which already had a channel #foo, were
+connected to IRC (so ZNC knows which prefixes are valid) and added a channel
+foo, this would lead to a problem:
+
+Webadmin checks and sees that there is no channel foo yet. Webadmin creates a
+new CChan instance for foo. The CChan constructor notices that f is not a
+valid channel prefix and instead calls itself #foo. Then,
+CIRCNetwork::AddChan() would see that this channel already exists, delete the
+given channel and return false.
+
+However, webadmin didn't check this result and would continue changing settings
+on an already destroyed CChan instance.
+
+Fix this by checking if the channel exists after CChan had its chance to mess
+with the channel name. Also handle failures from CIRCNetwork::AddChan().
+
+Fixes #528.
+
+Signed-off-by: Uli Schlachter psyc...@znc.in
+(cherry picked from commit 5e6e3be32acfeadeaf1fb3bb17bada08aec6432f)
+---
+ modules/webadmin.cpp | 16 +++-
+ 1 file changed, 11 insertions(+), 5 deletions(-)
+
+diff --git a/modules/webadmin.cpp b/modules/webadmin.cpp
+index ec67508..2a03367 100644
+--- a/modules/webadmin.cpp
 b/modules/webadmin.cpp
+@@ -667,13 +667,19 @@ class CWebAdminMod : public CModule {
+   return true;
+   }
+ 
+-  if (pNetwork-FindChan(sChanName.Token(0))) {
+-  WebSock.PrintErrorPage(Channel [ + 
sChanName.Token(0) + ] already exists);
++  // This could change the channel name and e.g. add a 
# prefix
++  pChan = new CChan(sChanName, pNetwork, true);
++
++  if (pNetwork-FindChan(pChan-GetName())) {
++  WebSock.PrintErrorPage(Channel [ + 
pChan-GetName() + ] already exists);
++  delete pChan;
+   return true;
+   }
+ 
+-  pChan = new CChan(sChanName, pNetwork, true);
+-  pNetwork-AddChan(pChan);
++  if (!pNetwork-AddChan(pChan)) {
++  WebSock.PrintErrorPage(Could not add channel 
[ + pChan-GetName() + ]);
++  return true;
++  }
+   }
+ 
+   pChan-SetBufferCount(WebSock.GetParam(buffercount).ToUInt(), 
spSession-IsAdmin());
+@@ -699,7 +705,7 @@ class CWebAdminMod : public CModule {
+ 
+   CTemplate TmplMod;
+   

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

2014-05-05 Thread Sébastien Luttringer
Date: Tuesday, May 6, 2014 @ 01:41:42
  Author: seblu
Revision: 110739

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

Deleted:
  znc/repos/community-i686/PKGBUILD
  znc/repos/community-i686/znc.install
  znc/repos/community-x86_64/PKGBUILD
  znc/repos/community-x86_64/znc.install

--+
 community-i686/PKGBUILD  |   45 -
 community-i686/znc.install   |   29 --
 community-x86_64/PKGBUILD|   45 -
 community-x86_64/znc.install |   29 --
 4 files changed, 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-05 23:39:14 UTC (rev 110738)
+++ community-i686/PKGBUILD 2014-05-05 23:41:42 UTC (rev 110739)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: mickael9 mickael9 at gmail dot com
-
-pkgname=znc
-pkgver=1.2
-pkgrel=3
-pkgdesc='An IRC bouncer with modules  scripts support'
-url='http://en.znc.in/wiki/index.php/ZNC'
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('libsasl')
-makedepends=('tcl' 'python' 'perl')
-optdepends=('tcl: modtcl module'
-'python: modpython module'
-'perl: modperl module'
-'cyrus-sasl: saslauth module')
-install=$pkgname.install
-source=(http://znc.in/releases/$pkgname-$pkgver.tar.gz;
-'01-sec-correctly-handle-channel-names.patch')
-md5sums=('ef18e5402a82cc3fcab5c2ac5c2e6f3b'
- 'SKIP')
-
-prepare() {
-  patch -p1 -d $pkgname-$pkgver  01-sec-correctly-handle-channel-names.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---enable-cyrus \
---enable-python \
---enable-perl \
---enable-tcl \
---with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: community-i686/znc.install
===
--- community-i686/znc.install  2014-05-05 23:39:14 UTC (rev 110738)
+++ community-i686/znc.install  2014-05-05 23:41:42 UTC (rev 110739)
@@ -1,29 +0,0 @@
-#/bin/sh
-
-# arg 1:  the new package version
-post_install() {
-  getent group znc /dev/null || groupadd -g 136 znc
-  getent passwd znc /dev/null || useradd -r -d /var/lib/znc -u 136 -g 136 znc
-  [ -d /var/lib/znc ] || install -dm 750 -o znc -g znc /var/lib/znc
-  echo == Use 'znc --makeconf' as user znc to generate your first config
-  true
-}
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  if [ `vercmp $2 1.0-4` -lt 0 ]; then
-[ -d /var/lib/znc ] || install -dm 750 -o znc -g znc /var/lib/znc
-usermod -d /var/lib/znc znc 2/dev/null  echo '== znc home directory 
has moved to /var/lib/znc'
-  fi
-  true
-}
-
-# arg 1:  the old package version
-post_remove() {
-  userdel -f znc /dev/null 21
-  groupdel znc /dev/null 21
-  true
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-05 23:39:14 UTC (rev 110738)
+++ community-x86_64/PKGBUILD   2014-05-05 23:41:42 UTC (rev 110739)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: mickael9 mickael9 at gmail dot com
-
-pkgname=znc
-pkgver=1.2
-pkgrel=3
-pkgdesc='An IRC bouncer with modules  scripts support'
-url='http://en.znc.in/wiki/index.php/ZNC'
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('libsasl')
-makedepends=('tcl' 'python' 'perl')
-optdepends=('tcl: modtcl module'
-'python: modpython module'
-'perl: modperl module'
-'cyrus-sasl: saslauth module')
-install=$pkgname.install
-source=(http://znc.in/releases/$pkgname-$pkgver.tar.gz;
-'01-sec-correctly-handle-channel-names.patch')
-md5sums=('ef18e5402a82cc3fcab5c2ac5c2e6f3b'
- 'SKIP')
-
-prepare() {
-  patch -p1 -d $pkgname-$pkgver  01-sec-correctly-handle-channel-names.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---enable-cyrus \
---enable-python \
---enable-perl \
---enable-tcl \
---with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/znc.install
===
--- community-x86_64/znc.install2014-05-05 23:39:14 UTC (rev 110738)
+++ community-x86_64/znc.install2014-05-05 23:41:42 UTC (rev 110739)
@@ -1,29 +0,0 @@
-#/bin/sh
-
-# arg 1:  the new package version
-post_install() {
-  getent group znc /dev/null || groupadd -g 136 znc
-  getent passwd znc /dev/null || 

[arch-commits] Commit in (4 files)

2014-05-05 Thread Felix Yan
Date: Tuesday, May 6, 2014 @ 03:05:04
  Author: fyan
Revision: 110740

addpkg: python-coverage 3.7.1-3

Added:
  python-coverage/
  python-coverage/repos/
  python-coverage/trunk/
  python-coverage/trunk/PKGBUILD

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

Added: python-coverage/trunk/PKGBUILD
===
--- python-coverage/trunk/PKGBUILD  (rev 0)
+++ python-coverage/trunk/PKGBUILD  2014-05-06 01:05:04 UTC (rev 110740)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Clément Démoulins clem...@archivel.fr
+# Contributor: Fazlul Shahriar fshahr...@gmail.com
+
+pkgname=(python-coverage python2-coverage)
+pkgver=3.7.1
+pkgrel=3
+pkgdesc=A tool for measuring code coverage of Python programs
+arch=('i686' 'x86_64')
+url=http://nedbatchelder.com/code/coverage/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-mock' 'python2-mock' 'python-nose' 'python2-nose')
+source=(http://pypi.python.org/packages/source/c/coverage/coverage-$pkgver.tar.gz;)
+md5sums=('c47b36ceb17eaff3ecfab3bcd347d0df')
+
+prepare() {
+  cp -a coverage-$pkgver{,-py2}
+}
+
+build() {
+  cd $srcdir/coverage-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/coverage-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/coverage-$pkgver
+  #python3 igor.py zip_mods install_egg remove_extension
+  #python3 igor.py test_with_tracer py
+  #python3 setup.py --quiet build_ext --inplace
+  #python3 igor.py test_with_tracer c
+}
+
+package_python-coverage() {
+  depends=('python')
+
+  cd coverage-$pkgver
+  python3 setup.py install --root=$pkgdir --optimize=1
+}
+
+package_python2-coverage() {
+  depends=('python2')
+
+  cd coverage-$pkgver
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  mv $pkgdir/usr/bin/coverage $pkgdir/usr/bin/coverage2
+}


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


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

2014-05-05 Thread Felix Yan
Date: Tuesday, May 6, 2014 @ 03:07:19
  Author: fyan
Revision: 110741

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

Added:
  python-coverage/repos/community-i686/
  python-coverage/repos/community-i686/PKGBUILD
(from rev 110740, python-coverage/trunk/PKGBUILD)
  python-coverage/repos/community-x86_64/
  python-coverage/repos/community-x86_64/PKGBUILD
(from rev 110740, python-coverage/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   52 
 community-x86_64/PKGBUILD |   52 
 2 files changed, 104 insertions(+)

Copied: python-coverage/repos/community-i686/PKGBUILD (from rev 110740, 
python-coverage/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-06 01:07:19 UTC (rev 110741)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Clément Démoulins clem...@archivel.fr
+# Contributor: Fazlul Shahriar fshahr...@gmail.com
+
+pkgname=(python-coverage python2-coverage)
+pkgver=3.7.1
+pkgrel=3
+pkgdesc=A tool for measuring code coverage of Python programs
+arch=('i686' 'x86_64')
+url=http://nedbatchelder.com/code/coverage/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-mock' 'python2-mock' 'python-nose' 'python2-nose')
+source=(http://pypi.python.org/packages/source/c/coverage/coverage-$pkgver.tar.gz;)
+md5sums=('c47b36ceb17eaff3ecfab3bcd347d0df')
+
+prepare() {
+  cp -a coverage-$pkgver{,-py2}
+}
+
+build() {
+  cd $srcdir/coverage-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/coverage-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/coverage-$pkgver
+  #python3 igor.py zip_mods install_egg remove_extension
+  #python3 igor.py test_with_tracer py
+  #python3 setup.py --quiet build_ext --inplace
+  #python3 igor.py test_with_tracer c
+}
+
+package_python-coverage() {
+  depends=('python')
+
+  cd coverage-$pkgver
+  python3 setup.py install --root=$pkgdir --optimize=1
+}
+
+package_python2-coverage() {
+  depends=('python2')
+
+  cd coverage-$pkgver
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  mv $pkgdir/usr/bin/coverage $pkgdir/usr/bin/coverage2
+}

Copied: python-coverage/repos/community-x86_64/PKGBUILD (from rev 110740, 
python-coverage/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-06 01:07:19 UTC (rev 110741)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Clément Démoulins clem...@archivel.fr
+# Contributor: Fazlul Shahriar fshahr...@gmail.com
+
+pkgname=(python-coverage python2-coverage)
+pkgver=3.7.1
+pkgrel=3
+pkgdesc=A tool for measuring code coverage of Python programs
+arch=('i686' 'x86_64')
+url=http://nedbatchelder.com/code/coverage/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-mock' 'python2-mock' 'python-nose' 'python2-nose')
+source=(http://pypi.python.org/packages/source/c/coverage/coverage-$pkgver.tar.gz;)
+md5sums=('c47b36ceb17eaff3ecfab3bcd347d0df')
+
+prepare() {
+  cp -a coverage-$pkgver{,-py2}
+}
+
+build() {
+  cd $srcdir/coverage-$pkgver
+  python3 setup.py build
+
+  cd $srcdir/coverage-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/coverage-$pkgver
+  #python3 igor.py zip_mods install_egg remove_extension
+  #python3 igor.py test_with_tracer py
+  #python3 setup.py --quiet build_ext --inplace
+  #python3 igor.py test_with_tracer c
+}
+
+package_python-coverage() {
+  depends=('python')
+
+  cd coverage-$pkgver
+  python3 setup.py install --root=$pkgdir --optimize=1
+}
+
+package_python2-coverage() {
+  depends=('python2')
+
+  cd coverage-$pkgver
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  mv $pkgdir/usr/bin/coverage $pkgdir/usr/bin/coverage2
+}



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

2014-05-05 Thread Daniel Micay
Date: Tuesday, May 6, 2014 @ 03:16:00
  Author: thestinger
Revision: 110742

upgpkg: linux-grsec 3.14.2.201405051841-1

Fixes the upstream CVE-2014-0196 issue.

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-06 01:07:19 UTC (rev 110741)
+++ PKGBUILD2014-05-06 01:16:00 UTC (rev 110742)
@@ -8,7 +8,7 @@
 _srcname=linux-3.14
 _pkgver=3.14.2
 _grsecver=3.0
-_timestamp=201405041244
+_timestamp=201405051841
 _grsec_patch=grsecurity-$_grsecver-$_pkgver-$_timestamp.patch
 pkgver=$_pkgver.$_timestamp
 pkgrel=1
@@ -43,7 +43,7 @@
 )
 md5sums=('b621207b3f6ecbb67db18b13258f8ea8'
  'f2239bf772d1b6e1c26cb03f6e056959'
- '8767f487c45726c696441c81f3918f6e'
+ '886c74ae6a77a7c380f14226fc5f4058'
  'SKIP'
  'bdc21c0e7072b0ce9a0f80140c8f759b'
  'e2ed1a476239147e7e09900bc6e5a3bc'



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

2014-05-05 Thread Daniel Micay
Date: Tuesday, May 6, 2014 @ 03:18:35
  Author: thestinger
Revision: 110743

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

Added:
  
linux-grsec/repos/community-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 110742, 
linux-grsec/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-grsec/repos/community-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 110742, 
linux-grsec/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux-grsec/repos/community-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 110742, 
linux-grsec/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  
linux-grsec/repos/community-i686/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 110742, 
linux-grsec/trunk/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux-grsec/repos/community-i686/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 110742, 
linux-grsec/trunk/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux-grsec/repos/community-i686/0006-genksyms-fix-typeof-handling.patch
(from rev 110742, linux-grsec/trunk/0006-genksyms-fix-typeof-handling.patch)
  
linux-grsec/repos/community-i686/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch
(from rev 110742, 
linux-grsec/trunk/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch)
  
linux-grsec/repos/community-i686/0008-futex-avoid-race-between-requeue-and-wake.patch
(from rev 110742, 
linux-grsec/trunk/0008-futex-avoid-race-between-requeue-and-wake.patch)
  
linux-grsec/repos/community-i686/0009-iwlwifi-mvm-rs-fix-search-cycle-rules.patch
(from rev 110742, 
linux-grsec/trunk/0009-iwlwifi-mvm-rs-fix-search-cycle-rules.patch)
  
linux-grsec/repos/community-i686/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch
(from rev 110742, 
linux-grsec/trunk/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch)
  linux-grsec/repos/community-i686/0011-kernfs-fix-removed-error-check.patch
(from rev 110742, 
linux-grsec/trunk/0011-kernfs-fix-removed-error-check.patch)
  linux-grsec/repos/community-i686/0012-fix-saa7134.patch
(from rev 110742, linux-grsec/trunk/0012-fix-saa7134.patch)
  
linux-grsec/repos/community-i686/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
(from rev 110742, 
linux-grsec/trunk/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch)
  linux-grsec/repos/community-i686/0014-fix-rtl8192se.patch
(from rev 110742, linux-grsec/trunk/0014-fix-rtl8192se.patch)
  linux-grsec/repos/community-i686/0015-fix-xsdt-validation.patch
(from rev 110742, linux-grsec/trunk/0015-fix-xsdt-validation.patch)
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 110742, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 110742, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 110742, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 110742, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 110742, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 110742, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-i686/sysctl.conf
(from rev 110742, linux-grsec/trunk/sysctl.conf)
  
linux-grsec/repos/community-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 110742, 
linux-grsec/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-grsec/repos/community-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 110742, 
linux-grsec/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  
linux-grsec/repos/community-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 110742, 
linux-grsec/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  
linux-grsec/repos/community-x86_64/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 110742, 
linux-grsec/trunk/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux-grsec/repos/community-x86_64/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 110742, 
linux-grsec/trunk/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux-grsec/repos/community-x86_64/0006-genksyms-fix-typeof-handling.patch
(from rev 110742, linux-grsec/trunk/0006-genksyms-fix-typeof-handling.patch)
  
linux-grsec/repos/community-x86_64/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch
(from rev 110742, 
linux-grsec/trunk/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch)
  
linux-grsec/repos/community-x86_64/0008-futex-avoid-race-between-requeue-and-wake.patch
(from rev 110742, 

[arch-commits] Commit in (5 files)

2014-05-05 Thread Felix Yan
Date: Tuesday, May 6, 2014 @ 04:01:50
  Author: fyan
Revision: 110744

addpkg: python-urllib3 1.8-2

Added:
  python-urllib3/
  python-urllib3/repos/
  python-urllib3/trunk/
  python-urllib3/trunk/LICENSE
  python-urllib3/trunk/PKGBUILD

--+
 LICENSE  |   32 +++
 PKGBUILD |   62 +
 2 files changed, 94 insertions(+)

Added: python-urllib3/trunk/LICENSE
===
--- python-urllib3/trunk/LICENSE(rev 0)
+++ python-urllib3/trunk/LICENSE2014-05-06 02:01:50 UTC (rev 110744)
@@ -0,0 +1,32 @@
+Note from the ArchLinux Packager:
+The urllib3 source doesn't come with a license file.  Its homepage
+does provide a link to the text of the MIT license, so I copied
+the following text to a file when building the package.
+
+--CUT--
+Open Source Initiative OSI - The MIT License:Licensing
+
+
+[OSI Approved License]
+
+The MIT License
+
+Copyright (c) year copyright holders
+
+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.

Added: python-urllib3/trunk/PKGBUILD
===
--- python-urllib3/trunk/PKGBUILD   (rev 0)
+++ python-urllib3/trunk/PKGBUILD   2014-05-06 02:01:50 UTC (rev 110744)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Patrice Peterson runiq at archlinux dot us
+# Contributor: Chris Brannon cmbranno...@gmail.com
+# Contributor: BorgHunter borghunter at gmail dot com
+
+pkgname=(python-urllib3 python2-urllib3)
+_pkgname=urllib3
+pkgver=1.8
+pkgrel=2
+pkgdesc=HTTP library with thread-safe connection pooling and file post 
support
+arch=(any)
+url=https://github.com/shazow/urllib3;
+license=(MIT)
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-pyopenssl' 'python2-pyopenssl'
+  'python-tornado' 'python2-tornado' 'python2-ndg-httpsclient' 
'python-coverage' 'python2-coverage')
+source=(git+https://github.com/shazow/$_pkgname.git#tag=$pkgver; 
+LICENSE)
+md5sums=('SKIP'
+ '350846ab4dd11ce105b570c15c1b0764')
+
+prepare() {
+  # Hack version requirements for test requirements to run tests - Disabled 
due to tests not runable
+  #sed -e s/==.*// -i $_pkgname/test-requirements.txt
+
+  cp -a $_pkgname{,-py2}
+}
+
+build() {
+  cd $srcdir/$_pkgname
+  python setup.py build
+
+  cd $srcdir/$_pkgname-py2
+  python2 setup.py build
+}
+
+check() {
+  # Tests stuck
+
+  cd $srcdir/$_pkgname
+  #nosetests3 -e pyopenssl  # No ndg-httpsclient module to test with
+
+  cd $srcdir/$_pkgname-py2
+  #nosetests2
+}
+
+package_python-urllib3() {
+  depends=('python')
+
+  cd $_pkgname
+  python setup.py install --root=${pkgdir}
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-urllib3() {
+  depends=('python2')
+
+  cd $_pkgname-py2
+  python2 setup.py install --root=${pkgdir}
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}


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


[arch-commits] Commit in python-urllib3/repos (3 files)

2014-05-05 Thread Felix Yan
Date: Tuesday, May 6, 2014 @ 04:02:34
  Author: fyan
Revision: 110745

archrelease: copy trunk to community-any

Added:
  python-urllib3/repos/community-any/
  python-urllib3/repos/community-any/LICENSE
(from rev 110744, python-urllib3/trunk/LICENSE)
  python-urllib3/repos/community-any/PKGBUILD
(from rev 110744, python-urllib3/trunk/PKGBUILD)

--+
 LICENSE  |   32 +++
 PKGBUILD |   62 +
 2 files changed, 94 insertions(+)

Copied: python-urllib3/repos/community-any/LICENSE (from rev 110744, 
python-urllib3/trunk/LICENSE)
===
--- community-any/LICENSE   (rev 0)
+++ community-any/LICENSE   2014-05-06 02:02:34 UTC (rev 110745)
@@ -0,0 +1,32 @@
+Note from the ArchLinux Packager:
+The urllib3 source doesn't come with a license file.  Its homepage
+does provide a link to the text of the MIT license, so I copied
+the following text to a file when building the package.
+
+--CUT--
+Open Source Initiative OSI - The MIT License:Licensing
+
+
+[OSI Approved License]
+
+The MIT License
+
+Copyright (c) year copyright holders
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: python-urllib3/repos/community-any/PKGBUILD (from rev 110744, 
python-urllib3/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-05-06 02:02:34 UTC (rev 110745)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Patrice Peterson runiq at archlinux dot us
+# Contributor: Chris Brannon cmbranno...@gmail.com
+# Contributor: BorgHunter borghunter at gmail dot com
+
+pkgname=(python-urllib3 python2-urllib3)
+_pkgname=urllib3
+pkgver=1.8
+pkgrel=2
+pkgdesc=HTTP library with thread-safe connection pooling and file post 
support
+arch=(any)
+url=https://github.com/shazow/urllib3;
+license=(MIT)
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-pyopenssl' 'python2-pyopenssl'
+  'python-tornado' 'python2-tornado' 'python2-ndg-httpsclient' 
'python-coverage' 'python2-coverage')
+source=(git+https://github.com/shazow/$_pkgname.git#tag=$pkgver; 
+LICENSE)
+md5sums=('SKIP'
+ '350846ab4dd11ce105b570c15c1b0764')
+
+prepare() {
+  # Hack version requirements for test requirements to run tests - Disabled 
due to tests not runable
+  #sed -e s/==.*// -i $_pkgname/test-requirements.txt
+
+  cp -a $_pkgname{,-py2}
+}
+
+build() {
+  cd $srcdir/$_pkgname
+  python setup.py build
+
+  cd $srcdir/$_pkgname-py2
+  python2 setup.py build
+}
+
+check() {
+  # Tests stuck
+
+  cd $srcdir/$_pkgname
+  #nosetests3 -e pyopenssl  # No ndg-httpsclient module to test with
+
+  cd $srcdir/$_pkgname-py2
+  #nosetests2
+}
+
+package_python-urllib3() {
+  depends=('python')
+
+  cd $_pkgname
+  python setup.py install --root=${pkgdir}
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-urllib3() {
+  depends=('python2')
+
+  cd $_pkgname-py2
+  python2 setup.py install --root=${pkgdir}
+  install -Dm644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2014-05-05 Thread Felix Yan
Date: Tuesday, May 6, 2014 @ 06:10:59
  Author: fyan
Revision: 110746

upgpkg: nodejs 0.10.28-2

- add symlink for node-gyp, close FS#40221

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-06 02:02:34 UTC (rev 110745)
+++ PKGBUILD2014-05-06 04:10:59 UTC (rev 110746)
@@ -10,12 +10,13 @@
 
 pkgname=nodejs
 pkgver=0.10.28
-pkgrel=1
+pkgrel=2
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'
 license=('MIT')
 depends=('openssl')
+provides=('nodejs-node-gyp')
 makedepends=('python2')
 optdepends=('python2: for node-gyp')
 checkdepends=('curl')
@@ -63,6 +64,9 @@
 
   install -D -m644 LICENSE \
 $pkgdir/usr/share/licenses/nodejs/LICENSE
+
+  # Why the hell wasn't this installed?! FS#40221
+  ln -s /usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
$pkgdir/usr/bin/node-gyp
 }
 
 # vim:set ts=2 sw=2 et:



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

2014-05-05 Thread Felix Yan
Date: Tuesday, May 6, 2014 @ 06:12:19
  Author: fyan
Revision: 110747

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

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

---+
 /PKGBUILD |  144 
 community-i686/PKGBUILD   |   68 
 community-x86_64/PKGBUILD |   68 
 3 files changed, 144 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-06 04:10:59 UTC (rev 110746)
+++ community-i686/PKGBUILD 2014-05-06 04:12:19 UTC (rev 110747)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# 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.28
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl')
-makedepends=('python2')
-optdepends=('python2: for node-gyp')
-checkdepends=('curl')
-options=('!emptydirs')
-source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz)
-sha256sums=('abddc6441e0f208f6ed8a045e0293f713ea7f6dfb2d6a9a2024bf8b1b4617710')
-
-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 110746, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-06 04:12:19 UTC (rev 110747)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# 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.28
+pkgrel=2
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl')
+provides=('nodejs-node-gyp')
+makedepends=('python2')
+optdepends=('python2: for node-gyp')
+checkdepends=('curl')
+options=('!emptydirs')
+source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz)
+sha256sums=('abddc6441e0f208f6ed8a045e0293f713ea7f6dfb2d6a9a2024bf8b1b4617710')
+
+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
+
+  # Why the hell wasn't this installed?! FS#40221
+  ln -s /usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
$pkgdir/usr/bin/node-gyp
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
---