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

2015-06-05 Thread Sébastien Luttringer
Date: Friday, June 5, 2015 @ 08:22:12
  Author: seblu
Revision: 240362

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

Added:
  pcre/repos/core-i686/01-seven-security-patches.patch
(from rev 240361, pcre/repos/testing-i686/01-seven-security-patches.patch)
  pcre/repos/core-i686/PKGBUILD
(from rev 240361, pcre/repos/testing-i686/PKGBUILD)
  pcre/repos/core-x86_64/01-seven-security-patches.patch
(from rev 240361, pcre/repos/testing-x86_64/01-seven-security-patches.patch)
  pcre/repos/core-x86_64/PKGBUILD
(from rev 240361, pcre/repos/testing-x86_64/PKGBUILD)
Deleted:
  pcre/repos/core-i686/PKGBUILD
  pcre/repos/core-x86_64/PKGBUILD
  pcre/repos/testing-i686/
  pcre/repos/testing-x86_64/

-+
 /PKGBUILD   |  104 ++
 core-i686/01-seven-security-patches.patch   | 1250 ++
 core-i686/PKGBUILD  |   50 -
 core-x86_64/01-seven-security-patches.patch | 1250 ++
 core-x86_64/PKGBUILD|   50 -
 5 files changed, 2604 insertions(+), 100 deletions(-)

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


[arch-commits] Commit in apache-ant/repos/extra-any (12 files)

2015-06-05 Thread Guillaume Alaux
Date: Friday, June 5, 2015 @ 10:04:03
  Author: guillaume
Revision: 240364

archrelease: copy trunk to extra-any

Added:
  apache-ant/repos/extra-any/PKGBUILD
(from rev 240363, apache-ant/trunk/PKGBUILD)
  apache-ant/repos/extra-any/ant.conf
(from rev 240363, apache-ant/trunk/ant.conf)
  apache-ant/repos/extra-any/apache-ant.csh
(from rev 240363, apache-ant/trunk/apache-ant.csh)
  apache-ant/repos/extra-any/apache-ant.install
(from rev 240363, apache-ant/trunk/apache-ant.install)
  apache-ant/repos/extra-any/apache-ant.sh
(from rev 240363, apache-ant/trunk/apache-ant.sh)
  apache-ant/repos/extra-any/bin_ant
(from rev 240363, apache-ant/trunk/bin_ant)
Deleted:
  apache-ant/repos/extra-any/PKGBUILD
  apache-ant/repos/extra-any/ant.conf
  apache-ant/repos/extra-any/apache-ant.csh
  apache-ant/repos/extra-any/apache-ant.install
  apache-ant/repos/extra-any/apache-ant.sh
  apache-ant/repos/extra-any/bin_ant

+
 PKGBUILD   |  176 +--
 ant.conf   |8 +-
 apache-ant.csh |2 
 apache-ant.install |   22 +++---
 apache-ant.sh  |2 
 bin_ant|   12 +--
 6 files changed, 111 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-05 08:03:03 UTC (rev 240363)
+++ PKGBUILD2015-06-05 08:04:03 UTC (rev 240364)
@@ -1,88 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-# Contributor: Andrew Wright andr...@photism.org
-# Contributor: Paul Mattal p...@archlinux.org
-pkgbase=apache-ant
-pkgname=('apache-ant' 'apache-ant-doc')
-pkgver=1.9.4
-pkgrel=3
-arch=('any')
-url='http://ant.apache.org/'
-license=('APACHE')
-makedepends=('java-environment' 'apache-ant' 'junit')
-source=(http://apache.org/dist/ant/source/${pkgbase}-${pkgver}-src.tar.bz2
-apache-ant.sh
-apache-ant.csh
-apache-ant.install
-bin_ant
-ant.conf)
-sha256sums=('ac594ff7dcd461ebb3e607493af7682f84b1ceaa0621e17ec6367b8d2c410a1c'
-'182b9212610790966d3a018d3cbab2e5327dd9fd11dc15dd1f377853216f5718'
-'919a3ab1acae1d0d190fe6e0034b00975caab40e55359a720bfccd098fe2d995'
-'3de451d0f963ba96e83f4e068a8325e3d4fc42b1e5c4818e9d7962ed4f5393b3'
-'29b443ae3af7e246b4ff0b5ec9f023ae95992db1a010a362e70ca7a65a6df461'
-'b86ce60f61cbd85a9faa61d698b0fc4607f1ff375cd15673aee57f053012eacb')
-
-_ant_home=/usr/share/${pkgbase}
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  # ant needs HOME to download libs to $HOME/.m2/repository
-  export ANT_OPTS=-Duser.home=${srcdir}
-  ant -Ddest=optional -f fetch.xml
-
-  rm lib/optional/junit-4.11.jar
-  ln -s /usr/share/java/junit.jar lib/optional/junit-4.11.jar
-  rm lib/optional/hamcrest-core-1.3.jar
-  ln -s /usr/share/java/hamcrest-core.jar lib/optional/hamcrest-core-1.3.jar
-
-  ant dist
-}
-
-package_apache-ant() {
-  pkgdesc='A java-based build tool'
-  depends=('java-environment')
-  optdepends=('junit: to use the junit tasks')
-  install=apache-ant.install
-
-  cd ${srcdir}/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}
-
-  install -dm755 ${pkgdir}${_ant_home}
-
-  install -dm755 ${pkgdir}/etc/${pkgbase}
-  cp -Rp etc/* ${pkgdir}/etc/${pkgbase}
-  rm ${pkgdir}/etc/${pkgbase}/ant-bootstrap.jar
-  ln -s /etc/${pkgbase} ${pkgdir}${_ant_home}/etc
-
-  install -dm755 ${pkgdir}${_ant_home}/bin
-  find bin -type f -a ! -name \*.bat -a ! -name \*.cmd \
--exec install -m755 {} ${pkgdir}${_ant_home}/bin \;
-
-  install -Dm755 ${srcdir}/bin_ant  ${pkgdir}/usr/bin/ant
-  install -Dm644 ${srcdir}/ant.conf ${pkgdir}/etc/apache-ant/ant.conf
-
-  install -dm755 ${pkgdir}/usr/share/java/${pkgbase}
-  install -m644 lib/*.jar ${pkgdir}/usr/share/java/${pkgbase}
-  ln -s /usr/share/java/${pkgbase} ${pkgdir}${_ant_home}/lib
-
-  # fix python2 path
-  sed -i 's|/usr/bin/python|/usr/bin/python2|' 
${pkgdir}${_ant_home}/bin/runant.py
-
-  # install profile.d script
-  install -dm755 ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/apache-ant.{csh,sh} ${pkgdir}/etc/profile.d/
-
-  # License says NOTICE file should be redistributed for derivative works
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -dm755 ${pkgdir}/usr/share/licenses/${pkgbase}
-  install -m644 LICENSE NOTICE ${pkgdir}/usr/share/licenses/${pkgbase}
-}
-
-package_apache-ant-doc() {
-  pkgdesc='Apache Ant build tool documentation'
-
-  install -dm755 ${pkgdir}/usr/share/doc/${pkgbase}
-  cp -r ${srcdir}/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}/manual/* \
-${pkgdir}/usr/share/doc/${pkgbase}/
-}

Copied: apache-ant/repos/extra-any/PKGBUILD (from rev 240363, 
apache-ant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-05 08:04:03 UTC (rev 240364)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: 

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

2015-06-05 Thread Guillaume Alaux
Date: Friday, June 5, 2015 @ 10:03:03
  Author: guillaume
Revision: 240363

Upstream release 1.9.5

Modified:
  apache-ant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 06:22:12 UTC (rev 240362)
+++ PKGBUILD2015-06-05 08:03:03 UTC (rev 240363)
@@ -4,8 +4,8 @@
 # Contributor: Paul Mattal p...@archlinux.org
 pkgbase=apache-ant
 pkgname=('apache-ant' 'apache-ant-doc')
-pkgver=1.9.4
-pkgrel=3
+pkgver=1.9.5
+pkgrel=1
 arch=('any')
 url='http://ant.apache.org/'
 license=('APACHE')
@@ -16,7 +16,7 @@
 apache-ant.install
 bin_ant
 ant.conf)
-sha256sums=('ac594ff7dcd461ebb3e607493af7682f84b1ceaa0621e17ec6367b8d2c410a1c'
+sha256sums=('a4a9c797597ffab321384afa06286e37d75449b74940b3e683a4b695f6fc'
 '182b9212610790966d3a018d3cbab2e5327dd9fd11dc15dd1f377853216f5718'
 '919a3ab1acae1d0d190fe6e0034b00975caab40e55359a720bfccd098fe2d995'
 '3de451d0f963ba96e83f4e068a8325e3d4fc42b1e5c4818e9d7962ed4f5393b3'


[arch-commits] Commit in lib32-pcre/repos/multilib-x86_64 (3 files)

2015-06-05 Thread Sébastien Luttringer
Date: Friday, June 5, 2015 @ 08:32:39
  Author: seblu
Revision: 134826

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-pcre/repos/multilib-x86_64/01-seven-security-patches.patch
(from rev 134825, lib32-pcre/trunk/01-seven-security-patches.patch)
  lib32-pcre/repos/multilib-x86_64/PKGBUILD
(from rev 134825, lib32-pcre/trunk/PKGBUILD)
Deleted:
  lib32-pcre/repos/multilib-x86_64/PKGBUILD

-+
 01-seven-security-patches.patch | 1250 ++
 PKGBUILD|   92 +-
 2 files changed, 1299 insertions(+), 43 deletions(-)

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


[arch-commits] Commit in lib32-pcre/trunk (01-seven-security-patches.patch PKGBUILD)

2015-06-05 Thread Sébastien Luttringer
Date: Friday, June 5, 2015 @ 08:32:13
  Author: seblu
Revision: 134825

upgpkg: lib32-pcre 8.37-2

- https://bugs.archlinux.org/task/45207

Added:
  lib32-pcre/trunk/01-seven-security-patches.patch
Modified:
  lib32-pcre/trunk/PKGBUILD

-+
 01-seven-security-patches.patch | 1250 ++
 PKGBUILD|   12 
 2 files changed, 1259 insertions(+), 3 deletions(-)

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


[arch-commits] Commit in (6 files)

2015-06-05 Thread Sven-Hendrik Haase
Date: Friday, June 5, 2015 @ 10:09:46
  Author: svenstaro
Revision: 134829

Moving emscripten from AUR

Added:
  emscripten/
  emscripten/repos/
  emscripten/trunk/
  emscripten/trunk/PKGBUILD
  emscripten/trunk/emscripten.install
  emscripten/trunk/emscripten.sh

+
 PKGBUILD   |   87 +++
 emscripten.install |   11 ++
 emscripten.sh  |7 
 3 files changed, 105 insertions(+)

Added: emscripten/trunk/PKGBUILD
===
--- emscripten/trunk/PKGBUILD   (rev 0)
+++ emscripten/trunk/PKGBUILD   2015-06-05 08:09:46 UTC (rev 134829)
@@ -0,0 +1,87 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: carstene1ns arch carsten-teibes de - http://git.io/ctPKG
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Vlad Kolotvin vlad.kolot...@gmail.com
+
+pkgname=emscripten
+pkgver=1.33.1
+pkgrel=1
+pkgdesc=LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript in asm.js format
+arch=('i686' 'x86_64')
+url=http://emscripten.org;
+license=('custom')
+depends=('nodejs' 'python2')
+makedepends=('cmake' 'libxml2')
+optdepends=('java-environment: for using clojure (optimized builds)'
+'ruby: for using websockify addon')
+install=$pkgname.install
+source=(emscripten-$pkgver.tar.gz::https://github.com/kripken/emscripten/archive/$pkgver.tar.gz;
+
emscripten-fastcomp-$pkgver.tar.gz::https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
+
emscripten-fastcomp-clang-$pkgver.tar.gz::https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
+emscripten.sh)
+sha256sums=('cc28aa1075b6146daa73b4105e191b900e04d68b95a72c8b7738753a95f00e1f'
+'7cf7fd28db34e53f4d50fc3821c69ea6321d70a7f2a4649812b062f9cf777c15'
+'d359c64c101bb6e5892870e4d107fa4b3f623f844cc503221ab135e0d6960249'
+'556dc0126a439071e2591672c27f73a470cc260f37adc4994d698c04c7617847')
+
+prepare() {
+  cd emscripten-fastcomp-$pkgver
+
+  # reset folder for out-of-source build
+  rm -rf build
+  mkdir build
+
+  # put clang source into the right place (http://git.io/i1GBkg)
+  rm -rf tools/clang
+  ln -s $srcdir/emscripten-fastcomp-clang-$pkgver tools/clang
+
+  # python2 shebang fixes
+  cd ../emscripten-$pkgver
+  sed '1s|python$|python2|' -i $(find third_party tools -name \*.py) emrun
+
+  # adapt config file template to use our custom environment variable and path
+  sed -e s|getenv('LLVM')|getenv('EMSCRIPTEN_FASTCOMP')| \
+-e 's|{{{ LLVM_ROOT }}}|/usr/lib/emscripten-fastcomp|' \
+-i tools/settings_template_readonly.py
+}
+
+build() {
+  cd emscripten-fastcomp-$pkgver/build
+
+  CC=gcc CXX=g++ cmake .. -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=YES \
+-DLLVM_TARGETS_TO_BUILD=X86;JSBackend \
+-DLLVM_BUILD_RUNTIME=OFF \
+-DLLVM_INCLUDE_EXAMPLES=OFF \
+-DLLVM_INCLUDE_TESTS=OFF \
+-DCLANG_INCLUDE_EXAMPLES=OFF \
+-DCLANG_INCLUDE_TESTS=OFF
+  make
+}
+
+package() {
+  # exported variables
+  install -Dm755 $srcdir/emscripten.sh $pkgdir/etc/profile.d/emscripten.sh
+
+  # LLVM-backend, TODO: include only needed tools
+  cd $srcdir/emscripten-fastcomp-$pkgver
+  install -Dm644 emscripten-version.txt 
$pkgdir/usr/lib/emscripten-fastcomp/emscripten-version.txt
+  install -m755 build/bin/* $pkgdir/usr/lib/emscripten-fastcomp
+
+  # copy structure
+  cd $srcdir/emscripten-$pkgver
+  install -d $pkgdir/usr/lib/emscripten
+  cp -rup em* cmake site src system third_party tools 
$pkgdir/usr/lib/emscripten
+
+  # remove clutter
+  rm $pkgdir/usr/lib/emscripten-fastcomp/{*-test,llvm-lit}
+  rm $pkgdir/usr/lib/emscripten/*.bat
+
+  # docs
+  install -d $pkgdir/usr/share/doc
+  ln -s /usr/lib/emscripten/site/source/docs $pkgdir/usr/share/doc/$pkgname
+
+  # license
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Added: emscripten/trunk/emscripten.install
===
--- emscripten/trunk/emscripten.install (rev 0)
+++ emscripten/trunk/emscripten.install 2015-06-05 08:09:46 UTC (rev 134829)
@@ -0,0 +1,11 @@
+
+post_install() {
+  echo = You need to login again or 'source /etc/profile.d/emscripten.sh' in 
your
+  echo = already running shells to be able to use emscripten.
+}
+
+post_upgrade() {
+  echo = You may need to manually clear your emscripten cache as clang may 
not link
+  echo = the new library versions with cached data properly. Use this 
command:
+  echo$ emcc --clear-cache
+}

Added: emscripten/trunk/emscripten.sh
===
--- emscripten/trunk/emscripten.sh  (rev 0)
+++ emscripten/trunk/emscripten.sh  2015-06-05 08:09:46 UTC (rev 134829)
@@ -0,0 +1,7 @@
+#!/bin/sh
+

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

2015-06-05 Thread Maxime Gauduin
Date: Friday, June 5, 2015 @ 10:17:43
  Author: alucryd
Revision: 134831

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-05 08:16:31 UTC (rev 134830)
+++ PKGBUILD2015-06-05 08:17:43 UTC (rev 134831)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@archlinux.org
-# Contributor: Tom Gundersen t...@jklm.no
-# Contributor: Sébastien Luttringer sеblu@аrchlіnux․org
-# Contributor: Joel Teichroeb j...@teichroeb.net
-
-pkgname=lib32-wayland
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='A computer display server protocol'
-arch=('x86_64')
-url='http://wayland.freedesktop.org'
-license=('MIT')
-depends=('lib32-libffi' 'lib32-expat' 'wayland')
-source=(http://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz;)
-sha256sums=('bdea47a2db96f7e53f1ce0351559c0af5b7f7aae7e95f0a884a78af9f1057c9c')
-
-build() {
-  cd wayland-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---disable-documentation \
---disable-static
-  make
-}
-
-package() {
-  cd wayland-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/{bin,include,share}
-
-  install -dm 755 ${pkgdir}/usr/share/licenses
-  ln -s wayland ${pkgdir}/usr/share/licenses/lib32-wayland
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-wayland/repos/multilib-x86_64/PKGBUILD (from rev 134830, 
lib32-wayland/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-05 08:17:43 UTC (rev 134831)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Sébastien Luttringer sеblu@аrchlіnux․org
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=lib32-wayland
+pkgver=1.8.0
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('lib32-libffi' 'lib32-expat' 'wayland')
+source=(http://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz;)
+sha256sums=('31e8346b7208ea0ddbd7e90dbb0a151a27e34cc8ad6bc1b154e9c59aea5fc140')
+
+build() {
+  cd wayland-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-documentation \
+--disable-static
+  make
+}
+
+package() {
+  cd wayland-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  rm -rf ${pkgdir}/usr/{bin,include,share}
+
+  install -dm 755 ${pkgdir}/usr/share/licenses
+  ln -s wayland ${pkgdir}/usr/share/licenses/lib32-wayland
+}
+
+# vim: ts=2 sw=2 et:


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

2015-06-05 Thread Maxime Gauduin
Date: Friday, June 5, 2015 @ 10:16:31
  Author: alucryd
Revision: 134830

upgpkg: lib32-wayland 1.8.0-1

Modified:
  lib32-wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 08:09:46 UTC (rev 134829)
+++ PKGBUILD2015-06-05 08:16:31 UTC (rev 134830)
@@ -5,7 +5,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=lib32-wayland
-pkgver=1.7.0
+pkgver=1.8.0
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 license=('MIT')
 depends=('lib32-libffi' 'lib32-expat' 'wayland')
 source=(http://wayland.freedesktop.org/releases/wayland-${pkgver}.tar.xz;)
-sha256sums=('bdea47a2db96f7e53f1ce0351559c0af5b7f7aae7e95f0a884a78af9f1057c9c')
+sha256sums=('31e8346b7208ea0ddbd7e90dbb0a151a27e34cc8ad6bc1b154e9c59aea5fc140')
 
 build() {
   cd wayland-${pkgver}


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

2015-06-05 Thread Evangelos Foutras
Date: Friday, June 5, 2015 @ 10:05:07
  Author: foutrelis
Revision: 134827

upgpkg: python-stevedore 1.5.0-1

New upstream release.

Modified:
  python-stevedore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 06:32:39 UTC (rev 134826)
+++ PKGBUILD2015-06-05 08:05:07 UTC (rev 134827)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras evange...@foutrelis.com
 
 pkgname=('python-stevedore' 'python2-stevedore')
-pkgver=1.4.0
+pkgver=1.5.0
 pkgrel=1
 pkgdesc=Manage dynamic plugins for Python applications
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 options=('!emptydirs')
 
source=(http://pypi.python.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz)
-sha256sums=('4a8d80b0a232746c09e0173bd61d60a18e9864e3dc87e3ebefa3ba3d8a00232f')
+sha256sums=('095d71a92518f3eec4c26e531e22fd4053caf3fc52ac6c0afa80a8a0e689da45')
 
 prepare() {
   cd $srcdir/stevedore-$pkgver


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

2015-06-05 Thread Evangelos Foutras
Date: Friday, June 5, 2015 @ 10:05:17
  Author: foutrelis
Revision: 134828

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-05 08:05:07 UTC (rev 134827)
+++ PKGBUILD2015-06-05 08:05:17 UTC (rev 134828)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-
-pkgname=('python-stevedore' 'python2-stevedore')
-pkgver=1.4.0
-pkgrel=1
-pkgdesc=Manage dynamic plugins for Python applications
-arch=('any')
-url=https://github.com/dreamhost/stevedore;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-options=('!emptydirs')
-source=(http://pypi.python.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz)
-sha256sums=('4a8d80b0a232746c09e0173bd61d60a18e9864e3dc87e3ebefa3ba3d8a00232f')
-
-prepare() {
-  cd $srcdir/stevedore-$pkgver
-
-  # Remove dependency on argparse; it's in Python 2.7+/3.2+ stdlib (FS#42063)
-  # https://bugs.launchpad.net/python-stevedore/+bug/1372433
-  sed -i '/argparse/d' requirements.txt
-
-  # Remove dependency on pbr; it's not a runtime dependency
-  sed -i '/pbr/d' requirements.txt
-}
-
-package_python-stevedore() {
-  depends=('python-setuptools' 'python-six')
-
-  cd $srcdir/stevedore-$pkgver
-  python3 setup.py install --root=$pkgdir -O1
-}
-
-package_python2-stevedore() {
-  depends=('python2-setuptools' 'python2-six')
-
-  cd $srcdir/stevedore-$pkgver
-  python2 setup.py install --root=$pkgdir -O1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-stevedore/repos/community-any/PKGBUILD (from rev 134827, 
python-stevedore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-05 08:05:17 UTC (rev 134828)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+
+pkgname=('python-stevedore' 'python2-stevedore')
+pkgver=1.5.0
+pkgrel=1
+pkgdesc=Manage dynamic plugins for Python applications
+arch=('any')
+url=https://github.com/dreamhost/stevedore;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=('!emptydirs')
+source=(http://pypi.python.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz)
+sha256sums=('095d71a92518f3eec4c26e531e22fd4053caf3fc52ac6c0afa80a8a0e689da45')
+
+prepare() {
+  cd $srcdir/stevedore-$pkgver
+
+  # Remove dependency on argparse; it's in Python 2.7+/3.2+ stdlib (FS#42063)
+  # https://bugs.launchpad.net/python-stevedore/+bug/1372433
+  sed -i '/argparse/d' requirements.txt
+
+  # Remove dependency on pbr; it's not a runtime dependency
+  sed -i '/pbr/d' requirements.txt
+}
+
+package_python-stevedore() {
+  depends=('python-setuptools' 'python-six')
+
+  cd $srcdir/stevedore-$pkgver
+  python3 setup.py install --root=$pkgdir -O1
+}
+
+package_python2-stevedore() {
+  depends=('python2-setuptools' 'python2-six')
+
+  cd $srcdir/stevedore-$pkgver
+  python2 setup.py install --root=$pkgdir -O1
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-06-05 Thread Sven-Hendrik Haase
Date: Friday, June 5, 2015 @ 11:53:46
  Author: svenstaro
Revision: 134832

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

Added:
  emscripten/repos/community-i686/
  emscripten/repos/community-i686/PKGBUILD
(from rev 134831, emscripten/trunk/PKGBUILD)
  emscripten/repos/community-i686/emscripten.install
(from rev 134831, emscripten/trunk/emscripten.install)
  emscripten/repos/community-i686/emscripten.sh
(from rev 134831, emscripten/trunk/emscripten.sh)
  emscripten/repos/community-x86_64/
  emscripten/repos/community-x86_64/PKGBUILD
(from rev 134831, emscripten/trunk/PKGBUILD)
  emscripten/repos/community-x86_64/emscripten.install
(from rev 134831, emscripten/trunk/emscripten.install)
  emscripten/repos/community-x86_64/emscripten.sh
(from rev 134831, emscripten/trunk/emscripten.sh)

-+
 community-i686/PKGBUILD |   87 ++
 community-i686/emscripten.install   |   11 
 community-i686/emscripten.sh|7 ++
 community-x86_64/PKGBUILD   |   87 ++
 community-x86_64/emscripten.install |   11 
 community-x86_64/emscripten.sh  |7 ++
 6 files changed, 210 insertions(+)

Copied: emscripten/repos/community-i686/PKGBUILD (from rev 134831, 
emscripten/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-05 09:53:46 UTC (rev 134832)
@@ -0,0 +1,87 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: carstene1ns arch carsten-teibes de - http://git.io/ctPKG
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Vlad Kolotvin vlad.kolot...@gmail.com
+
+pkgname=emscripten
+pkgver=1.33.1
+pkgrel=1
+pkgdesc=LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript in asm.js format
+arch=('i686' 'x86_64')
+url=http://emscripten.org;
+license=('custom')
+depends=('nodejs' 'python2')
+makedepends=('cmake' 'libxml2')
+optdepends=('java-environment: for using clojure (optimized builds)'
+'ruby: for using websockify addon')
+install=$pkgname.install
+source=(emscripten-$pkgver.tar.gz::https://github.com/kripken/emscripten/archive/$pkgver.tar.gz;
+
emscripten-fastcomp-$pkgver.tar.gz::https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
+
emscripten-fastcomp-clang-$pkgver.tar.gz::https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
+emscripten.sh)
+sha256sums=('cc28aa1075b6146daa73b4105e191b900e04d68b95a72c8b7738753a95f00e1f'
+'7cf7fd28db34e53f4d50fc3821c69ea6321d70a7f2a4649812b062f9cf777c15'
+'d359c64c101bb6e5892870e4d107fa4b3f623f844cc503221ab135e0d6960249'
+'556dc0126a439071e2591672c27f73a470cc260f37adc4994d698c04c7617847')
+
+prepare() {
+  cd emscripten-fastcomp-$pkgver
+
+  # reset folder for out-of-source build
+  rm -rf build
+  mkdir build
+
+  # put clang source into the right place (http://git.io/i1GBkg)
+  rm -rf tools/clang
+  ln -s $srcdir/emscripten-fastcomp-clang-$pkgver tools/clang
+
+  # python2 shebang fixes
+  cd ../emscripten-$pkgver
+  sed '1s|python$|python2|' -i $(find third_party tools -name \*.py) emrun
+
+  # adapt config file template to use our custom environment variable and path
+  sed -e s|getenv('LLVM')|getenv('EMSCRIPTEN_FASTCOMP')| \
+-e 's|{{{ LLVM_ROOT }}}|/usr/lib/emscripten-fastcomp|' \
+-i tools/settings_template_readonly.py
+}
+
+build() {
+  cd emscripten-fastcomp-$pkgver/build
+
+  CC=gcc CXX=g++ cmake .. -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=YES \
+-DLLVM_TARGETS_TO_BUILD=X86;JSBackend \
+-DLLVM_BUILD_RUNTIME=OFF \
+-DLLVM_INCLUDE_EXAMPLES=OFF \
+-DLLVM_INCLUDE_TESTS=OFF \
+-DCLANG_INCLUDE_EXAMPLES=OFF \
+-DCLANG_INCLUDE_TESTS=OFF
+  make
+}
+
+package() {
+  # exported variables
+  install -Dm755 $srcdir/emscripten.sh $pkgdir/etc/profile.d/emscripten.sh
+
+  # LLVM-backend, TODO: include only needed tools
+  cd $srcdir/emscripten-fastcomp-$pkgver
+  install -Dm644 emscripten-version.txt 
$pkgdir/usr/lib/emscripten-fastcomp/emscripten-version.txt
+  install -m755 build/bin/* $pkgdir/usr/lib/emscripten-fastcomp
+
+  # copy structure
+  cd $srcdir/emscripten-$pkgver
+  install -d $pkgdir/usr/lib/emscripten
+  cp -rup em* cmake site src system third_party tools 
$pkgdir/usr/lib/emscripten
+
+  # remove clutter
+  rm $pkgdir/usr/lib/emscripten-fastcomp/{*-test,llvm-lit}
+  rm $pkgdir/usr/lib/emscripten/*.bat
+
+  # docs
+  install -d $pkgdir/usr/share/doc
+  ln -s /usr/lib/emscripten/site/source/docs $pkgdir/usr/share/doc/$pkgname
+
+  # license
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: emscripten/repos/community-i686/emscripten.install (from rev 134831, 

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

2015-06-05 Thread Florian Pritz
Date: Friday, June 5, 2015 @ 13:13:40
  Author: bluewind
Revision: 134836

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-05 11:13:35 UTC (rev 134835)
+++ community-i686/PKGBUILD 2015-06-05 11:13:40 UTC (rev 134836)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: Sven Kauber cel...@gmail.com
-
-pkgname=siege
-pkgver=3.0.9
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-pkgdesc=An http regression testing and benchmarking utility
-url=http://www.joedog.org/JoeDog/Siege;
-depends=('openssl')
-source=(http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
-backup=(etc/siegerc etc/urls.txt)
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  install -d -m755 $pkgdir/etc
-  install -d -m755 $pkgdir/usr/share
-  make DESTDIR=$pkgdir install
-  sed -i 's/^# file =$/file = \/etc\/urls.txt/' $pkgdir/etc/siegerc
-}
-
-md5sums=('beba9ccaf1ed4f098d5948d17de1deba')

Copied: siege/repos/community-i686/PKGBUILD (from rev 134835, 
siege/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-05 11:13:40 UTC (rev 134836)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: Sven Kauber cel...@gmail.com
+
+pkgname=siege
+pkgver=3.1.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc=An http regression testing and benchmarking utility
+url=http://www.joedog.org/JoeDog/Siege;
+depends=('openssl')
+source=(http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
+backup=(etc/siegerc etc/urls.txt)
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  install -d -m755 $pkgdir/etc
+  install -d -m755 $pkgdir/usr/share
+  make DESTDIR=$pkgdir install
+  sed -i 's/^# file =$/file = \/etc\/urls.txt/' $pkgdir/etc/siegerc
+}
+
+md5sums=('7f58421e18fae7067fd1e42a27d6305b')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-05 11:13:35 UTC (rev 134835)
+++ community-x86_64/PKGBUILD   2015-06-05 11:13:40 UTC (rev 134836)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: Sven Kauber cel...@gmail.com
-
-pkgname=siege
-pkgver=3.0.9
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-pkgdesc=An http regression testing and benchmarking utility
-url=http://www.joedog.org/JoeDog/Siege;
-depends=('openssl')
-source=(http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
-backup=(etc/siegerc etc/urls.txt)
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  install -d -m755 $pkgdir/etc
-  install -d -m755 $pkgdir/usr/share
-  make DESTDIR=$pkgdir install
-  sed -i 's/^# file =$/file = \/etc\/urls.txt/' $pkgdir/etc/siegerc
-}
-
-md5sums=('beba9ccaf1ed4f098d5948d17de1deba')

Copied: siege/repos/community-x86_64/PKGBUILD (from rev 134835, 
siege/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-05 11:13:40 UTC (rev 134836)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: Sven Kauber cel...@gmail.com
+
+pkgname=siege
+pkgver=3.1.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc=An http regression testing and benchmarking utility
+url=http://www.joedog.org/JoeDog/Siege;
+depends=('openssl')
+source=(http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
+backup=(etc/siegerc etc/urls.txt)
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  install -d -m755 $pkgdir/etc
+  install -d -m755 $pkgdir/usr/share
+  make DESTDIR=$pkgdir install
+  sed -i 's/^# file =$/file = \/etc\/urls.txt/' $pkgdir/etc/siegerc
+}
+

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

2015-06-05 Thread Florian Pritz
Date: Friday, June 5, 2015 @ 13:13:35
  Author: bluewind
Revision: 134835

upgpkg: siege 3.1.0-1

upstream update

Modified:
  siege/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 10:19:20 UTC (rev 134834)
+++ PKGBUILD2015-06-05 11:13:35 UTC (rev 134835)
@@ -3,7 +3,7 @@
 # Contributor: Sven Kauber cel...@gmail.com
 
 pkgname=siege
-pkgver=3.0.9
+pkgver=3.1.0
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -28,4 +28,4 @@
   sed -i 's/^# file =$/file = \/etc\/urls.txt/' $pkgdir/etc/siegerc
 }
 
-md5sums=('beba9ccaf1ed4f098d5948d17de1deba')
+md5sums=('7f58421e18fae7067fd1e42a27d6305b')


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

2015-06-05 Thread Jan de Groot
Date: Friday, June 5, 2015 @ 12:19:20
  Author: jgc
Revision: 134834

New grsec patch

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 10:11:17 UTC (rev 134833)
+++ PKGBUILD2015-06-05 10:19:20 UTC (rev 134834)
@@ -9,7 +9,7 @@
 _srcname=linux-4.0
 _pkgver=4.0.4
 _grsecver=3.1
-_timestamp=201505272113
+_timestamp=201506021902
 _grsec_patch=grsecurity-$_grsecver-$_pkgver-$_timestamp.patch
 pkgver=$_pkgver.$_timestamp
 pkgrel=1
@@ -34,7 +34,7 @@
 'SKIP'
 'c268985a82483fe75f0f397217208e262f85a356d1d9f34b9e22255e549d7ce9'
 'SKIP'
-'1d26d528293953a35864e6c7a2908478891a660637ac47986ccb23f308c348a9'
+'03dc25267f63ed25708ea0f13ae5d389bed99b9bdd123a9e5d006e5ab7e8cb0d'
 'SKIP'
 '1c8e8af99dc69e939359d47683b031e470141665259c41d260e31feb2f52b703'
 '9e63f0a6e1466a2401356f9671a904eec52ce7324672058842fcafcb71c3bcdd'


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

2015-06-05 Thread Levente Polyak
Date: Friday, June 5, 2015 @ 15:06:05
  Author: anthraxx
Revision: 134837

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

Added:
  capstone/repos/community-i686/
  capstone/repos/community-i686/PKGBUILD
(from rev 134836, capstone/trunk/PKGBUILD)
  capstone/repos/community-x86_64/
  capstone/repos/community-x86_64/PKGBUILD
(from rev 134836, capstone/trunk/PKGBUILD)

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

Copied: capstone/repos/community-i686/PKGBUILD (from rev 134836, 
capstone/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-05 13:06:05 UTC (rev 134837)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak levente[at]leventepolyak[dot]net
+# Contributor: M0Rf30
+
+pkgbase=capstone
+pkgname=('capstone' 'python-capstone' 'python2-capstone')
+pkgver=3.0.3
+pkgrel=2
+pkgdesc='A lightweight multi-platform, multi-architecture disassembly 
framework'
+url='http://www.capstone-engine.org/index.html'
+arch=('i686' 'x86_64')
+license=('BSD')
+makedepends=('glibc' 'python' 'python2')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aquynh/${pkgbase}/archive/${pkgver}.tar.gz)
+sha512sums=('5847d89efe2d139d1dacff73547bfe682def6c23310da89dc8b84686e2a718dd361da242417a895bb0fc425401b9baf15348f1994da052a05c2f64a238659c54')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make
+}
+
+package_capstone() {
+  depends=('glibc')
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} LIBDIR=${pkgdir}/usr/lib install
+  install -Dm 644 LICENSE.TXT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python-capstone() {
+  depends=('capstone' 'python')
+  cd ${pkgbase}-${pkgver}/bindings/python
+  python setup.py install -O1 --root=${pkgdir} --prefix=/usr
+  install -Dm 644 ../../LICENSE.TXT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-capstone() {
+  depends=('capstone' 'python2')
+  cd ${pkgbase}-${pkgver}/bindings/python
+  python2 setup.py install -O1 --root=${pkgdir} --prefix=/usr
+  install -Dm 644 ../../LICENSE.TXT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim: ts=2 sw=2 et:

Copied: capstone/repos/community-x86_64/PKGBUILD (from rev 134836, 
capstone/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-05 13:06:05 UTC (rev 134837)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak levente[at]leventepolyak[dot]net
+# Contributor: M0Rf30
+
+pkgbase=capstone
+pkgname=('capstone' 'python-capstone' 'python2-capstone')
+pkgver=3.0.3
+pkgrel=2
+pkgdesc='A lightweight multi-platform, multi-architecture disassembly 
framework'
+url='http://www.capstone-engine.org/index.html'
+arch=('i686' 'x86_64')
+license=('BSD')
+makedepends=('glibc' 'python' 'python2')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aquynh/${pkgbase}/archive/${pkgver}.tar.gz)
+sha512sums=('5847d89efe2d139d1dacff73547bfe682def6c23310da89dc8b84686e2a718dd361da242417a895bb0fc425401b9baf15348f1994da052a05c2f64a238659c54')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make
+}
+
+package_capstone() {
+  depends=('glibc')
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} LIBDIR=${pkgdir}/usr/lib install
+  install -Dm 644 LICENSE.TXT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python-capstone() {
+  depends=('capstone' 'python')
+  cd ${pkgbase}-${pkgver}/bindings/python
+  python setup.py install -O1 --root=${pkgdir} --prefix=/usr
+  install -Dm 644 ../../LICENSE.TXT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-capstone() {
+  depends=('capstone' 'python2')
+  cd ${pkgbase}-${pkgver}/bindings/python
+  python2 setup.py install -O1 --root=${pkgdir} --prefix=/usr
+  install -Dm 644 ../../LICENSE.TXT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim: ts=2 sw=2 et:


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

2015-06-05 Thread Felix Yan
Date: Friday, June 5, 2015 @ 15:46:45
  Author: fyan
Revision: 134838

upgpkg: bfgminer 5.2.0-1

Modified:
  bfgminer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 13:06:05 UTC (rev 134837)
+++ PKGBUILD2015-06-05 13:46:45 UTC (rev 134838)
@@ -3,7 +3,7 @@
 # Contributor: Andy Weidenbaum archb...@gmail.com
 
 pkgname=bfgminer
-pkgver=5.1.0
+pkgver=5.2.0
 pkgrel=1
 pkgdesc=Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining.
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 license=('GPL3')
 
source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.txz
 remove-dangerous-rpath.patch)
-sha256sums=('436595e8b3af267e8fed023ac6b5f208a385d891d0c3c1c41b8aa13f1c1e69c9'
+sha256sums=('0cec8a4012d5784f781201d245bee834b0085274a24737ff3a4d0a28d48edc28'
 '27d89695ff963dd8f66654b9d454aa725c7db769def708513188fe0a496fda4d')
 
 prepare() {


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

2015-06-05 Thread Felix Yan
Date: Friday, June 5, 2015 @ 15:47:23
  Author: fyan
Revision: 134839

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

Added:
  bfgminer/repos/community-i686/PKGBUILD
(from rev 134838, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
(from rev 134838, bfgminer/trunk/remove-dangerous-rpath.patch)
  bfgminer/repos/community-x86_64/PKGBUILD
(from rev 134838, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch
(from rev 134838, bfgminer/trunk/remove-dangerous-rpath.patch)
Deleted:
  bfgminer/repos/community-i686/PKGBUILD
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
  bfgminer/repos/community-x86_64/PKGBUILD
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch

---+
 /PKGBUILD |   90 
 /remove-dangerous-rpath.patch |   42 +++
 community-i686/PKGBUILD   |   45 
 community-i686/remove-dangerous-rpath.patch   |   21 -
 community-x86_64/PKGBUILD |   45 
 community-x86_64/remove-dangerous-rpath.patch |   21 -
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-05 13:46:45 UTC (rev 134838)
+++ community-i686/PKGBUILD 2015-06-05 13:47:23 UTC (rev 134839)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Andy Weidenbaum archb...@gmail.com
-
-pkgname=bfgminer
-pkgver=5.1.0
-pkgrel=1
-pkgdesc=Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining.
-arch=('i686' 'x86_64')
-depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusb' 'lm_sensors')
-makedepends=('uthash' 'yasm')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
-url='http://bfgminer.org/'
-license=('GPL3')
-source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.txz
-remove-dangerous-rpath.patch)
-sha256sums=('436595e8b3af267e8fed023ac6b5f208a385d891d0c3c1c41b8aa13f1c1e69c9'
-'27d89695ff963dd8f66654b9d454aa725c7db769def708513188fe0a496fda4d')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  patch -p1 -i ${srcdir}/remove-dangerous-rpath.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr \
---sbindir=/usr/bin \
---enable-cpumining \
---enable-bfsb \
---enable-metabank \
---enable-scrypt \
---enable-opencl \
---with-udevrulesdir=/usr/lib/udev/rules.d
-  # --enable-knc (FS#33640)
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}

Copied: bfgminer/repos/community-i686/PKGBUILD (from rev 134838, 
bfgminer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-05 13:47:23 UTC (rev 134839)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Andy Weidenbaum archb...@gmail.com
+
+pkgname=bfgminer
+pkgver=5.2.0
+pkgrel=1
+pkgdesc=Bitcoin miner featuring overclocking, monitoring, fan speed control 
and remote management. For FPGA/GPU/CPU Bitcoin mining.
+arch=('i686' 'x86_64')
+depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusb' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='http://bfgminer.org/'
+license=('GPL3')
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.txz
+remove-dangerous-rpath.patch)
+sha256sums=('0cec8a4012d5784f781201d245bee834b0085274a24737ff3a4d0a28d48edc28'
+'27d89695ff963dd8f66654b9d454aa725c7db769def708513188fe0a496fda4d')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -p1 -i ${srcdir}/remove-dangerous-rpath.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--enable-cpumining \
+--enable-bfsb \
+--enable-metabank \
+--enable-scrypt \
+--enable-opencl \
+--with-udevrulesdir=/usr/lib/udev/rules.d
+  # --enable-knc (FS#33640)
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/remove-dangerous-rpath.patch
===
--- community-i686/remove-dangerous-rpath.patch 2015-06-05 13:46:45 UTC (rev 
134838)
+++ community-i686/remove-dangerous-rpath.patch 2015-06-05 13:47:23 UTC (rev 
134839)
@@ -1,21 +0,0 @@
-diff -Naur bfgminer-4.8.0-orig/configure bfgminer-4.8.0/configure
 bfgminer-4.8.0-orig/configure  2014-10-04 20:54:28.717071865 -0400
-+++ 

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

2015-06-05 Thread Jelle van der Waa
Date: Friday, June 5, 2015 @ 15:57:51
  Author: jelle
Revision: 134840

upgpkg: calibre 2.30.0-1

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 13:47:23 UTC (rev 134839)
+++ PKGBUILD2015-06-05 13:57:51 UTC (rev 134840)
@@ -7,7 +7,7 @@
 # Contributor: Larry Hajali larryh...@gmail.com
 
 pkgname=calibre
-pkgver=2.29.0
+pkgver=2.30.0
 pkgrel=1
 pkgdesc=Ebook management application
 arch=('i686' 'x86_64')
@@ -26,7 +26,7 @@
 )
 install=calibre.install
 source=(http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;)
-md5sums=('b5fa328864cd4d91f827889856a1352b')
+md5sums=('7cf51288c5acc142ef2e1b21168cc64a')
 
 prepare(){
   cd ${srcdir}/${pkgname}-${pkgver}


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

2015-06-05 Thread Jelle van der Waa
Date: Friday, June 5, 2015 @ 15:58:19
  Author: jelle
Revision: 134841

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

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

--+
 /PKGBUILD|  176 +
 /calibre.install |   24 +
 community-i686/PKGBUILD  |   88 --
 community-i686/calibre.install   |   12 --
 community-x86_64/PKGBUILD|   88 --
 community-x86_64/calibre.install |   12 --
 6 files changed, 200 insertions(+), 200 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-05 13:57:51 UTC (rev 134840)
+++ community-i686/PKGBUILD 2015-06-05 13:58:19 UTC (rev 134841)
@@ -1,88 +0,0 @@
-# $Id$
-# Maintainer: Jelle van der Waa je...@vdwaa.nl
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Petrov Roman nwhis...@gmail.com
-# Contributor: Andrea Fagiani andfagiani _at_ gmail dot com
-# Contributor: Larry Hajali larryh...@gmail.com
-
-pkgname=calibre
-pkgver=2.29.0
-pkgrel=1
-pkgdesc=Ebook management application
-arch=('i686' 'x86_64')
-url=http://calibre-ebook.com/;
-license=('GPL3')
-depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-cherrypy'
- 'python2-mechanize' 'podofo' 'libwmf'
- 'imagemagick' 'chmlib' 'python2-lxml' 'libusbx'
- 'python2-pillow' 'shared-mime-info' 'python2-dnspython'
- 'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
- 'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
- 'qt5-svg' 'python2-chardet' 'python2-html5lib' 'python2-pygments' 
'mtdev')
-makedepends=('python2-pycountry' 'qt5-x11extras' )
-optdepends=('ipython2: to use calibre-debug'
-'udisks: required for mounting certain devices'
-)
-install=calibre.install
-source=(http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;)
-md5sums=('b5fa328864cd4d91f827889856a1352b')
-
-prepare(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # Remove unneeded files and libs
-  rm -rf resources/${pkgname}-portable.* \
- src/cherrypy \
- src/html5lib \
- src/chardet
-
-  sed -i s/shlex.split(ldflags)/ + ['-fPIC']/ setup/extensions.py
-
-  # Use python2
-  sed -i 's:\(env[ ]\+python$\|/usr/bin/python$\):\12:g' $(find . -regex 
.*\.py\|.*\.recipe)
-
-  # Desktop integration (e.g. enforce arch defaults)
-  sed -e /self.create_uninstaller()/,/os.rmdir(config_dir)/d \
-  -e /\(cc('xdg-icon-resource\|self.icon_resources.append\|'128'))\)/d \
-  -e /render_img/ s/\('calibre-.*\.png'\)/os.path.join(dir, \1)/g \
-  -e /dir, 'calibre-lrf.png'/i \
-\dir = os.path.join(self.opts.staging_sharedir,'../pixmaps')\n\
-\os.mkdir(dir) \
-  -e /f = open/ s/\('calibre-.*\.desktop'\)/os.path.join(dir, \1)/g \
-  -e /dir, 'calibre-lrfviewer.desktop'/i \
-\dir = 
os.path.join(self.opts.staging_sharedir,'../applications')\n\
-\os.mkdir(dir) \
-  -e s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/ \
-  -e s/^Name=calibre/Name=Calibre/g \
-  -i  src/calibre/linux.py
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  LANG='en_US.UTF-8' python2 setup.py build
-  # LANG='en_US.UTF-8' python2 setup.py resources
-
-  # Don't build translations since building them is broken badly
-  #LANG='en_US.UTF-8' python2 setup.py translations
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  
-  # Fix the environment module location
-  sed -i -e s|(prefix=.*)|(prefix='$pkgdir/usr')|g setup/install.py
-
-  install -d ${pkgdir}/usr/lib/python2.7/site-packages \
- ${pkgdir}/usr/share/zsh/site-functions
-
-  LANG='en_US.UTF-8' python2 setup.py install --root=${pkgdir} --prefix=/usr 
\
---staging-bindir=${pkgdir}/usr/bin \
---staging-libdir=${pkgdir}/usr/lib \
---staging-sharedir=${pkgdir}/usr/share
-
-  # Compiling bytecode FS#33392
-  python2 -m compileall ${pkgdir}/usr/lib/calibre/
-  python2 -O -m compileall ${pkgdir}/usr/lib/calibre/
-}

Copied: calibre/repos/community-i686/PKGBUILD (from rev 134840, 
calibre/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD  

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:32:43
  Author: arojas
Revision: 134868

New snapshot

Modified:
  cython2-devel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 17:25:38 UTC (rev 134867)
+++ PKGBUILD2015-06-05 17:32:43 UTC (rev 134868)
@@ -3,8 +3,8 @@
 # Contributor: Igor Scabini furester @ gmail.com
 
 pkgname=cython2-devel
-_commit=215ea5ba4594645508e95f0161220116745b2ec0
-pkgver=0.23_git215ea5ba45
+_commit=e05dc49649adb8e95fcb5db650fe06f557304275
+pkgver=0.23_git20150605
 pkgrel=1
 pkgdesc=C-Extensions for Python
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 license=('APACHE')
 depends=('python2-setuptools')
 source=(https://github.com/cython/cython/archive/$_commit.zip;)
-md5sums=('276f31be5616a4c45244f4462259f21a')
+md5sums=('bca14d218d49aa0e55d92d09f7b4e3d7')
 
 prepare() {
   cd cython-$_commit


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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:25:38
  Author: arojas
Revision: 134867

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

Added:
  pynac/repos/community-staging-i686/
  pynac/repos/community-staging-i686/PKGBUILD
(from rev 134866, pynac/trunk/PKGBUILD)
  pynac/repos/community-staging-x86_64/
  pynac/repos/community-staging-x86_64/PKGBUILD
(from rev 134866, pynac/trunk/PKGBUILD)

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

Copied: pynac/repos/community-staging-i686/PKGBUILD (from rev 134866, 
pynac/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 17:25:38 UTC (rev 134867)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+
+pkgname=pynac
+pkgver=0.3.9
+pkgrel=1
+pkgdesc=Python version of GiNaC, a C++ library for symbolic mathematical 
calculations
+arch=(i686 x86_64)
+url=http://pynac.org;
+license=(GPL)
+depends=(python2)
+source=(https://github.com/pynac/pynac/archive/$pkgname-$pkgver.tar.gz;)
+md5sums=('97ab6fab30711fc93ace597f1bae8e71')
+
+build() {
+  cd pynac-pynac-$pkgver
+
+  export PYTHON_VERSION=2
+  ./bootstrap
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd pynac-pynac-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: pynac/repos/community-staging-x86_64/PKGBUILD (from rev 134866, 
pynac/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-05 17:25:38 UTC (rev 134867)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+
+pkgname=pynac
+pkgver=0.3.9
+pkgrel=1
+pkgdesc=Python version of GiNaC, a C++ library for symbolic mathematical 
calculations
+arch=(i686 x86_64)
+url=http://pynac.org;
+license=(GPL)
+depends=(python2)
+source=(https://github.com/pynac/pynac/archive/$pkgname-$pkgver.tar.gz;)
+md5sums=('97ab6fab30711fc93ace597f1bae8e71')
+
+build() {
+  cd pynac-pynac-$pkgver
+
+  export PYTHON_VERSION=2
+  ./bootstrap
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd pynac-pynac-$pkgver
+  make DESTDIR=$pkgdir install
+}


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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:24:39
  Author: arojas
Revision: 134866

Update to 0.3.9

Modified:
  pynac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 17:20:50 UTC (rev 134865)
+++ PKGBUILD2015-06-05 17:24:39 UTC (rev 134866)
@@ -3,7 +3,7 @@
 # Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
 
 pkgname=pynac
-pkgver=0.3.7
+pkgver=0.3.9
 pkgrel=1
 pkgdesc=Python version of GiNaC, a C++ library for symbolic mathematical 
calculations
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(python2)
 source=(https://github.com/pynac/pynac/archive/$pkgname-$pkgver.tar.gz;)
-md5sums=('f670ec548116b51381e3b96059bbd054')
+md5sums=('97ab6fab30711fc93ace597f1bae8e71')
 
 build() {
   cd pynac-pynac-$pkgver


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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:33:35
  Author: arojas
Revision: 134869

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

Added:
  cython2-devel/repos/community-i686/PKGBUILD
(from rev 134868, cython2-devel/trunk/PKGBUILD)
  cython2-devel/repos/community-x86_64/PKGBUILD
(from rev 134868, cython2-devel/trunk/PKGBUILD)
Deleted:
  cython2-devel/repos/community-i686/PKGBUILD
  cython2-devel/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-05 17:32:43 UTC (rev 134868)
+++ community-i686/PKGBUILD 2015-06-05 17:33:35 UTC (rev 134869)
@@ -1,29 +0,0 @@
-# $Id$
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Igor Scabini furester @ gmail.com
-
-pkgname=cython2-devel
-_commit=215ea5ba4594645508e95f0161220116745b2ec0
-pkgver=0.23_git215ea5ba45
-pkgrel=1
-pkgdesc=C-Extensions for Python
-arch=(i686 x86_64)
-url=http://www.cython.org;
-license=('APACHE')
-depends=('python2-setuptools')
-source=(https://github.com/cython/cython/archive/$_commit.zip;)
-md5sums=('276f31be5616a4c45244f4462259f21a')
-
-prepare() {
-  cd cython-$_commit
-  sed -e 's|env python|env python2|g' -i cython.py -i Cython/*/*.py
-}
-
-package() {
-  cd cython-$_commit
-  python2 setup.py install --root=$pkgdir
-
-  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
-  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
-  mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
-}

Copied: cython2-devel/repos/community-i686/PKGBUILD (from rev 134868, 
cython2-devel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-05 17:33:35 UTC (rev 134869)
@@ -0,0 +1,29 @@
+# $Id$
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Igor Scabini furester @ gmail.com
+
+pkgname=cython2-devel
+_commit=e05dc49649adb8e95fcb5db650fe06f557304275
+pkgver=0.23_git20150605
+pkgrel=1
+pkgdesc=C-Extensions for Python
+arch=(i686 x86_64)
+url=http://www.cython.org;
+license=('APACHE')
+depends=('python2-setuptools')
+source=(https://github.com/cython/cython/archive/$_commit.zip;)
+md5sums=('bca14d218d49aa0e55d92d09f7b4e3d7')
+
+prepare() {
+  cd cython-$_commit
+  sed -e 's|env python|env python2|g' -i cython.py -i Cython/*/*.py
+}
+
+package() {
+  cd cython-$_commit
+  python2 setup.py install --root=$pkgdir
+
+  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
+  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
+  mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-05 17:32:43 UTC (rev 134868)
+++ community-x86_64/PKGBUILD   2015-06-05 17:33:35 UTC (rev 134869)
@@ -1,29 +0,0 @@
-# $Id$
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Igor Scabini furester @ gmail.com
-
-pkgname=cython2-devel
-_commit=215ea5ba4594645508e95f0161220116745b2ec0
-pkgver=0.23_git215ea5ba45
-pkgrel=1
-pkgdesc=C-Extensions for Python
-arch=(i686 x86_64)
-url=http://www.cython.org;
-license=('APACHE')
-depends=('python2-setuptools')
-source=(https://github.com/cython/cython/archive/$_commit.zip;)
-md5sums=('276f31be5616a4c45244f4462259f21a')
-
-prepare() {
-  cd cython-$_commit
-  sed -e 's|env python|env python2|g' -i cython.py -i Cython/*/*.py
-}
-
-package() {
-  cd cython-$_commit
-  python2 setup.py install --root=$pkgdir
-
-  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
-  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
-  mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
-}

Copied: cython2-devel/repos/community-x86_64/PKGBUILD (from rev 134868, 
cython2-devel/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-05 17:33:35 UTC (rev 134869)
@@ -0,0 +1,29 @@
+# $Id$
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Igor Scabini furester @ gmail.com
+
+pkgname=cython2-devel
+_commit=e05dc49649adb8e95fcb5db650fe06f557304275
+pkgver=0.23_git20150605
+pkgrel=1
+pkgdesc=C-Extensions for Python
+arch=(i686 x86_64)
+url=http://www.cython.org;
+license=('APACHE')
+depends=('python2-setuptools')
+source=(https://github.com/cython/cython/archive/$_commit.zip;)
+md5sums=('bca14d218d49aa0e55d92d09f7b4e3d7')
+
+prepare() {
+  cd cython-$_commit
+  sed -e 's|env python|env python2|g' -i cython.py -i Cython/*/*.py
+}
+
+package() {
+  cd cython-$_commit
+  python2 setup.py 

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 18:48:26
  Author: arojas
Revision: 134846

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

Added:
  ntl/repos/community-staging-i686/
  ntl/repos/community-staging-i686/PKGBUILD
(from rev 134845, ntl/trunk/PKGBUILD)
  ntl/repos/community-staging-i686/ntl-sage.patch
(from rev 134845, ntl/trunk/ntl-sage.patch)
  ntl/repos/community-staging-x86_64/
  ntl/repos/community-staging-x86_64/PKGBUILD
(from rev 134845, ntl/trunk/PKGBUILD)
  ntl/repos/community-staging-x86_64/ntl-sage.patch
(from rev 134845, ntl/trunk/ntl-sage.patch)
Deleted:
  ntl/repos/community-staging-i686/PKGBUILD
  ntl/repos/community-staging-i686/ntl-sage.patch
  ntl/repos/community-staging-x86_64/PKGBUILD
  ntl/repos/community-staging-x86_64/ntl-sage.patch

-+
 /PKGBUILD   |   78 ++
 /ntl-sage.patch |  104 ++
 community-staging-i686/PKGBUILD |   39 ---
 community-staging-i686/ntl-sage.patch   |   52 ---
 community-staging-x86_64/PKGBUILD   |   39 ---
 community-staging-x86_64/ntl-sage.patch |   52 ---
 6 files changed, 182 insertions(+), 182 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-02-28 11:01:04 UTC (rev 128405)
+++ community-staging-i686/PKGBUILD 2015-06-05 16:48:26 UTC (rev 134846)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Brad Conte brad AT bradconte.com
-
-pkgname=ntl
-pkgver=8.1.2
-pkgrel=1
-pkgdesc=A Library for doing Number Theory
-arch=(i686 x86_64)
-url=http://www.shoup.net/ntl/;
-license=(GPL)
-depends=(gf2x gmp)
-makedepends=()
-options=(!libtool)
-source=(http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz; 
'ntl-sage.patch')
-md5sums=('93f36123ac008db31c1031498a9b1e81'
- '4cb5f97080281109bf358959ab993691')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p0 -i $srcdir/ntl-sage.patch
-}
-
-build() {
-  cd $pkgname-$pkgver/src
-  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver/src
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver/src
-  make PREFIX=$pkgdir/usr install
-}
-

Copied: ntl/repos/community-staging-i686/PKGBUILD (from rev 134845, 
ntl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 16:48:26 UTC (rev 134846)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Brad Conte brad AT bradconte.com
+
+pkgname=ntl
+pkgver=9.2.0
+pkgrel=1
+pkgdesc=A Library for doing Number Theory
+arch=(i686 x86_64)
+url=http://www.shoup.net/ntl/;
+license=(GPL)
+depends=(gf2x gmp)
+makedepends=()
+options=(!libtool)
+source=(http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz; 
'ntl-sage.patch')
+md5sums=('bf419b48ea567858e47e0aac3c849fbe'
+ '4cb5f97080281109bf358959ab993691')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i $srcdir/ntl-sage.patch
+}
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/src
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver/src
+  make PREFIX=$pkgdir/usr install
+}
+

Deleted: community-staging-i686/ntl-sage.patch
===
--- community-staging-i686/ntl-sage.patch   2015-02-28 11:01:04 UTC (rev 
128405)
+++ community-staging-i686/ntl-sage.patch   2015-06-05 16:48:26 UTC (rev 
134846)
@@ -1,52 +0,0 @@
 ./include/NTL/tools.h.orig 2015-01-09 06:58:19.0 -0700
-+++ ./include/NTL/tools.h  2015-01-12 20:00:00.0 -0700
-@@ -406,7 +406,12 @@ void swap(WrappedPtrT,Deleter x, Wrap
- 
- // Error Handling
- 
--
-+/*
-+  This function is not present in vanilla NTL.
-+  See tools.c for documentation.
-+ */
-+void SetErrorCallbackFunction(void (*func)(const char *s, void *context),
-+void *context);
- 
- class ErrorObject : public NTL_SNS runtime_error {
- public:
 ./src/tools.c.orig 2015-01-09 06:58:19.0 -0700
-+++ ./src/tools.c  2015-01-12 20:00:00.0 -0700
-@@ -17,9 +17,33 @@ NTL_START_IMPL
- 
- NTL_THREAD_LOCAL void (*ErrorCallback)() = 0;
- 
-+/*
-+   The following code differs from vanilla NTL.
-+
-+   We add a SetErrorCallbackFunction(). This sets a global callback function
-+_function_,  which gets called with parameter _context_ and an error
-+message string whenever Error() gets called.
-+
-+   Note that if the custom error handler *returns*, then NTL will dump the
-+   error message back to stderr and abort() as it habitually 

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 18:57:36
  Author: arojas
Revision: 134855

NTL 9.2 rebuild

Modified:
  flint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 16:54:13 UTC (rev 134854)
+++ PKGBUILD2015-06-05 16:57:36 UTC (rev 134855)
@@ -5,7 +5,7 @@
 
 pkgname=flint
 pkgver=2.4.5
-pkgrel=3
+pkgrel=4
 pkgdesc=A C library for doing number theory
 arch=(i686 x86_64)
 url=http://www.flintlib.org;


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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:14:36
  Author: arojas
Revision: 134863

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

Added:
  eclib/repos/community-staging-i686/
  eclib/repos/community-staging-i686/PKGBUILD
(from rev 134862, eclib/trunk/PKGBUILD)
  eclib/repos/community-staging-x86_64/
  eclib/repos/community-staging-x86_64/PKGBUILD
(from rev 134862, eclib/trunk/PKGBUILD)

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

Copied: eclib/repos/community-staging-i686/PKGBUILD (from rev 134862, 
eclib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 17:14:36 UTC (rev 134863)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=eclib
+pkgver=20150510
+pkgrel=2
+pkgdesc=Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database
+arch=(i686 x86_64)
+url=https://github.com/JohnCremona/eclib/;
+license=(GPL)
+depends=(flint pari-sage)
+source=(https://github.com/JohnCremona/eclib/archive/$pkgname-$pkgver.tar.gz;)
+md5sums=('be4c8ee0e91ba84a40cc6da2afcfcf68')
+
+build() {
+  cd eclib-$pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd eclib-$pkgname-$pkgver
+  make install DESTDIR=$pkgdir
+}
+

Copied: eclib/repos/community-staging-x86_64/PKGBUILD (from rev 134862, 
eclib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-05 17:14:36 UTC (rev 134863)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=eclib
+pkgver=20150510
+pkgrel=2
+pkgdesc=Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database
+arch=(i686 x86_64)
+url=https://github.com/JohnCremona/eclib/;
+license=(GPL)
+depends=(flint pari-sage)
+source=(https://github.com/JohnCremona/eclib/archive/$pkgname-$pkgver.tar.gz;)
+md5sums=('be4c8ee0e91ba84a40cc6da2afcfcf68')
+
+build() {
+  cd eclib-$pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd eclib-$pkgname-$pkgver
+  make install DESTDIR=$pkgdir
+}
+


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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:13:50
  Author: arojas
Revision: 134862

NTL 9.2 rebuild

Modified:
  eclib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 17:09:16 UTC (rev 134861)
+++ PKGBUILD2015-06-05 17:13:50 UTC (rev 134862)
@@ -3,7 +3,7 @@
 
 pkgname=eclib
 pkgver=20150510
-pkgrel=1
+pkgrel=2
 pkgdesc=Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database
 arch=(i686 x86_64)
 url=https://github.com/JohnCremona/eclib/;


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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:20:50
  Author: arojas
Revision: 134865

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

Added:
  singular/repos/community-staging-i686/
  singular/repos/community-staging-i686/PKGBUILD
(from rev 134864, singular/trunk/PKGBUILD)
  singular/repos/community-staging-i686/ntl8.patch
(from rev 134864, singular/trunk/ntl8.patch)
  singular/repos/community-staging-i686/templates.patch
(from rev 134864, singular/trunk/templates.patch)
  singular/repos/community-staging-x86_64/
  singular/repos/community-staging-x86_64/PKGBUILD
(from rev 134864, singular/trunk/PKGBUILD)
  singular/repos/community-staging-x86_64/ntl8.patch
(from rev 134864, singular/trunk/ntl8.patch)
  singular/repos/community-staging-x86_64/templates.patch
(from rev 134864, singular/trunk/templates.patch)

--+
 community-staging-i686/PKGBUILD  |   77 ++
 community-staging-i686/ntl8.patch|   84 +
 community-staging-i686/templates.patch   |   19 ++
 community-staging-x86_64/PKGBUILD|   77 ++
 community-staging-x86_64/ntl8.patch  |   84 +
 community-staging-x86_64/templates.patch |   19 ++
 6 files changed, 360 insertions(+)

Copied: singular/repos/community-staging-i686/PKGBUILD (from rev 134864, 
singular/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 17:20:50 UTC (rev 134865)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+
+pkgname=singular
+pkgver=3.1.7.p1
+_majver=3-1-7
+pkgrel=6
+pkgdesc=Computer Algebra System for polynomial computations
+arch=(i686 x86_64)
+url=http://www.singular.uni-kl.de/;
+license=(GPL)
+depends=(flint cddlib) # polymake
+source=(http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/src/$_majver/Singular-${_majver}p1.tar.gz;
 
+http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/src/$_majver/Singular-${_majver}-share.tar.gz;
 'templates.patch' 'ntl8.patch')
+md5sums=('ce369519d1c5d07342722e78240ea044'
+ 'b9177c00e95ee21b137984bade9fc481'
+ 'a267423f3b25f0b91853f9cf607974a7'
+ '38ff8896595626d657fd386ea9408419')
+
+prepare() {
+  cd Singular-$_majver
+  patch -p1 -i ../templates.patch
+# fix build against NTL 8
+  patch -p1 -i ../ntl8.patch
+# fix flint detection
+  sed -e 's|-lmpir|-lgmp|' -i factory/configure -i Singular/configure
+}
+
+build() {
+  cd Singular-$_majver
+
+  export CPP=/usr/bin/cpp
+  export CXXCPP=/usr/bin/cpp
+  export CFLAGS=-fPIC
+  export CXXFLAGS=-fPIC
+
+# force using system ntl
+  rm -r ntl
+
+  mkdir -p build
+
+  ./configure --prefix=$PWD/build/usr/lib/Singular \
+ --bindir=$PWD/build/usr/lib/Singular --libdir=$PWD/build/usr/lib/Singular 
--includedir=$PWD/build/usr/include \
+ --with-apint=gmp --with-gmp=/usr --with-malloc=system --with-ntl=/usr 
--with-flint=/usr --disable-doc --with-NTL --without-MP --without-lex \
+ --enable-Singular --enable-factory --enable-libfac 
--enable-IntegerProgramming --enable-gfanlib
+  make install
+
+  export CFLAGS=$CFLAGS -DPIC -DLIBSINGULAR
+  export CXXFLAGS=$CXXFLAGS -DPIC -DLIBSINGULAR
+
+  ./configure --prefix=$PWD/build/usr/lib/Singular \
+ --bindir=$PWD/build/usr/lib/Singular --libdir=$PWD/build/usr/lib/Singular 
--includedir=$PWD/build/usr/include \
+ --with-apint=gmp --with-gmp=/usr --with-malloc=system --with-ntl=/usr 
--with-flint=/usr --disable-doc --with-NTL --without-MP \
+ --enable-Singular --enable-factory --enable-libfac 
--enable-IntegerProgramming
+  make clean
+  make install-libsingular
+
+# needed by Sage, not installed by default
+  cp Singular/sing_dbm.h build/usr/include/singular/
+}
+
+package() {
+  cd Singular-$_majver
+
+  cp -r build/* $pkgdir/ 
+
+  mkdir -p $pkgdir/usr/bin
+  ln -sf /usr/lib/Singular/Singular-$_majver 
$pkgdir/usr/lib/Singular/Singular
+  ln -s /usr/lib/Singular/Singular $pkgdir/usr/bin/
+  ln -s /usr/lib/Singular/libsingular.so $pkgdir/usr/lib/
+
+# Install docs
+  mkdir -p $pkgdir/usr/share/singular
+  install -m644 $srcdir/Singular/$_majver/info/singular.hlp 
$pkgdir/usr/share/singular/
+  install -m644 $srcdir/Singular/$_majver/doc/singular.idx 
$pkgdir/usr/share/singular/
+}

Copied: singular/repos/community-staging-i686/ntl8.patch (from rev 134864, 
singular/trunk/ntl8.patch)
===
--- community-staging-i686/ntl8.patch   (rev 0)
+++ community-staging-i686/ntl8.patch   2015-06-05 17:20:50 UTC (rev 134865)
@@ -0,0 +1,84 @@
+--- Singular-3-1-6/factory/NTLconvert.cc.orig  2012-12-19 14:01:16.0 
-0700
 Singular-3-1-6/factory/NTLconvert.cc   2015-01-12 

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:19:55
  Author: arojas
Revision: 134864

NTL 9.2 rebuild

Modified:
  singular/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 17:14:36 UTC (rev 134863)
+++ PKGBUILD2015-06-05 17:19:55 UTC (rev 134864)
@@ -5,7 +5,7 @@
 pkgname=singular
 pkgver=3.1.7.p1
 _majver=3-1-7
-pkgrel=5
+pkgrel=6
 pkgdesc=Computer Algebra System for polynomial computations
 arch=(i686 x86_64)
 url=http://www.singular.uni-kl.de/;


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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 18:53:38
  Author: spupykin
Revision: 134849

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

Added:
  freeradius/repos/community-staging-i686/
  freeradius/repos/community-staging-i686/PKGBUILD
(from rev 134848, freeradius/trunk/PKGBUILD)
  freeradius/repos/community-staging-i686/freeradius.install
(from rev 134848, freeradius/trunk/freeradius.install)
  freeradius/repos/community-staging-i686/freeradius.service
(from rev 134848, freeradius/trunk/freeradius.service)
  freeradius/repos/community-staging-i686/freeradius.tmpfiles
(from rev 134848, freeradius/trunk/freeradius.tmpfiles)
  freeradius/repos/community-staging-x86_64/
  freeradius/repos/community-staging-x86_64/PKGBUILD
(from rev 134848, freeradius/trunk/PKGBUILD)
  freeradius/repos/community-staging-x86_64/freeradius.install
(from rev 134848, freeradius/trunk/freeradius.install)
  freeradius/repos/community-staging-x86_64/freeradius.service
(from rev 134848, freeradius/trunk/freeradius.service)
  freeradius/repos/community-staging-x86_64/freeradius.tmpfiles
(from rev 134848, freeradius/trunk/freeradius.tmpfiles)

--+
 community-staging-i686/PKGBUILD  |   56 +
 community-staging-i686/freeradius.install|   18 
 community-staging-i686/freeradius.service|   15 ++
 community-staging-i686/freeradius.tmpfiles   |1 
 community-staging-x86_64/PKGBUILD|   56 +
 community-staging-x86_64/freeradius.install  |   18 
 community-staging-x86_64/freeradius.service  |   15 ++
 community-staging-x86_64/freeradius.tmpfiles |1 
 8 files changed, 180 insertions(+)

Copied: freeradius/repos/community-staging-i686/PKGBUILD (from rev 134848, 
freeradius/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 16:53:38 UTC (rev 134849)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Jason R Begley (jay...@digitalgoat.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=freeradius
+pkgver=3.0.8
+pkgrel=2
+pkgdesc=The premier open source RADIUS server
+arch=('i686' 'x86_64')
+url=http://www.freeradius.org/;
+license=('GPL')
+depends=('krb5' 'pth' 'net-snmp' 'postgresql-libs' 'libmariadbclient' 'talloc' 
'libpcap')
+makedepends=('unixodbc' 'python2' 'curl')
+optdepends=('unixodbc: for ODBC'
+   'python2: for Python'
+   'curl: for REST')
+options=('!makeflags')
+install=$pkgname.install
+source=(ftp://ftp.freeradius.org/pub/radius/freeradius-server-$pkgver.tar.bz2;
+   freeradius.tmpfiles
+   freeradius.service)
+md5sums=('59427bd3cc2ebd5ad62ee9dcc7d943c5'
+ 'f959e89812bedfc9f8308076f78cd74e'
+ 'e3f18e3a25df3b692e59f60605354708')
+
+build() {
+  cd $srcdir/freeradius-server-$pkgver
+  ./configure --with-system-libtool --with-system-libltdl \
+ --prefix=/usr --enable-heimdal-krb5 \
+ --localstatedir=/var \
+ --sysconfdir=/etc \
+ --sbindir=/usr/bin \
+ --libdir=/usr/lib/freeradius \
+ --with-udpfromto
+  make
+}
+
+package() {
+  cd $srcdir/freeradius-server-$pkgver
+  make install R=$pkgdir
+  chmod o+r $pkgdir/etc/raddb/*
+  mv $pkgdir/etc/raddb $pkgdir/etc/raddb.default
+  rm -rf $pkgdir/var/run
+
+  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
+  install -Dm0644 $srcdir/$pkgname.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: freeradius/repos/community-staging-i686/freeradius.install (from rev 
134848, freeradius/trunk/freeradius.install)
===
--- community-staging-i686/freeradius.install   (rev 0)
+++ community-staging-i686/freeradius.install   2015-06-05 16:53:38 UTC (rev 
134849)
@@ -0,0 +1,18 @@
+post_install() {
+groupadd -r radiusd
+useradd -r -m -d /var/lib/radiusd -g radiusd -s /bin/false radiusd
+
+touch var/log/radius/radius.log
+chown -R radiusd:radiusd var/log/radius/radius.log
+
+[ -d etc/raddb ] || {
+  cp -a etc/raddb.default etc/raddb
+  chown -R radiusd:radiusd etc/raddb
+}
+
+systemd-tmpfiles --create freeradius.conf
+}
+
+post_remove() {
+echo -- You may want to remove /var/lib/radiusd and /etc/raddb
+}

Copied: 

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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 18:54:01
  Author: spupykin
Revision: 134852

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

Added:
  inn/repos/community-staging-i686/
  inn/repos/community-staging-i686/PKGBUILD
(from rev 134851, inn/trunk/PKGBUILD)
  inn/repos/community-staging-i686/inn.install
(from rev 134851, inn/trunk/inn.install)
  inn/repos/community-staging-i686/inn.tmpfiles
(from rev 134851, inn/trunk/inn.tmpfiles)
  inn/repos/community-staging-i686/innd.service
(from rev 134851, inn/trunk/innd.service)
  inn/repos/community-staging-i686/site.make.patch
(from rev 134851, inn/trunk/site.make.patch)
  inn/repos/community-staging-x86_64/
  inn/repos/community-staging-x86_64/PKGBUILD
(from rev 134851, inn/trunk/PKGBUILD)
  inn/repos/community-staging-x86_64/inn.install
(from rev 134851, inn/trunk/inn.install)
  inn/repos/community-staging-x86_64/inn.tmpfiles
(from rev 134851, inn/trunk/inn.tmpfiles)
  inn/repos/community-staging-x86_64/innd.service
(from rev 134851, inn/trunk/innd.service)
  inn/repos/community-staging-x86_64/site.make.patch
(from rev 134851, inn/trunk/site.make.patch)

--+
 community-staging-i686/PKGBUILD  |  133 +
 community-staging-i686/inn.install   |   23 +
 community-staging-i686/inn.tmpfiles  |1 
 community-staging-i686/innd.service  |   16 +++
 community-staging-i686/site.make.patch   |   32 ++
 community-staging-x86_64/PKGBUILD|  133 +
 community-staging-x86_64/inn.install |   23 +
 community-staging-x86_64/inn.tmpfiles|1 
 community-staging-x86_64/innd.service|   16 +++
 community-staging-x86_64/site.make.patch |   32 ++
 10 files changed, 410 insertions(+)

Copied: inn/repos/community-staging-i686/PKGBUILD (from rev 134851, 
inn/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 16:54:01 UTC (rev 134852)
@@ -0,0 +1,133 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Edward Tjörnhammar xh...@cube2.se
+# Contributor: Edward Tjörnhammar xh...@cube2.se
+
+pkgname=inn
+pkgver=2.5.4
+pkgrel=2
+pkgdesc=Complete open source Usenet system. De facto standard for handling 
news routing, news spool and serving the spool to customers.
+url=http://www.isc.org/software/inn/;
+arch=('i686' 'x86_64')
+license=(custom:INN)
+depends=('openssl')
+makedepends=('make' 'bison' 'python2' 'gcc' 'smtp-forwarder' 'libsasl')
+optdepends=('perl' 'python2' 'libsasl')
+options=(emptydirs docs zipman)
+install=inn.install
+backup=(etc/inn/newsfeeds
+   etc/inn/incoming.conf
+   etc/inn/nnrpd.track
+   etc/inn/passwd.nntp
+   etc/inn/inn.conf
+   etc/inn/moderators
+   etc/inn/control.ctl
+   etc/inn/expire.ctl
+   etc/inn/nntpsend.ctl
+   etc/inn/innreport.conf
+   etc/inn/innwatch.ctl
+   etc/inn/distrib.pats
+   etc/inn/actsync.cfg
+   etc/inn/actsync.ign
+   etc/inn/motd.news
+   etc/inn/storage.conf
+   etc/inn/cycbuff.conf
+   etc/inn/buffindexed.conf
+   etc/inn/innfeed.conf
+   etc/inn/news2mail.cf
+   etc/inn/readers.conf
+   etc/inn/radius.conf
+   etc/inn/ovdb.conf
+   etc/inn/subscriptions
+   var/db/inn/active
+   var/db/inn/active.times
+   var/db/inn/history
+   var/db/inn/history.dir
+   var/db/inn/history.hash
+   var/db/inn/history.index
+   var/db/inn/newsgroups)
+source=(http://ftp.isc.org/isc/inn/inn-$pkgver.tar.gz
+   innd.service
+   inn.tmpfiles
+   site.make.patch)
+md5sums=('ad9f77a1c84c668ccd268792721a2215'
+ '9da925a486fcf0cd67fdf462cbb9c0b4'
+ '050b7b3361c673a118739e42349e'
+ '960c800026ed6e03901cf0bafdfd53d8')
+
+prepare() {
+  cd $srcdir/inn-$pkgver
+#  sed -i 's|-export-dynamic gnu|-export-dynamic|' Makefile.global
+  [ $NOEXTRACT -eq 1 ] || patch -p3  $srcdir/site.make.patch
+  sed -i 's|#define L_NOTICE.*|#define L_NOTICE LOG_NOTICE|' 
include/inn/options.h
+}
+
+build() {
+  cd $srcdir/inn-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+   --includedir=/usr/include/inn \
+   --sbindir=/usr/sbin \
+   --with-libtool \
+   --with-gnu-id \
+   --with-db-dir=/var/db/inn \
+   --sysconfdir=/etc/inn \
+   --with-spool-dir=/var/spool/news \
+   --with-log-dir=/var/log/inn \
+   --with-run-dir=/var/run/inn \
+   --with-tmp-dir=/var/spool/inn/tmp \
+   --enable-largefiles \
+   --with-openssl=/usr \
+   --with-perl \
+   --with-python \
+   --with-sendmail=/usr/bin/msmtp \
+   --with-sasl=/usr \
+   --with-news-user=9 \
+   --with-news-group=13
+  # See https://wiki.archlinux.org/index.php/DeveloperWiki:UID_/_GID_Database
+  

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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 18:54:05
  Author: spupykin
Revision: 134853

upgpkg: kvirc 4.2.0-5

upd

Modified:
  kvirc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 16:54:01 UTC (rev 134852)
+++ PKGBUILD2015-06-05 16:54:05 UTC (rev 134853)
@@ -3,7 +3,7 @@
 
 pkgname=kvirc
 pkgver=4.2.0
-pkgrel=4
+pkgrel=5
 pkgdesc=Qt-based IRC client
 url=http://www.kvirc.net;
 depends=('python2' 'libxss' 'qtwebkit')
@@ -29,4 +29,11 @@
 package() {
   cd ${srcdir}/build
   make DESTDIR=$pkgdir install
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 18:54:13
  Author: spupykin
Revision: 134854

archrelease: copy trunk to community-staging-i686

Added:
  kvirc/repos/community-staging-i686/
  kvirc/repos/community-staging-i686/PKGBUILD
(from rev 134853, kvirc/trunk/PKGBUILD)
  kvirc/repos/community-staging-i686/kvirc-4.0.4-gcc-4.7.0.patch
(from rev 134853, kvirc/trunk/kvirc-4.0.4-gcc-4.7.0.patch)
  kvirc/repos/community-staging-i686/kvirc.install
(from rev 134853, kvirc/trunk/kvirc.install)

-+
 PKGBUILD|   39 ++
 kvirc-4.0.4-gcc-4.7.0.patch |   62 ++
 kvirc.install   |   13 
 3 files changed, 114 insertions(+)

Copied: kvirc/repos/community-staging-i686/PKGBUILD (from rev 134853, 
kvirc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 16:54:13 UTC (rev 134854)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=kvirc
+pkgver=4.2.0
+pkgrel=5
+pkgdesc=Qt-based IRC client
+url=http://www.kvirc.net;
+depends=('python2' 'libxss' 'qtwebkit')
+arch=(i686 x86_64)
+makedepends=('cmake')
+license=('GPL')
+install=kvirc.install
+source=(ftp://ftp.kvirc.de/pub/kvirc/$pkgver/source/$pkgname-$pkgver.tar.bz2)
+md5sums=('bf7229aaae132933a18b6a35125a2328')
+
+build() {
+  cd $srcdir
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DWANT_KDE4=OFF \
+-DWANT_PERL=ON \
+-DWANT_PHONON=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=$pkgdir install
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: kvirc/repos/community-staging-i686/kvirc-4.0.4-gcc-4.7.0.patch (from 
rev 134853, kvirc/trunk/kvirc-4.0.4-gcc-4.7.0.patch)
===
--- community-staging-i686/kvirc-4.0.4-gcc-4.7.0.patch  
(rev 0)
+++ community-staging-i686/kvirc-4.0.4-gcc-4.7.0.patch  2015-06-05 16:54:13 UTC 
(rev 134854)
@@ -0,0 +1,62 @@
+Index: /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp
+===
+--- /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 4667)
 /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 6024)
+@@ -190,6 +190,6 @@
+   QString artist;
+   QString title;
+-  foreach (QVariant v, reply.arguments()) {
+-  QDBusArgument arg = qvariant_castQDBusArgument(v);
++  foreach (QVariant w, reply.arguments()) {
++  QDBusArgument arg = qvariant_castQDBusArgument(w);
+   QVariant v = qdbus_castQVariantMap(arg);
+   if (v.userType() == QVariant::Map) {
+Index: /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp
+===
+--- /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 6024)
 /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 6025)
+@@ -139,6 +139,6 @@
+   return __return_if_fail; \
+   MPRIS_CALL_METHOD(GetMetadata, __return_if_fail) \
+-  foreach (QVariant v, reply.arguments()) { \
+-  QDBusArgument arg = qvariant_castQDBusArgument(v); \
++  foreach (QVariant w, reply.arguments()) { \
++  QDBusArgument arg = qvariant_castQDBusArgument(w); \
+   QVariant v = qdbus_castQVariantMap(arg); \
+   if (v.userType() == QVariant::Map) { \
+@@ -214,6 +214,6 @@
+   MPRIS_CALL_METHOD(GetMetadata, )
+ 
+-  foreach (QVariant v, reply.arguments()) {
+-  QDBusArgument arg = qvariant_castQDBusArgument(v);
++  foreach (QVariant w, reply.arguments()) {
++  QDBusArgument arg = qvariant_castQDBusArgument(w);
+   QVariant v = qdbus_castQVariantMap(arg);
+   if (v.userType() == QVariant::Map) {
+@@ -292,6 +292,6 @@
+   MPRIS_CALL_METHOD(GetMetadata, -1)
+ 
+-  foreach (QVariant v, reply.arguments()) {
+-  QDBusArgument arg = qvariant_castQDBusArgument(v);
++  foreach (QVariant w, reply.arguments()) {
++  QDBusArgument arg = qvariant_castQDBusArgument(w);
+   QVariant v = qdbus_castQVariantMap(arg);
+   if (v.userType() == QVariant::Map) {
+@@ -353,6 +353,6 @@
+   MPRIS_CALL_METHOD(GetMetadata, )
+ 
+-  foreach (QVariant v, reply.arguments()) {
+-  

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:08:23
  Author: arojas
Revision: 134860

NTL 9.2 rebuild

Modified:
  linbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 17:08:11 UTC (rev 134859)
+++ PKGBUILD2015-06-05 17:08:23 UTC (rev 134860)
@@ -3,7 +3,7 @@
 
 pkgname=linbox
 pkgver=1.3.2
-pkgrel=3
+pkgrel=4
 pkgdesc=A template library for exact, high-performance linear algebra 
computation with dense, sparse, and structured matrices over the integers and 
over finite fields
 arch=(i686 x86_64)
 url=http://linalg.org/;


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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 19:07:57
  Author: spupykin
Revision: 134858

upgpkg: musl 1.1.10-1

upd

Modified:
  musl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 17:00:58 UTC (rev 134857)
+++ PKGBUILD2015-06-05 17:07:57 UTC (rev 134858)
@@ -3,7 +3,7 @@
 # Contributor: TJ Vanderpoel tj@rubyists
 
 pkgname=musl
-pkgver=1.1.9
+pkgver=1.1.10
 pkgrel=1
 pkgdesc='Lightweight implementation of C standard library'
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('MIT')
 options=('staticlibs' '!buildflags')
 source=(http://www.musl-libc.org/releases/musl-$pkgver.tar.gz)
-md5sums=('14e8c5ac74f887d53256b3dcaf9b4aaa')
+md5sums=('fc30892ee582c91920505bbd0021049f')
 
 build() {
   cd $pkgname-$pkgver


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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 19:08:11
  Author: spupykin
Revision: 134859

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-05 17:07:57 UTC (rev 134858)
+++ community-i686/PKGBUILD 2015-06-05 17:08:11 UTC (rev 134859)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer:  Sergej Pupykin arch+...@sergej.pp.ru
-# Contributor: TJ Vanderpoel tj@rubyists
-
-pkgname=musl
-pkgver=1.1.9
-pkgrel=1
-pkgdesc='Lightweight implementation of C standard library'
-arch=('i686' 'x86_64')
-url='http://www.musl-libc.org/'
-license=('MIT')
-options=('staticlibs' '!buildflags')
-source=(http://www.musl-libc.org/releases/musl-$pkgver.tar.gz)
-md5sums=('14e8c5ac74f887d53256b3dcaf9b4aaa')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr/lib/musl \
---exec-prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -dm755 $pkgdir/usr/lib/
-  mv $pkgdir/lib/ld-musl*.so* $pkgdir/usr/lib/
-  rmdir $pkgdir/lib
-
-  install -Dm0644 README $pkgdir/usr/share/doc/musl/README
-  install -Dm0644 COPYRIGHT $pkgdir/usr/share/licenses/musl/COPYRIGHT
-}

Copied: musl/repos/community-i686/PKGBUILD (from rev 134858, 
musl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-05 17:08:11 UTC (rev 134859)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer:  Sergej Pupykin arch+...@sergej.pp.ru
+# Contributor: TJ Vanderpoel tj@rubyists
+
+pkgname=musl
+pkgver=1.1.10
+pkgrel=1
+pkgdesc='Lightweight implementation of C standard library'
+arch=('i686' 'x86_64')
+url='http://www.musl-libc.org/'
+license=('MIT')
+options=('staticlibs' '!buildflags')
+source=(http://www.musl-libc.org/releases/musl-$pkgver.tar.gz)
+md5sums=('fc30892ee582c91920505bbd0021049f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr/lib/musl \
+--exec-prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -dm755 $pkgdir/usr/lib/
+  mv $pkgdir/lib/ld-musl*.so* $pkgdir/usr/lib/
+  rmdir $pkgdir/lib
+
+  install -Dm0644 README $pkgdir/usr/share/doc/musl/README
+  install -Dm0644 COPYRIGHT $pkgdir/usr/share/licenses/musl/COPYRIGHT
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-05 17:07:57 UTC (rev 134858)
+++ community-x86_64/PKGBUILD   2015-06-05 17:08:11 UTC (rev 134859)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer:  Sergej Pupykin arch+...@sergej.pp.ru
-# Contributor: TJ Vanderpoel tj@rubyists
-
-pkgname=musl
-pkgver=1.1.9
-pkgrel=1
-pkgdesc='Lightweight implementation of C standard library'
-arch=('i686' 'x86_64')
-url='http://www.musl-libc.org/'
-license=('MIT')
-options=('staticlibs' '!buildflags')
-source=(http://www.musl-libc.org/releases/musl-$pkgver.tar.gz)
-md5sums=('14e8c5ac74f887d53256b3dcaf9b4aaa')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr/lib/musl \
---exec-prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -dm755 $pkgdir/usr/lib/
-  mv $pkgdir/lib/ld-musl*.so* $pkgdir/usr/lib/
-  rmdir $pkgdir/lib
-
-  install -Dm0644 README $pkgdir/usr/share/doc/musl/README
-  install -Dm0644 COPYRIGHT $pkgdir/usr/share/licenses/musl/COPYRIGHT
-}

Copied: musl/repos/community-x86_64/PKGBUILD (from rev 134858, 
musl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-05 17:08:11 UTC (rev 134859)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer:  Sergej Pupykin arch+...@sergej.pp.ru
+# Contributor: TJ Vanderpoel tj@rubyists
+
+pkgname=musl
+pkgver=1.1.10
+pkgrel=1
+pkgdesc='Lightweight implementation of C standard library'
+arch=('i686' 'x86_64')
+url='http://www.musl-libc.org/'
+license=('MIT')
+options=('staticlibs' '!buildflags')
+source=(http://www.musl-libc.org/releases/musl-$pkgver.tar.gz)
+md5sums=('fc30892ee582c91920505bbd0021049f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr/lib/musl \
+--exec-prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -dm755 $pkgdir/usr/lib/
+  mv 

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 18:59:13
  Author: arojas
Revision: 134856

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

Added:
  flint/repos/community-staging-i686/
  flint/repos/community-staging-i686/PKGBUILD
(from rev 134855, flint/trunk/PKGBUILD)
  flint/repos/community-staging-x86_64/
  flint/repos/community-staging-x86_64/PKGBUILD
(from rev 134855, flint/trunk/PKGBUILD)
Deleted:
  flint/repos/community-staging-i686/PKGBUILD
  flint/repos/community-staging-x86_64/PKGBUILD

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

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-02-28 11:14:27 UTC (rev 128407)
+++ community-staging-i686/PKGBUILD 2015-06-05 16:59:13 UTC (rev 134856)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
-# Contributor: Alessandro jakedust Andrioni jaked...@gmail.com
-
-pkgname=flint
-pkgver=2.4.5
-pkgrel=2
-pkgdesc=A C library for doing number theory
-arch=(i686 x86_64)
-url=http://www.flintlib.org;
-license=(GPL)
-depends=(mpfr ntl)
-source=(http://www.flintlib.org/flint-$pkgver.tar.gz;)
-md5sums=('6504b9deabeafb9313e57153a1730b33')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i.orig 's,.*NTL/g_lip.h,// ,' interfaces/NTL-interface.cpp
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: flint/repos/community-staging-i686/PKGBUILD (from rev 134855, 
flint/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 16:59:13 UTC (rev 134856)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+# Contributor: Alessandro jakedust Andrioni jaked...@gmail.com
+
+pkgname=flint
+pkgver=2.4.5
+pkgrel=4
+pkgdesc=A C library for doing number theory
+arch=(i686 x86_64)
+url=http://www.flintlib.org;
+license=(GPL)
+depends=(mpfr ntl)
+source=(http://www.flintlib.org/flint-$pkgver.tar.gz;)
+md5sums=('6504b9deabeafb9313e57153a1730b33')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i.orig 's,.*NTL/g_lip.h,// ,' interfaces/NTL-interface.cpp
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2015-02-28 11:14:27 UTC (rev 128407)
+++ community-staging-x86_64/PKGBUILD   2015-06-05 16:59:13 UTC (rev 134856)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
-# Contributor: Alessandro jakedust Andrioni jaked...@gmail.com
-
-pkgname=flint
-pkgver=2.4.5
-pkgrel=2
-pkgdesc=A C library for doing number theory
-arch=(i686 x86_64)
-url=http://www.flintlib.org;
-license=(GPL)
-depends=(mpfr ntl)
-source=(http://www.flintlib.org/flint-$pkgver.tar.gz;)
-md5sums=('6504b9deabeafb9313e57153a1730b33')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i.orig 's,.*NTL/g_lip.h,// ,' interfaces/NTL-interface.cpp
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: flint/repos/community-staging-x86_64/PKGBUILD (from rev 134855, 
flint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-05 16:59:13 UTC (rev 134856)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+# Contributor: Alessandro jakedust Andrioni jaked...@gmail.com
+
+pkgname=flint
+pkgver=2.4.5
+pkgrel=4
+pkgdesc=A C library for doing number theory
+arch=(i686 x86_64)
+url=http://www.flintlib.org;
+license=(GPL)
+depends=(mpfr ntl)
+source=(http://www.flintlib.org/flint-$pkgver.tar.gz;)
+md5sums=('6504b9deabeafb9313e57153a1730b33')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i.orig 's,.*NTL/g_lip.h,// ,' interfaces/NTL-interface.cpp
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+

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

2015-06-05 Thread Levente Polyak
Date: Friday, June 5, 2015 @ 17:53:14
  Author: anthraxx
Revision: 134842

capstone: remove unneeded LIBDIR to install target

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 13:58:19 UTC (rev 134841)
+++ PKGBUILD2015-06-05 15:53:14 UTC (rev 134842)
@@ -1,4 +1,4 @@
-# Maintainer: Levente Polyak levente[at]leventepolyak[dot]net
+# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
 # Contributor: M0Rf30
 
 pkgbase=capstone
@@ -21,7 +21,7 @@
 package_capstone() {
   depends=('glibc')
   cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} LIBDIR=${pkgdir}/usr/lib install
+  make DESTDIR=${pkgdir} install
   install -Dm 644 LICENSE.TXT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }
 


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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 19:00:58
  Author: spupykin
Revision: 134857

archrelease: copy trunk to community-staging-x86_64

Added:
  kvirc/repos/community-staging-x86_64/
  kvirc/repos/community-staging-x86_64/PKGBUILD
(from rev 134856, kvirc/trunk/PKGBUILD)
  kvirc/repos/community-staging-x86_64/kvirc-4.0.4-gcc-4.7.0.patch
(from rev 134856, kvirc/trunk/kvirc-4.0.4-gcc-4.7.0.patch)
  kvirc/repos/community-staging-x86_64/kvirc.install
(from rev 134856, kvirc/trunk/kvirc.install)

-+
 PKGBUILD|   39 ++
 kvirc-4.0.4-gcc-4.7.0.patch |   62 ++
 kvirc.install   |   13 
 3 files changed, 114 insertions(+)

Copied: kvirc/repos/community-staging-x86_64/PKGBUILD (from rev 134856, 
kvirc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-05 17:00:58 UTC (rev 134857)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=kvirc
+pkgver=4.2.0
+pkgrel=5
+pkgdesc=Qt-based IRC client
+url=http://www.kvirc.net;
+depends=('python2' 'libxss' 'qtwebkit')
+arch=(i686 x86_64)
+makedepends=('cmake')
+license=('GPL')
+install=kvirc.install
+source=(ftp://ftp.kvirc.de/pub/kvirc/$pkgver/source/$pkgname-$pkgver.tar.bz2)
+md5sums=('bf7229aaae132933a18b6a35125a2328')
+
+build() {
+  cd $srcdir
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DWANT_KDE4=OFF \
+-DWANT_PERL=ON \
+-DWANT_PHONON=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=$pkgdir install
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: kvirc/repos/community-staging-x86_64/kvirc-4.0.4-gcc-4.7.0.patch (from 
rev 134856, kvirc/trunk/kvirc-4.0.4-gcc-4.7.0.patch)
===
--- community-staging-x86_64/kvirc-4.0.4-gcc-4.7.0.patch
(rev 0)
+++ community-staging-x86_64/kvirc-4.0.4-gcc-4.7.0.patch2015-06-05 
17:00:58 UTC (rev 134857)
@@ -0,0 +1,62 @@
+Index: /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp
+===
+--- /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 4667)
 /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 6024)
+@@ -190,6 +190,6 @@
+   QString artist;
+   QString title;
+-  foreach (QVariant v, reply.arguments()) {
+-  QDBusArgument arg = qvariant_castQDBusArgument(v);
++  foreach (QVariant w, reply.arguments()) {
++  QDBusArgument arg = qvariant_castQDBusArgument(w);
+   QVariant v = qdbus_castQVariantMap(arg);
+   if (v.userType() == QVariant::Map) {
+Index: /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp
+===
+--- /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 6024)
 /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 6025)
+@@ -139,6 +139,6 @@
+   return __return_if_fail; \
+   MPRIS_CALL_METHOD(GetMetadata, __return_if_fail) \
+-  foreach (QVariant v, reply.arguments()) { \
+-  QDBusArgument arg = qvariant_castQDBusArgument(v); \
++  foreach (QVariant w, reply.arguments()) { \
++  QDBusArgument arg = qvariant_castQDBusArgument(w); \
+   QVariant v = qdbus_castQVariantMap(arg); \
+   if (v.userType() == QVariant::Map) { \
+@@ -214,6 +214,6 @@
+   MPRIS_CALL_METHOD(GetMetadata, )
+ 
+-  foreach (QVariant v, reply.arguments()) {
+-  QDBusArgument arg = qvariant_castQDBusArgument(v);
++  foreach (QVariant w, reply.arguments()) {
++  QDBusArgument arg = qvariant_castQDBusArgument(w);
+   QVariant v = qdbus_castQVariantMap(arg);
+   if (v.userType() == QVariant::Map) {
+@@ -292,6 +292,6 @@
+   MPRIS_CALL_METHOD(GetMetadata, -1)
+ 
+-  foreach (QVariant v, reply.arguments()) {
+-  QDBusArgument arg = qvariant_castQDBusArgument(v);
++  foreach (QVariant w, reply.arguments()) {
++  QDBusArgument arg = qvariant_castQDBusArgument(w);
+   QVariant v = qdbus_castQVariantMap(arg);
+   if (v.userType() == QVariant::Map) {
+@@ -353,6 +353,6 @@
+   MPRIS_CALL_METHOD(GetMetadata, )
+ 
+-  foreach (QVariant 

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 19:09:16
  Author: arojas
Revision: 134861

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

Added:
  linbox/repos/community-staging-i686/
  linbox/repos/community-staging-i686/PKGBUILD
(from rev 134860, linbox/trunk/PKGBUILD)
  linbox/repos/community-staging-i686/lapack.patch
(from rev 134860, linbox/trunk/lapack.patch)
  linbox/repos/community-staging-i686/linbox-fplll.patch
(from rev 134860, linbox/trunk/linbox-fplll.patch)
  linbox/repos/community-staging-i686/underlink.patch
(from rev 134860, linbox/trunk/underlink.patch)
  linbox/repos/community-staging-x86_64/
  linbox/repos/community-staging-x86_64/PKGBUILD
(from rev 134860, linbox/trunk/PKGBUILD)
  linbox/repos/community-staging-x86_64/lapack.patch
(from rev 134860, linbox/trunk/lapack.patch)
  linbox/repos/community-staging-x86_64/linbox-fplll.patch
(from rev 134860, linbox/trunk/linbox-fplll.patch)
  linbox/repos/community-staging-x86_64/underlink.patch
(from rev 134860, linbox/trunk/underlink.patch)

-+
 community-staging-i686/PKGBUILD |   51 +++
 community-staging-i686/lapack.patch |   22 ++
 community-staging-i686/linbox-fplll.patch   |   87 ++
 community-staging-i686/underlink.patch  |   41 
 community-staging-x86_64/PKGBUILD   |   51 +++
 community-staging-x86_64/lapack.patch   |   22 ++
 community-staging-x86_64/linbox-fplll.patch |   87 ++
 community-staging-x86_64/underlink.patch|   41 
 8 files changed, 402 insertions(+)

Copied: linbox/repos/community-staging-i686/PKGBUILD (from rev 134860, 
linbox/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 17:09:16 UTC (rev 134861)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Antonio Rojas  nqn7...@gmail.com 
+
+pkgname=linbox
+pkgver=1.3.2
+pkgrel=4
+pkgdesc=A template library for exact, high-performance linear algebra 
computation with dense, sparse, and structured matrices over the integers and 
over finite fields
+arch=(i686 x86_64)
+url=http://linalg.org/;
+license=(LGPL)
+depends=(m4rie lapack ntl libfplll iml givaro) 
+makedepends=(fflas-ffpack)
+source=(http://linalg.org/$pkgname-$pkgver.tar.gz; 'linbox-fplll.patch' 
'underlink.patch' 'lapack.patch')
+md5sums=('67c80345c8c3e93d213f2d7d37d8c9af'
+ '76fbb525cceff1dd74a7c1892ca965d0'
+ '731a6b17c40a56e38fef79e03391e0b5'
+ '3525650c88f9a2809214216b914f4f46')
+
+prepare() {
+  cd $pkgname-$pkgver
+# fix build with newer givaro
+  sed -i 's|version_max=30800|version_max=30900|' configure
+# fix libfplll support - Fedora patch
+  patch -p0 -i ../linbox-fplll.patch
+# fix underlink - Fedora patch
+  patch -p0 -i ../underlink.patch
+# fix detecting lapack support in fflas-ffpack
+  patch -p0 -i ../lapack.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  export CFLAGS=$CFLAGS -g -fPIC
+  export CXXFLAGS=$CXXFLAGS -g -fPIC
+  export LDFLAGS=$LDFLAGS -L/usr/lib
+
+  ./configure --prefix=/usr --enable-sage --enable-optimization 
--with-fplll=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+

Copied: linbox/repos/community-staging-i686/lapack.patch (from rev 134860, 
linbox/trunk/lapack.patch)
===
--- community-staging-i686/lapack.patch (rev 0)
+++ community-staging-i686/lapack.patch 2015-06-05 17:09:16 UTC (rev 134861)
@@ -0,0 +1,22 @@
+--- ./macros/lapack-check.m4.orig  2012-06-07 02:30:26.0 -0600
 ./macros/lapack-check.m4   2012-10-02 15:05:47.051001770 -0600
+@@ -38,7 +38,7 @@ LIBS=${BACKUP_LIBS} ${BLAS_LIBS}
+ 
+ AC_TRY_RUN(dnl ICC ?
+ [   #include fflas-ffpack/fflas-ffpack-config.h
+-  #ifdef __FFLAS_FFPACK_HAVE_LAPACK
++  #ifdef __FFLASFFPACK_HAVE_LAPACK
+  int main() { return 0 ; }
+#else
+a pas lapack
+--- ./configure.orig   2012-06-07 15:19:31.0 -0600
 ./configure2012-10-02 15:06:07.629005714 -0600
+@@ -18077,7 +18077,7 @@ else
+   cat confdefs.h - _ACEOF conftest.$ac_ext
+ /* end confdefs.h.  */
+#include fflas-ffpack/fflas-ffpack-config.h
+-  #ifdef __FFLAS_FFPACK_HAVE_LAPACK
++  #ifdef __FFLASFFPACK_HAVE_LAPACK
+  int main() { return 0 ; }
+#else
+a pas lapack

Copied: linbox/repos/community-staging-i686/linbox-fplll.patch (from rev 
134860, linbox/trunk/linbox-fplll.patch)
===
--- community-staging-i686/linbox-fplll.patch   (rev 0)
+++ community-staging-i686/linbox-fplll.patch   2015-06-05 17:09:16 UTC (rev 
134861)
@@ -0,0 +1,87 @@

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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 18:22:15
  Author: spupykin
Revision: 134844

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

Added:
  clearsilver/repos/community-staging-i686/
  clearsilver/repos/community-staging-i686/PKGBUILD
(from rev 134843, clearsilver/trunk/PKGBUILD)
  clearsilver/repos/community-staging-i686/c99.patch
(from rev 134843, clearsilver/trunk/c99.patch)
  clearsilver/repos/community-staging-i686/clearsilver-ruby-1.9.patch
(from rev 134843, clearsilver/trunk/clearsilver-ruby-1.9.patch)
  clearsilver/repos/community-staging-x86_64/
  clearsilver/repos/community-staging-x86_64/PKGBUILD
(from rev 134843, clearsilver/trunk/PKGBUILD)
  clearsilver/repos/community-staging-x86_64/c99.patch
(from rev 134843, clearsilver/trunk/c99.patch)
  clearsilver/repos/community-staging-x86_64/clearsilver-ruby-1.9.patch
(from rev 134843, clearsilver/trunk/clearsilver-ruby-1.9.patch)

-+
 community-staging-i686/PKGBUILD |   79 +
 community-staging-i686/c99.patch|   23 +
 community-staging-i686/clearsilver-ruby-1.9.patch   |  244 ++
 community-staging-x86_64/PKGBUILD   |   79 +
 community-staging-x86_64/c99.patch  |   23 +
 community-staging-x86_64/clearsilver-ruby-1.9.patch |  244 ++
 6 files changed, 692 insertions(+)

Copied: clearsilver/repos/community-staging-i686/PKGBUILD (from rev 134843, 
clearsilver/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 16:22:15 UTC (rev 134844)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer : Aaron Griffin aa...@archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=clearsilver
+pkgver=0.10.5
+pkgrel=18
+pkgdesc=clearsilver is a fast, powerful, and language-neutral HTML template 
system
+arch=('i686' 'x86_64')
+url='http://www.clearsilver.net'
+license=('custom')
+depends=('python2' 'perl' 'ruby' 'java-runtime')
+makedepends=('java-environment')
+options=('!emptydirs' 'staticlibs')
+source=(http://www.clearsilver.net/downloads/$pkgname-$pkgver.tar.gz;
+clearsilver-ruby-1.9.patch
+c99.patch)
+md5sums=('b8c0c7fbe0ef5e06e0c935f134304d44'
+ 'd9db4e5985254e1b0d63e9ff042773f4'
+ '18b9bf6755786f202b25477b5e882792')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  sed -i s@/usr/local/bin/python@/usr/bin/env python2@g scripts/document.py
+  sed -i s...@install.rb inst...@install.rb install --prefix=$pkgdir@g 
ruby/Makefile
+  patch -p1 $srcdir/clearsilver-ruby-1.9.patch
+  patch -p1 $srcdir/c99.patch
+  patch -p0 ruby/install.rb EOF
+71,73c71,73
+ siteruby   = subprefix.call(c['sitedir'])
+ versite= subprefix.call(c['sitelibdir'])
+ sodir  = subprefix.call(c['sitearchdir'])
+---
+ siteruby   = subprefix.call(c['vendordir'])
+ versite= subprefix.call(c['vendorlibdir'])
+ sodir  = subprefix.call(c['vendorarchdir'])
+EOF
+  sed -i 's|LIBRARIES = inserted + LIBRARIES|LIBRARIES = LIBRARIES + 
inserted|' python/setup.py
+
+  # fix for ruby 2.2
+  sed -i 's|::Config::|RbConfig::|g' ruby/install.rb
+  if [ $CARCH == x86_64 ]; then
+sed -i 's|-2128917020|2166050276|' cs/test_crc.cs.gold
+  fi
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  export PERL_MM_OPT='INSTALLDIRS=vendor'
+  ./configure --disable-csharp --prefix=/usr --with-python=/usr/bin/python2
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  (cd ruby  make testrb)
+  (cd perl  make test)
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make PREFIX=$pkgdir DESTDIR=$pkgdir install
+
+  install -Dm644 CS_LICENSE $pkgdir/usr/share/licenses/clearsilver/license.txt
+  mv $pkgdir/usr/man/man3/* $pkgdir/usr/share/man/man3/
+  rm -rf $pkgdir/usr/man
+
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: clearsilver/repos/community-staging-i686/c99.patch (from rev 134843, 
clearsilver/trunk/c99.patch)
===
--- community-staging-i686/c99.patch(rev 0)
+++ community-staging-i686/c99.patch2015-06-05 16:22:15 UTC (rev 134844)
@@ -0,0 +1,23 @@
+diff -wbBur clearsilver-0.10.5/util/neo_err.h 
clearsilver-0.10.5.my/util/neo_err.h
+--- clearsilver-0.10.5/util/neo_err.h  2007-07-12 07:09:09.0 +0400
 

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 18:46:22
  Author: arojas
Revision: 134845

Update to 9.2.0

Modified:
  ntl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 16:22:15 UTC (rev 134844)
+++ PKGBUILD2015-06-05 16:46:22 UTC (rev 134845)
@@ -3,8 +3,8 @@
 # Contributor: Brad Conte brad AT bradconte.com
 
 pkgname=ntl
-pkgver=9.1.1
-pkgrel=2
+pkgver=9.2.0
+pkgrel=1
 pkgdesc=A Library for doing Number Theory
 arch=(i686 x86_64)
 url=http://www.shoup.net/ntl/;
@@ -13,7 +13,7 @@
 makedepends=()
 options=(!libtool)
 source=(http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz; 
'ntl-sage.patch')
-md5sums=('22beee5ee1fe7c09f623d0f0cf08e7af'
+md5sums=('bf419b48ea567858e47e0aac3c849fbe'
  '4cb5f97080281109bf358959ab993691')
 
 prepare() {


[arch-commits] Commit in clearsilver/trunk (PKGBUILD c99.patch)

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 18:14:49
  Author: spupykin
Revision: 134843

Added:
  clearsilver/trunk/c99.patch
Modified:
  clearsilver/trunk/PKGBUILD

---+
 PKGBUILD  |   20 +++-
 c99.patch |   23 +++
 2 files changed, 38 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 15:53:14 UTC (rev 134842)
+++ PKGBUILD2015-06-05 16:14:49 UTC (rev 134843)
@@ -5,17 +5,20 @@
 
 pkgname=clearsilver
 pkgver=0.10.5
-pkgrel=17
+pkgrel=18
 pkgdesc=clearsilver is a fast, powerful, and language-neutral HTML template 
system
 arch=('i686' 'x86_64')
 url='http://www.clearsilver.net'
 license=('custom')
 depends=('python2' 'perl' 'ruby' 'java-runtime')
+makedepends=('java-environment')
 options=('!emptydirs' 'staticlibs')
 source=(http://www.clearsilver.net/downloads/$pkgname-$pkgver.tar.gz;
-clearsilver-ruby-1.9.patch)
+clearsilver-ruby-1.9.patch
+c99.patch)
 md5sums=('b8c0c7fbe0ef5e06e0c935f134304d44'
- 'd9db4e5985254e1b0d63e9ff042773f4')
+ 'd9db4e5985254e1b0d63e9ff042773f4'
+ '18b9bf6755786f202b25477b5e882792')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver
@@ -22,6 +25,7 @@
   sed -i s@/usr/local/bin/python@/usr/bin/env python2@g scripts/document.py
   sed -i s...@install.rb inst...@install.rb install --prefix=$pkgdir@g 
ruby/Makefile
   patch -p1 $srcdir/clearsilver-ruby-1.9.patch
+  patch -p1 $srcdir/c99.patch
   patch -p0 ruby/install.rb EOF
 71,73c71,73
  siteruby   = subprefix.call(c['sitedir'])
@@ -59,11 +63,17 @@
   make PREFIX=$pkgdir DESTDIR=$pkgdir install
 
   install -Dm644 CS_LICENSE $pkgdir/usr/share/licenses/clearsilver/license.txt
-  rm -rf $pkgdir/usr/lib/perl5/5.8.8/
-
   mv $pkgdir/usr/man/man3/* $pkgdir/usr/share/man/man3/
   rm -rf $pkgdir/usr/man
 
   find $pkgdir -name '.packlist' -delete
   find $pkgdir -name '*.pod' -delete
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }

Added: c99.patch
===
--- c99.patch   (rev 0)
+++ c99.patch   2015-06-05 16:14:49 UTC (rev 134843)
@@ -0,0 +1,23 @@
+diff -wbBur clearsilver-0.10.5/util/neo_err.h 
clearsilver-0.10.5.my/util/neo_err.h
+--- clearsilver-0.10.5/util/neo_err.h  2007-07-12 07:09:09.0 +0400
 clearsilver-0.10.5.my/util/neo_err.h   2015-06-05 19:06:34.961297962 
+0300
+@@ -84,9 +84,6 @@
+  *  NEOERR fails
+  */
+ #if defined(USE_C99_VARARG_MACROS)
+-#define nerr_raise(e,f,...) \
+-   nerr_raisef(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f,__VA_ARGS__)
+-#elif defined(USE_GNUC_VARARG_MACROS)
+ #define nerr_raise(e,f,a...) \
+nerr_raisef(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f,##a)
+ #endif
+@@ -98,9 +95,6 @@
+ 
+ 
+ #if defined(USE_C99_VARARG_MACROS)
+-#define nerr_raise_errno(e,f,...) \
+-   nerr_raise_errnof(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f,__VA_ARGS__)
+-#elif defined(USE_GNUC_VARARG_MACROS)
+ #define nerr_raise_errno(e,f,a...) \
+nerr_raise_errnof(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f,##a)
+ #endif


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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 18:53:42
  Author: spupykin
Revision: 134851

upgpkg: inn 2.5.4-2

upd

Modified:
  inn/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 16:53:39 UTC (rev 134850)
+++ PKGBUILD2015-06-05 16:53:42 UTC (rev 134851)
@@ -5,7 +5,7 @@
 
 pkgname=inn
 pkgver=2.5.4
-pkgrel=1
+pkgrel=2
 pkgdesc=Complete open source Usenet system. De facto standard for handling 
news routing, news spool and serving the spool to customers.
 url=http://www.isc.org/software/inn/;
 arch=('i686' 'x86_64')
@@ -122,4 +122,12 @@
 
   install -Dm0644 $srcdir/innd.service 
$pkgdir/usr/lib/systemd/system/innd.service
   install -Dm0644 $srcdir/inn.tmpfiles $pkgdir/usr/lib/tmpfiles.d/inn.conf
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-05 Thread Levente Polyak
Date: Friday, June 5, 2015 @ 18:53:39
  Author: anthraxx
Revision: 134850

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

Added:
  radare2/repos/community-i686/
  radare2/repos/community-i686/PKGBUILD
(from rev 134848, radare2/trunk/PKGBUILD)
  radare2/repos/community-x86_64/
  radare2/repos/community-x86_64/PKGBUILD
(from rev 134848, radare2/trunk/PKGBUILD)

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

Copied: radare2/repos/community-i686/PKGBUILD (from rev 134848, 
radare2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-05 16:53:39 UTC (rev 134850)
@@ -0,0 +1,27 @@
+# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
+# Contributor: Guillermo Ramos 0xwille at gmail dot com
+
+pkgname=radare2
+pkgver=0.9.9
+pkgrel=1
+pkgdesc=Open-source tools to disasm, debug, analyze and manipulate binary 
files
+url=http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL3')
+depends=('sh' 'capstone')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('89844d44a2fb8170b245761ef9f235231338ed1f0a1ecfe18d38c779fe699dc8eee4fda5446f898d24af928aa6b3dc63bbae46890323fa77be262373108b5947')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-syscapstone
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Copied: radare2/repos/community-x86_64/PKGBUILD (from rev 134848, 
radare2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-05 16:53:39 UTC (rev 134850)
@@ -0,0 +1,27 @@
+# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
+# Contributor: Guillermo Ramos 0xwille at gmail dot com
+
+pkgname=radare2
+pkgver=0.9.9
+pkgrel=1
+pkgdesc=Open-source tools to disasm, debug, analyze and manipulate binary 
files
+url=http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL3')
+depends=('sh' 'capstone')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('89844d44a2fb8170b245761ef9f235231338ed1f0a1ecfe18d38c779fe699dc8eee4fda5446f898d24af928aa6b3dc63bbae46890323fa77be262373108b5947')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-syscapstone
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:


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

2015-06-05 Thread Sergej Pupykin
Date: Friday, June 5, 2015 @ 18:53:19
  Author: spupykin
Revision: 134848

upgpkg: freeradius 3.0.8-2

upd

Modified:
  freeradius/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 16:53:13 UTC (rev 134847)
+++ PKGBUILD2015-06-05 16:53:19 UTC (rev 134848)
@@ -5,7 +5,7 @@
 
 pkgname=freeradius
 pkgver=3.0.8
-pkgrel=1
+pkgrel=2
 pkgdesc=The premier open source RADIUS server
 arch=('i686' 'x86_64')
 url=http://www.freeradius.org/;
@@ -45,4 +45,12 @@
 
   install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
   install -Dm0644 $srcdir/$pkgname.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
 }


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

2015-06-05 Thread Levente Polyak
Date: Friday, June 5, 2015 @ 18:53:13
  Author: anthraxx
Revision: 134847

addpkg radare2 0.9.9-1

Added:
  radare2/
  radare2/repos/
  radare2/trunk/
  radare2/trunk/PKGBUILD

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

Added: radare2/trunk/PKGBUILD
===
--- radare2/trunk/PKGBUILD  (rev 0)
+++ radare2/trunk/PKGBUILD  2015-06-05 16:53:13 UTC (rev 134847)
@@ -0,0 +1,27 @@
+# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
+# Contributor: Guillermo Ramos 0xwille at gmail dot com
+
+pkgname=radare2
+pkgver=0.9.9
+pkgrel=1
+pkgdesc=Open-source tools to disasm, debug, analyze and manipulate binary 
files
+url=http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL3')
+depends=('sh' 'capstone')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('89844d44a2fb8170b245761ef9f235231338ed1f0a1ecfe18d38c779fe699dc8eee4fda5446f898d24af928aa6b3dc63bbae46890323fa77be262373108b5947')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-syscapstone
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:


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

2015-06-05 Thread Jan de Groot
Date: Friday, June 5, 2015 @ 12:11:17
  Author: jgc
Revision: 134833

Move -lasound to LDLIBS to fix link flags error

Modified:
  clalsadrv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 09:53:46 UTC (rev 134832)
+++ PKGBUILD2015-06-05 10:11:17 UTC (rev 134833)
@@ -31,7 +31,8 @@
   # apps
   cd ../apps
   CXXFLAGS+= -I../libs \
-  LDFLAGS+= -L../libs -lasound \
+  LDFLAGS+= -L../libs \
+  LDLIBS=-lasound \
   make PREFIX=/usr
 }
 


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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 23:46:52
  Author: arojas
Revision: 134873

NTL 9.2 / pynac 0.3.9 rebuild

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 20:50:39 UTC (rev 134872)
+++ PKGBUILD2015-06-05 21:46:52 UTC (rev 134873)
@@ -9,7 +9,7 @@
 
 pkgname=sagemath
 pkgver=6.7
-pkgrel=1
+pkgrel=2
 pkgdesc=Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab
 arch=('i686' 'x86_64')
 url=http://www.sagemath.org;


[arch-commits] Commit in sagemath/trunk (PKGBUILD ntl9.patch)

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 23:48:19
  Author: arojas
Revision: 134874

upgpkg: sagemath 6.7-2

Modified:
  sagemath/trunk/PKGBUILD
  sagemath/trunk/ntl9.patch

+
 PKGBUILD   |2 +-
 ntl9.patch |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 21:46:52 UTC (rev 134873)
+++ PKGBUILD2015-06-05 21:48:19 UTC (rev 134874)
@@ -48,7 +48,7 @@
  'a83a3b1bc7fcb7cbf752a83a8311fc42'
  'f333939ea6c41377b66407c81016cee4'
  '506944613082ba7f5b34360939ca90eb'
- '308abbb1a49db9b8f0e088aff69567ff')
+ '56ac59972fcb9fe005ef89638b2e3828')
 
 prepare(){
   cd sage-$pkgver

Modified: ntl9.patch
===
--- ntl9.patch  2015-06-05 21:46:52 UTC (rev 134873)
+++ ntl9.patch  2015-06-05 21:48:19 UTC (rev 134874)
@@ -97,7 +97,7 @@
  #ifndef BERNMM_BERN_MODP_H
  #define BERNMM_BERN_MODP_H
  
-+#include NTL/ZZ.h
++#include NTL/sp_arith.h
  
  namespace bernmm {
  
@@ -147,7 +147,7 @@
  #include vector
  #include cassert
  #include climits
-+#include NTL/ZZ.h
++#include NTL/sp_arith.h
  
  
  #if ULONG_MAX == 4294967295U


[arch-commits] Commit in sagemath/repos (48 files)

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 23:53:59
  Author: arojas
Revision: 134877

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

Added:
  sagemath/repos/community-staging-i686/PKGBUILD
(from rev 134876, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-i686/anal.h
(from rev 134876, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-i686/c_lib.patch
(from rev 134876, sagemath/trunk/c_lib.patch)
  sagemath/repos/community-staging-i686/clean.patch
(from rev 134876, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-i686/env.patch
(from rev 134876, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-i686/fes02.patch
(from rev 134876, sagemath/trunk/fes02.patch)
  sagemath/repos/community-staging-i686/ntl9.patch
(from rev 134876, sagemath/trunk/ntl9.patch)
  sagemath/repos/community-staging-i686/package.patch
(from rev 134876, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-i686/paths.patch
(from rev 134876, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-i686/pexpect-del.patch
(from rev 134876, sagemath/trunk/pexpect-del.patch)
  sagemath/repos/community-staging-i686/pexpect-env.patch
(from rev 134876, sagemath/trunk/pexpect-env.patch)
  sagemath/repos/community-staging-i686/skip-check.patch
(from rev 134876, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-staging-x86_64/PKGBUILD
(from rev 134876, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-x86_64/anal.h
(from rev 134876, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-x86_64/c_lib.patch
(from rev 134876, sagemath/trunk/c_lib.patch)
  sagemath/repos/community-staging-x86_64/clean.patch
(from rev 134876, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-x86_64/env.patch
(from rev 134876, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-x86_64/fes02.patch
(from rev 134876, sagemath/trunk/fes02.patch)
  sagemath/repos/community-staging-x86_64/ntl9.patch
(from rev 134876, sagemath/trunk/ntl9.patch)
  sagemath/repos/community-staging-x86_64/package.patch
(from rev 134876, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-x86_64/paths.patch
(from rev 134876, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-x86_64/pexpect-del.patch
(from rev 134876, sagemath/trunk/pexpect-del.patch)
  sagemath/repos/community-staging-x86_64/pexpect-env.patch
(from rev 134876, sagemath/trunk/pexpect-env.patch)
  sagemath/repos/community-staging-x86_64/skip-check.patch
(from rev 134876, sagemath/trunk/skip-check.patch)
Deleted:
  sagemath/repos/community-staging-i686/PKGBUILD
  sagemath/repos/community-staging-i686/anal.h
  sagemath/repos/community-staging-i686/c_lib.patch
  sagemath/repos/community-staging-i686/clean.patch
  sagemath/repos/community-staging-i686/env.patch
  sagemath/repos/community-staging-i686/fes02.patch
  sagemath/repos/community-staging-i686/ntl9.patch
  sagemath/repos/community-staging-i686/package.patch
  sagemath/repos/community-staging-i686/paths.patch
  sagemath/repos/community-staging-i686/pexpect-del.patch
  sagemath/repos/community-staging-i686/pexpect-env.patch
  sagemath/repos/community-staging-i686/skip-check.patch
  sagemath/repos/community-staging-x86_64/PKGBUILD
  sagemath/repos/community-staging-x86_64/anal.h
  sagemath/repos/community-staging-x86_64/c_lib.patch
  sagemath/repos/community-staging-x86_64/clean.patch
  sagemath/repos/community-staging-x86_64/env.patch
  sagemath/repos/community-staging-x86_64/fes02.patch
  sagemath/repos/community-staging-x86_64/ntl9.patch
  sagemath/repos/community-staging-x86_64/package.patch
  sagemath/repos/community-staging-x86_64/paths.patch
  sagemath/repos/community-staging-x86_64/pexpect-del.patch
  sagemath/repos/community-staging-x86_64/pexpect-env.patch
  sagemath/repos/community-staging-x86_64/skip-check.patch

+
 /PKGBUILD  |  336 +
 /anal.h|  130 +
 /c_lib.patch   |   34 ++
 /clean.patch   |   46 +++
 /env.patch |  264 
 /fes02.patch   |   90 ++
 /ntl9.patch|  356 +++
 /package.patch |   22 +
 /paths.patch   |   66 +
 /pexpect-del.patch |   30 ++
 /pexpect-env.patch |   64 
 /skip-check.patch  |   42 +++
 community-staging-i686/PKGBUILD|  168 
 community-staging-i686/anal.h  |   65 
 community-staging-i686/c_lib.patch |   17 -
 community-staging-i686/clean.patch |   23 -
 

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 22:50:39
  Author: arojas
Revision: 134872

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

Added:
  ntl/repos/community-staging-i686/PKGBUILD
(from rev 134871, ntl/trunk/PKGBUILD)
  ntl/repos/community-staging-i686/ntl-sage.patch
(from rev 134871, ntl/trunk/ntl-sage.patch)
  ntl/repos/community-staging-x86_64/PKGBUILD
(from rev 134871, ntl/trunk/PKGBUILD)
  ntl/repos/community-staging-x86_64/ntl-sage.patch
(from rev 134871, ntl/trunk/ntl-sage.patch)
Deleted:
  ntl/repos/community-staging-i686/PKGBUILD
  ntl/repos/community-staging-i686/ntl-sage.patch
  ntl/repos/community-staging-x86_64/PKGBUILD
  ntl/repos/community-staging-x86_64/ntl-sage.patch

-+
 /PKGBUILD   |   78 ++
 /ntl-sage.patch |  104 ++
 community-staging-i686/PKGBUILD |   39 ---
 community-staging-i686/ntl-sage.patch   |   52 ---
 community-staging-x86_64/PKGBUILD   |   39 ---
 community-staging-x86_64/ntl-sage.patch |   52 ---
 6 files changed, 182 insertions(+), 182 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-06-05 20:49:37 UTC (rev 134871)
+++ community-staging-i686/PKGBUILD 2015-06-05 20:50:39 UTC (rev 134872)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Brad Conte brad AT bradconte.com
-
-pkgname=ntl
-pkgver=9.2.0
-pkgrel=1
-pkgdesc=A Library for doing Number Theory
-arch=(i686 x86_64)
-url=http://www.shoup.net/ntl/;
-license=(GPL)
-depends=(gf2x gmp)
-makedepends=()
-options=(!libtool)
-source=(http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz; 
'ntl-sage.patch')
-md5sums=('bf419b48ea567858e47e0aac3c849fbe'
- '4cb5f97080281109bf358959ab993691')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p0 -i $srcdir/ntl-sage.patch
-}
-
-build() {
-  cd $pkgname-$pkgver/src
-  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver/src
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver/src
-  make PREFIX=$pkgdir/usr install
-}
-

Copied: ntl/repos/community-staging-i686/PKGBUILD (from rev 134871, 
ntl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-05 20:50:39 UTC (rev 134872)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Brad Conte brad AT bradconte.com
+
+pkgname=ntl
+pkgver=9.2.0
+pkgrel=2
+pkgdesc=A Library for doing Number Theory
+arch=(i686 x86_64)
+url=http://www.shoup.net/ntl/;
+license=(GPL)
+depends=(gf2x gmp)
+makedepends=()
+options=(!libtool)
+source=(http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz; 
'ntl-sage.patch')
+md5sums=('bf419b48ea567858e47e0aac3c849fbe'
+ '4cb5f97080281109bf358959ab993691')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i $srcdir/ntl-sage.patch
+}
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on 
NTL_DISABLE_LONGLONG=on
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/src
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver/src
+  make PREFIX=$pkgdir/usr install
+}
+

Deleted: community-staging-i686/ntl-sage.patch
===
--- community-staging-i686/ntl-sage.patch   2015-06-05 20:49:37 UTC (rev 
134871)
+++ community-staging-i686/ntl-sage.patch   2015-06-05 20:50:39 UTC (rev 
134872)
@@ -1,52 +0,0 @@
 ./include/NTL/tools.h.orig 2015-01-09 06:58:19.0 -0700
-+++ ./include/NTL/tools.h  2015-01-12 20:00:00.0 -0700
-@@ -406,7 +406,12 @@ void swap(WrappedPtrT,Deleter x, Wrap
- 
- // Error Handling
- 
--
-+/*
-+  This function is not present in vanilla NTL.
-+  See tools.c for documentation.
-+ */
-+void SetErrorCallbackFunction(void (*func)(const char *s, void *context),
-+void *context);
- 
- class ErrorObject : public NTL_SNS runtime_error {
- public:
 ./src/tools.c.orig 2015-01-09 06:58:19.0 -0700
-+++ ./src/tools.c  2015-01-12 20:00:00.0 -0700
-@@ -17,9 +17,33 @@ NTL_START_IMPL
- 
- NTL_THREAD_LOCAL void (*ErrorCallback)() = 0;
- 
-+/*
-+   The following code differs from vanilla NTL.
-+
-+   We add a SetErrorCallbackFunction(). This sets a global callback function
-+_function_,  which gets called with parameter _context_ and an error
-+message string whenever Error() gets called.
-+
-+   Note that if the custom error handler *returns*, then NTL will dump the
-+   error message back to stderr and abort() as it habitually does.
-+
-+   -- David Harvey (2008-04-12)
-+*/

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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 22:49:37
  Author: arojas
Revision: 134871

Add DISABLE_LONGLONG for now to fix Sage build

Modified:
  ntl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 20:23:38 UTC (rev 134870)
+++ PKGBUILD2015-06-05 20:49:37 UTC (rev 134871)
@@ -4,7 +4,7 @@
 
 pkgname=ntl
 pkgver=9.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A Library for doing Number Theory
 arch=(i686 x86_64)
 url=http://www.shoup.net/ntl/;
@@ -23,7 +23,7 @@
 
 build() {
   cd $pkgname-$pkgver/src
-  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on 
NTL_DISABLE_LONGLONG=on
   make
 }
 


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

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 23:49:13
  Author: arojas
Revision: 134875

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

Added:
  sagemath/repos/community-staging-i686/
  sagemath/repos/community-staging-i686/PKGBUILD
(from rev 134874, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-i686/anal.h
(from rev 134874, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-i686/c_lib.patch
(from rev 134874, sagemath/trunk/c_lib.patch)
  sagemath/repos/community-staging-i686/clean.patch
(from rev 134874, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-i686/env.patch
(from rev 134874, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-i686/fes02.patch
(from rev 134874, sagemath/trunk/fes02.patch)
  sagemath/repos/community-staging-i686/ntl9.patch
(from rev 134874, sagemath/trunk/ntl9.patch)
  sagemath/repos/community-staging-i686/package.patch
(from rev 134874, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-i686/paths.patch
(from rev 134874, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-i686/pexpect-del.patch
(from rev 134874, sagemath/trunk/pexpect-del.patch)
  sagemath/repos/community-staging-i686/pexpect-env.patch
(from rev 134874, sagemath/trunk/pexpect-env.patch)
  sagemath/repos/community-staging-i686/skip-check.patch
(from rev 134874, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-staging-x86_64/
  sagemath/repos/community-staging-x86_64/PKGBUILD
(from rev 134874, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-x86_64/anal.h
(from rev 134874, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-x86_64/c_lib.patch
(from rev 134874, sagemath/trunk/c_lib.patch)
  sagemath/repos/community-staging-x86_64/clean.patch
(from rev 134874, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-x86_64/env.patch
(from rev 134874, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-x86_64/fes02.patch
(from rev 134874, sagemath/trunk/fes02.patch)
  sagemath/repos/community-staging-x86_64/ntl9.patch
(from rev 134874, sagemath/trunk/ntl9.patch)
  sagemath/repos/community-staging-x86_64/package.patch
(from rev 134874, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-x86_64/paths.patch
(from rev 134874, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-x86_64/pexpect-del.patch
(from rev 134874, sagemath/trunk/pexpect-del.patch)
  sagemath/repos/community-staging-x86_64/pexpect-env.patch
(from rev 134874, sagemath/trunk/pexpect-env.patch)
  sagemath/repos/community-staging-x86_64/skip-check.patch
(from rev 134874, sagemath/trunk/skip-check.patch)

+
 community-staging-i686/PKGBUILD|  168 +
 community-staging-i686/anal.h  |   65 +
 community-staging-i686/c_lib.patch |   17 ++
 community-staging-i686/clean.patch |   23 +++
 community-staging-i686/env.patch   |  132 
 community-staging-i686/fes02.patch |   45 ++
 community-staging-i686/ntl9.patch  |  178 +++
 community-staging-i686/package.patch   |   11 +
 community-staging-i686/paths.patch |   33 +
 community-staging-i686/pexpect-del.patch   |   15 ++
 community-staging-i686/pexpect-env.patch   |   32 
 community-staging-i686/skip-check.patch|   21 +++
 community-staging-x86_64/PKGBUILD  |  168 +
 community-staging-x86_64/anal.h|   65 +
 community-staging-x86_64/c_lib.patch   |   17 ++
 community-staging-x86_64/clean.patch   |   23 +++
 community-staging-x86_64/env.patch |  132 
 community-staging-x86_64/fes02.patch   |   45 ++
 community-staging-x86_64/ntl9.patch|  178 +++
 community-staging-x86_64/package.patch |   11 +
 community-staging-x86_64/paths.patch   |   33 +
 community-staging-x86_64/pexpect-del.patch |   15 ++
 community-staging-x86_64/pexpect-env.patch |   32 
 community-staging-x86_64/skip-check.patch  |   21 +++
 24 files changed, 1480 insertions(+)

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


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

2015-06-05 Thread Gaetan Bisson
Date: Friday, June 5, 2015 @ 22:23:38
  Author: bisson
Revision: 134870

website moved

Modified:
  fdm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 17:33:35 UTC (rev 134869)
+++ PKGBUILD2015-06-05 20:23:38 UTC (rev 134870)
@@ -8,7 +8,7 @@
 pkgver=1.8
 pkgrel=1
 pkgdesc='Program to fetch and deliver mail'
-url='http://fdm.sourceforge.net/'
+url='https://github.com/nicm/fdm'
 license=('BSD')
 arch=('i686' 'x86_64')
 depends=('openssl' 'tdb' 'zlib')


[arch-commits] Commit in sagemath/trunk (ntl9.patch)

2015-06-05 Thread Antonio Rojas
Date: Friday, June 5, 2015 @ 23:51:55
  Author: arojas
Revision: 134876

Revert unintended changes

Modified:
  sagemath/trunk/ntl9.patch

+
 ntl9.patch |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: ntl9.patch
===
--- ntl9.patch  2015-06-05 21:49:13 UTC (rev 134875)
+++ ntl9.patch  2015-06-05 21:51:55 UTC (rev 134876)
@@ -97,7 +97,7 @@
  #ifndef BERNMM_BERN_MODP_H
  #define BERNMM_BERN_MODP_H
  
-+#include NTL/sp_arith.h
++#include NTL/ZZ.h
  
  namespace bernmm {
  
@@ -147,7 +147,7 @@
  #include vector
  #include cassert
  #include climits
-+#include NTL/sp_arith.h
++#include NTL/ZZ.h
  
  
  #if ULONG_MAX == 4294967295U


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

2015-06-05 Thread Jan Steffens
Date: Saturday, June 6, 2015 @ 00:22:58
  Author: heftig
Revision: 134885

3.16.3

Modified:
  gnome-software/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 21:55:51 UTC (rev 134884)
+++ PKGBUILD2015-06-05 22:22:58 UTC (rev 134885)
@@ -4,7 +4,7 @@
 # Contributor: Yosef Or Boczko yosef...@gnome.org
 
 pkgname=gnome-software
-pkgver=3.16.2
+pkgver=3.16.3
 pkgrel=1
 pkgdesc=GNOME Software Tools
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 makedepends=(intltool)
 install=gnome-software.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('1454566ef38f35cd23d4bce7818dffcdf76bd0138f71ec4d8b394109089dcaa0')
+sha256sums=('96322d7c2265bd031f27a703ccfec3a4f16f573f79e1d4039b49dbed4c9fed05')
 
 build() {
   cd $pkgname-$pkgver


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

2015-06-05 Thread Jan Steffens
Date: Saturday, June 6, 2015 @ 00:24:47
  Author: heftig
Revision: 134886

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

Added:
  gnome-software/repos/community-i686/PKGBUILD
(from rev 134885, gnome-software/trunk/PKGBUILD)
  gnome-software/repos/community-i686/gnome-software.install
(from rev 134885, gnome-software/trunk/gnome-software.install)
  gnome-software/repos/community-x86_64/PKGBUILD
(from rev 134885, gnome-software/trunk/PKGBUILD)
  gnome-software/repos/community-x86_64/gnome-software.install
(from rev 134885, gnome-software/trunk/gnome-software.install)
Deleted:
  gnome-software/repos/community-i686/PKGBUILD
  gnome-software/repos/community-i686/gnome-software.install
  gnome-software/repos/community-x86_64/PKGBUILD
  gnome-software/repos/community-x86_64/gnome-software.install

-+
 /PKGBUILD   |   66 ++
 /gnome-software.install |   26 +++
 community-i686/PKGBUILD |   33 ---
 community-i686/gnome-software.install   |   13 -
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/gnome-software.install |   13 -
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-05 22:22:58 UTC (rev 134885)
+++ community-i686/PKGBUILD 2015-06-05 22:24:47 UTC (rev 134886)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: Yosef Or Boczko yosef...@gnome.org
-
-pkgname=gnome-software
-pkgver=3.16.2
-pkgrel=1
-pkgdesc=GNOME Software Tools
-arch=(i686 x86_64)
-license=('GPL2')
-url=https://wiki.gnome.org/Apps/Software/;
-depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
packagekit
- desktop-file-utils archlinux-appstream-data)
-makedepends=(intltool)
-install=gnome-software.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('1454566ef38f35cd23d4bce7818dffcdf76bd0138f71ec4d8b394109089dcaa0')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-
-  # Remove fedora-only plugins
-  rm ${pkgdir}/usr/lib/gs-plugins-*/libgs_plugin_fedora_tagger*
-}

Copied: gnome-software/repos/community-i686/PKGBUILD (from rev 134885, 
gnome-software/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-05 22:24:47 UTC (rev 134886)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Yosef Or Boczko yosef...@gnome.org
+
+pkgname=gnome-software
+pkgver=3.16.3
+pkgrel=1
+pkgdesc=GNOME Software Tools
+arch=(i686 x86_64)
+license=('GPL2')
+url=https://wiki.gnome.org/Apps/Software/;
+depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
packagekit
+ desktop-file-utils archlinux-appstream-data)
+makedepends=(intltool)
+install=gnome-software.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('96322d7c2265bd031f27a703ccfec3a4f16f573f79e1d4039b49dbed4c9fed05')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+
+  # Remove fedora-only plugins
+  rm ${pkgdir}/usr/lib/gs-plugins-*/libgs_plugin_fedora_tagger*
+}

Deleted: community-i686/gnome-software.install
===
--- community-i686/gnome-software.install   2015-06-05 22:22:58 UTC (rev 
134885)
+++ community-i686/gnome-software.install   2015-06-05 22:24:47 UTC (rev 
134886)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: gnome-software/repos/community-i686/gnome-software.install (from rev 
134885, gnome-software/trunk/gnome-software.install)
===
--- community-i686/gnome-software.install   (rev 0)
+++ community-i686/gnome-software.install   2015-06-05 22:24:47 UTC (rev 
134886)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas

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

2015-06-05 Thread Johannes Löthberg
Date: Saturday, June 6, 2015 @ 00:45:44
  Author: demize
Revision: 134888

archrelease: copy trunk to community-any

Added:
  hunspell-pl/repos/community-any/PKGBUILD
(from rev 134887, hunspell-pl/trunk/PKGBUILD)
Deleted:
  hunspell-pl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-05 22:45:34 UTC (rev 134887)
+++ PKGBUILD2015-06-05 22:45:44 UTC (rev 134888)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski barthal...@gmail.com
-# Contributor: Maciej Sitarz maci...@freesco.pl
-
-pkgname=hunspell-pl
-pkgver=20120911
-pkgrel=2
-pkgdesc='Polish dictionary for Hunspell'
-arch=('any')
-url='http://www.sjp.pl/slownik/ort/'
-license=('GPL')
-optdepends=('hunspell: the spell checking libraries and apps')
-source=(https://sources.archlinux.org/other/community/$pkgname/sjp-myspell-pl-$pkgver.zip)
-md5sums=('cc1b05d329be79847b9e30a8f056753d')
-
-prepare() {
-  bsdtar -xf pl_PL.zip
-}
-
-package() {
-  install -dm755 $pkgdir/usr/share/hunspell
-  install -m644 pl_PL.aff $pkgdir/usr/share/hunspell
-  install -m644 pl_PL.dic $pkgdir/usr/share/hunspell
-
-# the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-  for file in $pkgdir/usr/share/hunspell/*; do
-ln -sv /usr/share/hunspell/$(basename $file) .
-  done
-  popd
-
-  # docs
-  install -dm755 $pkgdir/usr/share/doc/$pkgname
-  install -m644 README_pl_PL.txt $pkgdir/usr/share/doc/$pkgname
-}

Copied: hunspell-pl/repos/community-any/PKGBUILD (from rev 134887, 
hunspell-pl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-05 22:45:44 UTC (rev 134888)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski barthal...@gmail.com
+# Contributor: Maciej Sitarz maci...@freesco.pl
+
+pkgname=hunspell-pl
+pkgver=20150428
+pkgrel=2
+pkgdesc='Polish dictionary for Hunspell'
+arch=('any')
+url='http://www.sjp.pl/slownik/ort/'
+license=('GPL')
+optdepends=('hunspell: the spell checking libraries and apps')
+source=(http://sjp.pl/slownik/ort/sjp-myspell-pl-$pkgver.zip)
+md5sums=('d6de61e0eac87ed9a12e8bbe123800bd')
+
+prepare() {
+  bsdtar -xf pl_PL.zip
+}
+
+package() {
+  install -dm755 $pkgdir/usr/share/hunspell
+  install -m644 pl_PL.aff $pkgdir/usr/share/hunspell
+  install -m644 pl_PL.dic $pkgdir/usr/share/hunspell
+
+# the symlinks
+  install -dm755 $pkgdir/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+  for file in $pkgdir/usr/share/hunspell/*; do
+ln -sv /usr/share/hunspell/$(basename $file) .
+  done
+  popd
+
+  # docs
+  install -dm755 $pkgdir/usr/share/doc/$pkgname
+  install -m644 README_pl_PL.txt $pkgdir/usr/share/doc/$pkgname
+}


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

2015-06-05 Thread Johannes Löthberg
Date: Saturday, June 6, 2015 @ 00:45:34
  Author: demize
Revision: 134887

upgpkg: hunspell-pl 20150428-2

Modified:
  hunspell-pl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 22:24:47 UTC (rev 134886)
+++ PKGBUILD2015-06-05 22:45:34 UTC (rev 134887)
@@ -3,7 +3,7 @@
 # Contributor: Maciej Sitarz maci...@freesco.pl
 
 pkgname=hunspell-pl
-pkgver=20120911
+pkgver=20150428
 pkgrel=2
 pkgdesc='Polish dictionary for Hunspell'
 arch=('any')
@@ -10,8 +10,8 @@
 url='http://www.sjp.pl/slownik/ort/'
 license=('GPL')
 optdepends=('hunspell: the spell checking libraries and apps')
-source=(https://sources.archlinux.org/other/community/$pkgname/sjp-myspell-pl-$pkgver.zip)
-md5sums=('cc1b05d329be79847b9e30a8f056753d')
+source=(http://sjp.pl/slownik/ort/sjp-myspell-pl-$pkgver.zip)
+md5sums=('d6de61e0eac87ed9a12e8bbe123800bd')
 
 prepare() {
   bsdtar -xf pl_PL.zip
@@ -23,7 +23,7 @@
   install -m644 pl_PL.dic $pkgdir/usr/share/hunspell
 
 # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  install -dm755 $pkgdir/usr/share/myspell/dicts
   pushd $pkgdir/usr/share/myspell/dicts
   for file in $pkgdir/usr/share/hunspell/*; do
 ln -sv /usr/share/hunspell/$(basename $file) .


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

2015-06-05 Thread Daniel Micay
Date: Saturday, June 6, 2015 @ 05:36:04
  Author: thestinger
Revision: 134889

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

Added:
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 134888, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 134888, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 134888, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 134888, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 134888, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 134888, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-x86_64/PKGBUILD
(from rev 134888, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
(from rev 134888, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-x86_64/config
(from rev 134888, linux-grsec/trunk/config)
  linux-grsec/repos/community-x86_64/config.x86_64
(from rev 134888, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-x86_64/linux-grsec.install
(from rev 134888, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-x86_64/linux.preset
(from rev 134888, linux-grsec/trunk/linux.preset)
Deleted:
  linux-grsec/repos/community-i686/PKGBUILD
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
  linux-grsec/repos/community-i686/config
  linux-grsec/repos/community-i686/config.x86_64
  linux-grsec/repos/community-i686/linux-grsec.install
  linux-grsec/repos/community-i686/linux.preset
  linux-grsec/repos/community-x86_64/PKGBUILD
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
  linux-grsec/repos/community-x86_64/config
  linux-grsec/repos/community-x86_64/config.x86_64
  linux-grsec/repos/community-x86_64/linux-grsec.install
  linux-grsec/repos/community-x86_64/linux.preset

+
 /PKGBUILD  |  650 
 /change-default-console-loglevel.patch |   22 
 /config|15246 +++
 /config.x86_64 |14662 ++
 /linux-grsec.install   |   74 
 /linux.preset  |   28 
 community-i686/PKGBUILD|  325 
 community-i686/change-default-console-loglevel.patch   |   11 
 community-i686/config  | 7623 ---
 community-i686/config.x86_64   | 7331 ---
 community-i686/linux-grsec.install |   37 
 community-i686/linux.preset|   14 
 community-x86_64/PKGBUILD  |  325 
 community-x86_64/change-default-console-loglevel.patch |   11 
 community-x86_64/config| 7623 ---
 community-x86_64/config.x86_64 | 7331 ---
 community-x86_64/linux-grsec.install   |   37 
 community-x86_64/linux.preset  |   14 
 18 files changed, 30682 insertions(+), 30682 deletions(-)

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