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

2016-06-03 Thread Felix Yan
Date: Saturday, June 4, 2016 @ 06:41:52
  Author: fyan
Revision: 268887

archrelease: copy trunk to extra-any

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

--+
 PKGBUILD |  144 ++---
 1 file changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-04 04:41:19 UTC (rev 268886)
+++ PKGBUILD2016-06-04 04:41:52 UTC (rev 268887)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=22.0.2
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools;
-makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'git')
-source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  # Remove vendored packages
-  rm -rv setuptools/pkg_resources/_vendor
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools/setup.cfg
-
-  cp -a setuptools{,-py2}
-
-  cd "$srcdir"/setuptools
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  cd "$srcdir"/setuptools
-  python setup.py build
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-
-  cd "$srcdir"/setuptools
-  LC_CTYPE=en_US.utf8 python setup.py ptr
-
-  cd "$srcdir"/setuptools-py2
-  LC_CTYPE=en_US.utf8 python2 setup.py ptr
-}
- 
-package_python-setuptools() {
-  depends=('python-packaging')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2-packaging')
-  provides=('python2-distribute' 'setuptools')
-  replaces=('python2-distribute' 'setuptools')
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 268886, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-04 04:41:52 UTC (rev 268887)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=22.0.5
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools;
+makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'git')
+source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  # Remove vendored packages
+  rm -rv setuptools/pkg_resources/_vendor
+
+  # Remove post-release tag since we are using stable tags
+  sed -e '/tag_build = .post/d' \
+  -e '/tag_date = 1/d' \
+  -i setuptools/setup.cfg
+
+  cp -a setuptools{,-py2}
+
+  cd "$srcdir"/setuptools
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
+
+  cd "$srcdir"/setuptools-py2
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
+}
+
+build() {
+  cd "$srcdir"/setuptools
+  python setup.py build
+
+  cd "$srcdir"/setuptools-py2
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+
+  cd "$srcdir"/setuptools
+  LC_CTYPE=en_US.utf8 python setup.py ptr
+
+  cd "$srcdir"/setuptools-py2
+  LC_CTYPE=en_US.utf8 python2 setup.py ptr
+}
+ 
+package_python-setuptools() {
+  depends=('python-packaging')
+  provides=('python-distribute')
+  replaces=('python-distribute')
+
+  cd "$srcdir"/setuptools
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
+}
+ 
+package_python2-setuptools() {
+  depends=('python2-packaging')
+  provides=('python2-distribute' 'setuptools')
+  replaces=('python2-distribute' 'setuptools')
+
+  cd "$srcdir"/setuptools-py2
+  

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

2016-06-03 Thread Felix Yan
Date: Saturday, June 4, 2016 @ 06:41:19
  Author: fyan
Revision: 268886

upgpkg: python-setuptools 1:22.0.5-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 22:27:50 UTC (rev 268885)
+++ PKGBUILD2016-06-04 04:41:19 UTC (rev 268886)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=22.0.2
+pkgver=22.0.5
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"


[arch-commits] Commit in python-repoze.profile/repos/community-any (PKGBUILD PKGBUILD)

2016-06-03 Thread Felix Yan
Date: Saturday, June 4, 2016 @ 06:40:35
  Author: fyan
Revision: 177843

archrelease: copy trunk to community-any

Added:
  python-repoze.profile/repos/community-any/PKGBUILD
(from rev 177842, python-repoze.profile/trunk/PKGBUILD)
Deleted:
  python-repoze.profile/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-04 04:40:01 UTC (rev 177842)
+++ PKGBUILD2016-06-04 04:40:35 UTC (rev 177843)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer : Felix Yan 
-
-_name=repoze.profile
-pkgname=(python-$_name python2-$_name)
-pkgver=2.1
-pkgrel=2
-pkgdesc="Aggregate profiling for WSGI requests"
-arch=('any')
-license=('custom:BSD')
-url="http://docs.repoze.org/profile/;
-makedepends=('python-setuptools' 'python2-setuptools' 'pyprof2calltree' 
'python2-pyprof2calltree')
-checkdepends=('python-nose' 'python2-nose')
-source=("http://pypi.python.org/packages/source/r/$_name/$_name-$pkgver.tar.gz;)
-md5sums=('50043eb6347f3f024d852062084a02b5')
-
-prepare() {
-  cp -a $_name-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/$_name-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/$_name-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/$_name-$pkgver"
-  nosetests3
-
-  cd "$srcdir/$_name-$pkgver-py2"
-  nosetests2
-}
-
-package_python-repoze.profile() {
-  depends=('python')
-  optdepends=('pyprof2calltree')
-
-  cd $_name-$pkgver
-  python setup.py install --root="${pkgdir}"
-  
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_python2-repoze.profile() {
-  depends=('python2-pyprof2calltree')
-
-  cd $_name-$pkgver-py2
-  python2 setup.py install --root="${pkgdir}"
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}

Copied: python-repoze.profile/repos/community-any/PKGBUILD (from rev 177842, 
python-repoze.profile/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-04 04:40:35 UTC (rev 177843)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer : Felix Yan 
+
+pkgname=(python-repoze.profile python2-repoze.profile)
+pkgver=2.2
+pkgrel=1
+pkgdesc="Aggregate profiling for WSGI requests"
+arch=('any')
+license=('custom:BSD')
+url="http://docs.repoze.org/profile/;
+makedepends=('python-setuptools' 'python2-setuptools' 'pyprof2calltree' 
'python2-pyprof2calltree')
+checkdepends=('python-nose' 'python2-nose')
+source=("https://pypi.io/packages/source/r/repoze.profile/repoze.profile-$pkgver.tar.gz;)
+md5sums=('565bd64ae4930e41d3e0839b309081bd')
+
+prepare() {
+  cp -a repoze.profile-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/repoze.profile-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/repoze.profile-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/repoze.profile-$pkgver
+  nosetests3
+
+  cd "$srcdir"/repoze.profile-$pkgver-py2
+  nosetests2
+}
+
+package_python-repoze.profile() {
+  depends=('python')
+  optdepends=('pyprof2calltree')
+
+  cd repoze.profile-$pkgver
+  python setup.py install --root="$pkgdir"
+  
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-repoze.profile() {
+  depends=('python2-pyprof2calltree')
+
+  cd repoze.profile-$pkgver-py2
+  python2 setup.py install --root="$pkgdir"
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


[arch-commits] Commit in python-repoze.profile/trunk (PKGBUILD)

2016-06-03 Thread Felix Yan
Date: Saturday, June 4, 2016 @ 06:40:01
  Author: fyan
Revision: 177842

upgpkg: python-repoze.profile 2.2-1

Modified:
  python-repoze.profile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 23:10:05 UTC (rev 177841)
+++ PKGBUILD2016-06-04 04:40:01 UTC (rev 177842)
@@ -1,10 +1,9 @@
 # $Id$
 # Maintainer : Felix Yan 
 
-_name=repoze.profile
-pkgname=(python-$_name python2-$_name)
-pkgver=2.1
-pkgrel=2
+pkgname=(python-repoze.profile python2-repoze.profile)
+pkgver=2.2
+pkgrel=1
 pkgdesc="Aggregate profiling for WSGI requests"
 arch=('any')
 license=('custom:BSD')
@@ -11,26 +10,26 @@
 url="http://docs.repoze.org/profile/;
 makedepends=('python-setuptools' 'python2-setuptools' 'pyprof2calltree' 
'python2-pyprof2calltree')
 checkdepends=('python-nose' 'python2-nose')
-source=("http://pypi.python.org/packages/source/r/$_name/$_name-$pkgver.tar.gz;)
-md5sums=('50043eb6347f3f024d852062084a02b5')
+source=("https://pypi.io/packages/source/r/repoze.profile/repoze.profile-$pkgver.tar.gz;)
+md5sums=('565bd64ae4930e41d3e0839b309081bd')
 
 prepare() {
-  cp -a $_name-$pkgver{,-py2}
+  cp -a repoze.profile-$pkgver{,-py2}
 }
 
 build() {
-  cd "$srcdir/$_name-$pkgver"
+  cd "$srcdir"/repoze.profile-$pkgver
   python setup.py build
 
-  cd "$srcdir/$_name-$pkgver-py2"
+  cd "$srcdir"/repoze.profile-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/$_name-$pkgver"
+  cd "$srcdir"/repoze.profile-$pkgver
   nosetests3
 
-  cd "$srcdir/$_name-$pkgver-py2"
+  cd "$srcdir"/repoze.profile-$pkgver-py2
   nosetests2
 }
 
@@ -38,17 +37,17 @@
   depends=('python')
   optdepends=('pyprof2calltree')
 
-  cd $_name-$pkgver
-  python setup.py install --root="${pkgdir}"
+  cd repoze.profile-$pkgver
+  python setup.py install --root="$pkgdir"
   
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
 }
 
 package_python2-repoze.profile() {
   depends=('python2-pyprof2calltree')
 
-  cd $_name-$pkgver-py2
-  python2 setup.py install --root="${pkgdir}"
+  cd repoze.profile-$pkgver-py2
+  python2 setup.py install --root="$pkgdir"
 
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
 }


[arch-commits] Commit in dwarffortress/repos/multilib-x86_64 (10 files)

2016-06-03 Thread Jan Steffens
Date: Saturday, June 4, 2016 @ 01:10:05
  Author: heftig
Revision: 177841

archrelease: copy trunk to multilib-x86_64

Added:
  dwarffortress/repos/multilib-x86_64/PKGBUILD
(from rev 177840, dwarffortress/trunk/PKGBUILD)
  dwarffortress/repos/multilib-x86_64/dwarffortress
(from rev 177840, dwarffortress/trunk/dwarffortress)
  dwarffortress/repos/multilib-x86_64/dwarffortress.desktop
(from rev 177840, dwarffortress/trunk/dwarffortress.desktop)
  dwarffortress/repos/multilib-x86_64/dwarffortress.install
(from rev 177840, dwarffortress/trunk/dwarffortress.install)
  dwarffortress/repos/multilib-x86_64/dwarffortress.png
(from rev 177840, dwarffortress/trunk/dwarffortress.png)
Deleted:
  dwarffortress/repos/multilib-x86_64/PKGBUILD
  dwarffortress/repos/multilib-x86_64/dwarffortress
  dwarffortress/repos/multilib-x86_64/dwarffortress.desktop
  dwarffortress/repos/multilib-x86_64/dwarffortress.install
  dwarffortress/repos/multilib-x86_64/dwarffortress.png

---+
 PKGBUILD  |  144 +++-
 dwarffortress |   40 ++---
 dwarffortress.desktop |   18 +++---
 dwarffortress.install |   18 +++---
 4 files changed, 109 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 23:08:10 UTC (rev 177840)
+++ PKGBUILD2016-06-03 23:10:05 UTC (rev 177841)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Daenyth 
-# Contributor: djnm 
-pkgname=dwarffortress
-pkgver=0.43.03
-_pkgver=43_03
-pkgrel=1
-pkgdesc="A single-player fantasy game in which you build a dwarven outpost or 
play an adventurer in a randomly generated world"
-arch=(i686 x86_64)
-url="http://www.bay12games.com/dwarves/;
-license=('custom:dwarffortress')
-depends=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew gcc-libs)
-makedepends=(git cmake)
-options=('!strip' '!buildflags')
-install=${pkgname}.install
-if [[ $CARCH == 'x86_64' ]]; then
-  makedepends+=(gcc-multilib)
-  depends=(gcc-libs-multilib lib32-gtk2 lib32-glu lib32-sdl_image 
lib32-libsndfile lib32-openal
-   lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
-  optdepends=('lib32-nvidia-utils: If you have nvidia graphics'
-  'lib32-catalyst-utils: If you have ATI graphics'
-  'lib32-alsa-lib: for alsa sound'
-  'lib32-libpulse: for pulse sound')
-fi
-# I made a fucking github repo with the sole purpose of unfucking df a bit
-# We try to compile whatever little bit of df is open source
-source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2
-git://github.com/svenstaro/dwarf_fortress_unfuck.git#tag=${pkgver}
-dwarffortress
-dwarffortress.desktop
-dwarffortress.png)
-sha256sums=('8725cb00188b4282fd5a3c4be10c3255f837b951ca48af90fa3a351e3a818337'
-'SKIP'
-'211eaec6559d4fd5c08341dbed1f27bfab997a57bdf61fd268f9940e244652c5'
-'e79e3d945c6cc0da58f4ca30a210c7bf1bc3149fd10406d1262a6214eb40445a'
-'83183abc70b11944720b0d86f4efd07468f786b03fa52fe429ca8e371f708e0f')
-
-build() {
-  cd $srcdir/dwarf_fortress_unfuck
-
-  cmake .
-  make
-}
-
-package() {
-  install -dm755 $pkgdir/opt/
-  cp -r $srcdir/df_linux $pkgdir/opt/$pkgname
-  rm -r $pkgdir/opt/$pkgname/df $pkgdir/opt/$pkgname/libs/* 
$pkgdir/opt/$pkgname/g_src
-
-  find $pkgdir/opt/$pkgname -type d -exec chmod 755 {} +
-  find $pkgdir/opt/$pkgname -type f -exec chmod 644 {} +
-
-  install -Dm755 $srcdir/df_linux/libs/Dwarf_Fortress 
$pkgdir/opt/$pkgname/libs/Dwarf_Fortress
-  install -Dm755 $srcdir/dwarf_fortress_unfuck/libgraphics.so 
$pkgdir/opt/$pkgname/libs/libgraphics.so
-  install -Dm755 $srcdir/dwarffortress $pkgdir/usr/bin/$pkgname
-
-  # No idea why we need this. Really. This isn't being loaded dynamically, 
it's not linked and
-  # in general there is no indication this is being used. However, it doesn't 
work without this symlink.
-  [[ $CARCH == "x86_64" ]] && ln -s /usr/lib32/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-  [[ $CARCH == "i686" ]] && ln -s /usr/lib/libpng.so 
$pkgdir/opt/$pkgname/libs/libpng.so.3
-
-  # Set pkgname in runscript
-  sed -i "s/^pkgname=.*/pkgname=$pkgname/" $pkgdir/usr/bin/$pkgname
-
-  # Desktop launcher with icon
-  install -Dm644 $srcdir/dwarffortress.desktop 
$pkgdir/usr/share/applications/"$pkgname".desktop
-  install -Dm644 $srcdir/dwarffortress.png 
$pkgdir/usr/share/pixmaps/"$pkgname".png
-
-  install -Dm644 $srcdir/df_linux/readme.txt 
$pkgdir/usr/share/licenses/$pkgname/readme.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dwarffortress/repos/multilib-x86_64/PKGBUILD (from rev 177840, 
dwarffortress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 23:10:05 UTC (rev 

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

2016-06-03 Thread Jan Steffens
Date: Saturday, June 4, 2016 @ 01:08:10
  Author: heftig
Revision: 177840

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-js17/repos/multilib-x86_64/PKGBUILD
(from rev 177839, lib32-js17/trunk/PKGBUILD)
  lib32-js17/repos/multilib-x86_64/js17-perl-milestone.patch
(from rev 177839, lib32-js17/trunk/js17-perl-milestone.patch)
Deleted:
  lib32-js17/repos/multilib-x86_64/PKGBUILD
  lib32-js17/repos/multilib-x86_64/js17-perl-milestone.patch

---+
 PKGBUILD  |  120 ++--
 js17-perl-milestone.patch |   44 
 2 files changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 23:07:40 UTC (rev 177839)
+++ PKGBUILD2016-06-03 23:08:10 UTC (rev 177840)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: jtts 
-# Contributor: Ionut Biru 
-
-pkgname=lib32-js17
-pkgver=17.0.0
-pkgrel=5
-pkgdesc='JavaScript interpreter and libraries (legacy)'
-arch=('x86_64')
-url='https://developer.mozilla.org/En/SpiderMonkey/17'
-license=('MPL')
-depends=('gcc-libs-multilib' 'js17' 'lib32-nspr' 'lib32-readline')
-makedepends=('gcc-multilib' 'lib32-libffi' 'python2' 'zip')
-source=("http://ftp.mozilla.org/pub/mozilla.org/js/mozjs${pkgver}.tar.gz;
-'js17-perl-milestone.patch')
-sha256sums=('321e964fe9386785d3bf80870640f2fa1c683e32fe988eeb201b04471c172fba'
-'c77994e0a89a33b1ad06f39b20bc605ee882a82cd373778f12eaa410c8db645f')
-
-prepare() {
-  cd mozjs${pkgver}
-
-  patch -Np1 -i ../js17-perl-milestone.patch
-}
-
-build() {
-  cd mozjs${pkgver}/js/src
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-  export RANLIB='ranlib'
-  export AR='ar'
-  export AS='as'
-  export LD='ld'
-  export STRIP='strip'
-
-  unset CPPFLAGS
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---sbindir='/usr/bin' \
---target='i686-pc-linux-gnu' \
---enable-{readline,threadsafe} \
---with-nspr-cflags="$(pkg-config --cflags nspr)" \
---with-nspr-libs="$(pkg-config --libs nspr)" \
---with-system-ffi
-  make
-}
-
-package() {
-  cd mozjs${pkgver}/js/src
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/{etc,usr/{bin,include,share}}
-  find "${pkgdir}"/usr/lib32/pkgconfig -type f -exec chmod -x {} +
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-js17/repos/multilib-x86_64/PKGBUILD (from rev 177839, 
lib32-js17/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 23:08:10 UTC (rev 177840)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-js17
+pkgver=17.0.0
+pkgrel=6
+pkgdesc='JavaScript interpreter and libraries (legacy)'
+arch=('x86_64')
+url='https://developer.mozilla.org/En/SpiderMonkey/17'
+license=('MPL')
+depends=('lib32-gcc-libs' 'js17' 'lib32-nspr' 'lib32-readline')
+makedepends=('gcc-multilib' 'lib32-libffi' 'python2' 'zip')
+source=("http://ftp.mozilla.org/pub/mozilla.org/js/mozjs${pkgver}.tar.gz;
+'js17-perl-milestone.patch')
+sha256sums=('321e964fe9386785d3bf80870640f2fa1c683e32fe988eeb201b04471c172fba'
+'c77994e0a89a33b1ad06f39b20bc605ee882a82cd373778f12eaa410c8db645f')
+
+prepare() {
+  cd mozjs${pkgver}
+
+  patch -Np1 -i ../js17-perl-milestone.patch
+}
+
+build() {
+  cd mozjs${pkgver}/js/src
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  export RANLIB='ranlib'
+  export AR='ar'
+  export AS='as'
+  export LD='ld'
+  export STRIP='strip'
+
+  unset CPPFLAGS
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--sbindir='/usr/bin' \
+--target='i686-pc-linux-gnu' \
+--enable-{readline,threadsafe} \
+--with-nspr-cflags="$(pkg-config --cflags nspr)" \
+--with-nspr-libs="$(pkg-config --libs nspr)" \
+--with-system-ffi
+  make
+}
+
+package() {
+  cd mozjs${pkgver}/js/src
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/{etc,usr/{bin,include,share}}
+  find "${pkgdir}"/usr/lib32/pkgconfig -type f -exec chmod -x {} +
+}
+
+# vim: ts=2 sw=2 et:

Deleted: js17-perl-milestone.patch
===
--- js17-perl-milestone.patch   2016-06-03 23:07:40 UTC (rev 177839)
+++ js17-perl-milestone.patch   2016-06-03 23:08:10 UTC (rev 177840)
@@ -1,22 +0,0 @@
-diff --git a/js/src/config/milestone.pl b/js/src/config/milestone.pl
 a/js/src/config/milestone.pl
-+++ b/js/src/config/milestone.pl
-@@ -50,17 +50,17 @@ if (!defined($OBJDIR)) { $OBJDIR = '.'; 
- $MILESTONE_FILE  = "$TOPSRCDIR/config/milestone.txt";
- @MILESTONE_PARTS = (0, 0, 0, 

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

2016-06-03 Thread Jan Steffens
Date: Saturday, June 4, 2016 @ 01:07:40
  Author: heftig
Revision: 177839

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libcdio/repos/multilib-x86_64/PKGBUILD
(from rev 177838, lib32-libcdio/trunk/PKGBUILD)
  lib32-libcdio/repos/multilib-x86_64/libcdio-0.83-linking.patch
(from rev 177838, lib32-libcdio/trunk/libcdio-0.83-linking.patch)
Deleted:
  lib32-libcdio/repos/multilib-x86_64/PKGBUILD
  lib32-libcdio/repos/multilib-x86_64/libcdio-0.83-linking.patch

+
 PKGBUILD   |   91 +--
 libcdio-0.83-linking.patch |   44 ++--
 2 files changed, 68 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 23:06:44 UTC (rev 177838)
+++ PKGBUILD2016-06-03 23:07:40 UTC (rev 177839)
@@ -1,45 +0,0 @@
-# Maintainer: schuay 
-# Contributor: GordonGR 
-# Contributor: Kazuo Teramoto 
-# Contributor: damir 
-
-pkgname=lib32-libcdio
-_pkgname=libcdio
-pkgver=0.93
-pkgrel=4
-pkgdesc="GNU Compact Disc Input and Control Library (32-bit)"
-arch=("x86_64")
-license=('GPL3')
-url="http://www.gnu.org/software/libcdio/;
-depends=('gcc-libs-multilib>=4.4.2' "libcdio")
-options=('!libtool')
-source=("http://ftp.gnu.org/gnu/libcdio/${_pkgname}-${pkgver}.tar.gz;
-"libcdio-0.83-linking.patch")
-
-prepare() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-patch -Np1 -i $srcdir/libcdio-0.83-linking.patch
-}  
-
-build() {
-export CC="gcc -m32"
-export CXX="g++ -m32"
-export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-cd "${srcdir}/${_pkgname}-${pkgver}"
-./configure --prefix=/usr --disable-vcd-info --enable-cpp-progs \
---libdir=/usr/lib32 --without-cd-drive --without-cd-info \
---without-cdda-player --without-cd-read --without-iso-info \
---without-iso-read --disable-cddb
-make
-}
-
-package() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-make -j1 DESTDIR="${pkgdir}" install
-
-rm -rf ${pkgdir}/usr/bin ${pkgdir}/usr/include ${pkgdir}/usr/share
-}
-
-md5sums=('d154476feaac5a7b5f180e83eaf3d689'
- '5a7f50209c03d5919d5b932f07871af7')

Copied: lib32-libcdio/repos/multilib-x86_64/PKGBUILD (from rev 177838, 
lib32-libcdio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 23:07:40 UTC (rev 177839)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: schuay 
+# Contributor: GordonGR 
+# Contributor: Kazuo Teramoto 
+# Contributor: damir 
+
+pkgname=lib32-libcdio
+_pkgname=libcdio
+pkgver=0.93
+pkgrel=5
+pkgdesc="GNU Compact Disc Input and Control Library (32-bit)"
+arch=("x86_64")
+license=('GPL3')
+url="http://www.gnu.org/software/libcdio/;
+depends=('lib32-gcc-libs' "libcdio")
+options=('!libtool')
+source=("http://ftp.gnu.org/gnu/libcdio/${_pkgname}-${pkgver}.tar.gz;
+"libcdio-0.83-linking.patch")
+
+prepare() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+patch -Np1 -i $srcdir/libcdio-0.83-linking.patch
+}  
+
+build() {
+export CC="gcc -m32"
+export CXX="g++ -m32"
+export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+cd "${srcdir}/${_pkgname}-${pkgver}"
+./configure --prefix=/usr --disable-vcd-info --enable-cpp-progs \
+--libdir=/usr/lib32 --without-cd-drive --without-cd-info \
+--without-cdda-player --without-cd-read --without-iso-info \
+--without-iso-read --disable-cddb
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+make -j1 DESTDIR="${pkgdir}" install
+
+rm -rf ${pkgdir}/usr/bin ${pkgdir}/usr/include ${pkgdir}/usr/share
+}
+
+md5sums=('d154476feaac5a7b5f180e83eaf3d689'
+ '5a7f50209c03d5919d5b932f07871af7')

Deleted: libcdio-0.83-linking.patch
===
--- libcdio-0.83-linking.patch  2016-06-03 23:06:44 UTC (rev 177838)
+++ libcdio-0.83-linking.patch  2016-06-03 23:07:40 UTC (rev 177839)
@@ -1,22 +0,0 @@
-diff -Naur libcdio-0.83-orig/example/C++/OO/Makefile.in 
libcdio-0.83/example/C++/OO/Makefile.in
 libcdio-0.83-orig/example/C++/OO/Makefile.in   2011-10-27 
18:02:31.0 +1000
-+++ libcdio-0.83/example/C++/OO/Makefile.in2012-02-18 11:10:07.369277231 
+1000
-@@ -315,15 +315,15 @@
- 
- isofile2_SOURCES = isofile2.cpp
- isofile2_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \
--$(LIBCDIOPP_LIBS) $(LTLIBICONV)
-+$(LIBCDIOPP_LIBS) $(LIBCDIO_LIBS) $(LTLIBICONV)
- 
- isolist_SOURCES = isolist.cpp
- isolist_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \
--$(LIBCDIOPP_LIBS) $(LTLIBICONV)
-+$(LIBCDIOPP_LIBS) $(LIBCDIO_LIBS) $(LTLIBICONV)
- 
- iso4_SOURCES = iso4.cpp
- iso4_LDADD = 

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

2016-06-03 Thread Jan Steffens
Date: Saturday, June 4, 2016 @ 01:06:44
  Author: heftig
Revision: 177838

0.43.03-2: Fix deps

Modified:
  dwarffortress/trunk/PKGBUILD

--+
 PKGBUILD |   20 +---
 1 file changed, 9 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 23:05:27 UTC (rev 177837)
+++ PKGBUILD2016-06-03 23:06:44 UTC (rev 177838)
@@ -5,24 +5,22 @@
 pkgname=dwarffortress
 pkgver=0.43.03
 _pkgver=43_03
-pkgrel=1
+pkgrel=2
 pkgdesc="A single-player fantasy game in which you build a dwarven outpost or 
play an adventurer in a randomly generated world"
 arch=(i686 x86_64)
 url="http://www.bay12games.com/dwarves/;
 license=('custom:dwarffortress')
-depends=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew gcc-libs)
+depends_i686=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew gcc-libs)
+depends_x86_64=(lib32-gcc-libs lib32-gtk2 lib32-glu lib32-sdl_image 
lib32-libsndfile lib32-openal
+lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
 makedepends=(git cmake)
+makedepends_x86_64=(gcc-multilib)
+optdepends_x86_64=('lib32-nvidia-utils: If you have nvidia graphics'
+   'lib32-catalyst-utils: If you have ATI graphics'
+   'lib32-alsa-lib: for alsa sound'
+   'lib32-libpulse: for pulse sound')
 options=('!strip' '!buildflags')
 install=${pkgname}.install
-if [[ $CARCH == 'x86_64' ]]; then
-  makedepends+=(gcc-multilib)
-  depends=(gcc-libs-multilib lib32-gtk2 lib32-glu lib32-sdl_image 
lib32-libsndfile lib32-openal
-   lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
-  optdepends=('lib32-nvidia-utils: If you have nvidia graphics'
-  'lib32-catalyst-utils: If you have ATI graphics'
-  'lib32-alsa-lib: for alsa sound'
-  'lib32-libpulse: for pulse sound')
-fi
 # I made a fucking github repo with the sole purpose of unfucking df a bit
 # We try to compile whatever little bit of df is open source
 source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2


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

2016-06-03 Thread Jan Steffens
Date: Saturday, June 4, 2016 @ 01:05:27
  Author: heftig
Revision: 177837

0.93-5: Fix dep

Modified:
  lib32-libcdio/trunk/PKGBUILD  (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 23:05:16 UTC (rev 177836)
+++ PKGBUILD2016-06-03 23:05:27 UTC (rev 177837)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: schuay 
 # Contributor: GordonGR 
 # Contributor: Kazuo Teramoto 
@@ -6,12 +7,12 @@
 pkgname=lib32-libcdio
 _pkgname=libcdio
 pkgver=0.93
-pkgrel=4
+pkgrel=5
 pkgdesc="GNU Compact Disc Input and Control Library (32-bit)"
 arch=("x86_64")
 license=('GPL3')
 url="http://www.gnu.org/software/libcdio/;
-depends=('gcc-libs-multilib>=4.4.2' "libcdio")
+depends=('lib32-gcc-libs' "libcdio")
 options=('!libtool')
 source=("http://ftp.gnu.org/gnu/libcdio/${_pkgname}-${pkgver}.tar.gz;
 "libcdio-0.83-linking.patch")


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


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

2016-06-03 Thread Jan Steffens
Date: Saturday, June 4, 2016 @ 01:05:16
  Author: heftig
Revision: 177836

17.0.0-6: Fix dep

Modified:
  lib32-js17/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 22:43:02 UTC (rev 177835)
+++ PKGBUILD2016-06-03 23:05:16 UTC (rev 177836)
@@ -5,12 +5,12 @@
 
 pkgname=lib32-js17
 pkgver=17.0.0
-pkgrel=5
+pkgrel=6
 pkgdesc='JavaScript interpreter and libraries (legacy)'
 arch=('x86_64')
 url='https://developer.mozilla.org/En/SpiderMonkey/17'
 license=('MPL')
-depends=('gcc-libs-multilib' 'js17' 'lib32-nspr' 'lib32-readline')
+depends=('lib32-gcc-libs' 'js17' 'lib32-nspr' 'lib32-readline')
 makedepends=('gcc-multilib' 'lib32-libffi' 'python2' 'zip')
 source=("http://ftp.mozilla.org/pub/mozilla.org/js/mozjs${pkgver}.tar.gz;
 'js17-perl-milestone.patch')


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

2016-06-03 Thread Jan Steffens
Date: Saturday, June 4, 2016 @ 00:43:02
  Author: heftig
Revision: 177835

archrelease: copy trunk to multilib-testing-x86_64

Added:
  gcc-multilib/repos/multilib-testing-x86_64/
  gcc-multilib/repos/multilib-testing-x86_64/PKGBUILD
(from rev 177834, gcc-multilib/trunk/PKGBUILD)

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

Copied: gcc-multilib/repos/multilib-testing-x86_64/PKGBUILD (from rev 177834, 
gcc-multilib/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2016-06-03 22:43:02 UTC (rev 177835)
@@ -0,0 +1,384 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+# NOTE: libtool requires rebuilt with each new gcc version
+
+pkgname=('gcc-multilib' 'gcc-libs-multilib' 'lib32-gcc-libs' 
'gcc-fortran-multilib' 'gcc-objc-multilib' 'gcc-ada-multilib' 'gcc-go-multilib')
+pkgver=6.1.1
+_pkgver=6
+_islver=0.16.1
+pkgrel=2
+_commit=36375203
+pkgdesc="The GNU Compiler Collection for multilib"
+arch=('x86_64')
+license=('GPL' 'LGPL' 'FDL' 'custom')
+url="http://gcc.gnu.org;
+makedepends=('binutils>=2.26' 'libmpc' 'gcc-ada-multilib' 'doxygen' 'git'
+ 'lib32-glibc>=2.23')
+checkdepends=('dejagnu' 'inetutils')
+options=('!emptydirs')
+source=(git://gcc.gnu.org/git/gcc.git#commit=${_commit}
+http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2)
+md5sums=('SKIP'
+ 'ac1f25a0677912952718a51f5bc20f32')
+
+# gcc-6.0 forces a changed triplet - need to address in pacman/devtools
+[[ $CARCH == "x86_64" ]] && CHOST=x86_64-pc-linux-gnu
+
+_libdir="usr/lib/gcc/$CHOST/$pkgver"
+
+prepare() {
+  cd ${srcdir}/gcc
+
+  # link isl for in-tree build
+  ln -s ../isl-${_islver} isl
+
+  # Do not run fixincludes
+  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
+
+  # Arch Linux installs x86_64 libraries /lib
+  [[ $CARCH == "x86_64" ]] && sed -i '/m64=/s/lib64/lib/' 
gcc/config/i386/t-linux64
+
+  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+  mkdir ${srcdir}/gcc-build
+}
+
+build() {
+  cd ${srcdir}/gcc-build
+
+  # using -pipe causes spurious test-suite failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
+  CFLAGS=${CFLAGS/-pipe/}
+  CXXFLAGS=${CXXFLAGS/-pipe/}
+
+  ${srcdir}/gcc/configure --prefix=/usr \
+  --libdir=/usr/lib --libexecdir=/usr/lib \
+  --mandir=/usr/share/man --infodir=/usr/share/info \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
+  --enable-shared --enable-threads=posix --enable-libmpx \
+  --with-system-zlib --with-isl --enable-__cxa_atexit \
+  --disable-libunwind-exceptions --enable-clocale=gnu \
+  --disable-libstdcxx-pch --disable-libssp \
+  --enable-gnu-unique-object --enable-linker-build-id \
+  --enable-lto --enable-plugin --enable-install-libiberty \
+  --with-linker-hash-style=gnu --enable-gnu-indirect-function \
+  --enable-multilib --disable-werror \
+  --enable-checking=release
+
+  make
+  
+  # make documentation
+  make -C $CHOST/libstdc++-v3/doc doc-man-doxygen
+}
+
+check() {
+  cd ${srcdir}/gcc-build
+
+  # increase stack size to prevent test failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
+  ulimit -s 32768
+
+  # do not abort on error as some are "expected"
+  make -k check || true
+  ${srcdir}/gcc/contrib/test_summary
+}
+
+package_lib32-gcc-libs()
+{
+  pkgdesc="Runtime libraries shipped by GCC (32-bit)"
+  depends=('lib32-glibc>=2.23')
+  options=('!emptydirs' '!strip')
+
+  cd ${srcdir}/gcc-build
+
+  make -C $CHOST/32/libgcc DESTDIR=${pkgdir} install-shared
+  rm ${pkgdir}/${_libdir}/32/libgcc_eh.a
+
+  for lib in libatomic \
+ libcilkrts \
+ libgfortran \
+ libgo \
+ libgomp \
+ libitm \
+ libquadmath \
+ libsanitizer/{a,l,ub}san \
+ libstdc++-v3/src \
+ libvtv; do
+make -C $CHOST/32/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
+  done
+
+  make -C $CHOST/32/libobjc DESTDIR=${pkgdir} install-libs
+
+  make -C $CHOST/32/libmpx DESTDIR=${pkgdir} install
+  rm ${pkgdir}/usr/lib32/libmpx.spec
+
+  # remove stuff in gcc-libs-multilib
+  rm -r ${pkgdir}/usr/lib
+
+  # Install Runtime Library Exception
+  install -Dm644 ${srcdir}/gcc/COPYING.RUNTIME \
+${pkgdir}/usr/share/licenses/lib32-gcc-libs/RUNTIME.LIBRARY.EXCEPTION
+}
+
+package_gcc-libs-multilib()
+{
+  pkgdesc="Runtime libraries shipped by GCC for multilib"
+  depends=('glibc>=2.23' "lib32-gcc-libs=$pkgver-$pkgrel")
+  

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

2016-06-03 Thread Levente Polyak
Date: Saturday, June 4, 2016 @ 00:27:39
  Author: anthraxx
Revision: 268884

upgpkg: mtr 0.86-3

Modified:
  mtr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 21:19:09 UTC (rev 268883)
+++ PKGBUILD2016-06-03 22:27:39 UTC (rev 268884)
@@ -1,42 +1,48 @@
-# $Id$
-# Maintainer : Ionut Biru 
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
 # Contributor: Douglas Soares de Andrade 
 
 pkgbase=mtr
-pkgname=(mtr mtr-gtk)
+pkgname=('mtr' 'mtr-gtk')
 pkgver=0.86
-pkgrel=2
+pkgrel=3
+pkgdesc='Combines the functionality of traceroute and ping into one tool'
+url="http://www.bitwizard.nl/mtr/;
 arch=('i686' 'x86_64')
-url="http://www.bitwizard.nl/mtr/;
-license=('GPL')
+license=('GPL2')
 makedepends=('ncurses' 'gtk2')
-source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz)
-md5sums=('8d63592c9d4579ef20cf491b41843eb2')
+source=(${pkgbase}-${pkgver}.tar.gz::ftp://ftp.bitwizard.nl/mtr/${pkgbase}-${pkgver}.tar.gz)
+sha512sums=('e649825ab77987e369e0cd353a502b31f4aafa54a934467db907cb171af45b11bd0a8725d567d923422f32b886ad272b42151514c71893f0ba947f8d18719583')
 
+prepare() {
+cp -ra ${pkgbase}-${pkgver}{,-cli}
+}
+
 build() {
-cp -r  $pkgbase-$pkgver $pkgbase-cli
-cd mtr-cli
+  (cd ${pkgbase}-${pkgver}-cli
 ./configure --prefix=/usr --without-gtk --sbindir=/usr/bin
 make
-
-cd "$srcdir/$pkgbase-$pkgver"
+  )
+  (cd ${pkgbase}-${pkgver}
 ./configure --prefix=/usr --sbindir=/usr/bin
 make
+  )
 }
 
 package_mtr() {
-pkgdesc="Combines the functionality of traceroute and ping into one tool 
(CLI version)"
-depends=('ncurses')
-cd mtr-cli
-make DESTDIR="$pkgdir" install
+  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(CLI version)'
+  depends=('ncurses')
+  cd ${pkgbase}-${pkgver}-cli
+  make DESTDIR="${pkgdir}" install
 }
 
 package_mtr-gtk() {
-pkgdesc="Combines the functionality of traceroute and ping into one tool 
(GTK version)"
-depends=('ncurses' "gtk2")
-conflicts=("mtr")
-provides=("mtr=$pkgver")
+  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(GTK version)'
+  depends=('ncurses' "gtk2")
+  conflicts=('mtr')
+  provides=("mtr=${pkgver}")
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
 
-cd $pkgbase-$pkgver
-make DESTDIR="$pkgdir" install
-}
+# vim: ts=2 sw=2 et:


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

2016-06-03 Thread Levente Polyak
Date: Saturday, June 4, 2016 @ 00:27:50
  Author: anthraxx
Revision: 268885

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

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

---+
 /PKGBUILD |   96 
 extra-i686/PKGBUILD   |   42 -
 extra-x86_64/PKGBUILD |   42 -
 3 files changed, 96 insertions(+), 84 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-03 22:27:39 UTC (rev 268884)
+++ extra-i686/PKGBUILD 2016-06-03 22:27:50 UTC (rev 268885)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=mtr
-pkgname=(mtr mtr-gtk)
-pkgver=0.86
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://www.bitwizard.nl/mtr/;
-license=('GPL')
-makedepends=('ncurses' 'gtk2')
-source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz)
-md5sums=('8d63592c9d4579ef20cf491b41843eb2')
-
-build() {
-cp -r  $pkgbase-$pkgver $pkgbase-cli
-cd mtr-cli
-./configure --prefix=/usr --without-gtk --sbindir=/usr/bin
-make
-
-cd "$srcdir/$pkgbase-$pkgver"
-./configure --prefix=/usr --sbindir=/usr/bin
-make
-}
-
-package_mtr() {
-pkgdesc="Combines the functionality of traceroute and ping into one tool 
(CLI version)"
-depends=('ncurses')
-cd mtr-cli
-make DESTDIR="$pkgdir" install
-}
-
-package_mtr-gtk() {
-pkgdesc="Combines the functionality of traceroute and ping into one tool 
(GTK version)"
-depends=('ncurses' "gtk2")
-conflicts=("mtr")
-provides=("mtr=$pkgver")
-
-cd $pkgbase-$pkgver
-make DESTDIR="$pkgdir" install
-}

Copied: mtr/repos/extra-i686/PKGBUILD (from rev 268884, mtr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-03 22:27:50 UTC (rev 268885)
@@ -0,0 +1,48 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=mtr
+pkgname=('mtr' 'mtr-gtk')
+pkgver=0.86
+pkgrel=3
+pkgdesc='Combines the functionality of traceroute and ping into one tool'
+url="http://www.bitwizard.nl/mtr/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('ncurses' 'gtk2')
+source=(${pkgbase}-${pkgver}.tar.gz::ftp://ftp.bitwizard.nl/mtr/${pkgbase}-${pkgver}.tar.gz)
+sha512sums=('e649825ab77987e369e0cd353a502b31f4aafa54a934467db907cb171af45b11bd0a8725d567d923422f32b886ad272b42151514c71893f0ba947f8d18719583')
+
+prepare() {
+cp -ra ${pkgbase}-${pkgver}{,-cli}
+}
+
+build() {
+  (cd ${pkgbase}-${pkgver}-cli
+./configure --prefix=/usr --without-gtk --sbindir=/usr/bin
+make
+  )
+  (cd ${pkgbase}-${pkgver}
+./configure --prefix=/usr --sbindir=/usr/bin
+make
+  )
+}
+
+package_mtr() {
+  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(CLI version)'
+  depends=('ncurses')
+  cd ${pkgbase}-${pkgver}-cli
+  make DESTDIR="${pkgdir}" install
+}
+
+package_mtr-gtk() {
+  pkgdesc='Combines the functionality of traceroute and ping into one tool 
(GTK version)'
+  depends=('ncurses' "gtk2")
+  conflicts=('mtr')
+  provides=("mtr=${pkgver}")
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-06-03 22:27:39 UTC (rev 268884)
+++ extra-x86_64/PKGBUILD   2016-06-03 22:27:50 UTC (rev 268885)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=mtr
-pkgname=(mtr mtr-gtk)
-pkgver=0.86
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://www.bitwizard.nl/mtr/;
-license=('GPL')
-makedepends=('ncurses' 'gtk2')
-source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz)
-md5sums=('8d63592c9d4579ef20cf491b41843eb2')
-
-build() {
-cp -r  $pkgbase-$pkgver $pkgbase-cli
-cd mtr-cli
-./configure --prefix=/usr --without-gtk --sbindir=/usr/bin
-make
-
-cd "$srcdir/$pkgbase-$pkgver"
-./configure --prefix=/usr --sbindir=/usr/bin
-make
-}
-
-package_mtr() {
-pkgdesc="Combines the functionality of traceroute and ping into one tool 
(CLI version)"
-depends=('ncurses')
-cd mtr-cli
-make DESTDIR="$pkgdir" install
-}
-
-package_mtr-gtk() {
-pkgdesc="Combines the functionality of traceroute and ping into one tool 
(GTK version)"
-depends=('ncurses' "gtk2")
-conflicts=("mtr")
-provides=("mtr=$pkgver")
-
-cd 

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

2016-06-03 Thread Jan Steffens
Date: Saturday, June 4, 2016 @ 00:16:22
  Author: heftig
Revision: 177834

6.1.1-2

Modified:
  gcc-multilib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 21:51:41 UTC (rev 177833)
+++ PKGBUILD2016-06-03 22:16:22 UTC (rev 177834)
@@ -9,8 +9,8 @@
 pkgver=6.1.1
 _pkgver=6
 _islver=0.16.1
-pkgrel=1
-_commit=80f78834
+pkgrel=2
+_commit=36375203
 pkgdesc="The GNU Compiler Collection for multilib"
 arch=('x86_64')
 license=('GPL' 'LGPL' 'FDL' 'custom')


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

2016-06-03 Thread Levente Polyak
Date: Friday, June 3, 2016 @ 23:51:31
  Author: anthraxx
Revision: 177832

addpkg: peda 1.1-1

Added:
  peda/
  peda/repos/
  peda/trunk/
  peda/trunk/PKGBUILD

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

Added: peda/trunk/PKGBUILD
===
--- peda/trunk/PKGBUILD (rev 0)
+++ peda/trunk/PKGBUILD 2016-06-03 21:51:31 UTC (rev 177832)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Contributor: Christian Rebischke 
+
+pkgname=peda
+pkgver=1.1
+pkgrel=1
+pkgdesc='Python Exploit Development Assistance for GDB'
+url='https://github.com/longld/peda'
+arch=('any')
+license=('custom:Creative Commons')
+depends=( 'gdb' 'binutils' 'nasm' 'python-six')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/longld/peda/archive/v${pkgver}.tar.gz)
+sha512sums=('fab97c2edf36605632639b38ec995a1fd06a7c309b2a50d4bd30dae257cc359eee3751e0792f39b408dc5b62a206e339ee4a4688bfcf60c5daeb8c032a16')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  rm lib/six.py
+  sed '/git clone/d' -i README.md
+  sed 's|~/peda/peda.py|/usr/share/peda/peda.py|g' -i README.md
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  msg2 'Compiling python objects...'
+  python -m compileall . >/dev/null
+  python -O -m compileall . >/dev/null
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 644 *.py -t "${pkgdir}/usr/share/${pkgname}"
+  install -Dm 644 __pycache__/* -t "${pkgdir}/usr/share/${pkgname}/__pycache__"
+  install -Dm 644 lib/*.py -t "${pkgdir}/usr/share/${pkgname}/lib"
+  install -Dm 644 lib/__pycache__/* -t 
"${pkgdir}/usr/share/${pkgname}/lib/__pycache__"
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+}
+
+# vim: ts=2 sw=2 et:


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

2016-06-03 Thread Levente Polyak
Date: Friday, June 3, 2016 @ 23:51:41
  Author: anthraxx
Revision: 177833

archrelease: copy trunk to community-any

Added:
  peda/repos/community-any/
  peda/repos/community-any/PKGBUILD
(from rev 177832, peda/trunk/PKGBUILD)

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

Copied: peda/repos/community-any/PKGBUILD (from rev 177832, peda/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-06-03 21:51:41 UTC (rev 177833)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Contributor: Christian Rebischke 
+
+pkgname=peda
+pkgver=1.1
+pkgrel=1
+pkgdesc='Python Exploit Development Assistance for GDB'
+url='https://github.com/longld/peda'
+arch=('any')
+license=('custom:Creative Commons')
+depends=( 'gdb' 'binutils' 'nasm' 'python-six')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/longld/peda/archive/v${pkgver}.tar.gz)
+sha512sums=('fab97c2edf36605632639b38ec995a1fd06a7c309b2a50d4bd30dae257cc359eee3751e0792f39b408dc5b62a206e339ee4a4688bfcf60c5daeb8c032a16')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  rm lib/six.py
+  sed '/git clone/d' -i README.md
+  sed 's|~/peda/peda.py|/usr/share/peda/peda.py|g' -i README.md
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  msg2 'Compiling python objects...'
+  python -m compileall . >/dev/null
+  python -O -m compileall . >/dev/null
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 644 *.py -t "${pkgdir}/usr/share/${pkgname}"
+  install -Dm 644 __pycache__/* -t "${pkgdir}/usr/share/${pkgname}/__pycache__"
+  install -Dm 644 lib/*.py -t "${pkgdir}/usr/share/${pkgname}/lib"
+  install -Dm 644 lib/__pycache__/* -t 
"${pkgdir}/usr/share/${pkgname}/lib/__pycache__"
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+}
+
+# vim: ts=2 sw=2 et:


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

2016-06-03 Thread Levente Polyak
Date: Friday, June 3, 2016 @ 23:20:18
  Author: anthraxx
Revision: 177831

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-03 21:17:17 UTC (rev 177830)
+++ community-i686/PKGBUILD 2016-06-03 21:20:18 UTC (rev 177831)
@@ -1,28 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: brent s. 
-# Contributor: Joris Steyn 
-# Contributor: Ondrej Kucera 
-
-pkgname=httping
-pkgver=2.4
-pkgrel=4
-pkgdesc='A ping-like tool for http-requests'
-url='https://www.vanheusden.com/httping/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('openssl' 'ncurses' 'fftw')
-source=(${pkgname}-${pkgver}.tgz::https://www.vanheusden.com/httping/${pkgname}-${pkgver}.tgz)
-sha512sums=('11d9e9e3b222548c9754cc0e7bf947f1a55ccc9f1a2401681f95d21b7b7a56c07665955b558a56d07a5c98497ea3644758e4f85006c42fda2134556be8d9e804')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --with-tfo
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: httping/repos/community-i686/PKGBUILD (from rev 177830, 
httping/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-03 21:20:18 UTC (rev 177831)
@@ -0,0 +1,28 @@
+# Maintainer: Levente Polyak 
+# Contributor: brent s. 
+# Contributor: Joris Steyn 
+# Contributor: Ondrej Kucera 
+
+pkgname=httping
+pkgver=2.4
+pkgrel=4
+pkgdesc='A ping-like tool for http-requests'
+url='https://www.vanheusden.com/httping/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('openssl' 'ncurses' 'fftw')
+source=(${pkgname}-${pkgver}.tgz::https://www.vanheusden.com/httping/${pkgname}-${pkgver}.tgz)
+sha512sums=('11d9e9e3b222548c9754cc0e7bf947f1a55ccc9f1a2401681f95d21b7b7a56c07665955b558a56d07a5c98497ea3644758e4f85006c42fda2134556be8d9e804')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --with-tfo
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-06-03 21:17:17 UTC (rev 177830)
+++ community-x86_64/PKGBUILD   2016-06-03 21:20:18 UTC (rev 177831)
@@ -1,28 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: brent s. 
-# Contributor: Joris Steyn 
-# Contributor: Ondrej Kucera 
-
-pkgname=httping
-pkgver=2.4
-pkgrel=4
-pkgdesc='A ping-like tool for http-requests'
-url='https://www.vanheusden.com/httping/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('openssl' 'ncurses' 'fftw')
-source=(${pkgname}-${pkgver}.tgz::https://www.vanheusden.com/httping/${pkgname}-${pkgver}.tgz)
-sha512sums=('11d9e9e3b222548c9754cc0e7bf947f1a55ccc9f1a2401681f95d21b7b7a56c07665955b558a56d07a5c98497ea3644758e4f85006c42fda2134556be8d9e804')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --with-tfo
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: httping/repos/community-x86_64/PKGBUILD (from rev 177830, 
httping/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-06-03 21:20:18 UTC (rev 177831)
@@ -0,0 +1,28 @@
+# Maintainer: Levente Polyak 
+# Contributor: brent s. 
+# Contributor: Joris Steyn 
+# Contributor: Ondrej Kucera 
+
+pkgname=httping
+pkgver=2.4
+pkgrel=4
+pkgdesc='A ping-like tool for http-requests'
+url='https://www.vanheusden.com/httping/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('openssl' 'ncurses' 'fftw')
+source=(${pkgname}-${pkgver}.tgz::https://www.vanheusden.com/httping/${pkgname}-${pkgver}.tgz)

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

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 23:19:09
  Author: heftig
Revision: 268883

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

Added:
  webkit2gtk/repos/extra-i686/PKGBUILD
(from rev 268882, webkit2gtk/trunk/PKGBUILD)
  webkit2gtk/repos/extra-i686/isnan.patch
(from rev 268882, webkit2gtk/trunk/isnan.patch)
  webkit2gtk/repos/extra-x86_64/PKGBUILD
(from rev 268882, webkit2gtk/trunk/PKGBUILD)
  webkit2gtk/repos/extra-x86_64/isnan.patch
(from rev 268882, webkit2gtk/trunk/isnan.patch)
Deleted:
  webkit2gtk/repos/extra-i686/PKGBUILD
  webkit2gtk/repos/extra-i686/isnan.patch
  webkit2gtk/repos/extra-x86_64/PKGBUILD
  webkit2gtk/repos/extra-x86_64/isnan.patch

--+
 /PKGBUILD|  102 +
 /isnan.patch |   24 ++
 extra-i686/PKGBUILD  |   51 --
 extra-i686/isnan.patch   |   12 -
 extra-x86_64/PKGBUILD|   51 --
 extra-x86_64/isnan.patch |   12 -
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-03 21:09:04 UTC (rev 268882)
+++ extra-i686/PKGBUILD 2016-06-03 21:19:09 UTC (rev 268883)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=webkit2gtk
-pkgver=2.12.2
-pkgrel=1
-pkgdesc="GTK+ Web content engine library"
-arch=('i686' 'x86_64')
-url="http://webkitgtk.org/;
-license=('custom')
-depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs'
-'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen')
-makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 
'python')
-optdepends=('gtk2: Netscape plugin support'
-'gst-plugins-base: free media decoding'
-'gst-plugins-good: media decoding'
-'gst-libav: nonfree media decoding')
-options=('!emptydirs')
-source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz)
-sha256sums=('9dc49b908b1c37da739703e1402a7f07c4ea9093b8ecfb34f20e8f74e328f124')
-
-prepare() {
-  mkdir build
-
-  cd webkitgtk-$pkgver
-  sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc
-  rm -r Source/ThirdParty/gtest/
-  rm -r Source/ThirdParty/qunit/
-}
-
-build() {
-  cd build
-  cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=/usr/lib 
-DLIBEXEC_INSTALL_DIR=/usr/lib/webkit2gtk-4.0 \
--DENABLE_GTKDOC=ON ../webkitgtk-$pkgver
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  install -m755 -d "$pkgdir/usr/share/licenses/webkit2gtk"
-  cd "$srcdir/webkitgtk-$pkgver/Source"
-  for f in $(find -name 'COPYING*' -or -name 'LICENSE*'); do
-echo $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
-cat $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
-echo "" >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
-  done
-}

Copied: webkit2gtk/repos/extra-i686/PKGBUILD (from rev 268882, 
webkit2gtk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-03 21:19:09 UTC (rev 268883)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=webkit2gtk
+pkgver=2.12.3
+pkgrel=1
+pkgdesc="GTK+ Web content engine library"
+arch=('i686' 'x86_64')
+url="http://webkitgtk.org/;
+license=('custom')
+depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs'
+'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen')
+makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 
'python')
+optdepends=('gtk2: Netscape plugin support'
+'gst-plugins-base: free media decoding'
+'gst-plugins-good: media decoding'
+'gst-libav: nonfree media decoding')
+options=('!emptydirs')
+source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz)
+sha256sums=('173cbb9a2eca23eee52e99965483ab25aa9c0569ef5b57041fc0c129cc26c307')
+
+prepare() {
+  mkdir build
+
+  cd webkitgtk-$pkgver
+  sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc
+  rm -r Source/ThirdParty/gtest/
+  rm -r Source/ThirdParty/qunit/
+}
+
+build() {
+  cd build
+  cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=/usr/lib 
-DLIBEXEC_INSTALL_DIR=/usr/lib/webkit2gtk-4.0 \
+-DENABLE_GTKDOC=ON ../webkitgtk-$pkgver
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/licenses/webkit2gtk"
+  cd "$srcdir/webkitgtk-$pkgver/Source"
+  for f in $(find -name 'COPYING*' -or -name 'LICENSE*'); do
+echo $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
+cat $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
+echo "" >> 

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

2016-06-03 Thread Levente Polyak
Date: Friday, June 3, 2016 @ 23:17:17
  Author: anthraxx
Revision: 177830

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

Added:
  httping/repos/community-i686/
  httping/repos/community-i686/PKGBUILD
(from rev 177829, httping/trunk/PKGBUILD)
  httping/repos/community-x86_64/
  httping/repos/community-x86_64/PKGBUILD
(from rev 177829, httping/trunk/PKGBUILD)

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

Copied: httping/repos/community-i686/PKGBUILD (from rev 177829, 
httping/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-03 21:17:17 UTC (rev 177830)
@@ -0,0 +1,28 @@
+# Maintainer: Levente Polyak 
+# Contributor: brent s. 
+# Contributor: Joris Steyn 
+# Contributor: Ondrej Kucera 
+
+pkgname=httping
+pkgver=2.4
+pkgrel=4
+pkgdesc='A ping-like tool for http-requests'
+url='https://www.vanheusden.com/httping/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('openssl' 'ncurses' 'fftw')
+source=(${pkgname}-${pkgver}.tgz::https://www.vanheusden.com/httping/${pkgname}-${pkgver}.tgz)
+sha512sums=('11d9e9e3b222548c9754cc0e7bf947f1a55ccc9f1a2401681f95d21b7b7a56c07665955b558a56d07a5c98497ea3644758e4f85006c42fda2134556be8d9e804')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --with-tfo
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: httping/repos/community-x86_64/PKGBUILD (from rev 177829, 
httping/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-06-03 21:17:17 UTC (rev 177830)
@@ -0,0 +1,28 @@
+# Maintainer: Levente Polyak 
+# Contributor: brent s. 
+# Contributor: Joris Steyn 
+# Contributor: Ondrej Kucera 
+
+pkgname=httping
+pkgver=2.4
+pkgrel=4
+pkgdesc='A ping-like tool for http-requests'
+url='https://www.vanheusden.com/httping/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('openssl' 'ncurses' 'fftw')
+source=(${pkgname}-${pkgver}.tgz::https://www.vanheusden.com/httping/${pkgname}-${pkgver}.tgz)
+sha512sums=('11d9e9e3b222548c9754cc0e7bf947f1a55ccc9f1a2401681f95d21b7b7a56c07665955b558a56d07a5c98497ea3644758e4f85006c42fda2134556be8d9e804')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --with-tfo
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2016-06-03 Thread Levente Polyak
Date: Friday, June 3, 2016 @ 23:17:04
  Author: anthraxx
Revision: 177829

addpkg: httping-git 2.4-4

Added:
  httping/
  httping/repos/
  httping/trunk/
  httping/trunk/PKGBUILD

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

Added: httping/trunk/PKGBUILD
===
--- httping/trunk/PKGBUILD  (rev 0)
+++ httping/trunk/PKGBUILD  2016-06-03 21:17:04 UTC (rev 177829)
@@ -0,0 +1,28 @@
+# Maintainer: Levente Polyak 
+# Contributor: brent s. 
+# Contributor: Joris Steyn 
+# Contributor: Ondrej Kucera 
+
+pkgname=httping
+pkgver=2.4
+pkgrel=4
+pkgdesc='A ping-like tool for http-requests'
+url='https://www.vanheusden.com/httping/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('openssl' 'ncurses' 'fftw')
+source=(${pkgname}-${pkgver}.tgz::https://www.vanheusden.com/httping/${pkgname}-${pkgver}.tgz)
+sha512sums=('11d9e9e3b222548c9754cc0e7bf947f1a55ccc9f1a2401681f95d21b7b7a56c07665955b558a56d07a5c98497ea3644758e4f85006c42fda2134556be8d9e804')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --with-tfo
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 23:09:04
  Author: heftig
Revision: 268882

2.12.3-1

Modified:
  webkit2gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 20:46:50 UTC (rev 268881)
+++ PKGBUILD2016-06-03 21:09:04 UTC (rev 268882)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=webkit2gtk
-pkgver=2.12.2
+pkgver=2.12.3
 pkgrel=1
 pkgdesc="GTK+ Web content engine library"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 'gst-libav: nonfree media decoding')
 options=('!emptydirs')
 source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz)
-sha256sums=('9dc49b908b1c37da739703e1402a7f07c4ea9093b8ecfb34f20e8f74e328f124')
+sha256sums=('173cbb9a2eca23eee52e99965483ab25aa9c0569ef5b57041fc0c129cc26c307')
 
 prepare() {
   mkdir build


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

2016-06-03 Thread Sergej Pupykin
Date: Friday, June 3, 2016 @ 22:54:35
  Author: spupykin
Revision: 177828

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

Added:
  qcad/repos/community-i686/PKGBUILD
(from rev 177827, qcad/trunk/PKGBUILD)
  qcad/repos/community-i686/QCad.desktop
(from rev 177827, qcad/trunk/QCad.desktop)
  qcad/repos/community-x86_64/PKGBUILD
(from rev 177827, qcad/trunk/PKGBUILD)
  qcad/repos/community-x86_64/QCad.desktop
(from rev 177827, qcad/trunk/QCad.desktop)
Deleted:
  qcad/repos/community-i686/PKGBUILD
  qcad/repos/community-i686/QCad.desktop
  qcad/repos/community-x86_64/PKGBUILD
  qcad/repos/community-x86_64/QCad.desktop

---+
 /PKGBUILD |  128 
 /QCad.desktop |   18 +
 community-i686/PKGBUILD   |   64 
 community-i686/QCad.desktop   |9 --
 community-x86_64/PKGBUILD |   64 
 community-x86_64/QCad.desktop |9 --
 6 files changed, 146 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-03 20:54:13 UTC (rev 177827)
+++ community-i686/PKGBUILD 2016-06-03 20:54:35 UTC (rev 177828)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefan Husmann 
-# Contributor: Giovanni Scafora 
-# Contributor: Daniel J Griffiths 
-
-pkgname=qcad
-pkgver=3.12.8.0
-pkgrel=1
-pkgdesc="A 2D CAD package based upon Qt"
-arch=('i686' 'x86_64')
-url="http://www.qcad.org;
-license=('GPL3')
-depends=('qtwebkit')
-makedepends=('glu' 'gdb')
-options=('libtool')
-source=($pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz
-QCad.desktop)
-md5sums=('64c1234fc020a6f2b8fdcc37dd9b49dc'
- '84f189dd152e7614a1265659dac6222d')
-
-prepare() {
-  cd ${srcdir}/qcad-$pkgver
-}
-
-build() {
-  cd ${srcdir}/qcad-$pkgver
-  qmake-qt4 -r
-  make all -j1
-}
-
-package() {
-  cd ${srcdir}/qcad-$pkgver
-
-  # remove project files
-  find . \( -name '*.pri' -or -name '.pro' -or -name '*.ts' \) -delete
-  find . \( -name 'Makefile' -name '.gitignore' \) -delete
-
-  install -dm755 ${pkgdir}/usr/share/{qcad,pixmaps,applications}
-  cp -r examples fonts libraries linetypes patterns plugins scripts ts 
${pkgdir}/usr/share/qcad
-  cp debug/* ${pkgdir}/usr/share/qcad
-
-  install -m755 readme.txt ${pkgdir}/usr/share/qcad/readme.txt
-
-  # qtwebkit
-  ln -sf /usr/lib/qt4/plugins/designer/libqwebview.so 
${pkgdir}/usr/share/qcad/plugins/designer/libqwebview.so
-  # qt
-  for sofiles in /usr/lib/qt4/plugins/imageformats/*.so
-  do
-ln -sf ${sofiles} 
${pkgdir}/usr/share/qcad/plugins/imageformats/${sofiles##/*/}
-  done
-  for sofiles in /usr/lib/qt4/plugins/sqldrivers/*.so
-  do
-ln -sf ${sofiles} 
${pkgdir}/usr/share/qcad/plugins/sqldrivers/${sofiles##/*/}
-  done
-
-  install -Dm644 scripts/qcad_icon.png 
${pkgdir}/usr/share/pixmaps/qcad_icon.png
-  install -Dm644 $srcdir/QCad.desktop 
${pkgdir}/usr/share/applications/QCad.desktop
-
-  install -dm0755 $pkgdir/usr/bin
-  echo -e 
'#!/bin/sh\nLD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"/usr/share/qcad"
 exec /usr/share/qcad/qcad-bin "$@"' >$pkgdir/usr/bin/qcad
-
-  chmod 0755 $pkgdir/usr/bin/qcad
-}

Copied: qcad/repos/community-i686/PKGBUILD (from rev 177827, 
qcad/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-03 20:54:35 UTC (rev 177828)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Stefan Husmann 
+# Contributor: Giovanni Scafora 
+# Contributor: Daniel J Griffiths 
+
+pkgname=qcad
+pkgver=3.15.2.2
+pkgrel=1
+pkgdesc="A 2D CAD package based upon Qt"
+arch=('i686' 'x86_64')
+url="http://www.qcad.org;
+license=('GPL3')
+depends=('qtwebkit')
+makedepends=('glu' 'gdb')
+options=('libtool')
+source=($pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz
+QCad.desktop)
+md5sums=('090e02efbed338c494c33c0f656c1f09'
+ '84f189dd152e7614a1265659dac6222d')
+
+prepare() {
+  cd ${srcdir}/qcad-$pkgver
+}
+
+build() {
+  cd ${srcdir}/qcad-$pkgver
+  qmake-qt4 -r
+  make all -j1
+}
+
+package() {
+  cd ${srcdir}/qcad-$pkgver
+
+  # remove project files
+  find . \( -name '*.pri' -or -name '.pro' -or -name '*.ts' \) -delete
+  find . \( -name 'Makefile' -name '.gitignore' \) -delete
+
+  install -dm755 ${pkgdir}/usr/share/{qcad,pixmaps,applications}
+  cp -r examples fonts libraries linetypes patterns plugins scripts ts 
${pkgdir}/usr/share/qcad
+  cp debug/* ${pkgdir}/usr/share/qcad
+
+  install -m755 readme.txt 

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

2016-06-03 Thread Sergej Pupykin
Date: Friday, June 3, 2016 @ 22:54:13
  Author: spupykin
Revision: 177827

upgpkg: qcad 3.15.2.2-1

upd

Modified:
  qcad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 19:22:05 UTC (rev 177826)
+++ PKGBUILD2016-06-03 20:54:13 UTC (rev 177827)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=qcad
-pkgver=3.12.8.0
+pkgver=3.15.2.2
 pkgrel=1
 pkgdesc="A 2D CAD package based upon Qt"
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 options=('libtool')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz
 QCad.desktop)
-md5sums=('64c1234fc020a6f2b8fdcc37dd9b49dc'
+md5sums=('090e02efbed338c494c33c0f656c1f09'
  '84f189dd152e7614a1265659dac6222d')
 
 prepare() {


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

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 22:46:50
  Author: heftig
Revision: 268881

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 268880, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  314 ++---
 1 file changed, 157 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 20:38:40 UTC (rev 268880)
+++ PKGBUILD2016-06-03 20:46:50 UTC (rev 268881)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Thomas Baechler 
-
-pkgbase=thunderbird-i18n
-pkgver=45.1.0
-pkgrel=1
-pkgdesc="Language pack for Thunderbird"
-arch=('any')
-url="http://www.mozilla.com/;
-license=('MPL' 'GPL')
-depends=("thunderbird>=$pkgver")
-
-_languages=(
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'br "Breton"'
-  'ca "Catalan"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-ES  "Spanish (Spain)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'he "Hebrew"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ko "Korean"'
-  'lt "Lithuanian"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta-LK  "Tamil (Sri Lanka)"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'vi "Vietnamese"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-i686/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("thunderbird-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Thunderbird"
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
-}
-
-md5sums=('12c938c4ed833505bdc46202d73cdf55'
- 'a5684445edfa85d950d629ef192e828c'
- 'e2c14e70e9cbdad451fe3e97c19d20d5'
- '6b872e1cf957b3cd5c40aff7bb5b5e32'
- 'bd5218bee1accfc4fe220cce00911f6c'
- 'c1d0bc850103547e6a1b3eb8f0ffb9cd'
- 'e3b659d4dea90ddb74f646986ae20e6a'
- '58e44651372bd885208c3efd5044565c'
- '312950f1b6e9d0df1549201ae29f67f3'
- 'f147fcdd2fa23d0a71cea4ea74223437'
- '93561db5d1eff8e9273a17bb53abe5f2'
- 'd5e6c744d210f6319cf11b2dff5a0320'
- '3ac66eddb6db25a3f2b6ca7daf5a8a01'
- 'a94ae138b80ef619d6cf1b081232e108'
- 'fde5e2679fe4d5dd1f5589f8d8093786'
- 'f8e86752f93957b9a07efa23f536bcb0'
- '163b4036ebd01bfc3e14f2142a51fa51'
- '3a13542433fedb48eabbf2313e9786a2'
- '027991a0bc235abd9b601e23259521ae'
- 'ce91a8f079628605667d70a97f8d318c'
- '09cad130aeb5675f93d2d81675a63c1f'
- '838dd0fd43ca04f09bd9a6be605f3b4f'
- '60abf009e000e1075d3ea125609bdb24'
- '25f7e5df5d68f2096841da62f62ede9e'
- '6b65f2c677d6bb6dfc9e100d010a748d'
- 'bdedc5fddf72a61c2ada976d8be2826d'
- '6b44840b0d0ff3a10f51236bd0b257b1'
- '6720b5fb70de37ed0533619c5f500bc3'
- '0f3a5cafa209c7caeb786d6581a96e5d'
- 'e0571a2b6a120bb735a88705d3fa1cf9'
- '955ff8994d1c421a97cdc41eae854a7f'
- '7563e6d235f1fda496087472a1fe61f8'
- 'c9a03da99bfb909709eff56c7b881a60'
- '7ef1afa86c77d683218f95b900f05499'
- 'ec5bde3ce33d2d1c6f53f5995b6fd933'
- '31cf185fe23c3864d06d668d1d6c0935'
- 'e1d8e15069d8d551a20528cd6d36453b'
- '04e8801f3a1ca3ff2c3ed7915119da48'
- '2d175df68183852bd9eb40ab09c3f758'
- '3748664852f99f3f778a655c77208fde'
- 'bbca547dcd4374c62d942d6de4349d9b'
- 

[arch-commits] Commit in thunderbird/repos (32 files)

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 22:38:40
  Author: heftig
Revision: 268880

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

Added:
  thunderbird/repos/extra-i686/PKGBUILD
(from rev 268879, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-i686/firefox-gcc-6.0.patch
(from rev 268879, thunderbird/trunk/firefox-gcc-6.0.patch)
  thunderbird/repos/extra-i686/mozconfig
(from rev 268879, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-i686/mozilla-1228540-1.patch
(from rev 268879, thunderbird/trunk/mozilla-1228540-1.patch)
  thunderbird/repos/extra-i686/mozilla-1228540.patch
(from rev 268879, thunderbird/trunk/mozilla-1228540.patch)
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
(from rev 268879, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-i686/thunderbird.desktop
(from rev 268879, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-i686/vendor.js
(from rev 268879, thunderbird/trunk/vendor.js)
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 268879, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/firefox-gcc-6.0.patch
(from rev 268879, thunderbird/trunk/firefox-gcc-6.0.patch)
  thunderbird/repos/extra-x86_64/mozconfig
(from rev 268879, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-x86_64/mozilla-1228540-1.patch
(from rev 268879, thunderbird/trunk/mozilla-1228540-1.patch)
  thunderbird/repos/extra-x86_64/mozilla-1228540.patch
(from rev 268879, thunderbird/trunk/mozilla-1228540.patch)
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
(from rev 268879, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 268879, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/vendor.js
(from rev 268879, thunderbird/trunk/vendor.js)
Deleted:
  thunderbird/repos/extra-i686/PKGBUILD
  thunderbird/repos/extra-i686/firefox-gcc-6.0.patch
  thunderbird/repos/extra-i686/mozconfig
  thunderbird/repos/extra-i686/mozilla-1228540-1.patch
  thunderbird/repos/extra-i686/mozilla-1228540.patch
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
  thunderbird/repos/extra-i686/thunderbird.desktop
  thunderbird/repos/extra-i686/vendor.js
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/firefox-gcc-6.0.patch
  thunderbird/repos/extra-x86_64/mozconfig
  thunderbird/repos/extra-x86_64/mozilla-1228540-1.patch
  thunderbird/repos/extra-x86_64/mozilla-1228540.patch
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop
  thunderbird/repos/extra-x86_64/vendor.js

+
 /PKGBUILD  |  232 
 /firefox-gcc-6.0.patch |   52 
 /mozconfig |   66 
 /mozilla-1228540-1.patch   |  168 
 /mozilla-1228540.patch |18276 +++
 /thunderbird-install-dir.patch |   24 
 /thunderbird.desktop   |  346 
 /vendor.js |   18 
 extra-i686/PKGBUILD|  113 
 extra-i686/firefox-gcc-6.0.patch   |   26 
 extra-i686/mozconfig   |   34 
 extra-i686/mozilla-1228540-1.patch |   84 
 extra-i686/mozilla-1228540.patch   | 9138 -
 extra-i686/thunderbird-install-dir.patch   |   12 
 extra-i686/thunderbird.desktop |  173 
 extra-i686/vendor.js   |   12 
 extra-x86_64/PKGBUILD  |  113 
 extra-x86_64/firefox-gcc-6.0.patch |   26 
 extra-x86_64/mozconfig |   34 
 extra-x86_64/mozilla-1228540-1.patch   |   84 
 extra-x86_64/mozilla-1228540.patch | 9138 -
 extra-x86_64/thunderbird-install-dir.patch |   12 
 extra-x86_64/thunderbird.desktop   |  173 
 extra-x86_64/vendor.js |   12 
 24 files changed, 19182 insertions(+), 19184 deletions(-)

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


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

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 22:29:50
  Author: heftig
Revision: 268879

45.1.1-1

Modified:
  thunderbird-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 20:24:10 UTC (rev 268878)
+++ PKGBUILD2016-06-03 20:29:50 UTC (rev 268879)
@@ -4,13 +4,12 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=thunderbird-i18n
-pkgver=45.1.0
+pkgver=45.1.1
 pkgrel=1
 pkgdesc="Language pack for Thunderbird"
 arch=('any')
 url="http://www.mozilla.com/;
 license=('MPL' 'GPL')
-depends=("thunderbird>=$pkgver")
 
 _languages=(
   'ar "Arabic"'
@@ -93,65 +92,66 @@
 
 _package() {
   pkgdesc="$2 language pack for Thunderbird"
+  depends=("thunderbird>=$pkgver")
   install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
 
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
 }
 
-md5sums=('12c938c4ed833505bdc46202d73cdf55'
- 'a5684445edfa85d950d629ef192e828c'
- 'e2c14e70e9cbdad451fe3e97c19d20d5'
- '6b872e1cf957b3cd5c40aff7bb5b5e32'
- 'bd5218bee1accfc4fe220cce00911f6c'
- 'c1d0bc850103547e6a1b3eb8f0ffb9cd'
- 'e3b659d4dea90ddb74f646986ae20e6a'
- '58e44651372bd885208c3efd5044565c'
- '312950f1b6e9d0df1549201ae29f67f3'
- 'f147fcdd2fa23d0a71cea4ea74223437'
- '93561db5d1eff8e9273a17bb53abe5f2'
- 'd5e6c744d210f6319cf11b2dff5a0320'
- '3ac66eddb6db25a3f2b6ca7daf5a8a01'
- 'a94ae138b80ef619d6cf1b081232e108'
- 'fde5e2679fe4d5dd1f5589f8d8093786'
- 'f8e86752f93957b9a07efa23f536bcb0'
- '163b4036ebd01bfc3e14f2142a51fa51'
- '3a13542433fedb48eabbf2313e9786a2'
- '027991a0bc235abd9b601e23259521ae'
- 'ce91a8f079628605667d70a97f8d318c'
- '09cad130aeb5675f93d2d81675a63c1f'
- '838dd0fd43ca04f09bd9a6be605f3b4f'
- '60abf009e000e1075d3ea125609bdb24'
- '25f7e5df5d68f2096841da62f62ede9e'
- '6b65f2c677d6bb6dfc9e100d010a748d'
- 'bdedc5fddf72a61c2ada976d8be2826d'
- '6b44840b0d0ff3a10f51236bd0b257b1'
- '6720b5fb70de37ed0533619c5f500bc3'
- '0f3a5cafa209c7caeb786d6581a96e5d'
- 'e0571a2b6a120bb735a88705d3fa1cf9'
- '955ff8994d1c421a97cdc41eae854a7f'
- '7563e6d235f1fda496087472a1fe61f8'
- 'c9a03da99bfb909709eff56c7b881a60'
- '7ef1afa86c77d683218f95b900f05499'
- 'ec5bde3ce33d2d1c6f53f5995b6fd933'
- '31cf185fe23c3864d06d668d1d6c0935'
- 'e1d8e15069d8d551a20528cd6d36453b'
- '04e8801f3a1ca3ff2c3ed7915119da48'
- '2d175df68183852bd9eb40ab09c3f758'
- '3748664852f99f3f778a655c77208fde'
- 'bbca547dcd4374c62d942d6de4349d9b'
- '5727cc3fe475d4c1ecdd47d1219f2b30'
- '57ce0bdc469438ab2d662d36b52715f4'
- '5a308c5a71203c7f7017add5fb071f49'
- 'd23d5a3e94ada1889d7e6acc01aa6ffb'
- 'fc9375eef570d4bdd6e3b7aa419c401a'
- '1ca0a9e70e77cab75342aa0dbf916fec'
- '3cfd658e1b7ada226a7d8996c7980d2e'
- 'f9e75f9d0e3b49fed11334ddf88e80c9'
- '5268dceada65f0976d843d411fbb2376'
- 'ee5cf57ebe3b4de20b92f5fa4d44334e'
- '4de031f836e408e133d2da23bf491206'
- '48e171aba339921a46950d341db720f1'
- 'f8386ccb67480b2a8908346505921c43'
- '81a785470b4cd43a0b1e63bc70db611b'
- 'f4b02611488dcae9d0e2495fa48a193d'
- 'bf9490d1fd741258b54a763437b41c29'
- 'c89af5e9ce8d10d33da9b59835311a37')
+md5sums=('0a25b02c9e6426bc5d541eb7f4c3eb92'
+ '0bff70138acd73aab9afece2c9bf756c'
+ 'ba2fd37bce042092d919797aa3f5d262'
+ 'e30a6876d7cbd4ccb194be7f072bb89a'
+ '416006f0e468db96297139779d8cb29d'
+ 'e33ef28eb40ef348f901ec975f08d8b1'
+ 'ceb50ae56820a3cad61028199e4807d6'
+ '36bb968540817621533089afac4303ce'
+ 'c5cfed8d08555fbff41b47a608642ae8'
+ '96addb2918aa641ba9dc17cf2a7032d0'
+ 'c4bfd90387647a7a1b6f761a8008b5ed'
+ 'd43413b73e33f04d65a38c77fe167789'
+ '315610321033a66e5ff111767d17cceb'
+ '35a7af06108c99d64c18c8d2a8e7e486'
+ '796d3acdabb235a6cd7a433a600ecaac'
+ '90b10010af044bf472ce2e4d1271828e'
+ 'b1d78474d543c66103e7c756afdefb59'
+ 'd0fee1653b2f75306280ca7e39c02672'
+ '5da9e256d319072c915004ddf56e5adf'
+ '569c27b30a514162ab77acee83fa8cd7'
+ '93b743344bfed946589b891c7abba9c0'
+ '329126f5495649d5ac2494df4aa17911'
+ 'df0f779691a72ffea2514d085e361c56'
+ '53a6f2ed388836525b650a641022b9e0'
+ 'e12d2d8a33070f3844491aae4296ca70'
+ 'd37bb5b1c48f2314e44040a7d2022434'
+ '18d431186bddbba40820e82ecd4fee82'
+ '914efb1c178c42366fcbdb953b021b93'
+ '449b3009678fc44b35b88c8978144abb'
+ 

[arch-commits] Commit in thunderbird/trunk (PKGBUILD mozconfig vendor.js)

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 22:24:10
  Author: heftig
Revision: 268878

45.1.1-1

Modified:
  thunderbird/trunk/PKGBUILD
  thunderbird/trunk/mozconfig
  thunderbird/trunk/vendor.js

---+
 PKGBUILD  |   17 ++---
 mozconfig |1 -
 vendor.js |3 ---
 3 files changed, 10 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 19:22:53 UTC (rev 268877)
+++ PKGBUILD2016-06-03 20:24:10 UTC (rev 268878)
@@ -6,8 +6,8 @@
 # Contributor: Anders Bostrom 
 
 pkgname=thunderbird
-pkgver=45.1.0
-pkgrel=2
+pkgver=45.1.1
+pkgrel=1
 pkgdesc="Standalone mail and news reader from mozilla.org"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -25,14 +25,14 @@
 thunderbird-install-dir.patch
 firefox-gcc-6.0.patch mozilla-1228540.patch mozilla-1228540-1.patch
 vendor.js)
-sha256sums=('8ae9ebe536895d69d99f412f2b3aba645b7dd839e520959330da13892d672309'
-'a0976827f9c69f0ae3c15a990bb94322d76e9bf9c93468a66eb41264d40d1b60'
+sha256sums=('107d103c30b4f666ede1ec197156f94456117783087518fe1af4557d548b718e'
+'b884ccab9bea135600b41a2359073e637dee96dac64d22aceec4adb7fd936b23'
 '3fba13d88aeb003ab0811ef739463858172ce0662a1c7d62835df3d83ddbb8fb'
 '24599eab8862476744fe1619a9a53a5b8cdcab30b3fc5767512f31d3529bd05d'
 '4d1e1ddabc9e975ed39f49e134559a29e01cd49439e358233f1ede43bf5a52bf'
 '2588c567fec88b44b65f0cd111e8769361c138d4c964310684f7bb80066f8f9f'
 'd1ccbaf0973615c57f7893355e5cd3a89efb4e91071d0ec376e429b50cf6ed19'
-'8f9ee921896b939e36d089c8ff544bc2b0a8b56dd5a2b4f5e75a19a6e1849284')
+'e4ea8e6788163d9f8db8f1f40023db3ea0a1358f9a4510169f2d4c4fe6a887ed')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
 # Note: These are for Arch Linux use ONLY. For your own distribution, please
@@ -79,9 +79,12 @@
   # _FORTIFY_SOURCE causes configure failures
   CPPFLAGS+=" -O2"
 
+  # Hardening
+  LDFLAGS+=" -Wl,-z,now"
+
   # GCC 6
-  CFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse"
-  CXXFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse"
+  CFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse 
-fno-schedule-insns2"
+  CXXFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse 
-fno-schedule-insns2"
 
   export PATH="$srcdir/path:$PATH"
 

Modified: mozconfig
===
--- mozconfig   2016-06-03 19:22:53 UTC (rev 268877)
+++ mozconfig   2016-06-03 20:24:10 UTC (rev 268878)
@@ -23,7 +23,6 @@
 ac_add_options --enable-system-pixman
 
 # Features
-ac_add_options --enable-calendar
 ac_add_options --enable-startup-notification
 ac_add_options --disable-gstreamer
 ac_add_options --disable-updater

Modified: vendor.js
===
--- vendor.js   2016-06-03 19:22:53 UTC (rev 268877)
+++ vendor.js   2016-06-03 20:24:10 UTC (rev 268878)
@@ -7,6 +7,3 @@
 // Don't disable our bundled extensions in the application directory
 pref("extensions.autoDisableScopes", 11);
 pref("extensions.shownSelectionUI", true);
-
-// https://bugzilla.mozilla.org/show_bug.cgi?id=1245783
-pref("javascript.options.ion", false);


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

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 21:22:53
  Author: heftig
Revision: 268877

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

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

--+
 /PKGBUILD|  114 +
 /flatpak.install |   22 +++
 extra-i686/PKGBUILD  |   57 
 extra-i686/flatpak.install   |   11 ---
 extra-x86_64/PKGBUILD|   57 
 extra-x86_64/flatpak.install |   11 ---
 6 files changed, 136 insertions(+), 136 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-03 19:18:43 UTC (rev 268876)
+++ extra-i686/PKGBUILD 2016-06-03 19:22:53 UTC (rev 268877)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=flatpak
-pkgver=0.6.2
-pkgrel=1
-pkgdesc="Application deployment framework for desktop apps"
-url="http://flatpak.org;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(dbus systemd glib2 libsoup polkit xorg-xauth libgsystem ostree fuse
- json-glib libseccomp libarchive libelf libcap)
-makedepends=(intltool python libxslt gobject-introspection gtk-doc git)
-install=flatpak.install
-source=("git+https://github.com/flatpak/flatpak#tag=$pkgver;
-"git+https://git.gnome.org/browse/libglnx;
-"git+https://github.com/projectatomic/bubblewrap;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---sbindir=/usr/bin --libexecdir=/usr/lib --disable-static \
---enable-gtk-doc --with-priv-mode=setuid
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  make -k check
-}
-
-package() {
-  cd $pkgname
-
-  make DESTDIR="$pkgdir" install
-
-  # Fixup mode to match polkit
-  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
-}

Copied: flatpak/repos/extra-i686/PKGBUILD (from rev 268876, 
flatpak/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-03 19:22:53 UTC (rev 268877)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=flatpak
+pkgver=0.6.4
+pkgrel=1
+pkgdesc="Application deployment framework for desktop apps"
+url="http://flatpak.org;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(dbus systemd glib2 libsoup polkit xorg-xauth libgsystem ostree fuse
+ json-glib libseccomp libarchive libelf libcap)
+makedepends=(intltool python libxslt gobject-introspection gtk-doc git)
+install=flatpak.install
+source=("git+https://github.com/flatpak/flatpak#tag=$pkgver;
+"git+https://git.gnome.org/browse/libglnx;
+"git+https://github.com/projectatomic/bubblewrap;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libglnx.url "$srcdir/libglnx"
+  git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--sbindir=/usr/bin --libexecdir=/usr/lib/$pkgname --disable-static \
+--enable-gtk-doc --with-priv-mode=setuid
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  make -k check
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="$pkgdir" install
+
+  # Fixup mode to match polkit
+  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
+}

Deleted: extra-i686/flatpak.install
===
--- extra-i686/flatpak.install  2016-06-03 19:18:43 UTC (rev 268876)
+++ extra-i686/flatpak.install  2016-06-03 19:22:53 UTC (rev 268877)
@@ -1,11 +0,0 @@
-post_install() {
-  post_upgrade $1 0
-}
-
-post_upgrade() {
-  if (( $(vercmp $2 0.6.1-3) < 0 )); then
-# Generate initial /var/lib/flatpak/repo; must be present
-# before non-root 

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

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 21:22:05
  Author: heftig
Revision: 177826

archrelease: copy trunk to community-any

Added:
  jruby/repos/community-any/PKGBUILD
(from rev 177825, jruby/trunk/PKGBUILD)
Deleted:
  jruby/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 19:14:54 UTC (rev 177825)
+++ PKGBUILD2016-06-03 19:22:05 UTC (rev 177826)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: FaziBear 
-
-pkgname=jruby
-pkgver=9.1.0.0
-pkgrel=1
-pkgdesc="100% pure-Java implementation of the Ruby programming language"
-arch=(any)
-url="http://www.jruby.org/;
-license=(EPL GPL2 LGPL2.1 custom)
-options=(!strip)
-noextract=($pkgname-bin-${pkgver}.tar.gz)
-source=(http://jruby.org.s3.amazonaws.com/downloads/$pkgver/$pkgname-bin-${pkgver}.tar.gz)
-sha256sums=('ff48c8eea61d0be93d807f56eda613350e91f598f6f4f71ef73ed53e7d0530ad')
-
-package() {
-  depends=(java-runtime-headless bash)
-
-  cd "$pkgdir"
-
-  mkdir opt
-  bsdtar -C opt -xf "$srcdir/$pkgname-bin-$pkgver.tar.gz"
-  mv opt/jruby-$pkgver opt/jruby
-
-  find opt/jruby -regextype posix-extended -regex '.*\.(bat|dll|exe)' -delete
-  rm -r opt/jruby/lib/jni/{Darwin,*-SunOS,*-Windows,*-AIX,*-FreeBSD}
-
-  mkdir -p usr/bin
-  for _file in jirb{,_swing} jgem jruby{,c}; do
-ln -s ../../opt/jruby/bin/$_file usr/bin/$_file
-  done
-
-  mkdir -p usr/share/licenses/$pkgname
-  ln -s ../../../../opt/jruby/COPYING usr/share/licenses/$pkgname/COPYING
-}

Copied: jruby/repos/community-any/PKGBUILD (from rev 177825, 
jruby/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 19:22:05 UTC (rev 177826)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: FaziBear 
+
+pkgname=jruby
+pkgver=9.1.2.0
+pkgrel=1
+pkgdesc="100% pure-Java implementation of the Ruby programming language"
+arch=(any)
+url="http://www.jruby.org/;
+license=(EPL GPL2 LGPL2.1 custom)
+options=(!strip)
+noextract=($pkgname-bin-${pkgver}.tar.gz)
+source=(http://jruby.org.s3.amazonaws.com/downloads/$pkgver/$pkgname-bin-${pkgver}.tar.gz)
+sha256sums=('60598a465883ab4c933f805de4a7f280052bddc793b95735465619c03ca43f35')
+
+package() {
+  depends=(java-runtime-headless bash)
+
+  cd "$pkgdir"
+
+  mkdir opt
+  bsdtar -C opt -xf "$srcdir/$pkgname-bin-$pkgver.tar.gz"
+  mv opt/jruby-$pkgver opt/jruby
+
+  find opt/jruby -regextype posix-extended -regex '.*\.(bat|dll|exe)' -delete
+  rm -r opt/jruby/lib/jni/{Darwin,*-SunOS,*-Windows,*-AIX,*-FreeBSD}
+
+  mkdir -p usr/bin
+  for _file in jirb{,_swing} jgem jruby{,c}; do
+ln -s ../../opt/jruby/bin/$_file usr/bin/$_file
+  done
+
+  mkdir -p usr/share/licenses/$pkgname
+  ln -s ../../../../opt/jruby/COPYING usr/share/licenses/$pkgname/COPYING
+}


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

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 21:18:43
  Author: heftig
Revision: 268876

0.6.4-1

Modified:
  flatpak/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 14:48:23 UTC (rev 268875)
+++ PKGBUILD2016-06-03 19:18:43 UTC (rev 268876)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=flatpak
-pkgver=0.6.2
+pkgver=0.6.4
 pkgrel=1
 pkgdesc="Application deployment framework for desktop apps"
 url="http://flatpak.org;
@@ -34,7 +34,7 @@
   cd $pkgname
 
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---sbindir=/usr/bin --libexecdir=/usr/lib --disable-static \
+--sbindir=/usr/bin --libexecdir=/usr/lib/$pkgname --disable-static \
 --enable-gtk-doc --with-priv-mode=setuid
 
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool


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

2016-06-03 Thread Jan Steffens
Date: Friday, June 3, 2016 @ 21:14:54
  Author: heftig
Revision: 177825

9.1.2.0-1

Modified:
  jruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 18:13:16 UTC (rev 177824)
+++ PKGBUILD2016-06-03 19:14:54 UTC (rev 177825)
@@ -3,7 +3,7 @@
 # Contributor: FaziBear 
 
 pkgname=jruby
-pkgver=9.1.0.0
+pkgver=9.1.2.0
 pkgrel=1
 pkgdesc="100% pure-Java implementation of the Ruby programming language"
 arch=(any)
@@ -12,7 +12,7 @@
 options=(!strip)
 noextract=($pkgname-bin-${pkgver}.tar.gz)
 
source=(http://jruby.org.s3.amazonaws.com/downloads/$pkgver/$pkgname-bin-${pkgver}.tar.gz)
-sha256sums=('ff48c8eea61d0be93d807f56eda613350e91f598f6f4f71ef73ed53e7d0530ad')
+sha256sums=('60598a465883ab4c933f805de4a7f280052bddc793b95735465619c03ca43f35')
 
 package() {
   depends=(java-runtime-headless bash)


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

2016-06-03 Thread Jaroslav Lichtblau
Date: Friday, June 3, 2016 @ 20:13:16
  Author: jlichtblau
Revision: 177824

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

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

+
 /PKGBUILD  |  138 +++
 /syncthing.install |   24 ++
 community-i686/PKGBUILD|   69 -
 community-i686/syncthing.install   |   12 ---
 community-x86_64/PKGBUILD  |   69 -
 community-x86_64/syncthing.install |   12 ---
 6 files changed, 162 insertions(+), 162 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-03 18:12:31 UTC (rev 177823)
+++ community-i686/PKGBUILD 2016-06-03 18:13:16 UTC (rev 177824)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Maintainer : Jaroslav Lichtblau 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=syncthing
-pkgver=0.13.4
-pkgrel=1
-pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-arch=('i686' 'x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-install=$pkgname.install
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
-sha1sums=('SKIP')
-
-prepare() {
-  cd "${srcdir}"
-  install -d "src/github.com/syncthing"
-  mv "${pkgname}-${pkgver}" "src/github.com/syncthing/${pkgname}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-  if [ ${CARCH}" == "i686" ] ; then
-  go run build.go -no-upgrade -goarch 386 build
-  elif [ ${CARCH}" == "x86_64" ] ; then
-  go run build.go -no-upgrade -goarch amd64 build
-  else
-  go run build.go -no-upgrade build
-  fi
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package() {
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-# license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-# man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}

Copied: syncthing/repos/community-i686/PKGBUILD (from rev 177823, 
syncthing/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-03 18:13:16 UTC (rev 177824)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Maintainer : Jaroslav Lichtblau 
+# Contributor: Sauyon Lee 
+# Contributor: Kevin MacMartin 
+# Contributor: korjjj 
+
+pkgname=syncthing
+pkgver=0.13.5
+pkgrel=1
+pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
+arch=('i686' 'x86_64')
+url="http://syncthing.net/;
+license=('MPL')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+install=$pkgname.install
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver})
+sha1sums=('SKIP')
+
+prepare() {
+  cd "${srcdir}"
+  install -d "src/github.com/syncthing"
+  mv 

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

2016-06-03 Thread Jaroslav Lichtblau
Date: Friday, June 3, 2016 @ 20:12:31
  Author: jlichtblau
Revision: 177823

upgpkg: syncthing 0.13.5-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 14:53:06 UTC (rev 177822)
+++ PKGBUILD2016-06-03 18:12:31 UTC (rev 177823)
@@ -6,7 +6,7 @@
 # Contributor: korjjj 
 
 pkgname=syncthing
-pkgver=0.13.4
+pkgver=0.13.5
 pkgrel=1
 pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
 arch=('i686' 'x86_64')


[arch-commits] Commit in python-os-client-config/repos/community-any (2 files)

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 16:53:06
  Author: fyan
Revision: 177822

archrelease: copy trunk to community-any

Added:
  python-os-client-config/repos/community-any/PKGBUILD
(from rev 177821, python-os-client-config/trunk/PKGBUILD)
Deleted:
  python-os-client-config/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 14:52:34 UTC (rev 177821)
+++ PKGBUILD2016-06-03 14:53:06 UTC (rev 177822)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-os-client-config
-pkgname=('python-os-client-config' 'python2-os-client-config')
-pkgver=1.17.0
-pkgrel=1
-arch=('any')
-pkgdesc='OpenStack Client Configuation Library'
-url='https://github.com/openstack/os-client-config'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-yaml' 
'python2-yaml' 'git'
- 'python-appdirs' 'python2-appdirs' 'python-keystoneauth1' 
'python2-keystoneauth1'
- 'python-requestsexceptions' 'python2-requestsexceptions')
-checkdepends=('python-testrepository' 'python2-testrepository' 
'python-oslotest' 'python2-oslotest'
-  'python-jsonschema' 'python2-jsonschema' 'python-mock' 
'python2-mock'
-  'python-glanceclient' 'python2-glanceclient')
-source=("git+https://github.com/openstack/os-client-config.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a os-client-config{,-py2}
-}
-
-build() {
-  cd "$srcdir"/os-client-config
-  python setup.py build
-
-  cd "$srcdir"/os-client-config-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/os-client-config
-  # One test failure in os_client_config.tests.test_config.TestConfig
-  python setup.py testr || warning "Tests failed"
-
-  cd "$srcdir"/os-client-config-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-os-client-config() {
-  depends=('python-yaml' 'python-appdirs' 'python-keystoneauth1' 
'python-requestsexceptions')
-
-  cd os-client-config
-  python setup.py install --root "$pkgdir" --optimize=1
-}
-
-package_python2-os-client-config() {
-  depends=('python2-yaml' 'python2-appdirs' 'python2-keystoneauth1' 
'python2-requestsexceptions')
-
-  cd os-client-config-py2
-  python2 setup.py install --root "$pkgdir" --optimize=1
-}

Copied: python-os-client-config/repos/community-any/PKGBUILD (from rev 177821, 
python-os-client-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 14:53:06 UTC (rev 177822)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-os-client-config
+pkgname=('python-os-client-config' 'python2-os-client-config')
+pkgver=1.18.0
+pkgrel=1
+arch=('any')
+pkgdesc='OpenStack Client Configuation Library'
+url='https://github.com/openstack/os-client-config'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-yaml' 
'python2-yaml' 'git'
+ 'python-appdirs' 'python2-appdirs' 'python-keystoneauth1' 
'python2-keystoneauth1'
+ 'python-requestsexceptions' 'python2-requestsexceptions')
+checkdepends=('python-testrepository' 'python2-testrepository' 
'python-oslotest' 'python2-oslotest'
+  'python-jsonschema' 'python2-jsonschema' 'python-mock' 
'python2-mock'
+  'python-glanceclient' 'python2-glanceclient')
+source=("git+https://github.com/openstack/os-client-config.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a os-client-config{,-py2}
+}
+
+build() {
+  cd "$srcdir"/os-client-config
+  python setup.py build
+
+  cd "$srcdir"/os-client-config-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/os-client-config
+  # One test failure in os_client_config.tests.test_config.TestConfig
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/os-client-config-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-os-client-config() {
+  depends=('python-yaml' 'python-appdirs' 'python-keystoneauth1' 
'python-requestsexceptions')
+
+  cd os-client-config
+  python setup.py install --root "$pkgdir" --optimize=1
+}
+
+package_python2-os-client-config() {
+  depends=('python2-yaml' 'python2-appdirs' 'python2-keystoneauth1' 
'python2-requestsexceptions')
+
+  cd os-client-config-py2
+  python2 setup.py install --root "$pkgdir" --optimize=1
+}


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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 16:52:23
  Author: fyan
Revision: 177820

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-03 14:51:31 UTC (rev 177819)
+++ community-i686/PKGBUILD 2016-06-03 14:52:23 UTC (rev 177820)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pykerberos
-pkgname=('python-pykerberos' 'python2-pykerberos')
-pkgver=1.1.12
-pkgrel=1
-pkgdesc="High-level interface to Kerberos"
-arch=('i686' 'x86_64')
-license=('Apache')
-url="https://github.com/02strich/pykerberos;
-makedepends=('python-setuptools' 'python2-setuptools' 'krb5' 'git')
-source=("git+https://github.com/02strich/pykerberos.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a pykerberos{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pykerberos
-  python setup.py build
-
-  cd "$srcdir"/pykerberos-py2
-  python2 setup.py build
-}
-
-package_python-pykerberos() {
-  depends=('python' 'krb5')
-
-  cd pykerberos
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-pykerberos() {
-  depends=('python2' 'krb5')
-
-  cd pykerberos-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-pykerberos/repos/community-i686/PKGBUILD (from rev 177819, 
python-pykerberos/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-03 14:52:23 UTC (rev 177820)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pykerberos
+pkgname=('python-pykerberos' 'python2-pykerberos')
+pkgver=1.1.13
+pkgrel=1
+pkgdesc="High-level interface to Kerberos"
+arch=('i686' 'x86_64')
+license=('Apache')
+url="https://github.com/02strich/pykerberos;
+makedepends=('python-setuptools' 'python2-setuptools' 'krb5' 'git')
+source=("git+https://github.com/02strich/pykerberos.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a pykerberos{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pykerberos
+  python setup.py build
+
+  cd "$srcdir"/pykerberos-py2
+  python2 setup.py build
+}
+
+package_python-pykerberos() {
+  depends=('python' 'krb5')
+
+  cd pykerberos
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pykerberos() {
+  depends=('python2' 'krb5')
+
+  cd pykerberos-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-06-03 14:51:31 UTC (rev 177819)
+++ community-x86_64/PKGBUILD   2016-06-03 14:52:23 UTC (rev 177820)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pykerberos
-pkgname=('python-pykerberos' 'python2-pykerberos')
-pkgver=1.1.12
-pkgrel=1
-pkgdesc="High-level interface to Kerberos"
-arch=('i686' 'x86_64')
-license=('Apache')
-url="https://github.com/02strich/pykerberos;
-makedepends=('python-setuptools' 'python2-setuptools' 'krb5' 'git')
-source=("git+https://github.com/02strich/pykerberos.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a pykerberos{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pykerberos
-  python setup.py build
-
-  cd "$srcdir"/pykerberos-py2
-  python2 setup.py build
-}
-
-package_python-pykerberos() {
-  depends=('python' 'krb5')
-
-  cd pykerberos
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-pykerberos() {
-  depends=('python2' 'krb5')
-
-  cd pykerberos-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-pykerberos/repos/community-x86_64/PKGBUILD (from rev 177819, 
python-pykerberos/trunk/PKGBUILD)

[arch-commits] Commit in python-os-client-config/trunk (PKGBUILD)

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 16:52:34
  Author: fyan
Revision: 177821

upgpkg: python-os-client-config 1.18.0-1

Modified:
  python-os-client-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 14:52:23 UTC (rev 177820)
+++ PKGBUILD2016-06-03 14:52:34 UTC (rev 177821)
@@ -3,7 +3,7 @@
 
 pkgbase=python-os-client-config
 pkgname=('python-os-client-config' 'python2-os-client-config')
-pkgver=1.17.0
+pkgver=1.18.0
 pkgrel=1
 arch=('any')
 pkgdesc='OpenStack Client Configuation Library'


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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 16:51:31
  Author: fyan
Revision: 177819

upgpkg: python-pykerberos 1.1.13-1

Modified:
  python-pykerberos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 14:49:58 UTC (rev 177818)
+++ PKGBUILD2016-06-03 14:51:31 UTC (rev 177819)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pykerberos
 pkgname=('python-pykerberos' 'python2-pykerberos')
-pkgver=1.1.12
+pkgver=1.1.13
 pkgrel=1
 pkgdesc="High-level interface to Kerberos"
 arch=('i686' 'x86_64')


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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 16:49:58
  Author: fyan
Revision: 177818

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 14:49:25 UTC (rev 177817)
+++ PKGBUILD2016-06-03 14:49:58 UTC (rev 177818)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=python-phonenumbers
-pkgname=(python-phonenumbers python2-phonenumbers)
-pkgver=7.4.1
-pkgrel=1
-pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
-arch=('any')
-url="https://github.com/daviddrysdale/python-phonenumbers;
-license=('Apache')
-makedepends=("python-setuptools" "python2-setuptools" "git")
-source=("git+https://github.com/daviddrysdale/python-phonenumbers.git#tag=release-$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a python-phonenumbers{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-phonenumbers
-  python setup.py build
-
-  cd "$srcdir"/python-phonenumbers-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-phonenumbers
-  python setup.py test
-
-  cd "$srcdir"/python-phonenumbers-py2
-  python2 setup.py test
-}
-
-package_python-phonenumbers() {
-  depends=('python')
-
-  cd python-phonenumbers
-  python setup.py install -O1 --root "$pkgdir"
-}
-
-package_python2-phonenumbers() {
-  depends=('python2')
-
-  cd python-phonenumbers-py2
-  python2 setup.py install -O1 --root "$pkgdir"
-}

Copied: python-phonenumbers/repos/community-any/PKGBUILD (from rev 177817, 
python-phonenumbers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 14:49:58 UTC (rev 177818)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=python-phonenumbers
+pkgname=(python-phonenumbers python2-phonenumbers)
+pkgver=7.4.2
+pkgrel=1
+pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
+arch=('any')
+url="https://github.com/daviddrysdale/python-phonenumbers;
+license=('Apache')
+makedepends=("python-setuptools" "python2-setuptools" "git")
+source=("git+https://github.com/daviddrysdale/python-phonenumbers.git#tag=release-$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a python-phonenumbers{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-phonenumbers
+  python setup.py build
+
+  cd "$srcdir"/python-phonenumbers-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-phonenumbers
+  python setup.py test
+
+  cd "$srcdir"/python-phonenumbers-py2
+  python2 setup.py test
+}
+
+package_python-phonenumbers() {
+  depends=('python')
+
+  cd python-phonenumbers
+  python setup.py install -O1 --root "$pkgdir"
+}
+
+package_python2-phonenumbers() {
+  depends=('python2')
+
+  cd python-phonenumbers-py2
+  python2 setup.py install -O1 --root "$pkgdir"
+}


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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 16:49:25
  Author: fyan
Revision: 177817

upgpkg: python-phonenumbers 7.4.2-1

Modified:
  python-phonenumbers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 12:30:26 UTC (rev 177816)
+++ PKGBUILD2016-06-03 14:49:25 UTC (rev 177817)
@@ -3,7 +3,7 @@
 
 pkgname=python-phonenumbers
 pkgname=(python-phonenumbers python2-phonenumbers)
-pkgver=7.4.1
+pkgver=7.4.2
 pkgrel=1
 pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
 arch=('any')


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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 16:48:23
  Author: fyan
Revision: 268875

archrelease: copy trunk to extra-any

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

--+
 PKGBUILD |  144 ++---
 1 file changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 14:47:20 UTC (rev 268874)
+++ PKGBUILD2016-06-03 14:48:23 UTC (rev 268875)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=22.0.0
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools;
-makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'git')
-source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  # Remove vendored packages
-  rm -rv setuptools/pkg_resources/_vendor
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools/setup.cfg
-
-  cp -a setuptools{,-py2}
-
-  cd "$srcdir"/setuptools
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  cd "$srcdir"/setuptools
-  python setup.py build
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-
-  cd "$srcdir"/setuptools
-  LC_CTYPE=en_US.utf8 python setup.py ptr
-
-  cd "$srcdir"/setuptools-py2
-  LC_CTYPE=en_US.utf8 python2 setup.py ptr
-}
- 
-package_python-setuptools() {
-  depends=('python-packaging')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2-packaging')
-  provides=('python2-distribute' 'setuptools')
-  replaces=('python2-distribute' 'setuptools')
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 268874, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 14:48:23 UTC (rev 268875)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=22.0.2
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools;
+makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'git')
+source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  # Remove vendored packages
+  rm -rv setuptools/pkg_resources/_vendor
+
+  # Remove post-release tag since we are using stable tags
+  sed -e '/tag_build = .post/d' \
+  -e '/tag_date = 1/d' \
+  -i setuptools/setup.cfg
+
+  cp -a setuptools{,-py2}
+
+  cd "$srcdir"/setuptools
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
+
+  cd "$srcdir"/setuptools-py2
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
+}
+
+build() {
+  cd "$srcdir"/setuptools
+  python setup.py build
+
+  cd "$srcdir"/setuptools-py2
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+
+  cd "$srcdir"/setuptools
+  LC_CTYPE=en_US.utf8 python setup.py ptr
+
+  cd "$srcdir"/setuptools-py2
+  LC_CTYPE=en_US.utf8 python2 setup.py ptr
+}
+ 
+package_python-setuptools() {
+  depends=('python-packaging')
+  provides=('python-distribute')
+  replaces=('python-distribute')
+
+  cd "$srcdir"/setuptools
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
+}
+ 
+package_python2-setuptools() {
+  depends=('python2-packaging')
+  provides=('python2-distribute' 'setuptools')
+  replaces=('python2-distribute' 'setuptools')
+
+  cd "$srcdir"/setuptools-py2
+  

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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 16:47:20
  Author: fyan
Revision: 268874

upgpkg: python-setuptools 1:22.0.2-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 13:21:37 UTC (rev 268873)
+++ PKGBUILD2016-06-03 14:47:20 UTC (rev 268874)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=22.0.0
+pkgver=22.0.2
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"


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

2016-06-03 Thread Christian Hesse
Date: Friday, June 3, 2016 @ 14:30:26
  Author: eworm
Revision: 177816

update bundled mysql, do not flood logs with deprecated warnings

Modified:
  mysql-workbench/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 11:21:54 UTC (rev 177815)
+++ PKGBUILD2016-06-03 12:30:26 UTC (rev 177816)
@@ -8,7 +8,7 @@
 pkgname=mysql-workbench
 pkgver=6.3.6
 pkgrel=6
-_mysql_version=5.7.12
+_mysql_version=5.7.13
 _connector_version=1.1.7
 _gdal_version=2.1.0
 _boost_version=1.59.0
@@ -34,7 +34,7 @@
'arch_linux_profile.xml')
 sha256sums=('c51fce1a3fd9425dd9adf4d16e24e84f92e2f8374b43a956f580fd84d03afe62'
 'SKIP'
-'32843cb6d22ab22cd2340262b53c0d6009b5bd41b1fa4102beda19635a5c1c87'
+'50bf1a1635a61235fc43fd4876df2f77163de109372679e29c1ff8dbc38a0b87'
 'SKIP'
 '5b353fbcd26f607a2a0987ce78a4b811f8971813d46b0f4ae6fa07887e9fc763'
 'SKIP'
@@ -61,6 +61,10 @@
 }
 
 build() {
+   # this uses deprecated auto_ptr...
+   # we known that, so do not flood the logs
+   CXXFLAGS="${CXXFLAGS} -Wno-deprecated-declarations"
+
# Build mysql
cd "${srcdir}/mysql-${_mysql_version}"
cmake . \


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

2016-06-03 Thread Allan McRae
Date: Friday, June 3, 2016 @ 14:15:47
  Author: allan
Revision: 268871

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

Added:
  gcc/repos/testing-i686/
  gcc/repos/testing-i686/PKGBUILD
(from rev 268870, gcc/trunk/PKGBUILD)
  gcc/repos/testing-x86_64/
  gcc/repos/testing-x86_64/PKGBUILD
(from rev 268870, gcc/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |  310 ++
 testing-x86_64/PKGBUILD |  310 ++
 2 files changed, 620 insertions(+)

Copied: gcc/repos/testing-i686/PKGBUILD (from rev 268870, gcc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-06-03 12:15:47 UTC (rev 268871)
@@ -0,0 +1,310 @@
+# $Id$
+# Maintainer: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+# NOTE: libtool requires rebuilt with each new gcc version
+
+pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go')
+pkgver=6.1.1
+_pkgver=6
+_islver=0.16.1
+pkgrel=2
+_commit=36375203
+pkgdesc="The GNU Compiler Collection"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL' 'custom')
+url="http://gcc.gnu.org;
+makedepends=('binutils>=2.26' 'libmpc' 'gcc-ada' 'doxygen' 'git')
+checkdepends=('dejagnu' 'inetutils')
+options=('!emptydirs')
+source=(git://gcc.gnu.org/git/gcc.git#commit=${_commit}
+http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2)
+md5sums=('SKIP'
+ 'ac1f25a0677912952718a51f5bc20f32')
+
+# gcc-6.0 forces a changed triplet - need to address in pacman/devtools
+[[ $CARCH == "x86_64" ]] && CHOST=x86_64-pc-linux-gnu
+
+_libdir="usr/lib/gcc/$CHOST/$pkgver"
+
+prepare() {
+  cd ${srcdir}/gcc
+
+  # link isl for in-tree build
+  ln -s ../isl-${_islver} isl
+
+  # Do not run fixincludes
+  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
+
+  # Arch Linux installs x86_64 libraries /lib
+  [[ $CARCH == "x86_64" ]] && sed -i '/m64=/s/lib64/lib/' 
gcc/config/i386/t-linux64
+
+  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+  mkdir ${srcdir}/gcc-build
+}
+
+build() {
+  cd ${srcdir}/gcc-build
+
+  # using -pipe causes spurious test-suite failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
+  CFLAGS=${CFLAGS/-pipe/}
+  CXXFLAGS=${CXXFLAGS/-pipe/}
+
+  ${srcdir}/gcc/configure --prefix=/usr \
+  --libdir=/usr/lib --libexecdir=/usr/lib \
+  --mandir=/usr/share/man --infodir=/usr/share/info \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
+  --enable-shared --enable-threads=posix --enable-libmpx \
+  --with-system-zlib --with-isl --enable-__cxa_atexit \
+  --disable-libunwind-exceptions --enable-clocale=gnu \
+  --disable-libstdcxx-pch --disable-libssp \
+  --enable-gnu-unique-object --enable-linker-build-id \
+  --enable-lto --enable-plugin --enable-install-libiberty \
+  --with-linker-hash-style=gnu --enable-gnu-indirect-function \
+  --disable-multilib --disable-werror \
+  --enable-checking=release
+
+  make
+  
+  # make documentation
+  make -C $CHOST/libstdc++-v3/doc doc-man-doxygen
+}
+
+check() {
+  cd ${srcdir}/gcc-build
+
+  # increase stack size to prevent test failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
+  ulimit -s 32768
+
+  # do not abort on error as some are "expected"
+  make -k check || true
+  ${srcdir}/gcc/contrib/test_summary
+}
+
+
+package_gcc-libs()
+{
+  pkgdesc="Runtime libraries shipped by GCC"
+  groups=('base')
+  depends=('glibc>=2.23')
+  options=('!emptydirs' '!strip')
+
+  cd ${srcdir}/gcc-build
+  
+  make -C $CHOST/libgcc DESTDIR=${pkgdir} install-shared
+  rm ${pkgdir}/${_libdir}/libgcc_eh.a
+  
+  for lib in libatomic \
+ libcilkrts \
+ libgfortran \
+ libgo \
+ libgomp \
+ libitm \
+ libquadmath \
+ libsanitizer/{a,l,ub}san \
+ libstdc++-v3/src \
+ libvtv; do
+make -C $CHOST/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
+  done
+
+  [[ $CARCH == "x86_64" ]] && \
+make -C $CHOST/libsanitizer/tsan DESTDIR=${pkgdir} 
install-toolexeclibLTLIBRARIES
+
+  make -C $CHOST/libobjc DESTDIR=${pkgdir} install-libs
+
+  make -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install
+
+  make -C $CHOST/libmpx DESTDIR=${pkgdir} install
+  rm ${pkgdir}/usr/lib/libmpx.spec
+
+  for lib in libgomp \
+ libitm \
+ libquadmath; do
+make -C $CHOST/$lib DESTDIR=${pkgdir} install-info
+  done
+
+  # Install Runtime Library Exception
+  install -Dm644 ${srcdir}/gcc/COPYING.RUNTIME \
+${pkgdir}/usr/share/licenses/gcc-libs/RUNTIME.LIBRARY.EXCEPTION
+}
+
+package_gcc()
+{
+  

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

2016-06-03 Thread Allan McRae
Date: Friday, June 3, 2016 @ 14:14:29
  Author: allan
Revision: 268870

upgpkg: gcc 6.1.1-2

new snapshot from gcc-6 branch

Modified:
  gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 12:09:28 UTC (rev 268869)
+++ PKGBUILD2016-06-03 12:14:29 UTC (rev 268870)
@@ -8,8 +8,8 @@
 pkgver=6.1.1
 _pkgver=6
 _islver=0.16.1
-pkgrel=1
-_commit=80f78834
+pkgrel=2
+_commit=36375203
 pkgdesc="The GNU Compiler Collection"
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL' 'custom')


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

2016-06-03 Thread Jan de Groot
Date: Friday, June 3, 2016 @ 14:09:28
  Author: jgc
Revision: 268869

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-03 12:09:10 UTC (rev 268868)
+++ extra-i686/PKGBUILD 2016-06-03 12:09:28 UTC (rev 268869)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-settings-daemon
-pkgver=3.20.1
-pkgrel=1
-pkgdesc="The GNOME Settings daemon"
-arch=(i686 x86_64)
-license=(GPL)
-depends=(dconf gnome-desktop gsettings-desktop-schemas libcanberra-pulse
- libnotify libsystemd libwacom pulseaudio pulseaudio-alsa upower 
librsvg libgweather
- geocode-glib geoclue2 nss libgudev)
-makedepends=(intltool xf86-input-wacom libxslt docbook-xsl python2)
-options=('!emptydirs')
-install=gnome-settings-daemon.install
-url="http://www.gnome.org;
-groups=(gnome)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e84a075d895ca3baeefb8508e0a901027b66f7d5a7ee8c966e31d301b38e78e7')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-settings-daemon/repos/extra-i686/PKGBUILD (from rev 268868, 
gnome-settings-daemon/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-03 12:09:28 UTC (rev 268869)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-settings-daemon
+pkgver=3.20.1+8+g40bf4fd
+pkgrel=1
+pkgdesc="The GNOME Settings daemon"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(dconf gnome-desktop gsettings-desktop-schemas libcanberra-pulse
+ libnotify libsystemd libwacom pulseaudio pulseaudio-alsa upower
+ librsvg libgweather geocode-glib geoclue2 nss libgudev)
+makedepends=(intltool xf86-input-wacom libxslt docbook-xsl python git 
gnome-common)
+options=('!emptydirs')
+url="http://www.gnome.org;
+groups=(gnome)
+source=('git://git.gnome.org/gnome-settings-daemon#commit=40bf4fdce0001c662094f47e8edc1b0855ec9632')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --long | sed -e 's/-/+/g' -e 's/^GNOME_SETTINGS_DAEMON_//' -e 
's/_/./g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-settings-daemon.install
===
--- extra-i686/gnome-settings-daemon.install2016-06-03 12:09:10 UTC (rev 
268868)
+++ extra-i686/gnome-settings-daemon.install2016-06-03 12:09:28 UTC (rev 
268869)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-06-03 12:09:10 UTC (rev 268868)
+++ extra-x86_64/PKGBUILD   2016-06-03 12:09:28 UTC (rev 268869)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-settings-daemon
-pkgver=3.20.1
-pkgrel=1
-pkgdesc="The GNOME Settings daemon"
-arch=(i686 x86_64)
-license=(GPL)
-depends=(dconf gnome-desktop 

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

2016-06-03 Thread Jan de Groot
Date: Friday, June 3, 2016 @ 14:09:10
  Author: jgc
Revision: 268868

upgpkg: gnome-settings-daemon 3.20.1+8+g40bf4fd-1

Update to git snapshot to fix quite some possible segfaults

Modified:
  gnome-settings-daemon/trunk/PKGBUILD
Deleted:
  gnome-settings-daemon/trunk/gnome-settings-daemon.install

---+
 PKGBUILD  |   27 ++-
 gnome-settings-daemon.install |   12 
 2 files changed, 18 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 08:20:59 UTC (rev 268867)
+++ PKGBUILD2016-06-03 12:09:10 UTC (rev 268868)
@@ -2,24 +2,33 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-settings-daemon
-pkgver=3.20.1
+pkgver=3.20.1+8+g40bf4fd
 pkgrel=1
 pkgdesc="The GNOME Settings daemon"
 arch=(i686 x86_64)
 license=(GPL)
 depends=(dconf gnome-desktop gsettings-desktop-schemas libcanberra-pulse
- libnotify libsystemd libwacom pulseaudio pulseaudio-alsa upower 
librsvg libgweather
- geocode-glib geoclue2 nss libgudev)
-makedepends=(intltool xf86-input-wacom libxslt docbook-xsl python2)
+ libnotify libsystemd libwacom pulseaudio pulseaudio-alsa upower
+ librsvg libgweather geocode-glib geoclue2 nss libgudev)
+makedepends=(intltool xf86-input-wacom libxslt docbook-xsl python git 
gnome-common)
 options=('!emptydirs')
-install=gnome-settings-daemon.install
 url="http://www.gnome.org;
 groups=(gnome)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e84a075d895ca3baeefb8508e0a901027b66f7d5a7ee8c966e31d301b38e78e7')
+source=('git://git.gnome.org/gnome-settings-daemon#commit=40bf4fdce0001c662094f47e8edc1b0855ec9632')
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --long | sed -e 's/-/+/g' -e 's/^GNOME_SETTINGS_DAEMON_//' -e 
's/_/./g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
 
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --libexecdir=/usr/lib/$pkgname --disable-static
@@ -31,6 +40,6 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 }

Deleted: gnome-settings-daemon.install
===
--- gnome-settings-daemon.install   2016-06-03 08:20:59 UTC (rev 268867)
+++ gnome-settings-daemon.install   2016-06-03 12:09:10 UTC (rev 268868)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}


[arch-commits] Commit in phoronix-test-suite/trunk (PKGBUILD)

2016-06-03 Thread Sergej Pupykin
Date: Friday, June 3, 2016 @ 13:21:44
  Author: spupykin
Revision: 177814

upgpkg: phoronix-test-suite 6.4.0-1

upd

Modified:
  phoronix-test-suite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 11:21:35 UTC (rev 177813)
+++ PKGBUILD2016-06-03 11:21:44 UTC (rev 177814)
@@ -3,8 +3,8 @@
 # Contributor: Andreas Schönfelder 
 
 pkgname=phoronix-test-suite
-pkgver=6.2.0
-pkgrel=2
+pkgver=6.4.0
+pkgrel=1
 pkgdesc="The most comprehensive testing and benchmarking platform available 
for Linux"
 arch=('any')
 license=('GPL3')
@@ -14,7 +14,7 @@
'php-gd')
 install=${pkgname}.install
 
source=(http://www.phoronix.net/downloads/phoronix-test-suite/releases/phoronix-test-suite-$pkgver.tar.gz)
-md5sums=('bd8498d670ecd5fa08e53757a0b4c1fc')
+md5sums=('5c745b8dbf0b6732993f800ce6b20a17')
 
 package() {
   cd $srcdir/phoronix-test-suite


[arch-commits] Commit in phoronix-test-suite/repos/community-any (4 files)

2016-06-03 Thread Sergej Pupykin
Date: Friday, June 3, 2016 @ 13:21:54
  Author: spupykin
Revision: 177815

archrelease: copy trunk to community-any

Added:
  phoronix-test-suite/repos/community-any/PKGBUILD
(from rev 177814, phoronix-test-suite/trunk/PKGBUILD)
  phoronix-test-suite/repos/community-any/phoronix-test-suite.install
(from rev 177814, phoronix-test-suite/trunk/phoronix-test-suite.install)
Deleted:
  phoronix-test-suite/repos/community-any/PKGBUILD
  phoronix-test-suite/repos/community-any/phoronix-test-suite.install

-+
 PKGBUILD|   54 +-
 phoronix-test-suite.install |   24 +-
 2 files changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 11:21:44 UTC (rev 177814)
+++ PKGBUILD2016-06-03 11:21:54 UTC (rev 177815)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andreas Schönfelder 
-
-pkgname=phoronix-test-suite
-pkgver=6.2.0
-pkgrel=2
-pkgdesc="The most comprehensive testing and benchmarking platform available 
for Linux"
-arch=('any')
-license=('GPL3')
-url="http://www.phoronix-test-suite.com/;
-depends=('php')
-optdepends=('php-gtk'
-   'php-gd')
-install=${pkgname}.install
-source=(http://www.phoronix.net/downloads/phoronix-test-suite/releases/phoronix-test-suite-$pkgver.tar.gz)
-md5sums=('bd8498d670ecd5fa08e53757a0b4c1fc')
-
-package() {
-  cd $srcdir/phoronix-test-suite
-  sed -i "s#--noconfirm#--noconfirm --asdeps#" 
pts-core/external-test-dependencies/scripts/install-arch-packages.sh
-  install -dm755 $pkgdir/usr/share/phoronix-test-suite
-  sed -e "s/^export PTS_DIR=.*/export 
PTS_DIR=\/usr\/share\/phoronix-test-suite/g" -i phoronix-test-suite
-  install -Dm755 phoronix-test-suite $pkgdir/usr/bin/phoronix-test-suite
-  rm -f $pkgdir/usr/share/phoronix-test-suite/pts/etc/scripts/package-build-*
-  cp -r pts-core/ $pkgdir/usr/share/phoronix-test-suite/
-}

Copied: phoronix-test-suite/repos/community-any/PKGBUILD (from rev 177814, 
phoronix-test-suite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 11:21:54 UTC (rev 177815)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andreas Schönfelder 
+
+pkgname=phoronix-test-suite
+pkgver=6.4.0
+pkgrel=1
+pkgdesc="The most comprehensive testing and benchmarking platform available 
for Linux"
+arch=('any')
+license=('GPL3')
+url="http://www.phoronix-test-suite.com/;
+depends=('php')
+optdepends=('php-gtk'
+   'php-gd')
+install=${pkgname}.install
+source=(http://www.phoronix.net/downloads/phoronix-test-suite/releases/phoronix-test-suite-$pkgver.tar.gz)
+md5sums=('5c745b8dbf0b6732993f800ce6b20a17')
+
+package() {
+  cd $srcdir/phoronix-test-suite
+  sed -i "s#--noconfirm#--noconfirm --asdeps#" 
pts-core/external-test-dependencies/scripts/install-arch-packages.sh
+  install -dm755 $pkgdir/usr/share/phoronix-test-suite
+  sed -e "s/^export PTS_DIR=.*/export 
PTS_DIR=\/usr\/share\/phoronix-test-suite/g" -i phoronix-test-suite
+  install -Dm755 phoronix-test-suite $pkgdir/usr/bin/phoronix-test-suite
+  rm -f $pkgdir/usr/share/phoronix-test-suite/pts/etc/scripts/package-build-*
+  cp -r pts-core/ $pkgdir/usr/share/phoronix-test-suite/
+}

Deleted: phoronix-test-suite.install
===
--- phoronix-test-suite.install 2016-06-03 11:21:44 UTC (rev 177814)
+++ phoronix-test-suite.install 2016-06-03 11:21:54 UTC (rev 177815)
@@ -1,12 +0,0 @@
-post_install() {
-  echo ">>>"
-  echo ">>> To complete the installation you should edit /etc/php/php.ini."
-  echo ">>> - Add / to the open_basedir list or comment this variable out."
-  echo ">>> - Enable zip.so"
-  echo ">>>"
-  echo ">>> EXAMPLE:"
-  echo ">>> ; open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/"
-  echo ">>> extension=zip.so"
-  echo ">>>"
-  echo ">>> To enable the GUI make sure you install php-gtk from aur"
-}

Copied: phoronix-test-suite/repos/community-any/phoronix-test-suite.install 
(from rev 177814, phoronix-test-suite/trunk/phoronix-test-suite.install)
===
--- phoronix-test-suite.install (rev 0)
+++ phoronix-test-suite.install 2016-06-03 11:21:54 UTC (rev 177815)
@@ -0,0 +1,12 @@
+post_install() {
+  echo ">>>"
+  echo ">>> To complete the installation you should edit /etc/php/php.ini."
+  echo ">>> - Add / to the open_basedir list or comment this variable out."
+  echo ">>> - Enable zip.so"
+  echo ">>>"
+  echo ">>> EXAMPLE:"
+  echo ">>> ; open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/"
+  echo ">>> extension=zip.so"
+  echo ">>>"
+  echo ">>> To enable the GUI make sure you install php-gtk from aur"
+}


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

2016-06-03 Thread Sergej Pupykin
Date: Friday, June 3, 2016 @ 13:21:35
  Author: spupykin
Revision: 177813

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-03 11:21:15 UTC (rev 177812)
+++ community-i686/PKGBUILD 2016-06-03 11:21:35 UTC (rev 177813)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.7.1
-pkgrel=1
-arch=("i686" "x86_64")
-url="http://gmic.eu/;
-license=("custom:CeCILL")
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz;)
-md5sums=('86e381b680a6558ac3d62fc2f3b052d0')
-
-prepare() {
-  cd "${srcdir}/gmic-${pkgver}"
-  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
--e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
-src/Makefile
-}
-
-build() {
-  cd "${srcdir}/gmic-${pkgver}"
-  (cd zart && qmake-qt4 -o Makefile zart.pro)
-  make -C src all
-  make -C zart all
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
-  replaces=("greycstoration")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  make -C src install DESTDIR="$pkgdir" USR="/usr"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=("opencv" "fftw" "qt4")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=("opencv" "gimp" "fftw")
-  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
-
-  cd "${srcdir}/gmic-${pkgver}"
-  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 177812, 
gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-03 11:21:35 UTC (rev 177813)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.7.2
+pkgrel=1
+arch=("i686" "x86_64")
+url="http://gmic.eu/;
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz;)
+md5sums=('93ca12905081f1b6004ce8f2e8ddcc8f')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  

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

2016-06-03 Thread Sergej Pupykin
Date: Friday, June 3, 2016 @ 13:21:15
  Author: spupykin
Revision: 177812

upgpkg: gmic 1.7.2-1

upd

Modified:
  gmic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 09:48:28 UTC (rev 177811)
+++ PKGBUILD2016-06-03 11:21:15 UTC (rev 177812)
@@ -6,7 +6,7 @@
 
 pkgbase=gmic
 pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.7.1
+pkgver=1.7.2
 pkgrel=1
 arch=("i686" "x86_64")
 url="http://gmic.eu/;
@@ -13,7 +13,7 @@
 license=("custom:CeCILL")
 makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
 source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz;)
-md5sums=('86e381b680a6558ac3d62fc2f3b052d0')
+md5sums=('93ca12905081f1b6004ce8f2e8ddcc8f')
 
 prepare() {
   cd "${srcdir}/gmic-${pkgver}"


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

2016-06-03 Thread Jonathan Steel
Date: Friday, June 3, 2016 @ 11:48:28
  Author: jsteel
Revision: 177811

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 177810, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 09:48:21 UTC (rev 177810)
+++ PKGBUILD2016-06-03 09:48:28 UTC (rev 177811)
@@ -1,32 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.10.34
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('4a7439fad2269a1b197b959e43924797')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 177810, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 09:48:28 UTC (rev 177811)
@@ -0,0 +1,32 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.10.35
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('207a1abc6d4e92ba4840517a7bc5fa1c')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+}


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

2016-06-03 Thread Jonathan Steel
Date: Friday, June 3, 2016 @ 11:48:21
  Author: jsteel
Revision: 177810

upgpkg: aws-cli 1.10.35-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 09:46:06 UTC (rev 177809)
+++ PKGBUILD2016-06-03 09:48:21 UTC (rev 177810)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.10.34
+pkgver=1.10.35
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('4a7439fad2269a1b197b959e43924797')
+md5sums=('207a1abc6d4e92ba4840517a7bc5fa1c')
 
 build() {
   cd $pkgname-$pkgver


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

2016-06-03 Thread Jonathan Steel
Date: Friday, June 3, 2016 @ 11:45:55
  Author: jsteel
Revision: 177808

upgpkg: python-botocore 1.4.25-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 08:31:32 UTC (rev 177807)
+++ PKGBUILD2016-06-03 09:45:55 UTC (rev 177808)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.4.24
+pkgver=1.4.25
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('c7db361ceecd284c1e6f17bc9be2e6c7')
+md5sums=('c0d482211c62475a9b88fddce4cf0066')
 
 build() {
   cd botocore-$pkgver


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

2016-06-03 Thread Jonathan Steel
Date: Friday, June 3, 2016 @ 11:46:06
  Author: jsteel
Revision: 177809

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 09:45:55 UTC (rev 177808)
+++ PKGBUILD2016-06-03 09:46:06 UTC (rev 177809)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.4.24
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('c7db361ceecd284c1e6f17bc9be2e6c7')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 177808, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 09:46:06 UTC (rev 177809)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.4.25
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('c0d482211c62475a9b88fddce4cf0066')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-06-03 Thread Sven-Hendrik Haase
Date: Friday, June 3, 2016 @ 10:31:32
  Author: svenstaro
Revision: 177807

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-03 08:31:22 UTC (rev 177806)
+++ community-i686/PKGBUILD 2016-06-03 08:31:32 UTC (rev 177807)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: philefou 
-# Contributor: lindquist 
-# Contributor: Christoph Siegenthaler 
-# Contributor: Mihai Militaru 
-# Contributor: SpepS 
-
-pkgbase=glfw
-pkgname=('glfw-x11' 'glfw-wayland' 'glfw-doc')
-pkgver=3.2
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://www.glfw.org/;
-license=('custom:ZLIB')
-makedepends=('mesa' 'cmake' 'doxygen' 'vulkan-headers' 'vulkan-icd-loader'
- 'extra-cmake-modules' 'wayland-protocols' 'libxi' 'libxrandr'
- 'libxcursor' 'libxkbcommon' 'libxinerama')
-source=("https://github.com/glfw/glfw/archive/${pkgver}.tar.gz;)
-md5sums=('a4a7248d771717a84c8997b7b712cd57')
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  [[ -d build-x11 ]] && rm -r build-x11
-  mkdir build-x11 && cd build-x11
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DBUILD_SHARED_LIBS=ON
-  make docs
-
-  cd ..
-
-  [[ -d build-wayland ]] && rm -r build-wayland
-  mkdir build-wayland && cd build-wayland
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DBUILD_SHARED_LIBS=ON \
-  -DGLFW_USE_WAYLAND=ON
-}
-
-package_glfw-x11() {
-  pkgdesc="A free, open source, portable framework for graphical application 
development (x11)"
-  depends=('libxi' 'libxrandr' 'libxinerama' 'libxcursor' 'libgl')
-  replaces=('glfw')
-
-  cd "$srcdir/$pkgbase-$pkgver"/build-x11
-
-  make DESTDIR=$pkgdir install
-
-  cd ..
-  install -Dm644 COPYING.txt "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_glfw-wayland() {
-  pkgdesc="A free, open source, portable framework for graphical application 
development (wayland)"
-  depends=('wayland' 'libxkbcommon' 'libgl')
-
-  cd "$srcdir/$pkgbase-$pkgver"/build-wayland
-
-  make DESTDIR=$pkgdir install
-
-  cd ..
-  install -Dm644 COPYING.txt "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_glfw-doc() {
-  pkgdesc="Set of HTML documentation for GLFW"
-
-  mkdir -p "${pkgdir}/usr/share/doc/glfw/"
-  cp -r "${srcdir}/glfw-${pkgver}/build-x11/docs/html" 
"${pkgdir}/usr/share/doc/glfw"
-}

Copied: glfw/repos/community-i686/PKGBUILD (from rev 177806, 
glfw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-03 08:31:32 UTC (rev 177807)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: philefou 
+# Contributor: lindquist 
+# Contributor: Christoph Siegenthaler 
+# Contributor: Mihai Militaru 
+# Contributor: SpepS 
+
+pkgbase=glfw
+pkgname=('glfw-x11' 'glfw-wayland' 'glfw-doc')
+pkgver=3.2
+pkgrel=3
+arch=('i686' 'x86_64')
+url="http://www.glfw.org/;
+license=('custom:ZLIB')
+makedepends=('mesa' 'cmake' 'doxygen' 'vulkan-headers' 'vulkan-icd-loader'
+ 'extra-cmake-modules' 'wayland-protocols' 'libxi' 'libxrandr'
+ 'libxcursor' 'libxkbcommon' 'libxinerama')
+source=("https://github.com/glfw/glfw/archive/${pkgver}.tar.gz;)
+md5sums=('a4a7248d771717a84c8997b7b712cd57')
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  [[ -d build-x11 ]] && rm -r build-x11
+  mkdir build-x11 && cd build-x11
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_SHARED_LIBS=ON
+  make docs
+
+  cd ..
+
+  [[ -d build-wayland ]] && rm -r build-wayland
+  mkdir build-wayland && cd build-wayland
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_SHARED_LIBS=ON \
+  -DGLFW_USE_WAYLAND=ON
+}
+
+package_glfw-x11() {
+  pkgdesc="A free, open source, portable framework for graphical application 
development (x11)"
+  depends=('libxi' 'libxrandr' 'libxinerama' 'libxcursor' 'libgl')
+  replaces=('glfw')
+  provides=('glfw')
+
+  cd "$srcdir/$pkgbase-$pkgver"/build-x11
+
+  make DESTDIR=$pkgdir install
+
+  cd ..
+  install -Dm644 COPYING.txt "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+package_glfw-wayland() {
+  

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

2016-06-03 Thread Sven-Hendrik Haase
Date: Friday, June 3, 2016 @ 10:31:22
  Author: svenstaro
Revision: 177806

upgpkg: glfw 3.2-3

add provides

Modified:
  glfw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 08:03:45 UTC (rev 177805)
+++ PKGBUILD2016-06-03 08:31:22 UTC (rev 177806)
@@ -9,7 +9,7 @@
 pkgbase=glfw
 pkgname=('glfw-x11' 'glfw-wayland' 'glfw-doc')
 pkgver=3.2
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url="http://www.glfw.org/;
 license=('custom:ZLIB')
@@ -45,6 +45,7 @@
   pkgdesc="A free, open source, portable framework for graphical application 
development (x11)"
   depends=('libxi' 'libxrandr' 'libxinerama' 'libxcursor' 'libgl')
   replaces=('glfw')
+  provides=('glfw')
 
   cd "$srcdir/$pkgbase-$pkgver"/build-x11
 


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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 10:20:59
  Author: fyan
Revision: 268867

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-03 08:19:33 UTC (rev 268866)
+++ extra-i686/PKGBUILD 2016-06-03 08:20:59 UTC (rev 268867)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-cryptography
-pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=1.3.2
-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' 'python2-enum34'
- 'python-pyasn1' 'python2-pyasn1' 'python-idna' 'python2-idna' 
'python2-ipaddress')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
"python-cryptography-vectors=$pkgver" "python2-cryptography-vectors=$pkgver"
-  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend' 'python-pyasn1-modules' 'python2-pyasn1-modules'
-  'python-hypothesis' 'python2-hypothesis')
-source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
-md5sums=('0359190f291824dc8ad9e6d477a607b2')
-
-prepare() {
-  cp -a cryptography-${pkgver}{,-python2}
-}
-
-build() {
-   cd "$srcdir"/cryptography-$pkgver
-   python setup.py build
- 
-   cd "$srcdir"/cryptography-$pkgver-python2
-   python2 setup.py build
-}
-
-check() {
-   cd "$srcdir"/cryptography-$pkgver
-   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" python setup.py ptr
-
-   cd "$srcdir"/cryptography-$pkgver-python2
-   PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" python2 setup.py 
ptr
-}
- 
-package_python-cryptography() {
-   depends=('python-pyasn1' 'python-six' 'python-cffi' 'python-idna')
- 
-   cd cryptography-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
- 
-package_python2-cryptography() {
-   depends=('python2-pyasn1' 'python2-six' 'python2-cffi' 'python2-enum34' 
'python2-idna' 'python2-ipaddress')
- 
-   cd cryptography-$pkgver-python2
-   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-cryptography/repos/extra-i686/PKGBUILD (from rev 268866, 
python-cryptography/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-03 08:20:59 UTC (rev 268867)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=1.3.4
+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' 'python2-enum34'
+ 'python-pyasn1' 'python2-pyasn1' 'python-idna' 'python2-idna' 
'python2-ipaddress')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
"python-cryptography-vectors=$pkgver" "python2-cryptography-vectors=$pkgver"
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend' 'python-pyasn1-modules' 'python2-pyasn1-modules'
+  'python-hypothesis' 'python2-hypothesis')
+source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
+md5sums=('defd153ed901089f5aeac6eb066d5ef7')
+
+prepare() {
+  cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   cd "$srcdir"/cryptography-$pkgver
+   python setup.py build
+ 
+   cd "$srcdir"/cryptography-$pkgver-python2
+   python2 setup.py build
+}
+
+check() {
+   cd "$srcdir"/cryptography-$pkgver
+   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" python setup.py ptr
+
+   cd "$srcdir"/cryptography-$pkgver-python2
+   PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" python2 setup.py 
ptr
+}
+ 
+package_python-cryptography() {
+   depends=('python-pyasn1' 'python-six' 'python-cffi' 'python-idna')
+ 
+   cd cryptography-$pkgver
+   python setup.py install 

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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 10:19:33
  Author: fyan
Revision: 268866

upgpkg: python-cryptography 1.3.4-1

Modified:
  python-cryptography/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 08:03:41 UTC (rev 268865)
+++ PKGBUILD2016-06-03 08:19:33 UTC (rev 268866)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cryptography
 pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=1.3.2
+pkgver=1.3.4
 pkgrel=1
 pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
   'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend' 'python-pyasn1-modules' 'python2-pyasn1-modules'
   'python-hypothesis' 'python2-hypothesis')
 
source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
-md5sums=('0359190f291824dc8ad9e6d477a607b2')
+md5sums=('defd153ed901089f5aeac6eb066d5ef7')
 
 prepare() {
   cp -a cryptography-${pkgver}{,-python2}


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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 10:03:45
  Author: fyan
Revision: 177805

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-03 08:03:27 UTC (rev 177804)
+++ PKGBUILD2016-06-03 08:03:45 UTC (rev 177805)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-cryptography-vectors
-pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=1.3.2
-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=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-md5sums=('c88c2ba36fa86d218cc9d497e29e0f0f')
-
-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 
177804, python-cryptography-vectors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-03 08:03:45 UTC (rev 177805)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cryptography-vectors
+pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
+pkgver=1.3.4
+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=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
+md5sums=('6c6e4667c2701211b8c637ad2950860e')
+
+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 xorg-server/repos (12 files)

2016-06-03 Thread Laurent Carlier
Date: Friday, June 3, 2016 @ 10:03:41
  Author: lcarlier
Revision: 268865

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

Added:
  xorg-server/repos/testing-i686/
  xorg-server/repos/testing-i686/PKGBUILD
(from rev 268864, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-i686/call-eglBindAPI-after-eglInitialize.patch
(from rev 268864, 
xorg-server/trunk/call-eglBindAPI-after-eglInitialize.patch)
  xorg-server/repos/testing-i686/xorg-server.install
(from rev 268864, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/testing-i686/xvfb-run
(from rev 268864, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-i686/xvfb-run.1
(from rev 268864, xorg-server/trunk/xvfb-run.1)
  xorg-server/repos/testing-x86_64/
  xorg-server/repos/testing-x86_64/PKGBUILD
(from rev 268864, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-x86_64/call-eglBindAPI-after-eglInitialize.patch
(from rev 268864, 
xorg-server/trunk/call-eglBindAPI-after-eglInitialize.patch)
  xorg-server/repos/testing-x86_64/xorg-server.install
(from rev 268864, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/testing-x86_64/xvfb-run
(from rev 268864, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-x86_64/xvfb-run.1
(from rev 268864, xorg-server/trunk/xvfb-run.1)

--+
 testing-i686/PKGBUILD|  221 ++
 testing-i686/call-eglBindAPI-after-eglInitialize.patch   |   48 ++
 testing-i686/xorg-server.install |   18 
 testing-i686/xvfb-run|  180 
 testing-i686/xvfb-run.1  |  282 +
 testing-x86_64/PKGBUILD  |  221 ++
 testing-x86_64/call-eglBindAPI-after-eglInitialize.patch |   48 ++
 testing-x86_64/xorg-server.install   |   18 
 testing-x86_64/xvfb-run  |  180 
 testing-x86_64/xvfb-run.1|  282 +
 10 files changed, 1498 insertions(+)

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


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

2016-06-03 Thread Felix Yan
Date: Friday, June 3, 2016 @ 10:03:27
  Author: fyan
Revision: 177804

upgpkg: python-cryptography-vectors 1.3.4-1

Modified:
  python-cryptography-vectors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 05:20:52 UTC (rev 177803)
+++ PKGBUILD2016-06-03 08:03:27 UTC (rev 177804)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cryptography-vectors
 pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=1.3.2
+pkgver=1.3.4
 pkgrel=1
 pkgdesc="Test vectors for the cryptography package"
 arch=('any')
@@ -11,7 +11,7 @@
 url="http://pypi.python.org/pypi/cryptography-vectors;
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-md5sums=('c88c2ba36fa86d218cc9d497e29e0f0f')
+md5sums=('6c6e4667c2701211b8c637ad2950860e')
 
 prepare() {
cp -a cryptography_vectors-$pkgver{,-python2}


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

2016-06-03 Thread Laurent Carlier
Date: Friday, June 3, 2016 @ 10:03:28
  Author: lcarlier
Revision: 268864

upgpkg: xorg-server 1.18.3-2

Fix glamor failling to initialize with mesa git e8b38ca

Added:
  xorg-server/trunk/call-eglBindAPI-after-eglInitialize.patch
Modified:
  xorg-server/trunk/PKGBUILD

---+
 PKGBUILD  |   14 ++--
 call-eglBindAPI-after-eglInitialize.patch |   48 
 2 files changed, 59 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 07:31:30 UTC (rev 268863)
+++ PKGBUILD2016-06-03 08:03:28 UTC (rev 268864)
@@ -5,7 +5,7 @@
 pkgbase=xorg-server
 pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xdmx' 
'xorg-server-xvfb' 'xorg-server-xnest' 'xorg-server-xwayland' 
'xorg-server-common' 'xorg-server-devel')
 pkgver=1.18.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('custom')
 groups=('xorg')
@@ -19,7 +19,8 @@
  'libxshmfence' 'libunwind')
 source=(${url}/releases/individual/xserver/${pkgbase}-${pkgver}.tar.bz2{,.sig}
 xvfb-run
-xvfb-run.1)
+xvfb-run.1
+call-eglBindAPI-after-eglInitialize.patch)
 validpgpkeys=('7B27A3F1A6E18CD9588B4AE8310180050905E40C'
   'C383B778255613DFDB409D91DB221A690011'
   'DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3')
@@ -26,8 +27,15 @@
 sha256sums=('ea739c22517cdbe2b5f7c0a5fd05fe8a10ac0629003e71c0c7862f4bb60142cd'
 'SKIP'
 'ff0156309470fc1d378fd2e104338020a884295e285972cc88e250e031cc35b9'
-'2460adccd3362fefd4cdc5f1c70f332d7b578091fb9167bf88b5f91265bbd776')
+'2460adccd3362fefd4cdc5f1c70f332d7b578091fb9167bf88b5f91265bbd776'
+'45fdc2a1241d458756c41a93c01846e04cc75f3c75f81f48b61533d08280918d')
 
+prepare() {
+  cd "${pkgbase}-${pkgver}"
+
+  patch -Np1 -i ../call-eglBindAPI-after-eglInitialize.patch
+}
+
 build() {
   cd "${pkgbase}-${pkgver}"
   ./configure --prefix=/usr \

Added: call-eglBindAPI-after-eglInitialize.patch
===
--- call-eglBindAPI-after-eglInitialize.patch   (rev 0)
+++ call-eglBindAPI-after-eglInitialize.patch   2016-06-03 08:03:28 UTC (rev 
268864)
@@ -0,0 +1,48 @@
+diff --git a/glamor/glamor_egl.c b/glamor/glamor_egl.c
+index 4bcd3ce..16a20a7 100644
+--- a/glamor/glamor_egl.c
 b/glamor/glamor_egl.c
+@@ -770,11 +770,6 @@ glamor_egl_init(ScrnInfoPtr scrn, int fd)
+ 
+ glamor_egl->has_gem = glamor_egl_check_has_gem(fd);
+ 
+-#ifndef GLAMOR_GLES2
+-eglBindAPI(EGL_OPENGL_API);
+-#else
+-eglBindAPI(EGL_OPENGL_ES_API);
+-#endif
+ if (!eglInitialize
+ (glamor_egl->display, _egl->major, _egl->minor)) {
+ xf86DrvMsg(scrn->scrnIndex, X_ERROR, "eglInitialize() failed\n");
+@@ -782,6 +777,12 @@ glamor_egl_init(ScrnInfoPtr scrn, int fd)
+ goto error;
+ }
+ 
++#ifndef GLAMOR_GLES2
++eglBindAPI(EGL_OPENGL_API);
++#else
++eglBindAPI(EGL_OPENGL_ES_API);
++#endif
++
+ version = eglQueryString(glamor_egl->display, EGL_VERSION);
+ xf86Msg(X_INFO, "%s: EGL version %s:\n", glamor_name, version);
+ 
+diff --git a/hw/xwayland/xwayland-glamor.c b/hw/xwayland/xwayland-glamor.c
+index ad66cf6..73ccd71 100644
+--- a/hw/xwayland/xwayland-glamor.c
 b/hw/xwayland/xwayland-glamor.c
+@@ -298,12 +298,13 @@ xwl_drm_init_egl(struct xwl_screen *xwl_screen)
+ return;
+ }
+ 
+-eglBindAPI(EGL_OPENGL_API);
+ if (!eglInitialize(xwl_screen->egl_display, , )) {
+ ErrorF("eglInitialize() failed\n");
+ return;
+ }
+ 
++eglBindAPI(EGL_OPENGL_API);
++
+ version = eglQueryString(xwl_screen->egl_display, EGL_VERSION);
+ ErrorF("glamor: EGL version %s:\n", version);
+ 


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

2016-06-03 Thread Florian Pritz
Date: Friday, June 3, 2016 @ 09:31:26
  Author: bluewind
Revision: 268862

upgpkg: pacman-mirrorlist 20160603-1

upstream update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |6 +++---
 mirrorlist |6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 07:01:42 UTC (rev 268861)
+++ PKGBUILD2016-06-03 07:31:26 UTC (rev 268862)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee <d...@archlinux.org>
 
 pkgname=pacman-mirrorlist
-pkgver=20160601
+pkgver=20160603
 pkgrel=1
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('2fbc72314d222b7d7a4366d2977437e3')
-sha256sums=('082d85c8fa11bee66f0a0c509a9a4d5e42200f8fa489f0f7649ce4120ffad03b')
+md5sums=('70c8f0d2ad4904cf4ee1497d03e88163')
+sha256sums=('924bddb8d479e73993dd3230f4310f66e7041b3aa2a4e79c4a53fe8b0248dd33')

Modified: mirrorlist
===
--- mirrorlist  2016-06-03 07:01:42 UTC (rev 268861)
+++ mirrorlist  2016-06-03 07:31:26 UTC (rev 268862)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2016-06-01
+## Generated on 2016-06-03
 ##
 
 ## Worldwide
@@ -120,8 +120,6 @@
 #Server = https://fooo.biz/archlinux/$repo/os/$arch
 #Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch
 #Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch
-#Server = http://mirror.bitjungle.info/archlinux/$repo/os/$arch
-#Server = https://mirror.bitjungle.info/archlinux/$repo/os/$arch
 #Server = http://archlinux.mailtunnel.eu/$repo/os/$arch
 #Server = https://www.mailtunnel.eu/archlinux/$repo/os/$arch
 #Server = http://mir.archlinux.fr/$repo/os/$arch
@@ -268,6 +266,7 @@
 ## Macedonia
 #Server = http://arch.softver.org.mk/archlinux/$repo/os/$arch
 #Server = http://mirror.t-home.mk/archlinux/$repo/os/$arch
+#Server = https://mirror.t-home.mk/archlinux/$repo/os/$arch
 
 ## Netherlands
 #Server = http://arch.apt-get.eu/$repo/os/$arch
@@ -327,6 +326,7 @@
 
 ## Slovakia
 #Server = http://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
+#Server = https://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
 #Server = http://tux.rainside.sk/archlinux/$repo/os/$arch
 
 ## South Africa


[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)

2016-06-03 Thread Florian Pritz
Date: Friday, June 3, 2016 @ 09:31:30
  Author: bluewind
Revision: 268863

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 268862, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 268862, pacman-mirrorlist/trunk/mirrorlist)
  pacman-mirrorlist/repos/core-any/upgpkg
(from rev 268862, pacman-mirrorlist/trunk/upgpkg)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist
  pacman-mirrorlist/repos/core-any/upgpkg

+
 PKGBUILD   |   62 ++--
 mirrorlist |  882 +--
 upgpkg |8 
 3 files changed, 476 insertions(+), 476 deletions(-)

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


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

2016-06-03 Thread Rémy Oudompheng
Date: Friday, June 3, 2016 @ 09:01:42
  Author: remy
Revision: 268861

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

Added:
  asymptote/repos/extra-i686/PKGBUILD
(from rev 268860, asymptote/trunk/PKGBUILD)
  asymptote/repos/extra-i686/fix-ghostscript-9.15.diff
(from rev 268860, asymptote/trunk/fix-ghostscript-9.15.diff)
  asymptote/repos/extra-i686/texlive.install
(from rev 268860, asymptote/trunk/texlive.install)
  asymptote/repos/extra-x86_64/PKGBUILD
(from rev 268860, asymptote/trunk/PKGBUILD)
  asymptote/repos/extra-x86_64/fix-ghostscript-9.15.diff
(from rev 268860, asymptote/trunk/fix-ghostscript-9.15.diff)
  asymptote/repos/extra-x86_64/texlive.install
(from rev 268860, asymptote/trunk/texlive.install)
Deleted:
  asymptote/repos/extra-i686/PKGBUILD
  asymptote/repos/extra-i686/fix-ghostscript-9.15.diff
  asymptote/repos/extra-i686/texlive.install
  asymptote/repos/extra-x86_64/PKGBUILD
  asymptote/repos/extra-x86_64/fix-ghostscript-9.15.diff
  asymptote/repos/extra-x86_64/texlive.install

+
 /PKGBUILD  |   92 +++
 /fix-ghostscript-9.15.diff |   62 
 /texlive.install   |   26 
 extra-i686/PKGBUILD|   46 ---
 extra-i686/fix-ghostscript-9.15.diff   |   31 --
 extra-i686/texlive.install |   13 
 extra-x86_64/PKGBUILD  |   46 ---
 extra-x86_64/fix-ghostscript-9.15.diff |   31 --
 extra-x86_64/texlive.install   |   13 
 9 files changed, 180 insertions(+), 180 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-03 06:44:21 UTC (rev 268860)
+++ extra-i686/PKGBUILD 2016-06-03 07:01:42 UTC (rev 268861)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Rémy Oudompheng 
-# Contributor: Firmicus 
-# Contributor: bender02 at gmx dot com
-
-pkgname=asymptote
-pkgver=2.37
-pkgrel=1
-pkgdesc="A vector graphics language (like metapost)"
-arch=('i686' 'x86_64')
-url="http://asymptote.sourceforge.net/;
-license=("GPL3")
-depends=('texlive-core' 'gc' 'freeglut' 'glu' 'gsl' 'fftw' 'libsigsegv')
-makedepends=('ghostscript' 'imagemagick'
- 'mesa'   # For OpenGL headers
- 'texlive-plainextra' # For texinfo
-)
-optdepends=('python2:   for the xasy GUI'
-'python2-pillow:for the xasy GUI'
-'tix:   for the xasy GUI')
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.src.tgz;)
-sha1sums=('758f56247604f0066d038b467451df970e6bc94b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --enable-gc=/usr \
-  --prefix=/usr \
-  --with-latex=/usr/share/texmf/tex/latex \
-  --with-context=/usr/share/texmf/tex/context \
-  --enable-offscreen
-  make all
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check-all
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -j1 DESTDIR="${pkgdir}" install-all
-  sed -i -e 's@env python@env python2@' ${pkgdir}/usr/share/asymptote/GUI/*.py
-  # this dir contains png files that are already embedded in the pdf 
documentation:
-  rm -rf ${pkgdir}/usr/share/info/asymptote
-}

Copied: asymptote/repos/extra-i686/PKGBUILD (from rev 268860, 
asymptote/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-03 07:01:42 UTC (rev 268861)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: Firmicus 
+# Contributor: bender02 at gmx dot com
+
+pkgname=asymptote
+pkgver=2.38
+pkgrel=1
+pkgdesc="A vector graphics language (like metapost)"
+arch=('i686' 'x86_64')
+url="http://asymptote.sourceforge.net/;
+license=("GPL3")
+depends=('texlive-core' 'gc' 'freeglut' 'glu' 'gsl' 'fftw' 'libsigsegv')
+makedepends=('ghostscript' 'imagemagick'
+ 'mesa'   # For OpenGL headers
+ 'texlive-plainextra' # For texinfo
+)
+optdepends=('python2:   for the xasy GUI'
+'python2-pillow:for the xasy GUI'
+'tix:   for the xasy GUI')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.src.tgz;)
+sha1sums=('911dc852a788f19300ae44162dbc12539de9e0b3')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --enable-gc=/usr \
+  --prefix=/usr \
+  --with-latex=/usr/share/texmf/tex/latex \
+  --with-context=/usr/share/texmf/tex/context \
+  --enable-offscreen
+  make all
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check-all
+}
+
+package() {
+  cd 

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

2016-06-03 Thread Rémy Oudompheng
Date: Friday, June 3, 2016 @ 08:44:21
  Author: remy
Revision: 268860

upgpkg: asymptote 2.38-1

Update to upstream version 2.38

Modified:
  asymptote/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 04:45:17 UTC (rev 268859)
+++ PKGBUILD2016-06-03 06:44:21 UTC (rev 268860)
@@ -4,7 +4,7 @@
 # Contributor: bender02 at gmx dot com
 
 pkgname=asymptote
-pkgver=2.37
+pkgver=2.38
 pkgrel=1
 pkgdesc="A vector graphics language (like metapost)"
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 'python2-pillow:for the xasy GUI'
 'tix:   for the xasy GUI')
 
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.src.tgz;)
-sha1sums=('758f56247604f0066d038b467451df970e6bc94b')
+sha1sums=('911dc852a788f19300ae44162dbc12539de9e0b3')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"