[arch-commits] Commit in python-numpy/trunk (PKGBUILD numpy-insecure-mktemp-use.patch)

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 08:03:09
  Author: fyan
Revision: 209781

upgpkg: python-numpy 1.8.1-1

Modified:
  python-numpy/trunk/PKGBUILD
Deleted:
  python-numpy/trunk/numpy-insecure-mktemp-use.patch

-+
 PKGBUILD|   14 --
 numpy-insecure-mktemp-use.patch |  263 --
 2 files changed, 4 insertions(+), 273 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 05:24:27 UTC (rev 209780)
+++ PKGBUILD2014-04-04 06:03:09 UTC (rev 209781)
@@ -5,8 +5,8 @@
 
 pkgbase=python-numpy
 pkgname=('python2-numpy' 'python-numpy')
-pkgver=1.8.0
-pkgrel=3
+pkgver=1.8.1
+pkgrel=1
 pkgdesc=Scientific tools for Python
 arch=('i686' 'x86_64')
 license=('custom')
@@ -13,16 +13,10 @@
 url=http://www.numpy.org/;
 makedepends=('lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools' 'gcc-fortran' 'python-nose' 'python2-nose')
 options=('staticlibs')
-source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz
-numpy-insecure-mktemp-use.patch)
-md5sums=('2a4b0423a758706d592abb6721ec8dcd'
- '2caf84740b54dcb5fa1d47e72201f294')
+source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz)
+md5sums=('be95babe263bfa3428363d6db5b64678')
 
 prepare() {
-  cd numpy-$pkgver
-  patch -Np1 -i ../numpy-insecure-mktemp-use.patch
-  cd ..
-
   cp -a numpy-$pkgver numpy-py2-$pkgver
   cd numpy-py2-$pkgver
 

Deleted: numpy-insecure-mktemp-use.patch
===
--- numpy-insecure-mktemp-use.patch 2014-04-04 05:24:27 UTC (rev 209780)
+++ numpy-insecure-mktemp-use.patch 2014-04-04 06:03:09 UTC (rev 209781)
@@ -1,263 +0,0 @@
 a/numpy/lib/tests/test_io.py   2013-10-30 19:32:51.0 +0100
-+++ b/numpy/lib/tests/test_io.py   2014-02-10 08:30:12.903607138 +0100
-@@ -4,7 +4,9 @@
- import gzip
- import os
- import threading
--from tempfile import mkstemp, mktemp, NamedTemporaryFile
-+import shutil
-+import contextlib
-+from tempfile import mkstemp, mkdtemp, NamedTemporaryFile
- import time
- import warnings
- import gc
-@@ -21,6 +23,12 @@
- assert_raises, run_module_suite)
- from numpy.testing import assert_warns, assert_, build_err_msg
- 
-+@contextlib.contextmanager
-+def tempdir(change_dir=False):
-+tmpdir = mkdtemp()
-+yield tmpdir
-+shutil.rmtree(tmpdir)
-+
- 
- class TextIO(BytesIO):
- Helper IO class.
-@@ -145,14 +153,14 @@
- @np.testing.dec.slow
- def test_big_arrays(self):
- L = (1  31) + 10
--tmp = mktemp(suffix='.npz')
- a = np.empty(L, dtype=np.uint8)
--np.savez(tmp, a=a)
--del a
--npfile = np.load(tmp)
--a = npfile['a']
--npfile.close()
--os.remove(tmp)
-+with tempdir() as tmpdir:
-+tmp = open(os.path.join(tmpdir, file.npz), w)
-+np.savez(tmp, a=a)
-+del a
-+npfile = np.load(tmp)
-+a = npfile['a']
-+npfile.close()
- 
- def test_multiple_arrays(self):
- a = np.array([[1, 2], [3, 4]], float)
-commit 0bb46c1448b0d3f5453d5182a17ea7ac5854ee15
-Author: Julian Taylor jtaylor.deb...@googlemail.com
-Date:   Wed Feb 5 23:01:47 2014 +0100
-
-ENH: remove insecure mktemp use
-
-mktemp only returns a filename, a malicous user could replace it before
-it gets used.
-
-diff --git a/numpy/core/tests/test_memmap.py b/numpy/core/tests/test_memmap.py
-index 6de6319..10e7a08 100644
 a/numpy/core/tests/test_memmap.py
-+++ b/numpy/core/tests/test_memmap.py
-@@ -1,7 +1,7 @@
- from __future__ import division, absolute_import, print_function
- 
- import sys
--from tempfile import NamedTemporaryFile, TemporaryFile, mktemp
-+from tempfile import NamedTemporaryFile, TemporaryFile
- import os
- 
- from numpy import memmap
-@@ -33,12 +33,11 @@ class TestMemmap(TestCase):
- assert_array_equal(self.data, newfp)
- 
- def test_open_with_filename(self):
--tmpname = mktemp('', 'mmap')
--fp = memmap(tmpname, dtype=self.dtype, mode='w+',
--   shape=self.shape)
--fp[:] = self.data[:]
--del fp
--os.unlink(tmpname)
-+with NamedTemporaryFile() as tmp:
-+fp = memmap(tmp.name, dtype=self.dtype, mode='w+',
-+shape=self.shape)
-+fp[:] = self.data[:]
-+del fp
- 
- def test_unnamed_file(self):
- with TemporaryFile() as f:
-@@ -55,17 +54,16 @@ class TestMemmap(TestCase):
- del fp
- 
- def test_filename(self):
--tmpname = mktemp('', 'mmap')
--fp = memmap(tmpname, dtype=self.dtype, mode='w+',
--   shape=self.shape)
--abspath = os.path.abspath(tmpname)
--fp[:] = self.data[:]
--self.assertEqual(abspath, fp.filename)
--b = fp[:1]
--

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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 08:05:32
  Author: fyan
Revision: 209782

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

Added:
  python-numpy/repos/extra-i686/PKGBUILD
(from rev 209781, python-numpy/trunk/PKGBUILD)
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 209781, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-i686/PKGBUILD
  python-numpy/repos/extra-i686/numpy-insecure-mktemp-use.patch
  python-numpy/repos/extra-x86_64/PKGBUILD
  python-numpy/repos/extra-x86_64/numpy-insecure-mktemp-use.patch

--+
 /PKGBUILD|  164 +++
 extra-i686/PKGBUILD  |   88 
 extra-i686/numpy-insecure-mktemp-use.patch   |  263 -
 extra-x86_64/PKGBUILD|   88 
 extra-x86_64/numpy-insecure-mktemp-use.patch |  263 -
 5 files changed, 164 insertions(+), 702 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-04 06:03:09 UTC (rev 209781)
+++ extra-i686/PKGBUILD 2014-04-04 06:05:32 UTC (rev 209782)
@@ -1,88 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
-# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve 
-
-pkgbase=python-numpy
-pkgname=('python2-numpy' 'python-numpy')
-pkgver=1.8.0
-pkgrel=3
-pkgdesc=Scientific tools for Python
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.numpy.org/;
-makedepends=('lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools' 'gcc-fortran' 'python-nose' 'python2-nose')
-options=('staticlibs')
-source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz
-numpy-insecure-mktemp-use.patch)
-md5sums=('2a4b0423a758706d592abb6721ec8dcd'
- '2caf84740b54dcb5fa1d47e72201f294')
-
-prepare() {
-  cd numpy-$pkgver
-  patch -Np1 -i ../numpy-insecure-mktemp-use.patch
-  cd ..
-
-  cp -a numpy-$pkgver numpy-py2-$pkgver
-  cd numpy-py2-$pkgver
-
-  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
-  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  export ATLAS=None
-  export LDFLAGS=$LDFLAGS -shared
-
-  echo Building Python2
-  cd numpy-py2-$pkgver
-  python2 setup.py config_fc --fcompiler=gnu95 build
-
-  echo Building Python3
-  cd ../numpy-$pkgver
-  python setup.py config_fc --fcompiler=gnu95 build
-}
-
-package_python2-numpy() {
-  depends=('lapack' 'python2')
-  optdepends=('python2-nose: testsuite')
-
-  _pyver=2.7
-
-  export ATLAS=None
-  export LDFLAGS=$LDFLAGS -shared
-
-  cd numpy-py2-$pkgver
-  python2 setup.py config_fc --fcompiler=gnu95 install --prefix=/usr 
--root=${pkgdir} --optimize=1
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/python2-numpy
-  install -m644 LICENSE.txt ${pkgdir}/usr/share/licenses/python2-numpy/
-
-  install -m755 -d ${pkgdir}/usr/include/python${_pyver}
-  ln -sf /usr/lib/python${_pyver}/site-packages/numpy/core/include/numpy 
${pkgdir}/usr/include/python${_pyver}/numpy
-}
-
-package_python-numpy() {
-  depends=('lapack' 'python')
-  optdepends=('python-nose: testsuite')
-  provides=(python3-numpy=${pkgver})
-  replaces=('python3-numpy')
-  conflicts=('python3-numpy')
-
-  _pyver=3.4
-  _pyinc=3.4m
-
-  export ATLAS=None
-  export LDFLAGS=$LDFLAGS -shared
-
-  cd numpy-$pkgver
-  python setup.py config_fc --fcompiler=gnu95 install --prefix=/usr 
--root=${pkgdir} --optimize=1
-
-  install -m755 -d ${pkgdir}/usr/share/licenses/python-numpy
-  install -m644 LICENSE.txt ${pkgdir}/usr/share/licenses/python-numpy/
-
-  install -m755 -d ${pkgdir}/usr/include/python${_pyinc}
-  ln -sf /usr/lib/python${_pyver}/site-packages/numpy/core/include/numpy 
${pkgdir}/usr/include/python${_pyinc}/numpy
-}

Copied: python-numpy/repos/extra-i686/PKGBUILD (from rev 209781, 
python-numpy/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-04 06:05:32 UTC (rev 209782)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
+# Contributor: Angel 'angvp' Velasquez angvp[at]archlinux.com.ve 
+
+pkgbase=python-numpy
+pkgname=('python2-numpy' 'python-numpy')
+pkgver=1.8.1
+pkgrel=1
+pkgdesc=Scientific tools for Python
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.numpy.org/;
+makedepends=('lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools' 'gcc-fortran' 'python-nose' 'python2-nose')
+options=('staticlibs')
+source=(http://downloads.sourceforge.net/numpy/numpy-${pkgver}.tar.gz)
+md5sums=('be95babe263bfa3428363d6db5b64678')
+
+prepare() {
+  cp -a numpy-$pkgver 

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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 08:19:57
  Author: fyan
Revision: 209783

upgpkg: libtorrent-rasterbar 1:0.16.16-1

Modified:
  libtorrent-rasterbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 06:05:32 UTC (rev 209782)
+++ PKGBUILD2014-04-04 06:19:57 UTC (rev 209783)
@@ -3,7 +3,7 @@
 # Contributor: Hugo Doria h...@archlinux.org
 
 pkgname=libtorrent-rasterbar
-pkgver=0.16.15
+pkgver=0.16.16
 pkgrel=1
 epoch=1
 pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
@@ -14,7 +14,7 @@
 makedepends=('boost')
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/sourceforge/libtorrent/$pkgname-$pkgver.tar.gz)
-sha1sums=('8657a493fb2ee4e6bf55e484deb922d23b65818d')
+sha1sums=('de8faed5cbc09baddb2748cb7b75edd07ab0addc')
 
 build() {
   cd $pkgname-$pkgver



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 08:21:48
  Author: fyan
Revision: 209784

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

Added:
  libtorrent-rasterbar/repos/extra-i686/PKGBUILD
(from rev 209783, libtorrent-rasterbar/trunk/PKGBUILD)
  libtorrent-rasterbar/repos/extra-x86_64/PKGBUILD
(from rev 209783, libtorrent-rasterbar/trunk/PKGBUILD)
Deleted:
  libtorrent-rasterbar/repos/extra-i686/PKGBUILD
  libtorrent-rasterbar/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-04-04 06:19:57 UTC (rev 209783)
+++ extra-i686/PKGBUILD 2014-04-04 06:21:48 UTC (rev 209784)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgname=libtorrent-rasterbar
-pkgver=0.16.15
-pkgrel=1
-epoch=1
-pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
-url=http://www.rasterbar.com/products/libtorrent/;
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('boost-libs' 'geoip' 'python2')
-makedepends=('boost')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/libtorrent/$pkgname-$pkgver.tar.gz)
-sha1sums=('8657a493fb2ee4e6bf55e484deb922d23b65818d')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --enable-python-binding \
-  --with-libgeoip=system
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libtorrent-rasterbar/repos/extra-i686/PKGBUILD (from rev 209783, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-04 06:21:48 UTC (rev 209784)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=libtorrent-rasterbar
+pkgver=0.16.16
+pkgrel=1
+epoch=1
+pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
+url=http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('boost-libs' 'geoip' 'python2')
+makedepends=('boost')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/libtorrent/$pkgname-$pkgver.tar.gz)
+sha1sums=('de8faed5cbc09baddb2748cb7b75edd07ab0addc')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --enable-python-binding \
+  --with-libgeoip=system
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-04 06:19:57 UTC (rev 209783)
+++ extra-x86_64/PKGBUILD   2014-04-04 06:21:48 UTC (rev 209784)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgname=libtorrent-rasterbar
-pkgver=0.16.15
-pkgrel=1
-epoch=1
-pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
-url=http://www.rasterbar.com/products/libtorrent/;
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('boost-libs' 'geoip' 'python2')
-makedepends=('boost')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/libtorrent/$pkgname-$pkgver.tar.gz)
-sha1sums=('8657a493fb2ee4e6bf55e484deb922d23b65818d')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --enable-python-binding \
-  --with-libgeoip=system
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libtorrent-rasterbar/repos/extra-x86_64/PKGBUILD (from rev 209783, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-04-04 06:21:48 UTC (rev 209784)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=libtorrent-rasterbar
+pkgver=0.16.16
+pkgrel=1
+epoch=1
+pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
+url=http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('boost-libs' 'geoip' 

[arch-commits] Commit in iso-codes/repos/extra-any (PKGBUILD PKGBUILD)

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 08:41:06
  Author: fyan
Revision: 209786

archrelease: copy trunk to extra-any

Added:
  iso-codes/repos/extra-any/PKGBUILD
(from rev 209785, iso-codes/trunk/PKGBUILD)
Deleted:
  iso-codes/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-04 06:40:11 UTC (rev 209785)
+++ PKGBUILD2014-04-04 06:41:06 UTC (rev 209786)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=iso-codes
-pkgver=3.44
-pkgrel=1
-pkgdesc=Lists of the country, language, and currency names
-arch=('any')
-url=http://pkg-isocodes.alioth.debian.org/;
-license=('LGPL')
-source=(http://pkg-isocodes.alioth.debian.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
-md5sums=('be772ec57321b92e62d962def26ce2aa'
- 'SKIP')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir pkgconfigdir=/usr/lib/pkgconfig install
-}
-

Copied: iso-codes/repos/extra-any/PKGBUILD (from rev 209785, 
iso-codes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-04 06:41:06 UTC (rev 209786)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=iso-codes
+pkgver=3.52
+pkgrel=1
+pkgdesc=Lists of the country, language, and currency names
+arch=('any')
+url=http://pkg-isocodes.alioth.debian.org/;
+license=('LGPL')
+source=(http://pkg-isocodes.alioth.debian.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('0f3f6ce16b3cf4b92538b8255e0dfa92'
+ 'SKIP')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir pkgconfigdir=/usr/lib/pkgconfig install
+}
+



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 08:40:11
  Author: fyan
Revision: 209785

upgpkg: iso-codes 3.52-1

Modified:
  iso-codes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 06:21:48 UTC (rev 209784)
+++ PKGBUILD2014-04-04 06:40:11 UTC (rev 209785)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=iso-codes
-pkgver=3.44
+pkgver=3.52
 pkgrel=1
 pkgdesc=Lists of the country, language, and currency names
 arch=('any')
@@ -9,7 +9,7 @@
 url=http://pkg-isocodes.alioth.debian.org/;
 license=('LGPL')
 
source=(http://pkg-isocodes.alioth.debian.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
-md5sums=('be772ec57321b92e62d962def26ce2aa'
+md5sums=('0f3f6ce16b3cf4b92538b8255e0dfa92'
  'SKIP')
 
 build() {



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 09:19:32
  Author: fyan
Revision: 108794

upgpkg: pep8 1.5.2-1

Modified:
  pep8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 02:40:59 UTC (rev 108793)
+++ PKGBUILD2014-04-04 07:19:32 UTC (rev 108794)
@@ -5,8 +5,8 @@
 
 pkgbase=pep8
 pkgname=($pkgbase $pkgbase-python2)
-pkgver=1.5.1
-pkgrel=2
+pkgver=1.5.2
+pkgrel=1
 pkgdesc=Python style guide checker
 arch=('any')
 url=http://github.com/jcrocholl/pep8/;
@@ -14,7 +14,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=(https://pypi.python.org/packages/source/p/$pkgbase/$pkgbase-${pkgver}.tar.gz;
 LICENSE)
-sha256sums=('818ac9c3b31b2ab63265fb421727025e48f3b6447260632acee43270f172b450'
+sha256sums=('4e0e74c0e3f06ad301fb66a9a24c2d07b5dc324c96a9a139d924a5e102177cf7'
 '4a18840b7c132952f3f3d42c355289018ea263cbe75b25db31c9feb1b61e9b40')
 
 prepare() {
@@ -32,12 +32,11 @@
 }
 
 check() {
+  # Failure in tests: https://github.com/jcrocholl/pep8/issues/267
   cd ${srcdir}/${pkgbase}-${pkgver}
-  # Not passing tests for 1.5.1
   #python setup.py test
 
   cd ${srcdir}/${pkgbase}-${pkgver}-py2
-  # Not passing tests for 1.5.1
   #python2 setup.py test
 }
 



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 09:20:11
  Author: fyan
Revision: 108795

archrelease: copy trunk to community-any

Added:
  pep8/repos/community-any/LICENSE
(from rev 108794, pep8/trunk/LICENSE)
  pep8/repos/community-any/PKGBUILD
(from rev 108794, pep8/trunk/PKGBUILD)
Deleted:
  pep8/repos/community-any/LICENSE
  pep8/repos/community-any/PKGBUILD

--+
 LICENSE  |   48 +++---
 PKGBUILD |  131 ++---
 2 files changed, 89 insertions(+), 90 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-04-04 07:19:32 UTC (rev 108794)
+++ LICENSE 2014-04-04 07:20:11 UTC (rev 108795)
@@ -1,24 +0,0 @@
-Copyright © 2006-2009 Johann C. Rocholl joh...@rocholl.net
-Copyright © 2009-2013 Florent Xicluna florent.xicl...@gmail.com
-
-Licensed under the terms of the Expat License
-
-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: pep8/repos/community-any/LICENSE (from rev 108794, pep8/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-04-04 07:20:11 UTC (rev 108795)
@@ -0,0 +1,24 @@
+Copyright © 2006-2009 Johann C. Rocholl joh...@rocholl.net
+Copyright © 2009-2013 Florent Xicluna florent.xicl...@gmail.com
+
+Licensed under the terms of the Expat License
+
+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-04-04 07:19:32 UTC (rev 108794)
+++ PKGBUILD2014-04-04 07:20:11 UTC (rev 108795)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Ismael Carnales icarnales at gmail dot com
-# Contributor: Sergey Mastykov smastykov[at]gmail[dot]com
-
-pkgbase=pep8
-pkgname=($pkgbase $pkgbase-python2)
-pkgver=1.5.1
-pkgrel=2
-pkgdesc=Python style guide checker
-arch=('any')
-url=http://github.com/jcrocholl/pep8/;
-license=('custom:Expat')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(https://pypi.python.org/packages/source/p/$pkgbase/$pkgbase-${pkgver}.tar.gz;
-LICENSE)
-sha256sums=('818ac9c3b31b2ab63265fb421727025e48f3b6447260632acee43270f172b450'
-'4a18840b7c132952f3f3d42c355289018ea263cbe75b25db31c9feb1b61e9b40')
-
-prepare() {
-  cp -r $pkgbase-$pkgver{,-py2}
-
-  sed -i '1s/env python$/python2/' $pkgbase-$pkgver-py2/pep8.py
-}
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  python setup.py build
-
-  cd ${srcdir}/${pkgbase}-${pkgver}-py2
-  python2 setup.py build
-}
-
-check() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  # Not passing tests for 1.5.1
-  #python setup.py test
-
-  cd ${srcdir}/${pkgbase}-${pkgver}-py2
-  # Not passing tests for 1.5.1
-  #python2 setup.py test
-}
-
-package_pep8() {
-  depends=('python' 'python-setuptools')
-  provides=('pep8-python3')
-  conflicts=('pep8-python3')
-  replaces=('pep8-python3')
-
-  cd $pkgbase-$pkgver

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

2014-04-04 Thread Sergej Pupykin
Date: Friday, April 4, 2014 @ 09:37:12
  Author: spupykin
Revision: 108796

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 07:20:11 UTC (rev 108795)
+++ PKGBUILD2014-04-04 07:37:12 UTC (rev 108796)
@@ -4,7 +4,7 @@
 
 pkgname=libvirt
 pkgver=1.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
 arch=('i686' 'x86_64')
 url=http://libvirt.org/;
@@ -66,11 +66,6 @@
  '0a96ed876ffb1fcb9dff5a9b3a609c1e'
  '020971887442ebbf1b6949e031c8dd3f')
 
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-#  patch -p1 $srcdir/FS#38546.patch
-}
-
 build() {
   cd $srcdir/$pkgname-$pkgver
 
@@ -87,7 +82,7 @@
--with-storage-lvm --without-xen --with-udev --without-hal 
--disable-static \
--with-init-script=systemd --with-audit \
--with-qemu-user=nobody --with-qemu-group=nobody \
-   --without-netcf --with-interface --with-lxc
+   --without-netcf --with-interface --with-lxc --with-sysctl=no
   make
 
   sed -i 's|/etc/sysconfig/|/etc/conf.d/|' daemon/libvirtd.service 
tools/libvirt-guests.service
@@ -111,6 +106,5 @@
$pkgdir/var/run \
$pkgdir/etc/sysconfig \
$pkgdir/etc/rc.d/init.d \
-   $pkgdir/lib \
-   $pkgdir/etc/sysctl.d
+   $pkgdir/lib
 }



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

2014-04-04 Thread Sergej Pupykin
Date: Friday, April 4, 2014 @ 09:46:34
  Author: spupykin
Revision: 108797

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 07:37:12 UTC (rev 108796)
+++ PKGBUILD2014-04-04 07:46:34 UTC (rev 108797)
@@ -82,7 +82,7 @@
--with-storage-lvm --without-xen --with-udev --without-hal 
--disable-static \
--with-init-script=systemd --with-audit \
--with-qemu-user=nobody --with-qemu-group=nobody \
-   --without-netcf --with-interface --with-lxc --with-sysctl=no
+   --without-netcf --with-interface --with-lxc
   make
 
   sed -i 's|/etc/sysconfig/|/etc/conf.d/|' daemon/libvirtd.service 
tools/libvirt-guests.service
@@ -97,14 +97,10 @@
 
   install -D -m644 $srcdir/libvirtd.conf.d $pkgdir/etc/conf.d/libvirtd
   install -D -m644 $srcdir/libvirtd-guests.conf.d 
$pkgdir/etc/conf.d/libvirt-guests
-
-  # systemd stuff
   install -D -m644 $srcdir/libvirt.tmpfiles.d 
$pkgdir/usr/lib/tmpfiles.d/libvirt.conf
-#  mv $pkgdir/lib/* $pkgdir/usr/lib/
 
   rm -rf \
$pkgdir/var/run \
$pkgdir/etc/sysconfig \
-   $pkgdir/etc/rc.d/init.d \
-   $pkgdir/lib
+   $pkgdir/etc/rc.d
 }



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

2014-04-04 Thread Sergej Pupykin
Date: Friday, April 4, 2014 @ 09:49:23
  Author: spupykin
Revision: 108799

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-04 07:49:10 UTC (rev 108798)
+++ community-i686/PKGBUILD 2014-04-04 07:49:23 UTC (rev 108799)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Stefano Facchini stefano.facch...@gmail.com
-
-pkgname=libvirt-glib
-pkgver=0.1.7
-pkgrel=2
-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=('39652c07d95f980ff30b39e0fd072e768fb85d778d65432da24b17dee9d36429')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --disable-static \
-  --with-python=/usr/bin/python2
-  make
-}
-
-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 108798, 
libvirt-glib/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-04 07:49:23 UTC (rev 108799)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Stefano Facchini stefano.facch...@gmail.com
+
+pkgname=libvirt-glib
+pkgver=0.1.8
+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')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --disable-static \
+  --with-python=/usr/bin/python2
+  make
+}
+
+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-04-04 07:49:10 UTC (rev 108798)
+++ community-x86_64/PKGBUILD   2014-04-04 07:49:23 UTC (rev 108799)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Stefano Facchini stefano.facch...@gmail.com
-
-pkgname=libvirt-glib
-pkgver=0.1.7
-pkgrel=2
-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=('39652c07d95f980ff30b39e0fd072e768fb85d778d65432da24b17dee9d36429')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --disable-static \
-  --with-python=/usr/bin/python2
-  make
-}
-
-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 108798, 
libvirt-glib/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-04 07:49:23 UTC (rev 108799)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Stefano Facchini stefano.facch...@gmail.com
+
+pkgname=libvirt-glib
+pkgver=0.1.8
+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')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --disable-static \
+  --with-python=/usr/bin/python2
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-04-04 Thread Sergej Pupykin
Date: Friday, April 4, 2014 @ 09:49:10
  Author: spupykin
Revision: 108798

upgpkg: libvirt-glib 0.1.8-1

upd

Modified:
  libvirt-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 07:46:34 UTC (rev 108797)
+++ PKGBUILD2014-04-04 07:49:10 UTC (rev 108798)
@@ -3,8 +3,8 @@
 # Maintainer: Stefano Facchini stefano.facch...@gmail.com
 
 pkgname=libvirt-glib
-pkgver=0.1.7
-pkgrel=2
+pkgver=0.1.8
+pkgrel=1
 pkgdesc=GLib bindings for libvirt
 arch=('i686' 'x86_64')
 url=http://libvirt.org;
@@ -12,7 +12,7 @@
 depends=('libvirt')
 makedepends=('intltool' 'gobject-introspection' 'vala')
 source=(ftp://libvirt.org/libvirt/glib/$pkgname-$pkgver.tar.gz)
-sha256sums=('39652c07d95f980ff30b39e0fd072e768fb85d778d65432da24b17dee9d36429')
+sha256sums=('da0e45952dbe1d5d9fde4f845f3a10763e7fed0b1e45906a46fdb74b777aa751')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2014-04-04 Thread Sergej Pupykin
Date: Friday, April 4, 2014 @ 09:49:26
  Author: spupykin
Revision: 108800

upgpkg: libvirt-python 1.2.3-1

upd

Modified:
  libvirt-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 07:49:23 UTC (rev 108799)
+++ PKGBUILD2014-04-04 07:49:26 UTC (rev 108800)
@@ -3,7 +3,7 @@
 # Contributor: Jonathan Wiersma archaur at jonw dot org
 
 pkgname=libvirt-python
-pkgver=1.2.2
+pkgver=1.2.3
 pkgrel=1
 pkgdesc=libvirt python binding
 arch=('i686' 'x86_64')
@@ -13,15 +13,15 @@
 makedepends=('git')
 options=('emptydirs')
 install=libvirt-python.install
-source=($pkgname::git://libvirt.org/libvirt-python.git#tag=v1.2.1)
-md5sums=('SKIP')
+source=(http://libvirt.org/sources/python/libvirt-python-$pkgver.tar.gz;)
+md5sums=('6916d24595c5cc939e698926cd22888c')
 
 build() {
-  cd $srcdir/$pkgname
+  cd $srcdir/$pkgname-$pkgver
   python2 setup.py build
 }
 
 package() {
-  cd $srcdir/$pkgname
+  cd $srcdir/$pkgname-$pkgver
   python2 setup.py install --root=$pkgdir
 }



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

2014-04-04 Thread Sergej Pupykin
Date: Friday, April 4, 2014 @ 09:49:38
  Author: spupykin
Revision: 108801

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

Added:
  libvirt-python/repos/community-i686/PKGBUILD
(from rev 108800, libvirt-python/trunk/PKGBUILD)
  libvirt-python/repos/community-i686/libvirt-python.install
(from rev 108800, libvirt-python/trunk/libvirt-python.install)
  libvirt-python/repos/community-x86_64/PKGBUILD
(from rev 108800, libvirt-python/trunk/PKGBUILD)
  libvirt-python/repos/community-x86_64/libvirt-python.install
(from rev 108800, libvirt-python/trunk/libvirt-python.install)
Deleted:
  libvirt-python/repos/community-i686/PKGBUILD
  libvirt-python/repos/community-i686/libvirt-python.install
  libvirt-python/repos/community-x86_64/PKGBUILD
  libvirt-python/repos/community-x86_64/libvirt-python.install

-+
 /PKGBUILD   |   54 ++
 /libvirt-python.install |6 +++
 community-i686/PKGBUILD |   27 ---
 community-i686/libvirt-python.install   |3 -
 community-x86_64/PKGBUILD   |   27 ---
 community-x86_64/libvirt-python.install |3 -
 6 files changed, 60 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-04 07:49:26 UTC (rev 108800)
+++ community-i686/PKGBUILD 2014-04-04 07:49:38 UTC (rev 108801)
@@ -1,27 +0,0 @@
-# $Id: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin $
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jonathan Wiersma archaur at jonw dot org
-
-pkgname=libvirt-python
-pkgver=1.2.2
-pkgrel=1
-pkgdesc=libvirt python binding
-arch=('i686' 'x86_64')
-url=http://libvirt.org/;
-license=('LGPL')
-depends=('python2' 'libvirt')
-makedepends=('git')
-options=('emptydirs')
-install=libvirt-python.install
-source=($pkgname::git://libvirt.org/libvirt-python.git#tag=v1.2.1)
-md5sums=('SKIP')
-
-build() {
-  cd $srcdir/$pkgname
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/$pkgname
-  python2 setup.py install --root=$pkgdir
-}

Copied: libvirt-python/repos/community-i686/PKGBUILD (from rev 108800, 
libvirt-python/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-04 07:49:38 UTC (rev 108801)
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Jonathan Wiersma archaur at jonw dot org
+
+pkgname=libvirt-python
+pkgver=1.2.3
+pkgrel=1
+pkgdesc=libvirt python binding
+arch=('i686' 'x86_64')
+url=http://libvirt.org/;
+license=('LGPL')
+depends=('python2' 'libvirt')
+makedepends=('git')
+options=('emptydirs')
+install=libvirt-python.install
+source=(http://libvirt.org/sources/python/libvirt-python-$pkgver.tar.gz;)
+md5sums=('6916d24595c5cc939e698926cd22888c')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  python2 setup.py install --root=$pkgdir
+}

Deleted: community-i686/libvirt-python.install
===
--- community-i686/libvirt-python.install   2014-04-04 07:49:26 UTC (rev 
108800)
+++ community-i686/libvirt-python.install   2014-04-04 07:49:38 UTC (rev 
108801)
@@ -1,3 +0,0 @@
-post_remove() {
-   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
-}

Copied: libvirt-python/repos/community-i686/libvirt-python.install (from rev 
108800, libvirt-python/trunk/libvirt-python.install)
===
--- community-i686/libvirt-python.install   (rev 0)
+++ community-i686/libvirt-python.install   2014-04-04 07:49:38 UTC (rev 
108801)
@@ -0,0 +1,3 @@
+post_remove() {
+   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-04 07:49:26 UTC (rev 108800)
+++ community-x86_64/PKGBUILD   2014-04-04 07:49:38 UTC (rev 108801)
@@ -1,27 +0,0 @@
-# $Id: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin $
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jonathan Wiersma archaur at jonw dot org
-
-pkgname=libvirt-python
-pkgver=1.2.2
-pkgrel=1
-pkgdesc=libvirt python binding
-arch=('i686' 'x86_64')
-url=http://libvirt.org/;
-license=('LGPL')
-depends=('python2' 'libvirt')
-makedepends=('git')
-options=('emptydirs')
-install=libvirt-python.install
-source=($pkgname::git://libvirt.org/libvirt-python.git#tag=v1.2.1)
-md5sums=('SKIP')
-
-build() {
-  cd $srcdir/$pkgname
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/$pkgname
-  python2 setup.py install 

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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 10:05:19
  Author: fyan
Revision: 108802

upgpkg: pep8 1.5.2-2

- use git checkout instead (source different from pypi tarball, and it passes 
tests)

Modified:
  pep8/trunk/PKGBUILD

--+
 PKGBUILD |   35 ---
 1 file changed, 16 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 07:49:38 UTC (rev 108801)
+++ PKGBUILD2014-04-04 08:05:19 UTC (rev 108802)
@@ -6,38 +6,35 @@
 pkgbase=pep8
 pkgname=($pkgbase $pkgbase-python2)
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Python style guide checker
 arch=('any')
 url=http://github.com/jcrocholl/pep8/;
 license=('custom:Expat')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(https://pypi.python.org/packages/source/p/$pkgbase/$pkgbase-${pkgver}.tar.gz;
-LICENSE)
-sha256sums=('4e0e74c0e3f06ad301fb66a9a24c2d07b5dc324c96a9a139d924a5e102177cf7'
-'4a18840b7c132952f3f3d42c355289018ea263cbe75b25db31c9feb1b61e9b40')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+source=(git+https://github.com/jcrocholl/${pkgbase}.git#tag=$pkgver;)
+sha256sums=('SKIP')
 
 prepare() {
-  cp -r $pkgbase-$pkgver{,-py2}
+  cp -r $pkgbase{,-py2}
 
-  sed -i '1s/env python$/python2/' $pkgbase-$pkgver-py2/pep8.py
+  sed -i '1s/env python$/python2/' $pkgbase-py2/pep8.py
 }
 
 build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
+  cd ${srcdir}/${pkgbase}
   python setup.py build
 
-  cd ${srcdir}/${pkgbase}-${pkgver}-py2
+  cd ${srcdir}/${pkgbase}-py2
   python2 setup.py build
 }
 
 check() {
-  # Failure in tests: https://github.com/jcrocholl/pep8/issues/267
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  #python setup.py test
+  cd ${srcdir}/${pkgbase}
+  python setup.py test
 
-  cd ${srcdir}/${pkgbase}-${pkgver}-py2
-  #python2 setup.py test
+  cd ${srcdir}/${pkgbase}-py2
+  python2 setup.py test
 }
 
 package_pep8() {
@@ -46,20 +43,20 @@
   conflicts=('pep8-python3')
   replaces=('pep8-python3')
 
-  cd $pkgbase-$pkgver
+  cd $pkgbase
   python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
 
-  install -Dm644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_pep8-python2() {
   depends=('python2' 'python2-setuptools')
   
-  cd $pkgbase-$pkgver-py2
+  cd $pkgbase-py2
   python2 setup.py install -O1 --prefix=/usr --root=$pkgdir/
   mv $pkgdir/usr/bin/pep8 $pkgdir/usr/bin/pep8-python2
 
-  install -Dm644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 10:05:58
  Author: fyan
Revision: 108803

archrelease: copy trunk to community-any

Added:
  pep8/repos/community-any/LICENSE
(from rev 108802, pep8/trunk/LICENSE)
  pep8/repos/community-any/PKGBUILD
(from rev 108802, pep8/trunk/PKGBUILD)
Deleted:
  pep8/repos/community-any/LICENSE
  pep8/repos/community-any/PKGBUILD

--+
 LICENSE  |   48 +++
 PKGBUILD |  127 +
 2 files changed, 86 insertions(+), 89 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-04-04 08:05:19 UTC (rev 108802)
+++ LICENSE 2014-04-04 08:05:58 UTC (rev 108803)
@@ -1,24 +0,0 @@
-Copyright © 2006-2009 Johann C. Rocholl joh...@rocholl.net
-Copyright © 2009-2013 Florent Xicluna florent.xicl...@gmail.com
-
-Licensed under the terms of the Expat License
-
-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: pep8/repos/community-any/LICENSE (from rev 108802, pep8/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-04-04 08:05:58 UTC (rev 108803)
@@ -0,0 +1,24 @@
+Copyright © 2006-2009 Johann C. Rocholl joh...@rocholl.net
+Copyright © 2009-2013 Florent Xicluna florent.xicl...@gmail.com
+
+Licensed under the terms of the Expat License
+
+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-04-04 08:05:19 UTC (rev 108802)
+++ PKGBUILD2014-04-04 08:05:58 UTC (rev 108803)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Ismael Carnales icarnales at gmail dot com
-# Contributor: Sergey Mastykov smastykov[at]gmail[dot]com
-
-pkgbase=pep8
-pkgname=($pkgbase $pkgbase-python2)
-pkgver=1.5.2
-pkgrel=1
-pkgdesc=Python style guide checker
-arch=('any')
-url=http://github.com/jcrocholl/pep8/;
-license=('custom:Expat')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(https://pypi.python.org/packages/source/p/$pkgbase/$pkgbase-${pkgver}.tar.gz;
-LICENSE)
-sha256sums=('4e0e74c0e3f06ad301fb66a9a24c2d07b5dc324c96a9a139d924a5e102177cf7'
-'4a18840b7c132952f3f3d42c355289018ea263cbe75b25db31c9feb1b61e9b40')
-
-prepare() {
-  cp -r $pkgbase-$pkgver{,-py2}
-
-  sed -i '1s/env python$/python2/' $pkgbase-$pkgver-py2/pep8.py
-}
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  python setup.py build
-
-  cd ${srcdir}/${pkgbase}-${pkgver}-py2
-  python2 setup.py build
-}
-
-check() {
-  # Failure in tests: https://github.com/jcrocholl/pep8/issues/267
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  #python setup.py test
-
-  cd ${srcdir}/${pkgbase}-${pkgver}-py2
-  #python2 setup.py test
-}
-
-package_pep8() {
-  depends=('python' 'python-setuptools')
-  provides=('pep8-python3')
-  conflicts=('pep8-python3')
-  replaces=('pep8-python3')
-
-  cd 

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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 10:57:19
  Author: andyrtr
Revision: 209787

upgpkg: sqlite 3.8.4.3-1

upstream update 3.8.4.3

Modified:
  sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 06:41:06 UTC (rev 209786)
+++ PKGBUILD2014-04-04 08:57:19 UTC (rev 209787)
@@ -4,10 +4,10 @@
 
 pkgbase=sqlite
 pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
-_amalgamationver=3080402
+_amalgamationver=3080403
 _docver=${_amalgamationver}
 #_docver=3080001
-pkgver=3.8.4.2
+pkgver=3.8.4.3
 pkgrel=1
 pkgdesc=A C library that implements an SQL database engine
 arch=('i686' 'x86_64')
@@ -19,8 +19,8 @@
http://www.sqlite.org/2014/sqlite-doc-${_docver}.zip
license.txt)
 options=('!emptydirs')
-sha1sums=('97d727b46ca67c98eb7a0fa3f57a1cfeb7f08f74'
-  '3f615f9fa81b737e652b06eddef8307235d84f2c'
+sha1sums=('70f3b100fa22e5bfebfe1b0a2102612e3c6c53fb'
+  'ce8615799a9da7fc9d2cbcd2774d77da4ba72417'
   'f34f6daa4ab3073d74e774aad21d66878cf26853')
 
 build() {



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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 10:57:39
  Author: andyrtr
Revision: 209788

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

Added:
  sqlite/repos/extra-i686/PKGBUILD
(from rev 209787, sqlite/trunk/PKGBUILD)
  sqlite/repos/extra-i686/license.txt
(from rev 209787, sqlite/trunk/license.txt)
  sqlite/repos/extra-x86_64/PKGBUILD
(from rev 209787, sqlite/trunk/PKGBUILD)
  sqlite/repos/extra-x86_64/license.txt
(from rev 209787, sqlite/trunk/license.txt)
Deleted:
  sqlite/repos/extra-i686/PKGBUILD
  sqlite/repos/extra-i686/license.txt
  sqlite/repos/extra-x86_64/PKGBUILD
  sqlite/repos/extra-x86_64/license.txt

--+
 /PKGBUILD|  192 +
 /license.txt |   66 +++
 extra-i686/PKGBUILD  |   96 --
 extra-i686/license.txt   |   33 ---
 extra-x86_64/PKGBUILD|   96 --
 extra-x86_64/license.txt |   33 ---
 6 files changed, 258 insertions(+), 258 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-04 08:57:19 UTC (rev 209787)
+++ extra-i686/PKGBUILD 2014-04-04 08:57:39 UTC (rev 209788)
@@ -1,96 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgbase=sqlite
-pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
-_amalgamationver=3080402
-_docver=${_amalgamationver}
-#_docver=3080001
-pkgver=3.8.4.2
-pkgrel=1
-pkgdesc=A C library that implements an SQL database engine
-arch=('i686' 'x86_64')
-license=('custom:Public Domain')
-url=http://www.sqlite.org/;
-makedepends=('tcl' 'readline')
-source=( # tarball containing the amalgamation for SQLite = 3.7.5 together 
with a configure script and makefile for building it; includes now also the Tcl 
Extension Architecture (TEA)
-   http://www.sqlite.org/2014/sqlite-autoconf-$_amalgamationver.tar.gz
-   http://www.sqlite.org/2014/sqlite-doc-${_docver}.zip
-   license.txt)
-options=('!emptydirs')
-sha1sums=('97d727b46ca67c98eb7a0fa3f57a1cfeb7f08f74'
-  '3f615f9fa81b737e652b06eddef8307235d84f2c'
-  'f34f6daa4ab3073d74e774aad21d66878cf26853')
-
-build() {
-  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
-
-  # build sqlite
-  cd $srcdir/sqlite-autoconf-$_amalgamationver
-
-  ./configure --prefix=/usr \
-   --disable-static
-  make
-  
-  # build the tcl extension
-  cd $srcdir/sqlite-autoconf-$_amalgamationver/tea
-  ./configure --prefix=/usr \
-   --with-system-sqlite
-  make
-
-}
-
-package_sqlite() {
- 
- pkgdesc=A C library that implements an SQL database engine
- depends=('readline')
- provides=(sqlite3=$pkgver)
- replaces=(sqlite3)
- 
-  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
-  make DESTDIR=${pkgdir} install
-  
-  # license - no linking required because pkgbase=pkgname
-  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
-}
-
-package_sqlite-tcl() {
- 
- pkgdesc=sqlite Tcl Extension Architecture (TEA)
- depends=('sqlite')
- provides=(sqlite3-tcl=$pkgver)
- replaces=(sqlite3-tcl)
- 
-  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
-  make DESTDIR=${pkgdir} install
-  
-  # link license
-  install -m755 -d ${pkgdir}/usr/share/licenses
-  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
-}
-
-package_sqlite-doc() {
-
- pkgdesc=most of the static HTML files that comprise this website, including 
all of the SQL Syntax and the C/C++ interface specs and other miscellaneous 
documentation
- #arch=('any') - not yet supported
- provides=(sqlite3-doc=$pkgver)
- replaces=(sqlite3-doc)
- 
-  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
-  cd ${srcdir}/sqlite-doc-${_docver}
-  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
-  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
-  
-  # fix permissions and remove obsolete files; 
https://bugs.archlinux.org/task/24605
-  find ${pkgdir} -type f -perm 755 -exec ls -lha {} \;
-  find ${pkgdir} -type f -perm 755 -exec chmod 644 {} \;
-
-  find ${pkgdir} -type f -name '*~' -exec ls -lha {} \;
-  find ${pkgdir} -type d -name '*~' -exec ls -lha {} \;
-  find ${pkgdir} -name '*~' -exec rm -f {} \;
-
-  find ${pkgdir} -type f -name '.~*' -exec ls -lha {} \; # 
/build/pkg/sqlite-doc/usr/share/doc/sqlite/images/fileformat/.~lock.indexpage.odg#
-  find ${pkgdir} -type d -name '.~*' -exec ls -lha {} \;
-  find ${pkgdir} -name '.~*' -exec rm -f {} \;
-}

Copied: sqlite/repos/extra-i686/PKGBUILD (from rev 209787, 
sqlite/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-04 08:57:39 UTC (rev 209788)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom 

[arch-commits] Commit in (4 files)

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 11:09:01
  Author: fyan
Revision: 108804

addpkg: python-cryptography-vectors 0.3-1

- new checkdepend for python-cryptography

Added:
  python-cryptography-vectors/
  python-cryptography-vectors/repos/
  python-cryptography-vectors/trunk/
  python-cryptography-vectors/trunk/PKGBUILD

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

Added: python-cryptography-vectors/trunk/PKGBUILD
===
--- python-cryptography-vectors/trunk/PKGBUILD  (rev 0)
+++ python-cryptography-vectors/trunk/PKGBUILD  2014-04-04 09:09:01 UTC (rev 
108804)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography-vectors
+pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
+pkgver=0.3
+pkgrel=1
+pkgdesc=Test vectors for the cryptography package
+arch=('any')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography-vectors;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
+md5sums=('8679a9b33e10bbba89161cbdf83b83de')
+ 
+prepare() {
+   cp -a cryptography_vectors-${pkgver}{,-python2}
+}
+
+package_python-cryptography-vectors() {
+   depends=('python')
+ 
+   cd cryptography_vectors-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1
+}
+ 
+package_python2-cryptography-vectors() {
+   depends=('python2')
+ 
+   cd cryptography_vectors-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1
+}


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


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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 11:09:54
  Author: fyan
Revision: 108805

archrelease: copy trunk to community-any

Added:
  python-cryptography-vectors/repos/community-any/
  python-cryptography-vectors/repos/community-any/PKGBUILD
(from rev 108804, python-cryptography-vectors/trunk/PKGBUILD)

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

Copied: python-cryptography-vectors/repos/community-any/PKGBUILD (from rev 
108804, python-cryptography-vectors/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-04-04 09:09:54 UTC (rev 108805)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography-vectors
+pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
+pkgver=0.3
+pkgrel=1
+pkgdesc=Test vectors for the cryptography package
+arch=('any')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography-vectors;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
+md5sums=('8679a9b33e10bbba89161cbdf83b83de')
+ 
+prepare() {
+   cp -a cryptography_vectors-${pkgver}{,-python2}
+}
+
+package_python-cryptography-vectors() {
+   depends=('python')
+ 
+   cd cryptography_vectors-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1
+}
+ 
+package_python2-cryptography-vectors() {
+   depends=('python2')
+ 
+   cd cryptography_vectors-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1
+}



[arch-commits] Commit in python-cryptography-vectors/repos/community-any (2 files)

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 11:20:39
  Author: fyan
Revision: 108806

archrelease: copy trunk to community-any

Added:
  python-cryptography-vectors/repos/community-any/PKGBUILD
(from rev 108805, python-cryptography-vectors/trunk/PKGBUILD)
Deleted:
  python-cryptography-vectors/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-04 09:09:54 UTC (rev 108805)
+++ PKGBUILD2014-04-04 09:20:39 UTC (rev 108806)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-
-pkgbase=python-cryptography-vectors
-pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=0.3
-pkgrel=1
-pkgdesc=Test vectors for the cryptography package
-arch=('any')
-license=('Apache')
-url=http://pypi.python.org/pypi/cryptography-vectors;
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-md5sums=('8679a9b33e10bbba89161cbdf83b83de')
- 
-prepare() {
-   cp -a cryptography_vectors-${pkgver}{,-python2}
-}
-
-package_python-cryptography-vectors() {
-   depends=('python')
- 
-   cd cryptography_vectors-${pkgver}
-   python3 setup.py install --root=${pkgdir} --optimize=1
-}
- 
-package_python2-cryptography-vectors() {
-   depends=('python2')
- 
-   cd cryptography_vectors-${pkgver}-python2
-   python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: python-cryptography-vectors/repos/community-any/PKGBUILD (from rev 
108805, python-cryptography-vectors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-04 09:20:39 UTC (rev 108806)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography-vectors
+pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
+pkgver=0.3
+pkgrel=1
+pkgdesc=Test vectors for the cryptography package
+arch=('any')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography-vectors;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
+md5sums=('8679a9b33e10bbba89161cbdf83b83de')
+ 
+prepare() {
+   cp -a cryptography_vectors-${pkgver}{,-python2}
+}
+
+package_python-cryptography-vectors() {
+   depends=('python')
+ 
+   cd cryptography_vectors-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1
+}
+ 
+package_python2-cryptography-vectors() {
+   depends=('python2')
+ 
+   cd cryptography_vectors-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1
+}



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 11:28:46
  Author: fyan
Revision: 209789

upgpkg: python-cryptography 0.3-1

- upstream new release

Modified:
  python-cryptography/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 08:57:39 UTC (rev 209788)
+++ PKGBUILD2014-04-04 09:28:46 UTC (rev 209789)
@@ -3,16 +3,17 @@
 
 pkgbase=python-cryptography
 pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=0.2.2
-pkgrel=2
+pkgver=0.3
+pkgrel=1
 pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
 arch=('i686' 'x86_64')
 license=('Apache')
 url=http://pypi.python.org/pypi/cryptography;
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
-checkdepends=('python-pytest' 'python2-pytest')
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
 
source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
-md5sums=('f002a442c8c5c7463bf8d2f11f6c3128')
+md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
 
 check() {
# Check python3 module
@@ -48,6 +49,6 @@
 package_python2-cryptography() {
depends=('python2' 'python2-six' 'python2-cffi')
  
-   cd ${srcdir}/cryptography-${pkgver}-python2
+   cd cryptography-${pkgver}-python2
python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
 }



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 11:30:53
  Author: fyan
Revision: 209790

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

Added:
  python-cryptography/repos/community-testing-i686/
  python-cryptography/repos/community-testing-i686/PKGBUILD
(from rev 209789, python-cryptography/trunk/PKGBUILD)
  python-cryptography/repos/community-testing-x86_64/
  python-cryptography/repos/community-testing-x86_64/PKGBUILD
(from rev 209789, python-cryptography/trunk/PKGBUILD)

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

Copied: python-cryptography/repos/community-testing-i686/PKGBUILD (from rev 
209789, python-cryptography/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-04-04 09:30:53 UTC (rev 209790)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=0.3
+pkgrel=1
+pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
+arch=('i686' 'x86_64')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
+source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
+md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
+
+check() {
+   # Check python3 module
+   cd ${srcdir}/cryptography-${pkgver}
+   python3 setup.py test
+
+   # Check python2 module
+   cd ${srcdir}/cryptography-${pkgver}-python2
+   python2 setup.py test
+}
+ 
+prepare() {
+   cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   # Build python 3 module
+   cd cryptography-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../cryptography-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-cryptography() {
+   depends=('python' 'python-six' 'python-cffi')
+ 
+   cd cryptography-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}
+ 
+package_python2-cryptography() {
+   depends=('python2' 'python2-six' 'python2-cffi')
+ 
+   cd cryptography-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}

Copied: python-cryptography/repos/community-testing-x86_64/PKGBUILD (from rev 
209789, python-cryptography/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-04-04 09:30:53 UTC (rev 209790)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=0.3
+pkgrel=1
+pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
+arch=('i686' 'x86_64')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
+source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
+md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
+
+check() {
+   # Check python3 module
+   cd ${srcdir}/cryptography-${pkgver}
+   python3 setup.py test
+
+   # Check python2 module
+   cd ${srcdir}/cryptography-${pkgver}-python2
+   python2 setup.py test
+}
+ 
+prepare() {
+   cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   # Build python 3 module
+   cd cryptography-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../cryptography-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-cryptography() {
+   depends=('python' 'python-six' 'python-cffi')
+ 
+   cd cryptography-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}
+ 
+package_python2-cryptography() {
+   depends=('python2' 'python2-six' 'python2-cffi')
+ 
+   cd cryptography-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 11:44:01
  Author: fyan
Revision: 209791

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

Added:
  python-cryptography/repos/community-testing-i686/PKGBUILD
(from rev 209790, python-cryptography/trunk/PKGBUILD)
  python-cryptography/repos/community-testing-x86_64/PKGBUILD
(from rev 209790, python-cryptography/trunk/PKGBUILD)
Deleted:
  python-cryptography/repos/community-testing-i686/PKGBUILD
  python-cryptography/repos/community-testing-x86_64/PKGBUILD

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2014-04-04 09:30:53 UTC (rev 209790)
+++ community-testing-i686/PKGBUILD 2014-04-04 09:44:01 UTC (rev 209791)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-
-pkgbase=python-cryptography
-pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=0.3
-pkgrel=1
-pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
-arch=('i686' 'x86_64')
-license=('Apache')
-url=http://pypi.python.org/pypi/cryptography;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
-checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
-  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
-source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
-md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
-
-check() {
-   # Check python3 module
-   cd ${srcdir}/cryptography-${pkgver}
-   python3 setup.py test
-
-   # Check python2 module
-   cd ${srcdir}/cryptography-${pkgver}-python2
-   python2 setup.py test
-}
- 
-prepare() {
-   cp -a cryptography-${pkgver}{,-python2}
-}
-
-build() {
-   # Build python 3 module
-   cd cryptography-${pkgver}
-   python3 setup.py build
- 
-   # Build python 2 module
-   cd ../cryptography-${pkgver}-python2
-   python2 setup.py build
-}
- 
-package_python-cryptography() {
-   depends=('python' 'python-six' 'python-cffi')
- 
-   cd cryptography-${pkgver}
-   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
-}
- 
-package_python2-cryptography() {
-   depends=('python2' 'python2-six' 'python2-cffi')
- 
-   cd cryptography-${pkgver}-python2
-   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
-}

Copied: python-cryptography/repos/community-testing-i686/PKGBUILD (from rev 
209790, python-cryptography/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-04-04 09:44:01 UTC (rev 209791)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=0.3
+pkgrel=1
+pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
+arch=('i686' 'x86_64')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
+source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
+md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
+
+check() {
+   # Check python3 module
+   cd ${srcdir}/cryptography-${pkgver}
+   python3 setup.py test
+
+   # Check python2 module
+   cd ${srcdir}/cryptography-${pkgver}-python2
+   python2 setup.py test
+}
+ 
+prepare() {
+   cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   # Build python 3 module
+   cd cryptography-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../cryptography-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-cryptography() {
+   depends=('python' 'python-six' 'python-cffi')
+ 
+   cd cryptography-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}
+ 
+package_python2-cryptography() {
+   depends=('python2' 'python2-six' 'python2-cffi')
+ 
+   cd cryptography-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2014-04-04 09:30:53 UTC (rev 

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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 11:46:27
  Author: fyan
Revision: 108807

upgpkg: python-sqlalchemy 0.9.4-1

Modified:
  python-sqlalchemy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 09:20:39 UTC (rev 108806)
+++ PKGBUILD2014-04-04 09:46:27 UTC (rev 108807)
@@ -1,31 +1,39 @@
 # $Id$ 
-# Maintainer: Angel Velasquez an...@archlinux.org 
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
 # Contributor: Sébastien Luttringer se...@aur.archlinux.org
 
 pkgbase=python-sqlalchemy
 pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=0.9.3
-pkgrel=2
+pkgver=0.9.4
+pkgrel=1
 arch=('i686' 'x86_64') # python2 package contain .so
 url=http://www.sqlalchemy.org/;
-license=('custom: MIT')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'python-nose' 'python2-nose')
+license=('MIT')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
 
source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
-md5sums=('a27989b9d4b3f14ea0b1600aa45559c4')
+md5sums=('c008ea5e2565ec1418ee8461393a99b1')
 
+prepare() {
+  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
+}
+
 build() {
-  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
   cd SQLAlchemy-$pkgver
   python setup.py build
+
   cd ../SQLAlchemy2-$pkgver
   python2 setup.py build
 }
 
 check() {
+  # Tests failing
   cd SQLAlchemy-${pkgver}
-  python setup.py check
-  python2 setup.py check
-
+  #python setup.py test
+ 
+  cd ../SQLAlchemy2-$pkgver  
+  #python2 setup.py test
 }
 
 package_python-sqlalchemy() {



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 11:48:31
  Author: fyan
Revision: 108808

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-04 09:46:27 UTC (rev 108807)
+++ community-i686/PKGBUILD 2014-04-04 09:48:31 UTC (rev 108808)
@@ -1,53 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=0.9.3
-pkgrel=2
-arch=('i686' 'x86_64') # python2 package contain .so
-url=http://www.sqlalchemy.org/;
-license=('custom: MIT')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'python-nose' 'python2-nose')
-source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
-md5sums=('a27989b9d4b3f14ea0b1600aa45559c4')
-
-build() {
-  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
-  cd SQLAlchemy-$pkgver
-  python setup.py build
-  cd ../SQLAlchemy2-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd SQLAlchemy-${pkgver}
-  python setup.py check
-  python2 setup.py check
-
-}
-
-package_python-sqlalchemy() {
-  pkgdesc='Python SQL toolkit and Object Relational Mapper'
-  depends=('python')
-  optdepends=('python-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy-${pkgver}
-  python setup.py install --root=${pkgdir}
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-sqlalchemy() {
-  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
-  depends=('python2')
-  optdepends=('python2-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy2-$pkgver
-  python2 setup.py install --root=$pkgdir
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 108807, 
python-sqlalchemy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-04 09:48:31 UTC (rev 108808)
@@ -0,0 +1,61 @@
+# $Id$ 
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Sébastien Luttringer se...@aur.archlinux.org
+
+pkgbase=python-sqlalchemy
+pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
+pkgver=0.9.4
+pkgrel=1
+arch=('i686' 'x86_64') # python2 package contain .so
+url=http://www.sqlalchemy.org/;
+license=('MIT')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
+source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
+md5sums=('c008ea5e2565ec1418ee8461393a99b1')
+
+prepare() {
+  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
+}
+
+build() {
+  cd SQLAlchemy-$pkgver
+  python setup.py build
+
+  cd ../SQLAlchemy2-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  # Tests failing
+  cd SQLAlchemy-${pkgver}
+  #python setup.py test
+ 
+  cd ../SQLAlchemy2-$pkgver  
+  #python2 setup.py test
+}
+
+package_python-sqlalchemy() {
+  pkgdesc='Python SQL toolkit and Object Relational Mapper'
+  depends=('python')
+  optdepends=('python-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy-${pkgver}
+  python setup.py install --root=${pkgdir}
+  install -D -m644 LICENSE \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-sqlalchemy() {
+  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
+  depends=('python2')
+  optdepends=('python2-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy2-$pkgver
+  python2 setup.py install --root=$pkgdir
+  install -D -m644 LICENSE \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-04 09:46:27 UTC (rev 108807)
+++ community-x86_64/PKGBUILD   2014-04-04 09:48:31 UTC (rev 108808)
@@ -1,53 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Sébastien Luttringer se...@aur.archlinux.org
-

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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 12:15:59
  Author: fyan
Revision: 209792

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

Added:
  python-cryptography/repos/community-testing-i686/PKGBUILD
(from rev 209791, python-cryptography/trunk/PKGBUILD)
  python-cryptography/repos/community-testing-x86_64/PKGBUILD
(from rev 209791, python-cryptography/trunk/PKGBUILD)
Deleted:
  python-cryptography/repos/community-testing-i686/PKGBUILD
  python-cryptography/repos/community-testing-x86_64/PKGBUILD

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2014-04-04 09:44:01 UTC (rev 209791)
+++ community-testing-i686/PKGBUILD 2014-04-04 10:15:59 UTC (rev 209792)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-
-pkgbase=python-cryptography
-pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=0.3
-pkgrel=1
-pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
-arch=('i686' 'x86_64')
-license=('Apache')
-url=http://pypi.python.org/pypi/cryptography;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
-checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
-  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
-source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
-md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
-
-check() {
-   # Check python3 module
-   cd ${srcdir}/cryptography-${pkgver}
-   python3 setup.py test
-
-   # Check python2 module
-   cd ${srcdir}/cryptography-${pkgver}-python2
-   python2 setup.py test
-}
- 
-prepare() {
-   cp -a cryptography-${pkgver}{,-python2}
-}
-
-build() {
-   # Build python 3 module
-   cd cryptography-${pkgver}
-   python3 setup.py build
- 
-   # Build python 2 module
-   cd ../cryptography-${pkgver}-python2
-   python2 setup.py build
-}
- 
-package_python-cryptography() {
-   depends=('python' 'python-six' 'python-cffi')
- 
-   cd cryptography-${pkgver}
-   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
-}
- 
-package_python2-cryptography() {
-   depends=('python2' 'python2-six' 'python2-cffi')
- 
-   cd cryptography-${pkgver}-python2
-   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
-}

Copied: python-cryptography/repos/community-testing-i686/PKGBUILD (from rev 
209791, python-cryptography/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-04-04 10:15:59 UTC (rev 209792)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=0.3
+pkgrel=1
+pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
+arch=('i686' 'x86_64')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
+source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
+md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
+
+check() {
+   # Check python3 module
+   cd ${srcdir}/cryptography-${pkgver}
+   python3 setup.py test
+
+   # Check python2 module
+   cd ${srcdir}/cryptography-${pkgver}-python2
+   python2 setup.py test
+}
+ 
+prepare() {
+   cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   # Build python 3 module
+   cd cryptography-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../cryptography-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-cryptography() {
+   depends=('python' 'python-six' 'python-cffi')
+ 
+   cd cryptography-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}
+ 
+package_python2-cryptography() {
+   depends=('python2' 'python2-six' 'python2-cffi')
+ 
+   cd cryptography-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2014-04-04 09:44:01 UTC (rev 

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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 12:16:01
  Author: fyan
Revision: 108809

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-04 09:48:31 UTC (rev 108808)
+++ community-i686/PKGBUILD 2014-04-04 10:16:01 UTC (rev 108809)
@@ -1,61 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=0.9.4
-pkgrel=1
-arch=('i686' 'x86_64') # python2 package contain .so
-url=http://www.sqlalchemy.org/;
-license=('MIT')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
-source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
-md5sums=('c008ea5e2565ec1418ee8461393a99b1')
-
-prepare() {
-  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
-}
-
-build() {
-  cd SQLAlchemy-$pkgver
-  python setup.py build
-
-  cd ../SQLAlchemy2-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  # Tests failing
-  cd SQLAlchemy-${pkgver}
-  #python setup.py test
- 
-  cd ../SQLAlchemy2-$pkgver  
-  #python2 setup.py test
-}
-
-package_python-sqlalchemy() {
-  pkgdesc='Python SQL toolkit and Object Relational Mapper'
-  depends=('python')
-  optdepends=('python-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy-${pkgver}
-  python setup.py install --root=${pkgdir}
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-sqlalchemy() {
-  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
-  depends=('python2')
-  optdepends=('python2-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy2-$pkgver
-  python2 setup.py install --root=$pkgdir
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 108808, 
python-sqlalchemy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-04 10:16:01 UTC (rev 108809)
@@ -0,0 +1,61 @@
+# $Id$ 
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Sébastien Luttringer se...@aur.archlinux.org
+
+pkgbase=python-sqlalchemy
+pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
+pkgver=0.9.4
+pkgrel=1
+arch=('i686' 'x86_64') # python2 package contain .so
+url=http://www.sqlalchemy.org/;
+license=('MIT')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
+source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
+md5sums=('c008ea5e2565ec1418ee8461393a99b1')
+
+prepare() {
+  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
+}
+
+build() {
+  cd SQLAlchemy-$pkgver
+  python setup.py build
+
+  cd ../SQLAlchemy2-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  # Tests failing
+  cd SQLAlchemy-${pkgver}
+  #python setup.py test
+ 
+  cd ../SQLAlchemy2-$pkgver  
+  #python2 setup.py test
+}
+
+package_python-sqlalchemy() {
+  pkgdesc='Python SQL toolkit and Object Relational Mapper'
+  depends=('python')
+  optdepends=('python-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy-${pkgver}
+  python setup.py install --root=${pkgdir}
+  install -D -m644 LICENSE \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-sqlalchemy() {
+  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
+  depends=('python2')
+  optdepends=('python2-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy2-$pkgver
+  python2 setup.py install --root=$pkgdir
+  install -D -m644 LICENSE \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-04 09:48:31 UTC (rev 108808)
+++ community-x86_64/PKGBUILD   2014-04-04 

[arch-commits] Commit in python-cryptography-vectors/repos/community-any (2 files)

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 12:28:22
  Author: fyan
Revision: 108810

archrelease: copy trunk to community-any

Added:
  python-cryptography-vectors/repos/community-any/PKGBUILD
(from rev 108809, python-cryptography-vectors/trunk/PKGBUILD)
Deleted:
  python-cryptography-vectors/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-04 10:16:01 UTC (rev 108809)
+++ PKGBUILD2014-04-04 10:28:22 UTC (rev 108810)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-
-pkgbase=python-cryptography-vectors
-pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=0.3
-pkgrel=1
-pkgdesc=Test vectors for the cryptography package
-arch=('any')
-license=('Apache')
-url=http://pypi.python.org/pypi/cryptography-vectors;
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-md5sums=('8679a9b33e10bbba89161cbdf83b83de')
- 
-prepare() {
-   cp -a cryptography_vectors-${pkgver}{,-python2}
-}
-
-package_python-cryptography-vectors() {
-   depends=('python')
- 
-   cd cryptography_vectors-${pkgver}
-   python3 setup.py install --root=${pkgdir} --optimize=1
-}
- 
-package_python2-cryptography-vectors() {
-   depends=('python2')
- 
-   cd cryptography_vectors-${pkgver}-python2
-   python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: python-cryptography-vectors/repos/community-any/PKGBUILD (from rev 
108809, python-cryptography-vectors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-04 10:28:22 UTC (rev 108810)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography-vectors
+pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
+pkgver=0.3
+pkgrel=1
+pkgdesc=Test vectors for the cryptography package
+arch=('any')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography-vectors;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
+md5sums=('8679a9b33e10bbba89161cbdf83b83de')
+ 
+prepare() {
+   cp -a cryptography_vectors-${pkgver}{,-python2}
+}
+
+package_python-cryptography-vectors() {
+   depends=('python')
+ 
+   cd cryptography_vectors-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1
+}
+ 
+package_python2-cryptography-vectors() {
+   depends=('python2')
+ 
+   cd cryptography_vectors-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1
+}



[arch-commits] Commit in python-cryptography-vectors/repos/community-any (2 files)

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 12:37:52
  Author: fyan
Revision: 108811

archrelease: copy trunk to community-any

Added:
  python-cryptography-vectors/repos/community-any/PKGBUILD
(from rev 108810, python-cryptography-vectors/trunk/PKGBUILD)
Deleted:
  python-cryptography-vectors/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-04 10:28:22 UTC (rev 108810)
+++ PKGBUILD2014-04-04 10:37:52 UTC (rev 108811)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-
-pkgbase=python-cryptography-vectors
-pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=0.3
-pkgrel=1
-pkgdesc=Test vectors for the cryptography package
-arch=('any')
-license=('Apache')
-url=http://pypi.python.org/pypi/cryptography-vectors;
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-md5sums=('8679a9b33e10bbba89161cbdf83b83de')
- 
-prepare() {
-   cp -a cryptography_vectors-${pkgver}{,-python2}
-}
-
-package_python-cryptography-vectors() {
-   depends=('python')
- 
-   cd cryptography_vectors-${pkgver}
-   python3 setup.py install --root=${pkgdir} --optimize=1
-}
- 
-package_python2-cryptography-vectors() {
-   depends=('python2')
- 
-   cd cryptography_vectors-${pkgver}-python2
-   python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: python-cryptography-vectors/repos/community-any/PKGBUILD (from rev 
108810, python-cryptography-vectors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-04 10:37:52 UTC (rev 108811)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography-vectors
+pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
+pkgver=0.3
+pkgrel=1
+pkgdesc=Test vectors for the cryptography package
+arch=('any')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography-vectors;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
+md5sums=('8679a9b33e10bbba89161cbdf83b83de')
+ 
+prepare() {
+   cp -a cryptography_vectors-${pkgver}{,-python2}
+}
+
+package_python-cryptography-vectors() {
+   depends=('python')
+ 
+   cd cryptography_vectors-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1
+}
+ 
+package_python2-cryptography-vectors() {
+   depends=('python2')
+ 
+   cd cryptography_vectors-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1
+}



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 12:44:32
  Author: fyan
Revision: 209793

fix wrong push to community-testing

Added:
  python-cryptography/repos/testing-i686/
  python-cryptography/repos/testing-i686/PKGBUILD
(from rev 209792, python-cryptography/trunk/PKGBUILD)
  python-cryptography/repos/testing-x86_64/
  python-cryptography/repos/testing-x86_64/PKGBUILD
(from rev 209792, python-cryptography/trunk/PKGBUILD)
Deleted:
  python-cryptography/repos/community-testing-i686/
  python-cryptography/repos/community-testing-x86_64/

-+
 testing-i686/PKGBUILD   |   54 ++
 testing-x86_64/PKGBUILD |   54 ++
 2 files changed, 108 insertions(+)

Copied: python-cryptography/repos/testing-i686/PKGBUILD (from rev 209792, 
python-cryptography/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-04 10:44:32 UTC (rev 209793)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=0.3
+pkgrel=1
+pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
+arch=('i686' 'x86_64')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
+source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
+md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
+
+check() {
+   # Check python3 module
+   cd ${srcdir}/cryptography-${pkgver}
+   python3 setup.py test
+
+   # Check python2 module
+   cd ${srcdir}/cryptography-${pkgver}-python2
+   python2 setup.py test
+}
+ 
+prepare() {
+   cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   # Build python 3 module
+   cd cryptography-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../cryptography-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-cryptography() {
+   depends=('python' 'python-six' 'python-cffi')
+ 
+   cd cryptography-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}
+ 
+package_python2-cryptography() {
+   depends=('python2' 'python2-six' 'python2-cffi')
+ 
+   cd cryptography-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}

Copied: python-cryptography/repos/testing-x86_64/PKGBUILD (from rev 209792, 
python-cryptography/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-04-04 10:44:32 UTC (rev 209793)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=0.3
+pkgrel=1
+pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
+arch=('i686' 'x86_64')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
+source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
+md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
+
+check() {
+   # Check python3 module
+   cd ${srcdir}/cryptography-${pkgver}
+   python3 setup.py test
+
+   # Check python2 module
+   cd ${srcdir}/cryptography-${pkgver}-python2
+   python2 setup.py test
+}
+ 
+prepare() {
+   cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   # Build python 3 module
+   cd cryptography-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../cryptography-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-cryptography() {
+   depends=('python' 'python-six' 'python-cffi')
+ 
+   cd cryptography-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}
+ 
+package_python2-cryptography() {
+   depends=('python2' 'python2-six' 'python2-cffi')
+ 
+   cd cryptography-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}



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

2014-04-04 Thread Felix Yan
Date: Friday, April 4, 2014 @ 12:46:36
  Author: fyan
Revision: 209794

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

Added:
  python-cryptography/repos/testing-i686/PKGBUILD
(from rev 209793, python-cryptography/trunk/PKGBUILD)
  python-cryptography/repos/testing-x86_64/PKGBUILD
(from rev 209793, python-cryptography/trunk/PKGBUILD)
Deleted:
  python-cryptography/repos/testing-i686/PKGBUILD
  python-cryptography/repos/testing-x86_64/PKGBUILD

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-04-04 10:44:32 UTC (rev 209793)
+++ testing-i686/PKGBUILD   2014-04-04 10:46:36 UTC (rev 209794)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-
-pkgbase=python-cryptography
-pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=0.3
-pkgrel=1
-pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
-arch=('i686' 'x86_64')
-license=('Apache')
-url=http://pypi.python.org/pypi/cryptography;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
-checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
-  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
-source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
-md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
-
-check() {
-   # Check python3 module
-   cd ${srcdir}/cryptography-${pkgver}
-   python3 setup.py test
-
-   # Check python2 module
-   cd ${srcdir}/cryptography-${pkgver}-python2
-   python2 setup.py test
-}
- 
-prepare() {
-   cp -a cryptography-${pkgver}{,-python2}
-}
-
-build() {
-   # Build python 3 module
-   cd cryptography-${pkgver}
-   python3 setup.py build
- 
-   # Build python 2 module
-   cd ../cryptography-${pkgver}-python2
-   python2 setup.py build
-}
- 
-package_python-cryptography() {
-   depends=('python' 'python-six' 'python-cffi')
- 
-   cd cryptography-${pkgver}
-   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
-}
- 
-package_python2-cryptography() {
-   depends=('python2' 'python2-six' 'python2-cffi')
- 
-   cd cryptography-${pkgver}-python2
-   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
-}

Copied: python-cryptography/repos/testing-i686/PKGBUILD (from rev 209793, 
python-cryptography/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-04 10:46:36 UTC (rev 209794)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=0.3
+pkgrel=1
+pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
+arch=('i686' 'x86_64')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi')
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend')
+source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
+md5sums=('1a9f2520acfef9489ac42fdc9a7be441')
+
+check() {
+   # Check python3 module
+   cd ${srcdir}/cryptography-${pkgver}
+   python3 setup.py test
+
+   # Check python2 module
+   cd ${srcdir}/cryptography-${pkgver}-python2
+   python2 setup.py test
+}
+ 
+prepare() {
+   cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   # Build python 3 module
+   cd cryptography-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../cryptography-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-cryptography() {
+   depends=('python' 'python-six' 'python-cffi')
+ 
+   cd cryptography-${pkgver}
+   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}
+ 
+package_python2-cryptography() {
+   depends=('python2' 'python2-six' 'python2-cffi')
+ 
+   cd cryptography-${pkgver}-python2
+   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2014-04-04 10:44:32 UTC (rev 209793)
+++ testing-x86_64/PKGBUILD 2014-04-04 10:46:36 UTC (rev 209794)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-

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

2014-04-04 Thread Florian Pritz
Date: Friday, April 4, 2014 @ 13:52:07
  Author: bluewind
Revision: 108812

add sipcalc from aur

Added:
  sipcalc/
  sipcalc/repos/
  sipcalc/trunk/
  sipcalc/trunk/PKGBUILD

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

Added: sipcalc/trunk/PKGBUILD
===
--- sipcalc/trunk/PKGBUILD  (rev 0)
+++ sipcalc/trunk/PKGBUILD  2014-04-04 11:52:07 UTC (rev 108812)
@@ -0,0 +1,25 @@
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Mike Sampson mike at sambodata dot com
+# Contributor: Tomasz Cielecki tom...@ostebaronen.dk
+pkgname=sipcalc
+pkgver=1.1.6
+pkgrel=2
+pkgdesc=an advanced console based ip subnet calculator.
+arch=('i686' 'x86_64')
+url=http://www.routemeister.net/projects/sipcalc/;
+license=('BSD')
+depends=('glibc')
+source=(http://www.routemeister.net/projects/sipcalc/files/$pkgname-$pkgver.tar.gz)
+md5sums=('e431c64387f2c8d20e96ad1d7931a845')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+   install -m644 -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2014-04-04 Thread Florian Pritz
Date: Friday, April 4, 2014 @ 13:52:52
  Author: bluewind
Revision: 108813

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

Added:
  sipcalc/repos/community-i686/
  sipcalc/repos/community-i686/PKGBUILD
(from rev 108812, sipcalc/trunk/PKGBUILD)
  sipcalc/repos/community-x86_64/
  sipcalc/repos/community-x86_64/PKGBUILD
(from rev 108812, sipcalc/trunk/PKGBUILD)

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

Copied: sipcalc/repos/community-i686/PKGBUILD (from rev 108812, 
sipcalc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-04 11:52:52 UTC (rev 108813)
@@ -0,0 +1,25 @@
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Mike Sampson mike at sambodata dot com
+# Contributor: Tomasz Cielecki tom...@ostebaronen.dk
+pkgname=sipcalc
+pkgver=1.1.6
+pkgrel=2
+pkgdesc=an advanced console based ip subnet calculator.
+arch=('i686' 'x86_64')
+url=http://www.routemeister.net/projects/sipcalc/;
+license=('BSD')
+depends=('glibc')
+source=(http://www.routemeister.net/projects/sipcalc/files/$pkgname-$pkgver.tar.gz)
+md5sums=('e431c64387f2c8d20e96ad1d7931a845')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+   install -m644 -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: sipcalc/repos/community-x86_64/PKGBUILD (from rev 108812, 
sipcalc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-04 11:52:52 UTC (rev 108813)
@@ -0,0 +1,25 @@
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: Mike Sampson mike at sambodata dot com
+# Contributor: Tomasz Cielecki tom...@ostebaronen.dk
+pkgname=sipcalc
+pkgver=1.1.6
+pkgrel=2
+pkgdesc=an advanced console based ip subnet calculator.
+arch=('i686' 'x86_64')
+url=http://www.routemeister.net/projects/sipcalc/;
+license=('BSD')
+depends=('glibc')
+source=(http://www.routemeister.net/projects/sipcalc/files/$pkgname-$pkgver.tar.gz)
+md5sums=('e431c64387f2c8d20e96ad1d7931a845')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+   install -m644 -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2014-04-04 Thread Massimiliano Torromeo
Date: Friday, April 4, 2014 @ 14:13:30
  Author: mtorromeo
Revision: 108814

upgpkg: jemalloc 3.6.0-1

Updated to 3.6.0

Modified:
  jemalloc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 11:52:52 UTC (rev 108813)
+++ PKGBUILD2014-04-04 12:13:30 UTC (rev 108814)
@@ -3,7 +3,7 @@
 # Contributor: Kovivchak Evgen oneonf...@gmail.com
 
 pkgname=jemalloc
-pkgver=3.5.1
+pkgver=3.6.0
 pkgrel=1
 pkgdesc=General-purpose scalable concurrent malloc implementation
 arch=('i686' 'x86_64')
@@ -30,4 +30,4 @@
install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
 
-sha256sums=('1a09f2570167ebc5fba4ddcc09176575d8acbb77017faf27797b9ab7f38f349f')
+sha256sums=('e16c2159dd3c81ca2dc3b5c9ef0d43e1f2f45b04548f42db12e7c12d7bdf84fe')



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

2014-04-04 Thread Massimiliano Torromeo
Date: Friday, April 4, 2014 @ 14:17:16
  Author: mtorromeo
Revision: 108815

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-04 12:13:30 UTC (rev 108814)
+++ community-i686/PKGBUILD 2014-04-04 12:17:16 UTC (rev 108815)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Kovivchak Evgen oneonf...@gmail.com
-
-pkgname=jemalloc
-pkgver=3.5.1
-pkgrel=1
-pkgdesc=General-purpose scalable concurrent malloc implementation
-arch=('i686' 'x86_64')
-license=('BSD')
-url=http://www.canonware.com/jemalloc/;
-depends=('glibc')
-makedepends=('autoconf' 'make' 'bash')
-optdepends=(
-   'perl: memory profiler'
-)
-source=(http://www.canonware.com/download/jemalloc/$pkgname-$pkgver.tar.bz2)
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   CFLAGS=$CFLAGS -std=gnu11 ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-   mv $pkgdir/usr/bin/{,jemalloc-}pprof
-   chmod 644 $pkgdir/usr/lib/*.a
-   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-sha256sums=('1a09f2570167ebc5fba4ddcc09176575d8acbb77017faf27797b9ab7f38f349f')

Copied: jemalloc/repos/community-i686/PKGBUILD (from rev 108814, 
jemalloc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-04 12:17:16 UTC (rev 108815)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Kovivchak Evgen oneonf...@gmail.com
+
+pkgname=jemalloc
+pkgver=3.6.0
+pkgrel=1
+pkgdesc=General-purpose scalable concurrent malloc implementation
+arch=('i686' 'x86_64')
+license=('BSD')
+url=http://www.canonware.com/jemalloc/;
+depends=('glibc')
+makedepends=('autoconf' 'make' 'bash')
+optdepends=(
+   'perl: memory profiler'
+)
+source=(http://www.canonware.com/download/jemalloc/$pkgname-$pkgver.tar.bz2)
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   CFLAGS=$CFLAGS -std=gnu11 ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+   mv $pkgdir/usr/bin/{,jemalloc-}pprof
+   chmod 644 $pkgdir/usr/lib/*.a
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+sha256sums=('e16c2159dd3c81ca2dc3b5c9ef0d43e1f2f45b04548f42db12e7c12d7bdf84fe')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-04 12:13:30 UTC (rev 108814)
+++ community-x86_64/PKGBUILD   2014-04-04 12:17:16 UTC (rev 108815)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Kovivchak Evgen oneonf...@gmail.com
-
-pkgname=jemalloc
-pkgver=3.5.1
-pkgrel=1
-pkgdesc=General-purpose scalable concurrent malloc implementation
-arch=('i686' 'x86_64')
-license=('BSD')
-url=http://www.canonware.com/jemalloc/;
-depends=('glibc')
-makedepends=('autoconf' 'make' 'bash')
-optdepends=(
-   'perl: memory profiler'
-)
-source=(http://www.canonware.com/download/jemalloc/$pkgname-$pkgver.tar.bz2)
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   CFLAGS=$CFLAGS -std=gnu11 ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-   mv $pkgdir/usr/bin/{,jemalloc-}pprof
-   chmod 644 $pkgdir/usr/lib/*.a
-   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-sha256sums=('1a09f2570167ebc5fba4ddcc09176575d8acbb77017faf27797b9ab7f38f349f')

Copied: jemalloc/repos/community-x86_64/PKGBUILD (from rev 108814, 
jemalloc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-04 12:17:16 UTC (rev 108815)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Kovivchak Evgen oneonf...@gmail.com
+
+pkgname=jemalloc
+pkgver=3.6.0
+pkgrel=1
+pkgdesc=General-purpose scalable concurrent malloc implementation
+arch=('i686' 'x86_64')

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

2014-04-04 Thread Massimiliano Torromeo
Date: Friday, April 4, 2014 @ 14:20:07
  Author: mtorromeo
Revision: 108816

upgpkg: lessc 1.7.0-1

Updated to 1.7.0

Modified:
  lessc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 12:17:16 UTC (rev 108815)
+++ PKGBUILD2014-04-04 12:20:07 UTC (rev 108816)
@@ -2,7 +2,7 @@
 # Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
 
 pkgname=lessc
-pkgver=1.6.2
+pkgver=1.7.0
 pkgrel=1
 pkgdesc=A standalone compiler for the LESS CSS language.
 arch=('any')
@@ -15,4 +15,4 @@
 npm install -g --user root --prefix $pkgdir/usr 
$srcdir/less-$pkgver.tgz
 }
 
-sha256sums=('804e6b9f35c517c27d00b24f95ccea6e73b1a1bd57f9ebc3f24cd4d2cfc0857d')
+sha256sums=('3456ecd2b19ac84c9dd877b3d09b80bff7e11bd6b4fe89889e1d3d3ef312ba71')



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

2014-04-04 Thread Massimiliano Torromeo
Date: Friday, April 4, 2014 @ 14:22:04
  Author: mtorromeo
Revision: 108817

archrelease: copy trunk to community-any

Added:
  lessc/repos/community-any/PKGBUILD
(from rev 108816, lessc/trunk/PKGBUILD)
Deleted:
  lessc/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-04 12:20:07 UTC (rev 108816)
+++ PKGBUILD2014-04-04 12:22:04 UTC (rev 108817)
@@ -1,18 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=lessc
-pkgver=1.6.2
-pkgrel=1
-pkgdesc=A standalone compiler for the LESS CSS language.
-arch=('any')
-url=http://lesscss.org/;
-license=('Apache')
-depends=('nodejs')
-source=(https://registry.npmjs.org/less/-/less-$pkgver.tgz;)
-
-package() {
-npm install -g --user root --prefix $pkgdir/usr 
$srcdir/less-$pkgver.tgz
-}
-
-sha256sums=('804e6b9f35c517c27d00b24f95ccea6e73b1a1bd57f9ebc3f24cd4d2cfc0857d')

Copied: lessc/repos/community-any/PKGBUILD (from rev 108816, 
lessc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-04 12:22:04 UTC (rev 108817)
@@ -0,0 +1,18 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=lessc
+pkgver=1.7.0
+pkgrel=1
+pkgdesc=A standalone compiler for the LESS CSS language.
+arch=('any')
+url=http://lesscss.org/;
+license=('Apache')
+depends=('nodejs')
+source=(https://registry.npmjs.org/less/-/less-$pkgver.tgz;)
+
+package() {
+npm install -g --user root --prefix $pkgdir/usr 
$srcdir/less-$pkgver.tgz
+}
+
+sha256sums=('3456ecd2b19ac84c9dd877b3d09b80bff7e11bd6b4fe89889e1d3d3ef312ba71')



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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 14:54:58
  Author: andyrtr
Revision: 209795

upgpkg: linux-lts 3.10.36-1

upstream update 3.10.36

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 10:46:36 UTC (rev 209794)
+++ PKGBUILD2014-04-04 12:54:58 UTC (rev 209795)
@@ -5,7 +5,7 @@
 pkgbase=linux-lts   # Build stock -lts kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.10
-pkgver=3.10.35
+pkgver=3.10.36
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -21,7 +21,7 @@
 'change-default-console-loglevel.patch'
 'criu-no-expert.patch')
 md5sums=('4f25cd5bec5f8d5a7d935b3f2ccb8481'
- '1f9d5b92cdb65c4eb5ad2d9e84f160ae'
+ '19dad5e1e0797edd7278c933bd84ad78'
  '45368ef5c1d03d375c31dcecabc5f0dd'
  'bf297cf1c74b06552b1013a09a27692f'
  '232b52576a62c7a333e9fe7a1e1ca359'



[arch-commits] Commit in (4 files)

2014-04-04 Thread Andrea Scarpino
Date: Friday, April 4, 2014 @ 14:55:59
  Author: andrea
Revision: 209797

Add kdevelop-python2

Added:
  kdevelop-python2/
  kdevelop-python2/repos/
  kdevelop-python2/trunk/
  kdevelop-python2/trunk/PKGBUILD

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

Added: kdevelop-python2/trunk/PKGBUILD
===
--- kdevelop-python2/trunk/PKGBUILD (rev 0)
+++ kdevelop-python2/trunk/PKGBUILD 2014-04-04 12:55:59 UTC (rev 209797)
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 208352 2014-03-22 17:47:04Z andrea $
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdevelop-python2
+pkgver=1.6.0
+_pkgver=4.6.0
+pkgrel=1
+pkgdesc=Python 2 language and documentation plugin for KDevelop
+arch=('i686' 'x86_64')
+url=http://www.kdevelop.org/;
+license=('GPL')
+depends=('kdevelop' 'python2')
+makedepends=('cmake' 'automoc4' 'kdevelop-pg-qt')
+source=(http://download.kde.org/stable/kdevelop/${_pkgver}/src/kdev-python-${pkgver}.tar.xz;)
+sha1sums=('88618dbd3a80d5193f49f6c61a6ad02a5e9c0652')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kdev-python-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 14:55:28
  Author: andyrtr
Revision: 209796

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 209795, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 209795, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 209795, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 209795, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/criu-no-expert.patch
(from rev 209795, linux-lts/trunk/criu-no-expert.patch)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 209795, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 209795, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 209795, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 209795, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 209795, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 209795, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/criu-no-expert.patch
(from rev 209795, linux-lts/trunk/criu-no-expert.patch)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 209795, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 209795, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/PKGBUILD|  334 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 6320 +
 testing-i686/config.x86_64   | 6121 
 testing-i686/criu-no-expert.patch|   22 
 testing-i686/linux-lts.install   |   31 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/PKGBUILD  |  334 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 6320 +
 testing-x86_64/config.x86_64 | 6121 
 testing-x86_64/criu-no-expert.patch  |   22 
 testing-x86_64/linux-lts.install |   31 
 testing-x86_64/linux-lts.preset  |   14 
 14 files changed, 25708 insertions(+)

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


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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 15:03:02
  Author: andyrtr
Revision: 209798

upgpkg: cups-filters 1.0.51-1

upstream update 1.0.51

Modified:
  cups-filters/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 12:55:59 UTC (rev 209797)
+++ PKGBUILD2014-04-04 13:03:02 UTC (rev 209798)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=cups-filters
-pkgver=1.0.50
+pkgver=1.0.51
 pkgrel=1
 pkgdesc=OpenPrinting CUPS Filters
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 provides=('foomatic-filters')
 replaces=('foomatic-filters')
 conflicts=('foomatic-filters')
-md5sums=('b5f15a12bf2f55382be29bb2c99d1b9f')
+md5sums=('9e416d67aaa576b1e885d3b54aa29ef0')
 
 build() {
   cd $pkgname-$pkgver



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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 15:03:16
  Author: andyrtr
Revision: 209799

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

Added:
  cups-filters/repos/extra-i686/PKGBUILD
(from rev 209798, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/extra-x86_64/PKGBUILD
(from rev 209798, cups-filters/trunk/PKGBUILD)
Deleted:
  cups-filters/repos/extra-i686/PKGBUILD
  cups-filters/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-04 13:03:02 UTC (rev 209798)
+++ extra-i686/PKGBUILD 2014-04-04 13:03:16 UTC (rev 209799)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgname=cups-filters
-pkgver=1.0.50
-pkgrel=1
-pkgdesc=OpenPrinting CUPS Filters
-arch=('i686' 'x86_64')
-url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
-license=('GPL')
-depends=('lcms2' 'poppler' 'qpdf')
-makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
-optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
-   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
-   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
-   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
-backup=(etc/fonts/conf.d/99pdftoopvp.conf
-etc/cups/cups-browsed.conf)
-source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.gz)
-provides=('foomatic-filters')
-replaces=('foomatic-filters')
-conflicts=('foomatic-filters')
-md5sums=('b5f15a12bf2f55382be29bb2c99d1b9f')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr  \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---with-rcdir=no \
---enable-avahi \
---with-browseremoteprotocols=DNSSD,CUPS \
---with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-  
-  # add upstream systemd support file
-  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  sed -i s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed| 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  
-  # use lp group from cups pkg FS#36769
-  chgrp -R lp ${pkgdir}/etc/cups
-}

Copied: cups-filters/repos/extra-i686/PKGBUILD (from rev 209798, 
cups-filters/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-04 13:03:16 UTC (rev 209799)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=cups-filters
+pkgver=1.0.51
+pkgrel=1
+pkgdesc=OpenPrinting CUPS Filters
+arch=('i686' 'x86_64')
+url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
+license=('GPL')
+depends=('lcms2' 'poppler' 'qpdf')
+makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.gz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('9e416d67aaa576b1e885d3b54aa29ef0')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed| 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  
+  # use lp group from cups pkg FS#36769
+  chgrp -R lp ${pkgdir}/etc/cups
+}

Deleted: 

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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 15:05:53
  Author: andyrtr
Revision: 209801

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

Added:
  xorg-xauth/repos/extra-i686/PKGBUILD
(from rev 209800, xorg-xauth/trunk/PKGBUILD)
  xorg-xauth/repos/extra-x86_64/PKGBUILD
(from rev 209800, xorg-xauth/trunk/PKGBUILD)
Deleted:
  xorg-xauth/repos/extra-i686/PKGBUILD
  xorg-xauth/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-04 13:05:40 UTC (rev 209800)
+++ extra-i686/PKGBUILD 2014-04-04 13:05:53 UTC (rev 209801)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xorg-xauth
-pkgver=1.0.8
-pkgrel=1
-pkgdesc=X.Org authorization settings program
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('libxmu')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(${url}/releases/individual/app/xauth-${pkgver}.tar.bz2)
-sha256sums=('a8696ae7a50c699d5fb3a41408b60d98843d19ea46e9f09e391cb98c8f7fd4f7')
-
-build() {
-  cd ${srcdir}/xauth-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/xauth-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xorg-xauth/repos/extra-i686/PKGBUILD (from rev 209800, 
xorg-xauth/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-04 13:05:53 UTC (rev 209801)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xorg-xauth
+pkgver=1.0.9
+pkgrel=1
+pkgdesc=X.Org authorization settings program
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('libxmu')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(${url}/releases/individual/app/xauth-${pkgver}.tar.bz2)
+sha256sums=('56ce1523eb48b1f8a4f4244fe1c3d8e6af1a3b7d4b0e6063582421b0b68dc28f')
+
+build() {
+  cd xauth-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xauth-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-04 13:05:40 UTC (rev 209800)
+++ extra-x86_64/PKGBUILD   2014-04-04 13:05:53 UTC (rev 209801)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xorg-xauth
-pkgver=1.0.8
-pkgrel=1
-pkgdesc=X.Org authorization settings program
-arch=(i686 x86_64)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-depends=('libxmu')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(${url}/releases/individual/app/xauth-${pkgver}.tar.bz2)
-sha256sums=('a8696ae7a50c699d5fb3a41408b60d98843d19ea46e9f09e391cb98c8f7fd4f7')
-
-build() {
-  cd ${srcdir}/xauth-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/xauth-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xorg-xauth/repos/extra-x86_64/PKGBUILD (from rev 209800, 
xorg-xauth/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-04-04 13:05:53 UTC (rev 209801)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xorg-xauth
+pkgver=1.0.9
+pkgrel=1
+pkgdesc=X.Org authorization settings program
+arch=(i686 x86_64)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+depends=('libxmu')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(${url}/releases/individual/app/xauth-${pkgver}.tar.bz2)
+sha256sums=('56ce1523eb48b1f8a4f4244fe1c3d8e6af1a3b7d4b0e6063582421b0b68dc28f')
+
+build() {
+  cd xauth-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xauth-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}



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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 15:05:40
  Author: andyrtr
Revision: 209800

upgpkg: xorg-xauth 1.0.9-1

upstream update 1.0.9

Modified:
  xorg-xauth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 13:03:16 UTC (rev 209799)
+++ PKGBUILD2014-04-04 13:05:40 UTC (rev 209800)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xorg-xauth
-pkgver=1.0.8
+pkgver=1.0.9
 pkgrel=1
 pkgdesc=X.Org authorization settings program
 arch=(i686 x86_64)
@@ -13,16 +13,16 @@
 makedepends=('xorg-util-macros')
 groups=('xorg-apps' 'xorg')
 source=(${url}/releases/individual/app/xauth-${pkgver}.tar.bz2)
-sha256sums=('a8696ae7a50c699d5fb3a41408b60d98843d19ea46e9f09e391cb98c8f7fd4f7')
+sha256sums=('56ce1523eb48b1f8a4f4244fe1c3d8e6af1a3b7d4b0e6063582421b0b68dc28f')
 
 build() {
-  cd ${srcdir}/xauth-${pkgver}
+  cd xauth-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd ${srcdir}/xauth-${pkgver}
+  cd xauth-${pkgver}
   make DESTDIR=${pkgdir} install
   install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
   install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/



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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 15:10:07
  Author: andyrtr
Revision: 209802

upgpkg: bluez 5.17-1

upstream update 5.17

Modified:
  bluez/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 13:05:53 UTC (rev 209801)
+++ PKGBUILD2014-04-04 13:10:07 UTC (rev 209802)
@@ -5,7 +5,7 @@
 
 pkgbase=bluez
 pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
-pkgver=5.16
+pkgver=5.17
 pkgrel=1
 url=http://www.bluez.org/;
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
 bluetooth.modprobe)
 # see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
-sha256sums=('c8d5094a21a799dca9cdcd99651dc19d521af514b22b8178fc787c454cdbb163'
+sha256sums=('0bd7f009225fff83ba4b3697a6b04d04454ef2cd15d6bb2bd62591c44cfe973a'
 '896a1403d9b7258c4fb0d41f3a6f70fd51eaa1115ab3f4259f3dbbe02b55766b'
 '46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
 



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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 15:10:29
  Author: andyrtr
Revision: 209803

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

Added:
  
bluez/repos/extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 209802, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/extra-i686/PKGBUILD
(from rev 209802, bluez/trunk/PKGBUILD)
  bluez/repos/extra-i686/bluetooth.modprobe
(from rev 209802, bluez/trunk/bluetooth.modprobe)
  
bluez/repos/extra-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
(from rev 209802, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
  bluez/repos/extra-x86_64/PKGBUILD
(from rev 209802, bluez/trunk/PKGBUILD)
  bluez/repos/extra-x86_64/bluetooth.modprobe
(from rev 209802, bluez/trunk/bluetooth.modprobe)
Deleted:
  
bluez/repos/extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
  bluez/repos/extra-i686/PKGBUILD
  bluez/repos/extra-i686/bluetooth.modprobe
  
bluez/repos/extra-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
  bluez/repos/extra-x86_64/PKGBUILD
  bluez/repos/extra-x86_64/bluetooth.modprobe

---+
 /0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
|  118 
 /PKGBUILD 
|  288 ++
 /bluetooth.modprobe   
|6 
 extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch   
|   59 --
 extra-i686/PKGBUILD   
|  144 -
 extra-i686/bluetooth.modprobe 
|3 
 extra-x86_64/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
|   59 --
 extra-x86_64/PKGBUILD 
|  144 -
 extra-x86_64/bluetooth.modprobe   
|3 
 9 files changed, 412 insertions(+), 412 deletions(-)

Deleted: 
extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
===
--- extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
2014-04-04 13:10:07 UTC (rev 209802)
+++ extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
2014-04-04 13:10:29 UTC (rev 209803)
@@ -1,59 +0,0 @@
-From 3027cb7141fb65cf3eeda69c688db8c4045e2d3f Mon Sep 17 00:00:00 2001
-From: Giovanni Campagna gcampagna-cnudlrotfmnnlxjtenl...@public.gmane.org
-Date: Sat, 12 Oct 2013 17:45:25 +0200
-Subject: [PATCH] Allow using obexd without systemd in the user session
-
-Not all sessions run systemd --user (actually, the majority
-doesn't), so the dbus daemon must be able to spawn obexd
-directly, and to do so it needs the full path of the daemon.

- Makefile.obexd  | 4 ++--
- obexd/src/org.bluez.obex.service| 4 
- obexd/src/org.bluez.obex.service.in | 4 
- 3 files changed, 6 insertions(+), 6 deletions(-)
- delete mode 100644 obexd/src/org.bluez.obex.service
- create mode 100644 obexd/src/org.bluez.obex.service.in
-
-diff --git a/Makefile.obexd b/Makefile.obexd
-index 3760867..142e7c3 100644
 a/Makefile.obexd
-+++ b/Makefile.obexd
-@@ -2,12 +2,12 @@
- if SYSTEMD
- systemduserunitdir = @SYSTEMD_USERUNITDIR@
- systemduserunit_DATA = obexd/src/obex.service
-+endif
- 
- dbussessionbusdir = @DBUS_SESSIONBUSDIR@
- dbussessionbus_DATA = obexd/src/org.bluez.obex.service
--endif
- 
--EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service
-+EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service.in
- 
- obex_plugindir = $(libdir)/obex/plugins
- 
-diff --git a/obexd/src/org.bluez.obex.service 
b/obexd/src/org.bluez.obex.service
-deleted file mode 100644
-index a538088..000
 a/obexd/src/org.bluez.obex.service
-+++ /dev/null
-@@ -1,4 +0,0 @@
--[D-BUS Service]
--Name=org.bluez.obex
--Exec=/bin/false
--SystemdService=dbus-org.bluez.obex.service
-diff --git a/obexd/src/org.bluez.obex.service.in 
b/obexd/src/org.bluez.obex.service.in
-new file mode 100644
-index 000..9c815f2
 /dev/null
-+++ b/obexd/src/org.bluez.obex.service.in
-@@ -0,0 +1,4 @@
-+[D-BUS Service]
-+Name=org.bluez.obex
-+Exec=@libexecdir@/obexd
-+SystemdService=dbus-org.bluez.obex.service
--- 
-1.8.3.1
-
-

Copied: 
bluez/repos/extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
 (from rev 209802, 
bluez/trunk/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch)
===
--- extra-i686/0001-Allow-using-obexd-without-systemd-in-the-user-session.patch 
(rev 0)
+++ 

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

2014-04-04 Thread Dave Reisner
Date: Friday, April 4, 2014 @ 15:14:06
  Author: dreisner
Revision: 209804

upgpkg: util-linux 2.24.1-6

- backport fix for switch_root failure in devno comparison (FS#39734)

Added:
  util-linux/trunk/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch
Modified:
  util-linux/trunk/PKGBUILD

-+
 0001-switch_root-verify-initramfs-by-f_type-not-devno.patch |   59 ++
 PKGBUILD|5 
 2 files changed, 63 insertions(+), 1 deletion(-)

Added: 0001-switch_root-verify-initramfs-by-f_type-not-devno.patch
===
--- 0001-switch_root-verify-initramfs-by-f_type-not-devno.patch 
(rev 0)
+++ 0001-switch_root-verify-initramfs-by-f_type-not-devno.patch 2014-04-04 
13:14:06 UTC (rev 209804)
@@ -0,0 +1,59 @@
+From 751c39383adaf5ff5a860516238d524b0e20f835 Mon Sep 17 00:00:00 2001
+From: Dave Reisner dreis...@archlinux.org
+Date: Wed, 2 Apr 2014 10:41:30 -0400
+Subject: [PATCH] switch_root: verify initramfs by f_type, not devno
+
+As of linux 3.14, the initramfs device will have both major and
+minor 0, causing our paranoia check to fail. Make this version agnostic
+by checking the filesystem type, rather than a device number.
+
+[adopted from master for backport into 2.24.x branch]
+
+Signed-off-by: Dave Reisner dreis...@archlinux.org
+---
+ sys-utils/switch_root.c | 15 +--
+ 1 file changed, 9 insertions(+), 6 deletions(-)
+
+diff --git a/sys-utils/switch_root.c b/sys-utils/switch_root.c
+index f26f7da..40e222d 100644
+--- a/sys-utils/switch_root.c
 b/sys-utils/switch_root.c
+@@ -23,6 +23,7 @@
+ #include sys/mount.h
+ #include sys/types.h
+ #include sys/stat.h
++#include sys/statfs.h
+ #include sys/param.h
+ #include fcntl.h
+ #include stdio.h
+@@ -33,6 +34,8 @@
+ #include ctype.h
+ #include dirent.h
+ 
++#include linux/magic.h
++
+ #include c.h
+ #include nls.h
+ #include closestream.h
+@@ -174,12 +177,12 @@ static int switchroot(const char *newroot)
+   if (cfd = 0) {
+   pid = fork();
+   if (pid = 0) {
+-  if (fstat(cfd, sb) == 0) {
+-  if (sb.st_dev == makedev(0, 1))
+-  recursiveRemove(cfd);
+-  else
+-  warn(_(old root filesystem is not an 
initramfs));
+-  }
++  struct statfs stfs;
++  if (fstatfs(cfd, stfs) == 0 
++  (stfs.f_type == RAMFS_MAGIC || stfs.f_type == 
TMPFS_MAGIC))
++  recursiveRemove(cfd);
++  else
++  warn(_(old root filesystem is not an 
initramfs));
+ 
+   if (pid == 0)
+   exit(EXIT_SUCCESS);
+-- 
+1.9.1
+

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 13:10:29 UTC (rev 209803)
+++ PKGBUILD2014-04-04 13:14:06 UTC (rev 209804)
@@ -6,7 +6,7 @@
 pkgbase=util-linux
 pkgname=(util-linux libutil-linux)
 pkgver=2.24.1
-pkgrel=5
+pkgrel=6
 pkgdesc=Miscellaneous system utilities for Linux
 url=http://www.kernel.org/pub/linux/utils/util-linux/;
 arch=('i686' 'x86_64')
@@ -21,6 +21,7 @@
 pam-common
 pam-su
 move_is_mountinfo.patch
+0001-switch_root-verify-initramfs-by-f_type-not-devno.patch
 0001-libmount-FS-id-and-parent-ID-could-be-zero.patch)
 md5sums=('88d46ae23ca599ac5af9cf96b531590f'
  'a39554bfd65cccfd8254bb46922f4a67'
@@ -28,6 +29,7 @@
  'a31374fef2cba0ca34dfc7078e2969e4'
  'fa85e5cce5d723275b14365ba71a8aad'
  '4cdc5f9a6e51b032274761a82937d438'
+ 'b7ca79a0d5318b7cd813bb2573a3f9a9'
  '2f4bc305bd11d6bfaa81e6c1eb0c6f1b')
 
 prepare() {
@@ -35,6 +37,7 @@
 
   patch -p1 -i ${srcdir}/move_is_mountinfo.patch
   patch -p1 -i 
${srcdir}/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch
+  patch -p1 -i 
${srcdir}/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch
 }
 
 build() {



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

2014-04-04 Thread Dave Reisner
Date: Friday, April 4, 2014 @ 15:15:04
  Author: dreisner
Revision: 209805

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

Added:
  
util-linux/repos/testing-i686/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch
(from rev 209804, 
util-linux/trunk/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch)
  
util-linux/repos/testing-i686/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch
(from rev 209804, 
util-linux/trunk/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch)
  util-linux/repos/testing-i686/PKGBUILD
(from rev 209804, util-linux/trunk/PKGBUILD)
  util-linux/repos/testing-i686/move_is_mountinfo.patch
(from rev 209804, util-linux/trunk/move_is_mountinfo.patch)
  util-linux/repos/testing-i686/pam-common
(from rev 209804, util-linux/trunk/pam-common)
  util-linux/repos/testing-i686/pam-login
(from rev 209804, util-linux/trunk/pam-login)
  util-linux/repos/testing-i686/pam-su
(from rev 209804, util-linux/trunk/pam-su)
  util-linux/repos/testing-i686/util-linux.install
(from rev 209804, util-linux/trunk/util-linux.install)
  util-linux/repos/testing-i686/uuidd.tmpfiles
(from rev 209804, util-linux/trunk/uuidd.tmpfiles)
  
util-linux/repos/testing-x86_64/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch
(from rev 209804, 
util-linux/trunk/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch)
  
util-linux/repos/testing-x86_64/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch
(from rev 209804, 
util-linux/trunk/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch)
  util-linux/repos/testing-x86_64/PKGBUILD
(from rev 209804, util-linux/trunk/PKGBUILD)
  util-linux/repos/testing-x86_64/move_is_mountinfo.patch
(from rev 209804, util-linux/trunk/move_is_mountinfo.patch)
  util-linux/repos/testing-x86_64/pam-common
(from rev 209804, util-linux/trunk/pam-common)
  util-linux/repos/testing-x86_64/pam-login
(from rev 209804, util-linux/trunk/pam-login)
  util-linux/repos/testing-x86_64/pam-su
(from rev 209804, util-linux/trunk/pam-su)
  util-linux/repos/testing-x86_64/util-linux.install
(from rev 209804, util-linux/trunk/util-linux.install)
  util-linux/repos/testing-x86_64/uuidd.tmpfiles
(from rev 209804, util-linux/trunk/uuidd.tmpfiles)
Deleted:
  
util-linux/repos/testing-i686/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch
  util-linux/repos/testing-i686/PKGBUILD
  util-linux/repos/testing-i686/move_is_mountinfo.patch
  util-linux/repos/testing-i686/pam-common
  util-linux/repos/testing-i686/pam-login
  util-linux/repos/testing-i686/pam-su
  util-linux/repos/testing-i686/util-linux.install
  util-linux/repos/testing-i686/uuidd.tmpfiles
  
util-linux/repos/testing-x86_64/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch
  util-linux/repos/testing-x86_64/PKGBUILD
  util-linux/repos/testing-x86_64/move_is_mountinfo.patch
  util-linux/repos/testing-x86_64/pam-common
  util-linux/repos/testing-x86_64/pam-login
  util-linux/repos/testing-x86_64/pam-su
  util-linux/repos/testing-x86_64/util-linux.install
  util-linux/repos/testing-x86_64/uuidd.tmpfiles

+
 /0001-libmount-FS-id-and-parent-ID-could-be-zero.patch |  
196 
 /PKGBUILD  |  
236 ++
 /move_is_mountinfo.patch   |   
92 +++
 /pam-common|   
12 
 /pam-login |   
14 
 /pam-su|   
18 
 /util-linux.install|   
42 +
 /uuidd.tmpfiles|   
 2 
 testing-i686/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch |   
98 
 testing-i686/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch   |   
59 ++
 testing-i686/PKGBUILD  |  
115 
 testing-i686/move_is_mountinfo.patch   |   
46 -
 testing-i686/pam-common|   
 6 
 testing-i686/pam-login |   
 7 
 testing-i686/pam-su|   
 9 
 testing-i686/util-linux.install|   
21 
 testing-i686/uuidd.tmpfiles|   
 1 
 testing-x86_64/0001-libmount-FS-id-and-parent-ID-could-be-zero.patch   |   
98 
 testing-x86_64/0001-switch_root-verify-initramfs-by-f_type-not-devno.patch |   
59 ++
 testing-x86_64/PKGBUILD|  
115 
 

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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 18:04:49
  Author: anatolik
Revision: 209806

upgpkg: readline 6.3.003-2

Rebuild the package to avoid 'unknown symbol: UP' problem.

Modified:
  readline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 13:15:04 UTC (rev 209805)
+++ PKGBUILD2014-04-04 16:04:49 UTC (rev 209806)
@@ -7,7 +7,7 @@
 _basever=6.3
 _patchlevel=003
 pkgver=$_basever.$_patchlevel
-pkgrel=1
+pkgrel=2
 pkgdesc='GNU readline library'
 arch=('i686' 'x86_64')
 url='http://tiswww.case.edu/php/chet/readline/rltop.html'



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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 18:05:30
  Author: anatolik
Revision: 209807

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

Added:
  readline/repos/testing-i686/
  readline/repos/testing-i686/PKGBUILD
(from rev 209806, readline/trunk/PKGBUILD)
  readline/repos/testing-i686/inputrc
(from rev 209806, readline/trunk/inputrc)
  readline/repos/testing-i686/readline.install
(from rev 209806, readline/trunk/readline.install)
  readline/repos/testing-x86_64/
  readline/repos/testing-x86_64/PKGBUILD
(from rev 209806, readline/trunk/PKGBUILD)
  readline/repos/testing-x86_64/inputrc
(from rev 209806, readline/trunk/inputrc)
  readline/repos/testing-x86_64/readline.install
(from rev 209806, readline/trunk/readline.install)

-+
 testing-i686/PKGBUILD   |   62 ++
 testing-i686/inputrc|   36 ++
 testing-i686/readline.install   |   17 ++
 testing-x86_64/PKGBUILD |   62 ++
 testing-x86_64/inputrc  |   36 ++
 testing-x86_64/readline.install |   17 ++
 6 files changed, 230 insertions(+)

Copied: readline/repos/testing-i686/PKGBUILD (from rev 209806, 
readline/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-04 16:05:30 UTC (rev 209807)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=readline
+_basever=6.3
+_patchlevel=003
+pkgver=$_basever.$_patchlevel
+pkgrel=2
+pkgdesc='GNU readline library'
+arch=('i686' 'x86_64')
+url='http://tiswww.case.edu/php/chet/readline/rltop.html'
+license=('GPL')
+depends=('glibc' 'ncurses')
+backup=('etc/inputrc')
+options=('!emptydirs')
+install=readline.install
+source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz{,.sig}
+inputrc)
+
+if [[ $_patchlevel -gt 0 ]]; then
+for (( _p=1; _p = $((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//.}-$(printf
 %03d $_p){,.sig})
+done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+  for (( _p=1; _p = $((10#${_patchlevel})); _p++ )); do
+msg applying patch readline${_basever//.}-$(printf %03d $_p)
+patch -p0 -i ../readline${_basever//.}-$(printf %03d $_p)
+  done
+
+  # remove RPATH from shared objects (FS#14366)
+  sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  # build with -fPIC for x86_64 (FS#15634)
+  [[ $CARCH == x86_64 ]]  CFLAGS=$CFLAGS -fPIC
+
+  ./configure --prefix=/usr
+  make SHLIB_LIBS=-lncurses
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR=$pkgdir install
+  install -Dm644 inputrc $pkgdir/etc/inputrc
+}
+
+md5sums=('33c8fb279e981274f485fd91da77e94a'
+ 'SKIP'
+ '58d54966c1191db45973cb3191ac621a'
+ '4343f5ea9b0f42447f102fb61576b398'
+ 'SKIP'
+ '700295212f7e2978577feaee584afddb'
+ 'SKIP'
+ 'af4963862f5156fbf9111c2c6fa86ed7'
+ 'SKIP')

Copied: readline/repos/testing-i686/inputrc (from rev 209806, 
readline/trunk/inputrc)
===
--- testing-i686/inputrc(rev 0)
+++ testing-i686/inputrc2014-04-04 16:05:30 UTC (rev 209807)
@@ -0,0 +1,36 @@
+# do not bell on tab-completion
+#set bell-style none
+
+set meta-flag on
+set input-meta on
+set convert-meta off
+set output-meta on
+
+$if mode=emacs
+
+# for linux console and RH/Debian xterm
+\e[1~: beginning-of-line
+\e[4~: end-of-line
+\e[5~: beginning-of-history
+\e[6~: end-of-history
+\e[7~: beginning-of-line
+\e[3~: delete-char
+\e[2~: quoted-insert
+\e[5C: forward-word
+\e[5D: backward-word
+\e\e[C: forward-word
+\e\e[D: backward-word
+\e[1;5C: forward-word
+\e[1;5D: backward-word
+
+# for rxvt
+\e[8~: end-of-line
+
+# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
+\eOH: beginning-of-line
+\eOF: end-of-line
+
+# for freebsd console
+\e[H: beginning-of-line
+\e[F: end-of-line
+$endif

Copied: readline/repos/testing-i686/readline.install (from rev 209806, 
readline/trunk/readline.install)
===
--- testing-i686/readline.install   (rev 0)
+++ testing-i686/readline.install   2014-04-04 16:05:30 UTC (rev 209807)
@@ -0,0 +1,17 @@
+infodir=usr/share/info
+filelist=(history.info readline.info rluserman.info)
+
+post_upgrade() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in 

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

2014-04-04 Thread speps
Date: Friday, April 4, 2014 @ 18:07:28
  Author: speps
Revision: 108818

upgpkg: sylpheed 3.4.1-1

Modified:
  sylpheed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 12:22:04 UTC (rev 108817)
+++ PKGBUILD2014-04-04 16:07:28 UTC (rev 108818)
@@ -4,7 +4,7 @@
 # Contributor: dorphell dorph...@archlinux.org
 
 pkgname=sylpheed
-pkgver=3.4.0
+pkgver=3.4.1
 pkgrel=1
 pkgdesc=Lightweight and user-friendly e-mail client
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('openssl')
 install=$pkgname.install
 
source=(http://sylpheed.sraoss.jp/$pkgname/v${pkgver%.*}/$pkgname-$pkgver.tar.bz2;)
-md5sums=('6cef3bb0ef2de6456dc1710f58e4db1f')
+md5sums=('9071bb341a6d96244fe7cd5ff013c70d')
 
 build() {
   cd $pkgname-$pkgver



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

2014-04-04 Thread speps
Date: Friday, April 4, 2014 @ 18:08:03
  Author: speps
Revision: 108819

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

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

---+
 /PKGBUILD |   72 
 /sylpheed.install |   22 +++
 community-i686/PKGBUILD   |   36 --
 community-i686/sylpheed.install   |   11 -
 community-x86_64/PKGBUILD |   36 --
 community-x86_64/sylpheed.install |   11 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-04 16:07:28 UTC (rev 108818)
+++ community-i686/PKGBUILD 2014-04-04 16:08:03 UTC (rev 108819)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: dorphell dorph...@archlinux.org
-
-pkgname=sylpheed
-pkgver=3.4.0
-pkgrel=1
-pkgdesc=Lightweight and user-friendly e-mail client
-arch=('i686' 'x86_64')
-url=http://sylpheed.sraoss.jp/en/;
-license=('GPL')
-depends=('compface' 'gpgme' 'gtkspell' 'desktop-file-utils')
-makedepends=('openssl')
-install=$pkgname.install
-source=(http://sylpheed.sraoss.jp/$pkgname/v${pkgver%.*}/$pkgname-$pkgver.tar.bz2;)
-md5sums=('6cef3bb0ef2de6456dc1710f58e4db1f')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --enable-ldap
-  make
-
-  # Build Attachment-Tool Plug-in
-  cd plugin/attachment_tool  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-
-  # Install Attachment-Tool Plug-in
-  cd plugin/attachment_tool
-  make DESTDIR=$pkgdir/ install-plugin
-}

Copied: sylpheed/repos/community-i686/PKGBUILD (from rev 108818, 
sylpheed/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-04 16:08:03 UTC (rev 108819)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: speps speps at aur dot archlinux dot org
+# Contributor: Alexander Fehr pizzapunk gmail com
+# Contributor: dorphell dorph...@archlinux.org
+
+pkgname=sylpheed
+pkgver=3.4.1
+pkgrel=1
+pkgdesc=Lightweight and user-friendly e-mail client
+arch=('i686' 'x86_64')
+url=http://sylpheed.sraoss.jp/en/;
+license=('GPL')
+depends=('compface' 'gpgme' 'gtkspell' 'desktop-file-utils')
+makedepends=('openssl')
+install=$pkgname.install
+source=(http://sylpheed.sraoss.jp/$pkgname/v${pkgver%.*}/$pkgname-$pkgver.tar.bz2;)
+md5sums=('9071bb341a6d96244fe7cd5ff013c70d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --enable-ldap
+  make
+
+  # Build Attachment-Tool Plug-in
+  cd plugin/attachment_tool  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+
+  # Install Attachment-Tool Plug-in
+  cd plugin/attachment_tool
+  make DESTDIR=$pkgdir/ install-plugin
+}

Deleted: community-i686/sylpheed.install
===
--- community-i686/sylpheed.install 2014-04-04 16:07:28 UTC (rev 108818)
+++ community-i686/sylpheed.install 2014-04-04 16:08:03 UTC (rev 108819)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: sylpheed/repos/community-i686/sylpheed.install (from rev 108818, 
sylpheed/trunk/sylpheed.install)
===
--- community-i686/sylpheed.install (rev 0)
+++ community-i686/sylpheed.install 2014-04-04 16:08:03 UTC (rev 108819)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-04 16:07:28 UTC (rev 108818)
+++ community-x86_64/PKGBUILD   2014-04-04 16:08:03 UTC (rev 108819)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: speps speps at aur dot archlinux dot org
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: dorphell dorph...@archlinux.org
-
-pkgname=sylpheed
-pkgver=3.4.0
-pkgrel=1
-pkgdesc=Lightweight and 

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

2014-04-04 Thread Giovanni Scafora
Date: Friday, April 4, 2014 @ 18:27:06
  Author: giovanni
Revision: 209808

upgpkg: mercurial 2.9.2-1

upstream release

Modified:
  mercurial/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 16:05:30 UTC (rev 209807)
+++ PKGBUILD2014-04-04 16:27:06 UTC (rev 209808)
@@ -3,7 +3,7 @@
 # Contributor: Douglas Soares de Andrade doug...@archlinux.org
 
 pkgname=mercurial
-pkgver=2.9.1
+pkgver=2.9.2
 pkgrel=1
 pkgdesc=A scalable distributed SCM tool
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 backup=('etc/mercurial/hgrc')
 source=(http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz;
 'mercurial.profile')
-md5sums=('56b3732f0f558f3cc986c9323ca8d17f'
+md5sums=('1caeed1bea1232598fc5ce5d6d109f56'
  '43e1d36564d4c7fbe9a091d3ea370a44')
 
 package() {



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

2014-04-04 Thread Giovanni Scafora
Date: Friday, April 4, 2014 @ 18:27:12
  Author: giovanni
Revision: 209809

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

Added:
  mercurial/repos/extra-i686/PKGBUILD
(from rev 209808, mercurial/trunk/PKGBUILD)
  mercurial/repos/extra-i686/mercurial.profile
(from rev 209808, mercurial/trunk/mercurial.profile)
  mercurial/repos/extra-x86_64/PKGBUILD
(from rev 209808, mercurial/trunk/PKGBUILD)
  mercurial/repos/extra-x86_64/mercurial.profile
(from rev 209808, mercurial/trunk/mercurial.profile)
Deleted:
  mercurial/repos/extra-i686/PKGBUILD
  mercurial/repos/extra-i686/mercurial.profile
  mercurial/repos/extra-x86_64/PKGBUILD
  mercurial/repos/extra-x86_64/mercurial.profile

+
 /PKGBUILD  |  100 +++
 /mercurial.profile |2 
 extra-i686/PKGBUILD|   50 ---
 extra-i686/mercurial.profile   |1 
 extra-x86_64/PKGBUILD  |   50 ---
 extra-x86_64/mercurial.profile |1 
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-04 16:27:06 UTC (rev 209808)
+++ extra-i686/PKGBUILD 2014-04-04 16:27:12 UTC (rev 209809)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=mercurial
-pkgver=2.9.1
-pkgrel=1
-pkgdesc=A scalable distributed SCM tool
-arch=('i686' 'x86_64')
-url=http://mercurial.selenic.com/;
-license=('GPL')
-depends=('python2')
-optdepends=('tk: for the hgk GUI')
-backup=('etc/mercurial/hgrc')
-source=(http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz;
-'mercurial.profile')
-md5sums=('56b3732f0f558f3cc986c9323ca8d17f'
- '43e1d36564d4c7fbe9a091d3ea370a44')
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  python2 setup.py install --root=${pkgdir}/ --optimize=1
-
-  sed -i -e 's#env python#env python2#' \
-${pkgdir}/usr/lib/python2.7/site-packages/mercurial/lsprof.py
-
-  install -d ${pkgdir}/usr/share/man/{man1,man5}
-  install -m644 doc/hg.1 ${pkgdir}/usr/share/man/man1
-  install -m644 doc/{hgrc.5,hgignore.5} ${pkgdir}/usr/share/man/man5
-  install -m755 contrib/hgk ${pkgdir}/usr/bin
-  install -m644 -D contrib/zsh_completion 
${pkgdir}/usr/share/zsh/site-functions/_hg
-  install -m644 -D contrib/bash_completion 
${pkgdir}/usr/share/bash-completion/completions/hg
-  install -d ${pkgdir}/usr/share/emacs/site-lisp
-  install -m644 contrib/{mq.el,mercurial.el} 
${pkgdir}/usr/share/emacs/site-lisp
-
-  vimpath=${pkgdir}/usr/share/vim/vimfiles
-  install -Dm644 contrib/vim/HGAnnotate.vim ${vimpath}/syntax/HGAnnotate.vim
-
-  # set some variables
-  install -m755 -d ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/mercurial.profile 
${pkgdir}/etc/profile.d/mercurial.sh
-
-  # install configuration file
-  install -m755 -d ${pkgdir}/etc/mercurial
-  install -m644 contrib/sample.hgrc ${pkgdir}/etc/mercurial/hgrc
-  
-  # FS#38825 - Add certs config to package 
-  echo -e \n[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt\n  
${pkgdir}/etc/mercurial/hgrc
-}

Copied: mercurial/repos/extra-i686/PKGBUILD (from rev 209808, 
mercurial/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-04 16:27:12 UTC (rev 209809)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=mercurial
+pkgver=2.9.2
+pkgrel=1
+pkgdesc=A scalable distributed SCM tool
+arch=('i686' 'x86_64')
+url=http://mercurial.selenic.com/;
+license=('GPL')
+depends=('python2')
+optdepends=('tk: for the hgk GUI')
+backup=('etc/mercurial/hgrc')
+source=(http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz;
+'mercurial.profile')
+md5sums=('1caeed1bea1232598fc5ce5d6d109f56'
+ '43e1d36564d4c7fbe9a091d3ea370a44')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  python2 setup.py install --root=${pkgdir}/ --optimize=1
+
+  sed -i -e 's#env python#env python2#' \
+${pkgdir}/usr/lib/python2.7/site-packages/mercurial/lsprof.py
+
+  install -d ${pkgdir}/usr/share/man/{man1,man5}
+  install -m644 doc/hg.1 ${pkgdir}/usr/share/man/man1
+  install -m644 doc/{hgrc.5,hgignore.5} ${pkgdir}/usr/share/man/man5
+  install -m755 contrib/hgk ${pkgdir}/usr/bin
+  install -m644 -D contrib/zsh_completion 
${pkgdir}/usr/share/zsh/site-functions/_hg
+  install -m644 -D contrib/bash_completion 
${pkgdir}/usr/share/bash-completion/completions/hg
+  install -d ${pkgdir}/usr/share/emacs/site-lisp
+  install -m644 contrib/{mq.el,mercurial.el} 
${pkgdir}/usr/share/emacs/site-lisp
+
+  vimpath=${pkgdir}/usr/share/vim/vimfiles
+  install -Dm644 contrib/vim/HGAnnotate.vim 

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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 18:30:38
  Author: anatolik
Revision: 209810

upgpkg: bash 4.3.008-2

Package rebuild. Previous version was pulled off [testing] because of problems 
with readline.

Modified:
  bash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 16:27:12 UTC (rev 209809)
+++ PKGBUILD2014-04-04 16:30:38 UTC (rev 209810)
@@ -7,7 +7,7 @@
 _basever=4.3
 _patchlevel=008
 pkgver=$_basever.$_patchlevel
-pkgrel=1
+pkgrel=2
 pkgdesc='The GNU Bourne Again shell'
 arch=('i686' 'x86_64')
 license=('GPL')



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

2014-04-04 Thread Giovanni Scafora
Date: Friday, April 4, 2014 @ 18:31:09
  Author: giovanni
Revision: 209811

upgpkg: live-media 2014.03.25-1

upstream release

Modified:
  live-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 16:30:38 UTC (rev 209810)
+++ PKGBUILD2014-04-04 16:31:09 UTC (rev 209811)
@@ -3,7 +3,7 @@
 # Contributor: Gilles CHAUVIN gcn...@gmail.com
 
 pkgname=live-media
-pkgver=2014.03.18
+pkgver=2014.03.25
 pkgrel=1
 pkgdesc=A set of C++ libraries for multimedia streaming
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('gcc-libs')
 options=('staticlibs')
 source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('2020012b2dfc66972a29a89a95f369a8')
+md5sums=('b2e1946260716252054cf2a81e061ed3')
 
 build() {
   cd ${srcdir}/live



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

2014-04-04 Thread Giovanni Scafora
Date: Friday, April 4, 2014 @ 18:31:16
  Author: giovanni
Revision: 209812

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

Added:
  live-media/repos/extra-i686/PKGBUILD
(from rev 209811, live-media/trunk/PKGBUILD)
  live-media/repos/extra-x86_64/PKGBUILD
(from rev 209811, live-media/trunk/PKGBUILD)
Deleted:
  live-media/repos/extra-i686/PKGBUILD
  live-media/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-04 16:31:09 UTC (rev 209811)
+++ extra-i686/PKGBUILD 2014-04-04 16:31:16 UTC (rev 209812)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2014.03.18
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-options=('staticlibs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('2020012b2dfc66972a29a89a95f369a8')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} ${pkgdir}/usr/bin
-  done
-}

Copied: live-media/repos/extra-i686/PKGBUILD (from rev 209811, 
live-media/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-04 16:31:16 UTC (rev 209812)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Gilles CHAUVIN gcn...@gmail.com
+
+pkgname=live-media
+pkgver=2014.03.25
+pkgrel=1
+pkgdesc=A set of C++ libraries for multimedia streaming
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://live555.com/liveMedia;
+depends=('gcc-libs')
+options=('staticlibs')
+source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
+md5sums=('b2e1946260716252054cf2a81e061ed3')
+
+build() {
+  cd ${srcdir}/live
+
+  sed \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
+  -i config.linux
+  ./genMakefiles linux
+  make
+}
+
+package() {
+  cd ${srcdir}/live
+
+  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
+install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
+install -m644 ${dir}/*.a ${pkgdir}/usr/lib
+install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
+  done
+
+  for testprog in `find testProgs -type f -perm 755`; do
+install ${testprog} ${pkgdir}/usr/bin
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-04 16:31:09 UTC (rev 209811)
+++ extra-x86_64/PKGBUILD   2014-04-04 16:31:16 UTC (rev 209812)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2014.03.18
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-options=('staticlibs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('2020012b2dfc66972a29a89a95f369a8')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} ${pkgdir}/usr/bin
-  done
-}

Copied: live-media/repos/extra-x86_64/PKGBUILD (from rev 209811, 
live-media/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ 

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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 18:33:13
  Author: anatolik
Revision: 209813

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

Added:
  bash/repos/testing-i686/
  bash/repos/testing-i686/PKGBUILD
(from rev 209810, bash/trunk/PKGBUILD)
  bash/repos/testing-i686/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch
(from rev 209810, 
bash/trunk/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch)
  bash/repos/testing-i686/bash-4.3-debug-trap.patch
(from rev 209810, bash/trunk/bash-4.3-debug-trap.patch)
  bash/repos/testing-i686/bash-4.3-test-nameref.patch
(from rev 209811, bash/trunk/bash-4.3-test-nameref.patch)
  bash/repos/testing-i686/bash.install
(from rev 209812, bash/trunk/bash.install)
  bash/repos/testing-i686/dot.bash_logout
(from rev 209812, bash/trunk/dot.bash_logout)
  bash/repos/testing-i686/dot.bash_profile
(from rev 209812, bash/trunk/dot.bash_profile)
  bash/repos/testing-i686/dot.bashrc
(from rev 209812, bash/trunk/dot.bashrc)
  bash/repos/testing-i686/system.bash_logout
(from rev 209812, bash/trunk/system.bash_logout)
  bash/repos/testing-i686/system.bashrc
(from rev 209812, bash/trunk/system.bashrc)
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 209812, bash/trunk/PKGBUILD)
  
bash/repos/testing-x86_64/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch
(from rev 209812, 
bash/trunk/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch)
  bash/repos/testing-x86_64/bash-4.3-debug-trap.patch
(from rev 209812, bash/trunk/bash-4.3-debug-trap.patch)
  bash/repos/testing-x86_64/bash-4.3-test-nameref.patch
(from rev 209812, bash/trunk/bash-4.3-test-nameref.patch)
  bash/repos/testing-x86_64/bash.install
(from rev 209812, bash/trunk/bash.install)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 209812, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 209812, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 209812, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 209812, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 209812, bash/trunk/system.bashrc)

---+
 testing-i686/PKGBUILD |   97 
++
 testing-i686/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch   |   12 +
 testing-i686/bash-4.3-debug-trap.patch|   30 
+++
 testing-i686/bash-4.3-test-nameref.patch  |   25 ++
 testing-i686/bash.install |   16 +
 testing-i686/dot.bash_logout  |3 
 testing-i686/dot.bash_profile |5 
 testing-i686/dot.bashrc   |9 
 testing-i686/system.bash_logout   |3 
 testing-i686/system.bashrc|   23 ++
 testing-x86_64/PKGBUILD   |   97 
++
 testing-x86_64/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch |   12 +
 testing-x86_64/bash-4.3-debug-trap.patch  |   30 
+++
 testing-x86_64/bash-4.3-test-nameref.patch|   25 ++
 testing-x86_64/bash.install   |   16 +
 testing-x86_64/dot.bash_logout|3 
 testing-x86_64/dot.bash_profile   |5 
 testing-x86_64/dot.bashrc |9 
 testing-x86_64/system.bash_logout |3 
 testing-x86_64/system.bashrc  |   23 ++
 20 files changed, 446 insertions(+)

Copied: bash/repos/testing-i686/PKGBUILD (from rev 209810, bash/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-04 16:33:13 UTC (rev 209813)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=bash
+_basever=4.3
+_patchlevel=008
+pkgver=$_basever.$_patchlevel
+pkgrel=2
+pkgdesc='The GNU Bourne Again shell'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://www.gnu.org/software/bash/bash.html'
+groups=('base')
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline=6.3' 'glibc')
+provides=('sh')
+install=bash.install
+source=(http://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+  

[arch-commits] Commit in (5 files)

2014-04-04 Thread speps
Date: Friday, April 4, 2014 @ 19:43:44
  Author: speps
Revision: 108820

addpkg: amsynth 1.4.1

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

-+
 PKGBUILD|   27 +++
 amsynth.install |   11 +++
 2 files changed, 38 insertions(+)

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

Added: amsynth/trunk/amsynth.install
===
--- amsynth/trunk/amsynth.install   (rev 0)
+++ amsynth/trunk/amsynth.install   2014-04-04 17:43:44 UTC (rev 108820)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-04-04 Thread speps
Date: Friday, April 4, 2014 @ 19:44:11
  Author: speps
Revision: 108821

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

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

--+
 community-i686/PKGBUILD  |   27 +++
 community-i686/amsynth.install   |   11 +++
 community-x86_64/PKGBUILD|   27 +++
 community-x86_64/amsynth.install |   11 +++
 4 files changed, 76 insertions(+)

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

Copied: amsynth/repos/community-i686/amsynth.install (from rev 108820, 
amsynth/trunk/amsynth.install)
===
--- community-i686/amsynth.install  (rev 0)
+++ community-i686/amsynth.install  2014-04-04 17:44:11 UTC (rev 108821)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

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

Copied: amsynth/repos/community-x86_64/amsynth.install (from rev 108820, 
amsynth/trunk/amsynth.install)
===
--- community-x86_64/amsynth.install(rev 0)
+++ community-x86_64/amsynth.install2014-04-04 17:44:11 UTC (rev 108821)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 19:55:38
  Author: anatolik
Revision: 209814

upgpkg: valgrind 3.9.0-3

FS#39736 enable MPI support
Remove --enable-64only config flag that seems does nothing

Modified:
  valgrind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 16:33:13 UTC (rev 209813)
+++ PKGBUILD2014-04-04 17:55:38 UTC (rev 209814)
@@ -4,12 +4,12 @@
 
 pkgname=valgrind
 pkgver=3.9.0
-pkgrel=2
+pkgrel=3
 pkgdesc='A tool to help find memory-management problems in programs'
 arch=(i686 x86_64)
 license=(GPL)
 url='http://valgrind.org/'
-depends=('glibc=2.19' 'glibc2.20' 'perl')
+depends=('glibc=2.19' 'glibc2.20' 'perl' 'openmpi')
 makedepends=('gdb')
 options=('staticlibs' '!emptydirs')
 source=(http://valgrind.org/downloads/$pkgname-$pkgver.tar.bz2
@@ -24,13 +24,7 @@
 
 build() {
   cd $pkgname-$pkgver
-
-  if [[ $CARCH = x86_64 ]]; then
-configure_flags='--enable-only64bit'
-  fi
-
-  ./configure --prefix=/usr --mandir=/usr/share/man $configure_flags
-
+  ./configure --prefix=/usr --mandir=/usr/share/man --with-mpicc=mpicc
   make
 }
 



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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 19:56:11
  Author: anatolik
Revision: 209815

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

Added:
  valgrind/repos/testing-i686/
  valgrind/repos/testing-i686/PKGBUILD
(from rev 209814, valgrind/trunk/PKGBUILD)
  valgrind/repos/testing-i686/valgrind-3.9.0-glibc-2.19.patch
(from rev 209814, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)
  valgrind/repos/testing-x86_64/
  valgrind/repos/testing-x86_64/PKGBUILD
(from rev 209814, valgrind/trunk/PKGBUILD)
  valgrind/repos/testing-x86_64/valgrind-3.9.0-glibc-2.19.patch
(from rev 209814, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)

+
 testing-i686/PKGBUILD  |   34 +
 testing-i686/valgrind-3.9.0-glibc-2.19.patch   |   37 +++
 testing-x86_64/PKGBUILD|   34 +
 testing-x86_64/valgrind-3.9.0-glibc-2.19.patch |   37 +++
 4 files changed, 142 insertions(+)

Copied: valgrind/repos/testing-i686/PKGBUILD (from rev 209814, 
valgrind/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-04 17:56:11 UTC (rev 209815)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=valgrind
+pkgver=3.9.0
+pkgrel=3
+pkgdesc='A tool to help find memory-management problems in programs'
+arch=(i686 x86_64)
+license=(GPL)
+url='http://valgrind.org/'
+depends=('glibc=2.19' 'glibc2.20' 'perl' 'openmpi')
+makedepends=('gdb')
+options=('staticlibs' '!emptydirs')
+source=(http://valgrind.org/downloads/$pkgname-$pkgver.tar.bz2
+valgrind-3.9.0-glibc-2.19.patch)
+sha1sums=('9415e28933de9d6687f993c4bb797e6bd49583f1'
+  '4653e994d2660490c51a97cc70e45a506e80bfab')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i $srcdir/valgrind-3.9.0-glibc-2.19.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --with-mpicc=mpicc
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: valgrind/repos/testing-i686/valgrind-3.9.0-glibc-2.19.patch (from rev 
209814, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)
===
--- testing-i686/valgrind-3.9.0-glibc-2.19.patch
(rev 0)
+++ testing-i686/valgrind-3.9.0-glibc-2.19.patch2014-04-04 17:56:11 UTC 
(rev 209815)
@@ -0,0 +1,37 @@
+diff -Naur valgrind-3.9.0-orig/configure valgrind-3.9.0/configure
+--- valgrind-3.9.0-orig/configure  2013-11-01 09:33:32.0 +1000
 valgrind-3.9.0/configure   2014-02-08 09:28:06.063248544 +1000
+@@ -6689,6 +6689,16 @@
+   DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
+   DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
+   ;;
++ 2.19)
++  { $as_echo $as_me:${as_lineno-$LINENO}: result: 2.19 family 5
++$as_echo 2.19 family 6; }
++
++$as_echo #define GLIBC_2_19 1 confdefs.h
++
++  DEFAULT_SUPP=glibc-2.X.supp ${DEFAULT_SUPP}
++  DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
++  DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
++  ;;
+  darwin)
+   { $as_echo $as_me:${as_lineno-$LINENO}: result: Darwin 5
+ $as_echo Darwin 6; }
+diff -Naur valgrind-3.9.0-orig/configure.ac valgrind-3.9.0/configure.ac
+--- valgrind-3.9.0-orig/configure.ac   2013-11-01 09:28:16.0 +1000
 valgrind-3.9.0/configure.ac2014-02-08 09:27:38.870385366 +1000
+@@ -918,6 +918,13 @@
+   DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
+   DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
+   ;;
++ 2.19)
++  AC_MSG_RESULT(2.19 family)
++  AC_DEFINE([GLIBC_2_19], 1, [Define to 1 if you're using glibc 2.19.x])
++  DEFAULT_SUPP=glibc-2.X.supp ${DEFAULT_SUPP}
++  DEFAULT_SUPP=glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}
++  DEFAULT_SUPP=glibc-2.X-drd.supp ${DEFAULT_SUPP}
++  ;;
+  darwin)
+   AC_MSG_RESULT(Darwin)
+   AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])

Copied: valgrind/repos/testing-x86_64/PKGBUILD (from rev 209814, 
valgrind/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-04-04 17:56:11 UTC (rev 209815)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=valgrind
+pkgver=3.9.0
+pkgrel=3
+pkgdesc='A tool to help find memory-management problems in programs'
+arch=(i686 x86_64)
+license=(GPL)
+url='http://valgrind.org/'
+depends=('glibc=2.19' 'glibc2.20' 'perl' 'openmpi')
+makedepends=('gdb')
+options=('staticlibs' '!emptydirs')

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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 20:46:37
  Author: andyrtr
Revision: 209816

upgpkg: icu 53.1-1

upstream update 53.1

Modified:
  icu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 17:56:11 UTC (rev 209815)
+++ PKGBUILD2014-04-04 18:46:37 UTC (rev 209816)
@@ -3,7 +3,7 @@
 # Contributor: Art Gramlich a...@gramlich-net.com
 
 pkgname=icu
-pkgver=52.1
+pkgver=53.1
 pkgrel=1
 pkgdesc=International Components for Unicode library
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 
source=(#http://download.icu-project.org/files/${pkgname}4c/${pkgver}/${pkgname}4c-${pkgver/./_}-src.tgz

http://download.icu-project.org/files/${pkgname}4c/${pkgver}/${pkgname}4c-${pkgver//./_}-src.tgz
icu.8198.revert.icu5431.patch)
-md5sums=('9e96ed4c1d99c0d14ac03c140f9f346c'
+md5sums=('b73baa6fbdfef197608d1f69300919b9'
  'ebd5470fc969c75e52baf4af94a9ee82')
 
 prepare() {



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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 20:46:51
  Author: andyrtr
Revision: 209817

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

Added:
  icu/repos/staging-i686/
  icu/repos/staging-i686/PKGBUILD
(from rev 209816, icu/trunk/PKGBUILD)
  icu/repos/staging-i686/icu.8198.revert.icu5431.patch
(from rev 209816, icu/trunk/icu.8198.revert.icu5431.patch)
  icu/repos/staging-x86_64/
  icu/repos/staging-x86_64/PKGBUILD
(from rev 209816, icu/trunk/PKGBUILD)
  icu/repos/staging-x86_64/icu.8198.revert.icu5431.patch
(from rev 209816, icu/trunk/icu.8198.revert.icu5431.patch)

--+
 staging-i686/PKGBUILD|   46 
 staging-i686/icu.8198.revert.icu5431.patch   |  129 +
 staging-x86_64/PKGBUILD  |   46 
 staging-x86_64/icu.8198.revert.icu5431.patch |  129 +
 4 files changed, 350 insertions(+)

Copied: icu/repos/staging-i686/PKGBUILD (from rev 209816, icu/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-04 18:46:51 UTC (rev 209817)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Art Gramlich a...@gramlich-net.com
+
+pkgname=icu
+pkgver=53.1
+pkgrel=1
+pkgdesc=International Components for Unicode library
+arch=(i686 x86_64)
+url=http://www.icu-project.org/;
+license=('custom:icu')
+depends=('gcc-libs=4.7.1-5' 'sh')
+#makedepends=('clang')
+source=(#http://download.icu-project.org/files/${pkgname}4c/${pkgver}/${pkgname}4c-${pkgver/./_}-src.tgz
+   
http://download.icu-project.org/files/${pkgname}4c/${pkgver}/${pkgname}4c-${pkgver//./_}-src.tgz
+   icu.8198.revert.icu5431.patch)
+md5sums=('b73baa6fbdfef197608d1f69300919b9'
+ 'ebd5470fc969c75e52baf4af94a9ee82')
+
+prepare() {
+  cd icu/source
+  # fix Malayalam encoding https://bugzilla.redhat.com/show_bug.cgi?id=654200
+  patch -Rp3 -i ${srcdir}/icu.8198.revert.icu5431.patch
+}
+
+build() {
+  cd icu/source
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --mandir=/usr/share/man \
+   --sbindir=/usr/bin
+  make
+}
+
+check() {
+  cd icu/source
+  make -k check # passes all
+}
+
+package() {
+  cd icu/source
+  make -j1 DESTDIR=${pkgdir} install
+
+  # Install license
+  install -Dm644 ${srcdir}/icu/license.html 
${pkgdir}/usr/share/licenses/icu/license.html
+}

Copied: icu/repos/staging-i686/icu.8198.revert.icu5431.patch (from rev 209816, 
icu/trunk/icu.8198.revert.icu5431.patch)
===
--- staging-i686/icu.8198.revert.icu5431.patch  (rev 0)
+++ staging-i686/icu.8198.revert.icu5431.patch  2014-04-04 18:46:51 UTC (rev 
209817)
@@ -0,0 +1,129 @@
+Index: icu/trunk/source/layout/IndicReordering.cpp
+===
+--- icu/trunk/source/layout/IndicReordering.cpp(revision 25772)
 icu/trunk/source/layout/IndicReordering.cpp(revision 26090)
+@@ -126,4 +126,8 @@
+ FeatureMask fSMFeatures;
+ 
++LEUnicode   fPreBaseConsonant;
++LEUnicode   fPreBaseVirama;
++le_int32fPBCIndex;
++FeatureMask fPBCFeatures;
+ 
+ void saveMatra(LEUnicode matra, le_int32 matraIndex, 
IndicClassTable::CharClass matraClass)
+@@ -172,5 +176,6 @@
+   fMatraFeatures(0), fMPreOutIndex(-1), fMPreFixups(mpreFixups),
+   fVMabove(0), fVMpost(0), fVMIndex(0), fVMFeatures(0),
+-  fSMabove(0), fSMbelow(0), fSMIndex(0), fSMFeatures(0)
++  fSMabove(0), fSMbelow(0), fSMIndex(0), fSMFeatures(0),
++  fPreBaseConsonant(0), fPreBaseVirama(0), fPBCIndex(0), 
fPBCFeatures(0)
+ {
+ // nothing else to do...
+@@ -191,4 +196,6 @@
+ fVMabove = fVMpost  = 0;
+ fSMabove = fSMbelow = 0;
++
++fPreBaseConsonant = fPreBaseVirama = 0;
+ }
+ 
+@@ -386,4 +393,12 @@
+ }
+ 
++void notePreBaseConsonant(le_uint32 index,LEUnicode PBConsonant, 
LEUnicode PBVirama, FeatureMask features)
++{
++fPBCIndex = index;
++fPreBaseConsonant = PBConsonant;
++fPreBaseVirama = PBVirama;
++fPBCFeatures = features;
++}
++
+ void noteBaseConsonant()
+ {
+@@ -465,4 +480,20 @@
+ }
+ 
++void writePreBaseConsonant()
++{
++// The TDIL spec says that consonant + virama + RRA should produce a 
rakar in Malayalam.  However,
++// it seems that almost none of the fonts for Malayalam are set up to 
handle this.
++// So, we're going to force the issue here by using the rakar as 
defined with RA in most fonts.
++
++if (fPreBaseConsonant == 0x0d31) { // RRA
++fPreBaseConsonant = 0x0d30; // RA
++}
++
++if (fPreBaseConsonant != 0) {
++writeChar(fPreBaseConsonant, fPBCIndex, 

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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 21:11:31
  Author: andyrtr
Revision: 209818

upgpkg: libvisio 0.0.31-3

icu 53.1 rebuild

Modified:
  libvisio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 18:46:51 UTC (rev 209817)
+++ PKGBUILD2014-04-04 19:11:31 UTC (rev 209818)
@@ -6,7 +6,7 @@
 
 pkgname=libvisio
 pkgver=0.0.31
-pkgrel=2
+pkgrel=3
 pkgdesc='Library providing ability to interpret and import visio diagrams'
 arch=('i686' 'x86_64')
 url='http://www.freedesktop.org/wiki/Software/libvisio'



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

2014-04-04 Thread Andreas Radke
Date: Friday, April 4, 2014 @ 21:11:46
  Author: andyrtr
Revision: 209819

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

Added:
  libvisio/repos/staging-i686/
  libvisio/repos/staging-i686/PKGBUILD
(from rev 209818, libvisio/trunk/PKGBUILD)
  libvisio/repos/staging-x86_64/
  libvisio/repos/staging-x86_64/PKGBUILD
(from rev 209818, libvisio/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   28 
 staging-x86_64/PKGBUILD |   28 
 2 files changed, 56 insertions(+)

Copied: libvisio/repos/staging-i686/PKGBUILD (from rev 209818, 
libvisio/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-04 19:11:46 UTC (rev 209819)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
+# Contributor: philacs
+
+pkgname=libvisio
+pkgver=0.0.31
+pkgrel=3
+pkgdesc='Library providing ability to interpret and import visio diagrams'
+arch=('i686' 'x86_64')
+url='http://www.freedesktop.org/wiki/Software/libvisio'
+license=('LGPL')
+depends=('libwpd' 'libwpg' 'libxml2' 'gperf' 'icu')
+makedepends=('boost')
+source=(http://dev-www.libreoffice.org/src/$pkgname-$pkgver.tar.xz)
+md5sums=('12ceec054cdec55b4dc9fc931507d1cd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: libvisio/repos/staging-x86_64/PKGBUILD (from rev 209818, 
libvisio/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-04-04 19:11:46 UTC (rev 209819)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: ponsfoot cabezon dot hashimoto at gmail dot com
+# Contributor: philacs
+
+pkgname=libvisio
+pkgver=0.0.31
+pkgrel=3
+pkgdesc='Library providing ability to interpret and import visio diagrams'
+arch=('i686' 'x86_64')
+url='http://www.freedesktop.org/wiki/Software/libvisio'
+license=('LGPL')
+depends=('libwpd' 'libwpg' 'libxml2' 'gperf' 'icu')
+makedepends=('boost')
+source=(http://dev-www.libreoffice.org/src/$pkgname-$pkgver.tar.xz)
+md5sums=('12ceec054cdec55b4dc9fc931507d1cd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 21:36:37
  Author: anatolik
Revision: 108822

upgpkg: v8 3.23.17.23-2

Rebuild v8 for icu 53.1 .so todo

Modified:
  v8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 17:44:11 UTC (rev 108821)
+++ PKGBUILD2014-04-04 19:36:37 UTC (rev 108822)
@@ -7,7 +7,7 @@
 pkgname=v8
 # use http://omahaproxy.appspot.com/ to find stable v8 version
 pkgver=3.23.17.23
-pkgrel=1
+pkgrel=2
 pkgdesc='Fast and modern Javascript engine'
 arch=(i686 x86_64)
 url='http://code.google.com/p/v8'



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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 21:37:16
  Author: anatolik
Revision: 108823

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

Added:
  v8/repos/staging-i686/
  v8/repos/staging-i686/PKGBUILD
(from rev 108821, v8/trunk/PKGBUILD)
  v8/repos/staging-i686/v8.pc
(from rev 108821, v8/trunk/v8.pc)
  v8/repos/staging-x86_64/
  v8/repos/staging-x86_64/PKGBUILD
(from rev 108822, v8/trunk/PKGBUILD)
  v8/repos/staging-x86_64/v8.pc
(from rev 108822, v8/trunk/v8.pc)

-+
 staging-i686/PKGBUILD   |   74 ++
 staging-i686/v8.pc  |   10 ++
 staging-x86_64/PKGBUILD |   74 ++
 staging-x86_64/v8.pc|   10 ++
 4 files changed, 168 insertions(+)

Copied: v8/repos/staging-i686/PKGBUILD (from rev 108821, v8/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-04 19:37:16 UTC (rev 108823)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: tocer tocer.d...@gmail.com
+
+pkgname=v8
+# use http://omahaproxy.appspot.com/ to find stable v8 version
+pkgver=3.23.17.23
+pkgrel=1
+pkgdesc='Fast and modern Javascript engine'
+arch=(i686 x86_64)
+url='http://code.google.com/p/v8'
+license=(BSD)
+depends=(readline icu)
+makedepends=(subversion python2)
+# unfortunately https://github.com/$pkgname/$pkgname does not contain all tags
+source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.bz2
+v8.pc)
+sha256sums=('b6702e68755adab3457d4e066957356c7a4e5eab3624edd39daad82818eb870e'
+'2b054309df9af9fb2e3e14527e88360b44745649b4866e592fb357ac90935f5d')
+
+[[ $CARCH = 'i686' ]]ARCH=ia32
+[[ $CARCH = 'x86_64' ]]  ARCH=x64
+
+prepare() {
+  cd v8-$pkgver
+
+  # we do not need icu sources, just one icu.gyp
+  sed -e 's|\bthird_party/icu --revision |--depth=files third_party/icu 
--revision |' -i Makefile
+  make dependencies
+
+  find build/ test/ tools/ src/ -type f -exec \
+sed -e 's_^#!/usr/bin/env python$_2_' \
+-e 's_^#!/usr/bin/python$_2_' \
+-e s_'python'_'python2'_ -i {} \;
+
+  sed 's/\bpython\b/python2/' -i Makefile build/gyp/gyp
+
+  sed s/@VERSION@/$pkgver/g -i $srcdir/v8.pc
+}
+
+build() {
+  cd v8-$pkgver
+
+  build/gyp_v8 -Dv8_enable_i18n_support=1 -Duse_system_icu=1 
-Dconsole=readline -Dcomponent=shared_library -Dv8_target_arch=$ARCH -Dwerror= 
--generator-output=out -f make
+
+  make -C out builddir=`pwd`/out/Release BUILDTYPE=Release mksnapshot.$ARCH
+  make -C out builddir=`pwd`/out/Release BUILDTYPE=Release
+}
+
+check() {
+  cd v8-$pkgver
+  # A number of tests are failing. Figure out what happens and then enable 
tests.
+  # LD_LIBRARY_PATH=out/Release/lib.target tools/run-tests.py --no-presubmit 
--outdir=out --buildbot --arch=$ARCH --mode=Release # --progress=dots
+}
+
+package() {
+  cd v8-$pkgver
+
+  install -Dm755 out/Release/d8 $pkgdir/usr/bin/d8
+  install -Dm755 out/Release/lib.target/libv8.so $pkgdir/usr/lib/libv8.so
+
+  # V8 has several header files and ideally if it had its own folder in 
/usr/include
+  # But doing it here will break all users. Ideally if they use provided 
pkgconfig file.
+  install -d $pkgdir/usr/include
+  install -Dm644 include/*.h $pkgdir/usr/include
+
+  install -d $pkgdir/usr/lib/pkgconfig
+  install -m644 $srcdir/v8.pc $pkgdir/usr/lib/pkgconfig
+
+  install -d $pkgdir/usr/share/licenses/v8
+  install -m644 LICENSE* $pkgdir/usr/share/licenses/v8
+}

Copied: v8/repos/staging-i686/v8.pc (from rev 108821, v8/trunk/v8.pc)
===
--- staging-i686/v8.pc  (rev 0)
+++ staging-i686/v8.pc  2014-04-04 19:37:16 UTC (rev 108823)
@@ -0,0 +1,10 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=/usr/lib
+includedir=${prefix}/include
+
+Name: v8
+Description: V8 JavaScript Engine
+Version: @VERSION@
+Libs: -L${libdir} -lv8 -pthread
+Cflags: -I${includedir}

Copied: v8/repos/staging-x86_64/PKGBUILD (from rev 108822, v8/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-04-04 19:37:16 UTC (rev 108823)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: tocer tocer.d...@gmail.com
+
+pkgname=v8
+# use http://omahaproxy.appspot.com/ to find stable v8 version
+pkgver=3.23.17.23
+pkgrel=2
+pkgdesc='Fast and modern Javascript engine'
+arch=(i686 x86_64)
+url='http://code.google.com/p/v8'
+license=(BSD)
+depends=(readline icu)

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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 21:45:08
  Author: anatolik
Revision: 108824

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

Added:
  v8/repos/staging-i686/PKGBUILD
(from rev 108823, v8/trunk/PKGBUILD)
  v8/repos/staging-i686/v8.pc
(from rev 108823, v8/trunk/v8.pc)
  v8/repos/staging-x86_64/PKGBUILD
(from rev 108823, v8/trunk/PKGBUILD)
  v8/repos/staging-x86_64/v8.pc
(from rev 108823, v8/trunk/v8.pc)
Deleted:
  v8/repos/staging-i686/PKGBUILD
  v8/repos/staging-i686/v8.pc
  v8/repos/staging-x86_64/PKGBUILD
  v8/repos/staging-x86_64/v8.pc

-+
 /PKGBUILD   |  148 ++
 /v8.pc  |   20 ++
 staging-i686/PKGBUILD   |   74 ---
 staging-i686/v8.pc  |   10 ---
 staging-x86_64/PKGBUILD |   74 ---
 staging-x86_64/v8.pc|   10 ---
 6 files changed, 168 insertions(+), 168 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2014-04-04 19:37:16 UTC (rev 108823)
+++ staging-i686/PKGBUILD   2014-04-04 19:45:08 UTC (rev 108824)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: tocer tocer.d...@gmail.com
-
-pkgname=v8
-# use http://omahaproxy.appspot.com/ to find stable v8 version
-pkgver=3.23.17.23
-pkgrel=1
-pkgdesc='Fast and modern Javascript engine'
-arch=(i686 x86_64)
-url='http://code.google.com/p/v8'
-license=(BSD)
-depends=(readline icu)
-makedepends=(subversion python2)
-# unfortunately https://github.com/$pkgname/$pkgname does not contain all tags
-source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.bz2
-v8.pc)
-sha256sums=('b6702e68755adab3457d4e066957356c7a4e5eab3624edd39daad82818eb870e'
-'2b054309df9af9fb2e3e14527e88360b44745649b4866e592fb357ac90935f5d')
-
-[[ $CARCH = 'i686' ]]ARCH=ia32
-[[ $CARCH = 'x86_64' ]]  ARCH=x64
-
-prepare() {
-  cd v8-$pkgver
-
-  # we do not need icu sources, just one icu.gyp
-  sed -e 's|\bthird_party/icu --revision |--depth=files third_party/icu 
--revision |' -i Makefile
-  make dependencies
-
-  find build/ test/ tools/ src/ -type f -exec \
-sed -e 's_^#!/usr/bin/env python$_2_' \
--e 's_^#!/usr/bin/python$_2_' \
--e s_'python'_'python2'_ -i {} \;
-
-  sed 's/\bpython\b/python2/' -i Makefile build/gyp/gyp
-
-  sed s/@VERSION@/$pkgver/g -i $srcdir/v8.pc
-}
-
-build() {
-  cd v8-$pkgver
-
-  build/gyp_v8 -Dv8_enable_i18n_support=1 -Duse_system_icu=1 
-Dconsole=readline -Dcomponent=shared_library -Dv8_target_arch=$ARCH -Dwerror= 
--generator-output=out -f make
-
-  make -C out builddir=`pwd`/out/Release BUILDTYPE=Release mksnapshot.$ARCH
-  make -C out builddir=`pwd`/out/Release BUILDTYPE=Release
-}
-
-check() {
-  cd v8-$pkgver
-  # A number of tests are failing. Figure out what happens and then enable 
tests.
-  # LD_LIBRARY_PATH=out/Release/lib.target tools/run-tests.py --no-presubmit 
--outdir=out --buildbot --arch=$ARCH --mode=Release # --progress=dots
-}
-
-package() {
-  cd v8-$pkgver
-
-  install -Dm755 out/Release/d8 $pkgdir/usr/bin/d8
-  install -Dm755 out/Release/lib.target/libv8.so $pkgdir/usr/lib/libv8.so
-
-  # V8 has several header files and ideally if it had its own folder in 
/usr/include
-  # But doing it here will break all users. Ideally if they use provided 
pkgconfig file.
-  install -d $pkgdir/usr/include
-  install -Dm644 include/*.h $pkgdir/usr/include
-
-  install -d $pkgdir/usr/lib/pkgconfig
-  install -m644 $srcdir/v8.pc $pkgdir/usr/lib/pkgconfig
-
-  install -d $pkgdir/usr/share/licenses/v8
-  install -m644 LICENSE* $pkgdir/usr/share/licenses/v8
-}

Copied: v8/repos/staging-i686/PKGBUILD (from rev 108823, v8/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-04 19:45:08 UTC (rev 108824)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: tocer tocer.d...@gmail.com
+
+pkgname=v8
+# use http://omahaproxy.appspot.com/ to find stable v8 version
+pkgver=3.23.17.23
+pkgrel=2
+pkgdesc='Fast and modern Javascript engine'
+arch=(i686 x86_64)
+url='http://code.google.com/p/v8'
+license=(BSD)
+depends=(readline icu)
+makedepends=(subversion python2)
+# unfortunately https://github.com/$pkgname/$pkgname does not contain all tags
+source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.bz2
+v8.pc)
+sha256sums=('b6702e68755adab3457d4e066957356c7a4e5eab3624edd39daad82818eb870e'
+

[arch-commits] Commit in v8/repos (staging-i686 staging-x86_64)

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 21:49:04
  Author: anatolik
Revision: 108825

v8 package belongs to [community], not [core]

Deleted:
  v8/repos/staging-i686/
  v8/repos/staging-x86_64/



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

2014-04-04 Thread Anatol Pomozov
Date: Friday, April 4, 2014 @ 21:50:08
  Author: anatolik
Revision: 108826

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

Added:
  v8/repos/community-staging-i686/
  v8/repos/community-staging-i686/PKGBUILD
(from rev 108825, v8/trunk/PKGBUILD)
  v8/repos/community-staging-i686/v8.pc
(from rev 108825, v8/trunk/v8.pc)
  v8/repos/community-staging-x86_64/
  v8/repos/community-staging-x86_64/PKGBUILD
(from rev 108825, v8/trunk/PKGBUILD)
  v8/repos/community-staging-x86_64/v8.pc
(from rev 108825, v8/trunk/v8.pc)

---+
 community-staging-i686/PKGBUILD   |   74 
 community-staging-i686/v8.pc  |   10 
 community-staging-x86_64/PKGBUILD |   74 
 community-staging-x86_64/v8.pc|   10 
 4 files changed, 168 insertions(+)

Copied: v8/repos/community-staging-i686/PKGBUILD (from rev 108825, 
v8/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-04-04 19:50:08 UTC (rev 108826)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: tocer tocer.d...@gmail.com
+
+pkgname=v8
+# use http://omahaproxy.appspot.com/ to find stable v8 version
+pkgver=3.23.17.23
+pkgrel=2
+pkgdesc='Fast and modern Javascript engine'
+arch=(i686 x86_64)
+url='http://code.google.com/p/v8'
+license=(BSD)
+depends=(readline icu)
+makedepends=(subversion python2)
+# unfortunately https://github.com/$pkgname/$pkgname does not contain all tags
+source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.bz2
+v8.pc)
+sha256sums=('b6702e68755adab3457d4e066957356c7a4e5eab3624edd39daad82818eb870e'
+'2b054309df9af9fb2e3e14527e88360b44745649b4866e592fb357ac90935f5d')
+
+[[ $CARCH = 'i686' ]]ARCH=ia32
+[[ $CARCH = 'x86_64' ]]  ARCH=x64
+
+prepare() {
+  cd v8-$pkgver
+
+  # we do not need icu sources, just one icu.gyp
+  sed -e 's|\bthird_party/icu --revision |--depth=files third_party/icu 
--revision |' -i Makefile
+  make dependencies
+
+  find build/ test/ tools/ src/ -type f -exec \
+sed -e 's_^#!/usr/bin/env python$_2_' \
+-e 's_^#!/usr/bin/python$_2_' \
+-e s_'python'_'python2'_ -i {} \;
+
+  sed 's/\bpython\b/python2/' -i Makefile build/gyp/gyp
+
+  sed s/@VERSION@/$pkgver/g -i $srcdir/v8.pc
+}
+
+build() {
+  cd v8-$pkgver
+
+  build/gyp_v8 -Dv8_enable_i18n_support=1 -Duse_system_icu=1 
-Dconsole=readline -Dcomponent=shared_library -Dv8_target_arch=$ARCH -Dwerror= 
--generator-output=out -f make
+
+  make -C out builddir=`pwd`/out/Release BUILDTYPE=Release mksnapshot.$ARCH
+  make -C out builddir=`pwd`/out/Release BUILDTYPE=Release
+}
+
+check() {
+  cd v8-$pkgver
+  # A number of tests are failing. Figure out what happens and then enable 
tests.
+  # LD_LIBRARY_PATH=out/Release/lib.target tools/run-tests.py --no-presubmit 
--outdir=out --buildbot --arch=$ARCH --mode=Release # --progress=dots
+}
+
+package() {
+  cd v8-$pkgver
+
+  install -Dm755 out/Release/d8 $pkgdir/usr/bin/d8
+  install -Dm755 out/Release/lib.target/libv8.so $pkgdir/usr/lib/libv8.so
+
+  # V8 has several header files and ideally if it had its own folder in 
/usr/include
+  # But doing it here will break all users. Ideally if they use provided 
pkgconfig file.
+  install -d $pkgdir/usr/include
+  install -Dm644 include/*.h $pkgdir/usr/include
+
+  install -d $pkgdir/usr/lib/pkgconfig
+  install -m644 $srcdir/v8.pc $pkgdir/usr/lib/pkgconfig
+
+  install -d $pkgdir/usr/share/licenses/v8
+  install -m644 LICENSE* $pkgdir/usr/share/licenses/v8
+}

Copied: v8/repos/community-staging-i686/v8.pc (from rev 108825, v8/trunk/v8.pc)
===
--- community-staging-i686/v8.pc(rev 0)
+++ community-staging-i686/v8.pc2014-04-04 19:50:08 UTC (rev 108826)
@@ -0,0 +1,10 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=/usr/lib
+includedir=${prefix}/include
+
+Name: v8
+Description: V8 JavaScript Engine
+Version: @VERSION@
+Libs: -L${libdir} -lv8 -pthread
+Cflags: -I${includedir}

Copied: v8/repos/community-staging-x86_64/PKGBUILD (from rev 108825, 
v8/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-04-04 19:50:08 UTC (rev 108826)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: tocer tocer.d...@gmail.com
+
+pkgname=v8
+# use http://omahaproxy.appspot.com/ to 

[arch-commits] Commit in vagrant/trunk (PKGBUILD plugins.patch)

2014-04-04 Thread Jonathan Steel
Date: Saturday, April 5, 2014 @ 00:09:11
  Author: jsteel
Revision: 108827

Remove git makedepends and patch

Modified:
  vagrant/trunk/PKGBUILD
Deleted:
  vagrant/trunk/plugins.patch

---+
 PKGBUILD  |   30 ++
 plugins.patch |   31 ---
 2 files changed, 14 insertions(+), 47 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 19:50:08 UTC (rev 108826)
+++ PKGBUILD2014-04-04 22:09:11 UTC (rev 108827)
@@ -17,28 +17,26 @@
 url=http://vagrantup.com;
 license=('MIT')
 options=('!emptydirs')
-makedepends=('git')
 depends=('ruby' 'curl' 'lzo2' 'libidn' 'rtmpdump')
-source=(git://github.com/mitchellh/$pkgname.git
-git://github.com/mitchellh/$pkgname-installers.git
-plugins.patch
+source=(http://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz
 
http://pkgbuild.com/~jsteel/aur/$pkgname/substrate_archlinux_$CARCH.zip)
-md5sums=('SKIP' 'SKIP'
- 'c73455203b22aaf89e3a7779ebbe81ed')
+md5sums=('169571cfb860c3ef5748c0784fdbb458')
 [[ $CARCH == i686 ]]  md5sums[3]='c04042b24de56d18a041bc005e5ecaa4'
 [[ $CARCH == x86_64 ]]  md5sums[3]='53d8a137e0b50fee8509a7d1c15fd33b'
 
-prepare() {
-  # Remove proprietary plugins
-  patch -Np1 -i $srcdir/plugins.patch
-}
-
 build() {
-  cd $srcdir/$pkgname
-REV=$( git log --grep ^v$pkgver$ --pretty=format:%H | head -n 1 )
+  cd $srcdir/$pkgname-$pkgver
 
-  $srcdir/$pkgname-installers/package/support/install_$pkgname.sh \
-$srcdir/substrate/ $REV $srcdir/substrate/${pkgname}_version
+  EMBEDDED_DIR=$srcdir/substrate/embedded
+
+  echo -n $( cat version.txt )  $srcdir/substrate/${pkgname}_version
+
+  $EMBEDDED_DIR/bin/gem build $pkgname.gemspec
+
+  GEM_PATH=$EMBEDDED_DIR/gems GEM_HOME=$GEM_PATH \
+  GEMRC=$EMBEDDED_DIR/etc/gemrc CPPFLAGS=-I$EMBEDDED_DIR/include \
+  LDFLAGS=-L$EMBEDDED_DIR/lib PATH=$EMBEDDED_DIR/bin:$PATH \
+$EMBEDDED_DIR/bin/gem install $pkgname-$pkgver.gem --no-ri --no-rdoc
 }
 
 package() {
@@ -51,6 +49,6 @@
   ln -s 
/opt/$pkgname/embedded/gems/gems/$pkgname-$pkgver/contrib/bash/completion.sh \
 $pkgdir/usr/share/bash-completion/completions/$pkgname
 
-  install -Dm644 $srcdir/$pkgname/LICENSE \
+  install -Dm644 $srcdir/$pkgname-$pkgver/LICENSE \
 $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }

Deleted: plugins.patch
===
--- plugins.patch   2014-04-04 19:50:08 UTC (rev 108826)
+++ plugins.patch   2014-04-04 22:09:11 UTC (rev 108827)
@@ -1,31 +0,0 @@
 src/vagrant-installers/package/support/install_vagrant.sh.orig 
2014-03-20 19:49:56.853976851 +
-+++ src/vagrant-installers/package/support/install_vagrant.sh  2014-03-20 
19:53:25.921123996 +
-@@ -55,28 +55,6 @@
- export PATH=${EMBEDDED_DIR}/bin:${PATH}
- ${GEM_COMMAND} install vagrant.gem --no-ri --no-rdoc
- 
--# Install extensions
--${GEM_COMMAND} install vagrant-login --no-ri --no-rdoc --source 
http://gems.hashicorp.com;
--${GEM_COMMAND} install vagrant-share --no-ri --no-rdoc --source 
http://gems.hashicorp.com;
--
--# Setup the system plugins
--cat EOF ${EMBEDDED_DIR}/plugins.json
--{
--version: 1,
--installed: {
--vagrant-login: {
--ruby_version: 0,
--vagrant_version: ${VERSION}
--},
--vagrant-share: {
--ruby_version: 0,
--vagrant_version: ${VERSION}
--}
--}
--}
--EOF
--chmod 0644 ${EMBEDDED_DIR}/plugins.json
--
- # Exit the temporary directory
- popd
- rm -rf ${TMP_DIR}



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

2014-04-04 Thread Felix Yan
Date: Saturday, April 5, 2014 @ 04:33:56
  Author: fyan
Revision: 108828

upgpkg: pep8 1.5.3-1

Modified:
  pep8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-04 22:09:11 UTC (rev 108827)
+++ PKGBUILD2014-04-05 02:33:56 UTC (rev 108828)
@@ -5,8 +5,8 @@
 
 pkgbase=pep8
 pkgname=($pkgbase $pkgbase-python2)
-pkgver=1.5.2
-pkgrel=2
+pkgver=1.5.3
+pkgrel=1
 pkgdesc=Python style guide checker
 arch=('any')
 url=http://github.com/jcrocholl/pep8/;



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

2014-04-04 Thread Felix Yan
Date: Saturday, April 5, 2014 @ 04:34:43
  Author: fyan
Revision: 108829

archrelease: copy trunk to community-any

Added:
  pep8/repos/community-any/LICENSE
(from rev 108828, pep8/trunk/LICENSE)
  pep8/repos/community-any/PKGBUILD
(from rev 108828, pep8/trunk/PKGBUILD)
Deleted:
  pep8/repos/community-any/LICENSE
  pep8/repos/community-any/PKGBUILD

--+
 LICENSE  |   48 +++
 PKGBUILD |  124 ++---
 2 files changed, 86 insertions(+), 86 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-04-05 02:33:56 UTC (rev 108828)
+++ LICENSE 2014-04-05 02:34:43 UTC (rev 108829)
@@ -1,24 +0,0 @@
-Copyright © 2006-2009 Johann C. Rocholl joh...@rocholl.net
-Copyright © 2009-2013 Florent Xicluna florent.xicl...@gmail.com
-
-Licensed under the terms of the Expat License
-
-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: pep8/repos/community-any/LICENSE (from rev 108828, pep8/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-04-05 02:34:43 UTC (rev 108829)
@@ -0,0 +1,24 @@
+Copyright © 2006-2009 Johann C. Rocholl joh...@rocholl.net
+Copyright © 2009-2013 Florent Xicluna florent.xicl...@gmail.com
+
+Licensed under the terms of the Expat License
+
+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-04-05 02:33:56 UTC (rev 108828)
+++ PKGBUILD2014-04-05 02:34:43 UTC (rev 108829)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Ismael Carnales icarnales at gmail dot com
-# Contributor: Sergey Mastykov smastykov[at]gmail[dot]com
-
-pkgbase=pep8
-pkgname=($pkgbase $pkgbase-python2)
-pkgver=1.5.2
-pkgrel=2
-pkgdesc=Python style guide checker
-arch=('any')
-url=http://github.com/jcrocholl/pep8/;
-license=('custom:Expat')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-source=(git+https://github.com/jcrocholl/${pkgbase}.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cp -r $pkgbase{,-py2}
-
-  sed -i '1s/env python$/python2/' $pkgbase-py2/pep8.py
-}
-
-build() {
-  cd ${srcdir}/${pkgbase}
-  python setup.py build
-
-  cd ${srcdir}/${pkgbase}-py2
-  python2 setup.py build
-}
-
-check() {
-  cd ${srcdir}/${pkgbase}
-  python setup.py test
-
-  cd ${srcdir}/${pkgbase}-py2
-  python2 setup.py test
-}
-
-package_pep8() {
-  depends=('python' 'python-setuptools')
-  provides=('pep8-python3')
-  conflicts=('pep8-python3')
-  replaces=('pep8-python3')
-
-  cd $pkgbase
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_pep8-python2() {
-  depends=('python2' 'python2-setuptools')
-  
-  cd $pkgbase-py2
-  python2 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-  

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

2014-04-04 Thread Felix Yan
Date: Saturday, April 5, 2014 @ 04:44:34
  Author: fyan
Revision: 108830

upgpkg: fcitx 4.2.8.3-4

- icu 53 rebuild

Modified:
  fcitx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 02:34:43 UTC (rev 108829)
+++ PKGBUILD2014-04-05 02:44:34 UTC (rev 108830)
@@ -6,7 +6,7 @@
 pkgbase=fcitx
 pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt4')
 pkgver=4.2.8.3
-pkgrel=3
+pkgrel=4
 groups=('fcitx-im')
 arch=('i686' 'x86_64')
 url=http://fcitx-im.org;
@@ -52,30 +52,7 @@
'libxfixes' 'dbus-core' 'icu')
   optdepends=('enchant: for word predication support'
   'opencc: optional engine to do chinese convert'
- 'fcitx-anthy: Hiragana text to Kana Kanji mixed text Japanese 
input method'
- 'fcitx-chewing: Intelligent Zhuyin input method library for 
traditional Chinese'
- 'fcitx-cloudpinyin: Standalone module for fcitx that uses pinyin 
API on the internet to provide additional input candidates'
- 'fcitx-configtool: GTK based config tool for Fcitx'
- 'fcitx-fbterm: Fbterm support for Fcitx'
- 'fcitx-googlepinyin: A fork from google pinyin on android for 
Fcitx'
- 'fcitx-gtk2: GTK2 IM Module for fcitx'
- 'fcitx-gtk3: GTK3 IM Module for fcitx'
- 'fcitx-hangul: Hangul (Korean) support for fcitx'
- 'fcitx-kkc: libkkc (Japanese Kana Kanji input method) engine for 
fcitx'
- 'fcitx-libpinyin: Fcitx Wrapper for libpinyin, Library to deal 
with pinyin'
- 'fcitx-m17n: Multilingual text processing library'
- 'fcitx-mozc: Fcitx Module of A Japanese Input Method for Chromium 
OS, Windows, Mac and Linux (the Open Source Edition of Google Japanese Input)'
- 'fcitx-qt4: QT4 IM Module for fcitx'
- 'fcitx-qt5: QT5 IM Module for fcitx'
- 'fcitx-rime: Rime input method engine (Traditional Chinese)'
- 'fcitx-sayura: Sinhala Transe IME engine for fcitx'
- 'fcitx-sunpinyin: Statistical Language Model based pinyin IME by 
Sun'
- 'fcitx-table-extra: Extra tables for Fcitx, including Boshiamy, 
Zhengma, Cangjie3, Cangjie5'
- 'fcitx-table-other: Provides some other tables for Fcitx, fork 
from ibus-table-others, scim-tables'
- 'fcitx-ui-light: Light weight xlib and xft based ui for fcitx'
- 'fcitx-unikey: Fcitx Wrapper for unikey'
- 'kcm-fcitx: KDE Config Module for Fcitx'
- 'gettext: for fcitx-po-parser')
+  'gettext: for fcitx-po-parser')
   install=fcitx.install
 
   cd build



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

2014-04-04 Thread Felix Yan
Date: Saturday, April 5, 2014 @ 04:45:42
  Author: fyan
Revision: 108831

archrelease: copy trunk to community-staging-x86_64

Added:
  fcitx/repos/community-staging-x86_64/
  fcitx/repos/community-staging-x86_64/PKGBUILD
(from rev 108830, fcitx/trunk/PKGBUILD)
  
fcitx/repos/community-staging-x86_64/add-a-context-variable-to-disable-punc.patch
(from rev 108830, fcitx/trunk/add-a-context-variable-to-disable-punc.patch)
  fcitx/repos/community-staging-x86_64/fcitx-gtk2.install
(from rev 108830, fcitx/trunk/fcitx-gtk2.install)
  fcitx/repos/community-staging-x86_64/fcitx-gtk3.install
(from rev 108830, fcitx/trunk/fcitx-gtk3.install)
  fcitx/repos/community-staging-x86_64/fcitx.install
(from rev 108830, fcitx/trunk/fcitx.install)

--+
 PKGBUILD |  105 +
 add-a-context-variable-to-disable-punc.patch |   59 ++
 fcitx-gtk2.install   |   11 ++
 fcitx-gtk3.install   |   11 ++
 fcitx.install|   14 +++
 5 files changed, 200 insertions(+)

Copied: fcitx/repos/community-staging-x86_64/PKGBUILD (from rev 108830, 
fcitx/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-04-05 02:45:42 UTC (rev 108831)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: csslayer wengxt AT gmail com
+
+pkgbase=fcitx
+pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt4')
+pkgver=4.2.8.3
+pkgrel=4
+groups=('fcitx-im')
+arch=('i686' 'x86_64')
+url=http://fcitx-im.org;
+license=('GPL')
+makedepends=('cmake' 'doxygen' 'gtk2' 'gtk3' 'qt4' 'icu' 'mesa' 'opencc' \
+ 'iso-codes' 'gobject-introspection' 'libxkbfile' 'enchant')
+source=(http://download.fcitx-im.org/$pkgbase/$pkgbase-${pkgver}_dict.tar.xz
+add-a-context-variable-to-disable-punc.patch)
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -p1 -i ../add-a-context-variable-to-disable-punc.patch
+}
+
+build() {
+  mkdir -p build
+  cd build
+
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONFDIR=/etc \
+-DFORCE_OPENCC=ON \
+-DFORCE_PRESAGE=ON \
+-DFORCE_ENCHANT=ON \
+-DENABLE_TEST=ON \
+-DENABLE_GTK2_IM_MODULE=ON \
+-DENABLE_GTK3_IM_MODULE=ON \
+-DENABLE_QT_IM_MODULE=ON \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4
+  make
+}
+
+check() {
+  cd build
+  make test
+}
+
+package_fcitx() {
+  pkgdesc=Flexible Context-aware Input Tool with eXtension
+  depends=('pango' 'libxinerama' 'gtk-update-icon-cache' 'shared-mime-info' \
+   'hicolor-icon-theme' 'desktop-file-utils' 'libxkbfile' \
+   'libxfixes' 'dbus-core' 'icu')
+  optdepends=('enchant: for word predication support'
+  'opencc: optional engine to do chinese convert'
+  'gettext: for fcitx-po-parser')
+  install=fcitx.install
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/lib/{gtk-2.0,gtk-3.0,qt4}
+  rm -r ${pkgdir}/usr/lib/fcitx/qt
+  rm -r ${pkgdir}/usr/include/fcitx-qt
+  rm ${pkgdir}/usr/lib/fcitx/libexec/fcitx-qt-gui-wrapper
+  rm ${pkgdir}/usr/lib/libfcitx-qt.so*
+  rm ${pkgdir}/usr/lib/pkgconfig/fcitx-qt.pc
+}
+
+package_fcitx-gtk2() {
+  pkgdesc='GTK2 IM Module for fcitx'
+  depends=('gtk2' fcitx=$pkgver)
+  install=fcitx-gtk2.install
+
+  cd ${srcdir}/build/src/frontend/gtk2
+  make DESTDIR=${pkgdir} install
+}
+
+package_fcitx-gtk3() {
+  pkgdesc='GTK3 IM Module for fcitx'
+  depends=('gtk3' fcitx=$pkgver)
+  install=fcitx-gtk3.install
+
+  cd ${srcdir}/build/src/frontend/gtk3
+  make DESTDIR=${pkgdir} install
+}
+
+package_fcitx-qt4() {
+  pkgdesc='Qt4 IM Module for fcitx'
+  depends=('qt4' fcitx=$pkgver)
+  replaces=('fcitx-qt')
+  provides=('fcitx-qt')
+  conflicts=('fcitx-qt')
+
+  cd ${srcdir}/build/src/frontend/qt
+  make DESTDIR=${pkgdir} install
+
+  cd ${srcdir}/build/tools/gui
+  make DESTDIR=${pkgdir} install
+
+  cd ${srcdir}/build/src/lib/fcitx-qt
+  make DESTDIR=${pkgdir} install
+}
+
+sha512sums=('93c7aa5209f344e1e89addb1dca7a76cde884e4467c0db5f79e758ea8ffb0fe1207ba1c507fb6574fe8223fa873ed5d1dd44835b70cf9254f5149df8e242e92d'
+
'ceb4d1b768f2f0c90c5bcde2c00a713883bed28d0e0e1f00a00c685020794d296045690cd55939127d0e204851248fe107e8a277571a8f7dbafde0eed29c340d')

Copied: 
fcitx/repos/community-staging-x86_64/add-a-context-variable-to-disable-punc.patch
 (from rev 108830, fcitx/trunk/add-a-context-variable-to-disable-punc.patch)
===
--- community-staging-x86_64/add-a-context-variable-to-disable-punc.patch   
(rev 0)
+++ community-staging-x86_64/add-a-context-variable-to-disable-punc.patch

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

2014-04-04 Thread Felix Yan
Date: Saturday, April 5, 2014 @ 05:06:18
  Author: fyan
Revision: 108832

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

Added:
  fcitx/repos/community-staging-i686/
  fcitx/repos/community-staging-i686/PKGBUILD
(from rev 108831, fcitx/trunk/PKGBUILD)
  
fcitx/repos/community-staging-i686/add-a-context-variable-to-disable-punc.patch
(from rev 108831, fcitx/trunk/add-a-context-variable-to-disable-punc.patch)
  fcitx/repos/community-staging-i686/fcitx-gtk2.install
(from rev 108831, fcitx/trunk/fcitx-gtk2.install)
  fcitx/repos/community-staging-i686/fcitx-gtk3.install
(from rev 108831, fcitx/trunk/fcitx-gtk3.install)
  fcitx/repos/community-staging-i686/fcitx.install
(from rev 108831, fcitx/trunk/fcitx.install)
  fcitx/repos/community-staging-x86_64/PKGBUILD
(from rev 108831, fcitx/trunk/PKGBUILD)
  
fcitx/repos/community-staging-x86_64/add-a-context-variable-to-disable-punc.patch
(from rev 108831, fcitx/trunk/add-a-context-variable-to-disable-punc.patch)
  fcitx/repos/community-staging-x86_64/fcitx-gtk2.install
(from rev 108831, fcitx/trunk/fcitx-gtk2.install)
  fcitx/repos/community-staging-x86_64/fcitx-gtk3.install
(from rev 108831, fcitx/trunk/fcitx-gtk3.install)
  fcitx/repos/community-staging-x86_64/fcitx.install
(from rev 108831, fcitx/trunk/fcitx.install)
Deleted:
  fcitx/repos/community-staging-x86_64/PKGBUILD
  
fcitx/repos/community-staging-x86_64/add-a-context-variable-to-disable-punc.patch
  fcitx/repos/community-staging-x86_64/fcitx-gtk2.install
  fcitx/repos/community-staging-x86_64/fcitx-gtk3.install
  fcitx/repos/community-staging-x86_64/fcitx.install

---+
 /PKGBUILD |  105 
++
 /add-a-context-variable-to-disable-punc.patch |   59 
+
 /fcitx-gtk2.install   |   11 +
 /fcitx-gtk3.install   |   11 +
 /fcitx.install|   14 +
 community-staging-i686/PKGBUILD   |  105 
++
 community-staging-i686/add-a-context-variable-to-disable-punc.patch   |   59 
+
 community-staging-i686/fcitx-gtk2.install |   11 +
 community-staging-i686/fcitx-gtk3.install |   11 +
 community-staging-i686/fcitx.install  |   14 +
 community-staging-x86_64/PKGBUILD |  105 
--
 community-staging-x86_64/add-a-context-variable-to-disable-punc.patch |   59 
-
 community-staging-x86_64/fcitx-gtk2.install   |   11 -
 community-staging-x86_64/fcitx-gtk3.install   |   11 -
 community-staging-x86_64/fcitx.install|   14 -
 15 files changed, 400 insertions(+), 200 deletions(-)

Copied: fcitx/repos/community-staging-i686/PKGBUILD (from rev 108831, 
fcitx/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-04-05 03:06:18 UTC (rev 108832)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: csslayer wengxt AT gmail com
+
+pkgbase=fcitx
+pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt4')
+pkgver=4.2.8.3
+pkgrel=4
+groups=('fcitx-im')
+arch=('i686' 'x86_64')
+url=http://fcitx-im.org;
+license=('GPL')
+makedepends=('cmake' 'doxygen' 'gtk2' 'gtk3' 'qt4' 'icu' 'mesa' 'opencc' \
+ 'iso-codes' 'gobject-introspection' 'libxkbfile' 'enchant')
+source=(http://download.fcitx-im.org/$pkgbase/$pkgbase-${pkgver}_dict.tar.xz
+add-a-context-variable-to-disable-punc.patch)
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -p1 -i ../add-a-context-variable-to-disable-punc.patch
+}
+
+build() {
+  mkdir -p build
+  cd build
+
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONFDIR=/etc \
+-DFORCE_OPENCC=ON \
+-DFORCE_PRESAGE=ON \
+-DFORCE_ENCHANT=ON \
+-DENABLE_TEST=ON \
+-DENABLE_GTK2_IM_MODULE=ON \
+-DENABLE_GTK3_IM_MODULE=ON \
+-DENABLE_QT_IM_MODULE=ON \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4
+  make
+}
+
+check() {
+  cd build
+  make test
+}
+
+package_fcitx() {
+  pkgdesc=Flexible Context-aware Input Tool with eXtension
+  depends=('pango' 'libxinerama' 'gtk-update-icon-cache' 'shared-mime-info' \
+   'hicolor-icon-theme' 'desktop-file-utils' 'libxkbfile' \
+   'libxfixes' 'dbus-core' 'icu')
+  optdepends=('enchant: for word predication support'
+  'opencc: optional engine to do chinese convert'
+  'gettext: for 

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

2014-04-04 Thread Felix Yan
Date: Saturday, April 5, 2014 @ 05:07:38
  Author: fyan
Revision: 108833

upgpkg: ibus-qt 1.3.2-3

- icu 53 rebuild

Modified:
  ibus-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 03:06:18 UTC (rev 108832)
+++ PKGBUILD2014-04-05 03:07:38 UTC (rev 108833)
@@ -6,7 +6,7 @@
 
 pkgname=ibus-qt
 pkgver=1.3.2
-pkgrel=2
+pkgrel=3
 pkgdesc='IBus qt library and IBus qt input method plugin'
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -28,4 +28,5 @@
   cd ${srcdir}/${pkgname}-${pkgver}-Source/build
   make DESTDIR=${pkgdir} install
 }
+
 md5sums=('e53cb59f993d0c93ba968330dbc62c22')



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

2014-04-04 Thread Felix Yan
Date: Saturday, April 5, 2014 @ 05:10:50
  Author: fyan
Revision: 108834

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

Added:
  ibus-qt/repos/community-staging-i686/
  ibus-qt/repos/community-staging-i686/PKGBUILD
(from rev 108833, ibus-qt/trunk/PKGBUILD)
  ibus-qt/repos/community-staging-x86_64/
  ibus-qt/repos/community-staging-x86_64/PKGBUILD
(from rev 108833, ibus-qt/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   32 
 community-staging-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: ibus-qt/repos/community-staging-i686/PKGBUILD (from rev 108833, 
ibus-qt/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-04-05 03:10:50 UTC (rev 108834)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: garion  garion @ mailoo.org 
+# Contributor: leemars
+
+pkgname=ibus-qt
+pkgver=1.3.2
+pkgrel=3
+pkgdesc='IBus qt library and IBus qt input method plugin'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url='http://ibus.googlecode.com'
+depends=('qt4' 'ibus' 'icu')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=(http://ibus.googlecode.com/files/${pkgname}-${pkgver}-Source.tar.gz;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}-Source
+  mkdir build
+  cd build
+  
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}-Source/build
+  make DESTDIR=${pkgdir} install
+}
+
+md5sums=('e53cb59f993d0c93ba968330dbc62c22')

Copied: ibus-qt/repos/community-staging-x86_64/PKGBUILD (from rev 108833, 
ibus-qt/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-04-05 03:10:50 UTC (rev 108834)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: garion  garion @ mailoo.org 
+# Contributor: leemars
+
+pkgname=ibus-qt
+pkgver=1.3.2
+pkgrel=3
+pkgdesc='IBus qt library and IBus qt input method plugin'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url='http://ibus.googlecode.com'
+depends=('qt4' 'ibus' 'icu')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=(http://ibus.googlecode.com/files/${pkgname}-${pkgver}-Source.tar.gz;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}-Source
+  mkdir build
+  cd build
+  
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}-Source/build
+  make DESTDIR=${pkgdir} install
+}
+
+md5sums=('e53cb59f993d0c93ba968330dbc62c22')



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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 05:36:25
  Author: lcarlier
Revision: 108835

upgpkg: iasl 20140325-1

upstream update 20140325

Modified:
  iasl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 03:10:50 UTC (rev 108834)
+++ PKGBUILD2014-04-05 03:36:25 UTC (rev 108835)
@@ -4,7 +4,7 @@
 # Contributor: Alessio 'mOlOk' Bolognino themo...@gmail.com
 
 pkgname=iasl
-pkgver=20140114
+pkgver=20140325
 pkgrel=1
 pkgdesc=Intel ACPI Source Language compiler
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 #install=iasl.install
 source=(http://acpica.org/sites/acpica/files/acpica-unix-${pkgver}.tar.gz
LICENSE)
-md5sums=('77d5aaa723b98314dae80cac1b33514d'
+md5sums=('08c2ee7ba766c76c9be379d121878cd8'
  '8615526144f69ea4e870d9bc37df9b29')
 
 build() {
@@ -26,12 +26,6 @@
 
   make clean
   make
-
-#  if [[ $CARCH == i686 ]]; then
-#make BITS=32
-#  else
-#make BITS=64
-#  fi
 }
 
 package() {



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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 05:36:38
  Author: lcarlier
Revision: 108836

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

Added:
  iasl/repos/community-i686/LICENSE
(from rev 108835, iasl/trunk/LICENSE)
  iasl/repos/community-i686/PKGBUILD
(from rev 108835, iasl/trunk/PKGBUILD)
  iasl/repos/community-i686/iasl.install
(from rev 108835, iasl/trunk/iasl.install)
  iasl/repos/community-x86_64/LICENSE
(from rev 108835, iasl/trunk/LICENSE)
  iasl/repos/community-x86_64/PKGBUILD
(from rev 108835, iasl/trunk/PKGBUILD)
  iasl/repos/community-x86_64/iasl.install
(from rev 108835, iasl/trunk/iasl.install)
Deleted:
  iasl/repos/community-i686/LICENSE
  iasl/repos/community-i686/PKGBUILD
  iasl/repos/community-i686/iasl.install
  iasl/repos/community-x86_64/LICENSE
  iasl/repos/community-x86_64/PKGBUILD
  iasl/repos/community-x86_64/iasl.install

---+
 /LICENSE  |   66 +++
 /PKGBUILD |   74 
 /iasl.install |   34 ++
 community-i686/LICENSE|   33 -
 community-i686/PKGBUILD   |   43 ---
 community-i686/iasl.install   |   17 -
 community-x86_64/LICENSE  |   33 -
 community-x86_64/PKGBUILD |   43 ---
 community-x86_64/iasl.install |   17 -
 9 files changed, 174 insertions(+), 186 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2014-04-05 03:36:25 UTC (rev 108835)
+++ community-i686/LICENSE  2014-04-05 03:36:38 UTC (rev 108836)
@@ -1,33 +0,0 @@
-IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING.
-Do not use or load this software and any associated materials (collectively, 
the Software) until you have carefully read the following terms and 
conditions. By loading or using the Software, you agree to the terms of this 
Agreement. If you do not wish to so agree, do not install or use the Software.
-
-1. COPYRIGHT NOTICE
-Some or all of this work - Copyright © 1999-2008, Intel Corp. All rights 
reserved.
-
-2. LICENSE
-
-2.1. This is your license from Intel Corp. under its intellectual property 
rights. You may have additional license terms from the party that provided you 
this software, covering your right to use that party's intellectual property 
rights.
-
-2.2. Intel grants, free of charge, to any person (Licensee) obtaining a copy 
of the source code appearing in this file (Covered Code) an irrevocable, 
perpetual, worldwide license under Intel's copyrights in the base code 
distributed originally by Intel (Original Intel Code) to copy, make 
derivatives, distribute, use and display any portion of the Covered Code in any 
form, with the right to sublicense such rights; and
-
-2.3. Intel grants Licensee a non-exclusive and non-transferable patent license 
(with the right to sublicense), under only those claims of Intel patents that 
are infringed by the Original Intel Code, to make, use, sell, offer to sell, 
and import the Covered Code and derivative works thereof solely to the minimum 
extent necessary to exercise the above copyright license, and in no event shall 
the patent license extend to any additions to or modifications of the Original 
Intel Code. No other license or right is granted directly or by implication, 
estoppel or otherwise; The above copyright and patent license is granted only 
if the following conditions are met:
-
-3. CONDITIONS
-
-3.1. Redistribution of Source with Rights to Further Distribute Source. 
Redistribution of source code of any substantial portion of the Covered Code or 
modification with rights to further distribute source must include the above 
Copyright Notice, the above License, this list of Conditions, and the following 
Disclaimer and Export Compliance provision. In addition, Licensee must cause 
all Covered Code to which Licensee contributes to contain a file documenting 
the changes Licensee made to create that Covered Code and the date of any 
change. Licensee must include in that file the documentation of any changes 
made by any predecessor Licensee. Licensee must include a prominent statement 
that the modification is derived, directly or indirectly, from Original Intel 
Code.
-
-3.2. Redistribution of Source with no Rights to Further Distribute Source. 
Redistribution of source code of any substantial portion of the Covered Code or 
modification without rights to further distribute source must include the 
following Disclaimer and Export Compliance provision in the documentation 
and/or other materials provided with distribution. In addition, Licensee may 
not authorize further sublicense of source of any portion of the Covered Code, 
and must include terms to the effect that the license from Licensee to its 
licensee is limited to the intellectual 

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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 06:19:44
  Author: lcarlier
Revision: 108837

upgpkg: openttd 1.4.0-1

upstream update 1.4.0

Modified:
  openttd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 03:36:38 UTC (rev 108836)
+++ PKGBUILD2014-04-05 04:19:44 UTC (rev 108837)
@@ -2,7 +2,7 @@
 # Maintainer: Vesa Kaihlavirta ve...@iki.fi
 
 pkgname=openttd
-pkgver=1.3.3
+pkgver=1.4.0
 pkgrel=1
 pkgdesc='An engine for running Transport Tycoon Deluxe.'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 optdepends=('openttd-opengfx: free graphics' 
 'openttd-opensfx: free soundset')
 
source=(http://binaries.openttd.org/releases/${pkgver}/${pkgname}-${pkgver}-source.tar.xz;)
-sha256sums=('6991ed2c0170481800c3a92a1b43546821a658de91d3ac7efe868588387eca5d')
+sha256sums=('d85bcb89d499a177a904f627ce407a086db8b26bc9a021030ee7f5534fbe0955')
 
 package() {
   cd ${pkgname}-${pkgver} 



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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 06:20:00
  Author: lcarlier
Revision: 108838

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

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

--+
 /PKGBUILD|   66 +
 /openttd.install |   34 +++
 community-i686/PKGBUILD  |   33 --
 community-i686/openttd.install   |   17 -
 community-x86_64/PKGBUILD|   33 --
 community-x86_64/openttd.install |   17 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-05 04:19:44 UTC (rev 108837)
+++ community-i686/PKGBUILD 2014-04-05 04:20:00 UTC (rev 108838)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Vesa Kaihlavirta ve...@iki.fi
-
-pkgname=openttd
-pkgver=1.3.3
-pkgrel=1
-pkgdesc='An engine for running Transport Tycoon Deluxe.'
-arch=('i686' 'x86_64')
-url='http://www.openttd.org'
-license=('GPL')
-depends=('libpng' 'sdl' 'icu' 'fontconfig' 'lzo2' 'hicolor-icon-theme' 
'desktop-file-utils' 'xz')
-install=openttd.install
-optdepends=('openttd-opengfx: free graphics' 
-'openttd-opensfx: free soundset')
-source=(http://binaries.openttd.org/releases/${pkgver}/${pkgname}-${pkgver}-source.tar.xz;)
-sha256sums=('6991ed2c0170481800c3a92a1b43546821a658de91d3ac7efe868588387eca5d')
-
-package() {
-  cd ${pkgname}-${pkgver} 
-
- ./configure \
---prefix-dir=/usr \
---binary-name=${pkgname} \
---binary-dir=bin \
---data-dir=share/${pkgname} \
---install-dir=${pkgdir} \
---doc-dir=share/doc/${pkgname} \
---menu-name=OpenTTD \
---personal-dir=.${pkgname}
-
-  make
-  make install
-}

Copied: openttd/repos/community-i686/PKGBUILD (from rev 108837, 
openttd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 04:20:00 UTC (rev 108838)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+
+pkgname=openttd
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='An engine for running Transport Tycoon Deluxe.'
+arch=('i686' 'x86_64')
+url='http://www.openttd.org'
+license=('GPL')
+depends=('libpng' 'sdl' 'icu' 'fontconfig' 'lzo2' 'hicolor-icon-theme' 
'desktop-file-utils' 'xz')
+install=openttd.install
+optdepends=('openttd-opengfx: free graphics' 
+'openttd-opensfx: free soundset')
+source=(http://binaries.openttd.org/releases/${pkgver}/${pkgname}-${pkgver}-source.tar.xz;)
+sha256sums=('d85bcb89d499a177a904f627ce407a086db8b26bc9a021030ee7f5534fbe0955')
+
+package() {
+  cd ${pkgname}-${pkgver} 
+
+ ./configure \
+--prefix-dir=/usr \
+--binary-name=${pkgname} \
+--binary-dir=bin \
+--data-dir=share/${pkgname} \
+--install-dir=${pkgdir} \
+--doc-dir=share/doc/${pkgname} \
+--menu-name=OpenTTD \
+--personal-dir=.${pkgname}
+
+  make
+  make install
+}

Deleted: community-i686/openttd.install
===
--- community-i686/openttd.install  2014-04-05 04:19:44 UTC (rev 108837)
+++ community-i686/openttd.install  2014-04-05 04:20:00 UTC (rev 108838)
@@ -1,17 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor  /dev/null 21
-  update-desktop-database  /dev/null 21
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  update-desktop-database  /dev/null 21
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor  /dev/null 21 
-  update-desktop-database  /dev/null 21
-}

Copied: openttd/repos/community-i686/openttd.install (from rev 108837, 
openttd/trunk/openttd.install)
===
--- community-i686/openttd.install  (rev 0)
+++ community-i686/openttd.install  2014-04-05 04:20:00 UTC (rev 108838)
@@ -0,0 +1,17 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor  /dev/null 21
+  update-desktop-database  /dev/null 21
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  update-desktop-database  /dev/null 21
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor  /dev/null 21 
+  

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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 06:30:13
  Author: lcarlier
Revision: 108839

upgpkg: openttd 1.4.0-2

icu 53.1 rebuild

Modified:
  openttd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 04:20:00 UTC (rev 108838)
+++ PKGBUILD2014-04-05 04:30:13 UTC (rev 108839)
@@ -3,7 +3,7 @@
 
 pkgname=openttd
 pkgver=1.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc='An engine for running Transport Tycoon Deluxe.'
 arch=('i686' 'x86_64')
 url='http://www.openttd.org'



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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 06:30:22
  Author: lcarlier
Revision: 108840

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

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

--+
 community-staging-i686/PKGBUILD  |   33 +
 community-staging-i686/openttd.install   |   17 ++
 community-staging-x86_64/PKGBUILD|   33 +
 community-staging-x86_64/openttd.install |   17 ++
 4 files changed, 100 insertions(+)

Copied: openttd/repos/community-staging-i686/PKGBUILD (from rev 108839, 
openttd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-04-05 04:30:22 UTC (rev 108840)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+
+pkgname=openttd
+pkgver=1.4.0
+pkgrel=2
+pkgdesc='An engine for running Transport Tycoon Deluxe.'
+arch=('i686' 'x86_64')
+url='http://www.openttd.org'
+license=('GPL')
+depends=('libpng' 'sdl' 'icu' 'fontconfig' 'lzo2' 'hicolor-icon-theme' 
'desktop-file-utils' 'xz')
+install=openttd.install
+optdepends=('openttd-opengfx: free graphics' 
+'openttd-opensfx: free soundset')
+source=(http://binaries.openttd.org/releases/${pkgver}/${pkgname}-${pkgver}-source.tar.xz;)
+sha256sums=('d85bcb89d499a177a904f627ce407a086db8b26bc9a021030ee7f5534fbe0955')
+
+package() {
+  cd ${pkgname}-${pkgver} 
+
+ ./configure \
+--prefix-dir=/usr \
+--binary-name=${pkgname} \
+--binary-dir=bin \
+--data-dir=share/${pkgname} \
+--install-dir=${pkgdir} \
+--doc-dir=share/doc/${pkgname} \
+--menu-name=OpenTTD \
+--personal-dir=.${pkgname}
+
+  make
+  make install
+}

Copied: openttd/repos/community-staging-i686/openttd.install (from rev 108839, 
openttd/trunk/openttd.install)
===
--- community-staging-i686/openttd.install  (rev 0)
+++ community-staging-i686/openttd.install  2014-04-05 04:30:22 UTC (rev 
108840)
@@ -0,0 +1,17 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor  /dev/null 21
+  update-desktop-database  /dev/null 21
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  update-desktop-database  /dev/null 21
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor  /dev/null 21 
+  update-desktop-database  /dev/null 21
+}

Copied: openttd/repos/community-staging-x86_64/PKGBUILD (from rev 108839, 
openttd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-04-05 04:30:22 UTC (rev 108840)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+
+pkgname=openttd
+pkgver=1.4.0
+pkgrel=2
+pkgdesc='An engine for running Transport Tycoon Deluxe.'
+arch=('i686' 'x86_64')
+url='http://www.openttd.org'
+license=('GPL')
+depends=('libpng' 'sdl' 'icu' 'fontconfig' 'lzo2' 'hicolor-icon-theme' 
'desktop-file-utils' 'xz')
+install=openttd.install
+optdepends=('openttd-opengfx: free graphics' 
+'openttd-opensfx: free soundset')
+source=(http://binaries.openttd.org/releases/${pkgver}/${pkgname}-${pkgver}-source.tar.xz;)
+sha256sums=('d85bcb89d499a177a904f627ce407a086db8b26bc9a021030ee7f5534fbe0955')
+
+package() {
+  cd ${pkgname}-${pkgver} 
+
+ ./configure \
+--prefix-dir=/usr \
+--binary-name=${pkgname} \
+--binary-dir=bin \
+--data-dir=share/${pkgname} \
+--install-dir=${pkgdir} \
+--doc-dir=share/doc/${pkgname} \
+--menu-name=OpenTTD \
+--personal-dir=.${pkgname}
+
+  make
+  make install
+}

Copied: openttd/repos/community-staging-x86_64/openttd.install (from rev 
108839, openttd/trunk/openttd.install)
===
--- community-staging-x86_64/openttd.install(rev 0)
+++ community-staging-x86_64/openttd.install2014-04-05 04:30:22 UTC (rev 
108840)
@@ -0,0 +1,17 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor  /dev/null 21
+  update-desktop-database  /dev/null 21
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  update-desktop-database  /dev/null 21
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t 

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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 06:37:36
  Author: lcarlier
Revision: 108841

upgpkg: lib32-sqlite 3.8.4.3-1

upstream update 3.8.4.3

Modified:
  lib32-sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 04:30:22 UTC (rev 108840)
+++ PKGBUILD2014-04-05 04:37:36 UTC (rev 108841)
@@ -5,10 +5,10 @@
 
 _pkgbasename=sqlite
 pkgname=lib32-sqlite
-_amalgamationver=3080402
+_amalgamationver=3080403
 _docver=${_amalgamationver}
 #_docver=3080401
-pkgver=3.8.4.2
+pkgver=3.8.4.3
 pkgrel=1
 pkgdesc=A C library that implements an SQL database engine (32-bit)
 arch=('x86_64')
@@ -17,7 +17,7 @@
 depends=(lib32-glibc $_pkgbasename)
 makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
 source=(http://www.sqlite.org/2014/sqlite-autoconf-${_amalgamationver}.tar.gz)
-sha1sums=('97d727b46ca67c98eb7a0fa3f57a1cfeb7f08f74')
+sha1sums=('70f3b100fa22e5bfebfe1b0a2102612e3c6c53fb')
 provides=(lib32-sqlite3=$pkgver)
 replaces=(lib32-sqlite3)
 conflicts=(lib32-sqlite3)



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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 06:37:44
  Author: lcarlier
Revision: 108842

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-sqlite/repos/multilib-x86_64/PKGBUILD
(from rev 108841, lib32-sqlite/trunk/PKGBUILD)
Deleted:
  lib32-sqlite/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-05 04:37:36 UTC (rev 108841)
+++ PKGBUILD2014-04-05 04:37:44 UTC (rev 108842)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Biru Ionut io...@archlinux.ro
-# Contributor: Mikko Seppälä t-r-...@mbnet.fi
-# Contributor: Kaos  gianlucaatlas dot gmail dot com 
-
-_pkgbasename=sqlite
-pkgname=lib32-sqlite
-_amalgamationver=3080402
-_docver=${_amalgamationver}
-#_docver=3080401
-pkgver=3.8.4.2
-pkgrel=1
-pkgdesc=A C library that implements an SQL database engine (32-bit)
-arch=('x86_64')
-license=('custom')
-url=http://www.sqlite.org/;
-depends=(lib32-glibc $_pkgbasename)
-makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
-source=(http://www.sqlite.org/2014/sqlite-autoconf-${_amalgamationver}.tar.gz)
-sha1sums=('97d727b46ca67c98eb7a0fa3f57a1cfeb7f08f74')
-provides=(lib32-sqlite3=$pkgver)
-replaces=(lib32-sqlite3)
-conflicts=(lib32-sqlite3)
-
-build() {
-  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
-
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  export LTLINK_EXTRAS=-ldl
-  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 \
---disable-static
-
-  make
-}
-
-
-package() {
-  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
-
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-sqlite/repos/multilib-x86_64/PKGBUILD (from rev 108841, 
lib32-sqlite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-05 04:37:44 UTC (rev 108842)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Biru Ionut io...@archlinux.ro
+# Contributor: Mikko Seppälä t-r-...@mbnet.fi
+# Contributor: Kaos  gianlucaatlas dot gmail dot com 
+
+_pkgbasename=sqlite
+pkgname=lib32-sqlite
+_amalgamationver=3080403
+_docver=${_amalgamationver}
+#_docver=3080401
+pkgver=3.8.4.3
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine (32-bit)
+arch=('x86_64')
+license=('custom')
+url=http://www.sqlite.org/;
+depends=(lib32-glibc $_pkgbasename)
+makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
+source=(http://www.sqlite.org/2014/sqlite-autoconf-${_amalgamationver}.tar.gz)
+sha1sums=('70f3b100fa22e5bfebfe1b0a2102612e3c6c53fb')
+provides=(lib32-sqlite3=$pkgver)
+replaces=(lib32-sqlite3)
+conflicts=(lib32-sqlite3)
+
+build() {
+  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
+
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  export LTLINK_EXTRAS=-ldl
+  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 \
+--disable-static
+
+  make
+}
+
+
+package() {
+  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
+
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}



[arch-commits] Commit in systemd/trunk (initcpio-install-systemd)

2014-04-04 Thread Dave Reisner
Date: Saturday, April 5, 2014 @ 06:58:15
  Author: dreisner
Revision: 209820

include gpt auto generator (FS#39569)

Modified:
  systemd/trunk/initcpio-install-systemd

--+
 initcpio-install-systemd |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: initcpio-install-systemd
===
--- initcpio-install-systemd2014-04-04 19:11:46 UTC (rev 209819)
+++ initcpio-install-systemd2014-04-05 04:58:15 UTC (rev 209820)
@@ -103,8 +103,9 @@
 add_binary /usr/lib/systemd/systemd /init
 add_binary /usr/bin/systemd-tmpfiles
 
-# generate sysroot.mount and sysroot-usr.mount
+# generators
 add_file /usr/lib/systemd/system-generators/systemd-fstab-generator
+add_file /usr/lib/systemd/system-generators/systemd-gpt-auto-generator
 
 # udev rules and systemd units
 map add_udev_rule $rules \



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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 07:22:30
  Author: lcarlier
Revision: 108844

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

Added:
  libfbclient/repos/community-staging-i686/
  libfbclient/repos/community-staging-i686/ChangeLog
(from rev 108843, libfbclient/trunk/ChangeLog)
  libfbclient/repos/community-staging-i686/LICENSE
(from rev 108843, libfbclient/trunk/LICENSE)
  libfbclient/repos/community-staging-i686/PKGBUILD
(from rev 108843, libfbclient/trunk/PKGBUILD)
  libfbclient/repos/community-staging-x86_64/
  libfbclient/repos/community-staging-x86_64/ChangeLog
(from rev 108843, libfbclient/trunk/ChangeLog)
  libfbclient/repos/community-staging-x86_64/LICENSE
(from rev 108843, libfbclient/trunk/LICENSE)
  libfbclient/repos/community-staging-x86_64/PKGBUILD
(from rev 108843, libfbclient/trunk/PKGBUILD)

+
 community-staging-i686/ChangeLog   |   26 +++
 community-staging-i686/LICENSE |   44 
 community-staging-i686/PKGBUILD|   47 +++
 community-staging-x86_64/ChangeLog |   26 +++
 community-staging-x86_64/LICENSE   |   44 
 community-staging-x86_64/PKGBUILD  |   47 +++
 6 files changed, 234 insertions(+)

Copied: libfbclient/repos/community-staging-i686/ChangeLog (from rev 108843, 
libfbclient/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2014-04-05 05:22:30 UTC (rev 108844)
@@ -0,0 +1,26 @@
+
+2009-06-08  Douglas Soares de Andrade  doug...@archlinux.org
+
+   * Rebuilt for the new icu
+
+2009-04-09  Douglas Soares de Andrade  doug...@archlinux.org
+
+   * Updated for i686: 2.1.2
+
+2008-08-10  Douglas Soares de Andrade  doug...@archlinux.org
+
+   * Updated for i686: 2.1.1
+
+2008-05-10  Mateusz Herych heni...@gmail.com
+
+   * Updated for x86_64 - 2.1.0
+
+2008-04-28  Douglas Soares de Andrade  d...@aur.archlinux.org
+
+   * Updated for i686 - 2.1.0
+   * Sure, firebird is the hell to build. Waiting contributions ;-)
+
+2007-07-06  tardo  ta...@nagi-fanboi.net
+   
+   * Built for x86_64
+   * This is the most fucked up pkg evar.

Copied: libfbclient/repos/community-staging-i686/LICENSE (from rev 108843, 
libfbclient/trunk/LICENSE)
===
--- community-staging-i686/LICENSE  (rev 0)
+++ community-staging-i686/LICENSE  2014-04-05 05:22:30 UTC (rev 108844)
@@ -0,0 +1,44 @@
+
+LICENSES
+
+
+The applicable and approved licenses for the source files
+of the Firebird RDBMS project are:
+
+  1) InterBase Public License (IPL), version 1.0
+ http://bdn.borland.com/article/0,1410,30198,00.html
+
+  2) Initial Developer's Public License (IDPL), version 1.0
+ http://www.ibphoenix.com/main.nfs?a=ibphoenixpage=ibp_idpl
+
+The IPL is copyright of Borland Corp., the other licenses are copyright
+by the source code authors and contributors.
+
+
+USAGE RULES
+---
+
+1) The source code which was released under the IPL must keep this license.
+   All modifications / adaptations of this code are still subjects of the IPL.
+
+2) The files that are derived from the IPL covered code, must also keep
+   this license. It means that if any new file contains some code covered by
+   the IPL, then this file should be released under the IPL too.
+
+3) The new files developed by the members of the Firebird project should
+   be released under the IDPL.
+
+4) The new files contributed by people who are not members of the Firebird
+   project should follow the rule #3. If an author (initial developer) doesn't
+   specify the license to be used, the person who applies the contributed code
+   to the CVS tree (a committer) becomes responsible for the license assigned
+   to the contributed code.
+
+5) Every non-binary file that exists in the CVS tree, should have a header
+   section which describes the license this code is released under. If a file
+   contains no header, it means that this code is freeware and nobody owns the
+   appropriate copyrights.
+
+
+You may find the exhibits for the approved licenses in /doc/license directory
+of the CVS tree.

Copied: libfbclient/repos/community-staging-i686/PKGBUILD (from rev 108843, 
libfbclient/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-04-05 05:22:30 UTC (rev 108844)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Carlier Laurent lordhea...@gmail.com
+# Contributor: Douglas Soares de Andrade d...@aur.archlinux.org
+
+pkgname=libfbclient
+pkgver=2.5.2.26540
+pkgrel=3
+pkgdesc=Client 

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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 07:22:17
  Author: lcarlier
Revision: 108843

upgpkg: libfbclient 2.5.2.26540-3

icu 53.1 rebuild

Modified:
  libfbclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 04:37:44 UTC (rev 108842)
+++ PKGBUILD2014-04-05 05:22:17 UTC (rev 108843)
@@ -4,7 +4,7 @@
 
 pkgname=libfbclient
 pkgver=2.5.2.26540
-pkgrel=2
+pkgrel=3
 pkgdesc=Client library for Firebird.
 arch=('i686' 'x86_64')
 url=http://www.firebirdsql.org/;



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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 07:26:57
  Author: lcarlier
Revision: 108845

upgpkg: minetest 0.4.9-3

enable translations and leveldb support (FS#39746)

Modified:
  minetest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 05:22:30 UTC (rev 108844)
+++ PKGBUILD2014-04-05 05:26:57 UTC (rev 108845)
@@ -4,12 +4,12 @@
 
 pkgname=minetest
 pkgver=0.4.9
-pkgrel=2
+pkgrel=3
 pkgdesc='An Infiniminer/Minecraft inspired game'
 arch=('i686' 'x86_64')
 url='http://minetest.net/'
 license=('GPL')
-depends=('sqlite' 'openal' 'libvorbis' 'curl' 'irrlicht' 'hicolor-icon-theme')
+depends=('sqlite' 'leveldb' 'openal' 'libvorbis' 'curl' 'irrlicht' 
'hicolor-icon-theme')
 makedepends=('cmake')
 install=minetest.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/minetest/${pkgname}/tarball/${pkgver}
@@ -29,7 +29,9 @@
 build() {
   cd $srcdir/minetest-minetest-*
 
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_GETTEXT=on \
+-DENABLE_LEVELDB=on 
   make
 }
 



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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 07:27:19
  Author: lcarlier
Revision: 108846

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

Added:
  minetest/repos/community-i686/PKGBUILD
(from rev 108845, minetest/trunk/PKGBUILD)
  minetest/repos/community-i686/minetest.install
(from rev 108845, minetest/trunk/minetest.install)
  minetest/repos/community-i686/optional-opengles.patch
(from rev 108845, minetest/trunk/optional-opengles.patch)
  minetest/repos/community-x86_64/PKGBUILD
(from rev 108845, minetest/trunk/PKGBUILD)
  minetest/repos/community-x86_64/minetest.install
(from rev 108845, minetest/trunk/minetest.install)
  minetest/repos/community-x86_64/optional-opengles.patch
(from rev 108845, minetest/trunk/optional-opengles.patch)
Deleted:
  minetest/repos/community-i686/PKGBUILD
  minetest/repos/community-i686/minetest.install
  minetest/repos/community-i686/optional-opengles.patch
  minetest/repos/community-x86_64/PKGBUILD
  minetest/repos/community-x86_64/minetest.install
  minetest/repos/community-x86_64/optional-opengles.patch

--+
 /PKGBUILD|   94 +
 /minetest.install|   34 ++
 /optional-opengles.patch |   60 ++
 community-i686/PKGBUILD  |   45 -
 community-i686/minetest.install  |   17 -
 community-i686/optional-opengles.patch   |   30 -
 community-x86_64/PKGBUILD|   45 -
 community-x86_64/minetest.install|   17 -
 community-x86_64/optional-opengles.patch |   30 -
 9 files changed, 188 insertions(+), 184 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-05 05:26:57 UTC (rev 108845)
+++ community-i686/PKGBUILD 2014-04-05 05:27:19 UTC (rev 108846)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier lordhea...@gmail.com
-# Contributor: Konsta Kokkinen k...@tsundere.fi
-
-pkgname=minetest
-pkgver=0.4.9
-pkgrel=2
-pkgdesc='An Infiniminer/Minecraft inspired game'
-arch=('i686' 'x86_64')
-url='http://minetest.net/'
-license=('GPL')
-depends=('sqlite' 'openal' 'libvorbis' 'curl' 'irrlicht' 'hicolor-icon-theme')
-makedepends=('cmake')
-install=minetest.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/minetest/${pkgname}/tarball/${pkgver}
-   
${pkgname}_game-${pkgver}.tar.gz::https://github.com/minetest/${pkgname}_game/tarball/${pkgver}
-optional-opengles.patch)
-md5sums=('2a2629befa86ef72924bcc0e489730c7'
- '097666443a71988cf2d41ebd9be31ec9'
- '116de5a70e13dbd0e2419fc7fb59ee3b')
-
-prepare() {
-  cd $srcdir/minetest-minetest-*
-
-  # Fix rendering with NVIDIA driver (FS#37918)
-  patch -Np1 -i $srcdir/optional-opengles.patch
-}
-
-build() {
-  cd $srcdir/minetest-minetest-*
-
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $srcdir/minetest-minetest-*
-
-  make DESTDIR=$pkgdir install
-
-  mv -v $srcdir/minetest-minetest_game-* 
$pkgdir/usr/share/minetest/games/minetest
-  
-  # small cleanup
-  rm $pkgdir/usr/share/minetest/games/minetest/.gitignore
-}

Copied: minetest/repos/community-i686/PKGBUILD (from rev 108845, 
minetest/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 05:27:19 UTC (rev 108846)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Laurent Carlier lordhea...@gmail.com
+# Contributor: Konsta Kokkinen k...@tsundere.fi
+
+pkgname=minetest
+pkgver=0.4.9
+pkgrel=3
+pkgdesc='An Infiniminer/Minecraft inspired game'
+arch=('i686' 'x86_64')
+url='http://minetest.net/'
+license=('GPL')
+depends=('sqlite' 'leveldb' 'openal' 'libvorbis' 'curl' 'irrlicht' 
'hicolor-icon-theme')
+makedepends=('cmake')
+install=minetest.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/minetest/${pkgname}/tarball/${pkgver}
+   
${pkgname}_game-${pkgver}.tar.gz::https://github.com/minetest/${pkgname}_game/tarball/${pkgver}
+optional-opengles.patch)
+md5sums=('2a2629befa86ef72924bcc0e489730c7'
+ '097666443a71988cf2d41ebd9be31ec9'
+ '116de5a70e13dbd0e2419fc7fb59ee3b')
+
+prepare() {
+  cd $srcdir/minetest-minetest-*
+
+  # Fix rendering with NVIDIA driver (FS#37918)
+  patch -Np1 -i $srcdir/optional-opengles.patch
+}
+
+build() {
+  cd $srcdir/minetest-minetest-*
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_GETTEXT=on \
+-DENABLE_LEVELDB=on 
+  make
+}
+
+package() {
+  cd $srcdir/minetest-minetest-*
+
+  make DESTDIR=$pkgdir install
+
+  mv -v $srcdir/minetest-minetest_game-* 
$pkgdir/usr/share/minetest/games/minetest
+  
+  # small cleanup
+  rm $pkgdir/usr/share/minetest/games/minetest/.gitignore
+}

Deleted: community-i686/minetest.install

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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 07:53:40
  Author: lcarlier
Revision: 108848

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

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

-+
 /PKGBUILD   |   94 ++
 /chmsee |4 +
 /chmsee.install |   22 
 community-i686/PKGBUILD |   47 ---
 community-i686/chmsee   |2 
 community-i686/chmsee.install   |   11 
 community-x86_64/PKGBUILD   |   47 ---
 community-x86_64/chmsee |2 
 community-x86_64/chmsee.install |   11 
 9 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-05 05:53:26 UTC (rev 108847)
+++ community-i686/PKGBUILD 2014-04-05 05:53:40 UTC (rev 108848)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer : Laurent Carlier lordhea...@gmail.com
-# Contributor: dionydonny dionydo...@gmail.com
-# Contributor: Ermanno er...@yahoo.it
-
-pkgname=chmsee
-pkgver=2.0.2
-pkgrel=3
-arch=('i686' 'x86_64')
-pkgdesc=A chm (MS HTML help file format) viewer based on xulrunner.
-url=http://chmsee.googlecode.com/;
-license=('GPL')
-depends=('xulrunner21.0' 'xulrunner28.0' 'chmlib' 'desktop-file-utils')
-makedepends=('python2')
-source=(https://chmsee.googlecode.com/files/$pkgname-$pkgver.tar.gz
-chmsee)
-install=chmsee.install
-md5sums=('c6a6ce009395c72ecf0530500ecda37c'
- '1787edd1de8aa75bd9fa75a5ab319e85')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i -e 's/^\(MaxVersion=\).*/\127.*/' application.ini
-}
-
-build() {
-  cd $pkgname-$pkgver/src
-  cp Makefile.arch Makefile
-  make -j1
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  install -d $pkgdir/usr/share/chmsee
-  cp -a * $pkgdir/usr/share/chmsee
-  rm -r $pkgdir/usr/share/chmsee/src
-  install -Dm644 data/chmsee.desktop.in \
-$pkgdir/usr/share/applications/chmsee.desktop
-
-  # Fix FS#25152
-  sed -i -e 's/_//g' $pkgdir/usr/share/applications/chmsee.desktop
-
-  install -d $pkgdir/usr/share/pixmaps
-  install -Dm644 data/chmsee-icon.png $pkgdir/usr/share/pixmaps
-  install -Dm755 ${srcdir}/chmsee $pkgdir/usr/bin/chmsee
-}

Copied: chmsee/repos/community-i686/PKGBUILD (from rev 108847, 
chmsee/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 05:53:40 UTC (rev 108848)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer : Laurent Carlier lordhea...@gmail.com
+# Contributor: dionydonny dionydo...@gmail.com
+# Contributor: Ermanno er...@yahoo.it
+
+pkgname=chmsee
+pkgver=2.0.2
+pkgrel=4
+arch=('i686' 'x86_64')
+pkgdesc=A chm (MS HTML help file format) viewer based on xulrunner.
+url=http://chmsee.googlecode.com/;
+license=('GPL')
+depends=('xulrunner21.0' 'xulrunner29.0' 'chmlib' 'desktop-file-utils')
+makedepends=('python2')
+source=(https://chmsee.googlecode.com/files/$pkgname-$pkgver.tar.gz
+chmsee)
+install=chmsee.install
+md5sums=('c6a6ce009395c72ecf0530500ecda37c'
+ '1787edd1de8aa75bd9fa75a5ab319e85')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's/^\(MaxVersion=\).*/\128.*/' application.ini
+}
+
+build() {
+  cd $pkgname-$pkgver/src
+  cp Makefile.arch Makefile
+  make -j1
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -d $pkgdir/usr/share/chmsee
+  cp -a * $pkgdir/usr/share/chmsee
+  rm -r $pkgdir/usr/share/chmsee/src
+  install -Dm644 data/chmsee.desktop.in \
+$pkgdir/usr/share/applications/chmsee.desktop
+
+  # Fix FS#25152
+  sed -i -e 's/_//g' $pkgdir/usr/share/applications/chmsee.desktop
+
+  install -d $pkgdir/usr/share/pixmaps
+  install -Dm644 data/chmsee-icon.png $pkgdir/usr/share/pixmaps
+  install -Dm755 ${srcdir}/chmsee $pkgdir/usr/bin/chmsee
+}

Deleted: community-i686/chmsee
===
--- community-i686/chmsee   2014-04-05 05:53:26 UTC (rev 108847)
+++ community-i686/chmsee   2014-04-05 05:53:40 UTC (rev 108848)
@@ -1,2 +0,0 @@
-#!/bin/sh
-xulrunner 

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

2014-04-04 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 07:53:26
  Author: lcarlier
Revision: 108847

upgpkg: chmsee 2.0.2-4

xulrunner 28.0 rebuild (FS#39431)

Modified:
  chmsee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 05:27:19 UTC (rev 108846)
+++ PKGBUILD2014-04-05 05:53:26 UTC (rev 108847)
@@ -5,12 +5,12 @@
 
 pkgname=chmsee
 pkgver=2.0.2
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 pkgdesc=A chm (MS HTML help file format) viewer based on xulrunner.
 url=http://chmsee.googlecode.com/;
 license=('GPL')
-depends=('xulrunner21.0' 'xulrunner28.0' 'chmlib' 'desktop-file-utils')
+depends=('xulrunner21.0' 'xulrunner29.0' 'chmlib' 'desktop-file-utils')
 makedepends=('python2')
 source=(https://chmsee.googlecode.com/files/$pkgname-$pkgver.tar.gz
 chmsee)
@@ -20,7 +20,7 @@
 
 prepare() {
   cd $pkgname-$pkgver
-  sed -i -e 's/^\(MaxVersion=\).*/\127.*/' application.ini
+  sed -i -e 's/^\(MaxVersion=\).*/\128.*/' application.ini
 }
 
 build() {