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

2014-12-15 Thread Михаил Страшун
Date: Monday, December 15, 2014 @ 10:55:21
  Author: dicebot
Revision: 123903

upgpkg: ldc 1:0.15.1-1

LDC 0.15.1, switch to shared standard library

Modified:
  ldc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 07:50:46 UTC (rev 123902)
+++ PKGBUILD2014-12-15 09:55:21 UTC (rev 123903)
@@ -26,6 +26,7 @@
 
 mkdir build  cd build
 cmake \
+-DCMAKE_SKIP_RPATH=ON \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
 -DBUILD_SHARED_LIBS=ON \
@@ -34,7 +35,7 @@
 }
 
 package_ldc() {
-depends=('liblphobos')
+depends=('liblphobos' 'libconfig')
 backup=(etc/ldc2.conf)
 provides=(d-compiler)
 
@@ -55,6 +56,7 @@
 package_liblphobos() {
 provides=(d-runtime d-stdlib)
 replaces=(liblphobos-devel)
+depends=(curl)
 
 # licenses
 install -D -m644 $srcdir/ldc/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE


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

2014-12-15 Thread Михаил Страшун
Date: Monday, December 15, 2014 @ 10:56:01
  Author: dicebot
Revision: 123904

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

Added:
  ldc/repos/community-i686/PKGBUILD
(from rev 123903, ldc/trunk/PKGBUILD)
  ldc/repos/community-i686/ldc2.conf
(from rev 123903, ldc/trunk/ldc2.conf)
  ldc/repos/community-x86_64/PKGBUILD
(from rev 123903, ldc/trunk/PKGBUILD)
  ldc/repos/community-x86_64/ldc2.conf
(from rev 123903, ldc/trunk/ldc2.conf)
Deleted:
  ldc/repos/community-i686/PKGBUILD
  ldc/repos/community-i686/ldc2.conf
  ldc/repos/community-x86_64/PKGBUILD
  ldc/repos/community-x86_64/ldc2.conf

+
 /PKGBUILD  |  150 +++
 /ldc2.conf |   36 ++
 community-i686/PKGBUILD|   72 
 community-i686/ldc2.conf   |   18 -
 community-x86_64/PKGBUILD  |   73 
 community-x86_64/ldc2.conf |   18 -
 6 files changed, 186 insertions(+), 181 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 09:55:21 UTC (rev 123903)
+++ community-i686/PKGBUILD 2014-12-15 09:56:01 UTC (rev 123904)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Mihails Strasuns pub...@dicebot.lv
-# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-pkgname=('ldc' 'liblphobos-devel')
-groups=('dlang' 'dlang-ldc')
-pkgver=0.14.0
-epoch=1
-pkgrel=1
-pkgdesc=A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2
-arch=('i686' 'x86_64')
-url=https://github.com/ldc-developers/ldc;
-license=('BSD')
-depends=('libconfig')
-makedepends=('git' 'cmake' 'llvm')
-source=(git://github.com/ldc-developers/ldc.git#tag=v${pkgver}
-ldc2.conf
-   )
-sha1sums=('SKIP'
-  '290689ded66a12a243666d0bac3ffb74180fa490'
- )
-
-build() {
-cd $srcdir/ldc
-
-git submodule update --init --recursive
-
-mkdir build  cd build
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
-..
-make
-}
-
-package_ldc() {
-depends=('liblphobos-devel')
-backup=(etc/ldc2.conf)
-provides=(d-compiler)
-
-# binaries
-install -D -m755 $srcdir/ldc/build/bin/ldmd2 $pkgdir/usr/bin/ldmd2 
-install -D -m755 $srcdir/ldc/build/bin/ldc2 $pkgdir/usr/bin/ldc2 
-
-# supplementaries
-install -D -m644 $srcdir/ldc/bash_completion.d/ldc 
$pkgdir/usr/share/bash-completion/completions/ldc
-
-# licenses
-install -D -m644 $srcdir/ldc/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-# default configuration files
-install -D -m644 $srcdir/ldc2.conf $pkgdir/etc/ldc2.conf
-}
-
-package_liblphobos-devel() {
-provides=(d-runtime d-stdlib)
-   options=(staticlibs)
-
-# licenses
-install -D -m644 $srcdir/ldc/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-# libraries
-install -D -m644 $srcdir/ldc/build/lib/libphobos2-ldc.a 
$pkgdir/usr/lib/liblphobos2.a
-install -D -m644 $srcdir/ldc/build/lib/libdruntime-ldc.a 
$pkgdir/usr/lib/libldruntime.a
-install -D -m644 $srcdir/ldc/build/lib/libphobos2-ldc-debug.a 
$pkgdir/usr/lib/liblphobos2-debug.a
-install -D -m644 $srcdir/ldc/build/lib/libdruntime-ldc-debug.a 
$pkgdir/usr/lib/libldruntime-debug.a
-
-# imports
-mkdir -p $pkgdir/usr/include/dlang/ldc
-cp -r $srcdir/ldc/build/import/* $pkgdir/usr/include/dlang/ldc/
-cp -r $srcdir/ldc/runtime/phobos/std $pkgdir/usr/include/dlang/ldc/
-cp -r $srcdir/ldc/runtime/phobos/etc $pkgdir/usr/include/dlang/ldc/
-}

Copied: ldc/repos/community-i686/PKGBUILD (from rev 123903, ldc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 09:56:01 UTC (rev 123904)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Mihails Strasuns pub...@dicebot.lv
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+pkgname=('ldc' 'liblphobos')
+groups=('dlang' 'dlang-ldc')
+pkgver=0.15.1
+epoch=1
+pkgrel=1
+pkgdesc=A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2
+arch=('i686' 'x86_64')
+url=https://github.com/ldc-developers/ldc;
+license=('BSD')
+depends=('libconfig')
+makedepends=('git' 'cmake' 'llvm')
+source=(git://github.com/ldc-developers/ldc.git#tag=v${pkgver}
+ldc2.conf
+   )
+sha1sums=('SKIP'
+  '290689ded66a12a243666d0bac3ffb74180fa490'
+ )
+
+build() {
+cd $srcdir/ldc
+
+git submodule update --init --recursive
+
+mkdir build  cd build
+cmake \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
+-DBUILD_SHARED_LIBS=ON \
+..
+make
+}
+
+package_ldc() {
+depends=('liblphobos' 'libconfig')
+backup=(etc/ldc2.conf)
+provides=(d-compiler)
+
+ 

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

2014-12-15 Thread Tobias Powalowski
Date: Monday, December 15, 2014 @ 11:25:30
  Author: tpowa
Revision: 227624

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

Added:
  pciutils/repos/core-i686/PKGBUILD
(from rev 227623, pciutils/repos/testing-i686/PKGBUILD)
  pciutils/repos/core-x86_64/PKGBUILD
(from rev 227623, pciutils/repos/testing-x86_64/PKGBUILD)
Deleted:
  pciutils/repos/core-i686/PKGBUILD
  pciutils/repos/core-x86_64/PKGBUILD
  pciutils/repos/testing-i686/
  pciutils/repos/testing-x86_64/

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

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-12-15 10:25:22 UTC (rev 227623)
+++ core-i686/PKGBUILD  2014-12-15 10:25:30 UTC (rev 227624)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-pkgname=pciutils
-pkgver=3.2.1
-pkgrel=1
-pkgdesc=PCI bus configuration space access library and tools
-arch=(i686 x86_64)
-license=('GPL2')
-groups=('base')
-url=http://mj.ucw.cz/sw/pciutils/;
-depends=('glibc' 'hwids' 'kmod')
-source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
-   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz)
-md5sums=('fdc92c4665bb169022ffe730b3c08313')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make OPT=${CFLAGS} -fPIC -DPIC ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
-  cp lib/libpci.a ${srcdir}/
-  make clean
-  make OPT=${CFLAGS} ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata 
MANDIR=/usr/share/man DESTDIR=${pkgdir} install install-lib
-  install -m644 ${srcdir}/libpci.a ${pkgdir}/usr/lib/
-  # this is now supplied by the hwids package
-  rm -rf 
$pkgdir/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8,hwdata}}
-}

Copied: pciutils/repos/core-i686/PKGBUILD (from rev 227623, 
pciutils/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-12-15 10:25:30 UTC (rev 227624)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+pkgname=pciutils
+pkgver=3.3.0
+pkgrel=1
+pkgdesc=PCI bus configuration space access library and tools
+arch=(i686 x86_64)
+license=('GPL2')
+groups=('base')
+url=http://mj.ucw.cz/sw/pciutils/;
+depends=('glibc' 'hwids' 'kmod')
+source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz)
+md5sums=('b73bca5b1c2fd20a17a19f5040411521')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make OPT=${CFLAGS} -fPIC -DPIC ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
+  cp lib/libpci.a ${srcdir}/
+  make clean
+  make OPT=${CFLAGS} ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata 
MANDIR=/usr/share/man DESTDIR=${pkgdir} install install-lib
+  install -m644 ${srcdir}/libpci.a ${pkgdir}/usr/lib/
+  # this is now supplied by the hwids package
+  rm -rf 
$pkgdir/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8,hwdata}}
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2014-12-15 10:25:22 UTC (rev 227623)
+++ core-x86_64/PKGBUILD2014-12-15 10:25:30 UTC (rev 227624)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-pkgname=pciutils
-pkgver=3.2.1
-pkgrel=1
-pkgdesc=PCI bus configuration space access library and tools
-arch=(i686 x86_64)
-license=('GPL2')
-groups=('base')
-url=http://mj.ucw.cz/sw/pciutils/;
-depends=('glibc' 'hwids' 'kmod')
-source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
-   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz)
-md5sums=('fdc92c4665bb169022ffe730b3c08313')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make OPT=${CFLAGS} -fPIC -DPIC ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
-  cp lib/libpci.a ${srcdir}/
-  make clean
-  make OPT=${CFLAGS} ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make 

[arch-commits] Commit in mdadm/repos (38 files)

2014-12-15 Thread Tobias Powalowski
Date: Monday, December 15, 2014 @ 11:25:39
  Author: tpowa
Revision: 227625

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

Added:
  mdadm/repos/core-i686/PKGBUILD
(from rev 227624, mdadm/repos/testing-i686/PKGBUILD)
  mdadm/repos/core-i686/disable-werror.patch
(from rev 227624, mdadm/repos/testing-i686/disable-werror.patch)
  mdadm/repos/core-i686/linux-3.0.patch
(from rev 227624, mdadm/repos/testing-i686/linux-3.0.patch)
  mdadm/repos/core-i686/mdadm-fix-udev-rules.patch
(from rev 227624, mdadm/repos/testing-i686/mdadm-fix-udev-rules.patch)
  mdadm/repos/core-i686/mdadm.conf
(from rev 227624, mdadm/repos/testing-i686/mdadm.conf)
  mdadm/repos/core-i686/mdadm.service
(from rev 227624, mdadm/repos/testing-i686/mdadm.service)
  mdadm/repos/core-i686/mdadm_hook
(from rev 227624, mdadm/repos/testing-i686/mdadm_hook)
  mdadm/repos/core-i686/mdadm_install
(from rev 227624, mdadm/repos/testing-i686/mdadm_install)
  mdadm/repos/core-i686/mdadm_udev_install
(from rev 227624, mdadm/repos/testing-i686/mdadm_udev_install)
  mdadm/repos/core-x86_64/PKGBUILD
(from rev 227624, mdadm/repos/testing-x86_64/PKGBUILD)
  mdadm/repos/core-x86_64/disable-werror.patch
(from rev 227624, mdadm/repos/testing-x86_64/disable-werror.patch)
  mdadm/repos/core-x86_64/linux-3.0.patch
(from rev 227624, mdadm/repos/testing-x86_64/linux-3.0.patch)
  mdadm/repos/core-x86_64/mdadm-fix-udev-rules.patch
(from rev 227624, mdadm/repos/testing-x86_64/mdadm-fix-udev-rules.patch)
  mdadm/repos/core-x86_64/mdadm.conf
(from rev 227624, mdadm/repos/testing-x86_64/mdadm.conf)
  mdadm/repos/core-x86_64/mdadm.service
(from rev 227624, mdadm/repos/testing-x86_64/mdadm.service)
  mdadm/repos/core-x86_64/mdadm_hook
(from rev 227624, mdadm/repos/testing-x86_64/mdadm_hook)
  mdadm/repos/core-x86_64/mdadm_install
(from rev 227624, mdadm/repos/testing-x86_64/mdadm_install)
  mdadm/repos/core-x86_64/mdadm_udev_install
(from rev 227624, mdadm/repos/testing-x86_64/mdadm_udev_install)
Deleted:
  mdadm/repos/core-i686/PKGBUILD
  mdadm/repos/core-i686/disable-werror.patch
  mdadm/repos/core-i686/linux-3.0.patch
  mdadm/repos/core-i686/mdadm-fix-udev-rules.patch
  mdadm/repos/core-i686/mdadm.conf
  mdadm/repos/core-i686/mdadm.service
  mdadm/repos/core-i686/mdadm_hook
  mdadm/repos/core-i686/mdadm_install
  mdadm/repos/core-i686/mdadm_udev_install
  mdadm/repos/core-x86_64/PKGBUILD
  mdadm/repos/core-x86_64/disable-werror.patch
  mdadm/repos/core-x86_64/linux-3.0.patch
  mdadm/repos/core-x86_64/mdadm-fix-udev-rules.patch
  mdadm/repos/core-x86_64/mdadm.conf
  mdadm/repos/core-x86_64/mdadm.service
  mdadm/repos/core-x86_64/mdadm_hook
  mdadm/repos/core-x86_64/mdadm_install
  mdadm/repos/core-x86_64/mdadm_udev_install
  mdadm/repos/testing-i686/
  mdadm/repos/testing-x86_64/

+
 /PKGBUILD  |  110 
 /disable-werror.patch  |   22 ++
 /linux-3.0.patch   |   90 ++
 /mdadm-fix-udev-rules.patch|  274 +++
 /mdadm.conf|  134 +++
 /mdadm.service |   16 +
 /mdadm_hook|   98 +++
 /mdadm_install |   92 ++
 /mdadm_udev_install|   50 +
 core-i686/PKGBUILD |   55 --
 core-i686/disable-werror.patch |   11 -
 core-i686/linux-3.0.patch  |   45 -
 core-i686/mdadm-fix-udev-rules.patch   |  137 ---
 core-i686/mdadm.conf   |   67 ---
 core-i686/mdadm.service|8 
 core-i686/mdadm_hook   |   49 -
 core-i686/mdadm_install|   46 -
 core-i686/mdadm_udev_install   |   25 --
 core-x86_64/PKGBUILD   |   55 --
 core-x86_64/disable-werror.patch   |   11 -
 core-x86_64/linux-3.0.patch|   45 -
 core-x86_64/mdadm-fix-udev-rules.patch |  137 ---
 core-x86_64/mdadm.conf |   67 ---
 core-x86_64/mdadm.service  |8 
 core-x86_64/mdadm_hook |   49 -
 core-x86_64/mdadm_install  |   46 -
 core-x86_64/mdadm_udev_install |   25 --
 27 files changed, 886 insertions(+), 886 deletions(-)

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


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

2014-12-15 Thread Tobias Powalowski
Date: Monday, December 15, 2014 @ 11:25:22
  Author: tpowa
Revision: 227623

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

Added:
  dosfstools/repos/core-i686/PKGBUILD
(from rev 227622, dosfstools/repos/testing-i686/PKGBUILD)
  dosfstools/repos/core-x86_64/PKGBUILD
(from rev 227622, dosfstools/repos/testing-x86_64/PKGBUILD)
Deleted:
  dosfstools/repos/core-i686/PKGBUILD
  dosfstools/repos/core-x86_64/PKGBUILD
  dosfstools/repos/testing-i686/
  dosfstools/repos/testing-x86_64/

--+
 /PKGBUILD|   50 +
 core-i686/PKGBUILD   |   24 ---
 core-x86_64/PKGBUILD |   24 ---
 3 files changed, 50 insertions(+), 48 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-12-15 07:33:13 UTC (rev 227622)
+++ core-i686/PKGBUILD  2014-12-15 10:25:22 UTC (rev 227623)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: dorphell dorph...@archlinux.org
-# Committer: Judd Vinet jvi...@zeroflux.org
-pkgname=dosfstools
-pkgver=3.0.26
-pkgrel=1
-pkgdesc=DOS filesystem utilities
-arch=(i686 x86_64)
-depends=('glibc')
-source=(http://daniel-baumann.ch/files/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-url=http://www.daniel-baumann.ch/software/dosfstools/;
-license=('GPL2')
-md5sums=('45012f5f56f2aae3afcd62120b9e5a08'
- 'SKIP')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   make
-}
-
-package () {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man 
DOCDIR=/usr/share/doc install
-}

Copied: dosfstools/repos/core-i686/PKGBUILD (from rev 227622, 
dosfstools/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-12-15 10:25:22 UTC (rev 227623)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: dorphell dorph...@archlinux.org
+# Committer: Judd Vinet jvi...@zeroflux.org
+pkgname=dosfstools
+pkgver=3.0.27
+pkgrel=1
+pkgdesc=DOS filesystem utilities
+arch=(i686 x86_64)
+depends=('glibc')
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
+)
+url=https://github.com/dosfstools/dosfstools;
+license=('GPL2')
+md5sums=('3254566ea66b185920abb7f694df2c2a'
+ 'SKIP')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   make
+}
+
+package () {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man 
DOCDIR=/usr/share/doc install
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2014-12-15 07:33:13 UTC (rev 227622)
+++ core-x86_64/PKGBUILD2014-12-15 10:25:22 UTC (rev 227623)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: dorphell dorph...@archlinux.org
-# Committer: Judd Vinet jvi...@zeroflux.org
-pkgname=dosfstools
-pkgver=3.0.26
-pkgrel=1
-pkgdesc=DOS filesystem utilities
-arch=(i686 x86_64)
-depends=('glibc')
-source=(http://daniel-baumann.ch/files/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-url=http://www.daniel-baumann.ch/software/dosfstools/;
-license=('GPL2')
-md5sums=('45012f5f56f2aae3afcd62120b9e5a08'
- 'SKIP')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   make
-}
-
-package () {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man 
DOCDIR=/usr/share/doc install
-}

Copied: dosfstools/repos/core-x86_64/PKGBUILD (from rev 227622, 
dosfstools/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2014-12-15 10:25:22 UTC (rev 227623)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: dorphell dorph...@archlinux.org
+# Committer: Judd Vinet jvi...@zeroflux.org
+pkgname=dosfstools
+pkgver=3.0.27
+pkgrel=1
+pkgdesc=DOS filesystem utilities
+arch=(i686 x86_64)
+depends=('glibc')
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
+)
+url=https://github.com/dosfstools/dosfstools;
+license=('GPL2')
+md5sums=('3254566ea66b185920abb7f694df2c2a'
+ 'SKIP')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   make
+}
+
+package () {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man 
DOCDIR=/usr/share/doc install
+}


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

2014-12-15 Thread Tobias Powalowski
Date: Monday, December 15, 2014 @ 11:25:46
  Author: tpowa
Revision: 227626

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

Added:
  xfsprogs/repos/core-i686/PKGBUILD
(from rev 227625, xfsprogs/repos/testing-i686/PKGBUILD)
  xfsprogs/repos/core-x86_64/PKGBUILD
(from rev 227625, xfsprogs/repos/testing-x86_64/PKGBUILD)
Deleted:
  xfsprogs/repos/core-i686/PKGBUILD
  xfsprogs/repos/core-x86_64/PKGBUILD
  xfsprogs/repos/testing-i686/
  xfsprogs/repos/testing-x86_64/

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

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-12-15 10:25:39 UTC (rev 227625)
+++ core-i686/PKGBUILD  2014-12-15 10:25:46 UTC (rev 227626)
@@ -1,33 +0,0 @@
-# $Id$
-#
-pkgname=xfsprogs
-pkgver=3.2.1
-pkgrel=1
-pkgdesc=XFS filesystem utilities
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://oss.sgi.com/projects/xfs/;
-groups=('base')
-depends=('libutil-linux')
-options=('!makeflags')
-# We mirror the sources as upstream tends to move them once a new release is 
out
-source=(ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('5c6905932029c8f9207fe5a0a8aac24b')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  export OPTIMIZER=-march=${CARCH/_/-} -O1
-  export DEBUG=-DNDEBUG
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DIST_ROOT=${pkgdir} PKG_ROOT_SBIN_DIR=/usr/bin install install-dev
-  chown -R root $pkgdir
-  chgrp -R root $pkgdir
-  # add hack as we cannot set rootlibdir
-  mv ${pkgdir}/lib/libhandle.so* ${pkgdir}/usr/lib/
-  rm -rf ${pkgdir}/lib
-}

Copied: xfsprogs/repos/core-i686/PKGBUILD (from rev 227625, 
xfsprogs/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-12-15 10:25:46 UTC (rev 227626)
@@ -0,0 +1,33 @@
+# $Id$
+#
+pkgname=xfsprogs
+pkgver=3.2.2
+pkgrel=1
+pkgdesc=XFS filesystem utilities
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://oss.sgi.com/projects/xfs/;
+groups=('base')
+depends=('libutil-linux')
+options=('!makeflags')
+# We mirror the sources as upstream tends to move them once a new release is 
out
+source=(ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('b6b0db5e3ee71ceba26d0a5accbd0666')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  export OPTIMIZER=-march=${CARCH/_/-} -O1
+  export DEBUG=-DNDEBUG
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DIST_ROOT=${pkgdir} PKG_ROOT_SBIN_DIR=/usr/bin install install-dev
+  chown -R root $pkgdir
+  chgrp -R root $pkgdir
+  # add hack as we cannot set rootlibdir
+  mv ${pkgdir}/lib/libhandle.so* ${pkgdir}/usr/lib/
+  rm -rf ${pkgdir}/lib
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2014-12-15 10:25:39 UTC (rev 227625)
+++ core-x86_64/PKGBUILD2014-12-15 10:25:46 UTC (rev 227626)
@@ -1,33 +0,0 @@
-# $Id$
-#
-pkgname=xfsprogs
-pkgver=3.2.1
-pkgrel=1
-pkgdesc=XFS filesystem utilities
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://oss.sgi.com/projects/xfs/;
-groups=('base')
-depends=('libutil-linux')
-options=('!makeflags')
-# We mirror the sources as upstream tends to move them once a new release is 
out
-source=(ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('5c6905932029c8f9207fe5a0a8aac24b')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  export OPTIMIZER=-march=${CARCH/_/-} -O1
-  export DEBUG=-DNDEBUG
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DIST_ROOT=${pkgdir} PKG_ROOT_SBIN_DIR=/usr/bin install install-dev
-  chown -R root $pkgdir
-  chgrp -R root $pkgdir
-  # add hack as we cannot set rootlibdir
-  mv ${pkgdir}/lib/libhandle.so* ${pkgdir}/usr/lib/
-  rm -rf ${pkgdir}/lib
-}

Copied: xfsprogs/repos/core-x86_64/PKGBUILD (from rev 227625, 
xfsprogs/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2014-12-15 10:25:46 UTC (rev 227626)
@@ -0,0 +1,33 @@
+# $Id$
+#
+pkgname=xfsprogs
+pkgver=3.2.2
+pkgrel=1
+pkgdesc=XFS filesystem utilities
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://oss.sgi.com/projects/xfs/;
+groups=('base')
+depends=('libutil-linux')
+options=('!makeflags')
+# We mirror the sources as upstream tends to move them once a new release is 
out

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

2014-12-15 Thread Timothy Redaelli
Date: Monday, December 15, 2014 @ 16:43:19
  Author: tredaelli
Revision: 123905

upgpkg: parallel 20141122-1

Modified:
  parallel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 09:56:01 UTC (rev 123904)
+++ PKGBUILD2014-12-15 15:43:19 UTC (rev 123905)
@@ -4,7 +4,7 @@
 # Contributor: Peter Simons sim...@cryp.to
 
 pkgname=parallel
-pkgver=20141022
+pkgver=20141122
 pkgrel=1
 pkgdesc='A shell tool for executing jobs in parallel'
 arch=('any')
@@ -12,9 +12,9 @@
 license=('GPL3')
 depends=('perl' 'procps')
 source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('c01f53f9f6cc721a81591308f9e689c4'
+md5sums=('9fad45cfb5180d35650f6c2316e1489a'
  'SKIP')
-sha1sums=('6aca752527a4c3798c4ec80a9d0f037969280975'
+sha1sums=('234b43a99354e2079b3dff48ab2e10a9cc9e3b42'
   'SKIP')
 
 build() {


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

2014-12-15 Thread Timothy Redaelli
Date: Monday, December 15, 2014 @ 16:43:32
  Author: tredaelli
Revision: 123906

archrelease: copy trunk to community-any

Added:
  parallel/repos/community-any/PKGBUILD
(from rev 123905, parallel/trunk/PKGBUILD)
  parallel/repos/community-any/fix-pod-numbers.patch
(from rev 123905, parallel/trunk/fix-pod-numbers.patch)
Deleted:
  parallel/repos/community-any/PKGBUILD
  parallel/repos/community-any/fix-pod-numbers.patch

---+
 PKGBUILD  |   68 +-
 fix-pod-numbers.patch |   94 
 2 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-15 15:43:19 UTC (rev 123905)
+++ PKGBUILD2014-12-15 15:43:32 UTC (rev 123906)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Vianney le Clément vleclement AT gmail·com
-# Contributor: Peter Simons sim...@cryp.to
-
-pkgname=parallel
-pkgver=20141022
-pkgrel=1
-pkgdesc='A shell tool for executing jobs in parallel'
-arch=('any')
-url='http://www.gnu.org/software/parallel/'
-license=('GPL3')
-depends=('perl' 'procps')
-source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('c01f53f9f6cc721a81591308f9e689c4'
- 'SKIP')
-sha1sums=('6aca752527a4c3798c4ec80a9d0f037969280975'
-  'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  # FIXME
-  ln -sf parallel $pkgdir/usr/bin/sem
-}
-
-# vim:set ts=2 sw=2 et:

Copied: parallel/repos/community-any/PKGBUILD (from rev 123905, 
parallel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-15 15:43:32 UTC (rev 123906)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Vianney le Clément vleclement AT gmail·com
+# Contributor: Peter Simons sim...@cryp.to
+
+pkgname=parallel
+pkgver=20141122
+pkgrel=1
+pkgdesc='A shell tool for executing jobs in parallel'
+arch=('any')
+url='http://www.gnu.org/software/parallel/'
+license=('GPL3')
+depends=('perl' 'procps')
+source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
+md5sums=('9fad45cfb5180d35650f6c2316e1489a'
+ 'SKIP')
+sha1sums=('234b43a99354e2079b3dff48ab2e10a9cc9e3b42'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+
+  # FIXME
+  ln -sf parallel $pkgdir/usr/bin/sem
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fix-pod-numbers.patch
===
--- fix-pod-numbers.patch   2014-12-15 15:43:19 UTC (rev 123905)
+++ fix-pod-numbers.patch   2014-12-15 15:43:32 UTC (rev 123906)
@@ -1,47 +0,0 @@
 src/parallel.pod.orig
-+++ src/parallel.pod
-@@ -528,18 +528,18 @@
- 
- =over 3
- 
--=item 0
-+=item 0Z
- 
- Do not halt if a job fails. Exit status will be the number of jobs
- failed. This is the default.
- 
--=item 1
-+=item 1Z
- 
- Do not start new jobs if a job fails, but complete the running jobs
- including cleanup. The exit status will be the exit status from the
- last failing job.
- 
--=item 2
-+=item 2Z
- 
- Kill off all jobs immediately and exit without cleanup. The exit
- status will be the exit status from the failing job.
-@@ -2760,7 +2760,7 @@
- 
- =over 6
- 
--=item 0
-+=item 0Z
- 
- All jobs ran without error.
- 
-@@ -2768,11 +2768,11 @@
- 
- Some of the jobs failed. The exit status gives the number of failed jobs
- 
--=item 254
-+=item 254Z
- 
- More than 253 jobs failed.
- 
--=item 255
-+=item 255Z
- 
- Other error.
- 

Copied: parallel/repos/community-any/fix-pod-numbers.patch (from rev 123905, 
parallel/trunk/fix-pod-numbers.patch)
===
--- fix-pod-numbers.patch   (rev 0)
+++ fix-pod-numbers.patch   2014-12-15 15:43:32 UTC (rev 123906)
@@ -0,0 +1,47 @@
+--- src/parallel.pod.orig
 src/parallel.pod
+@@ -528,18 +528,18 @@
+ 
+ =over 3
+ 
+-=item 0
++=item 0Z
+ 
+ Do not halt if a job fails. Exit status will be the number of jobs
+ failed. This is the default.
+ 
+-=item 1
++=item 1Z
+ 
+ Do not start new jobs if a job fails, but complete the running jobs
+ including cleanup. The exit status will be the exit status from the
+ last failing job.
+ 
+-=item 2
++=item 2Z
+ 
+ Kill off all jobs immediately and exit without cleanup. The exit
+ status will be the exit status from the failing job.
+@@ -2760,7 +2760,7 @@
+ 
+ =over 6
+ 
+-=item 0
++=item 0Z
+ 
+ All jobs ran without error.
+ 
+@@ -2768,11 +2768,11 @@
+ 
+ Some of the jobs failed. The exit status gives the number of failed jobs
+ 
+-=item 254
++=item 254Z
+ 

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

2014-12-15 Thread Felix Yan
Date: Monday, December 15, 2014 @ 17:07:54
  Author: fyan
Revision: 123907

upgpkg: jenkins 1.594-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 15:43:32 UTC (rev 123906)
+++ PKGBUILD2014-12-15 16:07:54 UTC (rev 123907)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
 
 pkgname=jenkins
-pkgver=1.593
+pkgver=1.594
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha512sums=('0fc53f46cacc8532a8cdbabe5befa2a31954eefa0d4cf3b10f1d77bf61ac55ef9c18cdc6e758d3c00a910e1da75a2198293ac02d13f16ad27e162d3a83228aa4'
+sha512sums=('0dbee114d9e61bfaa52cbe8f10bc5de279386837409cbeac10fcafd436c4fc56e8122a965c59169721967ed626e3b5347afa64bfb98ea1e306bf3a6b1d16bb33'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'fc82b56741c4683cde4913e41bf3dbfb0e7b16897b22b27d92a9c6fa7a300ffba97d85fbbf2287a7c5c546cb5697bbe8daa108bfc51572cf69c256d1e01e80ba'


[arch-commits] Commit in jenkins/repos/community-any (12 files)

2014-12-15 Thread Felix Yan
Date: Monday, December 15, 2014 @ 17:08:33
  Author: fyan
Revision: 123908

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 123907, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 123907, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 123907, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 123907, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 123907, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.tmpfiles.d
(from rev 123907, jenkins/trunk/jenkins.tmpfiles.d)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.tmpfiles.d

+
 LICENSE|   46 ++--
 PKGBUILD   |   84 ++---
 jenkins.conf   |   26 +--
 jenkins.install|  114 +--
 jenkins.service|   48 ++---
 jenkins.tmpfiles.d |4 -
 6 files changed, 161 insertions(+), 161 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-12-15 16:07:54 UTC (rev 123907)
+++ LICENSE 2014-12-15 16:08:33 UTC (rev 123908)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the Software), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 123907, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-12-15 16:08:33 UTC (rev 123908)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-15 16:07:54 UTC (rev 123907)
+++ PKGBUILD2014-12-15 16:08:33 UTC (rev 123908)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Marcel Huber marcelhuberfoo at gmail dott com
-# Contributor: Illarion Kovalchuk illarion.kovalchuk at gmail dot com
-
-pkgname=jenkins
-pkgver=1.593
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'
-noextract=('jenkins.war')

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

2014-12-15 Thread Timothy Redaelli
Date: Monday, December 15, 2014 @ 17:12:47
  Author: tredaelli
Revision: 123909

upgpkg: pax-utils 0.9.1-1

Modified:
  pax-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 16:08:33 UTC (rev 123908)
+++ PKGBUILD2014-12-15 16:12:47 UTC (rev 123909)
@@ -4,7 +4,7 @@
 # Contributor: Maxwel msg.max...@gmail.com
 
 pkgname=pax-utils
-pkgver=0.8.1
+pkgver=0.9.1
 pkgrel=1
 pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
 url='http://hardened.gentoo.org/pax-utils.xml'
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('bash' 'libcap' 'python-pyelftools')
 source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('844ff25b1a11bcef92ef34b22f576f226a772b67196818656f8874513438f5b9')
+sha256sums=('643ccaf6952f836c42aafcd5ad7e5f7de2d3472225a34603680b151a8b198b0c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -21,7 +21,8 @@
 
 check() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  make check
+  # FIXME lddpath.py uses /lib64 before /usr/lib
+  LD_LIBRARY_PATH=/usr/lib make check
 }
 
 package() {


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

2014-12-15 Thread Timothy Redaelli
Date: Monday, December 15, 2014 @ 17:13:00
  Author: tredaelli
Revision: 123910

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

Added:
  pax-utils/repos/community-i686/PKGBUILD
(from rev 123909, pax-utils/trunk/PKGBUILD)
  pax-utils/repos/community-x86_64/PKGBUILD
(from rev 123909, pax-utils/trunk/PKGBUILD)
Deleted:
  pax-utils/repos/community-i686/PKGBUILD
  pax-utils/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 16:12:47 UTC (rev 123909)
+++ community-i686/PKGBUILD 2014-12-15 16:13:00 UTC (rev 123910)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: sh0 m...@sh0.org
-# Contributor: Maxwel msg.max...@gmail.com
-
-pkgname=pax-utils
-pkgver=0.8.1
-pkgrel=1
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'python-pyelftools')
-source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('844ff25b1a11bcef92ef34b22f576f226a772b67196818656f8874513438f5b9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_CAP='yes'
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_PYTHON='yes' DESTDIR=${pkgdir} install
-}

Copied: pax-utils/repos/community-i686/PKGBUILD (from rev 123909, 
pax-utils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 16:13:00 UTC (rev 123910)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: sh0 m...@sh0.org
+# Contributor: Maxwel msg.max...@gmail.com
+
+pkgname=pax-utils
+pkgver=0.9.1
+pkgrel=1
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('643ccaf6952f836c42aafcd5ad7e5f7de2d3472225a34603680b151a8b198b0c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make USE_CAP='yes'
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # FIXME lddpath.py uses /lib64 before /usr/lib
+  LD_LIBRARY_PATH=/usr/lib make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make USE_PYTHON='yes' DESTDIR=${pkgdir} install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-15 16:12:47 UTC (rev 123909)
+++ community-x86_64/PKGBUILD   2014-12-15 16:13:00 UTC (rev 123910)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: sh0 m...@sh0.org
-# Contributor: Maxwel msg.max...@gmail.com
-
-pkgname=pax-utils
-pkgver=0.8.1
-pkgrel=1
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'python-pyelftools')
-source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('844ff25b1a11bcef92ef34b22f576f226a772b67196818656f8874513438f5b9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_CAP='yes'
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make USE_PYTHON='yes' DESTDIR=${pkgdir} install
-}

Copied: pax-utils/repos/community-x86_64/PKGBUILD (from rev 123909, 
pax-utils/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-15 16:13:00 UTC (rev 123910)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: sh0 m...@sh0.org
+# Contributor: Maxwel msg.max...@gmail.com
+
+pkgname=pax-utils
+pkgver=0.9.1
+pkgrel=1
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=(http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz;)

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

2014-12-15 Thread Gaetan Bisson
Date: Monday, December 15, 2014 @ 18:00:35
  Author: bisson
Revision: 227627

upstream update

Modified:
  sharutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 10:25:46 UTC (rev 227626)
+++ PKGBUILD2014-12-15 17:00:35 UTC (rev 227627)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=sharutils
-pkgver=4.14
+pkgver=4.14.2
 pkgrel=1
 pkgdesc='Makes so-called shell archives out of many files'
 url='http://www.gnu.org/software/sharutils/'
@@ -11,8 +11,8 @@
 license=('GPL')
 arch=('i686' 'x86_64')
 depends=('perl' 'gettext' 'texinfo')
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('5d2d76caa6ee816202fb78395415bd863043d81b')
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/su-4.14.2/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('d28608310666d6ac17e771b058558b29aabd9fad')
 
 install=install
 


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

2014-12-15 Thread Gaetan Bisson
Date: Monday, December 15, 2014 @ 18:01:07
  Author: bisson
Revision: 227628

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

Added:
  sharutils/repos/extra-i686/PKGBUILD
(from rev 227627, sharutils/trunk/PKGBUILD)
  sharutils/repos/extra-i686/install
(from rev 227627, sharutils/trunk/install)
  sharutils/repos/extra-x86_64/PKGBUILD
(from rev 227627, sharutils/trunk/PKGBUILD)
  sharutils/repos/extra-x86_64/install
(from rev 227627, sharutils/trunk/install)
Deleted:
  sharutils/repos/extra-i686/PKGBUILD
  sharutils/repos/extra-i686/install
  sharutils/repos/extra-x86_64/PKGBUILD
  sharutils/repos/extra-x86_64/install

---+
 /PKGBUILD |   64 
 /install  |   36 +++
 extra-i686/PKGBUILD   |   32 
 extra-i686/install|   18 -
 extra-x86_64/PKGBUILD |   32 
 extra-x86_64/install  |   18 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-15 17:00:35 UTC (rev 227627)
+++ extra-i686/PKGBUILD 2014-12-15 17:01:07 UTC (rev 227628)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Kevin Piche ke...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=sharutils
-pkgver=4.14
-pkgrel=1
-pkgdesc='Makes so-called shell archives out of many files'
-url='http://www.gnu.org/software/sharutils/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('perl' 'gettext' 'texinfo')
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('5d2d76caa6ee816202fb78395415bd863043d81b')
-
-install=install
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure \
-   --prefix=/usr \
-   --mandir=/usr/share/man \
-   --infodir=/usr/share/info \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: sharutils/repos/extra-i686/PKGBUILD (from rev 227627, 
sharutils/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-12-15 17:01:07 UTC (rev 227628)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Kevin Piche ke...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=sharutils
+pkgver=4.14.2
+pkgrel=1
+pkgdesc='Makes so-called shell archives out of many files'
+url='http://www.gnu.org/software/sharutils/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('perl' 'gettext' 'texinfo')
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/su-4.14.2/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('d28608310666d6ac17e771b058558b29aabd9fad')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+   --infodir=/usr/share/info \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/install
===
--- extra-i686/install  2014-12-15 17:00:35 UTC (rev 227627)
+++ extra-i686/install  2014-12-15 17:01:07 UTC (rev 227628)
@@ -1,18 +0,0 @@
-infodir=/usr/share/info
-filelist=(sharutils.info.gz)
-
-post_install() {
-   for file in ${filelist[@]}; do
-   install-info $infodir/$file $infodir/dir
-   done
-}
-
-post_upgrade() {
-   post_install
-}
-
-pre_remove() {
-   for file in ${filelist[@]}; do
-   install-info --delete $infodir/$file $infodir/dir
-   done
-}

Copied: sharutils/repos/extra-i686/install (from rev 227627, 
sharutils/trunk/install)
===
--- extra-i686/install  (rev 0)
+++ extra-i686/install  2014-12-15 17:01:07 UTC (rev 227628)
@@ -0,0 +1,18 @@
+infodir=/usr/share/info
+filelist=(sharutils.info.gz)
+
+post_install() {
+   for file in ${filelist[@]}; do
+   install-info $infodir/$file $infodir/dir
+   done
+}
+
+post_upgrade() {
+   post_install
+}
+
+pre_remove() {
+   for file in ${filelist[@]}; do
+   install-info --delete $infodir/$file $infodir/dir
+   done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-12-15 17:00:35 UTC (rev 227627)
+++ extra-x86_64/PKGBUILD   2014-12-15 17:01:07 UTC (rev 227628)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Kevin Piche ke...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=sharutils
-pkgver=4.14

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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 18:16:27
  Author: spupykin
Revision: 123911

upgpkg: cgmanager 0.33-1

upd

Modified:
  cgmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 16:13:00 UTC (rev 123910)
+++ PKGBUILD2014-12-15 17:16:27 UTC (rev 123911)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=cgmanager
-pkgver=0.32
+pkgver=0.33
 pkgrel=1
 pkgdesc=Another daemon for managing control groups
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=('libnih')
 makedepends=('help2man')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/cgmanager/cgmanager/archive/v$pkgver.tar.gz;)
-md5sums=('28b234754c129a3e7985639513281244')
+md5sums=('16a4d704ade0319f5f14d213b4f37fa6')
 
 build() {
cd $srcdir/$pkgname-$pkgver


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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 18:16:51
  Author: spupykin
Revision: 123912

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 17:16:27 UTC (rev 123911)
+++ community-i686/PKGBUILD 2014-12-15 17:16:51 UTC (rev 123912)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=cgmanager
-pkgver=0.32
-pkgrel=1
-pkgdesc=Another daemon for managing control groups
-arch=(i686 x86_64)
-url=https://github.com/cgmanager/cgmanager;
-license=('GPL')
-depends=('libnih')
-makedepends=('help2man')
-source=($pkgname-$pkgver.tar.gz::https://github.com/cgmanager/cgmanager/archive/v$pkgver.tar.gz;)
-md5sums=('28b234754c129a3e7985639513281244')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   ./bootstrap.sh
-   ./configure --prefix=/usr --sbindir=/usr/bin
-   make
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir/ install
-}

Copied: cgmanager/repos/community-i686/PKGBUILD (from rev 123911, 
cgmanager/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 17:16:51 UTC (rev 123912)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=cgmanager
+pkgver=0.33
+pkgrel=1
+pkgdesc=Another daemon for managing control groups
+arch=(i686 x86_64)
+url=https://github.com/cgmanager/cgmanager;
+license=('GPL')
+depends=('libnih')
+makedepends=('help2man')
+source=($pkgname-$pkgver.tar.gz::https://github.com/cgmanager/cgmanager/archive/v$pkgver.tar.gz;)
+md5sums=('16a4d704ade0319f5f14d213b4f37fa6')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./bootstrap.sh
+   ./configure --prefix=/usr --sbindir=/usr/bin
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-15 17:16:27 UTC (rev 123911)
+++ community-x86_64/PKGBUILD   2014-12-15 17:16:51 UTC (rev 123912)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=cgmanager
-pkgver=0.32
-pkgrel=1
-pkgdesc=Another daemon for managing control groups
-arch=(i686 x86_64)
-url=https://github.com/cgmanager/cgmanager;
-license=('GPL')
-depends=('libnih')
-makedepends=('help2man')
-source=($pkgname-$pkgver.tar.gz::https://github.com/cgmanager/cgmanager/archive/v$pkgver.tar.gz;)
-md5sums=('28b234754c129a3e7985639513281244')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   ./bootstrap.sh
-   ./configure --prefix=/usr --sbindir=/usr/bin
-   make
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir/ install
-}

Copied: cgmanager/repos/community-x86_64/PKGBUILD (from rev 123911, 
cgmanager/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-15 17:16:51 UTC (rev 123912)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=cgmanager
+pkgver=0.33
+pkgrel=1
+pkgdesc=Another daemon for managing control groups
+arch=(i686 x86_64)
+url=https://github.com/cgmanager/cgmanager;
+license=('GPL')
+depends=('libnih')
+makedepends=('help2man')
+source=($pkgname-$pkgver.tar.gz::https://github.com/cgmanager/cgmanager/archive/v$pkgver.tar.gz;)
+md5sums=('16a4d704ade0319f5f14d213b4f37fa6')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./bootstrap.sh
+   ./configure --prefix=/usr --sbindir=/usr/bin
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+}


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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 18:16:54
  Author: spupykin
Revision: 123913

upgpkg: poedit 1.7.1-1

upd

Modified:
  poedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 17:16:51 UTC (rev 123912)
+++ PKGBUILD2014-12-15 17:16:54 UTC (rev 123913)
@@ -6,7 +6,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=poedit
-pkgver=1.6.11
+pkgver=1.7.1
 pkgrel=1
 pkgdesc=Cross-platform gettext catalogs (.po files) editor
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 #source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
 
#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
 
source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('9ffd93844e50f65c89c2a8d58c2ddcca')
+md5sums=('52915cd751c926366cf6a08371caff57')
 
 build() {
 cd ${srcdir}/${pkgname}-${pkgver}


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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 18:17:07
  Author: spupykin
Revision: 123914

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

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

-+
 /PKGBUILD   |   66 ++
 /poedit.install |   24 +
 community-i686/PKGBUILD |   33 ---
 community-i686/poedit.install   |   12 --
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/poedit.install |   12 --
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 17:16:54 UTC (rev 123913)
+++ community-i686/PKGBUILD 2014-12-15 17:17:07 UTC (rev 123914)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.11
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('9ffd93844e50f65c89c2a8d58c2ddcca')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 123913, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 17:17:07 UTC (rev 123914)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.7.1
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('52915cd751c926366cf6a08371caff57')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2014-12-15 17:16:54 UTC (rev 123913)
+++ community-i686/poedit.install   2014-12-15 17:17:07 UTC (rev 123914)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 123913, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2014-12-15 17:17:07 UTC (rev 123914)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

[arch-commits] Commit in tigervnc/trunk (PKGBUILD compile_fix.patch)

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 18:39:36
  Author: spupykin
Revision: 123915

upgpkg: tigervnc 1.4.0-1

upd

Added:
  tigervnc/trunk/compile_fix.patch
Modified:
  tigervnc/trunk/PKGBUILD

---+
 PKGBUILD  |   20 +++-
 compile_fix.patch |   13 +
 2 files changed, 24 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 17:17:07 UTC (rev 123914)
+++ PKGBUILD2014-12-15 17:39:36 UTC (rev 123915)
@@ -2,9 +2,9 @@
 # Maintainer: Uroš Vampl mobile.leecher at gmail dot com
 
 pkgname=tigervnc
-pkgver=1.3.90
+pkgver=1.4.0
 pkgrel=1
-_xorgver=1.16.2
+_xorgver=1.16.2.901
 pkgdesc=Suite of VNC servers and clients. Based on the VNC 4 branch of 
TightVNC.
 arch=('i686' 'x86_64')
 url=http://www.tigervnc.org;
@@ -11,14 +11,13 @@
 license=('GPL')
 depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'libxfont' 'pixman'
 'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp'
-'libgcrypt' 'perl' )
+'libgl' 'libgcrypt' 'perl' )
 makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto'
 'compositeproto' 'damageproto' 'randrproto' 'resourceproto'
 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto'
 'xtrans' 'glproto' 'dri2proto' 'dri3proto' 'presentproto'
 'mesa' 'imagemagick')
-optdepends=('mesa-dri: for OpenGL functionality in Xvnc'
-   'libgl: for OpenGL functionality in Xvnc')
+optdepends=('mesa: for OpenGL functionality in Xvnc')
 conflicts=('tightvnc')
 source=(https://github.com/TigerVNC/tigervnc/archive/v${pkgver}.tar.gz

ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2
@@ -25,13 +24,15 @@
vncserver.service
vncviewer.desktop
gethomedir.patch
-   getmaster.patch)
-md5sums=('d1aa5653d3b4e8a04b33e01f11d4fde0'
- '89620960b13515db8d0a8dbb92a1378a'
+   getmaster.patch
+   compile_fix.patch)
+md5sums=('fd0288ad4b7bff8648fcb59fba177e0d'
+ '82cbcf6755787962e943d8e23495358d'
  '87678d73cc7c3fcd12797da43a0d061e'
  'b200d83c60e80c6f9693ea19a2d9f5b0'
  '22f1523a0eca56ad79cfabd0db6e2cf6'
- 'e056a2502dfe0cb3b02e08cab689482f')
+ 'e056a2502dfe0cb3b02e08cab689482f'
+ '557f978305b46b880dacd07461ad8db9')
 
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -38,6 +39,7 @@
 
   patch -Np1 -i ${srcdir}/gethomedir.patch
   patch -Np1 -i ${srcdir}/getmaster.patch
+  patch -Np1 -i ${srcdir}/compile_fix.patch
   sed -i 's/iconic/nowin/' unix/vncserver
 
   cd unix/xserver

Added: compile_fix.patch
===
--- compile_fix.patch   (rev 0)
+++ compile_fix.patch   2014-12-15 17:39:36 UTC (rev 123915)
@@ -0,0 +1,13 @@
+diff -ur tigervnc-1.4.0.orig/unix/xserver/hw/vnc/Makefile.am 
tigervnc-1.4.0/unix/xserver/hw/vnc/Makefile.am
+--- tigervnc-1.4.0.orig/unix/xserver/hw/vnc/Makefile.am2014-12-10 
11:18:40.0 +0100
 tigervnc-1.4.0/unix/xserver/hw/vnc/Makefile.am 2014-12-14 
23:17:54.569210661 +0100
+@@ -7,6 +7,9 @@
+ XREGION_LIB=$(LIB_DIR)/Xregion/libXregion.la
+ COMMON_LIBS=$(NETWORK_LIB) $(RFB_LIB) $(RDR_LIB) $(XREGION_LIB)
+ 
++# Hack to get the C headers to work when included from C++ code
++AM_CXXFLAGS = -fpermissive
++
+ noinst_LTLIBRARIES = libvnccommon.la
+ 
+ HDRS = RegionHelper.h vncExtInit.h vncHooks.h XserverDesktop.h xorg-version.h 
\


[arch-commits] Commit in tigervnc/repos (30 files)

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 18:40:04
  Author: spupykin
Revision: 123916

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

Added:
  tigervnc/repos/community-i686/PKGBUILD
(from rev 123915, tigervnc/trunk/PKGBUILD)
  tigervnc/repos/community-i686/compile_fix.patch
(from rev 123915, tigervnc/trunk/compile_fix.patch)
  tigervnc/repos/community-i686/gethomedir.patch
(from rev 123915, tigervnc/trunk/gethomedir.patch)
  tigervnc/repos/community-i686/getmaster.patch
(from rev 123915, tigervnc/trunk/getmaster.patch)
  tigervnc/repos/community-i686/vncserver.service
(from rev 123915, tigervnc/trunk/vncserver.service)
  tigervnc/repos/community-i686/vncviewer.desktop
(from rev 123915, tigervnc/trunk/vncviewer.desktop)
  tigervnc/repos/community-i686/xorg116.patch
(from rev 123915, tigervnc/trunk/xorg116.patch)
  tigervnc/repos/community-i686/xserver116.patch
(from rev 123915, tigervnc/trunk/xserver116.patch)
  tigervnc/repos/community-x86_64/PKGBUILD
(from rev 123915, tigervnc/trunk/PKGBUILD)
  tigervnc/repos/community-x86_64/compile_fix.patch
(from rev 123915, tigervnc/trunk/compile_fix.patch)
  tigervnc/repos/community-x86_64/gethomedir.patch
(from rev 123915, tigervnc/trunk/gethomedir.patch)
  tigervnc/repos/community-x86_64/getmaster.patch
(from rev 123915, tigervnc/trunk/getmaster.patch)
  tigervnc/repos/community-x86_64/vncserver.service
(from rev 123915, tigervnc/trunk/vncserver.service)
  tigervnc/repos/community-x86_64/vncviewer.desktop
(from rev 123915, tigervnc/trunk/vncviewer.desktop)
  tigervnc/repos/community-x86_64/xorg116.patch
(from rev 123915, tigervnc/trunk/xorg116.patch)
  tigervnc/repos/community-x86_64/xserver116.patch
(from rev 123915, tigervnc/trunk/xserver116.patch)
Deleted:
  tigervnc/repos/community-i686/PKGBUILD
  tigervnc/repos/community-i686/gethomedir.patch
  tigervnc/repos/community-i686/getmaster.patch
  tigervnc/repos/community-i686/vncserver.service
  tigervnc/repos/community-i686/vncviewer.desktop
  tigervnc/repos/community-i686/xorg116.patch
  tigervnc/repos/community-i686/xserver116.patch
  tigervnc/repos/community-x86_64/PKGBUILD
  tigervnc/repos/community-x86_64/gethomedir.patch
  tigervnc/repos/community-x86_64/getmaster.patch
  tigervnc/repos/community-x86_64/vncserver.service
  tigervnc/repos/community-x86_64/vncviewer.desktop
  tigervnc/repos/community-x86_64/xorg116.patch
  tigervnc/repos/community-x86_64/xserver116.patch

+
 /PKGBUILD  |  150 +
 /gethomedir.patch  |   40 ++
 /getmaster.patch   |  192 +++
 /vncserver.service |   58 +++
 /vncviewer.desktop |   18 +
 /xorg116.patch |  570 +++
 /xserver116.patch  |  274 
 community-i686/PKGBUILD|   73 
 community-i686/compile_fix.patch   |   13 
 community-i686/gethomedir.patch|   20 -
 community-i686/getmaster.patch |   96 -
 community-i686/vncserver.service   |   29 -
 community-i686/vncviewer.desktop   |9 
 community-i686/xorg116.patch   |  285 -
 community-i686/xserver116.patch|  137 
 community-x86_64/PKGBUILD  |   73 
 community-x86_64/compile_fix.patch |   13 
 community-x86_64/gethomedir.patch  |   20 -
 community-x86_64/getmaster.patch   |   96 -
 community-x86_64/vncserver.service |   29 -
 community-x86_64/vncviewer.desktop |9 
 community-x86_64/xorg116.patch |  285 -
 community-x86_64/xserver116.patch  |  137 
 23 files changed, 1328 insertions(+), 1298 deletions(-)

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


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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 18:53:07
  Author: spupykin
Revision: 123918

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

Added:
  scantailor/repos/community-i686/PKGBUILD
(from rev 123917, scantailor/trunk/PKGBUILD)
  scantailor/repos/community-i686/scantailor.desktop
(from rev 123917, scantailor/trunk/scantailor.desktop)
  scantailor/repos/community-i686/scantailor.install
(from rev 123917, scantailor/trunk/scantailor.install)
  scantailor/repos/community-x86_64/PKGBUILD
(from rev 123917, scantailor/trunk/PKGBUILD)
  scantailor/repos/community-x86_64/scantailor.desktop
(from rev 123917, scantailor/trunk/scantailor.desktop)
  scantailor/repos/community-x86_64/scantailor.install
(from rev 123917, scantailor/trunk/scantailor.install)
Deleted:
  scantailor/repos/community-i686/PKGBUILD
  scantailor/repos/community-x86_64/PKGBUILD

-+
 /PKGBUILD   |   74 ++
 community-i686/PKGBUILD |   32 --
 community-i686/scantailor.desktop   |   11 +
 community-i686/scantailor.install   |   13 +
 community-x86_64/PKGBUILD   |   32 --
 community-x86_64/scantailor.desktop |   11 +
 community-x86_64/scantailor.install |   13 +
 7 files changed, 122 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 17:52:52 UTC (rev 123917)
+++ community-i686/PKGBUILD 2014-12-15 17:53:07 UTC (rev 123918)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Denis Terskov aka neurosurgeon terskov@gmail.com
-
-pkgname=scantailor
-pkgver=0.9.11.1
-pkgrel=3
-pkgdesc=Interactive post-processing tool for scanned pages
-arch=(i686 x86_64)
-url=http://scantailor.sourceforge.net;
-license=GPL
-depends=('qt4')
-makedepends=('cmake' 'boost')
-options=('!makeflags')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('6cdca1b6d1dafd022ea94b4800dad340')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  cmake \
-   -DCMAKE_CXX_FLAGS=-DBOOST_NO_MEMBER_TEMPLATE_FRIENDS \
-   -DCMAKE_CXX_FLAGS_DEBUG=-DBOOST_NO_MEMBER_TEMPLATE_FRIENDS \
-   -DCMAKE_CXX_FLAGS_RELEASE=-DBOOST_NO_MEMBER_TEMPLATE_FRIENDS \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release .
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: scantailor/repos/community-i686/PKGBUILD (from rev 123917, 
scantailor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 17:53:07 UTC (rev 123918)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Denis Terskov aka neurosurgeon terskov@gmail.com
+
+pkgname=scantailor
+pkgver=0.9.11.1
+pkgrel=4
+pkgdesc=Interactive post-processing tool for scanned pages
+arch=(i686 x86_64)
+url=http://scantailor.sourceforge.net;
+license=GPL
+depends=('qt4')
+makedepends=('cmake' 'boost')
+options=('!makeflags')
+install=scantailor.install
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+   scantailor.desktop)
+md5sums=('6cdca1b6d1dafd022ea94b4800dad340'
+ '7fdbdef6167d124762421ec99a98f8de')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  cmake \
+   -DCMAKE_CXX_FLAGS=-DBOOST_NO_MEMBER_TEMPLATE_FRIENDS \
+   -DCMAKE_CXX_FLAGS_DEBUG=-DBOOST_NO_MEMBER_TEMPLATE_FRIENDS \
+   -DCMAKE_CXX_FLAGS_RELEASE=-DBOOST_NO_MEMBER_TEMPLATE_FRIENDS \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release .
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm0644 resources/appicon.svg 
$pkgdir/usr/share/icons/hicolor/scalable/apps/scantailor.svg
+  install -Dm0644 $srcdir/scantailor.desktop 
$pkgdir/usr/share/applications/scantailor.desktop
+}

Copied: scantailor/repos/community-i686/scantailor.desktop (from rev 123917, 
scantailor/trunk/scantailor.desktop)
===
--- community-i686/scantailor.desktop   (rev 0)
+++ community-i686/scantailor.desktop   2014-12-15 17:53:07 UTC (rev 123918)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=Scan Tailor
+Comment=An interactive post-processing tool for scanned pages.
+Icon=/usr/share/icons/hicolor/scalable/apps/scantailor.svg
+Exec=scantailor %u
+TryExec=scantailor
+Terminal=false
+Type=Application
+StartupNotify=true
+Categories=Graphics;
+MimeType=image/png;image/tif;image/jpeg

Copied: scantailor/repos/community-i686/scantailor.install (from rev 123917, 
scantailor/trunk/scantailor.install)
===
--- 

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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 18:52:52
  Author: spupykin
Revision: 123917

upgpkg: scantailor 0.9.11.1-4

upd

Added:
  scantailor/trunk/scantailor.desktop
  scantailor/trunk/scantailor.install
Modified:
  scantailor/trunk/PKGBUILD

+
 PKGBUILD   |   11 ---
 scantailor.desktop |   11 +++
 scantailor.install |   13 +
 3 files changed, 32 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 17:40:04 UTC (rev 123916)
+++ PKGBUILD2014-12-15 17:52:52 UTC (rev 123917)
@@ -4,7 +4,7 @@
 
 pkgname=scantailor
 pkgver=0.9.11.1
-pkgrel=3
+pkgrel=4
 pkgdesc=Interactive post-processing tool for scanned pages
 arch=(i686 x86_64)
 url=http://scantailor.sourceforge.net;
@@ -12,8 +12,11 @@
 depends=('qt4')
 makedepends=('cmake' 'boost')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('6cdca1b6d1dafd022ea94b4800dad340')
+install=scantailor.install
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+   scantailor.desktop)
+md5sums=('6cdca1b6d1dafd022ea94b4800dad340'
+ '7fdbdef6167d124762421ec99a98f8de')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -29,4 +32,6 @@
 package() {
   cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
+  install -Dm0644 resources/appicon.svg 
$pkgdir/usr/share/icons/hicolor/scalable/apps/scantailor.svg
+  install -Dm0644 $srcdir/scantailor.desktop 
$pkgdir/usr/share/applications/scantailor.desktop
 }

Added: scantailor.desktop
===
--- scantailor.desktop  (rev 0)
+++ scantailor.desktop  2014-12-15 17:52:52 UTC (rev 123917)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=Scan Tailor
+Comment=An interactive post-processing tool for scanned pages.
+Icon=/usr/share/icons/hicolor/scalable/apps/scantailor.svg
+Exec=scantailor %u
+TryExec=scantailor
+Terminal=false
+Type=Application
+StartupNotify=true
+Categories=Graphics;
+MimeType=image/png;image/tif;image/jpeg

Added: scantailor.install
===
--- scantailor.install  (rev 0)
+++ scantailor.install  2014-12-15 17:52:52 UTC (rev 123917)
@@ -0,0 +1,13 @@
+post_install() {
+   update-desktop-database -q
+   xdg-icon-resource forceupdate --mode system
+   xdg-desktop-menu forceupdate --mode system
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}


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

2014-12-15 Thread Михаил Страшун
Date: Monday, December 15, 2014 @ 19:09:54
  Author: dicebot
Revision: 123919

upgpkg: lib32-liblphobos 0.15.1-1

LDC 0.15.1, lib32

Modified:
  lib32-liblphobos-devel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 17:53:07 UTC (rev 123918)
+++ PKGBUILD2014-12-15 18:09:54 UTC (rev 123919)
@@ -1,16 +1,17 @@
 # $Id: PKGBUILD 72029 2012-06-06 11:58:40Z svenstaro $
 # Maintainer: Mihails Strasuns pub...@dicebot.lv
 # Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-pkgname=lib32-liblphobos-devel
+pkgname=lib32-liblphobos
 groups=('dlang' 'dlang-ldc')
 provides=(d-runtime d-stdlib)
-pkgver=0.14.0
+replaces=(lib32-liblphobos-devel)
+pkgver=0.15.1
 pkgrel=1
 pkgdesc=D standard library (libphobos) for LDC compiler (32-bit)
 arch=('x86_64')
 url=https://github.com/ldc-developers/ldc;
 license=('BSD')
-depends=('ldc')
+depends=('ldc' 'lib32-curl' 'lib32-gcc-libs')
 makedepends=('git' 'llvm' 'libconfig' 'cmake')
 source=(git://github.com/ldc-developers/ldc.git#tag=v$pkgver)
 md5sums=(SKIP)
@@ -23,10 +24,13 @@
 
 mkdir build  cd build
 cmake \
+-DMULTILIB=ON \
+-DCMAKE_SKIP_RPATH=ON \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
--DMULTILIB=ON \
+-DBUILD_SHARED_LIBS=ON \
 ..
+
 make
 }
 
@@ -37,8 +41,8 @@
 install -D -m644 $srcdir/ldc/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 
 # We don't want anything but the 32-bit libs
-install -D -m644 $srcdir/ldc/build/lib32/libphobos2-ldc.a 
$pkgdir/usr/lib32/liblphobos2.a
-install -D -m644 $srcdir/ldc/build/lib32/libdruntime-ldc.a 
$pkgdir/usr/lib32/libldruntime.a
-install -D -m644 $srcdir/ldc/build/lib32/libphobos2-ldc-debug.a 
$pkgdir/usr/lib32/liblphobos2-debug.a
-install -D -m644 $srcdir/ldc/build/lib32/libdruntime-ldc-debug.a 
$pkgdir/usr/lib32/libldruntime-debug.a
+install -D -m644 $srcdir/ldc/build/lib32/libphobos2-ldc.so 
$pkgdir/usr/lib32/liblphobos2.so
+install -D -m644 $srcdir/ldc/build/lib32/libdruntime-ldc.so 
$pkgdir/usr/lib32/libldruntime.so
+install -D -m644 $srcdir/ldc/build/lib32/libphobos2-ldc-debug.so 
$pkgdir/usr/lib32/liblphobos2-debug.so
+install -D -m644 $srcdir/ldc/build/lib32/libdruntime-ldc-debug.so 
$pkgdir/usr/lib32/libldruntime-debug.so
 }


[arch-commits] Commit in lib32-liblphobos-devel/repos (2 files)

2014-12-15 Thread Михаил Страшун
Date: Monday, December 15, 2014 @ 19:10:56
  Author: dicebot
Revision: 123920

archrelease: copy trunk to community-x86_64

Added:
  lib32-liblphobos-devel/repos/community-x86_64/
  lib32-liblphobos-devel/repos/community-x86_64/PKGBUILD
(from rev 123919, lib32-liblphobos-devel/trunk/PKGBUILD)

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

Copied: lib32-liblphobos-devel/repos/community-x86_64/PKGBUILD (from rev 
123919, lib32-liblphobos-devel/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-15 18:10:56 UTC (rev 123920)
@@ -0,0 +1,48 @@
+# $Id: PKGBUILD 72029 2012-06-06 11:58:40Z svenstaro $
+# Maintainer: Mihails Strasuns pub...@dicebot.lv
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+pkgname=lib32-liblphobos
+groups=('dlang' 'dlang-ldc')
+provides=(d-runtime d-stdlib)
+replaces=(lib32-liblphobos-devel)
+pkgver=0.15.1
+pkgrel=1
+pkgdesc=D standard library (libphobos) for LDC compiler (32-bit)
+arch=('x86_64')
+url=https://github.com/ldc-developers/ldc;
+license=('BSD')
+depends=('ldc' 'lib32-curl' 'lib32-gcc-libs')
+makedepends=('git' 'llvm' 'libconfig' 'cmake')
+source=(git://github.com/ldc-developers/ldc.git#tag=v$pkgver)
+md5sums=(SKIP)
+options=(staticlibs)
+
+build() {
+cd $srcdir/ldc
+
+git submodule update --init --recursive
+
+mkdir build  cd build
+cmake \
+-DMULTILIB=ON \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
+-DBUILD_SHARED_LIBS=ON \
+..
+
+make
+}
+
+package() {
+   cd $srcdir/ldc
+
+# licenses
+install -D -m644 $srcdir/ldc/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+# We don't want anything but the 32-bit libs
+install -D -m644 $srcdir/ldc/build/lib32/libphobos2-ldc.so 
$pkgdir/usr/lib32/liblphobos2.so
+install -D -m644 $srcdir/ldc/build/lib32/libdruntime-ldc.so 
$pkgdir/usr/lib32/libldruntime.so
+install -D -m644 $srcdir/ldc/build/lib32/libphobos2-ldc-debug.so 
$pkgdir/usr/lib32/liblphobos2-debug.so
+install -D -m644 $srcdir/ldc/build/lib32/libdruntime-ldc-debug.so 
$pkgdir/usr/lib32/libldruntime-debug.so
+}


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

2014-12-15 Thread Massimiliano Torromeo
Date: Monday, December 15, 2014 @ 19:30:52
  Author: mtorromeo
Revision: 123921

Updated hhvm to 3.4.1

Modified:
  hhvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 18:10:56 UTC (rev 123920)
+++ PKGBUILD2014-12-15 18:30:52 UTC (rev 123921)
@@ -3,12 +3,11 @@
 # Contributor: James Miller ja...@pocketrent.com
 
 pkgname=hhvm
-pkgver=3.4.0
-_thirdparty_commit=21bded6b6119ec24c53c4653868c05660529a62e
-_folly_commit=32a9723ad4951fcc8b6324c55d967c3d2f21552e
-_thrift_commit=0a455fe206fc4c32de8bf40caf71a75d03edf87c
-_proxygen_commit=c4e89168873153ee74882f6d7bfadda16f91a308
-pkgrel=3
+pkgver=3.4.1
+_thirdparty_commit=38af35db27a4d962adaefde343dc6dcfc495c8b5
+_folly_commit=acc54589227951293f8d3943911f4311468605c9
+_thrift_commit=378e954ac82a00ba056e6fccd5e1fa3e76803cc8
+pkgrel=1
 pkgdesc=Virtual Machine, Runtime, and JIT for PHP
 arch=('x86_64')
 url=http://hhvm.com;
@@ -21,7 +20,6 @@
 
hhvm-third-party-$_thirdparty_commit.tar.gz::https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit.tar.gz;
 
folly-$_folly_commit.tar.gz::https://github.com/facebook/folly/archive/$_folly_commit.tar.gz;
 
thrift-$_thrift_commit.tar.gz::https://github.com/facebook/fbthrift/archive/$_thrift_commit.tar.gz;
-
proxygen-$_proxygen_commit.tar.gz::https://github.com/facebook/proxygen/archive/$_proxygen_commit.tar.gz;
 'hhvm-max.patch'
 'hhvm.tmpfile'
 'hhvm.service'
@@ -49,10 +47,6 @@
 cd ../thrift
 rm -rf src
 ln -s $srcdir/fbthrift-$_thrift_commit src
-
-cd ../proxygen
-rm -rf src
-ln -s $srcdir/proxygen-$_proxygen_commit src
 }
 
 build() {
@@ -100,11 +94,10 @@
 install -Dm644 server.ini $pkgdir/etc/hhvm/server.ini
 }
 
-sha256sums=('65e194667722dd0f240321dce026e1707363ae42ce415a1974db5c28f54fb3ff'
-'55be18422577d97b9dfb1eaf34fe4fc8d348cb48fb3ae9190915d7dcba54fb8b'
-'e8ee31e3a08b4e42cd1bfe8c09a812d2887bb41b9ee0e67c8717ffdfd4d7c31b'
-'fa6cf805cb94c230fe20ba33d13eee76d6dc6956776c2bacd344cb698bab1d47'
-'0cc4fb29790305e2319182f5bf73ad6dd1f69e6f129e4efb7fff308e8aebb8dc'
+sha256sums=('a1330a443853da901561ad61247503376e4f4a32cee84d5a760229cd02635117'
+'9be5a424f21ed40e061281ffdd92c225c27aa12e260d71b41a27faa760f3fd38'
+'41ead35d8d86f5b83c8287d32de0ce54d37561387435e13f62af2829b00aedae'
+'6770898ccb5da42f5d11491a7d9e7b9548657032a381d6d5b9a999616d50f184'
 'ab98d74c382f503f1208407e891d26a88f9314fa2b631f6ec2a4a73ead644ba2'
 'c356010a6d6b976f387bb205a75ea07d5f40593a8010483f2ed0f66f112331bc'
 '8b50d1ef9f5f726e6d8d469a8c84d85ad63f8b507b97d258b4d751a0e3e221df'


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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 20:15:22
  Author: spupykin
Revision: 123922

upgpkg: libvirt 1.2.11-1

upd

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 18:30:52 UTC (rev 123921)
+++ PKGBUILD2014-12-15 19:15:22 UTC (rev 123922)
@@ -3,7 +3,7 @@
 # Contributor: Jonathan Wiersma archaur at jonw dot org
 
 pkgname=libvirt
-pkgver=1.2.10
+pkgver=1.2.11
 pkgrel=1
 pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
 arch=('i686' 'x86_64')
@@ -14,7 +14,9 @@
 'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 
'gcc-libs'
 'iproute2' 'libnl' 'libx11' 'numactl' 'gettext')
# 'audit'
-makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc' 'libiscsi' 
'open-iscsi')
+makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc'
+'libiscsi' 'open-iscsi'
+'perl-xml-xpath' 'libxslt')
 optdepends=('ebtables: required for default NAT networking'
'dnsmasq: required for default NAT/DHCP for guests'
'bridge-utils: for brigded networking'
@@ -62,7 +64,7 @@
libvirtd.conf.d
libvirtd-guests.conf.d
libvirt.tmpfiles.d)
-md5sums=('1338a14c1cf2935f9485abc41b107ef9'
+md5sums=('616ad039f212c02f7e055c5cf28c0a76'
  '5e31269067dbd12ca871234450bb66bb'
  '384fff96c6248d4f020f6fa66c32b357'
  '020971887442ebbf1b6949e031c8dd3f')


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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 20:16:46
  Author: spupykin
Revision: 123923

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

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

-+
 /PKGBUILD   |  244 ++
 /libvirt.install|   30 +++
 /libvirt.tmpfiles.d |8 
 /libvirtd-guests.conf.d |   18 ++
 /libvirtd.conf.d|2 
 community-i686/PKGBUILD |  120 --
 community-i686/libvirt.install  |   15 -
 community-i686/libvirt.tmpfiles.d   |4 
 community-i686/libvirtd-guests.conf.d   |9 -
 community-i686/libvirtd.conf.d  |1 
 community-x86_64/PKGBUILD   |  120 --
 community-x86_64/libvirt.install|   15 -
 community-x86_64/libvirt.tmpfiles.d |4 
 community-x86_64/libvirtd-guests.conf.d |9 -
 community-x86_64/libvirtd.conf.d|1 
 15 files changed, 302 insertions(+), 298 deletions(-)

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

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

2014-12-15 Thread Daniel Micay
Date: Monday, December 15, 2014 @ 21:00:29
  Author: thestinger
Revision: 123924

upgpkg: envoy 12-1

Modified:
  envoy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 19:16:46 UTC (rev 123923)
+++ PKGBUILD2014-12-15 20:00:29 UTC (rev 123924)
@@ -3,7 +3,7 @@
 # Contributor: Federico Cinelli cine...@aur.archlinux.org
 
 pkgname=envoy
-pkgver=11.1
+pkgver=12
 pkgrel=1
 pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('ragel')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
 clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
-md5sums=('b3bb5d1328bc57a3c8650f1ec179707e'
+md5sums=('b8e2dfbbb64e5d44556b6c0cc1b3b3e5'
  '8c4f3fd488fc8f92196a8aa42ac9567e')
 
 prepare() {


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

2014-12-15 Thread Daniel Micay
Date: Monday, December 15, 2014 @ 21:01:04
  Author: thestinger
Revision: 123925

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 20:00:29 UTC (rev 123924)
+++ community-i686/PKGBUILD 2014-12-15 20:01:04 UTC (rev 123925)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: Federico Cinelli cine...@aur.archlinux.org
-
-pkgname=envoy
-pkgver=11.1
-pkgrel=1
-pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
-arch=('i686' 'x86_64')
-url=http://github.com/vodik/envoy;
-license=('GPL')
-depends=('openssh' 'systemd')
-optdepends=('gnupg: gpg-agent support')
-makedepends=('ragel')
-source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
-clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
-md5sums=('b3bb5d1328bc57a3c8650f1ec179707e'
- '8c4f3fd488fc8f92196a8aa42ac9567e')
-
-prepare() {
-  cd $pkgname-$pkgver
-  rm -fr clique
-  ln -s ../clique-0.1 clique
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}
-
-# vim: ft=sh syn=sh et

Copied: envoy/repos/community-i686/PKGBUILD (from rev 123924, 
envoy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 20:01:04 UTC (rev 123925)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Federico Cinelli cine...@aur.archlinux.org
+
+pkgname=envoy
+pkgver=12
+pkgrel=1
+pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
+arch=('i686' 'x86_64')
+url=http://github.com/vodik/envoy;
+license=('GPL')
+depends=('openssh' 'systemd')
+optdepends=('gnupg: gpg-agent support')
+makedepends=('ragel')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
+clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
+md5sums=('b8e2dfbbb64e5d44556b6c0cc1b3b3e5'
+ '8c4f3fd488fc8f92196a8aa42ac9567e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  rm -fr clique
+  ln -s ../clique-0.1 clique
+}
+
+build() {
+  make -C $pkgname-$pkgver
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}
+
+# vim: ft=sh syn=sh et

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-15 20:00:29 UTC (rev 123924)
+++ community-x86_64/PKGBUILD   2014-12-15 20:01:04 UTC (rev 123925)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: Federico Cinelli cine...@aur.archlinux.org
-
-pkgname=envoy
-pkgver=11.1
-pkgrel=1
-pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
-arch=('i686' 'x86_64')
-url=http://github.com/vodik/envoy;
-license=('GPL')
-depends=('openssh' 'systemd')
-optdepends=('gnupg: gpg-agent support')
-makedepends=('ragel')
-source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
-clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
-md5sums=('b3bb5d1328bc57a3c8650f1ec179707e'
- '8c4f3fd488fc8f92196a8aa42ac9567e')
-
-prepare() {
-  cd $pkgname-$pkgver
-  rm -fr clique
-  ln -s ../clique-0.1 clique
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}
-
-# vim: ft=sh syn=sh et

Copied: envoy/repos/community-x86_64/PKGBUILD (from rev 123924, 
envoy/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-15 20:01:04 UTC (rev 123925)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Federico Cinelli cine...@aur.archlinux.org
+
+pkgname=envoy
+pkgver=12
+pkgrel=1
+pkgdesc=A ssh-agent/gpg-agent keychain and process monitor
+arch=('i686' 'x86_64')
+url=http://github.com/vodik/envoy;
+license=('GPL')
+depends=('openssh' 'systemd')
+optdepends=('gnupg: gpg-agent support')
+makedepends=('ragel')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
+

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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 22:04:33
  Author: spupykin
Revision: 123926

upgpkg: libvirt-glib 0.2.0-1

upd

Modified:
  libvirt-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 20:01:04 UTC (rev 123925)
+++ PKGBUILD2014-12-15 21:04:33 UTC (rev 123926)
@@ -3,7 +3,7 @@
 # Maintainer: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=libvirt-glib
-pkgver=0.1.9
+pkgver=0.2.0
 pkgrel=1
 pkgdesc=GLib bindings for libvirt
 arch=('i686' 'x86_64')
@@ -14,6 +14,7 @@
 source=(ftp://libvirt.org/libvirt/glib/$pkgname-$pkgver.tar.gz)
 sha256sums=('da0e45952dbe1d5d9fde4f845f3a10763e7fed0b1e45906a46fdb74b777aa751')
 sha256sums=('053b36260ea70d740e27fe99ac67d714d23cf93d563c3342fa00593ec185a958')
+sha256sums=('30b7e0f224f9cdcf34c1b05b08803cb617d057613ee96395ae517f4ee6c44a0b')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 22:05:12
  Author: spupykin
Revision: 123929

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

Added:
  spice-gtk3/repos/community-i686/PKGBUILD
(from rev 123928, spice-gtk3/trunk/PKGBUILD)
  spice-gtk3/repos/community-x86_64/PKGBUILD
(from rev 123928, spice-gtk3/trunk/PKGBUILD)
Deleted:
  spice-gtk3/repos/community-i686/PKGBUILD
  spice-gtk3/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 community-i686/PKGBUILD   |   38 -
 community-x86_64/PKGBUILD |   38 -
 3 files changed, 78 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 21:04:56 UTC (rev 123928)
+++ community-i686/PKGBUILD 2014-12-15 21:05:12 UTC (rev 123929)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Stefano Facchini stefano.facch...@gmail.com
-# Contributor: Jonathan Lestrelin za...@daemontux.org
-# Contributor: Lucio Zara penn...@gmail.com
-
-pkgname=spice-gtk3
-pkgver=0.24
-pkgrel=5
-pkgdesc=Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)
-arch=('i686' 'x86_64')
-url=http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup')
-makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl')
-source=(http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
-sha256sums=('6efe500845f910945670f11664f584fd13b9db494075c41137eb7bacd60d1ed1')
-
-prepare() {
-  cd $srcdir/spice-gtk-$pkgver
-  sed -i 's,/usr/bin/env python,/usr/bin/python2,' 
spice-common/spice_codegen.py
-  sed -i 's|#define SPICE_GTK_MICRO_VERSION.*|#define SPICE_GTK_MICRO_VERSION 
(0)|g' gtk/spice-version.h*
-}
-
-build() {
-  cd $srcdir/spice-gtk-$pkgver
-  PYTHON=python2 ./configure --prefix=/usr \
---disable-static --enable-vala --with-gtk=3.0 \
---with-audio=pulse \
---with-coroutine=gthread --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $srcdir/spice-gtk-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: spice-gtk3/repos/community-i686/PKGBUILD (from rev 123928, 
spice-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 21:05:12 UTC (rev 123929)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Stefano Facchini stefano.facch...@gmail.com
+# Contributor: Jonathan Lestrelin za...@daemontux.org
+# Contributor: Lucio Zara penn...@gmail.com
+
+pkgname=spice-gtk3
+pkgver=0.27
+pkgrel=1
+pkgdesc=Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)
+arch=('i686' 'x86_64')
+url=http://spice-space.org;
+license=('LGPL2.1')
+depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup')
+makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
+'vala' 'sdl')
+source=(http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
+sha256sums=('6efe500845f910945670f11664f584fd13b9db494075c41137eb7bacd60d1ed1')
+sha256sums=('5075e07010db434146649110ade31f5a6cdcdb4efbb4bedd40f1a977f090430c')
+
+prepare() {
+  cd $srcdir/spice-gtk-$pkgver
+  sed -i 's,/usr/bin/env python,/usr/bin/python2,' 
spice-common/spice_codegen.py
+  sed -i 's|#define SPICE_GTK_MICRO_VERSION.*|#define SPICE_GTK_MICRO_VERSION 
(0)|g' gtk/spice-version.h*
+}
+
+build() {
+  cd $srcdir/spice-gtk-$pkgver
+  PYTHON=python2 ./configure --prefix=/usr \
+--disable-static --enable-vala --with-gtk=3.0 \
+--with-audio=pulse \
+--with-coroutine=gthread --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $srcdir/spice-gtk-$pkgver
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-15 21:04:56 UTC (rev 123928)
+++ community-x86_64/PKGBUILD   2014-12-15 21:05:12 UTC (rev 123929)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Stefano Facchini stefano.facch...@gmail.com
-# Contributor: Jonathan Lestrelin za...@daemontux.org
-# Contributor: Lucio Zara penn...@gmail.com
-
-pkgname=spice-gtk3
-pkgver=0.24
-pkgrel=5
-pkgdesc=Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)
-arch=('i686' 'x86_64')
-url=http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup')
-makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl')

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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 22:04:52
  Author: spupykin
Revision: 123927

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

Added:
  libvirt-glib/repos/community-i686/PKGBUILD
(from rev 123926, libvirt-glib/trunk/PKGBUILD)
  libvirt-glib/repos/community-x86_64/PKGBUILD
(from rev 123926, libvirt-glib/trunk/PKGBUILD)
Deleted:
  libvirt-glib/repos/community-i686/PKGBUILD
  libvirt-glib/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 21:04:33 UTC (rev 123926)
+++ community-i686/PKGBUILD 2014-12-15 21:04:52 UTC (rev 123927)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Stefano Facchini stefano.facch...@gmail.com
-
-pkgname=libvirt-glib
-pkgver=0.1.9
-pkgrel=1
-pkgdesc=GLib bindings for libvirt
-arch=('i686' 'x86_64')
-url=http://libvirt.org;
-license=('LGPL2.1')
-depends=('libvirt')
-makedepends=('intltool' 'gobject-introspection' 'vala')
-source=(ftp://libvirt.org/libvirt/glib/$pkgname-$pkgver.tar.gz)
-sha256sums=('da0e45952dbe1d5d9fde4f845f3a10763e7fed0b1e45906a46fdb74b777aa751')
-sha256sums=('053b36260ea70d740e27fe99ac67d714d23cf93d563c3342fa00593ec185a958')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --disable-static \
-  --with-python=/usr/bin/python2
-  make -j1
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libvirt-glib/repos/community-i686/PKGBUILD (from rev 123926, 
libvirt-glib/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 21:04:52 UTC (rev 123927)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Stefano Facchini stefano.facch...@gmail.com
+
+pkgname=libvirt-glib
+pkgver=0.2.0
+pkgrel=1
+pkgdesc=GLib bindings for libvirt
+arch=('i686' 'x86_64')
+url=http://libvirt.org;
+license=('LGPL2.1')
+depends=('libvirt')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=(ftp://libvirt.org/libvirt/glib/$pkgname-$pkgver.tar.gz)
+sha256sums=('da0e45952dbe1d5d9fde4f845f3a10763e7fed0b1e45906a46fdb74b777aa751')
+sha256sums=('053b36260ea70d740e27fe99ac67d714d23cf93d563c3342fa00593ec185a958')
+sha256sums=('30b7e0f224f9cdcf34c1b05b08803cb617d057613ee96395ae517f4ee6c44a0b')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --disable-static \
+  --with-python=/usr/bin/python2
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-15 21:04:33 UTC (rev 123926)
+++ community-x86_64/PKGBUILD   2014-12-15 21:04:52 UTC (rev 123927)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Stefano Facchini stefano.facch...@gmail.com
-
-pkgname=libvirt-glib
-pkgver=0.1.9
-pkgrel=1
-pkgdesc=GLib bindings for libvirt
-arch=('i686' 'x86_64')
-url=http://libvirt.org;
-license=('LGPL2.1')
-depends=('libvirt')
-makedepends=('intltool' 'gobject-introspection' 'vala')
-source=(ftp://libvirt.org/libvirt/glib/$pkgname-$pkgver.tar.gz)
-sha256sums=('da0e45952dbe1d5d9fde4f845f3a10763e7fed0b1e45906a46fdb74b777aa751')
-sha256sums=('053b36260ea70d740e27fe99ac67d714d23cf93d563c3342fa00593ec185a958')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --disable-static \
-  --with-python=/usr/bin/python2
-  make -j1
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libvirt-glib/repos/community-x86_64/PKGBUILD (from rev 123926, 
libvirt-glib/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-15 21:04:52 UTC (rev 123927)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Stefano Facchini stefano.facch...@gmail.com
+
+pkgname=libvirt-glib
+pkgver=0.2.0
+pkgrel=1
+pkgdesc=GLib bindings for libvirt
+arch=('i686' 'x86_64')
+url=http://libvirt.org;
+license=('LGPL2.1')
+depends=('libvirt')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=(ftp://libvirt.org/libvirt/glib/$pkgname-$pkgver.tar.gz)

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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 22:04:56
  Author: spupykin
Revision: 123928

upgpkg: spice-gtk3 0.27-1

upd

Modified:
  spice-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 21:04:52 UTC (rev 123927)
+++ PKGBUILD2014-12-15 21:04:56 UTC (rev 123928)
@@ -5,8 +5,8 @@
 # Contributor: Lucio Zara penn...@gmail.com
 
 pkgname=spice-gtk3
-pkgver=0.24
-pkgrel=5
+pkgver=0.27
+pkgrel=1
 pkgdesc=Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)
 arch=('i686' 'x86_64')
 url=http://spice-space.org;
@@ -16,6 +16,7 @@
 'vala' 'sdl')
 source=(http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
 sha256sums=('6efe500845f910945670f11664f584fd13b9db494075c41137eb7bacd60d1ed1')
+sha256sums=('5075e07010db434146649110ade31f5a6cdcdb4efbb4bedd40f1a977f090430c')
 
 prepare() {
   cd $srcdir/spice-gtk-$pkgver


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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 22:13:29
  Author: spupykin
Revision: 123931

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

Added:
  luasql/repos/community-i686/PKGBUILD
(from rev 123930, luasql/trunk/PKGBUILD)
  luasql/repos/community-i686/lua52.patch
(from rev 123930, luasql/trunk/lua52.patch)
  luasql/repos/community-x86_64/PKGBUILD
(from rev 123930, luasql/trunk/PKGBUILD)
  luasql/repos/community-x86_64/lua52.patch
(from rev 123930, luasql/trunk/lua52.patch)
Deleted:
  luasql/repos/community-i686/PKGBUILD
  luasql/repos/community-i686/lua52.patch
  luasql/repos/community-x86_64/PKGBUILD
  luasql/repos/community-x86_64/lua52.patch

--+
 /PKGBUILD|  120 
 /lua52.patch |  566 +
 community-i686/PKGBUILD  |   60 
 community-i686/lua52.patch   |  283 
 community-x86_64/PKGBUILD|   60 
 community-x86_64/lua52.patch |  283 
 6 files changed, 686 insertions(+), 686 deletions(-)

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


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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 22:13:16
  Author: spupykin
Revision: 123930

upgpkg: luasql 2.3.0-1

upd

Modified:
  luasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 21:05:12 UTC (rev 123929)
+++ PKGBUILD2014-12-15 21:13:16 UTC (rev 123930)
@@ -5,20 +5,20 @@
 
 pkgbase=luasql
 pkgname=('lua-sql-mysql' 'lua-sql-postgres' 'lua-sql-sqlite')
-pkgver=2.2.0
-pkgrel=5
+pkgver=2.3.0
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.keplerproject.org/luasql/'
 license=('MIT')
 makedepends=('lua' 'libmariadbclient' 'postgresql-libs' 'sqlite')
-source=(https://github.com/downloads/keplerproject/luasql/luasql-$pkgver.tar.gz;
+source=($pkgname-$pkgver.tar.gz::https://github.com/keplerproject/luasql/archive/v$pkgver.tar.gz;
 'lua52.patch')
-md5sums=('59d72db444c6369c936d4f03694db6b7'
+md5sums=('af9f0f3a2313a1fcf88c40700092048d'
  'a1d6083215e7a83cfc08621b6998914c')
 
 build() {
   cd $pkgbase-$pkgver
-  patch -p1  $srcdir/lua52.patch
+#  patch -p1  $srcdir/lua52.patch
   msg2 'Building sqlite support'
   make T=sqlite3 PREFIX=/usr DRIVER_LIBS='-lsqlite3' DRIVER_INCS='-fPIC 
-std=c99'
   msg2 'Building PostgreSQL support'


[arch-commits] Commit in luasql/trunk (PKGBUILD lua52.patch)

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 22:14:27
  Author: spupykin
Revision: 123932

clean up

Modified:
  luasql/trunk/PKGBUILD
Deleted:
  luasql/trunk/lua52.patch

-+
 PKGBUILD|7 -
 lua52.patch |  283 --
 2 files changed, 2 insertions(+), 288 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 21:13:29 UTC (rev 123931)
+++ PKGBUILD2014-12-15 21:14:27 UTC (rev 123932)
@@ -11,14 +11,11 @@
 url='http://www.keplerproject.org/luasql/'
 license=('MIT')
 makedepends=('lua' 'libmariadbclient' 'postgresql-libs' 'sqlite')
-source=($pkgname-$pkgver.tar.gz::https://github.com/keplerproject/luasql/archive/v$pkgver.tar.gz;
-'lua52.patch')
-md5sums=('af9f0f3a2313a1fcf88c40700092048d'
- 'a1d6083215e7a83cfc08621b6998914c')
+source=($pkgname-$pkgver.tar.gz::https://github.com/keplerproject/luasql/archive/v$pkgver.tar.gz;)
+md5sums=('af9f0f3a2313a1fcf88c40700092048d')
 
 build() {
   cd $pkgbase-$pkgver
-#  patch -p1  $srcdir/lua52.patch
   msg2 'Building sqlite support'
   make T=sqlite3 PREFIX=/usr DRIVER_LIBS='-lsqlite3' DRIVER_INCS='-fPIC 
-std=c99'
   msg2 'Building PostgreSQL support'

Deleted: lua52.patch
===
--- lua52.patch 2014-12-15 21:13:29 UTC (rev 123931)
+++ lua52.patch 2014-12-15 21:14:27 UTC (rev 123932)
@@ -1,283 +0,0 @@
-diff -wbBur luasql-2.2.0/src/ls_firebird.c luasql-2.2.0.my/src/ls_firebird.c
 luasql-2.2.0/src/ls_firebird.c 2009-10-20 20:38:38.0 +0400
-+++ luasql-2.2.0.my/src/ls_firebird.c  2012-11-14 19:06:50.508901839 +0400
-@@ -1008,13 +1008,13 @@
- ** Create metatables for each class of object.
- */
- static void create_metatables (lua_State *L) {
--  struct luaL_reg environment_methods[] = {
-+  struct luaL_Reg environment_methods[] = {
-   {__gc, env_gc},
-   {close, env_close},
-   {connect, env_connect},
-   {NULL, NULL},
-   };
--  struct luaL_reg connection_methods[] = {
-+  struct luaL_Reg connection_methods[] = {
-   {__gc, conn_gc},
-   {close, conn_close},
-   {execute, conn_execute},
-@@ -1024,7 +1024,7 @@
-   {escape, conn_escape},
-   {NULL, NULL},
-   };
--  struct luaL_reg cursor_methods[] = {
-+  struct luaL_Reg cursor_methods[] = {
-   {__gc, cur_gc},
-   {close, cur_close},
-   {fetch, cur_fetch},
-@@ -1043,7 +1043,7 @@
- ** driver open method.
- */
- LUASQL_API int luaopen_luasql_firebird (lua_State *L) {
--  struct luaL_reg driver[] = {
-+  struct luaL_Reg driver[] = {
-   {firebird, create_environment},
-   {NULL, NULL},
-   };
-diff -wbBur luasql-2.2.0/src/ls_mysql.c luasql-2.2.0.my/src/ls_mysql.c
 luasql-2.2.0/src/ls_mysql.c2009-10-20 20:38:38.0 +0400
-+++ luasql-2.2.0.my/src/ls_mysql.c 2012-11-14 19:06:56.782236770 +0400
-@@ -511,13 +511,13 @@
- ** Create metatables for each class of object.
- */
- static void create_metatables (lua_State *L) {
--struct luaL_reg environment_methods[] = {
-+struct luaL_Reg environment_methods[] = {
- {__gc, env_close},
- {close, env_close},
- {connect, env_connect},
-   {NULL, NULL},
-   };
--struct luaL_reg connection_methods[] = {
-+struct luaL_Reg connection_methods[] = {
- {__gc, conn_close},
- {close, conn_close},
- {escape, escape_string},
-@@ -528,7 +528,7 @@
-   {getlastautoid, conn_getlastautoid},
-   {NULL, NULL},
- };
--struct luaL_reg cursor_methods[] = {
-+struct luaL_Reg cursor_methods[] = {
- {__gc, cur_close},
- {close, cur_close},
- {getcolnames, cur_getcolnames},
-@@ -562,7 +562,7 @@
- ** driver open method.
- */
- LUASQL_API int luaopen_luasql_mysql (lua_State *L) { 
--  struct luaL_reg driver[] = {
-+  struct luaL_Reg driver[] = {
-   {mysql, create_environment},
-   {NULL, NULL},
-   };
-diff -wbBur luasql-2.2.0/src/ls_oci8.c luasql-2.2.0.my/src/ls_oci8.c
 luasql-2.2.0/src/ls_oci8.c 2009-10-20 20:38:38.0 +0400
-+++ luasql-2.2.0.my/src/ls_oci8.c  2012-11-14 19:06:39.182232288 +0400
-@@ -814,13 +814,13 @@
- ** Create metatables for each class of object.
- */
- static void create_metatables (lua_State *L) {
--  struct luaL_reg environment_methods[] = {
-+  struct luaL_Reg environment_methods[] = {
-   {__gc, env_close},
-   {close, env_close},
-   {connect, env_connect},
-   {NULL, NULL},
-   };
--  struct luaL_reg connection_methods[] = {
-+  struct luaL_Reg connection_methods[] = {
-   {__gc, conn_close},
-   {close, conn_close},
-   {execute, 

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

2014-12-15 Thread Laurent Carlier
Date: Tuesday, December 16, 2014 @ 02:32:27
  Author: lcarlier
Revision: 123933

upgpkg: ocaml-findlib 1.5.5-2

ocaml rebuild

Modified:
  ocaml-findlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 21:14:27 UTC (rev 123932)
+++ PKGBUILD2014-12-16 01:32:27 UTC (rev 123933)
@@ -6,7 +6,7 @@
 
 pkgname=ocaml-findlib
 pkgver=1.5.5
-pkgrel=1
+pkgrel=2
 license=('MIT')
 arch=('i686' 'x86_64')
 pkgdesc='Objective Caml (OCaml) package manager'
@@ -13,7 +13,7 @@
 url='http://projects.camlcity.org/projects/findlib.html'
 depends=('ocaml')
 source=(http://download.camlcity.org/download/findlib-$pkgver.tar.gz;)
-options=('staticlibs' '!strip' 'zipman') # otherwise the bytecode gets broken
+options=('staticlibs' '!strip' 'zipman' '!makeflags') # otherwise the bytecode 
gets broken
 md5sums=('703eae112f9e912507c3a2f8d8c48498')
 
 build() {


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

2014-12-15 Thread Laurent Carlier
Date: Tuesday, December 16, 2014 @ 02:32:38
  Author: lcarlier
Revision: 123934

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

Added:
  ocaml-findlib/repos/community-i686/PKGBUILD
(from rev 123933, ocaml-findlib/trunk/PKGBUILD)
  ocaml-findlib/repos/community-x86_64/PKGBUILD
(from rev 123933, ocaml-findlib/trunk/PKGBUILD)
Deleted:
  ocaml-findlib/repos/community-i686/PKGBUILD
  ocaml-findlib/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-16 01:32:27 UTC (rev 123933)
+++ community-i686/PKGBUILD 2014-12-16 01:32:38 UTC (rev 123934)
@@ -1,37 +0,0 @@
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Thomas S Hatch thatch45 at gmail dot com
-# Contributor: Sebastian Wiesner lunaryorn googlemail com
-# Contributor: Benjamin Andresen benny(at)klapmuetz(dot)org
-# Contributor: scj scj archlinux us
-
-pkgname=ocaml-findlib
-pkgver=1.5.5
-pkgrel=1
-license=('MIT')
-arch=('i686' 'x86_64')
-pkgdesc='Objective Caml (OCaml) package manager'
-url='http://projects.camlcity.org/projects/findlib.html'
-depends=('ocaml')
-source=(http://download.camlcity.org/download/findlib-$pkgver.tar.gz;)
-options=('staticlibs' '!strip' 'zipman') # otherwise the bytecode gets broken
-md5sums=('703eae112f9e912507c3a2f8d8c48498')
-
-build() {
-  cd $srcdir/findlib-$pkgver
-
-  ./configure -config /etc/findlib.conf -sitelib /usr/lib/ocaml -mandir 
/usr/share/man
-  make all opt
-}
-
-package () {
-  cd $srcdir/findlib-$pkgver
-
-  make prefix=$pkgdir install 
-
-  # add the old site-lib to the path to maintain compatibility with old style 
packages
-  sed -i 
's/path=\\/usr\/lib\/ocaml\/path=\/usr\/lib\/ocaml:\/usr\/lib\/ocaml\/site-lib/'
 \
-${pkgdir}/etc/findlib.conf
-
-  install -m755 src/findlib/ocamlfind_opt $pkgdir/usr/bin/
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: ocaml-findlib/repos/community-i686/PKGBUILD (from rev 123933, 
ocaml-findlib/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-16 01:32:38 UTC (rev 123934)
@@ -0,0 +1,37 @@
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: Thomas S Hatch thatch45 at gmail dot com
+# Contributor: Sebastian Wiesner lunaryorn googlemail com
+# Contributor: Benjamin Andresen benny(at)klapmuetz(dot)org
+# Contributor: scj scj archlinux us
+
+pkgname=ocaml-findlib
+pkgver=1.5.5
+pkgrel=2
+license=('MIT')
+arch=('i686' 'x86_64')
+pkgdesc='Objective Caml (OCaml) package manager'
+url='http://projects.camlcity.org/projects/findlib.html'
+depends=('ocaml')
+source=(http://download.camlcity.org/download/findlib-$pkgver.tar.gz;)
+options=('staticlibs' '!strip' 'zipman' '!makeflags') # otherwise the bytecode 
gets broken
+md5sums=('703eae112f9e912507c3a2f8d8c48498')
+
+build() {
+  cd $srcdir/findlib-$pkgver
+
+  ./configure -config /etc/findlib.conf -sitelib /usr/lib/ocaml -mandir 
/usr/share/man
+  make all opt
+}
+
+package () {
+  cd $srcdir/findlib-$pkgver
+
+  make prefix=$pkgdir install 
+
+  # add the old site-lib to the path to maintain compatibility with old style 
packages
+  sed -i 
's/path=\\/usr\/lib\/ocaml\/path=\/usr\/lib\/ocaml:\/usr\/lib\/ocaml\/site-lib/'
 \
+${pkgdir}/etc/findlib.conf
+
+  install -m755 src/findlib/ocamlfind_opt $pkgdir/usr/bin/
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-16 01:32:27 UTC (rev 123933)
+++ community-x86_64/PKGBUILD   2014-12-16 01:32:38 UTC (rev 123934)
@@ -1,37 +0,0 @@
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Thomas S Hatch thatch45 at gmail dot com
-# Contributor: Sebastian Wiesner lunaryorn googlemail com
-# Contributor: Benjamin Andresen benny(at)klapmuetz(dot)org
-# Contributor: scj scj archlinux us
-
-pkgname=ocaml-findlib
-pkgver=1.5.5
-pkgrel=1
-license=('MIT')
-arch=('i686' 'x86_64')
-pkgdesc='Objective Caml (OCaml) package manager'
-url='http://projects.camlcity.org/projects/findlib.html'
-depends=('ocaml')
-source=(http://download.camlcity.org/download/findlib-$pkgver.tar.gz;)
-options=('staticlibs' '!strip' 'zipman') # otherwise the bytecode gets broken
-md5sums=('703eae112f9e912507c3a2f8d8c48498')
-
-build() {
-  cd $srcdir/findlib-$pkgver
-
-  ./configure -config /etc/findlib.conf -sitelib /usr/lib/ocaml -mandir 
/usr/share/man
-  make all opt
-}
-
-package () {
-  cd 

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

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 04:00:49
  Author: fyan
Revision: 227629

upgpkg: python-setuptools 1:8.0.3-1

upstream new release

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-15 17:01:07 UTC (rev 227628)
+++ PKGBUILD2014-12-16 03:00:49 UTC (rev 227629)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=8.0.2
+pkgver=8.0.3
 pkgrel=1
 epoch=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
@@ -14,7 +14,7 @@
 makedepends=('python' 'python2')
 checkdepends=('python-pytest' 'python2-pytest' 'subversion')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-sha512sums=('ecedc814a701252853d60fe984b34493deddf4795bd5b02e5e8155a5b4ae666d685cebebc91127e6eb2366da4d0b0177bb5c1c132274ea0886d8c2b190826dcf')
+sha512sums=('c7654a0967a74346a206892c2882aedca0b1bda058d68cac2bc0459dd8d531444effdf3c7f19eea42f40f772b145af44090ba082ce6589aa632210ab4702c272')
 
 prepare() {
   cp -a setuptools-${pkgver}{,-python2}
@@ -43,7 +43,7 @@
 
   # Check python3 module
   cd ${srcdir}/setuptools-${pkgver}
-  LC_CTYPE=en_US.utf8 python3 setup.py test || warning Tests failed
+  LC_CTYPE=en_US.utf8 python3 setup.py test
 
   # Check python2 module
   cd ${srcdir}/setuptools-${pkgver}-python2


[arch-commits] Commit in python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 04:01:07
  Author: fyan
Revision: 227630

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 227629, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-16 03:00:49 UTC (rev 227629)
+++ PKGBUILD2014-12-16 03:01:07 UTC (rev 227630)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=8.0.2
-pkgrel=1
-epoch=1
-pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
-arch=('any')
-license=('PSF')
-url=http://pypi.python.org/pypi/setuptools;
-makedepends=('python' 'python2')
-checkdepends=('python-pytest' 'python2-pytest' 'subversion')
-source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-sha512sums=('ecedc814a701252853d60fe984b34493deddf4795bd5b02e5e8155a5b4ae666d685cebebc91127e6eb2366da4d0b0177bb5c1c132274ea0886d8c2b190826dcf')
-
-prepare() {
-  cp -a setuptools-${pkgver}{,-python2}
-
-  cd ${srcdir}/setuptools-${pkgver}
-  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
-}
-
-build() {
-  # Build python 3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py build
-
-  # Build python 2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-
-  # Check python3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  LC_CTYPE=en_US.utf8 python3 setup.py test || warning Tests failed
-
-  # Check python2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  LC_CTYPE=en_US.utf8 python2 setup.py test
-}
- 
-package_python-setuptools() {
-  depends=('python')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2')
-  provides=('python2-distribute' 'setuptools')
-  replaces=('python2-distribute' 'setuptools')
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-  rm ${pkgdir}/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 227629, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-16 03:01:07 UTC (rev 227630)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=8.0.3
+pkgrel=1
+epoch=1
+pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
+arch=('any')
+license=('PSF')
+url=http://pypi.python.org/pypi/setuptools;
+makedepends=('python' 'python2')
+checkdepends=('python-pytest' 'python2-pytest' 'subversion')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
+sha512sums=('c7654a0967a74346a206892c2882aedca0b1bda058d68cac2bc0459dd8d531444effdf3c7f19eea42f40f772b145af44090ba082ce6589aa632210ab4702c272')
+
+prepare() {
+  cp -a setuptools-${pkgver}{,-python2}
+
+  cd ${srcdir}/setuptools-${pkgver}
+  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
+
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
+}
+
+build() {
+  # Build python 3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  python3 setup.py build
+
+  # Build python 2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+
+  # Check python3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  LC_CTYPE=en_US.utf8 python3 setup.py test
+
+  # Check python2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  LC_CTYPE=en_US.utf8 

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

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 04:45:38
  Author: fyan
Revision: 227631

upgpkg: python-setuptools 1:8.0.4-1

upstream new release

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-16 03:01:07 UTC (rev 227630)
+++ PKGBUILD2014-12-16 03:45:38 UTC (rev 227631)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=8.0.3
+pkgver=8.0.4
 pkgrel=1
 epoch=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
@@ -14,7 +14,7 @@
 makedepends=('python' 'python2')
 checkdepends=('python-pytest' 'python2-pytest' 'subversion')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-sha512sums=('c7654a0967a74346a206892c2882aedca0b1bda058d68cac2bc0459dd8d531444effdf3c7f19eea42f40f772b145af44090ba082ce6589aa632210ab4702c272')
+sha512sums=('5fdd65b7c239432b0a7e561e6e8b80489279e3e9cbe829c4f84dd4702bb3d95f0336ba051fb7f6258d1e5b787dd7ae207401b2fba263e1658046a1d8251ac69a')
 
 prepare() {
   cp -a setuptools-${pkgver}{,-python2}


[arch-commits] Commit in python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 04:45:56
  Author: fyan
Revision: 227632

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 227631, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-16 03:45:38 UTC (rev 227631)
+++ PKGBUILD2014-12-16 03:45:56 UTC (rev 227632)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=8.0.3
-pkgrel=1
-epoch=1
-pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
-arch=('any')
-license=('PSF')
-url=http://pypi.python.org/pypi/setuptools;
-makedepends=('python' 'python2')
-checkdepends=('python-pytest' 'python2-pytest' 'subversion')
-source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-sha512sums=('c7654a0967a74346a206892c2882aedca0b1bda058d68cac2bc0459dd8d531444effdf3c7f19eea42f40f772b145af44090ba082ce6589aa632210ab4702c272')
-
-prepare() {
-  cp -a setuptools-${pkgver}{,-python2}
-
-  cd ${srcdir}/setuptools-${pkgver}
-  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
-}
-
-build() {
-  # Build python 3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py build
-
-  # Build python 2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-
-  # Check python3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  LC_CTYPE=en_US.utf8 python3 setup.py test
-
-  # Check python2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  LC_CTYPE=en_US.utf8 python2 setup.py test
-}
- 
-package_python-setuptools() {
-  depends=('python')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2')
-  provides=('python2-distribute' 'setuptools')
-  replaces=('python2-distribute' 'setuptools')
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-  rm ${pkgdir}/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 227631, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-16 03:45:56 UTC (rev 227632)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=8.0.4
+pkgrel=1
+epoch=1
+pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
+arch=('any')
+license=('PSF')
+url=http://pypi.python.org/pypi/setuptools;
+makedepends=('python' 'python2')
+checkdepends=('python-pytest' 'python2-pytest' 'subversion')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
+sha512sums=('5fdd65b7c239432b0a7e561e6e8b80489279e3e9cbe829c4f84dd4702bb3d95f0336ba051fb7f6258d1e5b787dd7ae207401b2fba263e1658046a1d8251ac69a')
+
+prepare() {
+  cp -a setuptools-${pkgver}{,-python2}
+
+  cd ${srcdir}/setuptools-${pkgver}
+  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
+
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
+}
+
+build() {
+  # Build python 3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  python3 setup.py build
+
+  # Build python 2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+
+  # Check python3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  LC_CTYPE=en_US.utf8 python3 setup.py test
+
+  # Check python2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  LC_CTYPE=en_US.utf8 python2 setup.py test
+}
+ 

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

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 05:00:24
  Author: fyan
Revision: 123935

upgpkg: python-tornado 4.0.2-2

use python2 2.7.9's new ssl library instead of backports.ssl-match-hostname

Added:
  python-tornado/trunk/0001-use_system_ca_certificates.patch
(from rev 123837, python-tornado/trunk/use_system_ca_certificates.patch)
  python-tornado/trunk/0002-get-rid-of-backports-ssl-match-hostname.patch
Modified:
  python-tornado/trunk/PKGBUILD
Deleted:
  python-tornado/trunk/use_system_ca_certificates.patch

+
 0001-use_system_ca_certificates.patch  |   57 +++
 0002-get-rid-of-backports-ssl-match-hostname.patch |   23 +++
 PKGBUILD   |   19 --
 use_system_ca_certificates.patch   |   57 ---
 4 files changed, 92 insertions(+), 64 deletions(-)

Copied: python-tornado/trunk/0001-use_system_ca_certificates.patch (from rev 
123837, python-tornado/trunk/use_system_ca_certificates.patch)
===
--- 0001-use_system_ca_certificates.patch   (rev 0)
+++ 0001-use_system_ca_certificates.patch   2014-12-16 04:00:24 UTC (rev 
123935)
@@ -0,0 +1,57 @@
+diff --git a/setup.py b/setup.py
+index f09169f..d42c486 100644
+--- a/setup.py
 b/setup.py
+@@ -120,7 +120,7 @@ if (platform.python_implementation() == 'CPython' and
+ 
+ if setuptools is not None:
+ # If setuptools is not available, you're on your own for dependencies.
+-install_requires = ['certifi']
++install_requires = []
+ if sys.version_info  (3, 2):
+ install_requires.append('backports.ssl_match_hostname')
+ kwargs['install_requires'] = install_requires
+diff --git a/tornado/simple_httpclient.py b/tornado/simple_httpclient.py
+index f0f73fa..ffe3e40 100644
+--- a/tornado/simple_httpclient.py
 b/tornado/simple_httpclient.py
+@@ -33,17 +33,9 @@ except ImportError:
+ # ssl is not available on Google App Engine.
+ ssl = None
+ 
+-try:
+-import certifi
+-except ImportError:
+-certifi = None
+-
+ 
+ def _default_ca_certs():
+-if certifi is None:
+-raise Exception(The 'certifi' package is required to use https 
+-in simple_httpclient)
+-return certifi.where()
++return /etc/ssl/certs/ca-certificates.crt
+ 
+ 
+ class SimpleAsyncHTTPClient(AsyncHTTPClient):
+diff --git a/tornado/test/iostream_test.py b/tornado/test/iostream_test.py
+index 01b0d95..47a64e7 100644
+--- a/tornado/test/iostream_test.py
 b/tornado/test/iostream_test.py
+@@ -10,7 +10,6 @@ from tornado.stack_context import NullContext
+ from tornado.testing import AsyncHTTPTestCase, AsyncHTTPSTestCase, 
AsyncTestCase, bind_unused_port, ExpectLog, gen_test
+ from tornado.test.util import unittest, skipIfNonUnix
+ from tornado.web import RequestHandler, Application
+-import certifi
+ import errno
+ import logging
+ import os
+@@ -855,7 +854,7 @@ class TestIOStreamStartTLS(AsyncTestCase):
+ def test_handshake_fail(self):
+ self.server_start_tls(_server_ssl_options())
+ client_future = self.client_start_tls(
+-dict(cert_reqs=ssl.CERT_REQUIRED, ca_certs=certifi.where()))
++dict(cert_reqs=ssl.CERT_REQUIRED, 
ca_certs=/etc/ssl/certs/ca-certificates.crt))
+ with ExpectLog(gen_log, SSL Error):
+ with self.assertRaises(ssl.SSLError):
+ yield client_future

Added: 0002-get-rid-of-backports-ssl-match-hostname.patch
===
--- 0002-get-rid-of-backports-ssl-match-hostname.patch  
(rev 0)
+++ 0002-get-rid-of-backports-ssl-match-hostname.patch  2014-12-16 04:00:24 UTC 
(rev 123935)
@@ -0,0 +1,23 @@
+From f8f2ffca1928aeca2fa9771093436dba49baa538 Mon Sep 17 00:00:00 2001
+From: Felix Yan felixonm...@gmail.com
+Date: Fri, 12 Dec 2014 23:10:15 +0800
+Subject: [PATCH] Don't depend on backports.ssl-match-hostname with python
+ =2.7.9, 3.0
+
+---
+ setup.py   | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index f09169f..f795807 100644
+--- a/setup.py
 b/setup.py
+@@ -121,7 +121,7 @@ def build_extension(self, ext):
+ if setuptools is not None:
+ # If setuptools is not available, you're on your own for dependencies.
+ install_requires = []
+-if sys.version_info  (3, 2):
++if sys.version_info  (2, 7, 9) or (3, 0) = sys.version_info  (3, 2):
+ install_requires.append('backports.ssl_match_hostname')
+ kwargs['install_requires'] = install_requires
+ 

Modified: PKGBUILD
===
--- PKGBUILD2014-12-16 01:32:38 UTC (rev 123934)
+++ PKGBUILD2014-12-16 04:00:24 UTC (rev 123935)
@@ -1,24 +1,27 @@
 # $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
+# Maintainer: Felix Yan 

[arch-commits] Commit in python-tornado/repos/community-x86_64 (5 files)

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 05:00:47
  Author: fyan
Revision: 123936

archrelease: copy trunk to community-x86_64

Added:
  python-tornado/repos/community-x86_64/0001-use_system_ca_certificates.patch
(from rev 123935, 
python-tornado/trunk/0001-use_system_ca_certificates.patch)
  
python-tornado/repos/community-x86_64/0002-get-rid-of-backports-ssl-match-hostname.patch
(from rev 123935, 
python-tornado/trunk/0002-get-rid-of-backports-ssl-match-hostname.patch)
  python-tornado/repos/community-x86_64/PKGBUILD
(from rev 123935, python-tornado/trunk/PKGBUILD)
Deleted:
  python-tornado/repos/community-x86_64/PKGBUILD
  python-tornado/repos/community-x86_64/use_system_ca_certificates.patch

+
 0001-use_system_ca_certificates.patch  |   57 
 0002-get-rid-of-backports-ssl-match-hostname.patch |   23 +++
 PKGBUILD   |  129 +--
 use_system_ca_certificates.patch   |   57 
 4 files changed, 147 insertions(+), 119 deletions(-)

Copied: 
python-tornado/repos/community-x86_64/0001-use_system_ca_certificates.patch 
(from rev 123935, python-tornado/trunk/0001-use_system_ca_certificates.patch)
===
--- 0001-use_system_ca_certificates.patch   (rev 0)
+++ 0001-use_system_ca_certificates.patch   2014-12-16 04:00:47 UTC (rev 
123936)
@@ -0,0 +1,57 @@
+diff --git a/setup.py b/setup.py
+index f09169f..d42c486 100644
+--- a/setup.py
 b/setup.py
+@@ -120,7 +120,7 @@ if (platform.python_implementation() == 'CPython' and
+ 
+ if setuptools is not None:
+ # If setuptools is not available, you're on your own for dependencies.
+-install_requires = ['certifi']
++install_requires = []
+ if sys.version_info  (3, 2):
+ install_requires.append('backports.ssl_match_hostname')
+ kwargs['install_requires'] = install_requires
+diff --git a/tornado/simple_httpclient.py b/tornado/simple_httpclient.py
+index f0f73fa..ffe3e40 100644
+--- a/tornado/simple_httpclient.py
 b/tornado/simple_httpclient.py
+@@ -33,17 +33,9 @@ except ImportError:
+ # ssl is not available on Google App Engine.
+ ssl = None
+ 
+-try:
+-import certifi
+-except ImportError:
+-certifi = None
+-
+ 
+ def _default_ca_certs():
+-if certifi is None:
+-raise Exception(The 'certifi' package is required to use https 
+-in simple_httpclient)
+-return certifi.where()
++return /etc/ssl/certs/ca-certificates.crt
+ 
+ 
+ class SimpleAsyncHTTPClient(AsyncHTTPClient):
+diff --git a/tornado/test/iostream_test.py b/tornado/test/iostream_test.py
+index 01b0d95..47a64e7 100644
+--- a/tornado/test/iostream_test.py
 b/tornado/test/iostream_test.py
+@@ -10,7 +10,6 @@ from tornado.stack_context import NullContext
+ from tornado.testing import AsyncHTTPTestCase, AsyncHTTPSTestCase, 
AsyncTestCase, bind_unused_port, ExpectLog, gen_test
+ from tornado.test.util import unittest, skipIfNonUnix
+ from tornado.web import RequestHandler, Application
+-import certifi
+ import errno
+ import logging
+ import os
+@@ -855,7 +854,7 @@ class TestIOStreamStartTLS(AsyncTestCase):
+ def test_handshake_fail(self):
+ self.server_start_tls(_server_ssl_options())
+ client_future = self.client_start_tls(
+-dict(cert_reqs=ssl.CERT_REQUIRED, ca_certs=certifi.where()))
++dict(cert_reqs=ssl.CERT_REQUIRED, 
ca_certs=/etc/ssl/certs/ca-certificates.crt))
+ with ExpectLog(gen_log, SSL Error):
+ with self.assertRaises(ssl.SSLError):
+ yield client_future

Copied: 
python-tornado/repos/community-x86_64/0002-get-rid-of-backports-ssl-match-hostname.patch
 (from rev 123935, 
python-tornado/trunk/0002-get-rid-of-backports-ssl-match-hostname.patch)
===
--- 0002-get-rid-of-backports-ssl-match-hostname.patch  
(rev 0)
+++ 0002-get-rid-of-backports-ssl-match-hostname.patch  2014-12-16 04:00:47 UTC 
(rev 123936)
@@ -0,0 +1,23 @@
+From f8f2ffca1928aeca2fa9771093436dba49baa538 Mon Sep 17 00:00:00 2001
+From: Felix Yan felixonm...@gmail.com
+Date: Fri, 12 Dec 2014 23:10:15 +0800
+Subject: [PATCH] Don't depend on backports.ssl-match-hostname with python
+ =2.7.9, 3.0
+
+---
+ setup.py   | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index f09169f..f795807 100644
+--- a/setup.py
 b/setup.py
+@@ -121,7 +121,7 @@ def build_extension(self, ext):
+ if setuptools is not None:
+ # If setuptools is not available, you're on your own for dependencies.
+ install_requires = []
+-if sys.version_info  (3, 2):
++if sys.version_info  (2, 7, 9) or (3, 0) = sys.version_info  (3, 2):
+ install_requires.append('backports.ssl_match_hostname')
+ 

[arch-commits] Commit in python-tornado/repos/community-i686 (5 files)

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 05:04:32
  Author: fyan
Revision: 123937

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

Added:
  python-tornado/repos/community-i686/0001-use_system_ca_certificates.patch
(from rev 123936, 
python-tornado/trunk/0001-use_system_ca_certificates.patch)
  
python-tornado/repos/community-i686/0002-get-rid-of-backports-ssl-match-hostname.patch
(from rev 123936, 
python-tornado/trunk/0002-get-rid-of-backports-ssl-match-hostname.patch)
  python-tornado/repos/community-i686/PKGBUILD
(from rev 123936, python-tornado/trunk/PKGBUILD)
Deleted:
  python-tornado/repos/community-i686/PKGBUILD
  python-tornado/repos/community-i686/use_system_ca_certificates.patch

+
 0001-use_system_ca_certificates.patch  |   57 
 0002-get-rid-of-backports-ssl-match-hostname.patch |   23 +++
 PKGBUILD   |  129 +--
 use_system_ca_certificates.patch   |   57 
 4 files changed, 147 insertions(+), 119 deletions(-)

Copied: 
python-tornado/repos/community-i686/0001-use_system_ca_certificates.patch (from 
rev 123936, python-tornado/trunk/0001-use_system_ca_certificates.patch)
===
--- 0001-use_system_ca_certificates.patch   (rev 0)
+++ 0001-use_system_ca_certificates.patch   2014-12-16 04:04:32 UTC (rev 
123937)
@@ -0,0 +1,57 @@
+diff --git a/setup.py b/setup.py
+index f09169f..d42c486 100644
+--- a/setup.py
 b/setup.py
+@@ -120,7 +120,7 @@ if (platform.python_implementation() == 'CPython' and
+ 
+ if setuptools is not None:
+ # If setuptools is not available, you're on your own for dependencies.
+-install_requires = ['certifi']
++install_requires = []
+ if sys.version_info  (3, 2):
+ install_requires.append('backports.ssl_match_hostname')
+ kwargs['install_requires'] = install_requires
+diff --git a/tornado/simple_httpclient.py b/tornado/simple_httpclient.py
+index f0f73fa..ffe3e40 100644
+--- a/tornado/simple_httpclient.py
 b/tornado/simple_httpclient.py
+@@ -33,17 +33,9 @@ except ImportError:
+ # ssl is not available on Google App Engine.
+ ssl = None
+ 
+-try:
+-import certifi
+-except ImportError:
+-certifi = None
+-
+ 
+ def _default_ca_certs():
+-if certifi is None:
+-raise Exception(The 'certifi' package is required to use https 
+-in simple_httpclient)
+-return certifi.where()
++return /etc/ssl/certs/ca-certificates.crt
+ 
+ 
+ class SimpleAsyncHTTPClient(AsyncHTTPClient):
+diff --git a/tornado/test/iostream_test.py b/tornado/test/iostream_test.py
+index 01b0d95..47a64e7 100644
+--- a/tornado/test/iostream_test.py
 b/tornado/test/iostream_test.py
+@@ -10,7 +10,6 @@ from tornado.stack_context import NullContext
+ from tornado.testing import AsyncHTTPTestCase, AsyncHTTPSTestCase, 
AsyncTestCase, bind_unused_port, ExpectLog, gen_test
+ from tornado.test.util import unittest, skipIfNonUnix
+ from tornado.web import RequestHandler, Application
+-import certifi
+ import errno
+ import logging
+ import os
+@@ -855,7 +854,7 @@ class TestIOStreamStartTLS(AsyncTestCase):
+ def test_handshake_fail(self):
+ self.server_start_tls(_server_ssl_options())
+ client_future = self.client_start_tls(
+-dict(cert_reqs=ssl.CERT_REQUIRED, ca_certs=certifi.where()))
++dict(cert_reqs=ssl.CERT_REQUIRED, 
ca_certs=/etc/ssl/certs/ca-certificates.crt))
+ with ExpectLog(gen_log, SSL Error):
+ with self.assertRaises(ssl.SSLError):
+ yield client_future

Copied: 
python-tornado/repos/community-i686/0002-get-rid-of-backports-ssl-match-hostname.patch
 (from rev 123936, 
python-tornado/trunk/0002-get-rid-of-backports-ssl-match-hostname.patch)
===
--- 0002-get-rid-of-backports-ssl-match-hostname.patch  
(rev 0)
+++ 0002-get-rid-of-backports-ssl-match-hostname.patch  2014-12-16 04:04:32 UTC 
(rev 123937)
@@ -0,0 +1,23 @@
+From f8f2ffca1928aeca2fa9771093436dba49baa538 Mon Sep 17 00:00:00 2001
+From: Felix Yan felixonm...@gmail.com
+Date: Fri, 12 Dec 2014 23:10:15 +0800
+Subject: [PATCH] Don't depend on backports.ssl-match-hostname with python
+ =2.7.9, 3.0
+
+---
+ setup.py   | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index f09169f..f795807 100644
+--- a/setup.py
 b/setup.py
+@@ -121,7 +121,7 @@ def build_extension(self, ext):
+ if setuptools is not None:
+ # If setuptools is not available, you're on your own for dependencies.
+ install_requires = []
+-if sys.version_info  (3, 2):
++if sys.version_info  (2, 7, 9) or (3, 0) = sys.version_info  (3, 2):
+ install_requires.append('backports.ssl_match_hostname')
+ 

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

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 05:08:13
  Author: fyan
Revision: 227633

upgpkg: perl-yaml-syck 1.29-1

upstream new release

Modified:
  perl-yaml-syck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-16 03:45:56 UTC (rev 227632)
+++ PKGBUILD2014-12-16 04:08:13 UTC (rev 227633)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=perl-yaml-syck
-pkgver=1.28
+pkgver=1.29
 pkgrel=1
 pkgdesc=Fast, lightweight YAML loader and dumper
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('perl')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/T/TO/TODDR/YAML-Syck-$pkgver.tar.gz)
-md5sums=('6943c7b64790b063a4c5b2634ac9a90e')
+md5sums=('0f906ae8b3747039b26c29c481cda607')
 
 build() {
   cd YAML-Syck-$pkgver


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

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 05:08:42
  Author: fyan
Revision: 227634

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

Added:
  perl-yaml-syck/repos/extra-i686/PKGBUILD
(from rev 227633, perl-yaml-syck/trunk/PKGBUILD)
  perl-yaml-syck/repos/extra-x86_64/PKGBUILD
(from rev 227633, perl-yaml-syck/trunk/PKGBUILD)
Deleted:
  perl-yaml-syck/repos/extra-i686/PKGBUILD
  perl-yaml-syck/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-16 04:08:13 UTC (rev 227633)
+++ extra-i686/PKGBUILD 2014-12-16 04:08:42 UTC (rev 227634)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=perl-yaml-syck
-pkgver=1.28
-pkgrel=1
-pkgdesc=Fast, lightweight YAML loader and dumper
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/YAML-Syck/;
-license=('BSD' 'custom')
-depends=('perl')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/T/TO/TODDR/YAML-Syck-$pkgver.tar.gz)
-md5sums=('6943c7b64790b063a4c5b2634ac9a90e')
-
-build() {
-  cd YAML-Syck-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd YAML-Syck-$pkgver
-  make test
-}
-
-package() {
-  cd YAML-Syck-$pkgver
-  make install DESTDIR=${pkgdir}
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: perl-yaml-syck/repos/extra-i686/PKGBUILD (from rev 227633, 
perl-yaml-syck/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-12-16 04:08:42 UTC (rev 227634)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=perl-yaml-syck
+pkgver=1.29
+pkgrel=1
+pkgdesc=Fast, lightweight YAML loader and dumper
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/YAML-Syck/;
+license=('BSD' 'custom')
+depends=('perl')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/T/TO/TODDR/YAML-Syck-$pkgver.tar.gz)
+md5sums=('0f906ae8b3747039b26c29c481cda607')
+
+build() {
+  cd YAML-Syck-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd YAML-Syck-$pkgver
+  make test
+}
+
+package() {
+  cd YAML-Syck-$pkgver
+  make install DESTDIR=${pkgdir}
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-12-16 04:08:13 UTC (rev 227633)
+++ extra-x86_64/PKGBUILD   2014-12-16 04:08:42 UTC (rev 227634)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=perl-yaml-syck
-pkgver=1.28
-pkgrel=1
-pkgdesc=Fast, lightweight YAML loader and dumper
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/YAML-Syck/;
-license=('BSD' 'custom')
-depends=('perl')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/T/TO/TODDR/YAML-Syck-$pkgver.tar.gz)
-md5sums=('6943c7b64790b063a4c5b2634ac9a90e')
-
-build() {
-  cd YAML-Syck-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd YAML-Syck-$pkgver
-  make test
-}
-
-package() {
-  cd YAML-Syck-$pkgver
-  make install DESTDIR=${pkgdir}
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: perl-yaml-syck/repos/extra-x86_64/PKGBUILD (from rev 227633, 
perl-yaml-syck/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-12-16 04:08:42 UTC (rev 227634)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=perl-yaml-syck
+pkgver=1.29
+pkgrel=1
+pkgdesc=Fast, lightweight YAML loader and dumper
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/YAML-Syck/;
+license=('BSD' 'custom')
+depends=('perl')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/T/TO/TODDR/YAML-Syck-$pkgver.tar.gz)
+md5sums=('0f906ae8b3747039b26c29c481cda607')
+
+build() {
+  cd YAML-Syck-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd YAML-Syck-$pkgver
+  make test
+}
+
+package() {
+  cd YAML-Syck-$pkgver
+  make install DESTDIR=${pkgdir}
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}


[arch-commits] Commit in (python2-backports.ssl_match_hostname)

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 05:20:32
  Author: fyan
Revision: 123939

remove obsolete package: python2-backports.ssl_match_hostname

Deleted:
  python2-backports.ssl_match_hostname/


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

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 06:07:55
  Author: fyan
Revision: 227635

upgpkg: subversion 1.8.11-1

upstream new release

Modified:
  subversion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-16 04:08:42 UTC (rev 227634)
+++ PKGBUILD2014-12-16 05:07:55 UTC (rev 227635)
@@ -6,7 +6,7 @@
 # Contributor: Jason Chu ja...@archlinux.org
 
 pkgname=subversion
-pkgver=1.8.10
+pkgver=1.8.11
 pkgrel=1
 pkgdesc=A Modern Concurrent Version Control System
 arch=('i686' 'x86_64')
@@ -31,7 +31,7 @@
 svnserve.tmpfiles
 svnserve.service
 subversion.rpath.fix.patch)
-md5sums=('3068256761b40863df96128834d6b71b'
+md5sums=('766a89388f8eb76166672d3b9e49'
  'SKIP'
  'a0db6dd43af33952739b6ec089852630'
  'af1dd703cc28e61d2e2a132ce3eec37a'


[arch-commits] Commit in subversion/repos (28 files)

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 06:09:05
  Author: fyan
Revision: 227636

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

Added:
  subversion/repos/extra-i686/PKGBUILD
(from rev 227635, subversion/trunk/PKGBUILD)
  subversion/repos/extra-i686/subversion.install
(from rev 227635, subversion/trunk/subversion.install)
  subversion/repos/extra-i686/subversion.rpath.fix.patch
(from rev 227635, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/extra-i686/svn
(from rev 227635, subversion/trunk/svn)
  subversion/repos/extra-i686/svnserve.conf
(from rev 227635, subversion/trunk/svnserve.conf)
  subversion/repos/extra-i686/svnserve.service
(from rev 227635, subversion/trunk/svnserve.service)
  subversion/repos/extra-i686/svnserve.tmpfiles
(from rev 227635, subversion/trunk/svnserve.tmpfiles)
  subversion/repos/extra-x86_64/PKGBUILD
(from rev 227635, subversion/trunk/PKGBUILD)
  subversion/repos/extra-x86_64/subversion.install
(from rev 227635, subversion/trunk/subversion.install)
  subversion/repos/extra-x86_64/subversion.rpath.fix.patch
(from rev 227635, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/extra-x86_64/svn
(from rev 227635, subversion/trunk/svn)
  subversion/repos/extra-x86_64/svnserve.conf
(from rev 227635, subversion/trunk/svnserve.conf)
  subversion/repos/extra-x86_64/svnserve.service
(from rev 227635, subversion/trunk/svnserve.service)
  subversion/repos/extra-x86_64/svnserve.tmpfiles
(from rev 227635, subversion/trunk/svnserve.tmpfiles)
Deleted:
  subversion/repos/extra-i686/PKGBUILD
  subversion/repos/extra-i686/subversion.install
  subversion/repos/extra-i686/subversion.rpath.fix.patch
  subversion/repos/extra-i686/svn
  subversion/repos/extra-i686/svnserve.conf
  subversion/repos/extra-i686/svnserve.service
  subversion/repos/extra-i686/svnserve.tmpfiles
  subversion/repos/extra-x86_64/PKGBUILD
  subversion/repos/extra-x86_64/subversion.install
  subversion/repos/extra-x86_64/subversion.rpath.fix.patch
  subversion/repos/extra-x86_64/svn
  subversion/repos/extra-x86_64/svnserve.conf
  subversion/repos/extra-x86_64/svnserve.service
  subversion/repos/extra-x86_64/svnserve.tmpfiles

-+
 /PKGBUILD   |  206 ++
 /subversion.install |   14 ++
 /subversion.rpath.fix.patch |   20 ++
 /svn|   22 +++
 /svnserve.conf  |   10 +
 /svnserve.service   |   22 +++
 /svnserve.tmpfiles  |2 
 extra-i686/PKGBUILD |  101 --
 extra-i686/subversion.install   |7 -
 extra-i686/subversion.rpath.fix.patch   |   10 -
 extra-i686/svn  |   11 -
 extra-i686/svnserve.conf|5 
 extra-i686/svnserve.service |   11 -
 extra-i686/svnserve.tmpfiles|1 
 extra-x86_64/PKGBUILD   |  101 --
 extra-x86_64/subversion.install |7 -
 extra-x86_64/subversion.rpath.fix.patch |   10 -
 extra-x86_64/svn|   11 -
 extra-x86_64/svnserve.conf  |5 
 extra-x86_64/svnserve.service   |   11 -
 extra-x86_64/svnserve.tmpfiles  |1 
 21 files changed, 296 insertions(+), 292 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-16 05:07:55 UTC (rev 227635)
+++ extra-i686/PKGBUILD 2014-12-16 05:09:05 UTC (rev 227636)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Paul Mattal p...@archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=subversion
-pkgver=1.8.10
-pkgrel=1
-pkgdesc=A Modern Concurrent Version Control System
-arch=('i686' 'x86_64')
-url=http://subversion.apache.org/;
-license=('APACHE')
-depends=('sqlite' 'file' 'serf' 'systemd')
-makedepends=('apache' 'python2' 'perl' 'swig' 'java-runtime' 'java-environment'
- 'libgnome-keyring' 'kdelibs' 'ruby')
-optdepends=('libgnome-keyring: for GNOME Keyring for auth credentials'
-'kdebase-runtime: for KWallet for auth credentials'
-'bash-completion: for svn bash completion'
-'python2: for some hook scripts'
-'java-environment: for Java support'
-'ruby: for some hook scripts')
-provides=('svn')
-backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
-options=('!makeflags' '!emptydirs')
-install=${pkgname}.install
-source=(http://www.apache.org/dist/subversion/subversion-${pkgver}.tar.bz2{,.asc}
-svn
-svnserve.conf
-svnserve.tmpfiles
-svnserve.service
-subversion.rpath.fix.patch)

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

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 06:12:28
  Author: fyan
Revision: 123940

upgpkg: cgminer 4.9.0-1

upstream new release

Modified:
  cgminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-16 04:20:32 UTC (rev 123939)
+++ PKGBUILD2014-12-16 05:12:28 UTC (rev 123940)
@@ -5,7 +5,7 @@
 # Contributor: David Manouchehri da...@davidmanouchehri.com
 
 pkgname=cgminer
-pkgver=4.8.0
+pkgver=4.9.0
 #_pkgver=
 _pkgver=$pkgver
 pkgrel=1
@@ -61,6 +61,7 @@
 --prefix=/usr \
 --enable-avalon \
 --enable-avalon2 \
+--enable-avalon4 \
 --enable-bflsc \
 --enable-bitfury \
 --enable-blockerupter \


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

2014-12-15 Thread Felix Yan
Date: Tuesday, December 16, 2014 @ 06:13:08
  Author: fyan
Revision: 123941

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

Added:
  cgminer/repos/community-i686/PKGBUILD
(from rev 123940, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-i686/cgminer.conf.d
(from rev 123940, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-i686/cgminer.service
(from rev 123940, cgminer/trunk/cgminer.service)
  cgminer/repos/community-x86_64/PKGBUILD
(from rev 123940, cgminer/trunk/PKGBUILD)
  cgminer/repos/community-x86_64/cgminer.conf.d
(from rev 123940, cgminer/trunk/cgminer.conf.d)
  cgminer/repos/community-x86_64/cgminer.service
(from rev 123940, cgminer/trunk/cgminer.service)
Deleted:
  cgminer/repos/community-i686/PKGBUILD
  cgminer/repos/community-i686/cgminer.conf.d
  cgminer/repos/community-i686/cgminer.service
  cgminer/repos/community-x86_64/PKGBUILD
  cgminer/repos/community-x86_64/cgminer.conf.d
  cgminer/repos/community-x86_64/cgminer.service

--+
 /PKGBUILD|  190 +
 /cgminer.conf.d  |   22 
 /cgminer.service |   16 +++
 community-i686/PKGBUILD  |   94 --
 community-i686/cgminer.conf.d|   11 --
 community-i686/cgminer.service   |8 -
 community-x86_64/PKGBUILD|   94 --
 community-x86_64/cgminer.conf.d  |   11 --
 community-x86_64/cgminer.service |8 -
 9 files changed, 228 insertions(+), 226 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-16 05:12:28 UTC (rev 123940)
+++ community-i686/PKGBUILD 2014-12-16 05:13:08 UTC (rev 123941)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: monson holymon...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: David Manouchehri da...@davidmanouchehri.com
-
-pkgname=cgminer
-pkgver=4.8.0
-#_pkgver=
-_pkgver=$pkgver
-pkgrel=1
-pkgdesc=Multi-threaded multi-pool GPU, FPGA and ASIC miner for bitcoin
-url='http://forum.bitcoin.org/index.php?topic=28402.0'
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('curl' 'libusb' 'jansson')
-makedepends=('git')
-source=(git+https://github.com/ckolivas/${pkgname}.git#tag=v$_pkgver;
-$pkgname.conf.d
-$pkgname.service)
-backup=(etc/conf.d/$pkgname etc/$pkgname.conf)
-
-prepare() {
-  cd $pkgname
-  # We have latest jansson and libusb - just use them
-
-  sed -e 's|^AC_CONFIG_SUBDIRS.*compat/jansson-2\.6.*||' \
-  -e 
's|JANSSON_LIBS=compat/jansson-2\.6/src/\.libs/libjansson\.a|JANSSON_LIBS=-ljansson|'
 \
-  -e 's|compat/Makefile||' \
-  -i ./configure.ac
-
-  sed -e 's|^JANSSON_CPPFLAGS= .*||' \
-  -e 's|^USBUTILS_CPPFLAGS = .*|USBUTILS_CPPFLAGS = 
-I/usr/include/libusb-1.0|' \
-  -e 's|^SUBDIRS.*|SUBDIRS = lib ccan|' \
-  -i ./Makefile.am
-
-  #sed s|ac_subdirs_all='compat/libusb\-1.0\ncompat/jansson-2.5'|| -i 
./configure
-  #sed 's|subdirs=$subdirs compat/libusb\-1.0||' -i ./configure
-  #sed 's|subdirs=$subdirs compat/jansson\-2.5||' -i ./configure
-  #sed 
's|LIBUSB_LIBS=compat/libusb-1.0/libusb/.libs/libusb-1.0.a|LIBUSB_LIBS=-lusb-1.0|'
 -i ./configure
-  #sed 
's|JANSSON_LIBS=compat/jansson-2.5/src/.libs/libjansson.a|JANSSON_LIBS=-ljansson|'
 -i ./configure
-  #sed 's|compat/Makefile ||' -i ./configure
-
-  #sed 's|JANSSON_INCLUDES = .*||' -i ./Makefile.in
-  #sed 's|USBUTILS_INCLUDES = .*|USBUTILS_INCLUDES = 
-I/usr/include/libusb-1.0|' -i ./Makefile.in
-  #sed 's|SUBDIRS = lib compat ccan|SUBDIRS = lib ccan|' -i ./Makefile.in
-
-  rm -r compat
-}
-
-build() {
-  cd $pkgname
-  
-  # Here you may want to use custom CFLAGS
-  #export CFLAGS=-O2 -march=native -mtune=native -msse2
-  
-  # ./configure \
-
-  # Taken from README - Q: What should I build in for a generic distribution 
binary?
-  ./autogen.sh \
---prefix=/usr \
---enable-avalon \
---enable-avalon2 \
---enable-bflsc \
---enable-bitfury \
---enable-blockerupter \
---enable-cointerra \
---enable-drillbit \
---enable-hashfast \
---enable-hashratio \
---enable-icarus \
---enable-klondike \
---with-system-libusb
-  
-  make
-}
-
-package() {
-  cd $pkgname
-
-  make DESTDIR=$pkgdir install
-
-  install -d $pkgdir/usr/share/$pkgname
-  install -m755 miner.php api-example.* $pkgdir/usr/share/$pkgname
-
-  install -Dm644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-  install -Dm644 $srcdir/$pkgname.conf.d $pkgdir/etc/conf.d/$pkgname
-  sed 's#/usr/local/bin#/usr/bin#g' example.conf  $pkgname.conf
-  install -Dm644 $pkgname.conf $pkgdir/etc/$pkgname.conf
-}
-
-sha512sums=('SKIP'
-
'99c38bc395848f9712ce172343d31f5c60f5d8ac1cfe2f48df8f3ec6c488fc275763a79c5ef36b99f32faa465b5a65284b38e8a63ef9b144075ee13971313b41'
-

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

2014-12-15 Thread Bartłomiej Piotrowski
Date: Tuesday, December 16, 2014 @ 07:13:01
  Author: bpiotrowski
Revision: 227637

upgpkg: ffmpeg 1:2.5.1-1

new upstream release

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-16 05:09:05 UTC (rev 227636)
+++ PKGBUILD2014-12-16 06:13:01 UTC (rev 227637)
@@ -5,7 +5,7 @@
 # Contributor: Paul Mattal p...@archlinux.org
 
 pkgname=ffmpeg
-pkgver=2.5
+pkgver=2.5.1
 pkgrel=1
 epoch=1
 pkgdesc='Complete and free Internet live audio and video broadcasting solution'
@@ -20,7 +20,7 @@
 )
 makedepends=('libvdpau' 'yasm')
 source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('4346fe710cc6bdd981f6534d2420d1ab'
+md5sums=('ad3b4c189e9a7d43ae54c52d409a43ef'
  'SKIP')
 
 build() {


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

2014-12-15 Thread Bartłomiej Piotrowski
Date: Tuesday, December 16, 2014 @ 07:13:15
  Author: bpiotrowski
Revision: 227638

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-16 06:13:01 UTC (rev 227637)
+++ extra-i686/PKGBUILD 2014-12-16 06:13:15 UTC (rev 227638)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru ib...@archlinux.org
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Paul Mattal p...@archlinux.org
-
-pkgname=ffmpeg
-pkgver=2.5
-pkgrel=1
-epoch=1
-pkgdesc='Complete and free Internet live audio and video broadcasting solution'
-arch=('i686' 'x86_64')
-url='http://ffmpeg.org/'
-license=('GPL')
-depends=(
-  'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
-  'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 
'libvpx'
-  'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
-  'v4l-utils' 'libx264' 'xvidcore' 'zlib' 'x265' 'fribidi'
-)
-makedepends=('libvdpau' 'yasm')
-source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('4346fe710cc6bdd981f6534d2420d1ab'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---disable-debug \
---disable-static \
---disable-stripping \
---enable-avisynth \
---enable-avresample \
---enable-fontconfig \
---enable-gnutls \
---enable-gpl \
---enable-libass \
---enable-libbluray \
---enable-libfreetype \
---enable-libfribidi \
---enable-libgsm \
---enable-libmodplug \
---enable-libmp3lame \
---enable-libopencore_amrnb \
---enable-libopencore_amrwb \
---enable-libopenjpeg \
---enable-libopus \
---enable-libpulse \
---enable-librtmp \
---enable-libschroedinger \
---enable-libspeex \
---enable-libtheora \
---enable-libv4l2 \
---enable-libvorbis \
---enable-libvpx \
---enable-libx264 \
---enable-libx265 \
---enable-libxvid \
---enable-runtime-cpudetect \
---enable-shared \
---enable-swresample \
---enable-vdpau \
---enable-version3 \
---enable-x11grab \
-
-  make
-  make tools/qt-faststart
-  make doc/ff{mpeg,play,server}.1
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install install-man
-  install -Dm755 tools/qt-faststart $pkgdir/usr/bin/qt-faststart
-}

Copied: ffmpeg/repos/extra-i686/PKGBUILD (from rev 227637, 
ffmpeg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-12-16 06:13:15 UTC (rev 227638)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer:  Ionut Biru ib...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: Paul Mattal p...@archlinux.org
+
+pkgname=ffmpeg
+pkgver=2.5.1
+pkgrel=1
+epoch=1
+pkgdesc='Complete and free Internet live audio and video broadcasting solution'
+arch=('i686' 'x86_64')
+url='http://ffmpeg.org/'
+license=('GPL')
+depends=(
+  'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
+  'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 
'libvpx'
+  'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
+  'v4l-utils' 'libx264' 'xvidcore' 'zlib' 'x265' 'fribidi'
+)
+makedepends=('libvdpau' 'yasm')
+source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('ad3b4c189e9a7d43ae54c52d409a43ef'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-debug \
+--disable-static \
+--disable-stripping \
+--enable-avisynth \
+--enable-avresample \
+--enable-fontconfig \
+--enable-gnutls \
+--enable-gpl \
+--enable-libass \
+--enable-libbluray \
+--enable-libfreetype \
+--enable-libfribidi \
+--enable-libgsm \
+--enable-libmodplug \
+--enable-libmp3lame \
+--enable-libopencore_amrnb \
+--enable-libopencore_amrwb \
+--enable-libopenjpeg \
+--enable-libopus \
+--enable-libpulse \
+--enable-librtmp \
+--enable-libschroedinger \
+--enable-libspeex \
+--enable-libtheora \
+--enable-libv4l2 \
+--enable-libvorbis \
+--enable-libvpx \
+

[arch-commits] Commit in (lib32-liblphobos-devel lib32-liblphobos)

2014-12-15 Thread Михаил Страшун
Date: Tuesday, December 16, 2014 @ 07:36:07
  Author: dicebot
Revision: 123942

liblphobos renamed because of switch to shared lib

Added:
  lib32-liblphobos/
Deleted:
  lib32-liblphobos-devel/