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

2014-09-25 Thread Tobias Powalowski
Date: Friday, September 26, 2014 @ 08:54:14
  Author: tpowa
Revision: 223028

upgpkg: qemu 2.1.2-1

bump to latest version

Modified:
  qemu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 06:35:30 UTC (rev 223027)
+++ PKGBUILD2014-09-26 06:54:14 UTC (rev 223028)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski 
 pkgname=('qemu' 'libcacard')
-pkgver=2.1.1
+pkgver=2.1.2
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL2' 'LGPL2.1')
@@ -95,6 +95,6 @@
  cp -a ${srcdir}/qemu-${pkgver}/libcacard.pc ${pkgdir}/usr/lib/pkgconfig/
  cp -a ${srcdir}/qemu-${pkgver}/.libs/vscclient ${pkgdir}/usr/bin/
 }
-md5sums=('78b1b51bfa2eee424e1bfdf3b66daa64'
+md5sums=('0ff197c4ed4b695620bc4734e77c888f'
  '33ab286a20242dda7743a900f369d68a'
  'f98a479ec4e656403f5f05b1914f7f1f')



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

2014-09-25 Thread Tobias Powalowski
Date: Friday, September 26, 2014 @ 08:54:23
  Author: tpowa
Revision: 223029

archrelease: copy trunk to extra-i686

Added:
  qemu/repos/extra-i686/2.0.0-usb-stack.patch
(from rev 223028, qemu/trunk/2.0.0-usb-stack.patch)
  qemu/repos/extra-i686/65-kvm.rules
(from rev 223028, qemu/trunk/65-kvm.rules)
  qemu/repos/extra-i686/PKGBUILD
(from rev 223028, qemu/trunk/PKGBUILD)
  qemu/repos/extra-i686/qemu.install
(from rev 223028, qemu/trunk/qemu.install)
Deleted:
  qemu/repos/extra-i686/2.0.0-usb-stack.patch
  qemu/repos/extra-i686/65-kvm.rules
  qemu/repos/extra-i686/PKGBUILD
  qemu/repos/extra-i686/qemu.install

---+
 2.0.0-usb-stack.patch |   72 -
 65-kvm.rules  |4 
 PKGBUILD  |  200 
 qemu.install  |   46 +--
 4 files changed, 161 insertions(+), 161 deletions(-)

Deleted: 2.0.0-usb-stack.patch
===
--- 2.0.0-usb-stack.patch   2014-09-26 06:54:14 UTC (rev 223028)
+++ 2.0.0-usb-stack.patch   2014-09-26 06:54:23 UTC (rev 223029)
@@ -1,36 +0,0 @@
-Correct post load checks:
-1. dev->setup_len == sizeof(dev->data_buf)
-seems fine, no need to fail migration
-2. When state is DATA, passing index > len
-   will cause memcpy with negative length,
-   resulting in heap overflow
-
-First of the issues was reported by dgilbert.
-
-Reported-by: "Dr. David Alan Gilbert"  redhat.com>
-Signed-off-by: Michael S. Tsirkin  redhat.com>

-
-changes from v1:
-- drop state check
-- lightly tested
-
- hw/usb/bus.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/hw/usb/bus.c b/hw/usb/bus.c
-index e48b19f..ff1dfe6 100644
 a/hw/usb/bus.c
-+++ b/hw/usb/bus.c
- -51,8 +51,8  static int usb_device_post_load(void 
*opaque, int version_id)
- }
- if (dev->setup_index < 0 ||
- dev->setup_len < 0 ||
--dev->setup_index >= sizeof(dev->data_buf) ||
--dev->setup_len >= sizeof(dev->data_buf)) {
-+dev->setup_index > dev->setup_len ||
-+dev->setup_len > sizeof(dev->data_buf)) {
- return -EINVAL;
- }
- return 0;
-

Copied: qemu/repos/extra-i686/2.0.0-usb-stack.patch (from rev 223028, 
qemu/trunk/2.0.0-usb-stack.patch)
===
--- 2.0.0-usb-stack.patch   (rev 0)
+++ 2.0.0-usb-stack.patch   2014-09-26 06:54:23 UTC (rev 223029)
@@ -0,0 +1,36 @@
+Correct post load checks:
+1. dev->setup_len == sizeof(dev->data_buf)
+seems fine, no need to fail migration
+2. When state is DATA, passing index > len
+   will cause memcpy with negative length,
+   resulting in heap overflow
+
+First of the issues was reported by dgilbert.
+
+Reported-by: "Dr. David Alan Gilbert"  redhat.com>
+Signed-off-by: Michael S. Tsirkin  redhat.com>
+---
+
+changes from v1:
+- drop state check
+- lightly tested
+
+ hw/usb/bus.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/hw/usb/bus.c b/hw/usb/bus.c
+index e48b19f..ff1dfe6 100644
+--- a/hw/usb/bus.c
 b/hw/usb/bus.c
+ -51,8 +51,8  static int usb_device_post_load(void 
*opaque, int version_id)
+ }
+ if (dev->setup_index < 0 ||
+ dev->setup_len < 0 ||
+-dev->setup_index >= sizeof(dev->data_buf) ||
+-dev->setup_len >= sizeof(dev->data_buf)) {
++dev->setup_index > dev->setup_len ||
++dev->setup_len > sizeof(dev->data_buf)) {
+ return -EINVAL;
+ }
+ return 0;
+

Deleted: 65-kvm.rules
===
--- 65-kvm.rules2014-09-26 06:54:14 UTC (rev 223028)
+++ 65-kvm.rules2014-09-26 06:54:23 UTC (rev 223029)
@@ -1,2 +0,0 @@
-KERNEL=="kvm", GROUP="kvm", MODE="0660"
-KERNEL=="vhost-net", GROUP="kvm", MODE="0660", TAG+="uaccess", 
OPTIONS+="static_node=vhost-net"

Copied: qemu/repos/extra-i686/65-kvm.rules (from rev 223028, 
qemu/trunk/65-kvm.rules)
===
--- 65-kvm.rules(rev 0)
+++ 65-kvm.rules2014-09-26 06:54:23 UTC (rev 223029)
@@ -0,0 +1,2 @@
+KERNEL=="kvm", GROUP="kvm", MODE="0660"
+KERNEL=="vhost-net", GROUP="kvm", MODE="0660", TAG+="uaccess", 
OPTIONS+="static_node=vhost-net"

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-26 06:54:14 UTC (rev 223028)
+++ PKGBUILD2014-09-26 06:54:23 UTC (rev 223029)
@@ -1,100 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-pkgname=('qemu' 'libcacard')
-pkgver=2.1.1
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2' 'LGPL2.1')
-url="http://wiki.qemu.org/Index.html";
-makedepends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2'
- 'gnutls>=2.4.1' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
- 'libgl' 'libpulse' 'seabios'

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

2014-09-25 Thread Jan Steffens
Date: Friday, September 26, 2014 @ 08:39:43
  Author: heftig
Revision: 119585

rebuild for the test set in http://pkgbuild.com/~heftig/certs

Modified:
  lib32-p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 06:39:21 UTC (rev 119584)
+++ PKGBUILD2014-09-26 06:39:43 UTC (rev 119585)
@@ -5,7 +5,7 @@
 _pkgbasename=p11-kit
 pkgname=lib32-$_pkgbasename
 pkgver=0.20.7
-pkgrel=3
+pkgrel=4
 pkgdesc="Library to work with PKCS#11 modules (32-bit)"
 arch=(x86_64)
 url="http://p11-glue.freedesktop.org";
@@ -23,7 +23,8 @@
   cd "$srcdir/$_pkgbasename-$pkgver"
 
   ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
---with-module-path=/usr/lib32/pkcs11
+--with-module-path=/usr/lib32/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
   make
 }
 



[arch-commits] Commit in lib32-p11-kit/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-09-25 Thread Jan Steffens
Date: Friday, September 26, 2014 @ 08:39:21
  Author: heftig
Revision: 119584

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-p11-kit/repos/multilib-x86_64/PKGBUILD
(from rev 119583, lib32-p11-kit/trunk/PKGBUILD)
Deleted:
  lib32-p11-kit/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-26 06:36:49 UTC (rev 119583)
+++ PKGBUILD2014-09-26 06:39:21 UTC (rev 119584)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Christoph Vigano 
-
-_pkgbasename=p11-kit
-pkgname=lib32-$_pkgbasename
-pkgver=0.20.2
-pkgrel=1
-pkgdesc="Library to work with PKCS#11 modules (32-bit)"
-arch=(x86_64)
-url="http://p11-glue.freedesktop.org";
-license=('BSD')
-depends=(lib32-glibc lib32-libtasn1 lib32-libffi $_pkgbasename)
-options=(!libtool)
-source=($url/releases/$_pkgbasename-$pkgver.tar.gz)
-md5sums=('757b97ee4ac0ce598661a90cd784c4f1')
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-  cd "$srcdir/$_pkgbasename-$pkgver"
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
---with-module-path=/usr/lib32/pkcs11
-  make
-}
-
-check() {
-  cd "$srcdir/$_pkgbasename-$pkgver"
-  make check
-}
-
-package() {
-  cd "$srcdir/$_pkgbasename-$pkgver"
-  make DESTDIR="$pkgdir" install
-  rm -rf "${pkgdir}"/etc
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-p11-kit/repos/multilib-x86_64/PKGBUILD (from rev 119583, 
lib32-p11-kit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-26 06:39:21 UTC (rev 119584)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Christoph Vigano 
+
+_pkgbasename=p11-kit
+pkgname=lib32-$_pkgbasename
+pkgver=0.20.7
+pkgrel=3
+pkgdesc="Library to work with PKCS#11 modules (32-bit)"
+arch=(x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=(lib32-glibc lib32-libtasn1 lib32-libffi $_pkgbasename)
+options=(!libtool)
+source=($url/releases/$_pkgbasename-$pkgver.tar.gz{,.sig})
+md5sums=('6648cad01a3080b685b8b3bf7372c91a'
+ 'SKIP')
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  cd "$srcdir/$_pkgbasename-$pkgver"
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
+--with-module-path=/usr/lib32/pkcs11
+  make
+}
+
+check() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+  make check
+}
+
+package() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+  make DESTDIR="$pkgdir" install
+  rm -rf "${pkgdir}"/etc
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-09-25 Thread Jan Steffens
Date: Friday, September 26, 2014 @ 08:36:49
  Author: heftig
Revision: 119583

0.20.7, for multilib

Modified:
  lib32-p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 22:26:04 UTC (rev 119582)
+++ PKGBUILD2014-09-26 06:36:49 UTC (rev 119583)
@@ -5,7 +5,7 @@
 _pkgbasename=p11-kit
 pkgname=lib32-$_pkgbasename
 pkgver=0.20.7
-pkgrel=2
+pkgrel=3
 pkgdesc="Library to work with PKCS#11 modules (32-bit)"
 arch=(x86_64)
 url="http://p11-glue.freedesktop.org";
@@ -23,8 +23,7 @@
   cd "$srcdir/$_pkgbasename-$pkgver"
 
   ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
---with-module-path=/usr/lib32/pkcs11 \
-
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+--with-module-path=/usr/lib32/pkcs11
   make
 }
 



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

2014-09-25 Thread Jan Steffens
Date: Friday, September 26, 2014 @ 08:35:30
  Author: heftig
Revision: 223027

rebuild for the test set in http://pkgbuild.com/~heftig/certs

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 06:34:27 UTC (rev 223026)
+++ PKGBUILD2014-09-26 06:35:30 UTC (rev 223027)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.20.7
-pkgrel=3
+pkgrel=4
 pkgdesc="Library to work with PKCS#11 modules"
 arch=(i686 x86_64)
 url="http://p11-glue.freedesktop.org";
@@ -16,7 +16,8 @@
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11
+--with-module-path=/usr/lib/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
   make
 }
 



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

2014-09-25 Thread Evangelos Foutras
Date: Friday, September 26, 2014 @ 08:34:27
  Author: foutrelis
Revision: 223026

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-26 06:34:18 UTC (rev 223025)
+++ extra-i686/PKGBUILD 2014-09-26 06:34:27 UTC (rev 223026)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Felix Yan 
-
-pkgname=openconnect
-pkgver=6.00
-pkgrel=2
-epoch=1
-pkgdesc="Open client for Cisco AnyConnect VPN"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.infradead.org/openconnect.html";
-depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5')
-makedepends=('intltool' 'python2')
-options=('!emptydirs')
-source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('7e28e23c6e281be31446e6c365f5d273')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: openconnect/repos/extra-i686/PKGBUILD (from rev 223025, 
openconnect/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-26 06:34:27 UTC (rev 223026)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Felix Yan 
+
+pkgname=openconnect
+pkgver=6.00
+pkgrel=3
+epoch=1
+pkgdesc="Open client for Cisco AnyConnect VPN"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.infradead.org/openconnect.html";
+depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5')
+makedepends=('intltool' 'python2')
+options=('!emptydirs')
+source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('7e28e23c6e281be31446e6c365f5d273')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-09-26 06:34:18 UTC (rev 223025)
+++ extra-x86_64/PKGBUILD   2014-09-26 06:34:27 UTC (rev 223026)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Felix Yan 
-
-pkgname=openconnect
-pkgver=6.00
-pkgrel=2
-epoch=1
-pkgdesc="Open client for Cisco AnyConnect VPN"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.infradead.org/openconnect.html";
-depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5')
-makedepends=('intltool' 'python2')
-options=('!emptydirs')
-source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('7e28e23c6e281be31446e6c365f5d273')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: openconnect/repos/extra-x86_64/PKGBUILD (from rev 223025, 
openconnect/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-09-26 06:34:27 UTC (rev 223026)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Felix Yan 
+
+pkgname=openconnect
+pkgver=6.00
+pkgrel=3
+epoch=1
+pkgdesc="Open client for Cisco AnyConnect VPN"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.infradead.org/openconnect.html";
+depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5')
+makedepends=('intltool' 'python2')
+options=('!emptydirs')
+source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('7e28e23c6e281be31446e6c365f5d273')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2014-09-25 Thread Evangelos Foutras
Date: Friday, September 26, 2014 @ 08:34:18
  Author: foutrelis
Revision: 223025

upgpkg: openconnect 1:6.00-3

Rebuild against fixed gnutls (FS#42113).

Modified:
  openconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 06:30:30 UTC (rev 223024)
+++ PKGBUILD2014-09-26 06:34:18 UTC (rev 223025)
@@ -4,7 +4,7 @@
 
 pkgname=openconnect
 pkgver=6.00
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="Open client for Cisco AnyConnect VPN"
 arch=('i686' 'x86_64')



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

2014-09-25 Thread Evangelos Foutras
Date: Friday, September 26, 2014 @ 08:30:20
  Author: foutrelis
Revision: 223023

upgpkg: gnutls 3.3.8-2

Rebuild with newer p11-kit to restore PKCS#11 support (FS#42113).

Modified:
  gnutls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 06:17:18 UTC (rev 223022)
+++ PKGBUILD2014-09-26 06:30:20 UTC (rev 223023)
@@ -4,7 +4,7 @@
 
 pkgname=gnutls
 pkgver=3.3.8
-pkgrel=1
+pkgrel=2
 pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
 arch=('i686' 'x86_64')
 license=('GPL3' 'LGPL2.1')



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

2014-09-25 Thread Evangelos Foutras
Date: Friday, September 26, 2014 @ 08:30:30
  Author: foutrelis
Revision: 223024

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

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

-+
 /PKGBUILD   |   82 ++
 /gnutls.install |   40 
 extra-i686/PKGBUILD |   41 -
 extra-i686/gnutls.install   |   20 --
 extra-x86_64/PKGBUILD   |   41 -
 extra-x86_64/gnutls.install |   20 --
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-26 06:30:20 UTC (rev 223023)
+++ extra-i686/PKGBUILD 2014-09-26 06:30:30 UTC (rev 223024)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Maintainer: Andreas Radke 
-
-pkgname=gnutls
-pkgver=3.3.8
-pkgrel=1
-pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL2.1')
-url="http://www.gnutls.org/";
-install=gnutls.install
-options=('!zipman')
-depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
-source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('b57e6b7630bdba9ea8eb28ff0eb29c2f'
- 'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-   --with-zlib \
-   --disable-static \
-   --disable-guile
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check || make -j1 check # || /bin/true
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
-  # gzip -9 all files in infodir and manpages manually
-  find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -9 {} \;
-  find "$pkgdir/usr/share/man" -exec gzip -9 {} \;
-}

Copied: gnutls/repos/extra-i686/PKGBUILD (from rev 223023, 
gnutls/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-26 06:30:30 UTC (rev 223024)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Maintainer: Andreas Radke 
+
+pkgname=gnutls
+pkgver=3.3.8
+pkgrel=2
+pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL2.1')
+url="http://www.gnutls.org/";
+install=gnutls.install
+options=('!zipman')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit')
+source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('b57e6b7630bdba9ea8eb28ff0eb29c2f'
+ 'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --with-zlib \
+   --disable-static \
+   --disable-guile
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check || make -j1 check # || /bin/true
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
+  # gzip -9 all files in infodir and manpages manually
+  find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -9 {} \;
+  find "$pkgdir/usr/share/man" -exec gzip -9 {} \;
+}

Deleted: extra-i686/gnutls.install
===
--- extra-i686/gnutls.install   2014-09-26 06:30:20 UTC (rev 223023)
+++ extra-i686/gnutls.install   2014-09-26 06:30:30 UTC (rev 223024)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(gnutls.info-1.gz gnutls.info-2.gz gnutls.info-3.gz gnutls.info-4.gz 
gnutls.info-5.gz gnutls.info.gz gnutls-guile.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}

Copied: gnutls/repos/extra-i686/gnutls.install (from rev 223023, 
gnutls/trunk/gnutls.install)
===
--- extra-i686/gnutls.install   (rev 0)
+++ extra-i686/gnutls.install   201

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

2014-09-25 Thread Evangelos Foutras
Date: Friday, September 26, 2014 @ 08:17:18
  Author: foutrelis
Revision: 223022

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

Added:
  p11-kit/repos/extra-i686/PKGBUILD
(from rev 223021, p11-kit/trunk/PKGBUILD)
  p11-kit/repos/extra-x86_64/PKGBUILD
(from rev 223021, p11-kit/trunk/PKGBUILD)
Deleted:
  p11-kit/repos/extra-i686/PKGBUILD
  p11-kit/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-26 06:17:08 UTC (rev 223021)
+++ extra-i686/PKGBUILD 2014-09-26 06:17:18 UTC (rev 223022)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=p11-kit
-pkgver=0.20.2
-pkgrel=1
-pkgdesc="Library to work with PKCS#11 modules"
-arch=(i686 x86_64)
-url="http://p11-glue.freedesktop.org";
-license=('BSD')
-depends=('glibc' 'libtasn1' 'libffi')
-source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('757b97ee4ac0ce598661a90cd784c4f1'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd  $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: p11-kit/repos/extra-i686/PKGBUILD (from rev 223021, 
p11-kit/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-26 06:17:18 UTC (rev 223022)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=p11-kit
+pkgver=0.20.7
+pkgrel=3
+pkgdesc="Library to work with PKCS#11 modules"
+arch=(i686 x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=('glibc' 'libtasn1' 'libffi')
+source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
+md5sums=('6648cad01a3080b685b8b3bf7372c91a'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-module-path=/usr/lib/pkcs11
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd  $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-09-26 06:17:08 UTC (rev 223021)
+++ extra-x86_64/PKGBUILD   2014-09-26 06:17:18 UTC (rev 223022)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=p11-kit
-pkgver=0.20.2
-pkgrel=1
-pkgdesc="Library to work with PKCS#11 modules"
-arch=(i686 x86_64)
-url="http://p11-glue.freedesktop.org";
-license=('BSD')
-depends=('glibc' 'libtasn1' 'libffi')
-source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('757b97ee4ac0ce598661a90cd784c4f1'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd  $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: p11-kit/repos/extra-x86_64/PKGBUILD (from rev 223021, 
p11-kit/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-09-26 06:17:18 UTC (rev 223022)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=p11-kit
+pkgver=0.20.7
+pkgrel=3
+pkgdesc="Library to work with PKCS#11 modules"
+arch=(i686 x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=('glibc' 'libtasn1' 'libffi')
+source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
+md5sums=('6648cad01a3080b685b8b3bf7372c91a'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-module-path=/usr/lib/pkcs11
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd  $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-09-25 Thread Evangelos Foutras
Date: Friday, September 26, 2014 @ 08:17:08
  Author: foutrelis
Revision: 223021

upgpkg: p11-kit 0.20.7-3

New upstream release.

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 05:58:12 UTC (rev 223020)
+++ PKGBUILD2014-09-26 06:17:08 UTC (rev 223021)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.20.7
-pkgrel=2
+pkgrel=3
 pkgdesc="Library to work with PKCS#11 modules"
 arch=(i686 x86_64)
 url="http://p11-glue.freedesktop.org";
@@ -16,8 +16,7 @@
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11 \
-
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+--with-module-path=/usr/lib/pkcs11
   make
 }
 



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

2014-09-25 Thread Felix Yan
Date: Friday, September 26, 2014 @ 07:58:12
  Author: fyan
Revision: 223020

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

Added:
  pygtk/repos/extra-i686/PKGBUILD
(from rev 223019, pygtk/trunk/PKGBUILD)
  pygtk/repos/extra-i686/python27.patch
(from rev 223019, pygtk/trunk/python27.patch)
  pygtk/repos/extra-x86_64/PKGBUILD
(from rev 223019, pygtk/trunk/PKGBUILD)
  pygtk/repos/extra-x86_64/python27.patch
(from rev 223019, pygtk/trunk/python27.patch)
Deleted:
  pygtk/repos/extra-i686/PKGBUILD
  pygtk/repos/extra-i686/python27.patch
  pygtk/repos/extra-x86_64/PKGBUILD
  pygtk/repos/extra-x86_64/python27.patch

-+
 /PKGBUILD   |   80 +
 /python27.patch |  100 ++
 extra-i686/PKGBUILD |   36 ---
 extra-i686/python27.patch   |   50 -
 extra-x86_64/PKGBUILD   |   36 ---
 extra-x86_64/python27.patch |   50 -
 6 files changed, 180 insertions(+), 172 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-26 05:57:34 UTC (rev 223019)
+++ extra-i686/PKGBUILD 2014-09-26 05:58:12 UTC (rev 223020)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Sarah Hay 
-
-pkgname=pygtk
-pkgver=2.24.0
-pkgrel=4
-pkgdesc="Python bindings for the GTK widget set"
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('libglade' 'python2-cairo' 'pygobject')
-makedepends=('python2-numpy' 'pygobject2-devel')
-optdepends=('python2-numpy')
-url="http://www.pygtk.org/";
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
-python27.patch)
-sha256sums=('cd1c1ea265bd63ff669e92a2d3c2a88eb26bcd9e5363e0f82c896e649f206912'
-'39a30456cba055a452bb55c74ef1ff2f5f7bfaad22855b4dd569ab009b56b682')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=623965
-  patch -Np1 -i "${srcdir}/python27.patch"
-
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m644 gtk/gtk-extrafuncs.defs "${pkgdir}/usr/share/pygtk/2.0/defs/"
-
-  sed -i -e 's#env python$#env python2#' 
"${pkgdir}"/usr/lib/pygtk/2.0/{,demos/}*.py
-}

Copied: pygtk/repos/extra-i686/PKGBUILD (from rev 223019, pygtk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-26 05:58:12 UTC (rev 223020)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Sarah Hay 
+
+pkgname=pygtk
+pkgver=2.24.0
+pkgrel=5
+pkgdesc="Python bindings for the GTK widget set"
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('libglade' 'python2-cairo' 'pygobject')
+makedepends=('python2-numpy' 'pygobject2-devel')
+optdepends=('python2-numpy')
+url="http://www.pygtk.org/";
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
+python27.patch)
+sha256sums=('cd1c1ea265bd63ff669e92a2d3c2a88eb26bcd9e5363e0f82c896e649f206912'
+'39a30456cba055a452bb55c74ef1ff2f5f7bfaad22855b4dd569ab009b56b682')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=623965
+  patch -Np1 -i "${srcdir}/python27.patch"
+
+  sed -i -e 's#env python$#env python2#' examples/pygtk-demo/{,demos/}*.py
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m644 gtk/gtk-extrafuncs.defs "${pkgdir}/usr/share/pygtk/2.0/defs/"
+}

Deleted: extra-i686/python27.patch
===
--- extra-i686/python27.patch   2014-09-26 05:57:34 UTC (rev 223019)
+++ extra-i686/python27.patch   2014-09-26 05:58:12 UTC (rev 223020)
@@ -1,50 +0,0 @@
-diff --git a/gtk/gtkmodule.c b/gtk/gtkmodule.c
-index c0e1493..aa8cf10 100644
 a/gtk/gtkmodule.c
-+++ b/gtk/gtkmodule.c
-@@ -227,8 +227,12 @@ init_gtk(void)
- pygtk_add_stock_items(d);
- 
- /* extension API */
--PyDict_SetItemString(d, "_PyGtk_API",
--   o=PyCObject_FromVoidPtr(&functions, NULL));
-+#if PY_VERSION_HEX >= 0x0207
-+o = PyCapsule_New(&functions, "gtk._gtk._PyGtk_API", NULL);
-+#else
-+o = PyCObject_FromVoidPtr(&functions, NULL);
-+#endif
-+PyDict_SetItemString(d, "_PyGtk_API", o);
- Py_DECREF(o);
-   
- PyGtkDeprecationWarning = PyErr_NewException("gtk.GtkDeprecationWarning",
-diff --git a/gtk/pygtk.h b/gtk/pygtk.h
-index 573c3b9..e4c680f 100644
 a/gtk/pygtk.h
-+++ b/gtk/pygtk.h
-@@ -60,6 +60,18 @@ struct _PyGtk_FunctionStruct *_PyG

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

2014-09-25 Thread Felix Yan
Date: Friday, September 26, 2014 @ 07:57:34
  Author: fyan
Revision: 223019

upgpkg: pygtk 2.24.0-5

rebuild to fix "bad mtime" pyc/pyo files

Modified:
  pygtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 05:37:52 UTC (rev 223018)
+++ PKGBUILD2014-09-26 05:57:34 UTC (rev 223019)
@@ -4,7 +4,7 @@
 
 pkgname=pygtk
 pkgver=2.24.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Python bindings for the GTK widget set"
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -17,12 +17,18 @@
 sha256sums=('cd1c1ea265bd63ff669e92a2d3c2a88eb26bcd9e5363e0f82c896e649f206912'
 '39a30456cba055a452bb55c74ef1ff2f5f7bfaad22855b4dd569ab009b56b682')
 
-build() {
+prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 
   #https://bugzilla.gnome.org/show_bug.cgi?id=623965
   patch -Np1 -i "${srcdir}/python27.patch"
 
+  sed -i -e 's#env python$#env python2#' examples/pygtk-demo/{,demos/}*.py
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
   PYTHON=/usr/bin/python2 ./configure --prefix=/usr
   make
 }
@@ -31,6 +37,4 @@
   cd "${srcdir}/${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" install
   install -m644 gtk/gtk-extrafuncs.defs "${pkgdir}/usr/share/pygtk/2.0/defs/"
-
-  sed -i -e 's#env python$#env python2#' 
"${pkgdir}"/usr/lib/pygtk/2.0/{,demos/}*.py
 }



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

2014-09-25 Thread Felix Yan
Date: Friday, September 26, 2014 @ 06:18:36
  Author: fyan
Revision: 223017

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-26 04:17:40 UTC (rev 223016)
+++ extra-i686/PKGBUILD 2014-09-26 04:18:36 UTC (rev 223017)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Felix Yan 
-
-pkgname=openconnect
-pkgver=6.00
-pkgrel=1
-epoch=1
-pkgdesc="Open client for Cisco AnyConnect VPN"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.infradead.org/openconnect.html";
-depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5')
-makedepends=('intltool' 'python2')
-options=('!emptydirs')
-source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('7e28e23c6e281be31446e6c365f5d273')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: openconnect/repos/extra-i686/PKGBUILD (from rev 223016, 
openconnect/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-26 04:18:36 UTC (rev 223017)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Felix Yan 
+
+pkgname=openconnect
+pkgver=6.00
+pkgrel=2
+epoch=1
+pkgdesc="Open client for Cisco AnyConnect VPN"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.infradead.org/openconnect.html";
+depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5')
+makedepends=('intltool' 'python2')
+options=('!emptydirs')
+source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('7e28e23c6e281be31446e6c365f5d273')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-09-26 04:17:40 UTC (rev 223016)
+++ extra-x86_64/PKGBUILD   2014-09-26 04:18:36 UTC (rev 223017)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Felix Yan 
-
-pkgname=openconnect
-pkgver=6.00
-pkgrel=1
-epoch=1
-pkgdesc="Open client for Cisco AnyConnect VPN"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.infradead.org/openconnect.html";
-depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5')
-makedepends=('intltool' 'python2')
-options=('!emptydirs')
-source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('7e28e23c6e281be31446e6c365f5d273')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: openconnect/repos/extra-x86_64/PKGBUILD (from rev 223016, 
openconnect/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-09-26 04:18:36 UTC (rev 223017)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Felix Yan 
+
+pkgname=openconnect
+pkgver=6.00
+pkgrel=2
+epoch=1
+pkgdesc="Open client for Cisco AnyConnect VPN"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.infradead.org/openconnect.html";
+depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5')
+makedepends=('intltool' 'python2')
+options=('!emptydirs')
+source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('7e28e23c6e281be31446e6c365f5d273')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2014-09-25 Thread Felix Yan
Date: Friday, September 26, 2014 @ 06:17:40
  Author: fyan
Revision: 223016

upgpkg: openconnect 1:6.00-2

rebuild for gnutls 3.3.8, fixes FS#42113

Modified:
  openconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 03:47:37 UTC (rev 223015)
+++ PKGBUILD2014-09-26 04:17:40 UTC (rev 223016)
@@ -4,7 +4,7 @@
 
 pkgname=openconnect
 pkgver=6.00
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Open client for Cisco AnyConnect VPN"
 arch=('i686' 'x86_64')



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

2014-09-25 Thread Andreas Radke
Date: Friday, September 26, 2014 @ 05:47:37
  Author: andyrtr
Revision: 223015

prepare next release - there are still crashes and segfaults in i686 build in 
cppunittests

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 03:35:30 UTC (rev 223014)
+++ PKGBUILD2014-09-26 03:47:37 UTC (rev 223015)
@@ -64,7 +64,7 @@
${_additional_source_url}/CoinMP-1.7.6.tgz

${_additional_source_url}/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2
${_additional_source_url}/OpenCOLLADA-master-6509aa13af.tar.bz2
-   ${_additional_source_url}/libgltf/libgltf-0.0.0.tar.bz2
+   ${_additional_source_url}/libgltf/libgltf-0.0.1.tar.bz2
make-pyuno-work-with-system-wide-module-install.diff
libreoffice-fresh.sh libreoffice-fresh.csh)
 noextract=(d6eef4b4cacb2183f2bf265a5a03a354-boost_1_55_0.tar.bz2
@@ -104,7 +104,7 @@
CoinMP-1.7.6.tgz
4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2
OpenCOLLADA-master-6509aa13af.tar.bz2
-   libgltf-0.0.0.tar.bz2)
+   libgltf-0.0.1.tar.bz2)
 md5sums=('86aa9cad125fec16c5cd1d9d964e1d20'
  'SKIP'
  '63a59a4c77a72856b47caf1871cfc48f'
@@ -147,7 +147,7 @@
  '1cce53bf4b40ae29790d2c5c9f8b1129'
  '4b87018f7fff1d054939d19920b751a0'
  '4ca8a6ef0afeefc864e9ef21b9f14bd6'
- 'ca5436e916bfe70694adfe2607782786'
+ '03821c9c827e647fb5fedb12496e0067'
  '07d2bf5ad839a394cca008b3ec6e7bb1'
  '4195735a80876ae812fca5736b50192a'
  'e7e4b3e70e99e5cba8f8dfcacf3b0d87')



[arch-commits] Commit in bash/repos (26 files)

2014-09-25 Thread Felix Yan
Date: Friday, September 26, 2014 @ 05:35:30
  Author: fyan
Revision: 223014

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

Added:
  bash/repos/testing-i686/
  bash/repos/testing-i686/PKGBUILD
(from rev 223013, bash/trunk/PKGBUILD)
  bash/repos/testing-i686/bash.install
(from rev 223013, bash/trunk/bash.install)
  bash/repos/testing-i686/bash43-026
(from rev 223013, bash/trunk/bash43-026)
  bash/repos/testing-i686/dot.bash_logout
(from rev 223013, bash/trunk/dot.bash_logout)
  bash/repos/testing-i686/dot.bash_profile
(from rev 223013, bash/trunk/dot.bash_profile)
  bash/repos/testing-i686/dot.bashrc
(from rev 223013, bash/trunk/dot.bashrc)
  bash/repos/testing-i686/funcdef-import.patch
(from rev 223013, bash/trunk/funcdef-import.patch)
  bash/repos/testing-i686/parser-oob-4.2.patch
(from rev 223013, bash/trunk/parser-oob-4.2.patch)
  bash/repos/testing-i686/privmode-setuid-fail.patch
(from rev 223013, bash/trunk/privmode-setuid-fail.patch)
  bash/repos/testing-i686/system.bash_logout
(from rev 223013, bash/trunk/system.bash_logout)
  bash/repos/testing-i686/system.bashrc
(from rev 223013, bash/trunk/system.bashrc)
  bash/repos/testing-i686/variables-affix.patch
(from rev 223013, bash/trunk/variables-affix.patch)
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 223013, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/bash.install
(from rev 223013, bash/trunk/bash.install)
  bash/repos/testing-x86_64/bash43-026
(from rev 223013, bash/trunk/bash43-026)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 223013, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 223013, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 223013, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/funcdef-import.patch
(from rev 223013, bash/trunk/funcdef-import.patch)
  bash/repos/testing-x86_64/parser-oob-4.2.patch
(from rev 223013, bash/trunk/parser-oob-4.2.patch)
  bash/repos/testing-x86_64/privmode-setuid-fail.patch
(from rev 223013, bash/trunk/privmode-setuid-fail.patch)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 223013, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 223013, bash/trunk/system.bashrc)
  bash/repos/testing-x86_64/variables-affix.patch
(from rev 223013, bash/trunk/variables-affix.patch)

---+
 testing-i686/PKGBUILD |  148 ++
 testing-i686/bash.install |   16 ++
 testing-i686/bash43-026   |   60 ++
 testing-i686/dot.bash_logout  |3 
 testing-i686/dot.bash_profile |5 
 testing-i686/dot.bashrc   |9 +
 testing-i686/funcdef-import.patch |   91 
 testing-i686/parser-oob-4.2.patch |   85 +++
 testing-i686/privmode-setuid-fail.patch   |   29 +
 testing-i686/system.bash_logout   |3 
 testing-i686/system.bashrc|   23 
 testing-i686/variables-affix.patch|  155 
 testing-x86_64/PKGBUILD   |  148 ++
 testing-x86_64/bash.install   |   16 ++
 testing-x86_64/bash43-026 |   60 ++
 testing-x86_64/dot.bash_logout|3 
 testing-x86_64/dot.bash_profile   |5 
 testing-x86_64/dot.bashrc |9 +
 testing-x86_64/funcdef-import.patch   |   91 
 testing-x86_64/parser-oob-4.2.patch   |   85 +++
 testing-x86_64/privmode-setuid-fail.patch |   29 +
 testing-x86_64/system.bash_logout |3 
 testing-x86_64/system.bashrc  |   23 
 testing-x86_64/variables-affix.patch  |  155 
 24 files changed, 1254 insertions(+)

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


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

2014-09-25 Thread Felix Yan
Date: Friday, September 26, 2014 @ 05:33:18
  Author: fyan
Revision: 223013

upgpkg: bash 4.3.026-1

- removed funcdef-import.patch as it has been included upstream as bash43-025 
patch
- add bash43-026 patch to address CVE-2014-7169 (from 
http://www.openwall.com/lists/oss-security/2014/09/26/1)
- add variables-affix.patch (from 
http://pkgs.fedoraproject.org/cgit/bash.git/tree/bash-4.2-cve-2014-7169-1.patch?id=6319f7c362cfe9062d7bbfec48650caa366da480)
- add parser-oob-4.2.patch (from http://seclists.org/oss-sec/2014/q3/712)

Added:
  bash/trunk/bash43-026
  bash/trunk/parser-oob-4.2.patch
  bash/trunk/variables-affix.patch
Modified:
  bash/trunk/PKGBUILD

---+
 PKGBUILD  |   22 --
 bash43-026|   60 ++
 parser-oob-4.2.patch  |   85 ++
 variables-affix.patch |  155 
 4 files changed, 315 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 19:51:44 UTC (rev 223012)
+++ PKGBUILD2014-09-26 03:33:18 UTC (rev 223013)
@@ -5,9 +5,9 @@
 
 pkgname=bash
 _basever=4.3
-_patchlevel=024
+_patchlevel=026
 pkgver=$_basever.$_patchlevel
-pkgrel=2
+pkgrel=1
 pkgdesc='The GNU Bourne Again shell'
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -25,10 +25,13 @@
 system.bashrc
 system.bash_logout
 privmode-setuid-fail.patch
-funcdef-import.patch)
+# CVE-2014-7169 patch from 
http://www.openwall.com/lists/oss-security/2014/09/26/1
+bash43-026
+variables-affix.patch
+parser-oob-4.2.patch)
 
 if [[ $((10#${_patchlevel})) -gt 0 ]]; then
-for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+for (( _p=1; _p<=$((10#${_patchlevel}-1)); _p++ )); do   # "-1" was added 
as workaround for not-published 026 patch)
 source=(${source[@]} 
http://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
 done
 fi
@@ -44,8 +47,9 @@
   # http://hmarco.org/bugs/bash_4.3-setuid-bug.html (FS#40663)
   patch -p0 -i ../privmode-setuid-fail.patch
 
-  # CVE-2014-6271 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-6271
-  patch -p0 -i ../funcdef-import.patch
+  # CVE-2014-7169 patches
+  patch -p0 -i ../variables-affix.patch
+  patch -p0 -i ../parser-oob-4.2.patch
 }
 
 build() {
@@ -89,7 +93,9 @@
  '561949793177116b7be29a07c385ba8b'
  '472f536d7c9e8250dc4568ec4cfaf294'
  'a577d42e38249d298d6a8d4bf2823883'
- '231b04ccc931653b12244bcc0a4eea70'
+ '922578e2be7ed03729454e92ee8d3f3a'
+ '2ac173523d3437a0ab517ae4248d0a98'
+ '461145288c8ffbf05c0f90554b2aa885'
  '1ab682b4e36afa4cf1b426aa7ac81c0d'
  'SKIP'
  '8fc22cf50ec85da00f6af3d66f7ddc1b'
@@ -137,4 +143,6 @@
  'b3cb0d80fd0c47728264405cbb3b23c7'
  'SKIP'
  'b5ea5600942acceb4b6f07313d2de74e'
+ 'SKIP'
+ '193c06f578d38ffdbaebae9c51a7551f'
  'SKIP')

Added: bash43-026
===
--- bash43-026  (rev 0)
+++ bash43-026  2014-09-26 03:33:18 UTC (rev 223013)
@@ -0,0 +1,60 @@
+BASH PATCH REPORT
+=
+
+Bash-Release:  4.3
+Patch-ID:  bash43-026
+
+Bug-Reported-by:   Tavis Ormandy 
+Bug-Reference-ID:
+Bug-Reference-URL: http://twitter.com/taviso/statuses/514887394294652929
+
+Bug-Description:
+
+Under certain circumstances, bash can incorrectly save a lookahead character 
and
+return it on a subsequent call, even when reading a new line.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-4.3.25/parse.y 2014-07-30 10:14:31.0 -0400
+--- parse.y2014-09-25 20:20:21.0 -0400
+***
+*** 2954,2957 
+--- 2954,2959 
+word_desc_to_read = (WORD_DESC *)NULL;
+  
++   eol_ungetc_lookahead = 0;
++ 
+current_token = '\n';  /* XXX */
+last_read_token = '\n';
+*** ../bash-4.3.25/y.tab.c 2014-07-30 10:14:32.0 -0400
+--- y.tab.c2014-09-25 20:21:48.0 -0400
+***
+*** 5266,5269 
+--- 5266,5271 
+word_desc_to_read = (WORD_DESC *)NULL;
+  
++   eol_ungetc_lookahead = 0;
++ 
+current_token = '\n';  /* XXX */
+last_read_token = '\n';
+***
+*** 8540,8542 
+  }
+  #endif /* HANDLE_MULTIBYTE */
+- 
+--- 8542,8543 
+*** ../bash-4.3/patchlevel.h   2012-12-29 10:47:57.0 -0500
+--- patchlevel.h   2014-03-20 20:01:28.0 -0400
+***
+*** 26,30 
+ looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 25
+  
+  #endif /* _PATCHLEVEL_H_ */
+--- 26,30 
+ looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 26
+  
+  #endif /* _PATCHLEVEL_H_ */

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

2014-09-25 Thread Sébastien Luttringer
Date: Friday, September 26, 2014 @ 00:26:04
  Author: seblu
Revision: 119582

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-25 22:25:47 UTC (rev 119581)
+++ community-i686/PKGBUILD 2014-09-25 22:26:04 UTC (rev 119582)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=hardlink
-pkgver=0.2.0
-pkgrel=2
-pkgdesc='Replace file copies using hardlinks'
-arch=('i686' 'x86_64')
-url='http://jak-linux.org/projects/hardlink/'
-license=('custom: MIT')
-depends=('glibc' 'pcre')
-source=("http://jak-linux.org/projects/hardlink/hardlink_$pkgver.tar.gz";)
-md5sums=('4c1621ee7850a1c8b316735a7bced993')
-
-build() {
-  cd $pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # install icense
-  install -Dm 644 debian/copyright 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: hardlink/repos/community-i686/PKGBUILD (from rev 119581, 
hardlink/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-25 22:26:04 UTC (rev 119582)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=hardlink
+pkgver=0.3.0
+pkgrel=1
+pkgdesc='Replace file copies using hardlinks'
+arch=('i686' 'x86_64')
+url='http://jak-linux.org/projects/hardlink/'
+license=('custom: MIT')
+depends=('glibc' 'pcre')
+source=("http://jak-linux.org/projects/hardlink/hardlink_$pkgver.tar.xz"{,.asc})
+md5sums=('72f1a460adb6874c151deab766e434ad'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # install icense
+  install -Dm 644 debian/copyright 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-09-25 22:25:47 UTC (rev 119581)
+++ community-x86_64/PKGBUILD   2014-09-25 22:26:04 UTC (rev 119582)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=hardlink
-pkgver=0.2.0
-pkgrel=2
-pkgdesc='Replace file copies using hardlinks'
-arch=('i686' 'x86_64')
-url='http://jak-linux.org/projects/hardlink/'
-license=('custom: MIT')
-depends=('glibc' 'pcre')
-source=("http://jak-linux.org/projects/hardlink/hardlink_$pkgver.tar.gz";)
-md5sums=('4c1621ee7850a1c8b316735a7bced993')
-
-build() {
-  cd $pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # install icense
-  install -Dm 644 debian/copyright 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: hardlink/repos/community-x86_64/PKGBUILD (from rev 119581, 
hardlink/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-09-25 22:26:04 UTC (rev 119582)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=hardlink
+pkgver=0.3.0
+pkgrel=1
+pkgdesc='Replace file copies using hardlinks'
+arch=('i686' 'x86_64')
+url='http://jak-linux.org/projects/hardlink/'
+license=('custom: MIT')
+depends=('glibc' 'pcre')
+source=("http://jak-linux.org/projects/hardlink/hardlink_$pkgver.tar.xz"{,.asc})
+md5sums=('72f1a460adb6874c151deab766e434ad'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # install icense
+  install -Dm 644 debian/copyright 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-09-25 Thread Sébastien Luttringer
Date: Friday, September 26, 2014 @ 00:25:47
  Author: seblu
Revision: 119581

upgpkg: hardlink 0.3.0-1

Modified:
  hardlink/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 20:36:23 UTC (rev 119580)
+++ PKGBUILD2014-09-25 22:25:47 UTC (rev 119581)
@@ -2,15 +2,16 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=hardlink
-pkgver=0.2.0
-pkgrel=2
+pkgver=0.3.0
+pkgrel=1
 pkgdesc='Replace file copies using hardlinks'
 arch=('i686' 'x86_64')
 url='http://jak-linux.org/projects/hardlink/'
 license=('custom: MIT')
 depends=('glibc' 'pcre')
-source=("http://jak-linux.org/projects/hardlink/hardlink_$pkgver.tar.gz";)
-md5sums=('4c1621ee7850a1c8b316735a7bced993')
+source=("http://jak-linux.org/projects/hardlink/hardlink_$pkgver.tar.xz"{,.asc})
+md5sums=('72f1a460adb6874c151deab766e434ad'
+ 'SKIP')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-25 Thread Alexander Rødseth
Date: Thursday, September 25, 2014 @ 22:36:23
  Author: arodseth
Revision: 119580

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

Added:
  tesseract-game/repos/community-i686/PKGBUILD
(from rev 119579, tesseract-game/trunk/PKGBUILD)
  tesseract-game/repos/community-i686/tesseract.install
(from rev 119579, tesseract-game/trunk/tesseract.install)
  tesseract-game/repos/community-i686/tesseract.sh
(from rev 119579, tesseract-game/trunk/tesseract.sh)
  tesseract-game/repos/community-x86_64/PKGBUILD
(from rev 119579, tesseract-game/trunk/PKGBUILD)
  tesseract-game/repos/community-x86_64/tesseract.install
(from rev 119579, tesseract-game/trunk/tesseract.install)
  tesseract-game/repos/community-x86_64/tesseract.sh
(from rev 119579, tesseract-game/trunk/tesseract.sh)
Deleted:
  tesseract-game/repos/community-i686/PKGBUILD
  tesseract-game/repos/community-i686/tesseract.install
  tesseract-game/repos/community-i686/tesseract.sh
  tesseract-game/repos/community-x86_64/PKGBUILD
  tesseract-game/repos/community-x86_64/tesseract.install
  tesseract-game/repos/community-x86_64/tesseract.sh

+
 /PKGBUILD  |  102 +++
 /tesseract.install |   28 +
 /tesseract.sh  |   12 
 community-i686/PKGBUILD|   51 -
 community-i686/tesseract.install   |   14 
 community-i686/tesseract.sh|6 --
 community-x86_64/PKGBUILD  |   51 -
 community-x86_64/tesseract.install |   14 
 community-x86_64/tesseract.sh  |6 --
 9 files changed, 142 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-25 20:36:05 UTC (rev 119579)
+++ community-i686/PKGBUILD 2014-09-25 20:36:23 UTC (rev 119580)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: portals 
-# Contributor: novemberist
-# Contributor: PyroDevil
-# Contributor: giacomogiorgia...@gmail.com 
-
-pkgname=tesseract-game
-pkgver=1
-pkgrel=2
-pkgdesc='Smooth FPS with map editing, instagib, DM and CTF'
-url='http://tesseract.gg/'
-arch=('x86_64' 'i686')
-license=('ZLIB')
-depends=('libgl' 'sdl2' 'sdl2_image' 'sdl2_mixer' 'libpng' 'mesa' 'zlib' 
'hicolor-icon-theme')
-makedepends=('subversion' 'gendesk' 'imagemagick')
-source=('tesseract::svn://svn.tuxfamily.org/svnroot/tesseract/main#revision=1688'
-'tesseract.sh')
-sha256sums=('SKIP'
-'34a03fb87b3f3e1f16d1744d42f566a36e67cbdeaee1876281857b341002566b')
-
-prepare() {
-  gendesk -f -n --pkgname ${pkgname/-game} --pkgdesc "$pkgdesc" --exec 
"$pkgname"
-  for dim in 16 32 48 64 128 256 512; do
-convert -resize "${dim}x${dim}" tesseract/media/interface/cube.png 
"$pkgname$dim.png" 2> /dev/null
-  done
-}
-
-build() {
-  make -C tesseract/src
-}
-
-package() {
-  local n=tesseract
-  cd "$n"
-  make -C src install
-  install -d "$pkgdir/usr/share/$pkgname/"
-  cp -R media/ config/ "$pkgdir/usr/share/$pkgname"
-  install -Dm755 bin_unix/native_client "$pkgdir/usr/bin/$n-client"
-  install -Dm755 bin_unix/native_server "$pkgdir/usr/bin/$n-server"
-  install -Dm644 "src/readme_$n.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm755 "../$n.sh" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 "../$n.desktop" "$pkgdir/usr/share/applications/$n.desktop"
-  for dim in 16 32 48 64 128 256 512; do
-install -Dm644 "../$pkgname$dim.png" \
-  "$pkgdir/usr/share/icons/hicolor/${dim}x$dim/apps/$n.png"
-  done
-  install -Dm644 "../${pkgname}48.png" "$pkgdir/usr/share/pixmaps/$n.png"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tesseract-game/repos/community-i686/PKGBUILD (from rev 119579, 
tesseract-game/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-25 20:36:23 UTC (rev 119580)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: portals 
+# Contributor: novemberist
+# Contributor: PyroDevil
+# Contributor: giacomogiorgia...@gmail.com 
+
+pkgname=tesseract-game
+pkgver=1
+pkgrel=3
+pkgdesc='Smooth FPS with map editing, instagib, DM and CTF'
+url='http://tesseract.gg/'
+arch=('x86_64' 'i686')
+license=('ZLIB')
+depends=('libgl' 'sdl2' 'sdl2_image' 'sdl2_mixer' 'libpng' 'zlib' 
'hicolor-icon-theme')
+makedepends=('subversion' 'gendesk' 'imagemagick')
+source=('tesseract::svn://svn.tuxfamily.org/svnroot/tesseract/main#revision=1688'
+'tesseract.sh')
+sha256sums=('SKIP'
+'34a03fb87b3f3e1f16d1744d42f566a36e67cbdeaee1876281857b341002566b')
+
+prepare() {
+  gendesk -f -n --pkgname ${pkgname/-game} --pkgdesc "$pkgdesc" --exec 
"$pkgname"
+  for dim in 16 32 48 64 128 256 512; do
+convert -resize "${dim}x${dim}" tesseract/media/interface/cube.png 
"$pkgn

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

2014-09-25 Thread Alexander Rødseth
Date: Thursday, September 25, 2014 @ 22:36:05
  Author: arodseth
Revision: 119579

Removed dep on mesa

Modified:
  tesseract-game/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 19:33:28 UTC (rev 119578)
+++ PKGBUILD2014-09-25 20:36:05 UTC (rev 119579)
@@ -7,12 +7,12 @@
 
 pkgname=tesseract-game
 pkgver=1
-pkgrel=2
+pkgrel=3
 pkgdesc='Smooth FPS with map editing, instagib, DM and CTF'
 url='http://tesseract.gg/'
 arch=('x86_64' 'i686')
 license=('ZLIB')
-depends=('libgl' 'sdl2' 'sdl2_image' 'sdl2_mixer' 'libpng' 'mesa' 'zlib' 
'hicolor-icon-theme')
+depends=('libgl' 'sdl2' 'sdl2_image' 'sdl2_mixer' 'libpng' 'zlib' 
'hicolor-icon-theme')
 makedepends=('subversion' 'gendesk' 'imagemagick')
 
source=('tesseract::svn://svn.tuxfamily.org/svnroot/tesseract/main#revision=1688'
 'tesseract.sh')



[arch-commits] Commit in xfce4-power-manager/repos (10 files)

2014-09-25 Thread Evangelos Foutras
Date: Thursday, September 25, 2014 @ 21:51:44
  Author: foutrelis
Revision: 223012

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

Added:
  xfce4-power-manager/repos/testing-i686/PKGBUILD
(from rev 223011, xfce4-power-manager/trunk/PKGBUILD)
  xfce4-power-manager/repos/testing-i686/xfce4-power-manager.install
(from rev 223011, xfce4-power-manager/trunk/xfce4-power-manager.install)
  xfce4-power-manager/repos/testing-x86_64/PKGBUILD
(from rev 223011, xfce4-power-manager/trunk/PKGBUILD)
  xfce4-power-manager/repos/testing-x86_64/xfce4-power-manager.install
(from rev 223011, xfce4-power-manager/trunk/xfce4-power-manager.install)
Deleted:
  xfce4-power-manager/repos/testing-i686/PKGBUILD
  xfce4-power-manager/repos/testing-i686/fix-handle-lid-switch.patch
  xfce4-power-manager/repos/testing-i686/xfce4-power-manager.install
  xfce4-power-manager/repos/testing-x86_64/PKGBUILD
  xfce4-power-manager/repos/testing-x86_64/fix-handle-lid-switch.patch
  xfce4-power-manager/repos/testing-x86_64/xfce4-power-manager.install

+
 /PKGBUILD  |   78 +++
 /xfce4-power-manager.install   |   36 
 testing-i686/PKGBUILD  |   48 
 testing-i686/fix-handle-lid-switch.patch   |   30 --
 testing-i686/xfce4-power-manager.install   |   18 --
 testing-x86_64/PKGBUILD|   48 
 testing-x86_64/fix-handle-lid-switch.patch |   30 --
 testing-x86_64/xfce4-power-manager.install |   18 --
 8 files changed, 114 insertions(+), 192 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-09-25 19:51:26 UTC (rev 223011)
+++ testing-i686/PKGBUILD   2014-09-25 19:51:44 UTC (rev 223012)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Tobias Kieslich 
-
-pkgname=xfce4-power-manager
-pkgver=1.4.0
-pkgrel=2
-pkgdesc="Power manager for Xfce desktop"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/";
-license=('GPL2')
-groups=('xfce4')
-depends=('xfce4-panel' 'upower' 'libnotify' 'hicolor-icon-theme')
-makedepends=('intltool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/apps/$pkgname/1.4/$pkgname-$pkgver.tar.bz2
-fix-handle-lid-switch.patch)
-sha256sums=('3fba9d1bdb2f535e5a5c2a832503368d26629d6fe496c547fa93a3278d2cf6e7'
-'18ff68052e7a3ab3df920bed1b3add4e8f22dd99a05cdf3b50e5cac45e4c719c')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # https://bugzilla.xfce.org/show_bug.cgi?id=11160
-  patch -Np1 -i ../fix-handle-lid-switch.patch
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-network-manager \
---enable-polkit \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-power-manager/repos/testing-i686/PKGBUILD (from rev 223011, 
xfce4-power-manager/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-09-25 19:51:44 UTC (rev 223012)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Tobias Kieslich 
+
+pkgname=xfce4-power-manager
+pkgver=1.4.1
+pkgrel=1
+pkgdesc="Power manager for Xfce desktop"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+depends=('xfce4-panel' 'upower' 'libnotify' 'hicolor-icon-theme')
+makedepends=('intltool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/apps/$pkgname/1.4/$pkgname-$pkgver.tar.bz2)
+sha256sums=('16a9e9bf3e0f8480d05b248817fbdc59e701e9161d3d0c7e53f3de28ed491f58')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-network-manager \
+--enable-polkit \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: testing-i686/fix-handle-lid-switch.patch
===
--- testing-i686/fix-handle-lid-switch.patch2014-09-25 19:51:26 UTC (rev 
223011)
+++ testing-i686/fix-handle-lid-switch.patch2014-09-25 19:51:44 UTC (rev 
223012)
@@ -1,30 +0,0 @@
-From d61db320d8a893a292812256470a873c7ce1b35d Mon Sep 17 00:00:00 2001
-From: Eric Koegel 
-Date: Mon, 15 Sep 2014 14:35:00 +0300
-Subject: [PATCH] Fix handle lid switch with loginD (Bug 11160)
-
-The xfconf settings logic for logind interactions were inverted
-in commit: 03193df6cad651

[arch-commits] Commit in xfce4-power-manager/trunk (2 files)

2014-09-25 Thread Evangelos Foutras
Date: Thursday, September 25, 2014 @ 21:51:26
  Author: foutrelis
Revision: 223011

upgpkg: xfce4-power-manager 1.4.1-1

New upstream release.

Modified:
  xfce4-power-manager/trunk/PKGBUILD
Deleted:
  xfce4-power-manager/trunk/fix-handle-lid-switch.patch

-+
 PKGBUILD|   17 -
 fix-handle-lid-switch.patch |   30 --
 2 files changed, 4 insertions(+), 43 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 19:43:44 UTC (rev 223010)
+++ PKGBUILD2014-09-25 19:51:26 UTC (rev 223011)
@@ -3,8 +3,8 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=xfce4-power-manager
-pkgver=1.4.0
-pkgrel=2
+pkgver=1.4.1
+pkgrel=1
 pkgdesc="Power manager for Xfce desktop"
 arch=('i686' 'x86_64')
 url="http://www.xfce.org/";
@@ -13,18 +13,9 @@
 depends=('xfce4-panel' 'upower' 'libnotify' 'hicolor-icon-theme')
 makedepends=('intltool')
 install=$pkgname.install
-source=(http://archive.xfce.org/src/apps/$pkgname/1.4/$pkgname-$pkgver.tar.bz2
-fix-handle-lid-switch.patch)
-sha256sums=('3fba9d1bdb2f535e5a5c2a832503368d26629d6fe496c547fa93a3278d2cf6e7'
-'18ff68052e7a3ab3df920bed1b3add4e8f22dd99a05cdf3b50e5cac45e4c719c')
+source=(http://archive.xfce.org/src/apps/$pkgname/1.4/$pkgname-$pkgver.tar.bz2)
+sha256sums=('16a9e9bf3e0f8480d05b248817fbdc59e701e9161d3d0c7e53f3de28ed491f58')
 
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # https://bugzilla.xfce.org/show_bug.cgi?id=11160
-  patch -Np1 -i ../fix-handle-lid-switch.patch
-}
-
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 

Deleted: fix-handle-lid-switch.patch
===
--- fix-handle-lid-switch.patch 2014-09-25 19:43:44 UTC (rev 223010)
+++ fix-handle-lid-switch.patch 2014-09-25 19:51:26 UTC (rev 223011)
@@ -1,30 +0,0 @@
-From d61db320d8a893a292812256470a873c7ce1b35d Mon Sep 17 00:00:00 2001
-From: Eric Koegel 
-Date: Mon, 15 Sep 2014 14:35:00 +0300
-Subject: [PATCH] Fix handle lid switch with loginD (Bug 11160)
-
-The xfconf settings logic for logind interactions were inverted
-in commit: 03193df6cad651841e8d9960335b4a3bf13afdad
-However the handle lid switch in the xfpm_manager_lid_changed_cb
-also needs to be inverted. This patch fixes it. Patch submitted
-by Simon P.

- src/xfpm-manager.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/xfpm-manager.c b/src/xfpm-manager.c
-index d6c533c..9549b66 100644
 a/src/xfpm-manager.c
-+++ b/src/xfpm-manager.c
-@@ -335,7 +335,7 @@ xfpm_manager_lid_changed_cb (XfpmPower *power, gboolean 
lid_is_closed, XfpmManag
-   LOGIND_HANDLE_LID_SWITCH, &logind_handle_lid_switch,
-   NULL);
- 
--if (!logind_handle_lid_switch)
-+if (logind_handle_lid_switch)
- return;
- }
- 
--- 
-2.1.0
-



[arch-commits] Commit in libreoffice-fresh-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2014-09-25 Thread Andreas Radke
Date: Thursday, September 25, 2014 @ 21:43:44
  Author: andyrtr
Revision: 223010

archrelease: copy trunk to extra-any

Added:
  libreoffice-fresh-i18n/repos/extra-any/PKGBUILD
(from rev 223009, libreoffice-fresh-i18n/trunk/PKGBUILD)
Deleted:
  libreoffice-fresh-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  709 ++---
 1 file changed, 354 insertions(+), 355 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 19:41:19 UTC (rev 223009)
+++ PKGBUILD2014-09-25 19:43:44 UTC (rev 223010)
@@ -1,355 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=libreoffice-fresh-i18n
-
-pkgver=4.3.1
-pkgrel=1
-_rcver=${pkgver}.2
-#_oodlver=${pkgver}.0.beta1
-_oodlver=${pkgver}
-
-arch=('any')
-url="http://www.documentfoundation.org";
-license=('LGPL')
-makedepends=('rpmextract')
-
-#http://download.documentfoundation.org/mirrors/all.html
-_url="http://download.documentfoundation.org/libreoffice/stable";
-#_url="http://download.documentfoundation.org/libreoffice/testing";
-#_url="http://dev-builds.libreoffice.org/pre-releases";
-#_url="http://www.libreoffice.org/download/pre-releases";
-
-#_url+="/${pkgver}-rc2/rpm/x86"
-_url+="/${pkgver}/rpm/x86"
-#_url+="/rpm/x86"
-
-_languages=(
-  'af"Afrikaans"'
-  'am"Amharic"'
-  'ar"Arabic"'
-  'as"Assamese (India)"'
-  'ast   "Asturianu"'
-  'be"Belarusian"'
-  'bg"Bulgarian"'
-  'bn"Bengali"'
-  'bn-IN "Bengali (India)"'
-  'bo"Tibetan"'
-  'br"Breton"'
-  'brx   "Bodo"'
-  'bs"Bosnian"'
-  'ca"Catalan"'
-  'ca-valencia   "Catalan (Valencia)"'
-  'cs"Czech"'
-  'cy"Welsh"'
-  'da"Danish"'
-  'de"German"'
-  'dgo   "Dogri"'
-  'dz"Dzongkha"'
-  'el"Greek"'
-  'en-GB "English (GB)"'
-  'en-ZA "English (ZA)"'
-  'eo"Esperanto"'
-  'es"Spanish"'
-  'et"Estonian"'
-  'eu"Basque"'
-  'fa"Persian"'
-  'fi"Finnish"'
-  'fr"French"'
-  'ga"Irish"'
-  'gd"Gaelic (Scottish)"'
-  'gl"Galician"'
-  'gu"Gujarati"'
-  'he"Hebrew"'
-  'hi"Hindi"'
-  'hr"Croatian"'
-  'hu"Hungarian"'
-  'id"Indonesian"'
-  'is"Icelandic"'
-  'it"Italian"'
-  'ja"Japanese"'
-  'ka"Georgian"'
-  'kk"Kazakh"'
-  'km"Khmer (Cambodia)"'
-  'kmr-Latn  "Kurdish"'
-  'kn"Kannada"'
-  'ko"Korean"'
-  'kok   "Konkani"'
-  'ks"Kashmiri"'
-  'lb"Luxembourgish"'
-  'lo"Lao"'
-  'lt"Lithuanian"'
-  'lv"Latvian"'
-  'mai   "Maithili"'
-  'mk"Macedonian"'
-  'ml"Malayalam"'
-  'mn"Mongolian"'
-  'mni   "Manipuri"'
-  'mr"Marathi"'
-  'my"Burmese"'
-  'nb"Norwegian Bokmal"'
-  'ne"Nepali"'
-  'nl"Dutch"'
-  'nn"Norwegian Nynorsk"'
-  'nr"Ndebele (South)"'
-  'nso   "Northern Sotho"'
-  'oc"Occitan"'
-  'om"Oromo"'
-  'or"Oriya"'
-  'pa-IN "Punjabi (India)"'
-  'pl"Polish"'
-  'pt"Portuguese"'
-  'pt-BR "Portuguese (Brasil)"'
-  'ro"Romanian"'
-  'ru"Russian"'
-  'rw"Kinyarwanda"'
-  'sa-IN "Sanskrit (India)"'
-  'sat   "Santali"'
-  'sd"Sindhi"'
-  'si"Singhalese"'
-  'sid   "Sidama"'
-  'sk"Slovak"'
-  'sl"Slovenian"'
-  'sq"Albanien"'
-  'sr"Serbian"'
-  'sr-Latn   "Serbian (Latin)"'
-  'ss"Swati"'
-  'st"Southern Sotho"'
-  'sv"Swedish"'
-  'sw-TZ "Swahili (Tanzania)"'
-  'ta"Tamil"'
-  'te"Telugu"'
-  'tg"Tajik"'
-  'th"Thai"'
-  'tn"Tswana"'
-  'tr"Turkish"'
-  'ts"Tsonga"'
-  'tt"Tatar"'
-  'ug"Uighur"'
-  'uk"Ukrainian"'
-  'uz"Uzbek"'
-  've"Venda"'
-  'vi"Vietnamese"'
-  'xh"Xhosa"'
-  'zh-CN "Chinese (simplified)"'
-  'zh-TW "Chinese (traditional)"'
-  'zu"Zulu"'
-)
-
-prepare() {
-  for i in ${pkgname[@]}; do
-_pkglang=${i#*-}
-_pkglang=${_pkglang/fresh-}
-
-echo ${_pkglang} " unpacking..."
-cd 
"${srcdir}"/LibreOffice_${_rcver}_Linux_x86_rpm_langpack_${_pkglang}/RPMS
-
-# remove dictionaries if shipped - we ship them now in s

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

2014-09-25 Thread Andreas Radke
Date: Thursday, September 25, 2014 @ 21:41:19
  Author: andyrtr
Revision: 223009

upgpkg: libreoffice-fresh-i18n 4.3.2-1

upstream update 4.3.2

Modified:
  libreoffice-fresh-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  335 ++---
 1 file changed, 167 insertions(+), 168 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 19:29:19 UTC (rev 223008)
+++ PKGBUILD2014-09-25 19:41:19 UTC (rev 223009)
@@ -4,7 +4,7 @@
 
 pkgbase=libreoffice-fresh-i18n
 
-pkgver=4.3.1
+pkgver=4.3.2
 pkgrel=1
 _rcver=${pkgver}.2
 #_oodlver=${pkgver}.0.beta1
@@ -136,6 +136,172 @@
   'zh-TW "Chinese (traditional)"'
   'zu"Zulu"'
 )
+md5sums=('2a988d52e355ed866b654ab192a4f4cc'
+ 'bc43e914fc77eb576ec17ee7bdb4ac89'
+ 'cbe12081a9cb4fa685b9f46e38a70834'
+ 'e52b42a8f48345ceb9ea449723232c24'
+ '1143ddd0f7bf1427b6e906866c0b2de0'
+ '9d2a8802a3966e15ac1d487788316635'
+ '98b99cc4d85453b4dd8474e8b6c4c461'
+ '16a6fca119d8d57b4bc80a09db251a69'
+ '59c58cfdf14e6caf5ca6db6d1e5a1b92'
+ '6dc8ceabf2f9dde8928ac58daa53d93e'
+ '57ed494cb86b56ce4e8a13717987cb63'
+ '3d6fa6b271cc1c96b29cc673ef5c097d'
+ 'b0d24c95e1d61cfaa8f1d27fc8f1276d'
+ 'f9cc6e667a82ede9cc5aee93265a1f87'
+ 'cc05d262dfe15ecef9bd3a212a632e78'
+ '6a34ff2eaced6c21fa8a01ae68da224a'
+ '356c3c8b2a2603583fff305b71278f64'
+ '2e31bdd3ef0cc3dc25ce50a490aca7f6'
+ '74376fb675fba48bea595b60eb51b810'
+ '33e990ea280e13220dbc907012ace1c1'
+ 'fa1210853ded733902fd1372838ceafc'
+ 'b4b2bf42968cc7b4f16d3c5ad4cbcc01'
+ 'a9f972b02a6de2505c2da3957f850c2d'
+ '8f3bda562c65d4718bb90db6815d0614'
+ '47fcc9fe996a767a5a435a89d43ad391'
+ '7edc3284077acd8d53509905ee97203a'
+ 'aaf5dfedd28cb7d7e3196fc2d2497531'
+ 'c63875d5ee4d8d97a28b1e6122c92ab7'
+ '2861bca33a8c9f1b9cc757357a875de9'
+ '94a7b186d566027e194f49bd5d0964c8'
+ '530f1ddcff4f9ab65ef585c4949bb5f0'
+ '60937667a2b14ee2410664ee5eedb492'
+ '714dcdca19cb0777ceb623080f22c0ad'
+ '59bd17d79d4cc6a73ef720ff1e4813e4'
+ '0a65e09d4ba54a704fbfdfd033c6aa41'
+ '53968d893ddfc4786a03b88b6e4ed360'
+ 'cffa0f4fa64c80192e97d59da45e5ce4'
+ 'fb2bdd81877b42f57de0b56b35d7ef4e'
+ '855ddcaaefae2f8054be6ce019f8f099'
+ '4ae53a7db6010ac3afa8810dc9b1807f'
+ '50e5ef0a748ef07bb345802f4f3309bb'
+ 'ced120adaa94445ff2c620eef1fe0426'
+ '5bd81e814122e1ee0a3c4d6205fee85a'
+ 'b3a91ed1489d7508fc27d64137454f6d'
+ '9f0740780a2f3d7e6ccb74b5c4ca2f92'
+ 'cc8f203d25cd6fb8f5f7ba4cf3c2dc6e'
+ '15cabe3e0ff7bca27e7475615dfc8341'
+ 'd713403b02691b2e28ab46e9b63e'
+ 'c508b2b94a39b2fbd98dedfc22c0dae4'
+ '069cfbad00099f102d953b74bebaf4d4'
+ 'e4f393e9cd29eea2cf3383df350f84ca'
+ '8c23ae2a6acf208e1bcede9a090b513f'
+ '5f6df38ee0a0b588e940a021296e3503'
+ '625ebef47709a24dcdee083a55d46f9d'
+ '0990da96b41e5084b243b5807461831b'
+ '9e1ae6c1f79b4803f6f2f9d9052010b0'
+ '0881fdf94fe13e5c3625e280c61944f0'
+ '8bf449cb6504fe6e2e8f42074b75757b'
+ '9167bbdd9b25c7cc79fcac1545ed395d'
+ '07ca3c3d9886635be52668266581c617'
+ '2bd37a61c29a45927d42cdd39323bdac'
+ 'a29d86ecb43aca833d74ad46ea025c63'
+ 'b3fd495774330a9b2326609875eb7cd3'
+ 'c15b92d5ab8841db586004934d0a8ca8'
+ 'fd2da82109446a6108bfa8a744926d72'
+ '91f502426cf3524e603754a9d6c1bf3a'
+ '4c428c8fb956b298197082e1e9b3c0c0'
+ 'c4b418db713f206cd18ec260efcc36cb'
+ '0928b4b084ec96eb20d58511504bbd3b'
+ '4695bd134ecc76b615f76fe248718c57'
+ '55a0685d68f31aad9fda1d697204f46b'
+ 'b7d5d022189076382708000f3a4fa1e3'
+ '96dd2716663336d71b4c1632d38b443d'
+ '24de7555a1e72337420a899a5ffa83c4'
+ '91fef5ff0642e8bd1d9ed76616abe0e9'
+ '9e349a6ef0b2ea8d2d10372e7c818545'
+ '332428f98bdec8ea07abf00caebfdbe0'
+ 'e1fd1502f38e3c59053fbbe80012adef'
+ 'a8759b6eee5205fb9bff48aae4409131'
+ 'fb3b3c0b1fb6c459eafe283f3385e6bf'
+ '9f6b16b042e9a234f740fe13c238f03c'
+ 'e7516d924f41658124f92ea5e9571774'
+ '518353b89148894a206d476cebeb44b6'
+ '9717f76cfe2b7d1811ccbb4aa2254adc'
+ '552c1c596f7fd585fbf5bfc78a6c6470'
+ '78ca429473864465f7ac3c3a62c62523'
+ 'f221531d6f63a7716c9a90ba0c9e595b'
+ '24dc2e947346d40721c4794e285f29ce'
+ '77ede96d39af6e6fec5efe182ce603b7'
+ '596fe262fc9e45affc99333e5c865e98'
+ '77b8c8eeaf41dde468be2ccabf4b2e23'
+ '8015cf57ee9640bd0e621575850c8712'
+ '0a7415acb578b18fa88b053fc7c5bb3b'
+ '276507fe2435d87de20e3b42458d3d52

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

2014-09-25 Thread Alexander Rødseth
Date: Thursday, September 25, 2014 @ 21:33:28
  Author: arodseth
Revision: 119578

archrelease: copy trunk to community-any

Added:
  catfish/repos/community-any/PKGBUILD
(from rev 119577, catfish/trunk/PKGBUILD)
  catfish/repos/community-any/catfish.install
(from rev 119577, catfish/trunk/catfish.install)
Deleted:
  catfish/repos/community-any/PKGBUILD
  catfish/repos/community-any/catfish.install

-+
 PKGBUILD|   92 +++---
 catfish.install |   22 ++--
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 19:33:17 UTC (rev 119577)
+++ PKGBUILD2014-09-25 19:33:28 UTC (rev 119578)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Alexander Fehr 
-
-pkgname=catfish
-pkgver=1.2.1
-pkgrel=1
-pkgdesc='Versatile file searching tool'
-arch=('any')
-url='https://launchpad.net/catfish-search'
-license=('GPL')
-install="$pkgname.install"
-depends=('gtk3' 'python2-gobject' 'python2-xdg' 'xdg-utils' 'python2-pexpect')
-makedepends=('intltool')
-optdepends=('zeitgeist: integration with zeitgeist'
-'findutils: filename search'
-'mlocate: filename search'
-'tracker: fulltext search'
-'strigi: fulltext search'
-'pinot: fulltext search')
-source=("https://launchpad.net/catfish-search/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.bz2";)
-sha256sums=('07e30223d5fed47e78768fad7860e2b56ec35661ec98dfa8323c5f83753cca16')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  sed -i '1s/python/python2/' {bin,catfish,catfish_lib}/*.py build.py
-  sed -i 's|ln -sf $(PREFIX)/share|ln -sf ..|' Makefile.in.in
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --python=python2
-  make
-}
-
-package () {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-  install -d "$pkgdir"/usr/share/pixmaps
-  ln -s "/usr/share/icons/hicolor/scalable/apps/$pkgname.svg" \
-"$pkgdir/usr/share/pixmaps/$pkgname.svg"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: catfish/repos/community-any/PKGBUILD (from rev 119577, 
catfish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-25 19:33:28 UTC (rev 119578)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Alexander Fehr 
+
+pkgname=catfish
+pkgver=1.2.2
+pkgrel=1
+pkgdesc='Versatile file searching tool'
+arch=('any')
+url='https://launchpad.net/catfish-search'
+license=('GPL')
+install="$pkgname.install"
+depends=('gtk3' 'python2-gobject' 'python2-xdg' 'xdg-utils' 'python2-pexpect')
+makedepends=('intltool')
+optdepends=('zeitgeist: integration with zeitgeist'
+'findutils: filename search'
+'mlocate: filename search'
+'tracker: fulltext search'
+'strigi: fulltext search'
+'pinot: fulltext search')
+source=("https://launchpad.net/catfish-search/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.bz2";)
+sha256sums=('0e92844e761207b3d3086c45b26fccf83f0ebced741e1af33d8590779f25eedf')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  sed -i '1s/python/python2/' {bin,catfish,catfish_lib}/*.py build.py
+  sed -i 's|ln -sf $(PREFIX)/share|ln -sf ..|' Makefile.in.in
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --python=python2
+  make
+}
+
+package () {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+  install -d "$pkgdir"/usr/share/pixmaps
+  ln -s "/usr/share/icons/hicolor/scalable/apps/$pkgname.svg" \
+"$pkgdir/usr/share/pixmaps/$pkgname.svg"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: catfish.install
===
--- catfish.install 2014-09-25 19:33:17 UTC (rev 119577)
+++ catfish.install 2014-09-25 19:33:28 UTC (rev 119578)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: catfish/repos/community-any/catfish.install (from rev 119577, 
catfish/trunk/catfish.install)
===
--- catfish.install (rev 0)
+++ catfish.install 2014-09-25 19:33:28 UTC (rev 119578)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2014-09-25 Thread Alexander Rødseth
Date: Thursday, September 25, 2014 @ 21:33:17
  Author: arodseth
Revision: 119577

upgpkg: catfish 1.2.2-1

Modified:
  catfish/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 18:52:16 UTC (rev 119576)
+++ PKGBUILD2014-09-25 19:33:17 UTC (rev 119577)
@@ -4,7 +4,7 @@
 # Contributor: Alexander Fehr 
 
 pkgname=catfish
-pkgver=1.2.1
+pkgver=1.2.2
 pkgrel=1
 pkgdesc='Versatile file searching tool'
 arch=('any')
@@ -20,7 +20,7 @@
 'strigi: fulltext search'
 'pinot: fulltext search')
 
source=("https://launchpad.net/catfish-search/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.bz2";)
-sha256sums=('07e30223d5fed47e78768fad7860e2b56ec35661ec98dfa8323c5f83753cca16')
+sha256sums=('0e92844e761207b3d3086c45b26fccf83f0ebced741e1af33d8590779f25eedf')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2014-09-25 Thread Gaetan Bisson
Date: Thursday, September 25, 2014 @ 21:29:19
  Author: bisson
Revision: 223008

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

Added:
  mpd/repos/extra-i686/PKGBUILD
(from rev 223007, mpd/trunk/PKGBUILD)
  mpd/repos/extra-i686/conf
(from rev 223007, mpd/trunk/conf)
  mpd/repos/extra-i686/install
(from rev 223007, mpd/trunk/install)
  mpd/repos/extra-i686/tmpfiles.d
(from rev 223007, mpd/trunk/tmpfiles.d)
  mpd/repos/extra-x86_64/PKGBUILD
(from rev 223007, mpd/trunk/PKGBUILD)
  mpd/repos/extra-x86_64/conf
(from rev 223007, mpd/trunk/conf)
  mpd/repos/extra-x86_64/install
(from rev 223007, mpd/trunk/install)
  mpd/repos/extra-x86_64/tmpfiles.d
(from rev 223007, mpd/trunk/tmpfiles.d)
Deleted:
  mpd/repos/extra-i686/PKGBUILD
  mpd/repos/extra-i686/conf
  mpd/repos/extra-i686/install
  mpd/repos/extra-i686/tmpfiles.d
  mpd/repos/extra-x86_64/PKGBUILD
  mpd/repos/extra-x86_64/conf
  mpd/repos/extra-x86_64/install
  mpd/repos/extra-x86_64/tmpfiles.d

-+
 /PKGBUILD   |  106 ++
 /conf   |   12 +
 /install|   22 +
 /tmpfiles.d |2 
 extra-i686/PKGBUILD |   55 ---
 extra-i686/conf |6 --
 extra-i686/install  |   11 
 extra-i686/tmpfiles.d   |1 
 extra-x86_64/PKGBUILD   |   55 ---
 extra-x86_64/conf   |6 --
 extra-x86_64/install|   11 
 extra-x86_64/tmpfiles.d |1 
 12 files changed, 142 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-25 19:28:35 UTC (rev 223007)
+++ extra-i686/PKGBUILD 2014-09-25 19:29:19 UTC (rev 223008)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Angel Velasquez 
-# Contributor: Andrea Scarpino 
-# Contributor: Damir Perisa 
-# Contributor: Ben 
-
-pkgname=mpd
-pkgver=0.18.14
-pkgrel=3
-pkgdesc='Flexible, powerful, server-side application for playing music'
-url='http://www.musicpd.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
- 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient')
-makedepends=('doxygen')
-source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-'tmpfiles.d'
-'conf')
-sha1sums=('5a4b5f5b0447994f3fc186ffd7c16cabeeed2978' 'SKIP'
-  'f4d5922abb69abb739542d8e93f4dfd748acdad7'
-  '291fd5cda9f0845834a553017327c4586bd853f6')
-
-backup=('etc/mpd.conf')
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-libmpdclient \
-   --enable-jack \
-   --enable-soundcloud \
-   --enable-pipe-output \
-   --enable-pulse \
-   --disable-sidplay \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 ../conf "${pkgdir}"/etc/mpd.conf
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/mpd.conf
-   install -d -g 45 -o 45 "${pkgdir}"/var/lib/mpd/playlists
-
-   install -Dm644 "${pkgdir}"/usr/lib/systemd/{system,user}/mpd.service
-   sed \
-   -e '/\[Service\]/a User=mpd' \
-   -e '/WantedBy=/c WantedBy=default.target' \
-   -i "${pkgdir}"/usr/lib/systemd/user/mpd.service
-}

Copied: mpd/repos/extra-i686/PKGBUILD (from rev 223007, mpd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-25 19:29:19 UTC (rev 223008)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Angel Velasquez 
+# Contributor: Andrea Scarpino 
+# Contributor: Damir Perisa 
+# Contributor: Ben 
+
+pkgname=mpd
+pkgver=0.18.14
+pkgrel=4
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='http://www.musicpd.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
+ 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient')
+makedepends=('doxygen')
+source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+'tmpfiles.d'
+'conf')
+sha1sums=('5a4b5f5b0447994f3fc186ffd7c16cabeeed2978' 'SKIP'
+  'f4d5922abb69abb739542d8e93f4dfd748acdad7'
+  '291fd5cda9f0845834a553017327c4586bd853f6')
+
+backup=('etc/mpd.conf')
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure

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

2014-09-25 Thread Gaetan Bisson
Date: Thursday, September 25, 2014 @ 21:28:35
  Author: bisson
Revision: 223007

fix FS#42114

Modified:
  mpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 19:11:30 UTC (rev 223006)
+++ PKGBUILD2014-09-25 19:28:35 UTC (rev 223007)
@@ -7,7 +7,7 @@
 
 pkgname=mpd
 pkgver=0.18.14
-pkgrel=3
+pkgrel=4
 pkgdesc='Flexible, powerful, server-side application for playing music'
 url='http://www.musicpd.org/'
 license=('GPL')
@@ -48,8 +48,6 @@
install -d -g 45 -o 45 "${pkgdir}"/var/lib/mpd/playlists
 
install -Dm644 "${pkgdir}"/usr/lib/systemd/{system,user}/mpd.service
-   sed \
-   -e '/\[Service\]/a User=mpd' \
-   -e '/WantedBy=/c WantedBy=default.target' \
-   -i "${pkgdir}"/usr/lib/systemd/user/mpd.service
+   sed '/\[Service\]/a User=mpd' -i 
"${pkgdir}"/usr/lib/systemd/system/mpd.service
+   sed '/WantedBy=/c WantedBy=default.target' -i 
"${pkgdir}"/usr/lib/systemd/{system,user}/mpd.service
 }



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

2014-09-25 Thread Anatol Pomozov
Date: Thursday, September 25, 2014 @ 20:52:16
  Author: anatolik
Revision: 119576

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

Added:
  rethinkdb/repos/community-testing-i686/
  rethinkdb/repos/community-testing-i686/PKGBUILD
(from rev 119575, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-i686/boost_1.56_compat.patch
(from rev 119575, rethinkdb/trunk/boost_1.56_compat.patch)
  rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf
(from rev 119575, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-i686/rethinkdb.install
(from rev 119575, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-i686/rethinkdb.service
(from rev 119575, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-testing-x86_64/
  rethinkdb/repos/community-testing-x86_64/PKGBUILD
(from rev 119575, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-x86_64/boost_1.56_compat.patch
(from rev 119575, rethinkdb/trunk/boost_1.56_compat.patch)
  rethinkdb/repos/community-testing-x86_64/rethinkdb-tmpfile.conf
(from rev 119575, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.install
(from rev 119575, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.service
(from rev 119575, rethinkdb/trunk/rethinkdb.service)

--+
 community-testing-i686/PKGBUILD  |   67 +
 community-testing-i686/boost_1.56_compat.patch   |   13 
 community-testing-i686/rethinkdb-tmpfile.conf|1 
 community-testing-i686/rethinkdb.install |   37 +++
 community-testing-i686/rethinkdb.service |   12 +++
 community-testing-x86_64/PKGBUILD|   67 +
 community-testing-x86_64/boost_1.56_compat.patch |   13 
 community-testing-x86_64/rethinkdb-tmpfile.conf  |1 
 community-testing-x86_64/rethinkdb.install   |   37 +++
 community-testing-x86_64/rethinkdb.service   |   12 +++
 10 files changed, 260 insertions(+)

Copied: rethinkdb/repos/community-testing-i686/PKGBUILD (from rev 119575, 
rethinkdb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-09-25 18:52:16 UTC (rev 119576)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=1.14.1
+pkgrel=1
+pkgdesc='An open-source distributed database built with love.'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses gperftools curl)
+makedepends=(boost python2 wget)
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  http://download.rethinkdb.com/dist/rethinkdb-$pkgver.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+  boost_1.56_compat.patch
+)
+sha256sums=('a8c3625a2cc916b17633841b2f9ce34fe18b677e3a13556fac9ac184c45a3a2f'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2'
+'1c55b12df452ceb2470d3ec48dde21bcdc2785be371f6f0858af034e282b1f21')
+
+prepare() {
+  cd rethinkdb-$pkgver
+  # boost 1.56 workaround https://github.com/rethinkdb/rethinkdb/issues/3044
+  rm src/unittest/print_secondary.cc
+  patch -p1 < ../boost_1.56_compat.patch
+}
+
+build() {
+  cd rethinkdb-$pkgver
+  export PYTHON=/usr/bin/python2
+  ./configure CXXFLAGS="-DBOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES" --fetch 
v8 --dynamic all --enable-precompiled-web --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+check() {
+  cd rethinkdb-$pkgver
+
+  make build/release/rethinkdb-unittest
+  # SindexEraseRange failure https://github.com/rethinkdb/rethinkdb/issues/2042
+  ./build/release/rethinkdb-unittest #--gtest_filter=-RDBBtree.SindexEraseRange
+  # some tests might be flaky on btrfs filesystem!
+}
+
+package() {
+  cd rethinkdb-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/rethinkdb-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb.service 
"$pkgdir"/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  mv "$pkgdir"/etc/rethinkdb/default.conf.sample 
"$pkgdir"/etc/rethinkdb/instances.d/default.conf
+  sed -e 's|# directory=/var/lib/rethinkdb|directory=/var/lib/rethinkdb|' \
+  -e 's|# 
pid-file=/var/run/rethinkdb/rethinkdb.pid|pid-file=/var/run/rethinkdb/default.pid|'
 \
+  -i "$pkgdir"/etc/rethinkdb/instances.d/default.conf
+
+  # Arch uses systemd, no need for init.d scripts
+  rm -r "$pkgdir"/etc/init.d
+}

Copied: rethinkdb/repos/community-testing-i686/boost_1.56_compat.patch (from 

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

2014-09-25 Thread Anatol Pomozov
Date: Thursday, September 25, 2014 @ 20:51:12
  Author: anatolik
Revision: 119575

Remove wrong repository dirs

Deleted:
  rethinkdb/repos/testing-i686/
  rethinkdb/repos/testing-x86_64/



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

2014-09-25 Thread Anatol Pomozov
Date: Thursday, September 25, 2014 @ 20:47:23
  Author: anatolik
Revision: 119574

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

Added:
  rethinkdb/repos/testing-i686/
  rethinkdb/repos/testing-i686/PKGBUILD
(from rev 119573, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/testing-i686/boost_1.56_compat.patch
(from rev 119573, rethinkdb/trunk/boost_1.56_compat.patch)
  rethinkdb/repos/testing-i686/rethinkdb-tmpfile.conf
(from rev 119573, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/testing-i686/rethinkdb.install
(from rev 119573, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/testing-i686/rethinkdb.service
(from rev 119573, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/testing-x86_64/
  rethinkdb/repos/testing-x86_64/PKGBUILD
(from rev 119573, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/testing-x86_64/boost_1.56_compat.patch
(from rev 119573, rethinkdb/trunk/boost_1.56_compat.patch)
  rethinkdb/repos/testing-x86_64/rethinkdb-tmpfile.conf
(from rev 119573, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/testing-x86_64/rethinkdb.install
(from rev 119573, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/testing-x86_64/rethinkdb.service
(from rev 119573, rethinkdb/trunk/rethinkdb.service)

+
 testing-i686/PKGBUILD  |   67 +++
 testing-i686/boost_1.56_compat.patch   |   13 ++
 testing-i686/rethinkdb-tmpfile.conf|1 
 testing-i686/rethinkdb.install |   37 +
 testing-i686/rethinkdb.service |   12 +
 testing-x86_64/PKGBUILD|   67 +++
 testing-x86_64/boost_1.56_compat.patch |   13 ++
 testing-x86_64/rethinkdb-tmpfile.conf  |1 
 testing-x86_64/rethinkdb.install   |   37 +
 testing-x86_64/rethinkdb.service   |   12 +
 10 files changed, 260 insertions(+)

Copied: rethinkdb/repos/testing-i686/PKGBUILD (from rev 119573, 
rethinkdb/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-09-25 18:47:23 UTC (rev 119574)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=1.14.1
+pkgrel=1
+pkgdesc='An open-source distributed database built with love.'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses gperftools curl)
+makedepends=(boost python2 wget)
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  http://download.rethinkdb.com/dist/rethinkdb-$pkgver.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+  boost_1.56_compat.patch
+)
+sha256sums=('a8c3625a2cc916b17633841b2f9ce34fe18b677e3a13556fac9ac184c45a3a2f'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2'
+'1c55b12df452ceb2470d3ec48dde21bcdc2785be371f6f0858af034e282b1f21')
+
+prepare() {
+  cd rethinkdb-$pkgver
+  # boost 1.56 workaround https://github.com/rethinkdb/rethinkdb/issues/3044
+  rm src/unittest/print_secondary.cc
+  patch -p1 < ../boost_1.56_compat.patch
+}
+
+build() {
+  cd rethinkdb-$pkgver
+  export PYTHON=/usr/bin/python2
+  ./configure CXXFLAGS="-DBOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES" --fetch 
v8 --dynamic all --enable-precompiled-web --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+check() {
+  cd rethinkdb-$pkgver
+
+  make build/release/rethinkdb-unittest
+  # SindexEraseRange failure https://github.com/rethinkdb/rethinkdb/issues/2042
+  ./build/release/rethinkdb-unittest #--gtest_filter=-RDBBtree.SindexEraseRange
+  # some tests might be flaky on btrfs filesystem!
+}
+
+package() {
+  cd rethinkdb-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/rethinkdb-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb.service 
"$pkgdir"/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  mv "$pkgdir"/etc/rethinkdb/default.conf.sample 
"$pkgdir"/etc/rethinkdb/instances.d/default.conf
+  sed -e 's|# directory=/var/lib/rethinkdb|directory=/var/lib/rethinkdb|' \
+  -e 's|# 
pid-file=/var/run/rethinkdb/rethinkdb.pid|pid-file=/var/run/rethinkdb/default.pid|'
 \
+  -i "$pkgdir"/etc/rethinkdb/instances.d/default.conf
+
+  # Arch uses systemd, no need for init.d scripts
+  rm -r "$pkgdir"/etc/init.d
+}

Copied: rethinkdb/repos/testing-i686/boost_1.56_compat.patch (from rev 119573, 
rethinkdb/trunk/boost_1.56_compat.patch)
===
--- testing-i686/boost_1.56_compat.patch(rev 0)
+++ testing-i686/boost_1.56_compat.patch

[arch-commits] Commit in rethinkdb/trunk (PKGBUILD boost_1.56_compat.patch)

2014-09-25 Thread Anatol Pomozov
Date: Thursday, September 25, 2014 @ 20:46:26
  Author: anatolik
Revision: 119573

upgpkg: rethinkdb 1.14.1-1

Added:
  rethinkdb/trunk/boost_1.56_compat.patch
Modified:
  rethinkdb/trunk/PKGBUILD

-+
 PKGBUILD|   20 +++-
 boost_1.56_compat.patch |   13 +
 2 files changed, 28 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 17:33:12 UTC (rev 119572)
+++ PKGBUILD2014-09-25 18:46:26 UTC (rev 119573)
@@ -4,7 +4,7 @@
 # Contributor: Sigmund Lahn 
 
 pkgname=rethinkdb
-pkgver=1.14.0
+pkgver=1.14.1
 pkgrel=1
 pkgdesc='An open-source distributed database built with love.'
 arch=(i686 x86_64)
@@ -19,23 +19,33 @@
   http://download.rethinkdb.com/dist/rethinkdb-$pkgver.tgz
   rethinkdb-tmpfile.conf
   rethinkdb.service
+  boost_1.56_compat.patch
 )
-sha256sums=('fd3ee289b33c43f3f78a730dabf21cf8d025f3a1fb9cf7dcd1139249c9baae5f'
+sha256sums=('a8c3625a2cc916b17633841b2f9ce34fe18b677e3a13556fac9ac184c45a3a2f'
 '656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
-'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2'
+'1c55b12df452ceb2470d3ec48dde21bcdc2785be371f6f0858af034e282b1f21')
 
+prepare() {
+  cd rethinkdb-$pkgver
+  # boost 1.56 workaround https://github.com/rethinkdb/rethinkdb/issues/3044
+  rm src/unittest/print_secondary.cc
+  patch -p1 < ../boost_1.56_compat.patch
+}
+
 build() {
   cd rethinkdb-$pkgver
   export PYTHON=/usr/bin/python2
-  ./configure --fetch v8 --dynamic all --enable-precompiled-web --prefix=/usr 
--sysconfdir=/etc
+  ./configure CXXFLAGS="-DBOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES" --fetch 
v8 --dynamic all --enable-precompiled-web --prefix=/usr --sysconfdir=/etc
   make
 }
 
 check() {
   cd rethinkdb-$pkgver
+
   make build/release/rethinkdb-unittest
   # SindexEraseRange failure https://github.com/rethinkdb/rethinkdb/issues/2042
-  ./build/release/rethinkdb-unittest --gtest_filter=-RDBBtree.SindexEraseRange
+  ./build/release/rethinkdb-unittest #--gtest_filter=-RDBBtree.SindexEraseRange
   # some tests might be flaky on btrfs filesystem!
 }
 

Added: boost_1.56_compat.patch
===
--- boost_1.56_compat.patch (rev 0)
+++ boost_1.56_compat.patch 2014-09-25 18:46:26 UTC (rev 119573)
@@ -0,0 +1,13 @@
+diff --git a/src/clustering/reactor/reactor_be_primary.cc 
b/src/clustering/reactor/reactor_be_primary.cc
+index 3f583fc..945f78b 100644
+--- a/src/clustering/reactor/reactor_be_primary.cc
 b/src/clustering/reactor/reactor_be_primary.cc
+@@ -290,7 +290,7 @@ void do_backfill(
+
+ bool check_that_we_see_our_broadcaster(const 
boost::optional > &maybe_a_
+ guarantee(maybe_a_business_card, "Not connected to ourselves\n");
+-return maybe_a_business_card.get();
++return static_cast(maybe_a_business_card.get());
+ }
+
+ bool reactor_t::attempt_backfill_from_peers(directory_entry_t 
*directory_entry,



[arch-commits] Commit in lib32-mesa/repos/multilib-testing-x86_64 (4 files)

2014-09-25 Thread Laurent Carlier
Date: Thursday, September 25, 2014 @ 19:33:12
  Author: lcarlier
Revision: 119572

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-mesa/repos/multilib-testing-x86_64/LICENSE
(from rev 119571, lib32-mesa/trunk/LICENSE)
  lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD
(from rev 119571, lib32-mesa/trunk/PKGBUILD)
Deleted:
  lib32-mesa/repos/multilib-testing-x86_64/LICENSE
  lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD

--+
 LICENSE  |  164 
 PKGBUILD |  311 ++---
 2 files changed, 238 insertions(+), 237 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-09-25 17:33:05 UTC (rev 119571)
+++ LICENSE 2014-09-25 17:33:12 UTC (rev 119572)
@@ -1,82 +0,0 @@
-Disclaimer
-
-Mesa is a 3-D graphics library with an API which is very similar to
-that of OpenGL*
-To the extent that Mesa utilizes the OpenGL command syntax or state
-machine, it is being used with authorization from Silicon Graphics,
-Inc.(SGI). However, the author does not possess an OpenGL license
-from SGI, and makes no claim that Mesa is in any way a compatible
-replacement for OpenGL or associated with SGI. Those who want a
-licensed implementation of OpenGL should contact a licensed
-vendor.
-
-Please do not refer to the library as MesaGL (for legal
-reasons). It's just Mesa or The Mesa 3-D graphics
-library
-
-* OpenGL is a trademark of Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-The Mesa distribution consists of several components.  Different copyrights
-and licenses apply to different components.  For example, GLUT is copyrighted
-by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
-device drivers are copyrighted by their authors.  See below for a list of
-Mesa's main components and the license for each.
-
-The core Mesa library is licensed according to the terms of the MIT license.
-This allows integration with the XFree86, Xorg and DRI projects.
-
-The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Attention, Contributors
-
-When contributing to the Mesa project you must agree to the licensing terms
-of the component to which you're contributing.
-The following section lists the primary components of the Mesa distribution
-and their respective licenses.
-
-
-Mesa Component Licenses
-
-Component Location   Primary Author  License
-
-Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
-
-Device driverssrc/mesa/drivers/* See drivers See drivers
-
-Ext headers   include/GL/glext.h SGI SGI Free B
-  include/GL/glxext.h
-
-GLUT  src/glut/  Mark KilgardMark's copyright
-
-Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
-
-SGI GLU library   src/glu/sgi/   SGI SGI Free B
-
-demo programs progs/demos/   various see source files
-
-X demos   progs/xdemos/  Brian Paul  see source files
-
-SGI demos progs/samples/ SGI SGI copyright
-
-RedBook demos progs/redbook/ SGI SGI copyright

Copied: lib32-mesa/repos/multilib-testing-x86_64/LICENSE (from rev 119571, 
lib32-mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-09-25 17:33:12 UTC (rev 119572)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+In

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

2014-09-25 Thread Laurent Carlier
Date: Thursday, September 25, 2014 @ 19:33:05
  Author: lcarlier
Revision: 119571

upgpkg: lib32-mesa 10.3.0-3

update dependencies

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 12:23:12 UTC (rev 119570)
+++ PKGBUILD2014-09-25 17:33:05 UTC (rev 119571)
@@ -5,7 +5,7 @@
 pkgbase=lib32-mesa
 pkgname=('lib32-mesa-dri' 'lib32-mesa-vdpau' 'lib32-mesa' 'lib32-mesa-libgl')
 pkgver=10.3.0
-pkgrel=2.1
+pkgrel=3
 arch=('x86_64')
 makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto'
  'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd'
@@ -63,10 +63,11 @@
 
 package_lib32-mesa-dri() {
   pkgdesc="Mesa DRI drivers (32-bit)"
-  depends=('lib32-expat' 'lib32-libdrm' 'lib32-libtxc_dxtn')
+  depends=('lib32-expat' 'lib32-libdrm' 'lib32-llvm-libs' 'lib32-elfutils' 
'lib32-libtxc_dxtn')
   conflicts=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri')
   provides=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri')
   replaces=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri')
+  optdepends=('lib32-mesa-vdpau: for accelerated video playback')
   
   install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
   # ati-dri
@@ -84,7 +85,7 @@
 
 package_lib32-mesa-vdpau() {
   pkgdesc="Mesa VDPAU drivers (32-bit)"
-  depends=('lib32-libdrm' 'lib32-libx11' 'lib32-expat' 'lib32-elfutils')
+  depends=('lib32-libdrm' 'lib32-libx11' 'lib32-expat' 'lib32-llvm-libs' 
'lib32-elfutils')
 
   install -m755 -d ${pkgdir}/usr/lib32
   mv -v ${srcdir}/fakeinstall/usr/lib32/vdpau ${pkgdir}/usr/lib32



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

2014-09-25 Thread Laurent Carlier
Date: Thursday, September 25, 2014 @ 19:13:03
  Author: lcarlier
Revision: 223005

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

Added:
  mesa/repos/testing-i686/LICENSE
(from rev 223004, mesa/trunk/LICENSE)
  mesa/repos/testing-i686/PKGBUILD
(from rev 223004, mesa/trunk/PKGBUILD)
  mesa/repos/testing-x86_64/LICENSE
(from rev 223004, mesa/trunk/LICENSE)
  mesa/repos/testing-x86_64/PKGBUILD
(from rev 223004, mesa/trunk/PKGBUILD)
Deleted:
  mesa/repos/testing-i686/LICENSE
  mesa/repos/testing-i686/PKGBUILD
  mesa/repos/testing-x86_64/LICENSE
  mesa/repos/testing-x86_64/PKGBUILD

-+
 /LICENSE|  164 +
 /PKGBUILD   |  348 ++
 testing-i686/LICENSE|   82 --
 testing-i686/PKGBUILD   |  173 --
 testing-x86_64/LICENSE  |   82 --
 testing-x86_64/PKGBUILD |  173 --
 6 files changed, 512 insertions(+), 510 deletions(-)

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


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

2014-09-25 Thread Laurent Carlier
Date: Thursday, September 25, 2014 @ 19:12:51
  Author: lcarlier
Revision: 223004

upgpkg: mesa 10.3.0-3

update dependencies

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 15:54:03 UTC (rev 223003)
+++ PKGBUILD2014-09-25 17:12:51 UTC (rev 223004)
@@ -5,7 +5,7 @@
 pkgbase=mesa
 pkgname=('opencl-mesa' 'mesa-dri' 'mesa-vdpau' 'mesa' 'mesa-libgl')
 pkgver=10.3.0
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'dri3proto' 'presentproto' 
  'libxshmfence' 'libxxf86vm'  'libxdamage' 'libvdpau' 'wayland' 
'elfutils' 'llvm' 'systemd'
@@ -83,6 +83,7 @@
   conflicts=('ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri')
   provides=('ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri')
   replaces=('ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri')
+  optdepends=('mesa-vdpau: for accelerated video playback')
 
   install -m755 -d ${pkgdir}/etc
   mv -v ${srcdir}/fakeinstall/etc/drirc ${pkgdir}/etc
@@ -105,7 +106,7 @@
 
 package_mesa-vdpau() {
   pkgdesc="Mesa VDPAU drivers"
-  depends=('libdrm' 'libx11' 'expat' 'elfutils')
+  depends=('libdrm' 'libx11' 'llvm-libs' 'expat' 'elfutils')
 
   install -m755 -d ${pkgdir}/usr/lib
   mv -v ${srcdir}/fakeinstall/usr/lib/vdpau ${pkgdir}/usr/lib



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

2014-09-25 Thread Pierre Schmitz
Date: Thursday, September 25, 2014 @ 16:05:04
  Author: pierre
Revision: 223001

upgpkg: php-composer 1.0.0.alpha8.503-1

Modified:
  php-composer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 02:23:38 UTC (rev 223000)
+++ PKGBUILD2014-09-25 14:05:04 UTC (rev 223001)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=php-composer
-pkgver=1.0.0.alpha8.473
+pkgver=1.0.0.alpha8.503
 pkgrel=1
 pkgdesc="Dependency Manager for PHP"
 arch=('any')



[arch-commits] Commit in php-composer/repos/extra-any (4 files)

2014-09-25 Thread Pierre Schmitz
Date: Thursday, September 25, 2014 @ 16:05:19
  Author: pierre
Revision: 223002

archrelease: copy trunk to extra-any

Added:
  php-composer/repos/extra-any/PKGBUILD
(from rev 223001, php-composer/trunk/PKGBUILD)
  php-composer/repos/extra-any/php.ini
(from rev 223001, php-composer/trunk/php.ini)
Deleted:
  php-composer/repos/extra-any/PKGBUILD
  php-composer/repos/extra-any/php.ini

--+
 PKGBUILD |  106 ++---
 php.ini  |   22 ++--
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 14:05:04 UTC (rev 223001)
+++ PKGBUILD2014-09-25 14:05:19 UTC (rev 223002)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=php-composer
-pkgver=1.0.0.alpha8.473
-pkgrel=1
-pkgdesc="Dependency Manager for PHP"
-arch=('any')
-license=('MIT')
-url='http://getcomposer.org/'
-depends=('php' 'php-intl')
-makedepends=('git' "${pkgname}")
-checkdepends=('mercurial')
-source=("${pkgname}::git+https://github.com/composer/composer.git";
-'php.ini')
-md5sums=('SKIP'
- '9d871623bc2ec0a37a7d78f708a7f838')
-
-pkgver() {
-   cd ${srcdir}/${pkgname}
-
-   local _tag=$(git tag -l --sort -version:refname | head -1)
-   echo "${_tag}.$(git rev-list ${_tag}.. --count)" | sed 's/-/./g'
-}
-
-prepare() {
-   cd ${srcdir}/${pkgname}
-
-   sed "s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g" -i src/Composer/Compiler.php
-   /usr/bin/composer -on install
-}
-
-check() {
-   cd ${srcdir}/${pkgname}
-
-   git config --global user.email "${USER}@${HOST}"
-   git config --global user.name "${USER}"
-   /usr/bin/php -nc ${srcdir}/php.ini vendor/phpunit/phpunit/phpunit.php
-}
-
-build() {
-   cd ${srcdir}/${pkgname}
-
-   /usr/bin/php -nc ${srcdir}/php.ini bin/compile
-}
-
-package() {
-   cd ${srcdir}/${pkgname}
-
-   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-   install -Dm644 ${srcdir}/php.ini 
${pkgdir}/usr/share/php-composer/php.ini
-   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
-}

Copied: php-composer/repos/extra-any/PKGBUILD (from rev 223001, 
php-composer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-25 14:05:19 UTC (rev 223002)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=php-composer
+pkgver=1.0.0.alpha8.503
+pkgrel=1
+pkgdesc="Dependency Manager for PHP"
+arch=('any')
+license=('MIT')
+url='http://getcomposer.org/'
+depends=('php' 'php-intl')
+makedepends=('git' "${pkgname}")
+checkdepends=('mercurial')
+source=("${pkgname}::git+https://github.com/composer/composer.git";
+'php.ini')
+md5sums=('SKIP'
+ '9d871623bc2ec0a37a7d78f708a7f838')
+
+pkgver() {
+   cd ${srcdir}/${pkgname}
+
+   local _tag=$(git tag -l --sort -version:refname | head -1)
+   echo "${_tag}.$(git rev-list ${_tag}.. --count)" | sed 's/-/./g'
+}
+
+prepare() {
+   cd ${srcdir}/${pkgname}
+
+   sed "s~^#!/usr/bin/env php~#!/usr/bin/php 
-nc/usr/share/${pkgname}/php.ini~g" -i src/Composer/Compiler.php
+   /usr/bin/composer -on install
+}
+
+check() {
+   cd ${srcdir}/${pkgname}
+
+   git config --global user.email "${USER}@${HOST}"
+   git config --global user.name "${USER}"
+   /usr/bin/php -nc ${srcdir}/php.ini vendor/phpunit/phpunit/phpunit.php
+}
+
+build() {
+   cd ${srcdir}/${pkgname}
+
+   /usr/bin/php -nc ${srcdir}/php.ini bin/compile
+}
+
+package() {
+   cd ${srcdir}/${pkgname}
+
+   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+   install -Dm644 ${srcdir}/php.ini 
${pkgdir}/usr/share/php-composer/php.ini
+   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
+}

Deleted: php.ini
===
--- php.ini 2014-09-25 14:05:04 UTC (rev 223001)
+++ php.ini 2014-09-25 14:05:19 UTC (rev 223002)
@@ -1,11 +0,0 @@
-[PHP]
-memory_limit=-1
-extension=openssl.so
-extension=phar.so
-extension=zip.so
-extension=curl.so
-extension=intl.so
-[Date]
-date.timezone=UTC
-[Phar]
-phar.readonly=Off

Copied: php-composer/repos/extra-any/php.ini (from rev 223001, 
php-composer/trunk/php.ini)
===
--- php.ini (rev 0)
+++ php.ini 2014-09-25 14:05:19 UTC (rev 223002)
@@ -0,0 +1,11 @@
+[PHP]
+memory_limit=-1
+extension=openssl.so
+extension=phar.so
+extension=zip.so
+extension=curl.so
+extension=intl.so
+[Date]
+date.timezone=UTC
+[Phar]
+phar.readonly=Off



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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 14:23:12
  Author: fyan
Revision: 119570

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

Added:
  dnscrypt-proxy/repos/community-i686/PKGBUILD
(from rev 119569, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-i686/conf.d.file
(from rev 119569, dnscrypt-proxy/trunk/conf.d.file)
  dnscrypt-proxy/repos/community-i686/dnscrypt-proxy.service
(from rev 119569, dnscrypt-proxy/trunk/dnscrypt-proxy.service)
  dnscrypt-proxy/repos/community-x86_64/PKGBUILD
(from rev 119569, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-x86_64/conf.d.file
(from rev 119569, dnscrypt-proxy/trunk/conf.d.file)
  dnscrypt-proxy/repos/community-x86_64/dnscrypt-proxy.service
(from rev 119569, dnscrypt-proxy/trunk/dnscrypt-proxy.service)
Deleted:
  dnscrypt-proxy/repos/community-i686/PKGBUILD
  dnscrypt-proxy/repos/community-i686/conf.d.file
  dnscrypt-proxy/repos/community-i686/dnscrypt-proxy.service
  dnscrypt-proxy/repos/community-x86_64/PKGBUILD
  dnscrypt-proxy/repos/community-x86_64/conf.d.file
  dnscrypt-proxy/repos/community-x86_64/dnscrypt-proxy.service

-+
 /PKGBUILD   |   82 ++
 /conf.d.file|   14 +
 /dnscrypt-proxy.service |   36 +
 community-i686/PKGBUILD |   42 ---
 community-i686/conf.d.file  |7 --
 community-i686/dnscrypt-proxy.service   |   18 --
 community-x86_64/PKGBUILD   |   42 ---
 community-x86_64/conf.d.file|7 --
 community-x86_64/dnscrypt-proxy.service |   18 --
 9 files changed, 132 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-25 12:22:27 UTC (rev 119569)
+++ community-i686/PKGBUILD 2014-09-25 12:23:12 UTC (rev 119570)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Techlive Zheng 
-# Contributor: peace4all 
-
-pkgname=dnscrypt-proxy
-pkgver=1.4.0
-pkgrel=2
-pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
-arch=('i686' 'x86_64')
-url="http://dnscrypt.org/";
-license=('custom:ISC')
-depends=('libsodium')
-makedepends=('clang')
-source=(http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.bz2
-   conf.d.file
-   dnscrypt-proxy.service)
-backup=(etc/conf.d/dnscrypt-proxy)
-
-build() {
-  cd $pkgname-$pkgver
-  export CC=clang
-  CFLAGS="${CFLAGS/-fstack-protector-strong/} -fPIC"
-
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make -j2
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  mkdir -p 
"$pkgdir"/{usr/share/{licenses,doc}/$pkgname,etc/conf.d,usr/lib/systemd/system}
-  install -m 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname
-  install -m 644 AUTHORS NEWS README README.markdown 
"$pkgdir"/usr/share/doc/$pkgname
-  install -m 644 "$srcdir"/conf.d.file "$pkgdir"/etc/conf.d/$pkgname
-  install -m 644 "$srcdir"/dnscrypt-proxy.service 
"$pkgdir"/usr/lib/systemd/system
-}
-
-sha512sums=('cf21231d60a12dc413d7ce7d577b3698a2a347caca00c65f18b0fbcb715d872b6839f20863fb6bd69f3dee3b2836d6db8d446de5c0ec4925e3b4c75d5d5c4d47'
-
'26e5ce3198c25ff25542dc399f2bb5467ac349dbc11c2ebd6d3ba978ffaef09607088d9401e62ba33c6f50b8b29a59f56fe97d964f55e63ee9d8ca23862c3e00'
-
'9a1072f83e83e55dcdd7b80d1943f60963fa240da8a50d7491cc219797c6b85b8d79d087c0f7bb9766a4d467dec58eaae2bef31b759652545ace65a6a8afb608')

Copied: dnscrypt-proxy/repos/community-i686/PKGBUILD (from rev 119569, 
dnscrypt-proxy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-25 12:23:12 UTC (rev 119570)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=1.4.1
+pkgrel=1
+pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
+arch=('i686' 'x86_64')
+url="http://dnscrypt.org/";
+license=('custom:ISC')
+depends=('libsodium')
+makedepends=('clang')
+source=(http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.bz2
+conf.d.file
+dnscrypt-proxy.service)
+backup=(etc/conf.d/dnscrypt-proxy)
+sha512sums=('521f36d833430cb20df828cf5aa8adfda17a2ddd91ab2139c06c80b74614e41b8fb1b353dab659254d31f4d252ccfa11d847049967eebd4593f3d21ed36624f8'
+
'26e5ce3198c25ff25542dc399f2bb5467ac349dbc11c2ebd6d3ba978ffaef09607088d9401e62ba33c6f50b8b29a59f56fe97d964f55e63ee9d8ca23862c3e00'
+
'9a1072f83e83e55dcdd7b80d1943f60963fa240da8a50d7491cc219797c6b85b8d79d087c0f7bb9766a4d467dec58eaae2bef31b759652545ace65a6a8afb608')
+
+build() {
+  cd $pkgname-$pkgver
+  export CC=clang
+  CFLAGS="${CFLAGS/-fstack-prote

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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 14:22:27
  Author: fyan
Revision: 119569

upgpkg: dnscrypt-proxy 1.4.1-1

Modified:
  dnscrypt-proxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 10:48:42 UTC (rev 119568)
+++ PKGBUILD2014-09-25 12:22:27 UTC (rev 119569)
@@ -1,11 +1,11 @@
 # $Id$
-# Maintainer: Felix Yan 
+# Maintainer: Felix Yan 
 # Contributor: Techlive Zheng 
 # Contributor: peace4all 
 
 pkgname=dnscrypt-proxy
-pkgver=1.4.0
-pkgrel=2
+pkgver=1.4.1
+pkgrel=1
 pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
 arch=('i686' 'x86_64')
 url="http://dnscrypt.org/";
@@ -13,9 +13,12 @@
 depends=('libsodium')
 makedepends=('clang')
 source=(http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.bz2
-   conf.d.file
-   dnscrypt-proxy.service)
+conf.d.file
+dnscrypt-proxy.service)
 backup=(etc/conf.d/dnscrypt-proxy)
+sha512sums=('521f36d833430cb20df828cf5aa8adfda17a2ddd91ab2139c06c80b74614e41b8fb1b353dab659254d31f4d252ccfa11d847049967eebd4593f3d21ed36624f8'
+
'26e5ce3198c25ff25542dc399f2bb5467ac349dbc11c2ebd6d3ba978ffaef09607088d9401e62ba33c6f50b8b29a59f56fe97d964f55e63ee9d8ca23862c3e00'
+
'9a1072f83e83e55dcdd7b80d1943f60963fa240da8a50d7491cc219797c6b85b8d79d087c0f7bb9766a4d467dec58eaae2bef31b759652545ace65a6a8afb608')
 
 build() {
   cd $pkgname-$pkgver
@@ -36,7 +39,3 @@
   install -m 644 "$srcdir"/conf.d.file "$pkgdir"/etc/conf.d/$pkgname
   install -m 644 "$srcdir"/dnscrypt-proxy.service 
"$pkgdir"/usr/lib/systemd/system
 }
-
-sha512sums=('cf21231d60a12dc413d7ce7d577b3698a2a347caca00c65f18b0fbcb715d872b6839f20863fb6bd69f3dee3b2836d6db8d446de5c0ec4925e3b4c75d5d5c4d47'
-
'26e5ce3198c25ff25542dc399f2bb5467ac349dbc11c2ebd6d3ba978ffaef09607088d9401e62ba33c6f50b8b29a59f56fe97d964f55e63ee9d8ca23862c3e00'
-
'9a1072f83e83e55dcdd7b80d1943f60963fa240da8a50d7491cc219797c6b85b8d79d087c0f7bb9766a4d467dec58eaae2bef31b759652545ace65a6a8afb608')



[arch-commits] Commit in zim/trunk (PKGBUILD diff_704.patch)

2014-09-25 Thread Florian Pritz
Date: Thursday, September 25, 2014 @ 12:48:38
  Author: bluewind
Revision: 119567

upgpkg: zim 0.61-2

fix FS#41752

Added:
  zim/trunk/diff_704.patch
Modified:
  zim/trunk/PKGBUILD

+
 PKGBUILD   |   14 +++---
 diff_704.patch |   15 +++
 2 files changed, 26 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 10:24:47 UTC (rev 119566)
+++ PKGBUILD2014-09-25 10:48:38 UTC (rev 119567)
@@ -5,7 +5,7 @@
 
 pkgname=zim
 pkgver=0.61
-pkgrel=1
+pkgrel=2
 pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
 arch=(any)
 license=('GPL' 'PerlArtistic')
@@ -24,9 +24,17 @@
 'lilypond: Insert Score plugin'
 'texlive-bin: Insert Equation plugin')
 install=zim.install
-source=(http://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz)
-md5sums=('7318568b9e0ef69d0fb2ff77754b72ac')
+source=(http://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz
+diff_704.patch)
+md5sums=('7318568b9e0ef69d0fb2ff77754b72ac'
+ '76a5ee4536e4fcd22bedfc2633f5c726')
 
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   patch -p0 -i "$srcdir/diff_704.patch"
+}
+
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
 

Added: diff_704.patch
===
--- diff_704.patch  (rev 0)
+++ diff_704.patch  2014-09-25 10:48:38 UTC (rev 119567)
@@ -0,0 +1,15 @@
+=== modified file 'zim/www.py'
+--- zim/www.py 2014-07-21 20:03:15 +
 zim/www.py 2014-08-21 09:06:34 +
+@@ -119,6 +119,10 @@
+   self.config = config or ConfigManager(profile=notebook.profile)
+ 
+   self.output = None
++
++  if template is None:
++  template = 'Default'
++
+   if isinstance(template, basestring):
+   from zim.templates import get_template
+   self.template = get_template('html', template)
+



[arch-commits] Commit in zim/repos/community-any (5 files)

2014-09-25 Thread Florian Pritz
Date: Thursday, September 25, 2014 @ 12:48:42
  Author: bluewind
Revision: 119568

archrelease: copy trunk to community-any

Added:
  zim/repos/community-any/PKGBUILD
(from rev 119567, zim/trunk/PKGBUILD)
  zim/repos/community-any/diff_704.patch
(from rev 119567, zim/trunk/diff_704.patch)
  zim/repos/community-any/zim.install
(from rev 119567, zim/trunk/zim.install)
Deleted:
  zim/repos/community-any/PKGBUILD
  zim/repos/community-any/zim.install

+
 PKGBUILD   |   98 +--
 diff_704.patch |   15 
 zim.install|   42 +++
 3 files changed, 89 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 10:48:38 UTC (rev 119567)
+++ PKGBUILD2014-09-25 10:48:42 UTC (rev 119568)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Kevin Piche 
-# Contributor: Daniel J Griffiths 
-
-pkgname=zim
-pkgver=0.61
-pkgrel=1
-pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
-arch=(any)
-license=('GPL' 'PerlArtistic')
-url="http://zim-wiki.org/";
-depends=('pygtk' 'ttf-dejavu')
-optdepends=('bzr: Version Control plugin'
-'git: Version Control plugin'
-'mercurial: Version Control plugin'
-'gnuplot: Insert Gnuplot plugin'
-'ditaa: Insert Ditaa plugin'
-'graphviz: Insert Diagram & Link Map plugins'
-'python2-gtkspell: Spell Checker plugin'
-'r: Insert GNU R Plot plugin'
-'scrot: Insert Screenshot plugin'
-'libzeitgeist: Log events with Zeitgeist plugin'
-'lilypond: Insert Score plugin'
-'texlive-bin: Insert Equation plugin')
-install=zim.install
-source=(http://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz)
-md5sums=('7318568b9e0ef69d0fb2ff77754b72ac')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-# python2 fixes
-for file in zim/inc/xdot.py zim/_version.py; do
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-done
-
-   sed -i 's|\t\tinstall_class.run(self)|&\n\t\treturn None|' setup.py
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: zim/repos/community-any/PKGBUILD (from rev 119567, zim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-25 10:48:42 UTC (rev 119568)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Kevin Piche 
+# Contributor: Daniel J Griffiths 
+
+pkgname=zim
+pkgver=0.61
+pkgrel=2
+pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
+arch=(any)
+license=('GPL' 'PerlArtistic')
+url="http://zim-wiki.org/";
+depends=('pygtk' 'ttf-dejavu')
+optdepends=('bzr: Version Control plugin'
+'git: Version Control plugin'
+'mercurial: Version Control plugin'
+'gnuplot: Insert Gnuplot plugin'
+'ditaa: Insert Ditaa plugin'
+'graphviz: Insert Diagram & Link Map plugins'
+'python2-gtkspell: Spell Checker plugin'
+'r: Insert GNU R Plot plugin'
+'scrot: Insert Screenshot plugin'
+'libzeitgeist: Log events with Zeitgeist plugin'
+'lilypond: Insert Score plugin'
+'texlive-bin: Insert Equation plugin')
+install=zim.install
+source=(http://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz
+diff_704.patch)
+md5sums=('7318568b9e0ef69d0fb2ff77754b72ac'
+ '76a5ee4536e4fcd22bedfc2633f5c726')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   patch -p0 -i "$srcdir/diff_704.patch"
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+# python2 fixes
+for file in zim/inc/xdot.py zim/_version.py; do
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+done
+
+   sed -i 's|\t\tinstall_class.run(self)|&\n\t\treturn None|' setup.py
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   python2 setup.py install --root=${pkgdir} --optimize=1
+}

Copied: zim/repos/community-any/diff_704.patch (from rev 119567, 
zim/trunk/diff_704.patch)
===
--- diff_704.patch  (rev 0)
+++ diff_704.patch  2014-09-25 10:48:42 UTC (rev 119568)
@@ -0,0 +1,15 @@
+=== modified file 'zim/www.py'
+--- zim/www.py 2014-07-21 20:03:15 +
 zim/www.py 2014-08-21 09:06:34 +
+@@ -119,6 +119,10 @@
+   self.config = config or ConfigManager(profile=notebook.profile)
+ 
+   self.output = None
++
++  if template is None:
++  template = 'Default'
++
+   if isinstance(template, bases

[arch-commits] Commit in perl-cgi-fast/repos/community-any (PKGBUILD PKGBUILD)

2014-09-25 Thread Florian Pritz
Date: Thursday, September 25, 2014 @ 12:24:47
  Author: bluewind
Revision: 119566

archrelease: copy trunk to community-any

Added:
  perl-cgi-fast/repos/community-any/PKGBUILD
(from rev 119565, perl-cgi-fast/trunk/PKGBUILD)
Deleted:
  perl-cgi-fast/repos/community-any/PKGBUILD

--+
 PKGBUILD |   92 ++---
 1 file changed, 46 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 10:24:45 UTC (rev 119565)
+++ PKGBUILD2014-09-25 10:24:47 UTC (rev 119566)
@@ -1,46 +0,0 @@
-# Maintainer: Florian Pritz 
-
-pkgname=perl-cgi-fast
-pkgver=2.02
-pkgrel=1
-pkgdesc='CGI Interface for Fast CGI'
-arch=(any)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=('perl>=5.8.1' 'perl-cgi>=4' 'perl-fcgi>=0.67')
-checkdepends=('perl-test-deep>=0.11')
-url=https://metacpan.org/release/CGI-Fast
-source=("http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-Fast-$pkgver.tar.gz";)
-md5sums=(779a5152f44cab2e3e3856459837fe78)
-sha512sums=(558113b2bcbfa9d2915b12e882f9f305f96c0da5f6f6c4eb5e68bbb4ce3871f368a74927a9348f92b0d80a5cc857c4e5eb7228f962b1abcb87a155f8b18e5d5b)
-_ddir="CGI-Fast-$pkgver"
-
-build()
-(
-  cd "$srcdir/$_ddir"
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  unset PERL5LIB PERL_MM_OPT
-  /usr/bin/perl Makefile.PL
-  make
-)
-
-check()
-(
-  cd "$srcdir/$_ddir"
-  export PERL_MM_USE_DEFAULT=1
-  unset PERL5LIB
-  make test
-)
-
-package()
-(
-  cd "$srcdir/$_ddir"
-  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-)
-
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
-# vim:set ts=2 sw=2 et:

Copied: perl-cgi-fast/repos/community-any/PKGBUILD (from rev 119565, 
perl-cgi-fast/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-25 10:24:47 UTC (rev 119566)
@@ -0,0 +1,46 @@
+# Maintainer: Florian Pritz 
+
+pkgname=perl-cgi-fast
+pkgver=2.03
+pkgrel=1
+pkgdesc='CGI Interface for Fast CGI'
+arch=(any)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=('perl>=5.8.1' 'perl-cgi>=4' 'perl-fcgi>=0.67')
+checkdepends=('perl-test-deep>=0.11')
+url=https://metacpan.org/release/CGI-Fast
+source=("http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-Fast-$pkgver.tar.gz";)
+md5sums=(bbf816e387b387a7d4db67347100a047)
+sha512sums=(ccf3385a6315f914541388ff1f590ecc20de66477348498ae12ed5e38d5c7dbcf6891c640ced2b94a07d10cb6379c34bc3b0ac71d4ce72a7732f73854a9565c1)
+_ddir="CGI-Fast-$pkgver"
+
+build()
+(
+  cd "$srcdir/$_ddir"
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  unset PERL5LIB PERL_MM_OPT
+  /usr/bin/perl Makefile.PL
+  make
+)
+
+check()
+(
+  cd "$srcdir/$_ddir"
+  export PERL_MM_USE_DEFAULT=1
+  unset PERL5LIB
+  make test
+)
+
+package()
+(
+  cd "$srcdir/$_ddir"
+  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+)
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:



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

2014-09-25 Thread Florian Pritz
Date: Thursday, September 25, 2014 @ 12:23:56
  Author: bluewind
Revision: 119563

upgpkg: perl-cgi 4.04-1

upstream update

Modified:
  perl-cgi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 10:18:15 UTC (rev 119562)
+++ PKGBUILD2014-09-25 10:23:56 UTC (rev 119563)
@@ -1,17 +1,19 @@
 # Maintainer: Florian Pritz 
 
 pkgname=perl-cgi
-pkgver=4.03
+pkgver=4.04
 pkgrel=1
+pkgdesc='Handle Common Gateway Interface requests and responses'
 arch=(any)
 license=(PerlArtistic GPL)
 options=(!emptydirs)
 depends=('perl>=5.8.1')
+checkdepends=('perl-test-deep>=0.11')
 url=https://metacpan.org/release/CGI
-source=("http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI.pm-$pkgver.tar.gz";)
-md5sums=(265c8133a02e194d3189573835de51f4)
-sha512sums=(e064d5d40cf284347454774b2bcadd54d39fa1433be0d619d18067e614f8570e072f1995206e9233f1b5a4a3e61fb0748aefc0d535fd89355d4afb8bc0bd879c)
-_ddir="CGI.pm-$pkgver"
+source=("http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-$pkgver.tar.gz";)
+md5sums=(1ce0be2fd863b6c794997d609b22e72f)
+sha512sums=(c3e4c0e019b99e8e102e2bca15b61c5dfdf0fb605d2fd11ca3286eaca253256f12536e14cf400925793cc0807bb476dccd41ae126f82196173ca7c734dcc01e2)
+_ddir="CGI-$pkgver"
 
 build()
 (



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

2014-09-25 Thread Florian Pritz
Date: Thursday, September 25, 2014 @ 12:24:45
  Author: bluewind
Revision: 119565

upgpkg: perl-cgi-fast 2.03-1

upstream update

Modified:
  perl-cgi-fast/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 10:23:59 UTC (rev 119564)
+++ PKGBUILD2014-09-25 10:24:45 UTC (rev 119565)
@@ -1,7 +1,7 @@
 # Maintainer: Florian Pritz 
 
 pkgname=perl-cgi-fast
-pkgver=2.02
+pkgver=2.03
 pkgrel=1
 pkgdesc='CGI Interface for Fast CGI'
 arch=(any)
@@ -11,8 +11,8 @@
 checkdepends=('perl-test-deep>=0.11')
 url=https://metacpan.org/release/CGI-Fast
 
source=("http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-Fast-$pkgver.tar.gz";)
-md5sums=(779a5152f44cab2e3e3856459837fe78)
-sha512sums=(558113b2bcbfa9d2915b12e882f9f305f96c0da5f6f6c4eb5e68bbb4ce3871f368a74927a9348f92b0d80a5cc857c4e5eb7228f962b1abcb87a155f8b18e5d5b)
+md5sums=(bbf816e387b387a7d4db67347100a047)
+sha512sums=(ccf3385a6315f914541388ff1f590ecc20de66477348498ae12ed5e38d5c7dbcf6891c640ced2b94a07d10cb6379c34bc3b0ac71d4ce72a7732f73854a9565c1)
 _ddir="CGI-Fast-$pkgver"
 
 build()



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

2014-09-25 Thread Florian Pritz
Date: Thursday, September 25, 2014 @ 12:23:59
  Author: bluewind
Revision: 119564

archrelease: copy trunk to community-any

Added:
  perl-cgi/repos/community-any/PKGBUILD
(from rev 119563, perl-cgi/trunk/PKGBUILD)
Deleted:
  perl-cgi/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 10:23:56 UTC (rev 119563)
+++ PKGBUILD2014-09-25 10:23:59 UTC (rev 119564)
@@ -1,44 +0,0 @@
-# Maintainer: Florian Pritz 
-
-pkgname=perl-cgi
-pkgver=4.03
-pkgrel=1
-arch=(any)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=('perl>=5.8.1')
-url=https://metacpan.org/release/CGI
-source=("http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI.pm-$pkgver.tar.gz";)
-md5sums=(265c8133a02e194d3189573835de51f4)
-sha512sums=(e064d5d40cf284347454774b2bcadd54d39fa1433be0d619d18067e614f8570e072f1995206e9233f1b5a4a3e61fb0748aefc0d535fd89355d4afb8bc0bd879c)
-_ddir="CGI.pm-$pkgver"
-
-build()
-(
-  cd "$srcdir/$_ddir"
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  unset PERL5LIB PERL_MM_OPT
-  /usr/bin/perl Makefile.PL
-  make
-)
-
-check()
-(
-  cd "$srcdir/$_ddir"
-  export PERL_MM_USE_DEFAULT=1
-  unset PERL5LIB
-  make test
-)
-
-package()
-(
-  cd "$srcdir/$_ddir"
-  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-)
-
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
-# vim:set ts=2 sw=2 et:

Copied: perl-cgi/repos/community-any/PKGBUILD (from rev 119563, 
perl-cgi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-25 10:23:59 UTC (rev 119564)
@@ -0,0 +1,46 @@
+# Maintainer: Florian Pritz 
+
+pkgname=perl-cgi
+pkgver=4.04
+pkgrel=1
+pkgdesc='Handle Common Gateway Interface requests and responses'
+arch=(any)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=('perl>=5.8.1')
+checkdepends=('perl-test-deep>=0.11')
+url=https://metacpan.org/release/CGI
+source=("http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-$pkgver.tar.gz";)
+md5sums=(1ce0be2fd863b6c794997d609b22e72f)
+sha512sums=(c3e4c0e019b99e8e102e2bca15b61c5dfdf0fb605d2fd11ca3286eaca253256f12536e14cf400925793cc0807bb476dccd41ae126f82196173ca7c734dcc01e2)
+_ddir="CGI-$pkgver"
+
+build()
+(
+  cd "$srcdir/$_ddir"
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  unset PERL5LIB PERL_MM_OPT
+  /usr/bin/perl Makefile.PL
+  make
+)
+
+check()
+(
+  cd "$srcdir/$_ddir"
+  export PERL_MM_USE_DEFAULT=1
+  unset PERL5LIB
+  make test
+)
+
+package()
+(
+  cd "$srcdir/$_ddir"
+  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+)
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:



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

2014-09-25 Thread Florian Pritz
Date: Thursday, September 25, 2014 @ 12:18:15
  Author: bluewind
Revision: 119562

archrelease: copy trunk to community-any

Added:
  inxi/repos/community-any/PKGBUILD
(from rev 119561, inxi/trunk/PKGBUILD)
  inxi/repos/community-any/upgpkg
(from rev 119561, inxi/trunk/upgpkg)
Deleted:
  inxi/repos/community-any/PKGBUILD
  inxi/repos/community-any/upgpkg

--+
 PKGBUILD |   72 ++---
 upgpkg   |8 +++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 10:18:11 UTC (rev 119561)
+++ PKGBUILD2014-09-25 10:18:15 UTC (rev 119562)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-pkgname=inxi
-pkgver=2.2.8
-pkgrel=1
-pkgdesc="script to get system information"
-arch=('any')
-url="http://inxi.org";
-license=('GPL')
-depends=(coreutils gawk grep pciutils procps-ng sed)
-optdepends=(
-  "dmidecode: inxi -M if no sys machine data"
-  "file: inxi -o unmounted file system"
-  "hddtemp: inxi -Dx show hdd temp"
-  "net-tools: inxi -i ip lan-deprecated"
-  "iproute2: inxi -i ip lan"
-  "lm_sensors: inxi -s sensors output"
-  "usbutils: inxi -A usb audio;-N usb networking"
-  "kmod: inxi -Ax,-Nx module version"
-  "systemd-sysvcompat: inxi -I runlevel"
-  "sudo: inxi -Dx hddtemp-user;-o file-user"
-  "mesa-demos: inxi -G glx info"
-  "xorg-xdpyinfo: inxi -G multi screen resolution"
-  "xorg-xprop: inxi -S desktop data"
-  "xorg-xrandr: inxi -G single screen resolution"
-)
-source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('7ff699a324d45306b37d5583d6f4be3e')
-
-package() {
-  cd "$srcdir"
-  install -D -m755 inxi "$pkgdir/usr/bin/inxi"
-  install -D -m755 inxi.1.gz "$pkgdir/usr/share/man/man1/inxi.1.gz"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: inxi/repos/community-any/PKGBUILD (from rev 119561, inxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-25 10:18:15 UTC (rev 119562)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Florian Pritz 
+pkgname=inxi
+pkgver=2.2.12
+pkgrel=1
+pkgdesc="script to get system information"
+arch=('any')
+url="http://inxi.org";
+license=('GPL')
+depends=(coreutils gawk grep pciutils procps-ng sed)
+optdepends=(
+  "dmidecode: inxi -M if no sys machine data"
+  "file: inxi -o unmounted file system"
+  "hddtemp: inxi -Dx show hdd temp"
+  "net-tools: inxi -i ip lan-deprecated"
+  "iproute2: inxi -i ip lan"
+  "lm_sensors: inxi -s sensors output"
+  "usbutils: inxi -A usb audio;-N usb networking"
+  "kmod: inxi -Ax,-Nx module version"
+  "systemd-sysvcompat: inxi -I runlevel"
+  "sudo: inxi -Dx hddtemp-user;-o file-user"
+  "mesa-demos: inxi -G glx info"
+  "xorg-xdpyinfo: inxi -G multi screen resolution"
+  "xorg-xprop: inxi -S desktop data"
+  "xorg-xrandr: inxi -G single screen resolution"
+)
+source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('18865200a3639714947e2abf24f72afc')
+
+package() {
+  cd "$srcdir"
+  install -D -m755 inxi "$pkgdir/usr/bin/inxi"
+  install -D -m755 inxi.1.gz "$pkgdir/usr/share/man/man1/inxi.1.gz"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: upgpkg
===
--- upgpkg  2014-09-25 10:18:11 UTC (rev 119561)
+++ upgpkg  2014-09-25 10:18:15 UTC (rev 119562)
@@ -1,4 +0,0 @@
-upgpkg_pre_upgrade() {
-  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
-  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
-}

Copied: inxi/repos/community-any/upgpkg (from rev 119561, inxi/trunk/upgpkg)
===
--- upgpkg  (rev 0)
+++ upgpkg  2014-09-25 10:18:15 UTC (rev 119562)
@@ -0,0 +1,4 @@
+upgpkg_pre_upgrade() {
+  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
+  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
+}



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

2014-09-25 Thread Florian Pritz
Date: Thursday, September 25, 2014 @ 12:18:11
  Author: bluewind
Revision: 119561

upgpkg: inxi 2.2.12-1

upstream update

Modified:
  inxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 08:39:40 UTC (rev 119560)
+++ PKGBUILD2014-09-25 10:18:11 UTC (rev 119561)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Florian Pritz 
 pkgname=inxi
-pkgver=2.2.8
+pkgver=2.2.12
 pkgrel=1
 pkgdesc="script to get system information"
 arch=('any')
@@ -25,7 +25,7 @@
   "xorg-xrandr: inxi -G single screen resolution"
 )
 
source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('7ff699a324d45306b37d5583d6f4be3e')
+md5sums=('18865200a3639714947e2abf24f72afc')
 
 package() {
   cd "$srcdir"



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

2014-09-25 Thread Sébastien Luttringer
Date: Thursday, September 25, 2014 @ 10:39:40
  Author: seblu
Revision: 119560

fix FS#41771

Modified:
  linux-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 08:35:57 UTC (rev 119559)
+++ PKGBUILD2014-09-25 08:39:40 UTC (rev 119560)
@@ -136,7 +136,7 @@
 
   cd linux-$pkgver/tools/lib/traceevent
   install -dm 755 "$pkgdir/usr/lib"
-  install -m 644 libtraceevent.a libtraceevent.so "$pkgdir/usr/lib"
+  install -m 644 libtraceevent.so "$pkgdir/usr/lib"
 }
 
 package_perf() {



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

2014-09-25 Thread Sébastien Luttringer
Date: Thursday, September 25, 2014 @ 10:35:57
  Author: seblu
Revision: 119559

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

Added:
  lldpd/repos/community-i686/LICENSE
(from rev 119558, lldpd/trunk/LICENSE)
  lldpd/repos/community-i686/PKGBUILD
(from rev 119558, lldpd/trunk/PKGBUILD)
  lldpd/repos/community-i686/lldpd.install
(from rev 119558, lldpd/trunk/lldpd.install)
  lldpd/repos/community-i686/lldpd.service
(from rev 119558, lldpd/trunk/lldpd.service)
  lldpd/repos/community-x86_64/LICENSE
(from rev 119558, lldpd/trunk/LICENSE)
  lldpd/repos/community-x86_64/PKGBUILD
(from rev 119558, lldpd/trunk/PKGBUILD)
  lldpd/repos/community-x86_64/lldpd.install
(from rev 119558, lldpd/trunk/lldpd.install)
  lldpd/repos/community-x86_64/lldpd.service
(from rev 119558, lldpd/trunk/lldpd.service)
Deleted:
  lldpd/repos/community-i686/LICENSE
  lldpd/repos/community-i686/PKGBUILD
  lldpd/repos/community-i686/lldpd.install
  lldpd/repos/community-i686/lldpd.service
  lldpd/repos/community-x86_64/LICENSE
  lldpd/repos/community-x86_64/PKGBUILD
  lldpd/repos/community-x86_64/lldpd.install
  lldpd/repos/community-x86_64/lldpd.service

+
 /LICENSE   |   22 +++
 /PKGBUILD  |  122 +++
 /lldpd.install |   38 
 /lldpd.service |   24 +++
 community-i686/LICENSE |   11 ---
 community-i686/PKGBUILD|   62 ---
 community-i686/lldpd.install   |   19 --
 community-i686/lldpd.service   |   12 ---
 community-x86_64/LICENSE   |   11 ---
 community-x86_64/PKGBUILD  |   62 ---
 community-x86_64/lldpd.install |   19 --
 community-x86_64/lldpd.service |   12 ---
 12 files changed, 206 insertions(+), 208 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2014-09-25 08:35:36 UTC (rev 119558)
+++ community-i686/LICENSE  2014-09-25 08:35:57 UTC (rev 119559)
@@ -1,11 +0,0 @@
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Copied: lldpd/repos/community-i686/LICENSE (from rev 119558, 
lldpd/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2014-09-25 08:35:57 UTC (rev 119559)
@@ -0,0 +1,11 @@
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-25 08:35:36 UTC (rev 119558)
+++ community-i686/PKGBUILD 2014-09-25 08:35:57 UTC (rev 119559)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Brian Bidulock 
-
-pkgname=lldpd
-pkgver=0.7.10
-pkgrel=1
-pkgdesc='802.1ab implementation (LLDP) to help you locate neighbors'
-arch=('i686' 'x86_64')
-url='http://vincentbernat.github.io/lldpd/'
-license=('custom:ISC' 'GPL')
-depends=('glibc' 'libevent' 'libbsd' 'zlib' 'openssl' 'pciutils' 'perl'
- 'libxml2' 'net-snmp' 'jansson')
-backup=('etc/lldpd.conf')
-install=$pkgname.install
-source=("http://media.luffy.cx/files/lldpd/lldpd-$pkgver.tar.gz";
-'LICENSE'
-'lldpd.service')
-md5sums=('508f2e76703abf8420d9223aae3db548'
- '8ae98663bac55afe5d989919d296f28a'
- 'a650af7390db0632480184f9f2e7ee4a')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---with-snmp \
---with-xml \
---

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

2014-09-25 Thread Sébastien Luttringer
Date: Thursday, September 25, 2014 @ 10:35:36
  Author: seblu
Revision: 119558

upgpkg: lldpd 0.7.10-2

- fix FS#42104

Modified:
  lldpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 07:34:08 UTC (rev 119557)
+++ PKGBUILD2014-09-25 08:35:36 UTC (rev 119558)
@@ -4,7 +4,7 @@
 
 pkgname=lldpd
 pkgver=0.7.10
-pkgrel=1
+pkgrel=2
 pkgdesc='802.1ab implementation (LLDP) to help you locate neighbors'
 arch=('i686' 'x86_64')
 url='http://vincentbernat.github.io/lldpd/'
@@ -50,8 +50,7 @@
   # systemd stuff
   install -D -m 644 lldpd.service 
"$pkgdir/usr/lib/systemd/system/lldpd.service"
   install -D -m 644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/lldpd.conf"
-  printf 'd /run/lldpd 0750 lldpd lldpd\nd /run/lldpd 0750 lldpd lldpd\n' > \
-"$pkgdir/usr/lib/tmpfiles.d/lldpd.conf"
+  printf 'd /run/lldpd 0750 lldpd lldpd\n' > 
"$pkgdir/usr/lib/tmpfiles.d/lldpd.conf"
   # license
   install -D -m 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 



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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 09:33:25
  Author: fyan
Revision: 119556

upgpkg: python-pytest 2.6.3-1

Modified:
  python-pytest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 07:23:04 UTC (rev 119555)
+++ PKGBUILD2014-09-25 07:33:25 UTC (rev 119556)
@@ -1,10 +1,10 @@
 # $Id$
-# Maintainer: Felix Yan 
+# Maintainer: Felix Yan 
 # Contributor: Felix Kaiser 
 
 pkgbase=python-pytest
 pkgname=('python-pytest' 'python2-pytest')
-pkgver=2.6.2
+pkgver=2.6.3
 pkgrel=1
 pkgdesc="Simple powerful testing with Python"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py')
 checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-twisted' 
'python2-twisted' 'python-mock' 'python2-mock' 'python-yaml' 'python2-yaml' 
'python-pexpect' 'python2-pexpect')
 
source=("http://pypi.python.org/packages/source/p/pytest/pytest-$pkgver.tar.gz";)
-sha512sums=('cfe62ea2ddb05f7295028e5527b146eef8561132afdca526df8c5eb5ddf37b096aee38f4015fcfdecb47b62ce9873d006cb075d3087a74b3544d2d496f730bd7')
+sha512sums=('44fe4c7af804530160a1827b837d35be9492eebb6a382391c820568f492ce7ca50837a47e92873b014ee1655d83a8cb270e0c4149e683efedc25135791733c7a')
 
 prepare() {
   cp -a pytest-${pkgver}{,-py2}



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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 09:34:08
  Author: fyan
Revision: 119557

archrelease: copy trunk to community-any

Added:
  python-pytest/repos/community-any/PKGBUILD
(from rev 119556, python-pytest/trunk/PKGBUILD)
Deleted:
  python-pytest/repos/community-any/PKGBUILD

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 07:33:25 UTC (rev 119556)
+++ PKGBUILD2014-09-25 07:34:08 UTC (rev 119557)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Felix Kaiser 
-
-pkgbase=python-pytest
-pkgname=('python-pytest' 'python2-pytest')
-pkgver=2.6.2
-pkgrel=1
-pkgdesc="Simple powerful testing with Python"
-arch=('any')
-license=('MIT')
-url="http://pytest.org/";
-makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py')
-checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-twisted' 
'python2-twisted' 'python-mock' 'python2-mock' 'python-yaml' 'python2-yaml' 
'python-pexpect' 'python2-pexpect')
-source=("http://pypi.python.org/packages/source/p/pytest/pytest-$pkgver.tar.gz";)
-sha512sums=('cfe62ea2ddb05f7295028e5527b146eef8561132afdca526df8c5eb5ddf37b096aee38f4015fcfdecb47b62ce9873d006cb075d3087a74b3544d2d496f730bd7')
-
-prepare() {
-  cp -a pytest-${pkgver}{,-py2}
-}
-
-build() {
-  cd "$srcdir/pytest-${pkgver}"
-  python setup.py build
-
-  cd "$srcdir/pytest-${pkgver}-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/pytest-${pkgver}"
-  python setup.py test
-
-  cd "$srcdir/pytest-${pkgver}-py2"
-  python2 setup.py test
-}
-
-package_python-pytest() {
-  depends=('python' 'python-py' 'python-setuptools')
-
-  cd pytest-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-pytest() {
-  depends=('python2' 'python2-py' 'python2-setuptools')
-
-  cd pytest-${pkgver}-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  mv "${pkgdir}/usr/bin/py.test" "${pkgdir}/usr/bin/py.test2"
-}
-

Copied: python-pytest/repos/community-any/PKGBUILD (from rev 119556, 
python-pytest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-25 07:34:08 UTC (rev 119557)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-pytest
+pkgname=('python-pytest' 'python2-pytest')
+pkgver=2.6.3
+pkgrel=1
+pkgdesc="Simple powerful testing with Python"
+arch=('any')
+license=('MIT')
+url="http://pytest.org/";
+makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py')
+checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-twisted' 
'python2-twisted' 'python-mock' 'python2-mock' 'python-yaml' 'python2-yaml' 
'python-pexpect' 'python2-pexpect')
+source=("http://pypi.python.org/packages/source/p/pytest/pytest-$pkgver.tar.gz";)
+sha512sums=('44fe4c7af804530160a1827b837d35be9492eebb6a382391c820568f492ce7ca50837a47e92873b014ee1655d83a8cb270e0c4149e683efedc25135791733c7a')
+
+prepare() {
+  cp -a pytest-${pkgver}{,-py2}
+}
+
+build() {
+  cd "$srcdir/pytest-${pkgver}"
+  python setup.py build
+
+  cd "$srcdir/pytest-${pkgver}-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/pytest-${pkgver}"
+  python setup.py test
+
+  cd "$srcdir/pytest-${pkgver}-py2"
+  python2 setup.py test
+}
+
+package_python-pytest() {
+  depends=('python' 'python-py' 'python-setuptools')
+
+  cd pytest-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pytest() {
+  depends=('python2' 'python2-py' 'python2-setuptools')
+
+  cd pytest-${pkgver}-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  mv "${pkgdir}/usr/bin/py.test" "${pkgdir}/usr/bin/py.test2"
+}
+



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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 09:22:26
  Author: fyan
Revision: 119554

upgpkg: python-tox 1.8.0-1

Modified:
  python-tox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 07:21:35 UTC (rev 119553)
+++ PKGBUILD2014-09-25 07:22:26 UTC (rev 119554)
@@ -6,8 +6,8 @@
 
 pkgbase=python-tox
 pkgname=(python-tox python2-tox)
-pkgver=1.7.2
-pkgrel=4
+pkgver=1.8.0
+pkgrel=1
 pkgdesc='Python virtualenv management and testing tool'
 arch=('any')
 url='http://testrun.org/tox/latest/'
@@ -15,7 +15,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py' 
'python-virtualenv' 'python2-virtualenv')
 checkdepends=('python-pytest' 'python2-pytest')
 source=("http://pypi.python.org/packages/source/t/tox/tox-${pkgver}.tar.gz";)
-sha256sums=('267fc86871ae2a398d3e7b4b03e8113b3305533c72ef8de616cbc7258039f1f8')
+sha256sums=('4583b8340279d8cf080082550f7a5f14ba838bed3b217a37f0ea305c271281c7')
 
 prepare() {
   cp -a tox-$pkgver{,-py2}



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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 09:23:04
  Author: fyan
Revision: 119555

archrelease: copy trunk to community-any

Added:
  python-tox/repos/community-any/PKGBUILD
(from rev 119554, python-tox/trunk/PKGBUILD)
Deleted:
  python-tox/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 07:22:26 UTC (rev 119554)
+++ PKGBUILD2014-09-25 07:23:04 UTC (rev 119555)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Weißschuh 
-# Contributor: George Brooke 
-# Contributor: Sebastian Wiesner 
-
-pkgbase=python-tox
-pkgname=(python-tox python2-tox)
-pkgver=1.7.2
-pkgrel=4
-pkgdesc='Python virtualenv management and testing tool'
-arch=('any')
-url='http://testrun.org/tox/latest/'
-license=('GPL2')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py' 
'python-virtualenv' 'python2-virtualenv')
-checkdepends=('python-pytest' 'python2-pytest')
-source=("http://pypi.python.org/packages/source/t/tox/tox-${pkgver}.tar.gz";)
-sha256sums=('267fc86871ae2a398d3e7b4b03e8113b3305533c72ef8de616cbc7258039f1f8')
-
-prepare() {
-  cp -a tox-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/tox-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/tox-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Not working correctly, as some tests need the "tox" executable
-
-  cd "$srcdir/tox-$pkgver"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test || warning "Tests failed"
-
-  cd "$srcdir/tox-$pkgver-py2"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test2 || warning "Tests failed"
-}
-
-package_python-tox() {
-  depends=('python-py' 'python-virtualenv' 'python-setuptools')
-
-  cd "$srcdir/tox-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  ln -s tox "${pkgdir}/usr/bin/tox3"
-}
-
-package_python2-tox() {
-  depends=('python2-py' 'python2-virtualenv' 'python2-setuptools')
-
-  cd "$srcdir/tox-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "${pkgdir}"/usr/bin/tox{,2}
-  mv "${pkgdir}"/usr/bin/{tox-quickstart,tox2-quickstart}
-}

Copied: python-tox/repos/community-any/PKGBUILD (from rev 119554, 
python-tox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-25 07:23:04 UTC (rev 119555)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Weißschuh 
+# Contributor: George Brooke 
+# Contributor: Sebastian Wiesner 
+
+pkgbase=python-tox
+pkgname=(python-tox python2-tox)
+pkgver=1.8.0
+pkgrel=1
+pkgdesc='Python virtualenv management and testing tool'
+arch=('any')
+url='http://testrun.org/tox/latest/'
+license=('GPL2')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py' 
'python-virtualenv' 'python2-virtualenv')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("http://pypi.python.org/packages/source/t/tox/tox-${pkgver}.tar.gz";)
+sha256sums=('4583b8340279d8cf080082550f7a5f14ba838bed3b217a37f0ea305c271281c7')
+
+prepare() {
+  cp -a tox-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/tox-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/tox-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Not working correctly, as some tests need the "tox" executable
+
+  cd "$srcdir/tox-$pkgver"
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test || warning "Tests failed"
+
+  cd "$srcdir/tox-$pkgver-py2"
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test2 || warning "Tests failed"
+}
+
+package_python-tox() {
+  depends=('python-py' 'python-virtualenv' 'python-setuptools')
+
+  cd "$srcdir/tox-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  ln -s tox "${pkgdir}/usr/bin/tox3"
+}
+
+package_python2-tox() {
+  depends=('python2-py' 'python2-virtualenv' 'python2-setuptools')
+
+  cd "$srcdir/tox-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  mv "${pkgdir}"/usr/bin/tox{,2}
+  mv "${pkgdir}"/usr/bin/{tox-quickstart,tox2-quickstart}
+}



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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 09:21:35
  Author: fyan
Revision: 119553

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-25 07:20:38 UTC (rev 119552)
+++ community-i686/PKGBUILD 2014-09-25 07:21:35 UTC (rev 119553)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: namelessjon 
-# Contributor: Alessio Sergi 
-
-pkgname=libsodium
-pkgver=0.7.1
-pkgrel=1
-pkgdesc="P(ortable|ackageable) NaCl-based crypto library"
-arch=('i686' 'x86_64')
-url="https://github.com/jedisct1/libsodium";
-license=('custom:ISC')
-depends=('glibc')
-#makedepends=('clang')
-source=("http://download.dnscrypt.org/$pkgname/releases/$pkgname-${pkgver}.tar.gz";)
-sha512sums=('73d967b26e5e000d4fd6f811b22c6147e8dff8a83790b41883d7c0afa42c792ac30bb9307153e47a0b8f658f6d7d11c55928525c782aba8db330e25de12411cd')
-
-build() {
-  cd "$pkgname-$pkgver"
-  #export CC=clang
-  #CFLAGS=${CFLAGS/-fstack-protector-strong/}
-
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  make check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  # install license
-  install -d -m 755 "$pkgdir/usr/share/licenses/$pkgname"
-  install -m 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libsodium/repos/community-i686/PKGBUILD (from rev 119552, 
libsodium/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-25 07:21:35 UTC (rev 119553)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: namelessjon 
+# Contributor: Alessio Sergi 
+
+pkgname=libsodium
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="P(ortable|ackageable) NaCl-based crypto library"
+arch=('i686' 'x86_64')
+url="https://github.com/jedisct1/libsodium";
+license=('custom:ISC')
+depends=('glibc')
+#makedepends=('clang')
+source=("http://download.dnscrypt.org/$pkgname/releases/$pkgname-${pkgver}.tar.gz";)
+sha512sums=('c60693130460b307469707854b86fc85733483e9ad9f492e692340cf4fef82dfaf388f890f18380cb6ee569597ef89a1ee4c94d47c10bb4da0703418fec18099')
+
+build() {
+  cd "$pkgname-$pkgver"
+  #export CC=clang
+  #CFLAGS=${CFLAGS/-fstack-protector-strong/}
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # install license
+  install -d -m 755 "$pkgdir/usr/share/licenses/$pkgname"
+  install -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-09-25 07:20:38 UTC (rev 119552)
+++ community-x86_64/PKGBUILD   2014-09-25 07:21:35 UTC (rev 119553)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: namelessjon 
-# Contributor: Alessio Sergi 
-
-pkgname=libsodium
-pkgver=0.7.1
-pkgrel=1
-pkgdesc="P(ortable|ackageable) NaCl-based crypto library"
-arch=('i686' 'x86_64')
-url="https://github.com/jedisct1/libsodium";
-license=('custom:ISC')
-depends=('glibc')
-#makedepends=('clang')
-source=("http://download.dnscrypt.org/$pkgname/releases/$pkgname-${pkgver}.tar.gz";)
-sha512sums=('73d967b26e5e000d4fd6f811b22c6147e8dff8a83790b41883d7c0afa42c792ac30bb9307153e47a0b8f658f6d7d11c55928525c782aba8db330e25de12411cd')
-
-build() {
-  cd "$pkgname-$pkgver"
-  #export CC=clang
-  #CFLAGS=${CFLAGS/-fstack-protector-strong/}
-
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  make check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  # install license
-  install -d -m 755 "$pkgdir/usr/share/licenses/$pkgname"
-  install -m 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libsodium/repos/community-x86_64/PKGBUILD (from rev 119552, 
libsodium/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-09-25 07:21:35 UTC (rev 119553)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: namelessjon 
+# Contributo

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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 09:20:38
  Author: fyan
Revision: 119552

upgpkg: libsodium 1.0.0-1

Modified:
  libsodium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 07:18:13 UTC (rev 119551)
+++ PKGBUILD2014-09-25 07:20:38 UTC (rev 119552)
@@ -4,7 +4,7 @@
 # Contributor: Alessio Sergi 
 
 pkgname=libsodium
-pkgver=0.7.1
+pkgver=1.0.0
 pkgrel=1
 pkgdesc="P(ortable|ackageable) NaCl-based crypto library"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('glibc')
 #makedepends=('clang')
 
source=("http://download.dnscrypt.org/$pkgname/releases/$pkgname-${pkgver}.tar.gz";)
-sha512sums=('73d967b26e5e000d4fd6f811b22c6147e8dff8a83790b41883d7c0afa42c792ac30bb9307153e47a0b8f658f6d7d11c55928525c782aba8db330e25de12411cd')
+sha512sums=('c60693130460b307469707854b86fc85733483e9ad9f492e692340cf4fef82dfaf388f890f18380cb6ee569597ef89a1ee4c94d47c10bb4da0703418fec18099')
 
 build() {
   cd "$pkgname-$pkgver"



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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 09:18:13
  Author: fyan
Revision: 119551

archrelease: copy trunk to community-any

Added:
  python-py/repos/community-any/PKGBUILD
(from rev 119550, python-py/trunk/PKGBUILD)
Deleted:
  python-py/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-25 07:17:28 UTC (rev 119550)
+++ PKGBUILD2014-09-25 07:18:13 UTC (rev 119551)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sebastian Wiesner 
-# Contributor: Igor Ramos Tiburcio 
-# Contributor: Wieland Hoffmann 
-# Contributor: Hervé Cauwelier 
-# Contributor: Felix Kaiser 
-
-pkgbase=python-py
-pkgname=('python-py' 'python2-py')
-pkgver=1.4.24
-pkgrel=1
-pkgdesc="library with cross-python path, ini-parsing, io, code, log facilities"
-arch=('any')
-license=('MIT')
-url="http://pylib.readthedocs.org/en/latest/";
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest')
-source=("http://pypi.python.org/packages/source/p/py/py-$pkgver.tar.gz";)
-sha512sums=('f62a6e962ff1ebab484725f37825cf07d730c182b7558dddf9ffe7fba7bc068748eb39952adf290fb4029989d4df1f0da1e17d4a5d7c8c509b7c82697d1e1c7c')
-
-prepare() {
-  cp -a py-${pkgver}{,-py2}
-}
-
-build() {
-  cd "$srcdir/py-${pkgver}"
-  python setup.py build
-
-  cd "$srcdir/py-${pkgver}-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/py-${pkgver}"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LANG=en_US.utf8 py.test
-
-  cd "$srcdir/py-${pkgver}-py2"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LANG=en_US.utf8 py.test2
-}
-
-package_python-py() {
-  depends=('python')
-
-  cd py-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-py() {
-  depends=('python2')
-
-  cd py-${pkgver}-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: python-py/repos/community-any/PKGBUILD (from rev 119550, 
python-py/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-25 07:18:13 UTC (rev 119551)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Sebastian Wiesner 
+# Contributor: Igor Ramos Tiburcio 
+# Contributor: Wieland Hoffmann 
+# Contributor: Hervé Cauwelier 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-py
+pkgname=('python-py' 'python2-py')
+pkgver=1.4.25
+pkgrel=1
+pkgdesc="library with cross-python path, ini-parsing, io, code, log facilities"
+arch=('any')
+license=('MIT')
+url="http://pylib.readthedocs.org/en/latest/";
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("http://pypi.python.org/packages/source/p/py/py-$pkgver.tar.gz";)
+sha512sums=('7e24a9d57298cf98fc246fbda7db81f6cd9d16b78425266c24d00ab1db77146ffab38820630b2dddb49bca7d864c2366d45fdb3e81bb284e509a309d4c1b5b98')
+
+prepare() {
+  cp -a py-${pkgver}{,-py2}
+}
+
+build() {
+  cd "$srcdir/py-${pkgver}"
+  python setup.py build
+
+  cd "$srcdir/py-${pkgver}-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/py-${pkgver}"
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LANG=en_US.utf8 py.test
+
+  cd "$srcdir/py-${pkgver}-py2"
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LANG=en_US.utf8 py.test2
+}
+
+package_python-py() {
+  depends=('python')
+
+  cd py-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-py() {
+  depends=('python2')
+
+  cd py-${pkgver}-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+



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

2014-09-25 Thread Felix Yan
Date: Thursday, September 25, 2014 @ 09:17:28
  Author: fyan
Revision: 119550

upgpkg: python-py 1.4.25-1

Modified:
  python-py/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-25 00:31:11 UTC (rev 119549)
+++ PKGBUILD2014-09-25 07:17:28 UTC (rev 119550)
@@ -8,7 +8,7 @@
 
 pkgbase=python-py
 pkgname=('python-py' 'python2-py')
-pkgver=1.4.24
+pkgver=1.4.25
 pkgrel=1
 pkgdesc="library with cross-python path, ini-parsing, io, code, log facilities"
 arch=('any')
@@ -17,7 +17,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest' 'python2-pytest')
 source=("http://pypi.python.org/packages/source/p/py/py-$pkgver.tar.gz";)
-sha512sums=('f62a6e962ff1ebab484725f37825cf07d730c182b7558dddf9ffe7fba7bc068748eb39952adf290fb4029989d4df1f0da1e17d4a5d7c8c509b7c82697d1e1c7c')
+sha512sums=('7e24a9d57298cf98fc246fbda7db81f6cd9d16b78425266c24d00ab1db77146ffab38820630b2dddb49bca7d864c2366d45fdb3e81bb284e509a309d4c1b5b98')
 
 prepare() {
   cp -a py-${pkgver}{,-py2}