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

2017-09-11 Thread Dan Printzell
Date: Monday, September 11, 2017 @ 22:27:56
  Author: wild
Revision: 257065

archrelease: copy trunk to community-staging-x86_64

Added:
  ldc/repos/community-staging-x86_64/
  ldc/repos/community-staging-x86_64/PKGBUILD
(from rev 257064, ldc/trunk/PKGBUILD)
  ldc/repos/community-staging-x86_64/ldc2.conf
(from rev 257064, ldc/trunk/ldc2.conf)

---+
 PKGBUILD  |  104 
 ldc2.conf |   22 
 2 files changed, 126 insertions(+)

Copied: ldc/repos/community-staging-x86_64/PKGBUILD (from rev 257064, 
ldc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-11 22:27:56 UTC (rev 257065)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer:
+# Contributor: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+
+pkgname=('ldc' 'liblphobos')
+groups=('dlang' 'dlang-ldc')
+pkgver=1.4.0
+_pkgcommit=5a79ff6abc882dd076d1a862911de288cc4ae3cd
+epoch=1
+pkgrel=1
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
+arch=('x86_64')
+url="https://github.com/ldc-developers/ldc;
+license=('BSD')
+makedepends=('git' 'cmake' 'llvm' 'dmd')
+
+source=(
+"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit;
+   "git+https://github.com/ldc-developers/druntime.git;
+   "git+https://github.com/ldc-developers/phobos.git;
+   "git+https://github.com/ldc-developers/dmd-testsuite.git;
+"ldc2.conf"
+)
+
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'266c1888da29715b277c2f56090b2e6dbb7531499f3434fe60938d6ad01705ae')
+
+prepare() {
+   cd "$srcdir/ldc"
+
+   git submodule init
+   git config submodule.druntime.url "$srcdir/druntime"
+   git config submodule.phobos.url "$srcdir/phobos"
+   git config submodule.tests/d2/dmd-testsuite.url "$srcdir/dmd-testsuite"
+   git submodule update
+}
+
+build() {
+mkdir -p "$srcdir/tmp_install_dir"
+cd "$srcdir/ldc"
+
+mkdir -p build && cd build
+
+# workaround for wrong ld flag format generated by cmake:
+export LDFLAGS="-L-O1 -L--sort-common -L--as-needed -L-z -Lrelro"
+
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
+-DBUILD_SHARED_LIBS=ON \
+   -DLDC_WITH_LLD=OFF \
+..
+make
+make install DESTDIR="$srcdir/tmp_install_dir"
+}
+
+package_ldc() {
+depends=('liblphobos' 'llvm-libs')
+backup=('etc/ldc2.conf')
+provides=('d-compiler')
+
+cd "$srcdir/tmp_install_dir"
+
+# binaries
+install -D -m755 ./usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
+ln -s /usr/bin/ldmd "$pkgdir/usr/bin/ldmd2"
+install -D -m755 ./usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
+ln -s /usr/bin/ldc "$pkgdir/usr/bin/ldc2"
+
+# supplementaries
+install -D -m644 "$srcdir/ldc/bash_completion.d/ldc2" 
"$pkgdir/usr/share/bash-completion/completions/ldc"
+
+# licenses
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+# default configuration files
+install -D -m644 "$srcdir/ldc2.conf" "$pkgdir/etc/ldc2.conf"
+}
+
+package_liblphobos() {
+provides=('d-runtime' 'd-stdlib')
+depends=('curl')
+
+# licenses
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+cd "$srcdir/tmp_install_dir"
+
+# libraries
+install -D -m644 ./usr/lib/libphobos2-ldc.so 
"$pkgdir/usr/lib/liblphobos2.so"
+install -D -m644 ./usr/lib/libdruntime-ldc.so 
"$pkgdir/usr/lib/libldruntime.so"
+install -D -m644 ./usr/lib/libphobos2-ldc-debug.so 
"$pkgdir/usr/lib/liblphobos2-debug.so"
+install -D -m644 ./usr/lib/libdruntime-ldc-debug.so 
"$pkgdir/usr/lib/libldruntime-debug.so"
+
+# imports
+mkdir -p "$pkgdir/usr/include/dlang"
+cp -r "./usr/include/dlang/ldc" "$pkgdir/usr/include/dlang/ldc"
+}

Copied: ldc/repos/community-staging-x86_64/ldc2.conf (from rev 257064, 
ldc/trunk/ldc2.conf)
===
--- community-staging-x86_64/ldc2.conf  (rev 0)
+++ community-staging-x86_64/ldc2.conf  2017-09-11 22:27:56 UTC (rev 257065)
@@ -0,0 +1,22 @@
+// See comments in driver/config.d in ldc source tree for grammar description 
of
+// this config file.
+
+// The default group is required
+default:
+{
+// default switches injected before all explicit command-line switches
+switches = [
+"-I/usr/include/dlang/ldc/ldc",
+"-I/usr/include/dlang/ldc",
+"-L-L/usr/lib",
+"-L-L/usr/lib32",
+"-L--no-warn-search-mismatch",
+"-defaultlib=lphobos2,ldruntime",
+"-debuglib=lphobos2-debug,ldruntime-debug"
+  

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

2017-09-11 Thread Dan Printzell
Date: Monday, September 11, 2017 @ 22:27:34
  Author: wild
Revision: 257064

Removed staging-x86_64, used wrong command

Deleted:
  ldc/repos/staging-x86_64/


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

2017-09-11 Thread Dan Printzell
Date: Monday, September 11, 2017 @ 22:23:18
  Author: wild
Revision: 257062

upgpkg: ldc 1:1.4.0-1

Updated to version 1.4.0, needs llvm 5.0

Modified:
  ldc/trunk/PKGBUILD
  ldc/trunk/ldc2.conf

---+
 PKGBUILD  |   78 ++--
 ldc2.conf |   14 ++
 2 files changed, 59 insertions(+), 33 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 22:21:37 UTC (rev 257061)
+++ PKGBUILD2017-09-11 22:23:18 UTC (rev 257062)
@@ -2,25 +2,46 @@
 # Maintainer:
 # Contributor: Mihails Strasuns 
 # Contributor: Sven-Hendrik Haase 
+
 pkgname=('ldc' 'liblphobos')
 groups=('dlang' 'dlang-ldc')
-pkgver=1.3.0
+pkgver=1.4.0
+_pkgcommit=5a79ff6abc882dd076d1a862911de288cc4ae3cd
 epoch=1
 pkgrel=1
 pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
-arch=('i686' 'x86_64')
+arch=('x86_64')
 url="https://github.com/ldc-developers/ldc;
 license=('BSD')
-makedepends=('cmake' 'llvm' 'dmd')
-source=("https://github.com/ldc-developers/ldc/releases/download/v$pkgver/ldc-$pkgver-src.tar.gz;
-"ldc2.conf"
-   )
-sha256sums=('efe31a639bcb44e1f5b752da21713376d9410a01279fecc8aab8572065a3050b'
-'2ef3b1090e25187305f18ce6fbbbc45527dcbb33570afbe30e177790813948db')
+makedepends=('git' 'cmake' 'llvm' 'dmd')
 
+source=(
+"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit;
+   "git+https://github.com/ldc-developers/druntime.git;
+   "git+https://github.com/ldc-developers/phobos.git;
+   "git+https://github.com/ldc-developers/dmd-testsuite.git;
+"ldc2.conf"
+)
+
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'266c1888da29715b277c2f56090b2e6dbb7531499f3434fe60938d6ad01705ae')
+
+prepare() {
+   cd "$srcdir/ldc"
+
+   git submodule init
+   git config submodule.druntime.url "$srcdir/druntime"
+   git config submodule.phobos.url "$srcdir/phobos"
+   git config submodule.tests/d2/dmd-testsuite.url "$srcdir/dmd-testsuite"
+   git submodule update
+}
+
 build() {
-mkdir -p $srcdir/tmp_install_dir
-cd ldc-$pkgver-src
+mkdir -p "$srcdir/tmp_install_dir"
+cd "$srcdir/ldc"
 
 mkdir -p build && cd build
 
@@ -33,9 +54,10 @@
 -DCMAKE_SKIP_RPATH=ON \
 -DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
 -DBUILD_SHARED_LIBS=ON \
+   -DLDC_WITH_LLD=OFF \
 ..
-make 
-make install DESTDIR=$srcdir/tmp_install_dir
+make
+make install DESTDIR="$srcdir/tmp_install_dir"
 }
 
 package_ldc() {
@@ -43,22 +65,22 @@
 backup=('etc/ldc2.conf')
 provides=('d-compiler')
 
-cd tmp_install_dir
+cd "$srcdir/tmp_install_dir"
 
 # binaries
-install -D -m755 ./usr/bin/ldmd2 $pkgdir/usr/bin/ldmd
-ln -s /usr/bin/ldmd $pkgdir/usr/bin/ldmd2
-install -D -m755 ./usr/bin/ldc2 $pkgdir/usr/bin/ldc
-ln -s /usr/bin/ldc $pkgdir/usr/bin/ldc2
+install -D -m755 ./usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
+ln -s /usr/bin/ldmd "$pkgdir/usr/bin/ldmd2"
+install -D -m755 ./usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
+ln -s /usr/bin/ldc "$pkgdir/usr/bin/ldc2"
 
 # supplementaries
-install -D -m644 $srcdir/ldc-$pkgver-src/bash_completion.d/ldc2 
$pkgdir/usr/share/bash-completion/completions/ldc
+install -D -m644 "$srcdir/ldc/bash_completion.d/ldc2" 
"$pkgdir/usr/share/bash-completion/completions/ldc"
 
 # licenses
-install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 
 # default configuration files
-install -D -m644 $srcdir/ldc2.conf $pkgdir/etc/ldc2.conf
+install -D -m644 "$srcdir/ldc2.conf" "$pkgdir/etc/ldc2.conf"
 }
 
 package_liblphobos() {
@@ -66,17 +88,17 @@
 depends=('curl')
 
 # licenses
-install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 
-cd tmp_install_dir
+cd "$srcdir/tmp_install_dir"
 
 # libraries
-install -D -m644 ./usr/lib/libphobos2-ldc.so $pkgdir/usr/lib/liblphobos2.so
-install -D -m644 ./usr/lib/libdruntime-ldc.so 
$pkgdir/usr/lib/libldruntime.so
-install -D -m644 ./usr/lib/libphobos2-ldc-debug.so 
$pkgdir/usr/lib/liblphobos2-debug.so
-install -D -m644 ./usr/lib/libdruntime-ldc-debug.so 
$pkgdir/usr/lib/libldruntime-debug.so
+install -D -m644 ./usr/lib/libphobos2-ldc.so 
"$pkgdir/usr/lib/liblphobos2.so"
+install -D -m644 ./usr/lib/libdruntime-ldc.so 
"$pkgdir/usr/lib/libldruntime.so"
+install -D -m644 ./usr/lib/libphobos2-ldc-debug.so 
"$pkgdir/usr/lib/liblphobos2-debug.so"
+install -D -m644 ./usr/lib/libdruntime-ldc-debug.so 

[arch-commits] Commit in filesystem/trunk (6 files)

2017-09-11 Thread Sébastien Luttringer
Date: Monday, September 11, 2017 @ 23:56:58
  Author: seblu
Revision: 305366

Various fixes

- use uid/gid in PKGBUILD to avoid dependency to itself
- add nobody as a static user (FS#55589)
- add headers to passwd,shadow,group,gshadow
- sort deps and backup alphabetically

Modified:
  filesystem/trunk/PKGBUILD
  filesystem/trunk/group
  filesystem/trunk/gshadow
  filesystem/trunk/os-release
  filesystem/trunk/passwd
  filesystem/trunk/shadow

+
 PKGBUILD   |   55 ---
 group  |3 +++
 gshadow|3 +++
 os-release |1 -
 passwd |3 +++
 shadow |3 +++
 6 files changed, 40 insertions(+), 28 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 23:49:07 UTC (rev 305365)
+++ PKGBUILD2017-09-11 23:56:58 UTC (rev 305366)
@@ -4,7 +4,7 @@
 
 pkgname=filesystem
 pkgver=2017.09
-pkgrel=3
+pkgrel=3.1
 pkgdesc='Base Arch Linux files'
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -11,35 +11,35 @@
 url='https://www.archlinux.org'
 groups=('base')
 depends=('iana-etc')
-backup=('etc/fstab' 'etc/crypttab' 'etc/group' 'etc/hosts' 'etc/ld.so.conf'
-'etc/passwd' 'etc/shadow' 'etc/gshadow' 'etc/resolv.conf' 'etc/motd'
-'etc/nsswitch.conf' 'etc/shells' 'etc/host.conf' 'etc/securetty'
-'etc/profile' 'etc/issue')
-source=('group' 'issue' 'nsswitch.conf' 'securetty' 'host.conf' 'ld.so.conf'
-'passwd' 'shadow' 'fstab' 'crypttab' 'hosts' 'motd' 'os-release'
-'resolv.conf' 'shells' 'gshadow' 'profile' 'locale.sh' 'sysusers'
-'tmpfiles' 'env-generator')
-md5sums=('7fed1e1fb855e41a6d64d41f8521d69a'
+backup=('etc/crypttab' 'etc/fstab' 'etc/group' 'etc/gshadow' 'etc/host.conf'
+'etc/hosts' 'etc/issue' 'etc/ld.so.conf' 'etc/motd' 'etc/nsswitch.conf'
+'etc/passwd' 'etc/profile' 'etc/resolv.conf' 'etc/securetty'
+'etc/shadow' 'etc/shells')
+source=('crypttab' 'env-generator' 'fstab' 'group' 'gshadow' 'host.conf' 
'hosts'
+'issue' 'ld.so.conf' 'locale.sh' 'motd' 'nsswitch.conf' 'os-release'
+'passwd' 'profile' 'resolv.conf' 'securetty' 'shadow' 'shells'
+'sysusers' 'tmpfiles')
+md5sums=('5fa6674df7645d7f5895f2d12b4ef4e9'
+ '2b0344e9639f35f3c0d5637a23556089'
+ 'e33f6dfdd61978fcb3ddf1431286e05a'
+ '210aa72839c2d05c81c29c4b7f9d4c1e'
+ 'de6c96bb49ebdf1b4c073faf8c73dd72'
+ '7d119a9cce152aa182fb3392ddeecea7'
+ 'a1315ea3e2b64d197b6efaf9c14ff778'
  '7813c481156f6b280a3ba91fc6236368'
- '44851ecc062ba34a4c024b6f3246c48f'
- 'f04bcb2803afc4dcb95670fe87343b4d'
- '7d119a9cce152aa182fb3392ddeecea7'
  '5deb9f890a4d08a245e9752ede77271e'
- '5182ac38a0de85da8ade93ef71975ca4'
- 'f64466dd77c7bec37a8b47681468211a'
- 'e33f6dfdd61978fcb3ddf1431286e05a'
- '5fa6674df7645d7f5895f2d12b4ef4e9'
- 'a1315ea3e2b64d197b6efaf9c14ff778'
+ '71ed98c52e11ada1f936ac8cb14eecd9'
  'd41d8cd98f00b204e9800998ecf8427e'
- '7756fd3b8876eee095bd6e94ddac13ca'
+ '44851ecc062ba34a4c024b6f3246c48f'
+ '0a0fbb8e64faabb40023bd180d7190a1'
+ '760c1bfce90117f866406ead94360458'
+ '13feaea89d404729ad2f7cf0bcc41d85'
  '0ee015fad07732676d9488ae498eed41'
+ 'f04bcb2803afc4dcb95670fe87343b4d'
+ 'db631dab91552a497d4f6c7b0f73ee0e'
  'a78cd8d7f8240a8448edee82f503c34e'
- '1c1e3b08acfa286f4b417c49de3e4366'
- '13feaea89d404729ad2f7cf0bcc41d85'
- '71ed98c52e11ada1f936ac8cb14eecd9'
  '6ec767b80e0df5c4450078363a31bca0'
- '0267a3a463f35eec8a31f40a720dfd86'
- '2b0344e9639f35f3c0d5637a23556089')
+ '0267a3a463f35eec8a31f40a720dfd86')
 
 package() {
   cd "$pkgdir"
@@ -53,7 +53,8 @@
   install -d -m0750 root
   install -d -m1777 tmp
   # vsftpd won't run with write perms on /srv/ftp
-  install -d -m555 -g ftp srv/ftp
+  # ftp (uid 14/gid 11)
+  install -d -m555 -g 11 srv/ftp
 
   # setup /etc and /usr/share/factory/etc
   install -d etc/{ld.so.conf.d,skel,profile.d} usr/share/factory/etc
@@ -76,8 +77,8 @@
   done
   install -d -m1777 var/{tmp,spool/mail}
 
-  # allow setgid games to write scores
-  install -d -m775 -g games var/games
+  # allow setgid games (gid 50) to write scores
+  install -d -m775 -g 50 var/games
   ln -s spool/mail var/mail
   ln -s ../run var/run
   ln -s ../run/lock var/lock

Modified: group
===
--- group   2017-09-11 23:49:07 UTC (rev 305365)
+++ group   2017-09-11 23:56:58 UTC (rev 305366)
@@ -1 +1,4 @@
+# User group file.
+# See group(5) for details.
 root:x:0:root
+nobody:x:99:

Modified: gshadow
===
--- gshadow 2017-09-11 23:49:07 UTC (rev 305365)
+++ gshadow 2017-09-11 23:56:58 UTC (rev 305366)
@@ -1 +1,4 @@
+# 

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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:49:10
  Author: felixonmars
Revision: 257071

upgpkg: python-hypothesis 3.25.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 04:02:52 UTC (rev 257070)
+++ PKGBUILD2017-09-12 04:49:10 UTC (rev 257071)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.24.2
+pkgver=3.25.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -16,7 +16,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('c087bca764c2657a293b58b41465a38a4410a331cc5958fdb12bb6ad69cd4517a6548aab025b9afd76a27dd56758ca48caf3c57ef3bc117deddae5fb60777379')
+sha512sums=('b5e08757fa355b24cce49bd0813adebb0d37cab97d97b5b9e3da7c113f46d23ae5bf10ed957f7874eab0002c2af27f494406695ad881e89f3d2092c089993a14')
 
 prepare() {
   cp -a hypothesis-python-$pkgver{,-py2}


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

2017-09-11 Thread Dan Printzell
Date: Monday, September 11, 2017 @ 22:23:27
  Author: wild
Revision: 257063

archrelease: copy trunk to staging-x86_64

Added:
  ldc/repos/staging-x86_64/
  ldc/repos/staging-x86_64/PKGBUILD
(from rev 257062, ldc/trunk/PKGBUILD)
  ldc/repos/staging-x86_64/ldc2.conf
(from rev 257062, ldc/trunk/ldc2.conf)

---+
 PKGBUILD  |  104 
 ldc2.conf |   22 
 2 files changed, 126 insertions(+)

Copied: ldc/repos/staging-x86_64/PKGBUILD (from rev 257062, ldc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-09-11 22:23:27 UTC (rev 257063)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer:
+# Contributor: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+
+pkgname=('ldc' 'liblphobos')
+groups=('dlang' 'dlang-ldc')
+pkgver=1.4.0
+_pkgcommit=5a79ff6abc882dd076d1a862911de288cc4ae3cd
+epoch=1
+pkgrel=1
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
+arch=('x86_64')
+url="https://github.com/ldc-developers/ldc;
+license=('BSD')
+makedepends=('git' 'cmake' 'llvm' 'dmd')
+
+source=(
+"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit;
+   "git+https://github.com/ldc-developers/druntime.git;
+   "git+https://github.com/ldc-developers/phobos.git;
+   "git+https://github.com/ldc-developers/dmd-testsuite.git;
+"ldc2.conf"
+)
+
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'266c1888da29715b277c2f56090b2e6dbb7531499f3434fe60938d6ad01705ae')
+
+prepare() {
+   cd "$srcdir/ldc"
+
+   git submodule init
+   git config submodule.druntime.url "$srcdir/druntime"
+   git config submodule.phobos.url "$srcdir/phobos"
+   git config submodule.tests/d2/dmd-testsuite.url "$srcdir/dmd-testsuite"
+   git submodule update
+}
+
+build() {
+mkdir -p "$srcdir/tmp_install_dir"
+cd "$srcdir/ldc"
+
+mkdir -p build && cd build
+
+# workaround for wrong ld flag format generated by cmake:
+export LDFLAGS="-L-O1 -L--sort-common -L--as-needed -L-z -Lrelro"
+
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
+-DBUILD_SHARED_LIBS=ON \
+   -DLDC_WITH_LLD=OFF \
+..
+make
+make install DESTDIR="$srcdir/tmp_install_dir"
+}
+
+package_ldc() {
+depends=('liblphobos' 'llvm-libs')
+backup=('etc/ldc2.conf')
+provides=('d-compiler')
+
+cd "$srcdir/tmp_install_dir"
+
+# binaries
+install -D -m755 ./usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
+ln -s /usr/bin/ldmd "$pkgdir/usr/bin/ldmd2"
+install -D -m755 ./usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
+ln -s /usr/bin/ldc "$pkgdir/usr/bin/ldc2"
+
+# supplementaries
+install -D -m644 "$srcdir/ldc/bash_completion.d/ldc2" 
"$pkgdir/usr/share/bash-completion/completions/ldc"
+
+# licenses
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+# default configuration files
+install -D -m644 "$srcdir/ldc2.conf" "$pkgdir/etc/ldc2.conf"
+}
+
+package_liblphobos() {
+provides=('d-runtime' 'd-stdlib')
+depends=('curl')
+
+# licenses
+install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+cd "$srcdir/tmp_install_dir"
+
+# libraries
+install -D -m644 ./usr/lib/libphobos2-ldc.so 
"$pkgdir/usr/lib/liblphobos2.so"
+install -D -m644 ./usr/lib/libdruntime-ldc.so 
"$pkgdir/usr/lib/libldruntime.so"
+install -D -m644 ./usr/lib/libphobos2-ldc-debug.so 
"$pkgdir/usr/lib/liblphobos2-debug.so"
+install -D -m644 ./usr/lib/libdruntime-ldc-debug.so 
"$pkgdir/usr/lib/libldruntime-debug.so"
+
+# imports
+mkdir -p "$pkgdir/usr/include/dlang"
+cp -r "./usr/include/dlang/ldc" "$pkgdir/usr/include/dlang/ldc"
+}

Copied: ldc/repos/staging-x86_64/ldc2.conf (from rev 257062, 
ldc/trunk/ldc2.conf)
===
--- staging-x86_64/ldc2.conf(rev 0)
+++ staging-x86_64/ldc2.conf2017-09-11 22:23:27 UTC (rev 257063)
@@ -0,0 +1,22 @@
+// See comments in driver/config.d in ldc source tree for grammar description 
of
+// this config file.
+
+// The default group is required
+default:
+{
+// default switches injected before all explicit command-line switches
+switches = [
+"-I/usr/include/dlang/ldc/ldc",
+"-I/usr/include/dlang/ldc",
+"-L-L/usr/lib",
+"-L-L/usr/lib32",
+"-L--no-warn-search-mismatch",
+"-defaultlib=lphobos2,ldruntime",
+"-debuglib=lphobos2-debug,ldruntime-debug"
+];
+// default switches appended after all explicit command-line switches
+

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

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 22:44:50
  Author: arojas
Revision: 257068

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 22:44:17 UTC (rev 257067)
+++ community-i686/PKGBUILD 2017-09-11 22:44:50 UTC (rev 257068)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Alexander F Rødseth 
-# Contributor: Kevin Piche 
-# Contributor: K. Piche 
-
-pkgname=avfs
-pkgver=1.0.4
-pkgrel=1
-pkgdesc='Virtual filesystem that allows browsing compressed files'
-arch=('x86_64' 'i686')
-license=('GPL' 'LGPL')
-url='https://avf.sourceforge.net/'
-depends=('fuse' 'xz' 'perl')
-options=('!emptydirs')
-source=("https://downloads.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('6b652120d9ed8730a9dcfd161d0e68481d176e854d94bed67754cb7b03e0b100')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --enable-library --enable-fuse --disable-static
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: avfs/repos/community-i686/PKGBUILD (from rev 257067, 
avfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 22:44:50 UTC (rev 257068)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+# Contributor: Alexander F Rødseth 
+# Contributor: Kevin Piche 
+# Contributor: K. Piche 
+
+pkgname=avfs
+pkgver=1.0.5
+pkgrel=1
+pkgdesc='Virtual filesystem that allows browsing compressed files'
+arch=('x86_64' 'i686')
+license=('GPL' 'LGPL')
+url='https://avf.sourceforge.net/'
+depends=('fuse2' 'xz' 'perl')
+options=('!emptydirs')
+source=("https://downloads.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('e5ce6b1f4193c37148b1b8a021f4f3d05e88f725cf11b16b95a58e8fdae50176')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --enable-library --enable-fuse --disable-static
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 22:44:17 UTC (rev 257067)
+++ community-x86_64/PKGBUILD   2017-09-11 22:44:50 UTC (rev 257068)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Alexander F Rødseth 
-# Contributor: Kevin Piche 
-# Contributor: K. Piche 
-
-pkgname=avfs
-pkgver=1.0.4
-pkgrel=1
-pkgdesc='Virtual filesystem that allows browsing compressed files'
-arch=('x86_64' 'i686')
-license=('GPL' 'LGPL')
-url='https://avf.sourceforge.net/'
-depends=('fuse' 'xz' 'perl')
-options=('!emptydirs')
-source=("https://downloads.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('6b652120d9ed8730a9dcfd161d0e68481d176e854d94bed67754cb7b03e0b100')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --enable-library --enable-fuse --disable-static
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: avfs/repos/community-x86_64/PKGBUILD (from rev 257067, 
avfs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-11 22:44:50 UTC (rev 257068)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+# Contributor: Alexander F Rødseth 
+# Contributor: Kevin Piche 
+# Contributor: K. Piche 
+
+pkgname=avfs
+pkgver=1.0.5
+pkgrel=1
+pkgdesc='Virtual filesystem that allows browsing compressed files'
+arch=('x86_64' 'i686')
+license=('GPL' 'LGPL')
+url='https://avf.sourceforge.net/'
+depends=('fuse2' 'xz' 'perl')
+options=('!emptydirs')
+source=("https://downloads.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('e5ce6b1f4193c37148b1b8a021f4f3d05e88f725cf11b16b95a58e8fdae50176')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --enable-library --enable-fuse --disable-static
+  make
+}
+
+package() {
+  

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

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 22:44:17
  Author: arojas
Revision: 257067

Update to 1.0.5

Modified:
  avfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 22:30:25 UTC (rev 257066)
+++ PKGBUILD2017-09-11 22:44:17 UTC (rev 257067)
@@ -5,7 +5,7 @@
 # Contributor: K. Piche 
 
 pkgname=avfs
-pkgver=1.0.4
+pkgver=1.0.5
 pkgrel=1
 pkgdesc='Virtual filesystem that allows browsing compressed files'
 arch=('x86_64' 'i686')
@@ -14,7 +14,7 @@
 depends=('fuse2' 'xz' 'perl')
 options=('!emptydirs')
 
source=("https://downloads.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('6b652120d9ed8730a9dcfd161d0e68481d176e854d94bed67754cb7b03e0b100')
+sha256sums=('e5ce6b1f4193c37148b1b8a021f4f3d05e88f725cf11b16b95a58e8fdae50176')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in syslinux/trunk (syslinux-install_update)

2017-09-11 Thread Anatol Pomozov
Date: Monday, September 11, 2017 @ 23:49:07
  Author: anatolik
Revision: 305365

Fix formatting

Modified:
  syslinux/trunk/syslinux-install_update

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

Modified: syslinux-install_update
===
--- syslinux-install_update 2017-09-11 21:03:32 UTC (rev 305364)
+++ syslinux-install_update 2017-09-11 23:49:07 UTC (rev 305365)
@@ -207,7 +207,7 @@
 if [[ $bootfs = ext4 && -n "$(tune2fs -l $bootpart | grep 64bit)" ]]; then
 echo "64 bit option on EXT filesystem is not supported by Syslinux, 
see http://www.syslinux.org/wiki/index.php?title=Filesystem#ext;;
 exit 1
-fi
+fi
 }
 
 # We store the partition table type either gpt or mbr in var ptb


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:52:33
  Author: felixonmars
Revision: 257077

archrelease: copy trunk to community-any

Added:
  perl-sub-info/repos/community-any/PKGBUILD
(from rev 257076, perl-sub-info/trunk/PKGBUILD)
Deleted:
  perl-sub-info/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 04:52:03 UTC (rev 257076)
+++ PKGBUILD2017-09-12 04:52:33 UTC (rev 257077)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=perl-sub-info
-_cpanname=Sub-Info
-pkgver=0.002
-pkgrel=3
-pkgdesc="Tool for inspecting subroutines."
-arch=('any')
-license=('PerlArtistic' 'GPL')
-# Specify version bounds to pick up perl-test-simple in [community], since 
perl includes an old one.
-depends=('perl-importer' 'perl-test-simple>=1.30')
-options=('!emptydirs')
-url="http://search.cpan.org/dist/$_cpanname;
-source=("http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/$_cpanname-$pkgver.tar.gz;)
-md5sums=('335345b534fc0539c894050f7814cbda')
-
-build() {
-  cd "$srcdir/$_cpanname-$pkgver"
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd "$srcdir/$_cpanname-$pkgver"
-  make test
-}
-
-package() {
-  cd "$srcdir/$_cpanname-$pkgver"
-  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
-}

Copied: perl-sub-info/repos/community-any/PKGBUILD (from rev 257076, 
perl-sub-info/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-12 04:52:33 UTC (rev 257077)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=perl-sub-info
+_cpanname=Sub-Info
+pkgver=0.002
+pkgrel=4
+pkgdesc="Tool for inspecting subroutines."
+arch=('any')
+license=('PerlArtistic' 'GPL')
+depends=('perl-importer')
+options=('!emptydirs')
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/$_cpanname-$pkgver.tar.gz;)
+md5sums=('335345b534fc0539c894050f7814cbda')
+
+build() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  make test
+}
+
+package() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+}


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:52:03
  Author: felixonmars
Revision: 257076

upgpkg: perl-sub-info 0.002-4

remove old hack for perl-test-simple

Modified:
  perl-sub-info/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 04:50:39 UTC (rev 257075)
+++ PKGBUILD2017-09-12 04:52:03 UTC (rev 257076)
@@ -4,12 +4,11 @@
 pkgname=perl-sub-info
 _cpanname=Sub-Info
 pkgver=0.002
-pkgrel=3
+pkgrel=4
 pkgdesc="Tool for inspecting subroutines."
 arch=('any')
 license=('PerlArtistic' 'GPL')
-# Specify version bounds to pick up perl-test-simple in [community], since 
perl includes an old one.
-depends=('perl-importer' 'perl-test-simple>=1.30')
+depends=('perl-importer')
 options=('!emptydirs')
 url="http://search.cpan.org/dist/$_cpanname;
 
source=("http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/$_cpanname-$pkgver.tar.gz;)


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:52:41
  Author: felixonmars
Revision: 257078

upgpkg: perl-term-table 0.008-4

remove old hack for perl-test-simple

Modified:
  perl-term-table/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 04:52:33 UTC (rev 257077)
+++ PKGBUILD2017-09-12 04:52:41 UTC (rev 257078)
@@ -3,13 +3,12 @@
 
 pkgname=perl-term-table
 pkgver=0.008
-pkgrel=3
+pkgrel=4
 pkgdesc="Format a header and rows into a table"
 arch=('any')
 license=('PerlArtistic')
 url="https://metacpan.org/release/Term-Table;
-# Specify version bounds to pick up perl-test-simple in [community], since 
perl includes an old one.
-depends=('perl-importer' 'perl-test-simple>=1.30')
+depends=('perl-importer')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Term-Table-$pkgver.tar.gz;)
 
sha512sums=('d741313933c8925ca3451056d05172c440ab4a46f5a4cbaeae3c6d4b82d29314e69643e8c3e60dced42768f2102277461b2d2dc4bf945d982df9265f49339d06')


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:02:52
  Author: felixonmars
Revision: 257070

archrelease: copy trunk to community-any

Added:
  you-get/repos/community-any/PKGBUILD
(from rev 257069, you-get/trunk/PKGBUILD)
Deleted:
  you-get/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 04:02:23 UTC (rev 257069)
+++ PKGBUILD2017-09-12 04:02:52 UTC (rev 257070)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=you-get
-pkgver=0.4.803
-pkgrel=1
-pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
-url="http://www.soimort.org/you-get/;
-arch=('any')
-license=('MIT')
-depends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/soimort/you-get/archive/v$pkgver.tar.gz;)
-sha512sums=('84c1f5f92c651dfc6e0dfe38d4b08fd79a7b81cedffe92e4374f72f46b9249a4178faaf0a9fe66a31c182974a922e33bed72e56368757cc25259ecf49d6241f2')
-
-build() {
-  cd you-get-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd you-get-$pkgver
-  LC_CTYPE=en_US.UTF-8 python setup.py test
-}
-
-package() {
-  cd you-get-$pkgver
-  python setup.py install --root="$pkgdir"
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-  install -Dm644 contrib/completion/_you-get 
"$pkgdir"/usr/share/zsh/site-functions/_you-get
-  install -Dm644 contrib/completion/you-get-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/you-get
-  install -Dm644 contrib/completion/you-get.fish 
"$pkgdir"/usr/share/fish/completions/you-get.fish
-}

Copied: you-get/repos/community-any/PKGBUILD (from rev 257069, 
you-get/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-12 04:02:52 UTC (rev 257070)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=you-get
+pkgver=0.4.900
+pkgrel=1
+pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
+url="http://www.soimort.org/you-get/;
+arch=('any')
+license=('MIT')
+depends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/soimort/you-get/archive/v$pkgver.tar.gz;)
+sha512sums=('9d3ce3164ac8390be782894c900a3f5339162baf78763b8254e24cf3f01f2b9fa894d1df69d9bc1522595df68d73e153bbe008de3689ca5167908e23f705a800')
+
+build() {
+  cd you-get-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd you-get-$pkgver
+  LC_CTYPE=en_US.UTF-8 python setup.py test
+}
+
+package() {
+  cd you-get-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+  install -Dm644 contrib/completion/_you-get 
"$pkgdir"/usr/share/zsh/site-functions/_you-get
+  install -Dm644 contrib/completion/you-get-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/you-get
+  install -Dm644 contrib/completion/you-get.fish 
"$pkgdir"/usr/share/fish/completions/you-get.fish
+}


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:02:23
  Author: felixonmars
Revision: 257069

upgpkg: you-get 0.4.900-1

Modified:
  you-get/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 22:44:50 UTC (rev 257068)
+++ PKGBUILD2017-09-12 04:02:23 UTC (rev 257069)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=you-get
-pkgver=0.4.803
+pkgver=0.4.900
 pkgrel=1
 pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
 url="http://www.soimort.org/you-get/;
@@ -10,7 +10,7 @@
 license=('MIT')
 depends=('python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/soimort/you-get/archive/v$pkgver.tar.gz;)
-sha512sums=('84c1f5f92c651dfc6e0dfe38d4b08fd79a7b81cedffe92e4374f72f46b9249a4178faaf0a9fe66a31c182974a922e33bed72e56368757cc25259ecf49d6241f2')
+sha512sums=('9d3ce3164ac8390be782894c900a3f5339162baf78763b8254e24cf3f01f2b9fa894d1df69d9bc1522595df68d73e153bbe008de3689ca5167908e23f705a800')
 
 build() {
   cd you-get-$pkgver


[arch-commits] Commit in (4 files)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 22:14:04
  Author: anthraxx
Revision: 257058

addpkg: ruby-async-dns 1.0.0-1

Added:
  ruby-async-dns/
  ruby-async-dns/repos/
  ruby-async-dns/trunk/
  ruby-async-dns/trunk/PKGBUILD

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

Added: ruby-async-dns/trunk/PKGBUILD
===
--- ruby-async-dns/trunk/PKGBUILD   (rev 0)
+++ ruby-async-dns/trunk/PKGBUILD   2017-09-11 22:14:04 UTC (rev 257058)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+
+_gemname=async-dns
+pkgname=ruby-${_gemname}
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Asynchronous DNS resolver and server'
+url='https://github.com/socketry/async-dns'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-async-io')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async-dns/archive/v${pkgver}.tar.gz)
+sha256sums=('dc870326707d9fb3672c1778514e02c6d236a9cf29d23d14ac906c63667a0db6')
+sha512sums=('5bc4b8049ee41e0465df515a9db31b76fc0abf025e0fecd51a251acc955fb6564d2f965df918c5fc00a00a91eb7db5fa6f787dc25caf9c290b025e748468ef53')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
+  sed 's|~>|>=|g' -i ${_gemname}.gemspec # don't give a fuck about rubys bla 
bla
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i 
"${pkgdir}/${_gemdir}" -n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  rm "${pkgdir}"/${_gemdir}/cache/${_gemname}-${pkgver}.gem
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:49:54
  Author: felixonmars
Revision: 257073

upgpkg: perl-test2-suite 0.75-1

Modified:
  perl-test2-suite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 04:49:38 UTC (rev 257072)
+++ PKGBUILD2017-09-12 04:49:54 UTC (rev 257073)
@@ -2,17 +2,16 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-test2-suite
-pkgver=0.72
-pkgrel=2
+pkgver=0.75
+pkgrel=1
 pkgdesc="Distribution with a rich set of tools built upon the Test2 framework."
 arch=('any')
 license=('PerlArtistic')
 url="https://metacpan.org/release/Test2-Suite;
-# Specify version bounds to pick up perl-test-simple in [community], since 
perl includes an old one.
-depends=('perl-importer' 'perl-sub-info' 'perl-term-table' 
'perl-test-simple>=1.30')
+depends=('perl-importer' 'perl-sub-info' 'perl-term-table')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-$pkgver.tar.gz;)
-sha512sums=('34f6f781c29fcb79146ee2cd979addfe34edb21db99f38d417a1efacaac8400731fc4d986c8b904383d251d95967c2d922dba28429a862b40cb33c346e55b353')
+sha512sums=('894676025a5b3197ea36c36d19a8aa5227ccdc11fae0c13f1ecfb2a79c8f8eaf0beaf3298fd55bc7daf8ad676501d51477bd65c9a9dcdda260d9019662f1e940')
 
 build() {
   cd Test2-Suite-$pkgver


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:49:38
  Author: felixonmars
Revision: 257072

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  148 ++---
 1 file changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 04:49:10 UTC (rev 257071)
+++ PKGBUILD2017-09-12 04:49:38 UTC (rev 257072)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.24.2
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('c087bca764c2657a293b58b41465a38a4410a331cc5958fdb12bb6ad69cd4517a6548aab025b9afd76a27dd56758ca48caf3c57ef3bc117deddae5fb60777379')
-
-prepare() {
-  cp -a hypothesis-python-$pkgver{,-py2}
-
-  rm -r hypothesis-python-$pkgver/tests/py2
-  rm -r hypothesis-python-$pkgver-py2/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  mv tests/django ../
-  python2 setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 257071, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-12 04:49:38 UTC (rev 257072)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.25.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'python-mock' 'python2-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
+sha512sums=('b5e08757fa355b24cce49bd0813adebb0d37cab97d97b5b9e3da7c113f46d23ae5bf10ed957f7874eab0002c2af27f494406695ad881e89f3d2092c089993a14')
+
+prepare() {
+  cp -a hypothesis-python-$pkgver{,-py2}
+
+  rm -r hypothesis-python-$pkgver/tests/py2
+  rm -r hypothesis-python-$pkgver-py2/tests/py3
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/hypothesis-python-$pkgver
+  python 

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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:50:39
  Author: felixonmars
Revision: 257075

archrelease: copy trunk to community-any

Added:
  perl-test2-suite/repos/community-any/PKGBUILD
(from rev 257074, perl-test2-suite/trunk/PKGBUILD)
Deleted:
  perl-test2-suite/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 04:49:57 UTC (rev 257074)
+++ PKGBUILD2017-09-12 04:50:39 UTC (rev 257075)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=perl-test2-suite
-pkgver=0.72
-pkgrel=2
-pkgdesc="Distribution with a rich set of tools built upon the Test2 framework."
-arch=('any')
-license=('PerlArtistic')
-url="https://metacpan.org/release/Test2-Suite;
-# Specify version bounds to pick up perl-test-simple in [community], since 
perl includes an old one.
-depends=('perl-importer' 'perl-sub-info' 'perl-term-table' 
'perl-test-simple>=1.30')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-$pkgver.tar.gz;)
-sha512sums=('34f6f781c29fcb79146ee2cd979addfe34edb21db99f38d417a1efacaac8400731fc4d986c8b904383d251d95967c2d922dba28429a862b40cb33c346e55b353')
-
-build() {
-  cd Test2-Suite-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Test2-Suite-$pkgver
-  make test
-}
-
-package() {
-  cd Test2-Suite-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-test2-suite/repos/community-any/PKGBUILD (from rev 257074, 
perl-test2-suite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-12 04:50:39 UTC (rev 257075)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=perl-test2-suite
+pkgver=0.75
+pkgrel=1
+pkgdesc="Distribution with a rich set of tools built upon the Test2 framework."
+arch=('any')
+license=('PerlArtistic')
+url="https://metacpan.org/release/Test2-Suite;
+depends=('perl-importer' 'perl-sub-info' 'perl-term-table')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-$pkgver.tar.gz;)
+sha512sums=('894676025a5b3197ea36c36d19a8aa5227ccdc11fae0c13f1ecfb2a79c8f8eaf0beaf3298fd55bc7daf8ad676501d51477bd65c9a9dcdda260d9019662f1e940')
+
+build() {
+  cd Test2-Suite-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Test2-Suite-$pkgver
+  make test
+}
+
+package() {
+  cd Test2-Suite-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:53:15
  Author: felixonmars
Revision: 257080

remove old hack for perl-test-simple

Modified:
  perl-data-optlist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 04:53:09 UTC (rev 257079)
+++ PKGBUILD2017-09-12 04:53:15 UTC (rev 257080)
@@ -11,7 +11,6 @@
 options=('!emptydirs')
 depends=('perl-params-util' 'perl-scalar-list-utils' 'perl-sub-install')
 makedepends=('perl-extutils-makemaker')
-checkdepends=('perl-test-simple')
 url="https://metacpan.org/release/Data-OptList;
 
source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Data-OptList-$pkgver.tar.gz)
 md5sums=('f9236c9ea5607134ad8a2b3dc901c4c5')


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:53:40
  Author: felixonmars
Revision: 257081

remove old hack for perl-test-simple

Modified:
  perl-dist-checkconflicts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 04:53:15 UTC (rev 257080)
+++ PKGBUILD2017-09-12 04:53:40 UTC (rev 257081)
@@ -11,7 +11,7 @@
 options=('!emptydirs')
 depends=('perl-list-moreutils' 'perl-exporter')
 makedepends=('perl-extutils-makemaker')
-checkdepends=('perl-test-fatal' 'perl-test-simple' 'perl-module-runtime')
+checkdepends=('perl-test-fatal' 'perl-module-runtime')
 url="https://metacpan.org/release/Dist-CheckConflicts;
 
source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Dist-CheckConflicts-$pkgver.tar.gz)
 md5sums=('c8725a92b9169708b0f63036812070f2')


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:53:09
  Author: felixonmars
Revision: 257079

archrelease: copy trunk to community-any

Added:
  perl-term-table/repos/community-any/PKGBUILD
(from rev 257078, perl-term-table/trunk/PKGBUILD)
Deleted:
  perl-term-table/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 04:52:41 UTC (rev 257078)
+++ PKGBUILD2017-09-12 04:53:09 UTC (rev 257079)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=perl-term-table
-pkgver=0.008
-pkgrel=3
-pkgdesc="Format a header and rows into a table"
-arch=('any')
-license=('PerlArtistic')
-url="https://metacpan.org/release/Term-Table;
-# Specify version bounds to pick up perl-test-simple in [community], since 
perl includes an old one.
-depends=('perl-importer' 'perl-test-simple>=1.30')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Term-Table-$pkgver.tar.gz;)
-sha512sums=('d741313933c8925ca3451056d05172c440ab4a46f5a4cbaeae3c6d4b82d29314e69643e8c3e60dced42768f2102277461b2d2dc4bf945d982df9265f49339d06')
-
-build() {
-  cd Term-Table-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Term-Table-$pkgver
-  make test
-}
-
-package() {
-  cd Term-Table-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-term-table/repos/community-any/PKGBUILD (from rev 257078, 
perl-term-table/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-12 04:53:09 UTC (rev 257079)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=perl-term-table
+pkgver=0.008
+pkgrel=4
+pkgdesc="Format a header and rows into a table"
+arch=('any')
+license=('PerlArtistic')
+url="https://metacpan.org/release/Term-Table;
+depends=('perl-importer')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Term-Table-$pkgver.tar.gz;)
+sha512sums=('d741313933c8925ca3451056d05172c440ab4a46f5a4cbaeae3c6d4b82d29314e69643e8c3e60dced42768f2102277461b2d2dc4bf945d982df9265f49339d06')
+
+build() {
+  cd Term-Table-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Term-Table-$pkgver
+  make test
+}
+
+package() {
+  cd Term-Table-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-package-stash-xs/trunk (PKGBUILD)

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 04:54:04
  Author: felixonmars
Revision: 257082

remove old hack for perl-test-simple

Modified:
  perl-package-stash-xs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 04:53:40 UTC (rev 257081)
+++ PKGBUILD2017-09-12 04:54:04 UTC (rev 257082)
@@ -11,7 +11,7 @@
 license=('PerlArtistic' 'GPL')
 depends=('perl')
 makedepends=('perl-extutils-makemaker')
-checkdepends=('perl-test-fatal' 'perl-test-simple' 'perl-test-requires')
+checkdepends=('perl-test-fatal' 'perl-test-requires')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Package-Stash-XS-$pkgver.tar.gz)
 md5sums=('9664356ec3be02626cbd3081ec246b70')


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

2017-09-11 Thread Jonathan Steel
Date: Monday, September 11, 2017 @ 07:41:04
  Author: jsteel
Revision: 256879

upgpkg: python-s3transfer 0.1.11-1

Modified:
  python-s3transfer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 07:38:56 UTC (rev 256878)
+++ PKGBUILD2017-09-11 07:41:04 UTC (rev 256879)
@@ -2,8 +2,8 @@
 # Contributor: Chris Severance aur.severach AatT spamgourmet.com
 
 pkgname=python-s3transfer
-pkgver=0.1.10
-pkgrel=2
+pkgver=0.1.11
+pkgrel=1
 pkgdesc='Amazon S3 Transfer Manager for Python'
 arch=('any')
 url="https://github.com/boto/s3transfer;
@@ -11,7 +11,7 @@
 depends=('python-botocore')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('25d8d4d134d9b820b58e139803330e8a')
+md5sums=('d1029c6a10da77adc2d4918eedea7065')
 
 build() {
   cd s3transfer-$pkgver


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

2017-09-11 Thread Florian Pritz
Date: Monday, September 11, 2017 @ 08:18:09
  Author: bluewind
Revision: 256887

upgpkg: libfilezilla 0.10.1-1

upstream update

Modified:
  libfilezilla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 08:12:27 UTC (rev 256886)
+++ PKGBUILD2017-09-11 08:18:09 UTC (rev 256887)
@@ -2,7 +2,7 @@
 # Contributor: Martchus 
 
 pkgname=libfilezilla
-pkgver=0.10.0
+pkgver=0.10.1
 pkgrel=1
 pkgdesc="Small and modern C++ library, offering some basic functionality to 
build high-performing, platform-independent programs"
 arch=('i686' 'x86_64')
@@ -30,4 +30,4 @@
   cd "${srcdir}/$pkgname-$pkgver"
   make DESTDIR="${pkgdir}" install
 }
-md5sums=('f3ad558f121702319adf06daf2f64776')
+md5sums=('0ab3b56ca55e608d601ada68dd86d673')


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

2017-09-11 Thread Florian Pritz
Date: Monday, September 11, 2017 @ 08:18:17
  Author: bluewind
Revision: 256888

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

Added:
  libfilezilla/repos/community-i686/PKGBUILD
(from rev 256887, libfilezilla/trunk/PKGBUILD)
  libfilezilla/repos/community-x86_64/PKGBUILD
(from rev 256887, libfilezilla/trunk/PKGBUILD)
Deleted:
  libfilezilla/repos/community-i686/PKGBUILD
  libfilezilla/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 2017-09-11 08:18:09 UTC (rev 256887)
+++ community-i686/PKGBUILD 2017-09-11 08:18:17 UTC (rev 256888)
@@ -1,33 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: Martchus 
-
-pkgname=libfilezilla
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="Small and modern C++ library, offering some basic functionality to 
build high-performing, platform-independent programs"
-arch=('i686' 'x86_64')
-url="https://lib.filezilla-project.org/;
-license=('GPL')
-depends=('gcc-libs')
-checkdepends=('cppunit')
-source=("http://download.filezilla-project.org/libfilezilla/libfilezilla-$pkgver.tar.bz2;)
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  ./configure \
---prefix=/usr \
---disable-static
-  make
-}
-
-check() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  # LANG needed to fix string_test::test_conversion2
-  LANG=en_US.UTF-8 make check
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  make DESTDIR="${pkgdir}" install
-}
-md5sums=('f3ad558f121702319adf06daf2f64776')

Copied: libfilezilla/repos/community-i686/PKGBUILD (from rev 256887, 
libfilezilla/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 08:18:17 UTC (rev 256888)
@@ -0,0 +1,33 @@
+# Maintainer: Florian Pritz 
+# Contributor: Martchus 
+
+pkgname=libfilezilla
+pkgver=0.10.1
+pkgrel=1
+pkgdesc="Small and modern C++ library, offering some basic functionality to 
build high-performing, platform-independent programs"
+arch=('i686' 'x86_64')
+url="https://lib.filezilla-project.org/;
+license=('GPL')
+depends=('gcc-libs')
+checkdepends=('cppunit')
+source=("http://download.filezilla-project.org/libfilezilla/libfilezilla-$pkgver.tar.bz2;)
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  ./configure \
+--prefix=/usr \
+--disable-static
+  make
+}
+
+check() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  # LANG needed to fix string_test::test_conversion2
+  LANG=en_US.UTF-8 make check
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+}
+md5sums=('0ab3b56ca55e608d601ada68dd86d673')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 08:18:09 UTC (rev 256887)
+++ community-x86_64/PKGBUILD   2017-09-11 08:18:17 UTC (rev 256888)
@@ -1,33 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: Martchus 
-
-pkgname=libfilezilla
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="Small and modern C++ library, offering some basic functionality to 
build high-performing, platform-independent programs"
-arch=('i686' 'x86_64')
-url="https://lib.filezilla-project.org/;
-license=('GPL')
-depends=('gcc-libs')
-checkdepends=('cppunit')
-source=("http://download.filezilla-project.org/libfilezilla/libfilezilla-$pkgver.tar.bz2;)
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  ./configure \
---prefix=/usr \
---disable-static
-  make
-}
-
-check() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  # LANG needed to fix string_test::test_conversion2
-  LANG=en_US.UTF-8 make check
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  make DESTDIR="${pkgdir}" install
-}
-md5sums=('f3ad558f121702319adf06daf2f64776')

Copied: libfilezilla/repos/community-x86_64/PKGBUILD (from rev 256887, 
libfilezilla/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-11 08:18:17 UTC (rev 256888)
@@ -0,0 +1,33 @@
+# Maintainer: Florian Pritz 
+# Contributor: Martchus 
+
+pkgname=libfilezilla
+pkgver=0.10.1
+pkgrel=1
+pkgdesc="Small and modern C++ library, offering some basic functionality to 
build high-performing, platform-independent programs"
+arch=('i686' 'x86_64')
+url="https://lib.filezilla-project.org/;
+license=('GPL')
+depends=('gcc-libs')
+checkdepends=('cppunit')

[arch-commits] Commit in wine-staging/repos/community-i686 (4 files)

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 09:14:37
  Author: felixonmars
Revision: 256893

archrelease: copy trunk to community-i686

Added:
  wine-staging/repos/community-i686/30-win32-aliases.conf
(from rev 256892, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/community-i686/PKGBUILD
(from rev 256892, wine-staging/trunk/PKGBUILD)
Deleted:
  wine-staging/repos/community-i686/30-win32-aliases.conf
  wine-staging/repos/community-i686/PKGBUILD

--+
 PKGBUILD |  375 ++---
 1 file changed, 188 insertions(+), 187 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/community-i686/30-win32-aliases.conf (from rev 
256892, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 09:12:31 UTC (rev 256892)
+++ PKGBUILD2017-09-11 09:14:37 UTC (rev 256893)
@@ -1,187 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=2.16
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
-30-win32-aliases.conf)
-sha512sums=('f375c74b3c5fd2a0d46de0e4f371c1fe58059da776851e4f9854d288b0d9a97bd9c5432fdd713d0bfdb77b7d6a43a8d7c1c8ae5adc29d637ab30b87788de336f'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  # Allow ccache to work
-  mv 

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

2017-09-11 Thread Evgeniy Alekseev
Date: Monday, September 11, 2017 @ 08:12:27
  Author: arcanis
Revision: 256886

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

Added:
  libasl/repos/community-staging-i686/
  libasl/repos/community-staging-i686/PKGBUILD
(from rev 256885, libasl/trunk/PKGBUILD)
  libasl/repos/community-staging-i686/suppress-deprecated-warnings.patch
(from rev 256885, libasl/trunk/suppress-deprecated-warnings.patch)
  libasl/repos/community-staging-x86_64/
  libasl/repos/community-staging-x86_64/PKGBUILD
(from rev 256885, libasl/trunk/PKGBUILD)
  libasl/repos/community-staging-x86_64/suppress-deprecated-warnings.patch
(from rev 256885, libasl/trunk/suppress-deprecated-warnings.patch)

-+
 community-staging-i686/PKGBUILD |   47 ++
 community-staging-i686/suppress-deprecated-warnings.patch   |   12 ++
 community-staging-x86_64/PKGBUILD   |   47 ++
 community-staging-x86_64/suppress-deprecated-warnings.patch |   12 ++
 4 files changed, 118 insertions(+)

Copied: libasl/repos/community-staging-i686/PKGBUILD (from rev 256885, 
libasl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 08:12:27 UTC (rev 256886)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Andrejs Mivreņiks 
+
+pkgname=libasl
+pkgver=0.1.7
+pkgrel=5
+pkgdesc='Free and open source hardware accelerated multiphysics simulation 
platform (Advanced Simulation Library)'
+arch=('i686' 'x86_64')
+url='http://asl.org.il/'
+license=('AGPL3')
+depends=('boost-libs' 'opencl-icd-loader' 'libmatio' 'vtk' 'libjpeg' 'libpng' 
'libtiff'
+ 'freetype2' 'libgl')
+makedepends=('cmake' 'opencl-headers' 'boost' 'mesa-libgl')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AvtechScientific/ASL/archive/v${pkgver}.tar.gz;
+'suppress-deprecated-warnings.patch')
+sha512sums=('337754adefa8619bbc2ab0e06fc811dd1cc550252b165241a265f87224aa84c5ee69fb3bf60324093df5b21aa87712e2210d4bcdd8593f0740183574528a30bd'
+
'6aecf660790ea2ba0d9de48aef4c4a1058b07d04cbc74ad6a9f127a51f02b39fdab5f8faa269d0bbbc003ea5cea6910f54a7d980fbf5e641629869e20528f70a')
+
+prepare() {
+  rm -rf "build"
+  mkdir "build"
+
+  # patch to suppress 'deprecated' warning messages
+  # caused by 'opencl-headers' since update to 2.0
+  cd "ASL-${pkgver}"
+  patch -p1 -i "${srcdir}/suppress-deprecated-warnings.patch"
+}
+
+build() {
+  cd "build"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_SHARED_LIBS=ON \
+-DWITH_EXAMPLES=ON \
+-DWITH_MATIO=ON \
+-DWITH_API_DOC=OFF \
+-DWITH_TESTS=OFF \
+"../ASL-${pkgver}"
+  make
+}
+
+package() {
+  cd "build"
+  make DESTDIR="${pkgdir}" install
+}
+

Copied: libasl/repos/community-staging-i686/suppress-deprecated-warnings.patch 
(from rev 256885, libasl/trunk/suppress-deprecated-warnings.patch)
===
--- community-staging-i686/suppress-deprecated-warnings.patch   
(rev 0)
+++ community-staging-i686/suppress-deprecated-warnings.patch   2017-09-11 
08:12:27 UTC (rev 256886)
@@ -0,0 +1,12 @@
+diff -ruN ASL-0.1.7-orig/CMakeLists.txt ASL-0.1.7/CMakeLists.txt
+--- ASL-0.1.7-orig/CMakeLists.txt  2017-08-07 17:47:37.522927767 +0300
 ASL-0.1.7/CMakeLists.txt   2017-08-07 17:47:58.382410158 +0300
+@@ -37,7 +37,7 @@
+   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive -std=c++11")
+ else()
+   set(CMAKE_CXX_STANDARD 11)
+-  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive")
++  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive -Wno-deprecated 
-Wno-deprecated-declarations -Wno-ignored-attributes")
+ endif()
+ 
+ # Enable supplied cmake includes and modules

Copied: libasl/repos/community-staging-x86_64/PKGBUILD (from rev 256885, 
libasl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-11 08:12:27 UTC (rev 256886)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Andrejs Mivreņiks 
+
+pkgname=libasl
+pkgver=0.1.7
+pkgrel=5
+pkgdesc='Free and open source hardware accelerated multiphysics simulation 
platform (Advanced Simulation Library)'
+arch=('i686' 'x86_64')
+url='http://asl.org.il/'
+license=('AGPL3')
+depends=('boost-libs' 'opencl-icd-loader' 'libmatio' 'vtk' 'libjpeg' 'libpng' 
'libtiff'
+ 'freetype2' 'libgl')
+makedepends=('cmake' 'opencl-headers' 'boost' 'mesa-libgl')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AvtechScientific/ASL/archive/v${pkgver}.tar.gz;
+'suppress-deprecated-warnings.patch')

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 10:29:35
  Author: anthraxx
Revision: 256896

archrelease: copy trunk to community-any

Added:
  lynis/repos/community-any/PKGBUILD
(from rev 256895, lynis/trunk/PKGBUILD)
Deleted:
  lynis/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 10:28:34 UTC (rev 256895)
+++ PKGBUILD2017-09-11 10:29:35 UTC (rev 256896)
@@ -1,54 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sébastien Luttringer 
-
-pkgname=lynis
-pkgver=2.5.5
-pkgrel=1
-pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
-url='https://cisofy.com/lynis/'
-arch=('any')
-license=('GPL3')
-backup=('etc/lynis/default.prf')
-depends=('sh' 'awk')
-optdepends=('net-tools: networking tests'
-'bind-tools: nameserver tests'
-'iptables: firewall tests'
-'bash-completion: completion for bash')
-source=(https://cisofy.com/files/lynis-${pkgver}.tar.gz{,.asc})
-sha512sums=('6ad07f05e997140787f5107794992f98e948653849a9e6e396c86948226e1ce09fc2df61d8fffcff4a58fed22588dfbfae4239834a17c2366c17d50078071b39'
-'SKIP')
-validpgpkeys=('73AC9FC55848E977024D1A61429A566FD5B79251') # CISOfy (Software 
Signing Key) 
-
-prepare() {
-  cd ${pkgname}
-  sed -e 's|/path/to/lynis|/usr/bin/lynis|g' -i extras/systemd/lynis.service
-}
-
-package() {
-  cd ${pkgname}
-
-  # binary
-  install -Dm 755 lynis -t "${pkgdir}/usr/bin"
-
-  # profile
-  install -Dm 644 default.prf -t "${pkgdir}/etc/${pkgname}"
-
-  # plugins, include, db
-  install -d "${pkgdir}/usr/share/${pkgname}"
-  cp -ra db include plugins "${pkgdir}/usr/share/${pkgname}"
-
-  # doc files
-  install -Dm 644 README INSTALL CHANGELOG.md FAQ \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${pkgname}.8" -t "${pkgdir}/usr/share/man/man8"
-
-  # completion
-  install -Dm 644 extras/bash_completion.d/${pkgname} \
--t "${pkgdir}/usr/share/bash-completion/completions"
-
-  # systemd
-  install -Dm 644 extras/systemd/{lynis.service,lynis.timer} \
--t "${pkgdir}/usr/lib/systemd/system"
-}
-
-# vim: ts=2 sw=2 et:

Copied: lynis/repos/community-any/PKGBUILD (from rev 256895, 
lynis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 10:29:35 UTC (rev 256896)
@@ -0,0 +1,54 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sébastien Luttringer 
+
+pkgname=lynis
+pkgver=2.5.5
+pkgrel=1
+pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
+url='https://cisofy.com/lynis/'
+arch=('any')
+license=('GPL3')
+backup=('etc/lynis/default.prf')
+depends=('sh' 'awk')
+optdepends=('net-tools: networking tests'
+'bind-tools: nameserver tests'
+'iptables: firewall tests'
+'bash-completion: completion for bash')
+source=(https://cisofy.com/files/lynis-${pkgver}.tar.gz{,.asc})
+sha512sums=('6ad07f05e997140787f5107794992f98e948653849a9e6e396c86948226e1ce09fc2df61d8fffcff4a58fed22588dfbfae4239834a17c2366c17d50078071b39'
+'SKIP')
+validpgpkeys=('73AC9FC55848E977024D1A61429A566FD5B79251') # CISOfy (Software 
Signing Key) 
+
+prepare() {
+  cd ${pkgname}
+  sed -e 's|/path/to/lynis|/usr/bin/lynis|g' -i extras/systemd/lynis.service
+}
+
+package() {
+  cd ${pkgname}
+
+  # binary
+  install -Dm 755 lynis -t "${pkgdir}/usr/bin"
+
+  # profile
+  install -Dm 644 default.prf -t "${pkgdir}/etc/${pkgname}"
+
+  # plugins, include, db
+  install -d "${pkgdir}/usr/share/${pkgname}"
+  cp -ra db include plugins "${pkgdir}/usr/share/${pkgname}"
+
+  # doc files
+  install -Dm 644 README INSTALL CHANGELOG.md FAQ \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${pkgname}.8" -t "${pkgdir}/usr/share/man/man8"
+
+  # completion
+  install -Dm 644 extras/bash_completion.d/${pkgname} \
+-t "${pkgdir}/usr/share/bash-completion/completions"
+
+  # systemd
+  install -Dm 644 extras/systemd/{lynis.service,lynis.timer} \
+-t "${pkgdir}/usr/lib/systemd/system"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-11 Thread Florian Pritz
Date: Monday, September 11, 2017 @ 08:59:20
  Author: bluewind
Revision: 256890

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

Added:
  freecad/repos/community-staging-i686/
  freecad/repos/community-staging-i686/PKGBUILD
(from rev 256889, freecad/trunk/PKGBUILD)
  freecad/repos/community-staging-i686/freecad.desktop
(from rev 256889, freecad/trunk/freecad.desktop)
  freecad/repos/community-staging-i686/freecad.xml
(from rev 256889, freecad/trunk/freecad.xml)
  freecad/repos/community-staging-i686/remove-qtwebkit.patch
(from rev 256889, freecad/trunk/remove-qtwebkit.patch)
  freecad/repos/community-staging-i686/remove-webgui.patch
(from rev 256889, freecad/trunk/remove-webgui.patch)
  freecad/repos/community-staging-x86_64/
  freecad/repos/community-staging-x86_64/PKGBUILD
(from rev 256889, freecad/trunk/PKGBUILD)
  freecad/repos/community-staging-x86_64/freecad.desktop
(from rev 256889, freecad/trunk/freecad.desktop)
  freecad/repos/community-staging-x86_64/freecad.xml
(from rev 256889, freecad/trunk/freecad.xml)
  freecad/repos/community-staging-x86_64/remove-qtwebkit.patch
(from rev 256889, freecad/trunk/remove-qtwebkit.patch)
  freecad/repos/community-staging-x86_64/remove-webgui.patch
(from rev 256889, freecad/trunk/remove-webgui.patch)

+
 community-staging-i686/PKGBUILD|   88 
 community-staging-i686/freecad.desktop |   14 ++
 community-staging-i686/remove-qtwebkit.patch   |   23 
 community-staging-i686/remove-webgui.patch |  124 +++
 community-staging-x86_64/PKGBUILD  |   88 
 community-staging-x86_64/freecad.desktop   |   14 ++
 community-staging-x86_64/remove-qtwebkit.patch |   23 
 community-staging-x86_64/remove-webgui.patch   |  124 +++
 8 files changed, 498 insertions(+)

Copied: freecad/repos/community-staging-i686/PKGBUILD (from rev 256889, 
freecad/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 08:59:20 UTC (rev 256890)
@@ -0,0 +1,88 @@
+# Maintainer: Florian Pritz 
+# Contributor: Jonas Heinrich 
+# Contributor: Jonas Heinrich 
+# Contributor: Jordi De Groof 
+# Contributor: mickele
+# Contributor: manwithgrenade
+# Contributor: bricem13
+# Contributor: gborzi
+
+pkgname=freecad
+pkgver=0.16.6712
+pkgrel=2
+pkgdesc='A general purpose 3D CAD modeler'
+arch=('i686' 'x86_64')
+url='http://www.freecadweb.org/'
+license=('LGPL')
+depends=('boost-libs' 'curl' 'opencascade>=6.6.0' 'python2-pivy' 'xerces-c'
+ 'libspnav' 'shared-mime-info' 'hicolor-icon-theme'
+ 'python2-matplotlib' 'python2-shiboken' 'python2-pyside-tools' 
'pyside-tools-common' 'qt4')
+makedepends=('boost' 'eigen' 'gcc-fortran' 'swig' 'xerces-c' 
'desktop-file-utils' 'cmake' 'coin>=3.1.3-9')
+# TODO add reasons
+optdepends=('python2-matplotlib' 'pycollada-git' 'python2-pyqt4')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/FreeCAD/FreeCAD/archive/$pkgver.tar.gz;
+   "${pkgname}.desktop"
+   "${pkgname}.xml"
+"remove-qtwebkit.patch"
+"remove-webgui.patch")
+md5sums=('40ea50aa495c0dfc2b247dc6a32aec2a'
+ 'b7bd72a67073c2869da263d8df61f205'
+ 'c2f4154c8e4678825411de8e7fa54c6b'
+ '19e9cd7d41a1ddd557cef05a6b23bdee'
+ '6b5f9253c559c7aacaa277b2973fbaf3')
+
+prepare() {
+  cd "${srcdir}/FreeCAD-${pkgver}/"
+
+  # Remove QtWebkit dependency
+  patch -Np1 -i ../remove-qtwebkit.patch
+
+  # Remove features depending on Web module
+  patch -Np1 -i ../remove-webgui.patch
+
+  # http://www.freecadweb.org/tracker/view.php?id=2347
+  sed -i 's/boost::re_detail/boost::BOOST_REGEX_DETAIL_NS/' \
+src/Mod/Drawing/App/FeaturePage.cpp
+}
+
+build() {
+  cd "${srcdir}/FreeCAD-${pkgver}/"
+  cmake \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX:PATH="/usr/lib/freecad" \
+-DCMAKE_INSTALL_DOCDIR:PATH="/usr/share/freecad/doc" \
+-DCMAKE_INSTALL_DATADIR:PATH="/usr/share/freecad" \
+-DOCC_INCLUDE_DIR:PATH=/opt/opencascade/inc/ \
+-DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/python2 \
+-DFREECAD_USE_EXTERNAL_PIVY:BOOL=ON \
+-DBUILD_START=OFF \
+-DBUILD_WEB=OFF
+  make
+}
+
+package() {
+  cd "${srcdir}/FreeCAD-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  # Symlink to /usr/bin
+  install -dm755 "$pkgdir/usr/bin"
+  ln -srf "$pkgdir/usr/lib/freecad/bin/FreeCAD" "${pkgdir}/usr/bin/freecad"
+  ln -srf "$pkgdir/usr/lib/freecad/bin/FreeCAD" "${pkgdir}/usr/bin/FreeCAD"
+  ln -srf "$pkgdir/usr/lib/freecad/bin/FreeCADCmd" 
"${pkgdir}/usr/bin/freecadcmd"
+  ln -srf "$pkgdir/usr/lib/freecad/bin/FreeCADCmd" 
"${pkgdir}/usr/bin/FreeCADCmd"
+
+  # Install pixmaps and desktop 

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

2017-09-11 Thread Florian Pritz
Date: Monday, September 11, 2017 @ 08:59:10
  Author: bluewind
Revision: 256889

upgpkg: freecad 0.16.6712-2

boost 1.65.1 rebuild

Modified:
  freecad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 08:18:17 UTC (rev 256888)
+++ PKGBUILD2017-09-11 08:59:10 UTC (rev 256889)
@@ -9,7 +9,7 @@
 
 pkgname=freecad
 pkgver=0.16.6712
-pkgrel=1
+pkgrel=2
 pkgdesc='A general purpose 3D CAD modeler'
 arch=('i686' 'x86_64')
 url='http://www.freecadweb.org/'


[arch-commits] Commit in wine-staging/repos/multilib-x86_64 (4 files)

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 09:12:31
  Author: felixonmars
Revision: 256892

archrelease: copy trunk to multilib-x86_64

Added:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 256891, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/multilib-x86_64/PKGBUILD
(from rev 256891, wine-staging/trunk/PKGBUILD)
Deleted:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
  wine-staging/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  375 ++---
 1 file changed, 188 insertions(+), 187 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
256891, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 09:12:00 UTC (rev 256891)
+++ PKGBUILD2017-09-11 09:12:31 UTC (rev 256892)
@@ -1,187 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=2.16
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
-30-win32-aliases.conf)
-sha512sums=('f375c74b3c5fd2a0d46de0e4f371c1fe58059da776851e4f9854d288b0d9a97bd9c5432fdd713d0bfdb77b7d6a43a8d7c1c8ae5adc29d637ab30b87788de336f'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  # Allow ccache to work

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

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 09:12:00
  Author: felixonmars
Revision: 256891

upgpkg: wine-staging 2.16-2

try to to disable no-plt again

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 08:59:20 UTC (rev 256890)
+++ PKGBUILD2017-09-11 09:12:00 UTC (rev 256891)
@@ -7,7 +7,7 @@
 
 pkgname=wine-staging
 pkgver=2.16
-pkgrel=1
+pkgrel=2
 
 _pkgbasever=${pkgver/rc/-rc}
 
@@ -111,6 +111,7 @@
   mv wine-patched-staging-$_pkgbasever $pkgname
 
   # https://bugs.winehq.org/show_bug.cgi?id=43530
+  export CFLAGS="${CFLAGS/-fno-plt/}"
   export LDFLAGS="${LDFLAGS/,-z,now/}"
 
   sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i $pkgname/configure*


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 10:28:34
  Author: anthraxx
Revision: 256895

archrelease: copy trunk to community-any

Added:
  lynis/repos/community-any/PKGBUILD
(from rev 256894, lynis/trunk/PKGBUILD)
Deleted:
  lynis/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 10:28:26 UTC (rev 256894)
+++ PKGBUILD2017-09-11 10:28:34 UTC (rev 256895)
@@ -1,54 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sébastien Luttringer 
-
-pkgname=lynis
-pkgver=2.5.3
-pkgrel=1
-pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
-url='https://cisofy.com/lynis/'
-arch=('any')
-license=('GPL3')
-backup=('etc/lynis/default.prf')
-depends=('sh' 'awk')
-optdepends=('net-tools: networking tests'
-'bind-tools: nameserver tests'
-'iptables: firewall tests'
-'bash-completion: completion for bash')
-source=(https://cisofy.com/files/lynis-${pkgver}.tar.gz{,.asc})
-sha512sums=('025338336fb7877ed5524be3a9cfaddc84370eb24473e3d0f706c913c3efe143550b841eec52b40b561e36bebacf1a7ecaf39ff7625f371f299646d8e10a8391'
-'SKIP')
-validpgpkeys=('73AC9FC55848E977024D1A61429A566FD5B79251') # CISOfy (Software 
Signing Key) 
-
-prepare() {
-  cd ${pkgname}
-  sed -e 's|/path/to/lynis|/usr/bin/lynis|g' -i extras/systemd/lynis.service
-}
-
-package() {
-  cd ${pkgname}
-
-  # binary
-  install -Dm 755 lynis -t "${pkgdir}/usr/bin"
-
-  # profile
-  install -Dm 644 default.prf -t "${pkgdir}/etc/${pkgname}"
-
-  # plugins, include, db
-  install -d "${pkgdir}/usr/share/${pkgname}"
-  cp -ra db include plugins "${pkgdir}/usr/share/${pkgname}"
-
-  # doc files
-  install -Dm 644 README INSTALL CHANGELOG.md FAQ \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${pkgname}.8" -t "${pkgdir}/usr/share/man/man8"
-
-  # completion
-  install -Dm 644 extras/bash_completion.d/${pkgname} \
--t "${pkgdir}/usr/share/bash-completion/completions"
-
-  # systemd
-  install -Dm 644 extras/systemd/{lynis.service,lynis.timer} \
--t "${pkgdir}/usr/lib/systemd/system"
-}
-
-# vim: ts=2 sw=2 et:

Copied: lynis/repos/community-any/PKGBUILD (from rev 256894, 
lynis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 10:28:34 UTC (rev 256895)
@@ -0,0 +1,54 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sébastien Luttringer 
+
+pkgname=lynis
+pkgver=2.5.5
+pkgrel=1
+pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
+url='https://cisofy.com/lynis/'
+arch=('any')
+license=('GPL3')
+backup=('etc/lynis/default.prf')
+depends=('sh' 'awk')
+optdepends=('net-tools: networking tests'
+'bind-tools: nameserver tests'
+'iptables: firewall tests'
+'bash-completion: completion for bash')
+source=(https://cisofy.com/files/lynis-${pkgver}.tar.gz{,.asc})
+sha512sums=('6ad07f05e997140787f5107794992f98e948653849a9e6e396c86948226e1ce09fc2df61d8fffcff4a58fed22588dfbfae4239834a17c2366c17d50078071b39'
+'SKIP')
+validpgpkeys=('73AC9FC55848E977024D1A61429A566FD5B79251') # CISOfy (Software 
Signing Key) 
+
+prepare() {
+  cd ${pkgname}
+  sed -e 's|/path/to/lynis|/usr/bin/lynis|g' -i extras/systemd/lynis.service
+}
+
+package() {
+  cd ${pkgname}
+
+  # binary
+  install -Dm 755 lynis -t "${pkgdir}/usr/bin"
+
+  # profile
+  install -Dm 644 default.prf -t "${pkgdir}/etc/${pkgname}"
+
+  # plugins, include, db
+  install -d "${pkgdir}/usr/share/${pkgname}"
+  cp -ra db include plugins "${pkgdir}/usr/share/${pkgname}"
+
+  # doc files
+  install -Dm 644 README INSTALL CHANGELOG.md FAQ \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${pkgname}.8" -t "${pkgdir}/usr/share/man/man8"
+
+  # completion
+  install -Dm 644 extras/bash_completion.d/${pkgname} \
+-t "${pkgdir}/usr/share/bash-completion/completions"
+
+  # systemd
+  install -Dm 644 extras/systemd/{lynis.service,lynis.timer} \
+-t "${pkgdir}/usr/lib/systemd/system"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 10:28:26
  Author: anthraxx
Revision: 256894

upgpkg: lynis 2.5.5-1

Modified:
  lynis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 09:14:37 UTC (rev 256893)
+++ PKGBUILD2017-09-11 10:28:26 UTC (rev 256894)
@@ -2,7 +2,7 @@
 # Contributor: Sébastien Luttringer 
 
 pkgname=lynis
-pkgver=2.5.3
+pkgver=2.5.5
 pkgrel=1
 pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
 url='https://cisofy.com/lynis/'
@@ -15,7 +15,7 @@
 'iptables: firewall tests'
 'bash-completion: completion for bash')
 source=(https://cisofy.com/files/lynis-${pkgver}.tar.gz{,.asc})
-sha512sums=('025338336fb7877ed5524be3a9cfaddc84370eb24473e3d0f706c913c3efe143550b841eec52b40b561e36bebacf1a7ecaf39ff7625f371f299646d8e10a8391'
+sha512sums=('6ad07f05e997140787f5107794992f98e948653849a9e6e396c86948226e1ce09fc2df61d8fffcff4a58fed22588dfbfae4239834a17c2366c17d50078071b39'
 'SKIP')
 validpgpkeys=('73AC9FC55848E977024D1A61429A566FD5B79251') # CISOfy (Software 
Signing Key) 
 


[arch-commits] Commit in libasl/trunk (PKGBUILD suppress-deprecated-warnings.patch)

2017-09-11 Thread Evgeniy Alekseev
Date: Monday, September 11, 2017 @ 08:12:07
  Author: arcanis
Revision: 256885

upgpkg: libasl 0.1.7-5

boost 1.65.1 rebuild

Modified:
  libasl/trunk/PKGBUILD
  libasl/trunk/suppress-deprecated-warnings.patch

+
 PKGBUILD   |6 +++---
 suppress-deprecated-warnings.patch |9 +
 2 files changed, 8 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 07:44:35 UTC (rev 256884)
+++ PKGBUILD2017-09-11 08:12:07 UTC (rev 256885)
@@ -4,7 +4,7 @@
 
 pkgname=libasl
 pkgver=0.1.7
-pkgrel=4
+pkgrel=5
 pkgdesc='Free and open source hardware accelerated multiphysics simulation 
platform (Advanced Simulation Library)'
 arch=('i686' 'x86_64')
 url='http://asl.org.il/'
@@ -14,8 +14,8 @@
 makedepends=('cmake' 'opencl-headers' 'boost' 'mesa-libgl')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AvtechScientific/ASL/archive/v${pkgver}.tar.gz;
 'suppress-deprecated-warnings.patch')
-md5sums=('a339c515690f929c2a870666dc6d2233'
- '972d7ed8037a35d32125773ae70f6360')
+sha512sums=('337754adefa8619bbc2ab0e06fc811dd1cc550252b165241a265f87224aa84c5ee69fb3bf60324093df5b21aa87712e2210d4bcdd8593f0740183574528a30bd'
+
'6aecf660790ea2ba0d9de48aef4c4a1058b07d04cbc74ad6a9f127a51f02b39fdab5f8faa269d0bbbc003ea5cea6910f54a7d980fbf5e641629869e20528f70a')
 
 prepare() {
   rm -rf "build"

Modified: suppress-deprecated-warnings.patch
===
--- suppress-deprecated-warnings.patch  2017-09-11 07:44:35 UTC (rev 256884)
+++ suppress-deprecated-warnings.patch  2017-09-11 08:12:07 UTC (rev 256885)
@@ -1,11 +1,12 @@
 a/CMakeLists.txt   2015-08-24 19:50:08.0 +0300
-+++ b/CMakeLists.txt   2015-08-25 23:22:14.174394239 +0300
-@@ -37,7 +37,7 @@ if (CMAKE_VERSION VERSION_LESS 3.1.0)
+diff -ruN ASL-0.1.7-orig/CMakeLists.txt ASL-0.1.7/CMakeLists.txt
+--- ASL-0.1.7-orig/CMakeLists.txt  2017-08-07 17:47:37.522927767 +0300
 ASL-0.1.7/CMakeLists.txt   2017-08-07 17:47:58.382410158 +0300
+@@ -37,7 +37,7 @@
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive -std=c++11")
  else()
set(CMAKE_CXX_STANDARD 11)
 -  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive")
-+  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive -Wno-deprecated 
-Wno-deprecated-declarations")
++  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive -Wno-deprecated 
-Wno-deprecated-declarations -Wno-ignored-attributes")
  endif()
  
  # Enable supplied cmake includes and modules


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 12:12:43
  Author: anthraxx
Revision: 256903

upgpkg: pngcrush 1.8.13-1

Modified:
  pngcrush/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 12:08:32 UTC (rev 256902)
+++ PKGBUILD2017-09-11 12:12:43 UTC (rev 256903)
@@ -4,7 +4,7 @@
 # Contributor: Stefan Husmann 
 
 pkgname=pngcrush
-pkgver=1.8.12
+pkgver=1.8.13
 pkgrel=1
 pkgdesc='Tool for optimizing the compression of PNG files'
 url='http://pmt.sourceforge.net/pngcrush'
@@ -13,7 +13,7 @@
 depends=('libpng')
 
source=(https://downloads.sourceforge.net/pmt/${pkgname}-${pkgver}-nolib.tar.xz{,.asc}
 LICENSE)
-sha512sums=('1ef8c02c659a36a063ac420ed67d5d6d4e293deb15023ccca861f3491a8a271d78842291c5341db6ab347ed2a3e9090ebaeff1777bd47b3d32b3a70457898913'
+sha512sums=('c073d573e9b13b72fa39b178271ce65d1a19fef35943ef0a9e6121a5c66d9db212aaad38ab777c5b44e20a107eb677003acbdb4a354bcb2dc40f535a97d9df0e'
 'SKIP'
 
'f18613b9da9b4f31a317411e726def5122246087ff57887fba6b46f0a7a7fae7109388ecb2ce049bbe992cc6ef0a3fbbe0f5c5bc816705efd7583836cbd4e69d')
 validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn 
Randers-Pehrson (pngcrush) 


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 11:53:53
  Author: anthraxx
Revision: 256900

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 11:53:43 UTC (rev 256899)
+++ community-i686/PKGBUILD 2017-09-11 11:53:53 UTC (rev 256900)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: spider-mario 
-
-pkgname=afl
-pkgver=2.50b
-pkgrel=1
-pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
-url='http://lcamtuf.coredump.cx/afl/'
-arch=('i686' 'x86_64')
-license=('Apache')
-depends=('glibc' 'bash')
-optdepends=('gcc: gcc instrumentation support'
-'clang: clang instrumentation support'
-'llvm: experimental clang-fast instrumentation support'
-'gnuplot: graph plotting support')
-makedepends=('clang' 'llvm' 'gcc' 'wget' 'python')
-provides=('american-fuzzy-lop')
-replaces=('american-fuzzy-lop')
-options=('!emptydirs' '!strip')
-source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha256sums=('0bdb0efd77b394b8b1a816e957a6dc27ffe01007d73c6247b9e424f0e36176c5')
-sha512sums=('a06cc3c8f0613e105805b4dfba59fffcc2b6d9b519df56dc4af7085f1edffa1a63b9a5cccd1b65354b87584c7b060f71b50e7ad29f55584799d20479b898a4f9')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-  make -C llvm_mode PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-  install -Dm 644 llvm_mode/README.llvm -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: afl/repos/community-i686/PKGBUILD (from rev 256899, afl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 11:53:53 UTC (rev 256900)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+# Contributor: spider-mario 
+
+pkgname=afl
+pkgver=2.51b
+pkgrel=1
+pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
+url='http://lcamtuf.coredump.cx/afl/'
+arch=('i686' 'x86_64')
+license=('Apache')
+depends=('glibc' 'bash')
+optdepends=('gcc: gcc instrumentation support'
+'clang: clang instrumentation support'
+'llvm: experimental clang-fast instrumentation support'
+'gnuplot: graph plotting support')
+makedepends=('clang' 'llvm' 'gcc' 'wget' 'python')
+provides=('american-fuzzy-lop')
+replaces=('american-fuzzy-lop')
+options=('!emptydirs' '!strip')
+source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
+sha256sums=('d435b94b35b844ea0bacbdb8516d2d5adffc2a4f4a5aad78785c5d2a5495bb97')
+sha512sums=('fd67cf44b7336175041c2efa42b122e91f887f4a293618a59ea1e145ef47b9c0fab9fc274e4b94499c523bec950ff5a704050c3f4260e890ad97774c365a358c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr
+  make -C llvm_mode PREFIX=/usr
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+  install -Dm 644 llvm_mode/README.llvm -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 11:53:43 UTC (rev 256899)
+++ community-x86_64/PKGBUILD   2017-09-11 11:53:53 UTC (rev 256900)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: spider-mario 
-
-pkgname=afl
-pkgver=2.50b
-pkgrel=1
-pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
-url='http://lcamtuf.coredump.cx/afl/'
-arch=('i686' 'x86_64')
-license=('Apache')
-depends=('glibc' 'bash')
-optdepends=('gcc: gcc instrumentation support'
-'clang: clang instrumentation support'
-'llvm: experimental clang-fast instrumentation support'
-'gnuplot: graph plotting support')
-makedepends=('clang' 'llvm' 'gcc' 'wget' 'python')
-provides=('american-fuzzy-lop')
-replaces=('american-fuzzy-lop')
-options=('!emptydirs' '!strip')

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 11:53:43
  Author: anthraxx
Revision: 256899

upgpkg: afl 2.51b-1

Modified:
  afl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 11:44:24 UTC (rev 256898)
+++ PKGBUILD2017-09-11 11:53:43 UTC (rev 256899)
@@ -2,7 +2,7 @@
 # Contributor: spider-mario 
 
 pkgname=afl
-pkgver=2.50b
+pkgver=2.51b
 pkgrel=1
 pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
 url='http://lcamtuf.coredump.cx/afl/'
@@ -18,8 +18,8 @@
 replaces=('american-fuzzy-lop')
 options=('!emptydirs' '!strip')
 
source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha256sums=('0bdb0efd77b394b8b1a816e957a6dc27ffe01007d73c6247b9e424f0e36176c5')
-sha512sums=('a06cc3c8f0613e105805b4dfba59fffcc2b6d9b519df56dc4af7085f1edffa1a63b9a5cccd1b65354b87584c7b060f71b50e7ad29f55584799d20479b898a4f9')
+sha256sums=('d435b94b35b844ea0bacbdb8516d2d5adffc2a4f4a5aad78785c5d2a5495bb97')
+sha512sums=('fd67cf44b7336175041c2efa42b122e91f887f4a293618a59ea1e145ef47b9c0fab9fc274e4b94499c523bec950ff5a704050c3f4260e890ad97774c365a358c')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 12:07:13
  Author: arojas
Revision: 256901

Update to 5.2.0

Modified:
  fplll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 11:53:53 UTC (rev 256900)
+++ PKGBUILD2017-09-11 12:07:13 UTC (rev 256901)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=fplll
-pkgver=5.1.0
+pkgver=5.2.0
 pkgrel=1
 pkgdesc="Lattice algorithms using floating-point arithmetic"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 provides=(libfplll)
 replaces=(libfplll)
 
source=("https://github.com/fplll/fplll/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('58175c54cc92752576a64361c73e4ea7797fc18fb703b3f22c7570a09075486f')
+sha256sums=('a39871bc9d351732c230e9e56a9e7f4128f2a5ae3bd4094fe61065d4a8f54dfd')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 12:17:40
  Author: arojas
Revision: 256910

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 256909, linbox/trunk/PKGBUILD)
  linbox/repos/community-staging-x86_64/
  linbox/repos/community-staging-x86_64/PKGBUILD
(from rev 256909, linbox/trunk/PKGBUILD)

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

Copied: linbox/repos/community-staging-i686/PKGBUILD (from rev 256909, 
linbox/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 12:17:40 UTC (rev 256910)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas < nqn7...@gmail.com >
+
+pkgname=linbox
+pkgver=1.4.2
+pkgrel=11
+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 flint fplll iml fflas-ffpack) 
+source=("https://github.com/linbox-team/linbox/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz;
+
linbox-fplll5.patch::"https://github.com/fingolfin/linbox/commit/95355873.patch;)
+sha256sums=('47f025fe7aab204fb276307f32a562de357c887c6ef589b9e4f7a57a3b58ecaf'
+'44ca7b3be35d0724dc0261726cffe31939c20bb61aaeb015da3e543953a2a887')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with fplll 5.0
+  patch -p1 -i ../linbox-fplll5.patch
+  sed -e 's|fplll/dpe.h|fplll/nr/dpe.h|g' -i linbox/algorithms/short-vector.h
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./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-x86_64/PKGBUILD (from rev 256909, 
linbox/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-11 12:17:40 UTC (rev 256910)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas < nqn7...@gmail.com >
+
+pkgname=linbox
+pkgver=1.4.2
+pkgrel=11
+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 flint fplll iml fflas-ffpack) 
+source=("https://github.com/linbox-team/linbox/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz;
+
linbox-fplll5.patch::"https://github.com/fingolfin/linbox/commit/95355873.patch;)
+sha256sums=('47f025fe7aab204fb276307f32a562de357c887c6ef589b9e4f7a57a3b58ecaf'
+'44ca7b3be35d0724dc0261726cffe31939c20bb61aaeb015da3e543953a2a887')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with fplll 5.0
+  patch -p1 -i ../linbox-fplll5.patch
+  sed -e 's|fplll/dpe.h|fplll/nr/dpe.h|g' -i linbox/algorithms/short-vector.h
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./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
+}


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

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 12:16:58
  Author: arojas
Revision: 256909

fplll 5.2 rebuild

Modified:
  linbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 12:15:58 UTC (rev 256908)
+++ PKGBUILD2017-09-11 12:16:58 UTC (rev 256909)
@@ -3,7 +3,7 @@
 
 pkgname=linbox
 pkgver=1.4.2
-pkgrel=10
+pkgrel=11
 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 python-pyasn1-modules/repos/extra-any (PKGBUILD PKGBUILD)

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 14:05:38
  Author: felixonmars
Revision: 305349

archrelease: copy trunk to extra-any

Added:
  python-pyasn1-modules/repos/extra-any/PKGBUILD
(from rev 305348, python-pyasn1-modules/trunk/PKGBUILD)
Deleted:
  python-pyasn1-modules/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 14:05:07 UTC (rev 305348)
+++ PKGBUILD2017-09-11 14:05:38 UTC (rev 305349)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pyasn1-modules
-pkgname=('python-pyasn1-modules' 'python2-pyasn1-modules')
-pkgver=0.1.1
-pkgrel=1
-pkgdesc="A collection of ASN.1-based protocols modules"
-arch=('any')
-license=('BSD')
-url="http://pypi.python.org/pypi/pyasn1-modules;
-makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 
'python2-setuptools')
-source=("https://pypi.io/packages/source/p/pyasn1-modules/pyasn1-modules-$pkgver.tar.gz;)
-sha512sums=('63cba7522da6d93d4c9059377e8b4b11e9fb362b0c17d603119508f28944f45cb48d31f541eb11bcd734493b9726637b8fe1fcd4cc67845d71b1fa67f9ca69e9')
-
-prepare() {
-  cp -a pyasn1-modules-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pyasn1-modules-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pyasn1-modules-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pyasn1-modules-$pkgver
-  PYTHONPATH=. python tests/__main__.py
-
-  cd "$srcdir"/pyasn1-modules-$pkgver-py2
-  PYTHONPATH=. python2 tests/__main__.py
-}
-
-package_python-pyasn1-modules() {
-  depends=('python-pyopenssl' 'python-pyasn1')
-
-  cd pyasn1-modules-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-package_python2-pyasn1-modules() {
-  depends=('python2-pyopenssl' 'python2-pyasn1')
-
-  cd pyasn1-modules-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: python-pyasn1-modules/repos/extra-any/PKGBUILD (from rev 305348, 
python-pyasn1-modules/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 14:05:38 UTC (rev 305349)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pyasn1-modules
+pkgname=('python-pyasn1-modules' 'python2-pyasn1-modules')
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="A collection of ASN.1-based protocols modules"
+arch=('any')
+license=('BSD')
+url="http://pypi.python.org/pypi/pyasn1-modules;
+makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 
'python2-setuptools')
+source=("https://pypi.io/packages/source/p/pyasn1-modules/pyasn1-modules-$pkgver.tar.gz;)
+sha512sums=('29467aa9fff15b7a7ef999389db01fe696350e29910397f0c867685689a9fa8e5df8128a7703ae0de095804ae20c3759b24656467cec8d086d07a1014ccf5d65')
+
+prepare() {
+  cp -a pyasn1-modules-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pyasn1-modules-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pyasn1-modules-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pyasn1-modules-$pkgver
+  PYTHONPATH=. python tests/__main__.py
+
+  cd "$srcdir"/pyasn1-modules-$pkgver-py2
+  PYTHONPATH=. python2 tests/__main__.py
+}
+
+package_python-pyasn1-modules() {
+  depends=('python-pyopenssl' 'python-pyasn1')
+
+  cd pyasn1-modules-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-pyasn1-modules() {
+  depends=('python2-pyopenssl' 'python2-pyasn1')
+
+  cd pyasn1-modules-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 14:05:07
  Author: felixonmars
Revision: 305348

upgpkg: python-pyasn1-modules 0.1.4-1

Modified:
  python-pyasn1-modules/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 06:23:07 UTC (rev 305347)
+++ PKGBUILD2017-09-11 14:05:07 UTC (rev 305348)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pyasn1-modules
 pkgname=('python-pyasn1-modules' 'python2-pyasn1-modules')
-pkgver=0.1.1
+pkgver=0.1.4
 pkgrel=1
 pkgdesc="A collection of ASN.1-based protocols modules"
 arch=('any')
@@ -11,7 +11,7 @@
 url="http://pypi.python.org/pypi/pyasn1-modules;
 makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 
'python2-setuptools')
 
source=("https://pypi.io/packages/source/p/pyasn1-modules/pyasn1-modules-$pkgver.tar.gz;)
-sha512sums=('63cba7522da6d93d4c9059377e8b4b11e9fb362b0c17d603119508f28944f45cb48d31f541eb11bcd734493b9726637b8fe1fcd4cc67845d71b1fa67f9ca69e9')
+sha512sums=('29467aa9fff15b7a7ef999389db01fe696350e29910397f0c867685689a9fa8e5df8128a7703ae0de095804ae20c3759b24656467cec8d086d07a1014ccf5d65')
 
 prepare() {
   cp -a pyasn1-modules-$pkgver{,-py2}


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 12:28:07
  Author: anthraxx
Revision: 256912

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

Added:
  openntpd/repos/community-i686/PKGBUILD
(from rev 256911, openntpd/trunk/PKGBUILD)
  openntpd/repos/community-i686/openntpd.install
(from rev 256911, openntpd/trunk/openntpd.install)
  openntpd/repos/community-i686/openntpd.service
(from rev 256911, openntpd/trunk/openntpd.service)
  openntpd/repos/community-x86_64/PKGBUILD
(from rev 256911, openntpd/trunk/PKGBUILD)
  openntpd/repos/community-x86_64/openntpd.install
(from rev 256911, openntpd/trunk/openntpd.install)
  openntpd/repos/community-x86_64/openntpd.service
(from rev 256911, openntpd/trunk/openntpd.service)
Deleted:
  openntpd/repos/community-i686/PKGBUILD
  openntpd/repos/community-i686/openntpd.install
  openntpd/repos/community-i686/openntpd.service
  openntpd/repos/community-x86_64/PKGBUILD
  openntpd/repos/community-x86_64/openntpd.install
  openntpd/repos/community-x86_64/openntpd.service

---+
 /PKGBUILD |  110 
 /openntpd.install |   14 
 /openntpd.service |   22 +++
 community-i686/PKGBUILD   |   55 --
 community-i686/openntpd.install   |7 --
 community-i686/openntpd.service   |   11 ---
 community-x86_64/PKGBUILD |   55 --
 community-x86_64/openntpd.install |7 --
 community-x86_64/openntpd.service |   11 ---
 9 files changed, 146 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 12:27:53 UTC (rev 256911)
+++ community-i686/PKGBUILD 2017-09-11 12:28:07 UTC (rev 256912)
@@ -1,55 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Mark Rosenstand 
-# Contributor: Giorgio Lando  (adjtimex patch)
-# Contributor: Alexander Rødseth 
-
-pkgname=openntpd
-pkgver=6.2p1
-pkgrel=1
-pkgdesc='Free, easy to use implementation of the Network Time Protocol'
-url='http://www.openntpd.org/'
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('openssl')
-conflicts=('ntp')
-backup=('etc/ntpd.conf')
-install=${pkgname}.install
-source=(http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/${pkgname}-${pkgver}.tar.gz{,.asc}
-openntpd.service)
-sha512sums=('99ad2c8e42de159b1122fe30385eff2f6311202b8526828dacd52db6ec36ce14785131b0576ac5b08d3ed9cadffc142c9146e395da29409b3227c4a77187d31e'
-'SKIP'
-
'c58d48de67cd1ce0df7ea60def26db38b9d7409b64d097639a4cde3f4774a4bcc1159f993f37c5c61781cab1e2d1b8a35005030b28b0c9f0f6e0f81053586dfa')
-validpgpkeys=('A1EB079B8D3EB92B4EBD3139663AF51BD5E4D8D5') # Brent Cook 

-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---with-privsep-user=ntp \
---localstatedir=/var \
---with-adjtimex
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  rmdir "${pkgdir}/var/run"
-  install -d "${pkgdir}/var/lib/ntp"
-  install -Dm 644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-  install -Dm 644 "${srcdir}/openntpd.service" 
"${pkgdir}/usr/lib/systemd/system/openntpd.service"
-
-  install -d "${pkgdir}/usr/lib/systemd/ntp-units.d"
-  echo ${pkgname}.service > 
"${pkgdir}/usr/lib/systemd/ntp-units.d/${pkgname}.list"
-}
-
-# vim: ts=2 sw=2 et:

Copied: openntpd/repos/community-i686/PKGBUILD (from rev 256911, 
openntpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 12:28:07 UTC (rev 256912)
@@ -0,0 +1,55 @@
+# Maintainer: Levente Polyak 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Mark Rosenstand 
+# Contributor: Giorgio Lando  (adjtimex patch)
+# Contributor: Alexander Rødseth 
+
+pkgname=openntpd
+pkgver=6.2p2
+pkgrel=1
+pkgdesc='Free, easy to use implementation of the Network Time Protocol'
+url='http://www.openntpd.org/'
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('openssl')
+conflicts=('ntp')
+backup=('etc/ntpd.conf')
+install=${pkgname}.install
+source=(http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/${pkgname}-${pkgver}.tar.gz{,.asc}
+openntpd.service)
+sha512sums=('b8559aa8ceaf796a94a21f8a6d4dfd2edfdc4587845c73cd6d27c81d200355c3e40e72644b3a558e9bfe4fd0d2aafae98b50c581e67ac72eec53eeeabd9cb882'
+'SKIP'
+

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 12:27:53
  Author: anthraxx
Revision: 256911

upgpkg: openntpd 6.2p2-1

Modified:
  openntpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 12:17:40 UTC (rev 256910)
+++ PKGBUILD2017-09-11 12:27:53 UTC (rev 256911)
@@ -5,7 +5,7 @@
 # Contributor: Alexander Rødseth 
 
 pkgname=openntpd
-pkgver=6.2p1
+pkgver=6.2p2
 pkgrel=1
 pkgdesc='Free, easy to use implementation of the Network Time Protocol'
 url='http://www.openntpd.org/'
@@ -17,7 +17,7 @@
 install=${pkgname}.install
 
source=(http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/${pkgname}-${pkgver}.tar.gz{,.asc}
 openntpd.service)
-sha512sums=('99ad2c8e42de159b1122fe30385eff2f6311202b8526828dacd52db6ec36ce14785131b0576ac5b08d3ed9cadffc142c9146e395da29409b3227c4a77187d31e'
+sha512sums=('b8559aa8ceaf796a94a21f8a6d4dfd2edfdc4587845c73cd6d27c81d200355c3e40e72644b3a558e9bfe4fd0d2aafae98b50c581e67ac72eec53eeeabd9cb882'
 'SKIP'
 
'c58d48de67cd1ce0df7ea60def26db38b9d7409b64d097639a4cde3f4774a4bcc1159f993f37c5c61781cab1e2d1b8a35005030b28b0c9f0f6e0f81053586dfa')
 validpgpkeys=('A1EB079B8D3EB92B4EBD3139663AF51BD5E4D8D5') # Brent Cook 

@@ -45,8 +45,8 @@
 
   rmdir "${pkgdir}/var/run"
   install -d "${pkgdir}/var/lib/ntp"
-  install -Dm 644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-  install -Dm 644 "${srcdir}/openntpd.service" 
"${pkgdir}/usr/lib/systemd/system/openntpd.service"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 "${srcdir}/openntpd.service" -t 
"${pkgdir}/usr/lib/systemd/system"
 
   install -d "${pkgdir}/usr/lib/systemd/ntp-units.d"
   echo ${pkgname}.service > 
"${pkgdir}/usr/lib/systemd/ntp-units.d/${pkgname}.list"


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

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 14:04:05
  Author: felixonmars
Revision: 256913

upgpkg: m2r 0.1.12-1

Modified:
  m2r/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 12:28:07 UTC (rev 256912)
+++ PKGBUILD2017-09-11 14:04:05 UTC (rev 256913)
@@ -3,7 +3,7 @@
 
 pkgbase=m2r
 pkgname=(m2r python2-m2r)
-pkgver=0.1.11
+pkgver=0.1.12
 pkgrel=1
 pkgdesc="Markdown to reStructuredText converter"
 arch=('any')
@@ -14,7 +14,7 @@
 checkdepends=('python2-mock' 'python-pygments' 'python2-pygments' 
'python-pytest-runner'
   'python2-pytest-runner')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/miyakogi/m2r/archive/v$pkgver.tar.gz;)
-sha512sums=('3206b5637f1f61fd134176b09e36a4e7c4e2afd320e38d2b1cf33e2dd3a733d178c24aed933dd8f8dcd67858e8eaf43088629fad3120e7bdfa1229c62ad5ebd3')
+sha512sums=('32b4b49c536087b507722ab5a4d9f9b86ffcc2da511ac8210568cde06de50e817264d7242f459e88c3e78816b2c250f107533fbcb75df4e8d2aabedff9368a9a')
 
 prepare() {
   cp -a m2r-$pkgver{,-py2}


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

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 14:04:36
  Author: felixonmars
Revision: 256914

archrelease: copy trunk to community-any

Added:
  m2r/repos/community-any/PKGBUILD
(from rev 256913, m2r/trunk/PKGBUILD)
Deleted:
  m2r/repos/community-any/PKGBUILD

--+
 PKGBUILD |  112 ++---
 1 file changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 14:04:05 UTC (rev 256913)
+++ PKGBUILD2017-09-11 14:04:36 UTC (rev 256914)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=m2r
-pkgname=(m2r python2-m2r)
-pkgver=0.1.11
-pkgrel=1
-pkgdesc="Markdown to reStructuredText converter"
-arch=('any')
-url="https://github.com/miyakogi/m2r;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-mistune' 
'python2-mistune'
- 'python-docutils' 'python2-docutils')
-checkdepends=('python2-mock' 'python-pygments' 'python2-pygments' 
'python-pytest-runner'
-  'python2-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/miyakogi/m2r/archive/v$pkgver.tar.gz;)
-sha512sums=('3206b5637f1f61fd134176b09e36a4e7c4e2afd320e38d2b1cf33e2dd3a733d178c24aed933dd8f8dcd67858e8eaf43088629fad3120e7bdfa1229c62ad5ebd3')
-
-prepare() {
-  cp -a m2r-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/m2r-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/m2r-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/m2r-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/m2r-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_m2r() {
-  depends=('python-mistune' 'python-docutils' 'python-setuptools')
-
-  cd "$srcdir"/m2r-$pkgver
-  python setup.py install --root="$pkgdir" --prefix=/usr --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-m2r() {
-  depends=('python2-mistune' 'python2-docutils' 'python2-setuptools')
-
-  cd "$srcdir"/m2r-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --prefix=/usr --optimize=1
-  mv "$pkgdir"/usr/bin/m2r{,-python2}
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: m2r/repos/community-any/PKGBUILD (from rev 256913, m2r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 14:04:36 UTC (rev 256914)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=m2r
+pkgname=(m2r python2-m2r)
+pkgver=0.1.12
+pkgrel=1
+pkgdesc="Markdown to reStructuredText converter"
+arch=('any')
+url="https://github.com/miyakogi/m2r;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-mistune' 
'python2-mistune'
+ 'python-docutils' 'python2-docutils')
+checkdepends=('python2-mock' 'python-pygments' 'python2-pygments' 
'python-pytest-runner'
+  'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/miyakogi/m2r/archive/v$pkgver.tar.gz;)
+sha512sums=('32b4b49c536087b507722ab5a4d9f9b86ffcc2da511ac8210568cde06de50e817264d7242f459e88c3e78816b2c250f107533fbcb75df4e8d2aabedff9368a9a')
+
+prepare() {
+  cp -a m2r-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/m2r-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/m2r-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/m2r-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/m2r-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_m2r() {
+  depends=('python-mistune' 'python-docutils' 'python-setuptools')
+
+  cd "$srcdir"/m2r-$pkgver
+  python setup.py install --root="$pkgdir" --prefix=/usr --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-m2r() {
+  depends=('python2-mistune' 'python2-docutils' 'python2-setuptools')
+
+  cd "$srcdir"/m2r-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --prefix=/usr --optimize=1
+  mv "$pkgdir"/usr/bin/m2r{,-python2}
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 11:44:24
  Author: anthraxx
Revision: 256898

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 11:44:11 UTC (rev 256897)
+++ community-i686/PKGBUILD 2017-09-11 11:44:24 UTC (rev 256898)
@@ -1,58 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sabart Otto - Seberm 
-# Contributor: Tobias Veit - nIcE 
-
-pkgname=metasploit
-pkgver=4.16.1
-pkgrel=1
-pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
-url='https://www.metasploit.com/'
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'git')
-optdepends=('ruby-pg: database support')
-options=('!strip' '!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz)
-sha256sums=('f8d13136c7f341840f46821444cc1a5c33d289a0be6fc3de3df07fc325bf9831')
-sha512sums=('e3c2e546dcbf6ea5959475bf9959ddb583e27e1995a8217c14c62efff1b97936dcd51de240a3f08c171d7c75fd138111538e3513ab523f715bf79ce7bb62ef59')
-
-prepare() {
-  cd ${pkgname}-framework-${pkgver}
-  bundle config build.nokogiri --use-system-libraries
-  sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
-}
-
-build() {
-  cd ${pkgname}-framework-${pkgver}
-  bundle install -j"$(nproc)" --no-cache --deployment
-  find vendor/bundle/ruby -exec chmod o+r '{}' \;
-}
-
-package() {
-  cd ${pkgname}-framework-${pkgver}
-
-  install -d "${pkgdir}/opt/${pkgname}" "${pkgdir}/usr/bin"
-  cp -r . "${pkgdir}/opt/${pkgname}"
-
-  for f in "${pkgdir}"/opt/${pkgname}/msf*; do
-local _msffile="${pkgdir}/usr/bin/`basename "${f}"`"
-echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/`basename "${f}"` \"\$@\"" > "${_msffile}"
-chmod 755 "${_msffile}"
-  done
-
-  (cd "${pkgdir}/opt/${pkgname}"
-for f in tools/*/*.rb; do
-  install -Dm 755 "${f}" ".${f}"
-  echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/."${f}" \"\$@\"" > "${f}"
-  chmod 755 "${f}"
-done
-  )
-
-  install -Dm 644 external/zsh/_* -t "${pkgdir}/usr/share/zsh/site-functions"
-  install -Dm 644 LICENSE COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -d "${pkgdir}/usr/share/doc"
-  mv "${pkgdir}/opt/${pkgname}/documentation" 
"${pkgdir}/usr/share/doc/${pkgname}"
-  rm "${pkgdir}/usr/bin/msfupdate"
-}
-
-# vim: ts=2 sw=2 et:

Copied: metasploit/repos/community-i686/PKGBUILD (from rev 256897, 
metasploit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 11:44:24 UTC (rev 256898)
@@ -0,0 +1,58 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sabart Otto - Seberm 
+# Contributor: Tobias Veit - nIcE 
+
+pkgname=metasploit
+pkgver=4.16.6
+pkgrel=1
+pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
+url='https://www.metasploit.com/'
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'git')
+optdepends=('ruby-pg: database support')
+options=('!strip' '!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz)
+sha256sums=('ce52552388df286028aa5e7c29ddc323749742890947b5bdc5038c807a85332b')
+sha512sums=('84fe5cf6c56d718d58786e630bf432a6237b60f8c11689f68ce870b121f1216d85f7043ece47e668e397641f67a860b9850bbf16087ac241c559422991fc5c2f')
+
+prepare() {
+  cd ${pkgname}-framework-${pkgver}
+  bundle config build.nokogiri --use-system-libraries
+  sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
+}
+
+build() {
+  cd ${pkgname}-framework-${pkgver}
+  bundle install -j"$(nproc)" --no-cache --deployment
+  find vendor/bundle/ruby -exec chmod o+r '{}' \;
+}
+
+package() {
+  cd ${pkgname}-framework-${pkgver}
+
+  install -d "${pkgdir}/opt/${pkgname}" "${pkgdir}/usr/bin"
+  cp -r . "${pkgdir}/opt/${pkgname}"
+
+  for f in 

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 11:44:11
  Author: anthraxx
Revision: 256897

upgpkg: metasploit 4.16.6-1

Modified:
  metasploit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 10:29:35 UTC (rev 256896)
+++ PKGBUILD2017-09-11 11:44:11 UTC (rev 256897)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Veit - nIcE 
 
 pkgname=metasploit
-pkgver=4.16.1
+pkgver=4.16.6
 pkgrel=1
 pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
 url='https://www.metasploit.com/'
@@ -13,8 +13,8 @@
 optdepends=('ruby-pg: database support')
 options=('!strip' '!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/rapid7/metasploit-framework/archive/${pkgver}.tar.gz)
-sha256sums=('f8d13136c7f341840f46821444cc1a5c33d289a0be6fc3de3df07fc325bf9831')
-sha512sums=('e3c2e546dcbf6ea5959475bf9959ddb583e27e1995a8217c14c62efff1b97936dcd51de240a3f08c171d7c75fd138111538e3513ab523f715bf79ce7bb62ef59')
+sha256sums=('ce52552388df286028aa5e7c29ddc323749742890947b5bdc5038c807a85332b')
+sha512sums=('84fe5cf6c56d718d58786e630bf432a6237b60f8c11689f68ce870b121f1216d85f7043ece47e668e397641f67a860b9850bbf16087ac241c559422991fc5c2f')
 
 prepare() {
   cd ${pkgname}-framework-${pkgver}


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 12:15:58
  Author: anthraxx
Revision: 256908

archrelease: copy trunk to community-any

Added:
  sqlmap/repos/community-any/PKGBUILD
(from rev 256907, sqlmap/trunk/PKGBUILD)
Deleted:
  sqlmap/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 12:15:44 UTC (rev 256907)
+++ PKGBUILD2017-09-11 12:15:58 UTC (rev 256908)
@@ -1,52 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Evan Teitelman 
-# Contributor: fxbru 
-
-pkgname=sqlmap
-pkgver=1.1.8
-pkgrel=1
-pkgdesc='Automatic SQL injection and database takeover tool'
-url='http://sqlmap.org'
-arch=('any')
-license=('GPL2')
-depends=('python2' 'sh')
-backup=('etc/sqlmap.conf')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sqlmapproject/sqlmap/archive/${pkgver}.tar.gz)
-sha256sums=('ef8899ce2dc9ecf567164c56546a7cf291c6b69ce7a5163f1b832727c0080d5f')
-sha512sums=('8d25106f215afb973c9374a62ce45913a50549326f1d14f99dd2ddaeed74874f6019b81a03d4369c2eb12f196ccd9170bd4194928b6ab57ba21a6e7aad300d17')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python2 -m compileall .
-  python2 -O -m compileall .
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -d "${pkgdir}/etc"
-  install -d "${pkgdir}/usr/bin"
-  install -d "${pkgdir}/opt/${pkgname}"
-  install -d "${pkgdir}/usr/share/doc"
-
-  mv doc "${pkgdir}/usr/share/doc/${pkgname}"
-  mv sqlmap.conf "${pkgdir}/etc/sqlmap.conf"
-  ln -sf /etc/sqlmap.conf "${pkgdir}/opt/${pkgname}/sqlmap.conf"
-  cp -a --no-preserve=ownership * "${pkgdir}/opt/${pkgname}"
-
-  cat > "${pkgdir}/usr/bin/sqlmap" << EOF
-#!/bin/sh
-cd /opt/${pkgname}
-python2 sqlmap.py "\$@"
-EOF
-  cat > "${pkgdir}/usr/bin/sqlmapapi" << EOF
-#!/bin/sh
-cd /opt/${pkgname}
-python2 sqlmapapi.py "\$@"
-EOF
-
-  chmod 755 "${pkgdir}/usr/bin/sqlmap"
-  chmod 755 "${pkgdir}/usr/bin/sqlmapapi"
-}
-
-# vim: ts=2 sw=2 et:

Copied: sqlmap/repos/community-any/PKGBUILD (from rev 256907, 
sqlmap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 12:15:58 UTC (rev 256908)
@@ -0,0 +1,52 @@
+# Maintainer: Levente Polyak 
+# Contributor: Evan Teitelman 
+# Contributor: fxbru 
+
+pkgname=sqlmap
+pkgver=1.1.9
+pkgrel=1
+pkgdesc='Automatic SQL injection and database takeover tool'
+url='http://sqlmap.org'
+arch=('any')
+license=('GPL2')
+depends=('python2' 'sh')
+backup=('etc/sqlmap.conf')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sqlmapproject/sqlmap/archive/${pkgver}.tar.gz)
+sha256sums=('318c7d4a5544ef147913f1c4a7c4e5e0c4f53c8c8e7d137a76afcda171acffdd')
+sha512sums=('603114f9a6fe808d26402a8720ec16744b56513ca89e11db8b0daae59adaca178ca4fb772526a474137a3db705aca57de111ea2d0bd6699600aa233b50a97f4a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 -m compileall .
+  python2 -O -m compileall .
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -d "${pkgdir}/etc"
+  install -d "${pkgdir}/usr/bin"
+  install -d "${pkgdir}/opt/${pkgname}"
+  install -d "${pkgdir}/usr/share/doc"
+
+  mv doc "${pkgdir}/usr/share/doc/${pkgname}"
+  mv sqlmap.conf "${pkgdir}/etc/sqlmap.conf"
+  ln -sf /etc/sqlmap.conf "${pkgdir}/opt/${pkgname}/sqlmap.conf"
+  cp -a --no-preserve=ownership * "${pkgdir}/opt/${pkgname}"
+
+  cat > "${pkgdir}/usr/bin/sqlmap" << EOF
+#!/bin/sh
+cd /opt/${pkgname}
+python2 sqlmap.py "\$@"
+EOF
+  cat > "${pkgdir}/usr/bin/sqlmapapi" << EOF
+#!/bin/sh
+cd /opt/${pkgname}
+python2 sqlmapapi.py "\$@"
+EOF
+
+  chmod 755 "${pkgdir}/usr/bin/sqlmap"
+  chmod 755 "${pkgdir}/usr/bin/sqlmapapi"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 12:15:44
  Author: anthraxx
Revision: 256907

upgpkg: sqlmap 1.1.9-1

Modified:
  sqlmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 12:14:23 UTC (rev 256906)
+++ PKGBUILD2017-09-11 12:15:44 UTC (rev 256907)
@@ -3,7 +3,7 @@
 # Contributor: fxbru 
 
 pkgname=sqlmap
-pkgver=1.1.8
+pkgver=1.1.9
 pkgrel=1
 pkgdesc='Automatic SQL injection and database takeover tool'
 url='http://sqlmap.org'
@@ -12,8 +12,8 @@
 depends=('python2' 'sh')
 backup=('etc/sqlmap.conf')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sqlmapproject/sqlmap/archive/${pkgver}.tar.gz)
-sha256sums=('ef8899ce2dc9ecf567164c56546a7cf291c6b69ce7a5163f1b832727c0080d5f')
-sha512sums=('8d25106f215afb973c9374a62ce45913a50549326f1d14f99dd2ddaeed74874f6019b81a03d4369c2eb12f196ccd9170bd4194928b6ab57ba21a6e7aad300d17')
+sha256sums=('318c7d4a5544ef147913f1c4a7c4e5e0c4f53c8c8e7d137a76afcda171acffdd')
+sha512sums=('603114f9a6fe808d26402a8720ec16744b56513ca89e11db8b0daae59adaca178ca4fb772526a474137a3db705aca57de111ea2d0bd6699600aa233b50a97f4a')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2017-09-11 Thread Alexander Rødseth
Date: Monday, September 11, 2017 @ 12:14:23
  Author: arodseth
Revision: 256906

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

Added:
  povray/repos/community-i686/PKGBUILD
(from rev 256905, povray/trunk/PKGBUILD)
  povray/repos/community-i686/povray3.7.0_rc3-user-conf.patch
(from rev 256905, povray/trunk/povray3.7.0_rc3-user-conf.patch)
  povray/repos/community-x86_64/PKGBUILD
(from rev 256905, povray/trunk/PKGBUILD)
  povray/repos/community-x86_64/povray3.7.0_rc3-user-conf.patch
(from rev 256905, povray/trunk/povray3.7.0_rc3-user-conf.patch)
Deleted:
  povray/repos/community-i686/PKGBUILD
  povray/repos/community-i686/povray3.7.0_rc3-user-conf.patch
  povray/repos/community-x86_64/PKGBUILD
  povray/repos/community-x86_64/povray3.7.0_rc3-user-conf.patch

--+
 /PKGBUILD|  128 +
 /povray3.7.0_rc3-user-conf.patch |   54 
 community-i686/PKGBUILD  |   64 --
 community-i686/povray3.7.0_rc3-user-conf.patch   |   27 
 community-x86_64/PKGBUILD|   64 --
 community-x86_64/povray3.7.0_rc3-user-conf.patch |   27 
 6 files changed, 182 insertions(+), 182 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 12:13:35 UTC (rev 256905)
+++ community-i686/PKGBUILD 2017-09-11 12:14:23 UTC (rev 256906)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Tom Newsom 
-# Contributor: tobias 
-# Contributor: red_over_blue
-# Contributor: neri
-
-pkgname=povray
-pkgver=3.7
-pkgrel=15
-epoch=1
-pkgdesc='Script based raytracer for creating 3D graphics'
-arch=('x86_64' 'i686')
-license=('AGPL3')
-url='http://povray.org/'
-depends=('libtiff' 'libpng' 'boost-libs' 'openexr')
-makedepends=('boost' 'openexr')
-backup=("etc/povray/$pkgver/povray.conf"
-"etc/povray/$pkgver/povray.ini")
-source=("$pkgname-$pkgver.zip::https://github.com/POV-Ray/povray/archive/3.7-stable.zip;
-'povray3.7.0_rc3-user-conf.patch')
-sha256sums=('48d28a88d5e82506fd52ec5b1d9fcde06a39c866d045c53c8c441d0207c753e3'
-'95b04ec4973e6e8a80fc83df2e3caff0b4d6699c4154144f3017d42cab7236e0')
-
-prepare() {
-  cd "$pkgname-$pkgver-stable/unix"
-
-  sed 's/automake --w/automake --add-missing --w/g' -i prebuild.sh
-  sed 's/dist-bzip2/dist-bzip2 subdir-objects/g' -i configure.ac
-  ./prebuild.sh
-
-  cd ..
-  ./bootstrap
-  patch -p1 < "$srcdir/povray3.7.0_rc3-user-conf.patch"
-}
-
-build() {
-  cd "$pkgname-$pkgver-stable"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
-LIBS="-lboost_system -lboost_thread" \
-COMPILED_BY='Arch Linux'
-  make \
-CXXFLAGS+="-std=c++03 -w -lboost_system -lboost_thread"
-  gzip -f povray.1
-}
-
-package() {
-  cd "$pkgname-$pkgver-stable"
-
-  install -d "$pkgdir/usr/share/$pkgname-$pkgver"
-  install -d "$pkgdir/usr/share/doc/$pkgname-$pkgver"
-  cp -r icons include ini scenes scripts "$pkgdir/usr/share/$pkgname-$pkgver"
-  cp -r doc "$pkgdir/usr/share/doc/$pkgname-$pkgver"
-  install -Dm755 unix/povray "$pkgdir/usr/bin/povray"
-  install -Dm644 povray.conf "$pkgdir/etc/povray/$pkgver/povray.conf"
-  install -Dm644 povray.ini "$pkgdir/etc/povray/$pkgver/povray.ini"
-  install -Dm644 povray.1.gz "$pkgdir/usr/share/man/man1/povray.1.gz"
-}
-
-# getver: povray.org/documentation
-# vim:set ts=2 sw=2 et:

Copied: povray/repos/community-i686/PKGBUILD (from rev 256905, 
povray/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 12:14:23 UTC (rev 256906)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Tom Newsom 
+# Contributor: tobias 
+# Contributor: red_over_blue
+# Contributor: neri
+
+pkgname=povray
+pkgver=3.7.2_alpha
+pkgrel=1
+epoch=1
+pkgdesc='Script based raytracer for creating 3D graphics'
+arch=('x86_64' 'i686')
+license=('AGPL3')
+url='http://povray.org/'
+depends=('libtiff' 'libpng' 'boost-libs' 'openexr')
+makedepends=('boost' 'git')
+backup=("etc/povray/$pkgver/povray.conf"
+"etc/povray/$pkgver/povray.ini")
+source=('git+https://github.com/POV-Ray/povray#commit=5410fd423cebbf2270fe16888edbe2ca28b99ec7'
+'povray3.7.0_rc3-user-conf.patch')
+sha256sums=('SKIP'
+'95b04ec4973e6e8a80fc83df2e3caff0b4d6699c4154144f3017d42cab7236e0')
+
+prepare() {
+  cd "$pkgname/unix"
+
+  sed 's/automake --w/automake --add-missing --w/g' -i prebuild.sh
+  sed 's/dist-bzip2/dist-bzip2 subdir-objects/g' -i configure.ac
+  ./prebuild.sh
+
+  cd ..
+  ./bootstrap
+  patch -p1 < "$srcdir/povray3.7.0_rc3-user-conf.patch"

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 12:13:24
  Author: anthraxx
Revision: 256904

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

Added:
  pngcrush/repos/community-i686/LICENSE
(from rev 256903, pngcrush/trunk/LICENSE)
  pngcrush/repos/community-i686/PKGBUILD
(from rev 256903, pngcrush/trunk/PKGBUILD)
  pngcrush/repos/community-x86_64/LICENSE
(from rev 256903, pngcrush/trunk/LICENSE)
  pngcrush/repos/community-x86_64/PKGBUILD
(from rev 256903, pngcrush/trunk/PKGBUILD)
Deleted:
  pngcrush/repos/community-i686/LICENSE
  pngcrush/repos/community-i686/PKGBUILD
  pngcrush/repos/community-x86_64/LICENSE
  pngcrush/repos/community-x86_64/PKGBUILD

---+
 /LICENSE  |   84 
 /PKGBUILD |   78 
 community-i686/LICENSE|   42 --
 community-i686/PKGBUILD   |   39 
 community-x86_64/LICENSE  |   42 --
 community-x86_64/PKGBUILD |   39 
 6 files changed, 162 insertions(+), 162 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2017-09-11 12:12:43 UTC (rev 256903)
+++ community-i686/LICENSE  2017-09-11 12:13:24 UTC (rev 256904)
@@ -1,42 +0,0 @@
-
-NOTICES
-
-If you have modified this source, you may insert additional notices
-immediately after this sentence.
-
-COPYRIGHT:
-
-Copyright (C) 1998-2002,2006-2009 Glenn Randers-Pehrson
-  (glennrp at users.sf.net)
-Copyright (C) 2005  Greg Roelofs
-
-DISCLAIMERS:
-
-The pngcrush computer program is supplied "AS IS".  The Author disclaims all
-warranties, expressed or implied, including, without limitation, the
-warranties of merchantability and of fitness for any purpose.  The
-Author assumes no liability for direct, indirect, incidental, special,
-exemplary, or consequential damages, which may result from the use of
-the computer program, even if advised of the possibility of such damage.
-There is no warranty against interference with your enjoyment of the
-computer program or against infringement.  There is no warranty that my
-efforts or the computer program will fulfill any of your particular purposes
-or needs.  This computer program is provided with all faults, and the entire
-risk of satisfactory quality, performance, accuracy, and effort is with
-the user.
-
-LICENSE:
-
-Permission is hereby irrevocably granted to everyone to use, copy, modify,
-and distribute this source code, or portions hereof, or executable programs
-compiled from it, for any purpose, without payment of any fee, subject to
-the following restrictions:
-
-1. The origin of this source code must not be misrepresented.
-
-2. Altered versions must be plainly marked as such and must not be
-   misrepresented as being the original source.
-
-3. This Copyright notice, disclaimer, and license may not be removed
-   or altered from any source or altered source distribution.
-

Copied: pngcrush/repos/community-i686/LICENSE (from rev 256903, 
pngcrush/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2017-09-11 12:13:24 UTC (rev 256904)
@@ -0,0 +1,42 @@
+
+NOTICES
+
+If you have modified this source, you may insert additional notices
+immediately after this sentence.
+
+COPYRIGHT:
+
+Copyright (C) 1998-2002,2006-2009 Glenn Randers-Pehrson
+  (glennrp at users.sf.net)
+Copyright (C) 2005  Greg Roelofs
+
+DISCLAIMERS:
+
+The pngcrush computer program is supplied "AS IS".  The Author disclaims all
+warranties, expressed or implied, including, without limitation, the
+warranties of merchantability and of fitness for any purpose.  The
+Author assumes no liability for direct, indirect, incidental, special,
+exemplary, or consequential damages, which may result from the use of
+the computer program, even if advised of the possibility of such damage.
+There is no warranty against interference with your enjoyment of the
+computer program or against infringement.  There is no warranty that my
+efforts or the computer program will fulfill any of your particular purposes
+or needs.  This computer program is provided with all faults, and the entire
+risk of satisfactory quality, performance, accuracy, and effort is with
+the user.
+
+LICENSE:
+
+Permission is hereby irrevocably granted to everyone to use, copy, modify,
+and distribute this source code, or portions hereof, or executable programs
+compiled from it, for any purpose, without payment of any fee, subject to
+the following restrictions:
+
+1. The origin of this source code must not be misrepresented.
+
+2. Altered versions must be plainly marked as such and must not be
+   misrepresented as being the original source.
+

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

2017-09-11 Thread Alexander Rødseth
Date: Monday, September 11, 2017 @ 12:13:35
  Author: arodseth
Revision: 256905

upgpkg: povray 1:3.7.2_alpha-1

Modified:
  povray/trunk/PKGBUILD

--+
 PKGBUILD |   26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 12:13:24 UTC (rev 256904)
+++ PKGBUILD2017-09-11 12:13:35 UTC (rev 256905)
@@ -6,8 +6,8 @@
 # Contributor: neri
 
 pkgname=povray
-pkgver=3.7
-pkgrel=15
+pkgver=3.7.2_alpha
+pkgrel=1
 epoch=1
 pkgdesc='Script based raytracer for creating 3D graphics'
 arch=('x86_64' 'i686')
@@ -14,16 +14,16 @@
 license=('AGPL3')
 url='http://povray.org/'
 depends=('libtiff' 'libpng' 'boost-libs' 'openexr')
-makedepends=('boost' 'openexr')
+makedepends=('boost' 'git')
 backup=("etc/povray/$pkgver/povray.conf"
 "etc/povray/$pkgver/povray.ini")
-source=("$pkgname-$pkgver.zip::https://github.com/POV-Ray/povray/archive/3.7-stable.zip;
+source=('git+https://github.com/POV-Ray/povray#commit=5410fd423cebbf2270fe16888edbe2ca28b99ec7'
 'povray3.7.0_rc3-user-conf.patch')
-sha256sums=('48d28a88d5e82506fd52ec5b1d9fcde06a39c866d045c53c8c441d0207c753e3'
+sha256sums=('SKIP'
 '95b04ec4973e6e8a80fc83df2e3caff0b4d6699c4154144f3017d42cab7236e0')
 
 prepare() {
-  cd "$pkgname-$pkgver-stable/unix"
+  cd "$pkgname/unix"
 
   sed 's/automake --w/automake --add-missing --w/g' -i prebuild.sh
   sed 's/dist-bzip2/dist-bzip2 subdir-objects/g' -i configure.ac
@@ -35,20 +35,20 @@
 }
 
 build() {
-  cd "$pkgname-$pkgver-stable"
+  cd "$pkgname"
 
   ./configure \
---prefix=/usr \
+LIBS="-lboost_system -lboost_thread" \
+COMPILED_BY='Arch Linux' \
 --sysconfdir=/etc \
-LIBS="-lboost_system -lboost_thread" \
-COMPILED_BY='Arch Linux'
-  make \
-CXXFLAGS+="-std=c++03 -w -lboost_system -lboost_thread"
+--prefix=/usr
+
+  make CXXFLAGS+="-std=c++03 -w -lboost_system -lboost_thread"
   gzip -f povray.1
 }
 
 package() {
-  cd "$pkgname-$pkgver-stable"
+  cd "$pkgname"
 
   install -d "$pkgdir/usr/share/$pkgname-$pkgver"
   install -d "$pkgdir/usr/share/doc/$pkgname-$pkgver"


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

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 12:08:32
  Author: arojas
Revision: 256902

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

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

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

Copied: fplll/repos/community-staging-i686/PKGBUILD (from rev 256901, 
fplll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 12:08:32 UTC (rev 256902)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=fplll
+pkgver=5.2.0
+pkgrel=1
+pkgdesc="Lattice algorithms using floating-point arithmetic"
+arch=(i686 x86_64)
+url="https://github.com/fplll/fplll;
+license=(LGPL)
+depends=(mpfr qd)
+conflicts=(libfplll)
+provides=(libfplll)
+replaces=(libfplll)
+source=("https://github.com/fplll/fplll/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('a39871bc9d351732c230e9e56a9e7f4128f2a5ae3bd4094fe61065d4a8f54dfd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+

Copied: fplll/repos/community-staging-x86_64/PKGBUILD (from rev 256901, 
fplll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-11 12:08:32 UTC (rev 256902)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=fplll
+pkgver=5.2.0
+pkgrel=1
+pkgdesc="Lattice algorithms using floating-point arithmetic"
+arch=(i686 x86_64)
+url="https://github.com/fplll/fplll;
+license=(LGPL)
+depends=(mpfr qd)
+conflicts=(libfplll)
+provides=(libfplll)
+replaces=(libfplll)
+source=("https://github.com/fplll/fplll/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('a39871bc9d351732c230e9e56a9e7f4128f2a5ae3bd4094fe61065d4a8f54dfd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+


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

2017-09-11 Thread Jonathan Steel
Date: Monday, September 11, 2017 @ 07:44:25
  Author: jsteel
Revision: 256883

upgpkg: aws-cli 1.11.149-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 07:44:09 UTC (rev 256882)
+++ PKGBUILD2017-09-11 07:44:25 UTC (rev 256883)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.11.143
+pkgver=1.11.149
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('526080f513b672396dd572cdd056a785')
+md5sums=('9d6a667b0cb6fa5f47e3da1aa59f891b')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-11 Thread Jonathan Steel
Date: Monday, September 11, 2017 @ 07:43:56
  Author: jsteel
Revision: 256881

upgpkg: python-botocore 1.7.7-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 07:41:14 UTC (rev 256880)
+++ PKGBUILD2017-09-11 07:43:56 UTC (rev 256881)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.7.1
+pkgver=1.7.7
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('0cdfe151eff702fe317884b9c1816a01')
+md5sums=('f778f5e91a37177aeaaeac1549700ee1')
 
 build() {
   cd botocore-$pkgver


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

2017-09-11 Thread Jonathan Steel
Date: Monday, September 11, 2017 @ 07:44:35
  Author: jsteel
Revision: 256884

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 07:44:25 UTC (rev 256883)
+++ PKGBUILD2017-09-11 07:44:35 UTC (rev 256884)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.11.143
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('526080f513b672396dd572cdd056a785')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 256883, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 07:44:35 UTC (rev 256884)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.11.149
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('9d6a667b0cb6fa5f47e3da1aa59f891b')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}


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

2017-09-11 Thread Jonathan Steel
Date: Monday, September 11, 2017 @ 07:44:09
  Author: jsteel
Revision: 256882

archrelease: copy trunk to community-any

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

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

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

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


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

2017-09-11 Thread Jonathan Steel
Date: Monday, September 11, 2017 @ 07:41:14
  Author: jsteel
Revision: 256880

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 07:41:04 UTC (rev 256879)
+++ PKGBUILD2017-09-11 07:41:14 UTC (rev 256880)
@@ -1,28 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-
-pkgname=python-s3transfer
-pkgver=0.1.10
-pkgrel=2
-pkgdesc='Amazon S3 Transfer Manager for Python'
-arch=('any')
-url="https://github.com/boto/s3transfer;
-license=('Apache')
-depends=('python-botocore')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('25d8d4d134d9b820b58e139803330e8a')
-
-build() {
-  cd s3transfer-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd s3transfer-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-s3transfer/repos/community-any/PKGBUILD (from rev 256879, 
python-s3transfer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 07:41:14 UTC (rev 256880)
@@ -0,0 +1,28 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+
+pkgname=python-s3transfer
+pkgver=0.1.11
+pkgrel=1
+pkgdesc='Amazon S3 Transfer Manager for Python'
+arch=('any')
+url="https://github.com/boto/s3transfer;
+license=('Apache')
+depends=('python-botocore')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('d1029c6a10da77adc2d4918eedea7065')
+
+build() {
+  cd s3transfer-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd s3transfer-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-09-11 Thread Jonathan Steel
Date: Monday, September 11, 2017 @ 07:38:56
  Author: jsteel
Revision: 256878

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

Added:
  nrpe/repos/community-testing-i686/PKGBUILD
(from rev 256877, nrpe/trunk/PKGBUILD)
  nrpe/repos/community-testing-i686/nrpe.install
(from rev 256877, nrpe/trunk/nrpe.install)
  nrpe/repos/community-testing-x86_64/PKGBUILD
(from rev 256877, nrpe/trunk/PKGBUILD)
  nrpe/repos/community-testing-x86_64/nrpe.install
(from rev 256877, nrpe/trunk/nrpe.install)
Deleted:
  nrpe/repos/community-testing-i686/PKGBUILD
  nrpe/repos/community-testing-i686/nrpe.install
  nrpe/repos/community-testing-x86_64/PKGBUILD
  nrpe/repos/community-testing-x86_64/nrpe.install

---+
 /PKGBUILD |  126 
 /nrpe.install |   42 ++
 community-testing-i686/PKGBUILD   |   63 
 community-testing-i686/nrpe.install   |   21 -
 community-testing-x86_64/PKGBUILD |   63 
 community-testing-x86_64/nrpe.install |   21 -
 6 files changed, 168 insertions(+), 168 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-09-11 07:38:40 UTC (rev 256877)
+++ community-testing-i686/PKGBUILD 2017-09-11 07:38:56 UTC (rev 256878)
@@ -1,63 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Phillip Smith 
-# Contributor: Dale Blount 
-
-pkgname=nrpe
-pkgver=3.2.0
-pkgrel=1
-pkgdesc="Nagios Remote Plugin Executor"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('openssl-1.0')
-optdepends=("monitoring-plugins: common tools for monitoring using $pkgname")
-makedepends=('procps-ng')
-install=$pkgname.install
-backup=('etc/nrpe/nrpe.cfg' 'etc/xinetd.d/nrpe')
-url="https://github.com/NagiosEnterprises/nrpe;
-source=(https://github.com/NagiosEnterprises/nrpe/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz)
-md5sums=('5c81355bcd8b9929ca904879075e1ff5')
-
-build() {
-  cd $pkgname-$pkgver
-
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export sslbin=/usr/bin/openssl-1.0
-  export ssl_inc_dir=/usr/include/openssl-1.0/openssl
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc/nrpe \
---libexecdir=/usr/lib/monitoring-plugins \
---enable-command-args \
---with-nrpe-user=31 --with-nrpe-group=31 \
---with-nagios-user=31 --with-nagios-group=31 \
---with-piddir=/run/nrpe
-
-  make all
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 sample-config/nrpe.cfg "$pkgdir"/etc/nrpe/nrpe.cfg
-  install -Dm644 startup/default-service 
"$pkgdir"/usr/lib/systemd/system/nrpe.service
-  install -Dm644 startup/default-socket 
"$pkgdir"/usr/lib/systemd/system/nrpe.socket
-  install -Dm644 startup/default-xinetd "$pkgdir"/etc/xinetd.d/nrpe
-  install -Dm644 startup/tmpfile.conf "$pkgdir"/usr/lib/tmpfiles.d/nrpe.conf
-
-  install -Dm644 README.md "$pkgdir"/usr/share/doc/$pkgname/README.md
-  install -Dm644 README.SSL.md "$pkgdir"/usr/share/doc/$pkgname/README.SSL.md
-  install -Dm644 SECURITY.md "$pkgdir"/usr/share/doc/$pkgname/SECURITY.md
-  install -Dm644 LEGAL "$pkgdir"/usr/share/licenses/$pkgname/LEGAL
-
-  # FS#52873
-  sed -i 's/=31$/=nrpe/g' "$pkgdir"/etc/nrpe/nrpe.cfg
-
-  # Tidy up
-  chmod 755 "$pkgdir"/usr/lib/monitoring-plugins
-  chown -R root:root "$pkgdir"/usr/lib/monitoring-plugins
-  rm -f "$pkgdir"/usr/bin/nrpe-uninstall
-  rm -rf "$pkgdir"/run
-}

Copied: nrpe/repos/community-testing-i686/PKGBUILD (from rev 256877, 
nrpe/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-09-11 07:38:56 UTC (rev 256878)
@@ -0,0 +1,63 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Phillip Smith 
+# Contributor: Dale Blount 
+
+pkgname=nrpe
+pkgver=3.2.1
+pkgrel=1
+pkgdesc="Nagios Remote Plugin Executor"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('openssl-1.0')
+optdepends=("monitoring-plugins: common tools for monitoring using $pkgname")
+makedepends=('procps-ng')
+install=$pkgname.install
+backup=('etc/nrpe/nrpe.cfg' 'etc/xinetd.d/nrpe')
+url="https://github.com/NagiosEnterprises/nrpe;
+source=(https://github.com/NagiosEnterprises/nrpe/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz)
+md5sums=('8997e195fea93cdceb8c7ed8ac1d43bc')
+
+build() {
+  cd $pkgname-$pkgver
+
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export sslbin=/usr/bin/openssl-1.0
+  export ssl_inc_dir=/usr/include/openssl-1.0/openssl
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc/nrpe \
+--libexecdir=/usr/lib/monitoring-plugins \
+--enable-command-args \

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

2017-09-11 Thread Jonathan Steel
Date: Monday, September 11, 2017 @ 07:38:40
  Author: jsteel
Revision: 256877

upgpkg: nrpe 3.2.1-1

Modified:
  nrpe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 05:55:09 UTC (rev 256876)
+++ PKGBUILD2017-09-11 07:38:40 UTC (rev 256877)
@@ -3,7 +3,7 @@
 # Contributor: Dale Blount 
 
 pkgname=nrpe
-pkgver=3.2.0
+pkgver=3.2.1
 pkgrel=1
 pkgdesc="Nagios Remote Plugin Executor"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 backup=('etc/nrpe/nrpe.cfg' 'etc/xinetd.d/nrpe')
 url="https://github.com/NagiosEnterprises/nrpe;
 
source=(https://github.com/NagiosEnterprises/nrpe/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz)
-md5sums=('5c81355bcd8b9929ca904879075e1ff5')
+md5sums=('8997e195fea93cdceb8c7ed8ac1d43bc')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:10:57
  Author: anthraxx
Revision: 256915

upgpkg: nim 0.17.2-1

Modified:
  nim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 14:04:36 UTC (rev 256914)
+++ PKGBUILD2017-09-11 14:10:57 UTC (rev 256915)
@@ -6,8 +6,8 @@
 
 pkgname=nim
 _pkgname=Nim
-pkgver=0.17.0
-pkgrel=2
+pkgver=0.17.2
+pkgrel=1
 pkgdesc='Imperative, multi-paradigm, compiled programming language'
 url='https://nim-lang.org/'
 arch=('x86_64' 'i686')
@@ -16,10 +16,10 @@
 options=('!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/Nim/archive/v${pkgver}.tar.gz
 
csources-${pkgver}.tar.gz::https://github.com/nim-lang/csources/archive/v${pkgver}.tar.gz)
-sha256sums=('9f954f03a40e8fba32e02fcb91499e518f8e220809aef9e22bb7443c96bbbdcd'
-'6b8de28dc317534e45366b62dcad14b9932c0de398c44e1506f5bbd80019c671')
-sha512sums=('39060bf684e0ec9952a4e71b49fc7ad2363622059f7ed3d4355284e3be925dc60c7aa1b7b9f7e1bba7bbd4a65c88444755daec25d1a8b3717f883ed520f26155'
-
'fbf64d347e25da48d5237eef35209774f0e542975465c5d2cd98878f10ea0ab62ad1404758131543b8cf634afabc90d85e9e59dec96eae9bb60fffb88d204d92')
+sha256sums=('eb8a98c7e576e8d858de98473569a29c539308fc7bb15a086b3f2b73d675f752'
+'7eb28ba7d5a03d02fc1c1fd9089c037de9c058d327fd6e95d599db63d9afa9c8')
+sha512sums=('02d773a338cf4aeeedd614fbd694feb4b64c620e63415a979e9f4fdf29d306315ab8a07d81f7a5389744d6f526eee2b1774a1ee7a6911f5bd03bdbb0e30061e7'
+
'4a8f1e87bd96ab33998b0d3415c0ba9560b78795e0396d8af8b588a93c23477097f2c5388b4e612fbc142b490480326b394a933c805a3585cd6f3d7e8390e3e6')
 
 prepare() {
   cd ${_pkgname}-${pkgver}


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:34:42
  Author: anthraxx
Revision: 305350

upgpkg: memcached 1.5.1-1

Modified:
  memcached/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 14:05:38 UTC (rev 305349)
+++ PKGBUILD2017-09-11 14:34:42 UTC (rev 305350)
@@ -3,7 +3,7 @@
 # Contributor: Michael Irwin <6d6...@gmail.com>
 
 pkgname=memcached
-pkgver=1.4.37
+pkgver=1.5.1
 pkgrel=1
 pkgdesc='Distributed memory object caching system'
 url='https://memcached.org/'
@@ -15,10 +15,10 @@
 source=(https://www.memcached.org/files/${pkgname}-${pkgver}.tar.gz
 memcached.service
 memcached.tmpfiles)
-sha256sums=('2f335ab9110ce39036c5271ef39a582a852e424bc9659e421844073cfdf8606b'
+sha256sums=('a87908936b51d1bd3ef10a2347eef5647f003b63407a5d8161fa7928b1cd6b5c'
 'fd60fde92b959dc4160facc0d165f04319d2ece4d2c59b68d8ae24824abea7dd'
 'c4d0ae2218b99a276ff6e0084ae81e66add0ca9347e4bde70e9172db6e44002a')
-sha512sums=('eadcb2ea3caf5946f3348c3cddc9fa4de3268589096a8fbfcb7c2867ce317390bdb91a2539353c756d214eb02ef3f0f0e71adb5dd46fd37fda4e82a59173e1b4'
+sha512sums=('686ad82f1fd73f683fa09930d4e14aa85bd8237106e39752c9676d31aa397db1687378c4ddfadf4591f7c623837cadf90e6643263aea78a80eb294683ed0dfbb'
 
'5b006064b3ab31a6982f5c7b1ab4a49d64118a459913bd4be18ca63bf606dcae3550121d05a34ac8932d28b367e18fa76699c46e311b0b6a22f36ab1885ebebe'
 
'960705ff74d25afed477e0b2a5872a3a4fb49ed3105a351f0d0224abc947778f9dbda81e80be94ab636da4a8411a9dd56a8fd4513e5b86a3096a14fa67f1548b')
 


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:55:27
  Author: anthraxx
Revision: 305355

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

Added:
  vim/repos/extra-i686/PKGBUILD
(from rev 305354, vim/trunk/PKGBUILD)
  vim/repos/extra-i686/archlinux.vim
(from rev 305354, vim/trunk/archlinux.vim)
  vim/repos/extra-i686/vimdoc.hook
(from rev 305354, vim/trunk/vimdoc.hook)
  vim/repos/extra-i686/vimrc
(from rev 305354, vim/trunk/vimrc)
  vim/repos/extra-x86_64/PKGBUILD
(from rev 305354, vim/trunk/PKGBUILD)
  vim/repos/extra-x86_64/archlinux.vim
(from rev 305354, vim/trunk/archlinux.vim)
  vim/repos/extra-x86_64/vimdoc.hook
(from rev 305354, vim/trunk/vimdoc.hook)
  vim/repos/extra-x86_64/vimrc
(from rev 305354, vim/trunk/vimrc)
Deleted:
  vim/repos/extra-i686/PKGBUILD
  vim/repos/extra-i686/archlinux.vim
  vim/repos/extra-i686/vimdoc.hook
  vim/repos/extra-i686/vimrc
  vim/repos/extra-x86_64/PKGBUILD
  vim/repos/extra-x86_64/archlinux.vim
  vim/repos/extra-x86_64/vimdoc.hook
  vim/repos/extra-x86_64/vimrc

+
 /PKGBUILD  |  430 +++
 /archlinux.vim |   50 +
 /vimdoc.hook   |   22 ++
 /vimrc |   36 +++
 extra-i686/PKGBUILD|  215 -
 extra-i686/archlinux.vim   |   25 --
 extra-i686/vimdoc.hook |   11 -
 extra-i686/vimrc   |   18 -
 extra-x86_64/PKGBUILD  |  215 -
 extra-x86_64/archlinux.vim |   25 --
 extra-x86_64/vimdoc.hook   |   11 -
 extra-x86_64/vimrc |   18 -
 12 files changed, 538 insertions(+), 538 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-11 14:55:14 UTC (rev 305354)
+++ extra-i686/PKGBUILD 2017-09-11 14:55:27 UTC (rev 305355)
@@ -1,215 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-# Contributor: Thomas Dziedzic 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: tobias [ tobias at archlinux org ]
-# Contributor: Daniel J Griffiths 
-# Contributor: Christian Hesse 
-# Contributor: Eli Schwartz
-
-pkgbase=vim
-pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=8.0.1066
-_versiondir=80
-pkgrel=1
-url='http://www.vim.org'
-arch=('i686' 'x86_64')
-license=('custom:vim')
-makedepends=('gpm' 'python2' 'python' 'ruby' 'libxt' 'gtk3' 'lua' 'gawk' 'tcl')
-source=(vim-${pkgver}.tar.gz::https://github.com/vim/vim/archive/v${pkgver}.tar.gz
-vimrc
-archlinux.vim
-vimdoc.hook)
-sha256sums=('e1a639f959c236200b86843b8a7179b719d24c567cde4b515d34543731b1d1b6'
-'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
-'0cf8b42732111d0c66c3908a76d832736e8f8dc3abef81cb092ddf84cb862ea2'
-'7095cafac21df7aa42749d6864d1c0549fe65771d8edda3102c931c60782b6b9')
-sha512sums=('59ea0f2254c6038277167113c234f2a6f32152ed8aadf2dec2204ebc6e57460a1da18aeb9b9fa786d0361c2928276df4e4278b73b90a6a56ae7a9db2ad042ade'
-
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
-
'935c15a4cc55b9209e6b6c974df765cc6683ae32ccea38acadc825bbc9c60b97ebe14aec8814b7e52080c0d0ded520a68ff1880ab64f320b08c181b6bf862edb'
-
'1e06e981691b17662fd0fddac5c00c87c920d1b4a1cbb6191c42d57cc40b00af12710e26b22fcfc0901bb8142b15f6a04aa65cec2d9b3bb9d5a06cb650d3ab9c')
-
-prepare() {
-  (cd vim-${pkgver}/src
-# define the place for the global (g)vimrc file (set to /etc/vimrc)
-sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' feature.h
-sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' feature.h
-autoconf
-  )
-  cp -a vim-${pkgver} gvim-${pkgver}
-}
-
-build() {
-  msg2 "Building vim..."
-  (cd vim-${pkgver}
-./configure \
-  --prefix=/usr \
-  --localstatedir=/var/lib/vim \
-  --with-features=huge \
-  --with-compiledby='Arch Linux' \
-  --enable-gpm \
-  --enable-acl \
-  --with-x=no \
-  --disable-gui \
-  --enable-multibyte \
-  --enable-cscope \
-  --enable-netbeans \
-  --enable-perlinterp=dynamic \
-  --enable-pythoninterp=dynamic \
-  --enable-python3interp=dynamic \
-  --enable-rubyinterp=dynamic \
-  --enable-luainterp=dynamic \
-  --enable-tclinterp=dynamic
-make
-  )
-
-  msg2 "Building gvim..."
-  (cd gvim-${pkgver}
-./configure \
-  --prefix=/usr \
-  --localstatedir=/var/lib/vim \
-  --with-features=huge \
-  --with-compiledby='Arch Linux' \
-  --enable-gpm \
-  --enable-acl \
-  --with-x=yes \
-  --enable-gui=gtk3 \
-  --enable-multibyte \
-  --enable-cscope \
-  --enable-netbeans \
-  --enable-perlinterp=dynamic \
-  --enable-pythoninterp=dynamic \
-  

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

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 15:22:43
  Author: arojas
Revision: 256936

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

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

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

Copied: fpylll/repos/community-staging-i686/PKGBUILD (from rev 256935, 
fpylll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 15:22:43 UTC (rev 256936)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgbase=fpylll
+pkgname=(python-fpylll python2-fpylll)
+pkgver=0.3.0dev
+pkgrel=1
+pkgdesc="A Python interface for fplll"
+arch=(i686 x86_64)
+url="https://github.com/fplll/fpylll;
+license=(GPL2)
+makedepends=(fplll python-numpy python-cysignals cython python2-numpy 
python2-cysignals cython2)
+source=("https://github.com/fplll/fpylll/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz;)
+sha256sums=('75303197286c0a5f5b123dcf01304585902c4e7031b30a5c70edbfc28327278b')
+
+prepare() {
+  cp -r $pkgbase-$pkgver{,-py2}
+
+# workaround encoding error
+#  sed -e '/long_description/d' -i $pkgbase-$pkgver/setup.py
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/$pkgbase-$pkgver-py2
+  python2 setup.py build
+}
+
+package_python-fpylll() {
+  depends=(fplll python-numpy python-cysignals)
+
+  cd $pkgbase-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+}
+
+package_python2-fpylll() {
+  depends=(fplll python2-numpy python2-cysignals)
+  optdepends=('sagemath: use Sage integers implementation')  
+  conflicts=(fpylll)
+  provides=(fpylll)
+  replaces=(fpylll)
+
+  cd $pkgbase-$pkgver-py2 
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+}

Copied: fpylll/repos/community-staging-x86_64/PKGBUILD (from rev 256935, 
fpylll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-11 15:22:43 UTC (rev 256936)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgbase=fpylll
+pkgname=(python-fpylll python2-fpylll)
+pkgver=0.3.0dev
+pkgrel=1
+pkgdesc="A Python interface for fplll"
+arch=(i686 x86_64)
+url="https://github.com/fplll/fpylll;
+license=(GPL2)
+makedepends=(fplll python-numpy python-cysignals cython python2-numpy 
python2-cysignals cython2)
+source=("https://github.com/fplll/fpylll/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz;)
+sha256sums=('75303197286c0a5f5b123dcf01304585902c4e7031b30a5c70edbfc28327278b')
+
+prepare() {
+  cp -r $pkgbase-$pkgver{,-py2}
+
+# workaround encoding error
+#  sed -e '/long_description/d' -i $pkgbase-$pkgver/setup.py
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/$pkgbase-$pkgver-py2
+  python2 setup.py build
+}
+
+package_python-fpylll() {
+  depends=(fplll python-numpy python-cysignals)
+
+  cd $pkgbase-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+}
+
+package_python2-fpylll() {
+  depends=(fplll python2-numpy python2-cysignals)
+  optdepends=('sagemath: use Sage integers implementation')  
+  conflicts=(fpylll)
+  provides=(fpylll)
+  replaces=(fpylll)
+
+  cd $pkgbase-$pkgver-py2 
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+}


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:20:48
  Author: anthraxx
Revision: 256927

upgpkg: nimble 1:0.8.8-1

Modified:
  nimble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 14:16:15 UTC (rev 256926)
+++ PKGBUILD2017-09-11 14:20:48 UTC (rev 256927)
@@ -2,7 +2,7 @@
 # Contributor: Alexander F Rødseth 
 
 pkgname=nimble
-pkgver=0.8.6
+pkgver=0.8.8
 pkgrel=1
 epoch=1
 pkgdesc='Package manager for the Nim programming language'
@@ -12,8 +12,8 @@
 depends=('glibc')
 makedepends=('nim')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/nimble/archive/v${pkgver}.tar.gz)
-sha256sums=('af251c1011fe1d6e72a9d18a7672a8b90013dd6659085082e525d31204ca6ddf')
-sha512sums=('4d8fc1e49d3bc981cab91ce7c4c368b33b437df317f3d0ae40cab22d51a4d4c3c1270dcca1f3798a69b8b3cfe8f50752ae77bf09ca744543932c99d3622329d6')
+sha256sums=('4a849370f58af0d6fe940c15536ab9487f75517c695dd845f84ad96e71f2f4bd')
+sha512sums=('4201ed0856b26505e83aa885624065a0200dead9cbc0d5bc0ba750da597b9c37708c1783f7fe518d2bdff954b53ccbc9f92d723f2ce41f4799c8fb9d895c1c6e')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:20:57
  Author: anthraxx
Revision: 256928

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 14:20:48 UTC (rev 256927)
+++ community-i686/PKGBUILD 2017-09-11 14:20:57 UTC (rev 256928)
@@ -1,34 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander F Rødseth 
-
-pkgname=nimble
-pkgver=0.8.6
-pkgrel=1
-epoch=1
-pkgdesc='Package manager for the Nim programming language'
-url='https://github.com/nim-lang/nimble'
-arch=('x86_64' 'i686')
-license=('BSD')
-depends=('glibc')
-makedepends=('nim')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/nimble/archive/v${pkgver}.tar.gz)
-sha256sums=('af251c1011fe1d6e72a9d18a7672a8b90013dd6659085082e525d31204ca6ddf')
-sha512sums=('4d8fc1e49d3bc981cab91ce7c4c368b33b437df317f3d0ae40cab22d51a4d4c3c1270dcca1f3798a69b8b3cfe8f50752ae77bf09ca744543932c99d3622329d6')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  nim c -d:release src/nimble
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 src/nimble -t "${pkgdir}/usr/bin"
-  install -Dm 644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Nimble looks for nimscriptapi.nim in /usr/bin/nimblepkg/, of all places.
-  cp -r src/nimblepkg "${pkgdir}/usr/share/${pkgname}"
-  ln -s /usr/share/${pkgname} "${pkgdir}/usr/bin/nimblepkg"
-}
-
-# vim: ts=2 sw=2 et:

Copied: nimble/repos/community-i686/PKGBUILD (from rev 256927, 
nimble/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 14:20:57 UTC (rev 256928)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander F Rødseth 
+
+pkgname=nimble
+pkgver=0.8.8
+pkgrel=1
+epoch=1
+pkgdesc='Package manager for the Nim programming language'
+url='https://github.com/nim-lang/nimble'
+arch=('x86_64' 'i686')
+license=('BSD')
+depends=('glibc')
+makedepends=('nim')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/nimble/archive/v${pkgver}.tar.gz)
+sha256sums=('4a849370f58af0d6fe940c15536ab9487f75517c695dd845f84ad96e71f2f4bd')
+sha512sums=('4201ed0856b26505e83aa885624065a0200dead9cbc0d5bc0ba750da597b9c37708c1783f7fe518d2bdff954b53ccbc9f92d723f2ce41f4799c8fb9d895c1c6e')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  nim c -d:release src/nimble
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm 755 src/nimble -t "${pkgdir}/usr/bin"
+  install -Dm 644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # Nimble looks for nimscriptapi.nim in /usr/bin/nimblepkg/, of all places.
+  cp -r src/nimblepkg "${pkgdir}/usr/share/${pkgname}"
+  ln -s /usr/share/${pkgname} "${pkgdir}/usr/bin/nimblepkg"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 14:20:48 UTC (rev 256927)
+++ community-x86_64/PKGBUILD   2017-09-11 14:20:57 UTC (rev 256928)
@@ -1,34 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander F Rødseth 
-
-pkgname=nimble
-pkgver=0.8.6
-pkgrel=1
-epoch=1
-pkgdesc='Package manager for the Nim programming language'
-url='https://github.com/nim-lang/nimble'
-arch=('x86_64' 'i686')
-license=('BSD')
-depends=('glibc')
-makedepends=('nim')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/nimble/archive/v${pkgver}.tar.gz)
-sha256sums=('af251c1011fe1d6e72a9d18a7672a8b90013dd6659085082e525d31204ca6ddf')
-sha512sums=('4d8fc1e49d3bc981cab91ce7c4c368b33b437df317f3d0ae40cab22d51a4d4c3c1270dcca1f3798a69b8b3cfe8f50752ae77bf09ca744543932c99d3622329d6')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  nim c -d:release src/nimble
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 src/nimble -t "${pkgdir}/usr/bin"
-  install -Dm 644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Nimble looks for nimscriptapi.nim in /usr/bin/nimblepkg/, of all places.
-  cp -r src/nimblepkg "${pkgdir}/usr/share/${pkgname}"
-  ln -s /usr/share/${pkgname} "${pkgdir}/usr/bin/nimblepkg"
-}
-
-# vim: ts=2 sw=2 et:

Copied: 

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:36:08
  Author: anthraxx
Revision: 256930

archrelease: copy trunk to community-any

Added:
  python-async-timeout/repos/community-any/PKGBUILD
(from rev 256929, python-async-timeout/trunk/PKGBUILD)
Deleted:
  python-async-timeout/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 14:36:02 UTC (rev 256929)
+++ PKGBUILD2017-09-11 14:36:08 UTC (rev 256930)
@@ -1,30 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Stunts 
-# Contributor: Phil Schaf 
-# Contributor: Carl George < arch at cgtx dot us >
-
-_pkgname=async-timeout
-pkgname=python-async-timeout
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='Asyncio-compatible timeout class'
-url='https://github.com/aio-libs/async-timeout'
-arch=('any')
-license=('Apache')
-depends=('python')
-makedepends=('python-setuptools')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/async-timeout/archive/v${pkgver}.tar.gz)
-sha256sums=('31b7d8e5c89870d0002c6faad79e39fcae9228523b33d3d0c84c0330b91c4b59')
-sha512sums=('b2f8fee2589f46d67adefd30378f9d7b1a6d92f371ffbbe7b82fb9a34b9948c8d857a81152a097531ec7a6388a7bd1a1d55451bd104aa62c1df7af7fecaf7e14')
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  python setup.py install --skip-build -O1 --root="${pkgdir}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-async-timeout/repos/community-any/PKGBUILD (from rev 256929, 
python-async-timeout/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 14:36:08 UTC (rev 256930)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+# Contributor: Stunts 
+# Contributor: Phil Schaf 
+# Contributor: Carl George < arch at cgtx dot us >
+
+_pkgname=async-timeout
+pkgname=python-async-timeout
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='Asyncio-compatible timeout class'
+url='https://github.com/aio-libs/async-timeout'
+arch=('any')
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/async-timeout/archive/v${pkgver}.tar.gz)
+sha256sums=('627366ef67f2a5dcab7e7d672794db3c70bddaac13d200a21883c37578b85221')
+sha512sums=('82b67cdc0bf791936a3d775cfa7594d7ef6a21c3b0b5390901577aa4a4f24435b7fcabf9550fbfb36ee5739df0d9c98e4cda4d1e3f71eb8e2c5a8f2afd1ce48b')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:57:14
  Author: anthraxx
Revision: 256932

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 14:57:03 UTC (rev 256931)
+++ community-i686/PKGBUILD 2017-09-11 14:57:14 UTC (rev 256932)
@@ -1,33 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=xwallpaper
-pkgver=0.2.0
-pkgrel=3
-pkgdesc='Wallpaper setting utility for X'
-url='https://github.com/stoeckmann/xwallpaper'
-arch=('i686' 'x86_64')
-license=('ISC')
-depends=('pixman' 'libpng' 'libxpm' 'xcb-util' 'xcb-util-image' 
'libjpeg-turbo')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/stoeckmann/xwallpaper/archive/v${pkgver}.tar.gz)
-sha256sums=('436bc3554b504d897d1c7599118164a4e30cc26d88846bb6e71de3f4f7ce1fdf')
-sha512sums=('3556106f9696a5aa60c28d541fc89778194e5cd5edc6f3c299f7ec95c824b7b81baa95f6ceff88688179d2627d64718ffa99291192c9d2b212ae05a694754b11')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: xwallpaper/repos/community-i686/PKGBUILD (from rev 256931, 
xwallpaper/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 14:57:14 UTC (rev 256932)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+
+pkgname=xwallpaper
+pkgver=0.2.1
+pkgrel=1
+pkgdesc='Wallpaper setting utility for X'
+url='https://github.com/stoeckmann/xwallpaper'
+arch=('i686' 'x86_64')
+license=('ISC')
+depends=('pixman' 'libpng' 'libxpm' 'xcb-util' 'xcb-util-image' 
'libjpeg-turbo')
+source=(https://github.com/stoeckmann/xwallpaper/releases/download/v${pkgver}/xwallpaper-${pkgver}.tar.gz{,.sig})
+sha256sums=('bfa8b15f810ea11ceb8a95ccfc11dfd2f875ec8d6ae8625b742c0a4ec196a351'
+'SKIP')
+sha512sums=('a1dfa3542666500b2b2fc67bfd68ac740ba4a9e38ea1a6a65fff9697dad460a20edab9bd4827017c72967c6034266510e455eb778bf80968bd49ba45976d182e'
+'SKIP')
+validpgpkeys=('CDB24BD3BDDCBCBBAE5CB6207DB470F35B0B8B18') # Tobias Stoeckmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 14:57:03 UTC (rev 256931)
+++ community-x86_64/PKGBUILD   2017-09-11 14:57:14 UTC (rev 256932)
@@ -1,33 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=xwallpaper
-pkgver=0.2.0
-pkgrel=3
-pkgdesc='Wallpaper setting utility for X'
-url='https://github.com/stoeckmann/xwallpaper'
-arch=('i686' 'x86_64')
-license=('ISC')
-depends=('pixman' 'libpng' 'libxpm' 'xcb-util' 'xcb-util-image' 
'libjpeg-turbo')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/stoeckmann/xwallpaper/archive/v${pkgver}.tar.gz)
-sha256sums=('436bc3554b504d897d1c7599118164a4e30cc26d88846bb6e71de3f4f7ce1fdf')
-sha512sums=('3556106f9696a5aa60c28d541fc89778194e5cd5edc6f3c299f7ec95c824b7b81baa95f6ceff88688179d2627d64718ffa99291192c9d2b212ae05a694754b11')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: xwallpaper/repos/community-x86_64/PKGBUILD (from rev 256931, 
xwallpaper/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in postgresql-old-upgrade/trunk (PKGBUILD)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:43:45
  Author: anthraxx
Revision: 305352

upgpkg: postgresql-old-upgrade 9.5.9-1

Modified:
  postgresql-old-upgrade/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 14:34:53 UTC (rev 305351)
+++ PKGBUILD2017-09-11 14:43:45 UTC (rev 305352)
@@ -2,9 +2,9 @@
 # Maintainer: Dan McGee 
 
 pkgname=postgresql-old-upgrade
-pkgver=9.5.8
+pkgver=9.5.9
 _majorver=${pkgver%.*}
-pkgrel=3
+pkgrel=1
 pkgdesc='PostgreSQL build for migrating between major versions with pg_upgrade'
 url='https://www.postgresql.org/'
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0' 'pam')
 makedepends=('krb5' 'python2' 'perl' 'tcl>=8.6.0')
 
source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2)
-sha256sums=('ade57068f134f36710fa953e1ef79185abd96572f8098741413132f79ed37202')
-sha512sums=('4a11f0a16df460391c8250122ca8bf1ab76e49672a8c003ed09718bb4ce2aa57757e7aaec6e41b53d0d1ada293172b974761606647fcc8b4fce8807490b6ef10')
+sha256sums=('e98cd5c664ab5a05cb83618ba8078647815cb71f7a60437f0322c7518727cdd4')
+sha512sums=('2c6a887b80a4b1d1da18282f443419db2279d8fe61821aa6ed1e9af6d28dda41959981ccede2456bd8835dccd16a80fd485ebc0a1bdc9459996a5d27d7781c55')
 
 build() {
   cd postgresql-${pkgver}


[arch-commits] Commit in postgresql-old-upgrade/repos (4 files)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:44:05
  Author: anthraxx
Revision: 305353

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

Added:
  postgresql-old-upgrade/repos/extra-i686/PKGBUILD
(from rev 305352, postgresql-old-upgrade/trunk/PKGBUILD)
  postgresql-old-upgrade/repos/extra-x86_64/PKGBUILD
(from rev 305352, postgresql-old-upgrade/trunk/PKGBUILD)
Deleted:
  postgresql-old-upgrade/repos/extra-i686/PKGBUILD
  postgresql-old-upgrade/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-11 14:43:45 UTC (rev 305352)
+++ extra-i686/PKGBUILD 2017-09-11 14:44:05 UTC (rev 305353)
@@ -1,54 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Dan McGee 
-
-pkgname=postgresql-old-upgrade
-pkgver=9.5.8
-_majorver=${pkgver%.*}
-pkgrel=3
-pkgdesc='PostgreSQL build for migrating between major versions with pg_upgrade'
-url='https://www.postgresql.org/'
-arch=('i686' 'x86_64')
-license=('custom:PostgreSQL')
-depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0' 'pam')
-makedepends=('krb5' 'python2' 'perl' 'tcl>=8.6.0')
-source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2)
-sha256sums=('ade57068f134f36710fa953e1ef79185abd96572f8098741413132f79ed37202')
-sha512sums=('4a11f0a16df460391c8250122ca8bf1ab76e49672a8c003ed09718bb4ce2aa57757e7aaec6e41b53d0d1ada293172b974761606647fcc8b4fce8807490b6ef10')
-
-build() {
-  cd postgresql-${pkgver}
-
-  ./configure \
---prefix=/opt/pgsql-${_majorver} \
---with-gssapi \
---with-libxml \
---with-openssl \
---with-perl \
---with-python PYTHON=/usr/bin/python2 \
---with-tcl \
---with-pam \
---without-readline \
---with-system-tzdata=/usr/share/zoneinfo \
---with-uuid=e2fs \
---disable-nls \
---enable-thread-safety
-
-  make -C src all
-  make -C contrib all
-}
-
-package() {
-  cd postgresql-${pkgver}
-
-  # install
-  make -C src DESTDIR="${pkgdir}" install
-  make -C contrib DESTDIR="${pkgdir}" install
-
-  # install license
-  install -Dm 644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # clean up unneeded installed items
-  rm -rf "${pkgdir}/opt/pgsql-${_majorver}/include"
-}
-
-# vim: ts=2 sw=2 et:

Copied: postgresql-old-upgrade/repos/extra-i686/PKGBUILD (from rev 305352, 
postgresql-old-upgrade/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-11 14:44:05 UTC (rev 305353)
@@ -0,0 +1,54 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Dan McGee 
+
+pkgname=postgresql-old-upgrade
+pkgver=9.5.9
+_majorver=${pkgver%.*}
+pkgrel=1
+pkgdesc='PostgreSQL build for migrating between major versions with pg_upgrade'
+url='https://www.postgresql.org/'
+arch=('i686' 'x86_64')
+license=('custom:PostgreSQL')
+depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0' 'pam')
+makedepends=('krb5' 'python2' 'perl' 'tcl>=8.6.0')
+source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2)
+sha256sums=('e98cd5c664ab5a05cb83618ba8078647815cb71f7a60437f0322c7518727cdd4')
+sha512sums=('2c6a887b80a4b1d1da18282f443419db2279d8fe61821aa6ed1e9af6d28dda41959981ccede2456bd8835dccd16a80fd485ebc0a1bdc9459996a5d27d7781c55')
+
+build() {
+  cd postgresql-${pkgver}
+
+  ./configure \
+--prefix=/opt/pgsql-${_majorver} \
+--with-gssapi \
+--with-libxml \
+--with-openssl \
+--with-perl \
+--with-python PYTHON=/usr/bin/python2 \
+--with-tcl \
+--with-pam \
+--without-readline \
+--with-system-tzdata=/usr/share/zoneinfo \
+--with-uuid=e2fs \
+--disable-nls \
+--enable-thread-safety
+
+  make -C src all
+  make -C contrib all
+}
+
+package() {
+  cd postgresql-${pkgver}
+
+  # install
+  make -C src DESTDIR="${pkgdir}" install
+  make -C contrib DESTDIR="${pkgdir}" install
+
+  # install license
+  install -Dm 644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # clean up unneeded installed items
+  rm -rf "${pkgdir}/opt/pgsql-${_majorver}/include"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-11 14:43:45 UTC (rev 305352)
+++ extra-x86_64/PKGBUILD   2017-09-11 14:44:05 UTC (rev 305353)
@@ -1,54 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Dan McGee 
-
-pkgname=postgresql-old-upgrade
-pkgver=9.5.8

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:57:03
  Author: anthraxx
Revision: 256931

upgpkg: xwallpaper 0.2.1-1

Modified:
  xwallpaper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 14:36:08 UTC (rev 256930)
+++ PKGBUILD2017-09-11 14:57:03 UTC (rev 256931)
@@ -1,16 +1,19 @@
 # Maintainer: Levente Polyak 
 
 pkgname=xwallpaper
-pkgver=0.2.0
-pkgrel=3
+pkgver=0.2.1
+pkgrel=1
 pkgdesc='Wallpaper setting utility for X'
 url='https://github.com/stoeckmann/xwallpaper'
 arch=('i686' 'x86_64')
 license=('ISC')
 depends=('pixman' 'libpng' 'libxpm' 'xcb-util' 'xcb-util-image' 
'libjpeg-turbo')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/stoeckmann/xwallpaper/archive/v${pkgver}.tar.gz)
-sha256sums=('436bc3554b504d897d1c7599118164a4e30cc26d88846bb6e71de3f4f7ce1fdf')
-sha512sums=('3556106f9696a5aa60c28d541fc89778194e5cd5edc6f3c299f7ec95c824b7b81baa95f6ceff88688179d2627d64718ffa99291192c9d2b212ae05a694754b11')
+source=(https://github.com/stoeckmann/xwallpaper/releases/download/v${pkgver}/xwallpaper-${pkgver}.tar.gz{,.sig})
+sha256sums=('bfa8b15f810ea11ceb8a95ccfc11dfd2f875ec8d6ae8625b742c0a4ec196a351'
+'SKIP')
+sha512sums=('a1dfa3542666500b2b2fc67bfd68ac740ba4a9e38ea1a6a65fff9697dad460a20edab9bd4827017c72967c6034266510e455eb778bf80968bd49ba45976d182e'
+'SKIP')
+validpgpkeys=('CDB24BD3BDDCBCBBAE5CB6207DB470F35B0B8B18') # Tobias Stoeckmann 

 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 15:36:58
  Author: anthraxx
Revision: 256937

upgpkg: smplayer 17.9.0-1

Modified:
  smplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 15:22:43 UTC (rev 256936)
+++ PKGBUILD2017-09-11 15:36:58 UTC (rev 256937)
@@ -5,7 +5,7 @@
 # Contributor: shamrok 
 
 pkgname=smplayer
-pkgver=17.8.0
+pkgver=17.9.0
 pkgrel=1
 pkgdesc='Media player with built-in codecs that can play virtually all video 
and audio formats'
 url='http://smplayer.sourceforge.net/'
@@ -19,8 +19,8 @@
 'youtube-dl: youtube videos and streaming'
 'mplayer: alternative multimedia engine')
 
source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('70790ebdb91b25b4293212987c642285819c8fced4babf1dea54b26d8ffba76a')
-sha512sums=('c983b832622ccf0394a10721c6e8b69d0d7050867a89a8839fafd584ed3daa2bf9ad0dc699a3345f0b12d5fca32ed04f5cc0f9964f2ae0f29dd214923afbce94')
+sha256sums=('2af0090b9607acace1b275f9349a50645f784f72cc0bd6454b02515e99292869')
+sha512sums=('77b42c501d2e9b2d45685b63421ed6f805139830f4f7dc794a5f3f99f654504cea3a99d46b20a236af3c8873115e585fad169293c52a843288d4aeb549ff996b')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 15:37:08
  Author: anthraxx
Revision: 256938

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 15:36:58 UTC (rev 256937)
+++ community-i686/PKGBUILD 2017-09-11 15:37:08 UTC (rev 256938)
@@ -1,38 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: Allan McRae 
-# Contributor: Alessio 'mOLOk' Bolognino 
-# Contributor: shamrok 
-
-pkgname=smplayer
-pkgver=17.8.0
-pkgrel=1
-pkgdesc='Media player with built-in codecs that can play virtually all video 
and audio formats'
-url='http://smplayer.sourceforge.net/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('qt5-script' 'mpv' 'hicolor-icon-theme')
-makedepends=('qt5-tools')
-optdepends=('smplayer-themes: icon themes collection'
-'smplayer-skins: skin themes collection'
-'smtube: browse and play youtube videos'
-'youtube-dl: youtube videos and streaming'
-'mplayer: alternative multimedia engine')
-source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('70790ebdb91b25b4293212987c642285819c8fced4babf1dea54b26d8ffba76a')
-sha512sums=('c983b832622ccf0394a10721c6e8b69d0d7050867a89a8839fafd584ed3daa2bf9ad0dc699a3345f0b12d5fca32ed04f5cc0f9964f2ae0f29dd214923afbce94')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr \
-DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
-QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DOC_PATH=/usr/share/doc/smplayer \
-DESTDIR="${pkgdir}" PREFIX=/usr install
-}
-
-# vim: ts=2 sw=2 et:

Copied: smplayer/repos/community-i686/PKGBUILD (from rev 256937, 
smplayer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 15:37:08 UTC (rev 256938)
@@ -0,0 +1,38 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Allan McRae 
+# Contributor: Alessio 'mOLOk' Bolognino 
+# Contributor: shamrok 
+
+pkgname=smplayer
+pkgver=17.9.0
+pkgrel=1
+pkgdesc='Media player with built-in codecs that can play virtually all video 
and audio formats'
+url='http://smplayer.sourceforge.net/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('qt5-script' 'mpv' 'hicolor-icon-theme')
+makedepends=('qt5-tools')
+optdepends=('smplayer-themes: icon themes collection'
+'smplayer-skins: skin themes collection'
+'smtube: browse and play youtube videos'
+'youtube-dl: youtube videos and streaming'
+'mplayer: alternative multimedia engine')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('2af0090b9607acace1b275f9349a50645f784f72cc0bd6454b02515e99292869')
+sha512sums=('77b42c501d2e9b2d45685b63421ed6f805139830f4f7dc794a5f3f99f654504cea3a99d46b20a236af3c8873115e585fad169293c52a843288d4aeb549ff996b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr \
+DOC_PATH="\\\"/usr/share/doc/smplayer\\\"" \
+QMAKE_OPTS=DEFINES+=NO_DEBUG_ON_CONSOLE
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DOC_PATH=/usr/share/doc/smplayer \
+DESTDIR="${pkgdir}" PREFIX=/usr install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 15:36:58 UTC (rev 256937)
+++ community-x86_64/PKGBUILD   2017-09-11 15:37:08 UTC (rev 256938)
@@ -1,38 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: Allan McRae 
-# Contributor: Alessio 'mOLOk' Bolognino 
-# Contributor: shamrok 
-
-pkgname=smplayer
-pkgver=17.8.0
-pkgrel=1
-pkgdesc='Media player with built-in codecs that can play virtually all video 
and audio formats'
-url='http://smplayer.sourceforge.net/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('qt5-script' 'mpv' 

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

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 14:15:47
  Author: felixonmars
Revision: 256925

upgpkg: python-hypothesis 3.24.2-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 14:15:15 UTC (rev 256924)
+++ PKGBUILD2017-09-11 14:15:47 UTC (rev 256925)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.24.1
+pkgver=3.24.2
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -16,7 +16,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('8d52baf4c9a9ae4df4467659b0b180c435c315285a0606dbcf8d63464a15b3815d96fe184fa7b735818a09cc455937cfda5baddc2ef41d23ff7e0e0519d9a8f0')
+sha512sums=('c087bca764c2657a293b58b41465a38a4410a331cc5958fdb12bb6ad69cd4517a6548aab025b9afd76a27dd56758ca48caf3c57ef3bc117deddae5fb60777379')
 
 prepare() {
   cp -a hypothesis-python-$pkgver{,-py2}


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

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 14:16:15
  Author: felixonmars
Revision: 256926

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  148 ++---
 1 file changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 14:15:47 UTC (rev 256925)
+++ PKGBUILD2017-09-11 14:16:15 UTC (rev 256926)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.24.1
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('8d52baf4c9a9ae4df4467659b0b180c435c315285a0606dbcf8d63464a15b3815d96fe184fa7b735818a09cc455937cfda5baddc2ef41d23ff7e0e0519d9a8f0')
-
-prepare() {
-  cp -a hypothesis-python-$pkgver{,-py2}
-
-  rm -r hypothesis-python-$pkgver/tests/py2
-  rm -r hypothesis-python-$pkgver-py2/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  mv tests/django ../
-  python2 setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 256925, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 14:16:15 UTC (rev 256926)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.24.2
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'python-mock' 'python2-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
+sha512sums=('c087bca764c2657a293b58b41465a38a4410a331cc5958fdb12bb6ad69cd4517a6548aab025b9afd76a27dd56758ca48caf3c57ef3bc117deddae5fb60777379')
+
+prepare() {
+  cp -a hypothesis-python-$pkgver{,-py2}
+
+  rm -r hypothesis-python-$pkgver/tests/py2
+  rm -r hypothesis-python-$pkgver-py2/tests/py3
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/hypothesis-python-$pkgver
+  python 

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:55:14
  Author: anthraxx
Revision: 305354

upgpkg: vim 8.0.1092-1

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 14:44:05 UTC (rev 305353)
+++ PKGBUILD2017-09-11 14:55:14 UTC (rev 305354)
@@ -9,7 +9,7 @@
 
 pkgbase=vim
 pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=8.0.1066
+pkgver=8.0.1092
 _versiondir=80
 pkgrel=1
 url='http://www.vim.org'
@@ -20,11 +20,11 @@
 vimrc
 archlinux.vim
 vimdoc.hook)
-sha256sums=('e1a639f959c236200b86843b8a7179b719d24c567cde4b515d34543731b1d1b6'
+sha256sums=('42f54fda0c0abdff9d82fcd5e12ef0c7c1a57e567b648b52e20c8ab207eb7787'
 'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
 '0cf8b42732111d0c66c3908a76d832736e8f8dc3abef81cb092ddf84cb862ea2'
 '7095cafac21df7aa42749d6864d1c0549fe65771d8edda3102c931c60782b6b9')
-sha512sums=('59ea0f2254c6038277167113c234f2a6f32152ed8aadf2dec2204ebc6e57460a1da18aeb9b9fa786d0361c2928276df4e4278b73b90a6a56ae7a9db2ad042ade'
+sha512sums=('d00d9ba791bf746b5ed00a518e0460f938072674439b500b58beed57487c33285e40e319f401f65e9f3e014061477a0d9dcfa6d6d872f19656f4d73018d217e4'
 
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
 
'935c15a4cc55b9209e6b6c974df765cc6683ae32ccea38acadc825bbc9c60b97ebe14aec8814b7e52080c0d0ded520a68ff1880ab64f320b08c181b6bf862edb'
 
'1e06e981691b17662fd0fddac5c00c87c920d1b4a1cbb6191c42d57cc40b00af12710e26b22fcfc0901bb8142b15f6a04aa65cec2d9b3bb9d5a06cb650d3ab9c')


[arch-commits] Commit in haskell-binary-orphans/repos (4 files)

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 15:16:58
  Author: felixonmars
Revision: 256934

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

Added:
  haskell-binary-orphans/repos/community-staging-i686/
  haskell-binary-orphans/repos/community-staging-i686/PKGBUILD
(from rev 256933, haskell-binary-orphans/trunk/PKGBUILD)
  haskell-binary-orphans/repos/community-staging-x86_64/
  haskell-binary-orphans/repos/community-staging-x86_64/PKGBUILD
(from rev 256933, haskell-binary-orphans/trunk/PKGBUILD)

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

Copied: haskell-binary-orphans/repos/community-staging-i686/PKGBUILD (from rev 
256933, haskell-binary-orphans/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 15:16:58 UTC (rev 256934)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=binary-orphans
+pkgname=haskell-binary-orphans
+pkgver=0.1.8.0
+pkgrel=1
+pkgdesc="Orphan instances for binary"
+url="https://github.com/phadej/binary-orphans;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-case-insensitive" 
"haskell-hashable" "haskell-scientific"
+ "haskell-tagged" "haskell-text" "haskell-unordered-containers" 
"haskell-vector"
+ "haskell-text-binary" "haskell-vector-binary-instances")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('78bfef3338cbb8f30e72d7b70695240fd70e812e4f4c006af0bf84674320a055262c7b516dece417e84ac46d920eb68f10665d7d136f819e6e202de32124c6a2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-binary-orphans/repos/community-staging-x86_64/PKGBUILD (from 
rev 256933, haskell-binary-orphans/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-11 15:16:58 UTC (rev 256934)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=binary-orphans
+pkgname=haskell-binary-orphans
+pkgver=0.1.8.0
+pkgrel=1
+pkgdesc="Orphan instances for binary"
+url="https://github.com/phadej/binary-orphans;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-case-insensitive" 
"haskell-hashable" "haskell-scientific"
+ "haskell-tagged" "haskell-text" "haskell-unordered-containers" 
"haskell-vector"
+ "haskell-text-binary" "haskell-vector-binary-instances")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('78bfef3338cbb8f30e72d7b70695240fd70e812e4f4c006af0bf84674320a055262c7b516dece417e84ac46d920eb68f10665d7d136f819e6e202de32124c6a2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"

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

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 15:21:30
  Author: arojas
Revision: 256935

Update to 0.3.0dev

Modified:
  fpylll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 15:16:58 UTC (rev 256934)
+++ PKGBUILD2017-09-11 15:21:30 UTC (rev 256935)
@@ -3,7 +3,7 @@
 
 pkgbase=fpylll
 pkgname=(python-fpylll python2-fpylll)
-pkgver=0.2.4dev
+pkgver=0.3.0dev
 pkgrel=1
 pkgdesc="A Python interface for fplll"
 arch=(i686 x86_64)
@@ -11,13 +11,13 @@
 license=(GPL2)
 makedepends=(fplll python-numpy python-cysignals cython python2-numpy 
python2-cysignals cython2)
 
source=("https://github.com/fplll/fpylll/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz;)
-sha256sums=('703a5e167979f88a13505483847dabf59c16504f33c767661deb75b6b57576c0')
+sha256sums=('75303197286c0a5f5b123dcf01304585902c4e7031b30a5c70edbfc28327278b')
 
 prepare() {
   cp -r $pkgbase-$pkgver{,-py2}
 
 # workaround encoding error
-  sed -e '/long_description/d' -i $pkgbase-$pkgver/setup.py
+#  sed -e '/long_description/d' -i $pkgbase-$pkgver/setup.py
 }
 
 build() {


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 15:38:16
  Author: anthraxx
Revision: 256940

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 15:38:06 UTC (rev 256939)
+++ community-i686/PKGBUILD 2017-09-11 15:38:16 UTC (rev 256940)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=xwallpaper
-pkgver=0.2.1
-pkgrel=1
-pkgdesc='Wallpaper setting utility for X'
-url='https://github.com/stoeckmann/xwallpaper'
-arch=('i686' 'x86_64')
-license=('ISC')
-depends=('pixman' 'libpng' 'libxpm' 'xcb-util' 'xcb-util-image' 
'libjpeg-turbo')
-source=(https://github.com/stoeckmann/xwallpaper/releases/download/v${pkgver}/xwallpaper-${pkgver}.tar.gz{,.sig})
-sha256sums=('bfa8b15f810ea11ceb8a95ccfc11dfd2f875ec8d6ae8625b742c0a4ec196a351'
-'SKIP')
-sha512sums=('a1dfa3542666500b2b2fc67bfd68ac740ba4a9e38ea1a6a65fff9697dad460a20edab9bd4827017c72967c6034266510e455eb778bf80968bd49ba45976d182e'
-'SKIP')
-validpgpkeys=('CDB24BD3BDDCBCBBAE5CB6207DB470F35B0B8B18') # Tobias Stoeckmann 

-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: xwallpaper/repos/community-i686/PKGBUILD (from rev 256939, 
xwallpaper/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 15:38:16 UTC (rev 256940)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+
+pkgname=xwallpaper
+pkgver=0.2.1
+pkgrel=1
+pkgdesc='Wallpaper setting utility for X'
+url='https://github.com/stoeckmann/xwallpaper'
+arch=('i686' 'x86_64')
+license=('ISC')
+depends=('pixman' 'libpng' 'libxpm' 'xcb-util' 'xcb-util-image' 
'libjpeg-turbo')
+source=(https://github.com/stoeckmann/xwallpaper/releases/download/v${pkgver}/xwallpaper-${pkgver}.tar.gz{,.sig})
+sha256sums=('bfa8b15f810ea11ceb8a95ccfc11dfd2f875ec8d6ae8625b742c0a4ec196a351'
+'SKIP')
+sha512sums=('a1dfa3542666500b2b2fc67bfd68ac740ba4a9e38ea1a6a65fff9697dad460a20edab9bd4827017c72967c6034266510e455eb778bf80968bd49ba45976d182e'
+'SKIP')
+validpgpkeys=('CDB24BD3BDDCBCBBAE5CB6207DB470F35B0B8B18') # Tobias Stoeckmann 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--with-zshcompletiondir=/usr/share/zsh/site-functions
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 15:38:06 UTC (rev 256939)
+++ community-x86_64/PKGBUILD   2017-09-11 15:38:16 UTC (rev 256940)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=xwallpaper
-pkgver=0.2.1
-pkgrel=1
-pkgdesc='Wallpaper setting utility for X'
-url='https://github.com/stoeckmann/xwallpaper'
-arch=('i686' 'x86_64')
-license=('ISC')
-depends=('pixman' 'libpng' 'libxpm' 'xcb-util' 'xcb-util-image' 
'libjpeg-turbo')
-source=(https://github.com/stoeckmann/xwallpaper/releases/download/v${pkgver}/xwallpaper-${pkgver}.tar.gz{,.sig})
-sha256sums=('bfa8b15f810ea11ceb8a95ccfc11dfd2f875ec8d6ae8625b742c0a4ec196a351'
-'SKIP')
-sha512sums=('a1dfa3542666500b2b2fc67bfd68ac740ba4a9e38ea1a6a65fff9697dad460a20edab9bd4827017c72967c6034266510e455eb778bf80968bd49ba45976d182e'
-'SKIP')
-validpgpkeys=('CDB24BD3BDDCBCBBAE5CB6207DB470F35B0B8B18') # Tobias Stoeckmann 

-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make 

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 15:38:06
  Author: anthraxx
Revision: 256939

upgpkg: xwallpaper 0.2.1-1

Modified:
  xwallpaper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 15:37:08 UTC (rev 256938)
+++ PKGBUILD2017-09-11 15:38:06 UTC (rev 256939)
@@ -22,7 +22,8 @@
 
 build() {
   cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
+  ./configure --prefix=/usr \
+--with-zshcompletiondir=/usr/share/zsh/site-functions
   make
 }
 


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:11:06
  Author: anthraxx
Revision: 256916

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 14:10:57 UTC (rev 256915)
+++ community-i686/PKGBUILD 2017-09-11 14:11:06 UTC (rev 256916)
@@ -1,81 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander F Rødseth 
-# Contributor: Dominik Picheta 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jesus Alvarez 
-
-pkgname=nim
-_pkgname=Nim
-pkgver=0.17.0
-pkgrel=2
-pkgdesc='Imperative, multi-paradigm, compiled programming language'
-url='https://nim-lang.org/'
-arch=('x86_64' 'i686')
-license=('MIT')
-depends=('python' 'bash')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/Nim/archive/v${pkgver}.tar.gz
-
csources-${pkgver}.tar.gz::https://github.com/nim-lang/csources/archive/v${pkgver}.tar.gz)
-sha256sums=('9f954f03a40e8fba32e02fcb91499e518f8e220809aef9e22bb7443c96bbbdcd'
-'6b8de28dc317534e45366b62dcad14b9932c0de398c44e1506f5bbd80019c671')
-sha512sums=('39060bf684e0ec9952a4e71b49fc7ad2363622059f7ed3d4355284e3be925dc60c7aa1b7b9f7e1bba7bbd4a65c88444755daec25d1a8b3717f883ed520f26155'
-
'fbf64d347e25da48d5237eef35209774f0e542975465c5d2cd98878f10ea0ab62ad1404758131543b8cf634afabc90d85e9e59dec96eae9bb60fffb88d204d92')
-
-prepare() {
-  cd ${_pkgname}-${pkgver}
-  mv ../csources-${pkgver} csources
-  rm bin/empty.txt
-}
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
-
-  msg2 "Building nim"
-  (cd csources
-sh build.sh
-  )
-  msg2 "Building koch"
-  nim c -d:release koch
-  ./koch boot -d:release -d:nativeStacktrace -d:useGnuReadline
-
-  msg2 "Building libs"
-  (cd lib
-nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
-  )
-  msg2 "Building tools"
-  (cd tools
-nim c -d:release nimgrep.nim
-  )
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
-
-  ./koch install "${pkgdir}"
-
-  install -d "${pkgdir}/usr/lib"
-  cp -a lib "${pkgdir}/usr/lib/nim"
-  cp -a compiler "${pkgdir}/usr/lib/nim"
-  install -Dm 644 compiler.nimble "${pkgdir}/usr/lib/nim/compiler"
-  install -m 755 lib/libnimrtl.so "${pkgdir}/usr/lib/libnimrtl.so"
-
-  # Fix FS#48118, related to the doc2 command
-  ln -s /usr/share/nim/doc "${pkgdir}/usr/lib/nim/doc"
-
-  install -Dm 644 config/* -t "${pkgdir}/etc"
-  install -Dm 755 bin/* tools/nimgrep -t "${pkgdir}/usr/bin"
-
-  # Fix FS#50252, unusual placement of header files
-  install -d "${pkgdir}/usr/include"
-  cp -a "${pkgdir}/usr/lib/nim/"*.h "${pkgdir}/usr/include"
-
-  install -d "${pkgdir}/usr/share/nim/doc"
-  cp -a examples web doc/* "${pkgdir}/usr/share/nim/doc"
-
-  install -Dm 644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -r "${pkgdir}/nim" "${pkgdir}/usr/lib/nim/lib/nimcache"
-}
-
-# vim: ts=2 sw=2 et:

Copied: nim/repos/community-i686/PKGBUILD (from rev 256915, nim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 14:11:06 UTC (rev 256916)
@@ -0,0 +1,81 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander F Rødseth 
+# Contributor: Dominik Picheta 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Jesus Alvarez 
+
+pkgname=nim
+_pkgname=Nim
+pkgver=0.17.2
+pkgrel=1
+pkgdesc='Imperative, multi-paradigm, compiled programming language'
+url='https://nim-lang.org/'
+arch=('x86_64' 'i686')
+license=('MIT')
+depends=('python' 'bash')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/Nim/archive/v${pkgver}.tar.gz
+
csources-${pkgver}.tar.gz::https://github.com/nim-lang/csources/archive/v${pkgver}.tar.gz)
+sha256sums=('eb8a98c7e576e8d858de98473569a29c539308fc7bb15a086b3f2b73d675f752'
+'7eb28ba7d5a03d02fc1c1fd9089c037de9c058d327fd6e95d599db63d9afa9c8')

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:36:02
  Author: anthraxx
Revision: 256929

upgpkg: python-async-timeout 1.4.0-1

Modified:
  python-async-timeout/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 14:20:57 UTC (rev 256928)
+++ PKGBUILD2017-09-11 14:36:02 UTC (rev 256929)
@@ -5,7 +5,7 @@
 
 _pkgname=async-timeout
 pkgname=python-async-timeout
-pkgver=1.3.0
+pkgver=1.4.0
 pkgrel=1
 pkgdesc='Asyncio-compatible timeout class'
 url='https://github.com/aio-libs/async-timeout'
@@ -14,8 +14,8 @@
 depends=('python')
 makedepends=('python-setuptools')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/async-timeout/archive/v${pkgver}.tar.gz)
-sha256sums=('31b7d8e5c89870d0002c6faad79e39fcae9228523b33d3d0c84c0330b91c4b59')
-sha512sums=('b2f8fee2589f46d67adefd30378f9d7b1a6d92f371ffbbe7b82fb9a34b9948c8d857a81152a097531ec7a6388a7bd1a1d55451bd104aa62c1df7af7fecaf7e14')
+sha256sums=('627366ef67f2a5dcab7e7d672794db3c70bddaac13d200a21883c37578b85221')
+sha512sums=('82b67cdc0bf791936a3d775cfa7594d7ef6a21c3b0b5390901577aa4a4f24435b7fcabf9550fbfb36ee5739df0d9c98e4cda4d1e3f71eb8e2c5a8f2afd1ce48b')
 
 build() {
   cd ${_pkgname}-${pkgver}


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 14:34:53
  Author: anthraxx
Revision: 305351

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

Added:
  memcached/repos/extra-i686/PKGBUILD
(from rev 305350, memcached/trunk/PKGBUILD)
  memcached/repos/extra-i686/memcached.install
(from rev 305350, memcached/trunk/memcached.install)
  memcached/repos/extra-i686/memcached.service
(from rev 305350, memcached/trunk/memcached.service)
  memcached/repos/extra-i686/memcached.tmpfiles
(from rev 305350, memcached/trunk/memcached.tmpfiles)
  memcached/repos/extra-x86_64/PKGBUILD
(from rev 305350, memcached/trunk/PKGBUILD)
  memcached/repos/extra-x86_64/memcached.install
(from rev 305350, memcached/trunk/memcached.install)
  memcached/repos/extra-x86_64/memcached.service
(from rev 305350, memcached/trunk/memcached.service)
  memcached/repos/extra-x86_64/memcached.tmpfiles
(from rev 305350, memcached/trunk/memcached.tmpfiles)
Deleted:
  memcached/repos/extra-i686/PKGBUILD
  memcached/repos/extra-i686/memcached.install
  memcached/repos/extra-i686/memcached.service
  memcached/repos/extra-i686/memcached.tmpfiles
  memcached/repos/extra-x86_64/PKGBUILD
  memcached/repos/extra-x86_64/memcached.install
  memcached/repos/extra-x86_64/memcached.service
  memcached/repos/extra-x86_64/memcached.tmpfiles

-+
 /PKGBUILD   |   88 ++
 /memcached.install  |   30 
 /memcached.service  |   32 +
 /memcached.tmpfiles |2 
 extra-i686/PKGBUILD |   44 ---
 extra-i686/memcached.install|   15 --
 extra-i686/memcached.service|   16 --
 extra-i686/memcached.tmpfiles   |1 
 extra-x86_64/PKGBUILD   |   44 ---
 extra-x86_64/memcached.install  |   15 --
 extra-x86_64/memcached.service  |   16 --
 extra-x86_64/memcached.tmpfiles |1 
 12 files changed, 152 insertions(+), 152 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-11 14:34:42 UTC (rev 305350)
+++ extra-i686/PKGBUILD 2017-09-11 14:34:53 UTC (rev 305351)
@@ -1,44 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Dan McGee 
-# Contributor: Michael Irwin <6d6...@gmail.com>
-
-pkgname=memcached
-pkgver=1.4.37
-pkgrel=1
-pkgdesc='Distributed memory object caching system'
-url='https://memcached.org/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libevent')
-optdepends=('perl: for memcached-tool usage')
-install=memcached.install
-source=(https://www.memcached.org/files/${pkgname}-${pkgver}.tar.gz
-memcached.service
-memcached.tmpfiles)
-sha256sums=('2f335ab9110ce39036c5271ef39a582a852e424bc9659e421844073cfdf8606b'
-'fd60fde92b959dc4160facc0d165f04319d2ece4d2c59b68d8ae24824abea7dd'
-'c4d0ae2218b99a276ff6e0084ae81e66add0ca9347e4bde70e9172db6e44002a')
-sha512sums=('eadcb2ea3caf5946f3348c3cddc9fa4de3268589096a8fbfcb7c2867ce317390bdb91a2539353c756d214eb02ef3f0f0e71adb5dd46fd37fda4e82a59173e1b4'
-
'5b006064b3ab31a6982f5c7b1ab4a49d64118a459913bd4be18ca63bf606dcae3550121d05a34ac8932d28b367e18fa76699c46e311b0b6a22f36ab1885ebebe'
-
'960705ff74d25afed477e0b2a5872a3a4fb49ed3105a351f0d0224abc947778f9dbda81e80be94ab636da4a8411a9dd56a8fd4513e5b86a3096a14fa67f1548b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 755 scripts/memcached-tool -t "${pkgdir}/usr/bin"
-  install -Dm 644 "${srcdir}/memcached.service" -t 
"${pkgdir}/usr/lib/systemd/system"
-  install -Dm 644 "${srcdir}/memcached.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/memcached.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: memcached/repos/extra-i686/PKGBUILD (from rev 305350, 
memcached/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-11 14:34:53 UTC (rev 305351)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: Dan McGee 
+# Contributor: Michael Irwin <6d6...@gmail.com>
+
+pkgname=memcached
+pkgver=1.5.1
+pkgrel=1
+pkgdesc='Distributed memory object caching system'
+url='https://memcached.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libevent')
+optdepends=('perl: for memcached-tool usage')
+install=memcached.install
+source=(https://www.memcached.org/files/${pkgname}-${pkgver}.tar.gz
+memcached.service
+memcached.tmpfiles)
+sha256sums=('a87908936b51d1bd3ef10a2347eef5647f003b63407a5d8161fa7928b1cd6b5c'
+'fd60fde92b959dc4160facc0d165f04319d2ece4d2c59b68d8ae24824abea7dd'
+ 

[arch-commits] Commit in haskell-binary-orphans/trunk (PKGBUILD)

2017-09-11 Thread Felix Yan
Date: Monday, September 11, 2017 @ 15:16:21
  Author: felixonmars
Revision: 256933

upgpkg: haskell-binary-orphans 0.1.8.0-1

rebuild with binary-orphans,0.1.8.0

Modified:
  haskell-binary-orphans/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 14:57:14 UTC (rev 256932)
+++ PKGBUILD2017-09-11 15:16:21 UTC (rev 256933)
@@ -4,8 +4,8 @@
 
 _hkgname=binary-orphans
 pkgname=haskell-binary-orphans
-pkgver=0.1.7.0
-pkgrel=4
+pkgver=0.1.8.0
+pkgrel=1
 pkgdesc="Orphan instances for binary"
 url="https://github.com/phadej/binary-orphans;
 license=("custom:BSD3")
@@ -15,7 +15,7 @@
  "haskell-text-binary" "haskell-vector-binary-instances")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('5c79e9981afd13bcceced9c046f4b0551f40f90469f2ff018ec6b8cbe967e115dd8817788ea496bbce03f584620c164ef8059cce3ab84b154115e773e2fb5e94')
+sha512sums=('78bfef3338cbb8f30e72d7b70695240fd70e812e4f4c006af0bf84674320a055262c7b516dece417e84ac46d920eb68f10665d7d136f819e6e202de32124c6a2')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 18:49:54
  Author: jelle
Revision: 256976

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

Added:
  etherape/repos/community-i686/PKGBUILD
(from rev 256975, etherape/trunk/PKGBUILD)
  etherape/repos/community-i686/drop-libgnomeui.patch
(from rev 256975, etherape/trunk/drop-libgnomeui.patch)
  etherape/repos/community-x86_64/PKGBUILD
(from rev 256975, etherape/trunk/PKGBUILD)
  etherape/repos/community-x86_64/drop-libgnomeui.patch
(from rev 256975, etherape/trunk/drop-libgnomeui.patch)
Deleted:
  etherape/repos/community-i686/PKGBUILD
  etherape/repos/community-i686/drop-libgnomeui.patch
  etherape/repos/community-x86_64/PKGBUILD
  etherape/repos/community-x86_64/drop-libgnomeui.patch

+
 /PKGBUILD  |   82 
 /drop-libgnomeui.patch |  314 +++
 community-i686/PKGBUILD|   41 
 community-i686/drop-libgnomeui.patch   |  157 ---
 community-x86_64/PKGBUILD  |   41 
 community-x86_64/drop-libgnomeui.patch |  157 ---
 6 files changed, 396 insertions(+), 396 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 18:49:42 UTC (rev 256975)
+++ community-i686/PKGBUILD 2017-09-11 18:49:54 UTC (rev 256976)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: kevin 
-# Contributor: Damir Perisa 
-
-pkgname=etherape
-pkgver=0.9.15
-pkgrel=1
-pkgdesc='A graphical network monitor for various OSI layers and protocols'
-arch=('i686' 'x86_64')
-url="http://etherape.sourceforge.net/;
-license=('GPL2')
-depends=('libgnomecanvas' 'libpcap' 'popt')
-makedepends=('rarian' 'gnome-doc-utils')
-source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'drop-libgnomeui.patch')
-sha1sums=('9e97875b76a1543bf7145632dd3e018987ea1c96'
-  'SKIP')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # Remove libgnomeui dependency
-  patch -Np1 -i ../drop-libgnomeui.patch
-
-  autoreconf -fi
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}
-

Copied: etherape/repos/community-i686/PKGBUILD (from rev 256975, 
etherape/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 18:49:54 UTC (rev 256976)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Thorsten Töpper 
+# Contributor: kevin 
+# Contributor: Damir Perisa 
+
+pkgname=etherape
+pkgver=0.9.15
+pkgrel=2
+pkgdesc='A graphical network monitor for various OSI layers and protocols'
+arch=('i686' 'x86_64')
+url="http://etherape.sourceforge.net/;
+license=('GPL2')
+depends=('libgnomecanvas' 'libpcap' 'popt')
+makedepends=('rarian' 'gnome-doc-utils')
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'drop-libgnomeui.patch')
+sha1sums=('9e97875b76a1543bf7145632dd3e018987ea1c96'
+  'SKIP')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # Remove libgnomeui dependency
+  patch -Np1 -i ../drop-libgnomeui.patch
+
+  autoreconf -fi
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+

Deleted: community-i686/drop-libgnomeui.patch
===
--- community-i686/drop-libgnomeui.patch2017-09-11 18:49:42 UTC (rev 
256975)
+++ community-i686/drop-libgnomeui.patch2017-09-11 18:49:54 UTC (rev 
256976)
@@ -1,157 +0,0 @@
-diff -Naur etherape-0.9.15.orig/configure.ac etherape-0.9.15/configure.ac
 etherape-0.9.15.orig/configure.ac  2017-04-27 05:53:49.226303987 +
-+++ etherape-0.9.15/configure.ac   2017-04-27 06:02:09.328964318 +
-@@ -26,7 +26,7 @@
- #AC_PROG_INTLTOOL(0.27)
- 
- # Checks for libraries.
--PKG_CHECK_MODULES(ETHERAPE, glib-2.0 libglade-2.0 libgnomeui-2.0)
-+PKG_CHECK_MODULES(ETHERAPE, glib-2.0 libglade-2.0 libgnomecanvas-2.0 popt)
- AC_SUBST(ETHERAPE_CFLAGS)
- AC_SUBST(ETHERAPE_LDFLAGS)
- AC_SUBST(ETHERAPE_LIBS)
-diff -Naur etherape-0.9.15.orig/src/callbacks.c etherape-0.9.15/src/callbacks.c
 etherape-0.9.15.orig/src/callbacks.c   2017-04-27 05:53:49.236303974 
+
-+++ etherape-0.9.15/src/callbacks.c2017-04-27 05:56:33.176083792 +
-@@ -21,7 +21,8 @@
- #include 
- #endif
- 
--#include 
-+#include 
-+#include 
- #include "appdata.h"
- #include 

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 18:49:42
  Author: jelle
Revision: 256975

upgpkg: etherape 0.9.15-2

rebuild for key removal

Modified:
  etherape/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 18:41:00 UTC (rev 256974)
+++ PKGBUILD2017-09-11 18:49:42 UTC (rev 256975)
@@ -5,7 +5,7 @@
 
 pkgname=etherape
 pkgver=0.9.15
-pkgrel=1
+pkgrel=2
 pkgdesc='A graphical network monitor for various OSI layers and protocols'
 arch=('i686' 'x86_64')
 url="http://etherape.sourceforge.net/;


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

2017-09-11 Thread Anatol Pomozov
Date: Monday, September 11, 2017 @ 18:53:09
  Author: anatolik
Revision: 256978

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

Added:
  avr-gcc/repos/community-i686/PKGBUILD
(from rev 256977, avr-gcc/trunk/PKGBUILD)
  avr-gcc/repos/community-i686/Revert-eeb6872bf.patch
(from rev 256977, avr-gcc/trunk/Revert-eeb6872bf.patch)
  avr-gcc/repos/community-x86_64/PKGBUILD
(from rev 256977, avr-gcc/trunk/PKGBUILD)
  avr-gcc/repos/community-x86_64/Revert-eeb6872bf.patch
(from rev 256977, avr-gcc/trunk/Revert-eeb6872bf.patch)
Deleted:
  avr-gcc/repos/community-i686/PKGBUILD
  avr-gcc/repos/community-i686/Revert-eeb6872bf.patch
  avr-gcc/repos/community-x86_64/PKGBUILD
  avr-gcc/repos/community-x86_64/Revert-eeb6872bf.patch

-+
 /PKGBUILD   |  230 ++
 /Revert-eeb6872bf.patch |  164 +
 community-i686/PKGBUILD |  115 ---
 community-i686/Revert-eeb6872bf.patch   |   82 --
 community-x86_64/PKGBUILD   |  115 ---
 community-x86_64/Revert-eeb6872bf.patch |   82 --
 6 files changed, 394 insertions(+), 394 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 18:52:06 UTC (rev 256977)
+++ community-i686/PKGBUILD 2017-09-11 18:53:09 UTC (rev 256978)
@@ -1,115 +0,0 @@
-# $Id$
-# Maintainer: schuay 
-# Contributor: Brad Fanella 
-# Contributor: Corrado Primier 
-# Contributor: danst0 
-
-# Build order: avr-binutils -> avr-gcc -> avr-libc
-
-pkgname=avr-gcc
-pkgver=7.1.0
-pkgrel=2
-_snapshot=7-20170629
-_islver=0.18
-pkgdesc='The GNU AVR Compiler Collection'
-arch=(i686 x86_64)
-license=(GPL LGPL FDL custom)
-url='http://gcc.gnu.org/'
-depends=(avr-binutils gcc-libs libmpc)
-optdepends=('avr-libc: Standard C library for Atmel AVR development')
-options=(!emptydirs !strip)
-source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
-
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.xz
-http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2
-Revert-eeb6872bf.patch
-   )
-sha1sums=('03dd99b2fe79eceb05e3763569278a4ecce808ff'
-  'bbffc5a2b05e4f0c97e882f96c448504491dc4ed'
-  'f93cd532288a58d76c9dcdf654c7e6028c6f411f')
-
-if [ -n "${_snapshot}" ]; then
-  _basedir=gcc-${_snapshot}
-else
-  _basedir=gcc-${pkgver}
-fi
-
-prepare() {
-cd ${_basedir}
-
-# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80717
-patch -p1 < ../Revert-eeb6872bf.patch
-}
-
-build() {
-cd ${srcdir}/${_basedir} 
-
-# link isl for in-tree build
-ln -s ../isl-${_islver} isl
-
-# https://bugs.archlinux.org/task/34629
-# hack! - some configure tests for header files using "$CPP $CPPFLAGS"
-sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
-
-echo ${pkgver} > gcc/BASE-VER
-
-cd ${srcdir}
-mkdir gcc-build && cd gcc-build
-
-export CFLAGS_FOR_TARGET='-O2 -pipe'
-export CXXFLAGS_FOR_TARGET='-O2 -pipe'
-
-# --disable-linker-build-id   https://bugs.archlinux.org/task/34902
-# --disable-__cxa_atexit   https://bugs.archlinux.org/task/50848
-${srcdir}/${_basedir}/configure \
---disable-install-libiberty \
---disable-libssp \
---disable-libstdcxx-pch \
---disable-libunwind-exceptions \
---disable-linker-build-id \
---disable-nls \
---disable-werror \
---disable-__cxa_atexit \
---enable-checking=release \
---enable-clocale=gnu \
---enable-gnu-unique-object \
---enable-gold \
---enable-languages=c,c++ \
---enable-ld=default \
---enable-lto \
---enable-plugin \
---enable-shared \
---infodir=/usr/share/info \
---libdir=/usr/lib \
---libexecdir=/usr/lib \
---mandir=/usr/share/man \
---prefix=/usr \
---target=avr \
---with-as=/usr/bin/avr-as \
---with-gnu-as \
---with-gnu-ld \
---with-ld=/usr/bin/avr-ld \
---with-plugin-ld=ld.gold \
---with-system-zlib \
---with-isl \
---enable-gnu-indirect-function
-
-make
-}
-
-package() {
-cd ${srcdir}/gcc-build
-
-make -j1 DESTDIR=${pkgdir} install
-
-# Strip debug symbols from libraries; without this, the package size 
balloons to ~500MB.
-find ${pkgdir}/usr/lib -type f -name "*.a" \
--exec /usr/bin/avr-strip --strip-debug '{}' \;
-
-

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:06:10
  Author: jelle
Revision: 256981

upgpkg: tcpreplay 4.2.5-2

rebuild for key removal

Modified:
  tcpreplay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 18:59:59 UTC (rev 256980)
+++ PKGBUILD2017-09-11 19:06:10 UTC (rev 256981)
@@ -4,7 +4,7 @@
 # Contributor: Dawid Wrobel 
 pkgname=tcpreplay
 pkgver=4.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Gives the ability to replay previously captured traffic in a libpcap 
format"
 url="http://tcpreplay.appneta.com;
 arch=('i686' 'x86_64')


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:06:23
  Author: jelle
Revision: 256982

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 19:06:10 UTC (rev 256981)
+++ community-i686/PKGBUILD 2017-09-11 19:06:23 UTC (rev 256982)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Sébastien Duquette 
-# Contributor: Dawid Wrobel 
-pkgname=tcpreplay
-pkgver=4.2.5
-pkgrel=1
-pkgdesc="Gives the ability to replay previously captured traffic in a libpcap 
format"
-url="http://tcpreplay.appneta.com;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('libpcap' 'libdnet')
-makedepends=('tcpdump')
-optdepends=('tcpdump: decoding of packets support')
-options=('!emptydirs')
-source=(https://github.com/appneta/tcpreplay/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-md5sums=('8765cad213335cc58daa3697dc3043fb'
- 'SKIP')
-validpgpkeys=('84E4FA215C934A7D97DC76D5E9E2149793BDE17E')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump ac_cv_header_net_bpf_h=n
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir/" install
-}

Copied: tcpreplay/repos/community-i686/PKGBUILD (from rev 256981, 
tcpreplay/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:06:23 UTC (rev 256982)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Sébastien Duquette 
+# Contributor: Dawid Wrobel 
+pkgname=tcpreplay
+pkgver=4.2.5
+pkgrel=2
+pkgdesc="Gives the ability to replay previously captured traffic in a libpcap 
format"
+url="http://tcpreplay.appneta.com;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('libpcap' 'libdnet')
+makedepends=('tcpdump')
+optdepends=('tcpdump: decoding of packets support')
+options=('!emptydirs')
+source=(https://github.com/appneta/tcpreplay/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+md5sums=('8765cad213335cc58daa3697dc3043fb'
+ 'SKIP')
+validpgpkeys=('84E4FA215C934A7D97DC76D5E9E2149793BDE17E')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump ac_cv_header_net_bpf_h=n
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 19:06:10 UTC (rev 256981)
+++ community-x86_64/PKGBUILD   2017-09-11 19:06:23 UTC (rev 256982)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Sébastien Duquette 
-# Contributor: Dawid Wrobel 
-pkgname=tcpreplay
-pkgver=4.2.5
-pkgrel=1
-pkgdesc="Gives the ability to replay previously captured traffic in a libpcap 
format"
-url="http://tcpreplay.appneta.com;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('libpcap' 'libdnet')
-makedepends=('tcpdump')
-optdepends=('tcpdump: decoding of packets support')
-options=('!emptydirs')
-source=(https://github.com/appneta/tcpreplay/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-md5sums=('8765cad213335cc58daa3697dc3043fb'
- 'SKIP')
-validpgpkeys=('84E4FA215C934A7D97DC76D5E9E2149793BDE17E')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump ac_cv_header_net_bpf_h=n
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir/" install
-}

Copied: tcpreplay/repos/community-x86_64/PKGBUILD (from rev 256981, 
tcpreplay/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-11 19:06:23 UTC (rev 256982)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Sébastien Duquette 

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:15:01
  Author: jelle
Revision: 256986

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 19:14:51 UTC (rev 256985)
+++ PKGBUILD2017-09-11 19:15:01 UTC (rev 256986)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgbase=python-pyaes
-pkgname=('python-pyaes' 'python2-pyaes')
-_pipname=pyaes
-pkgver=1.6.0
-pkgrel=1
-pkgdesc="Pure-Python Implementation of the AES block-cipher and common modes 
of operation"
-arch=('any')
-makedepends=('python2-setuptools' 'python-setuptools')
-url="https://github.com/ricmoo/pyaes;
-license=('MIT')
-source=(https://pypi.org/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('9cd5a54d914b1eebfb14fcb490315214b6a0304d9f1bb47e90d1d8e0b15ce92e')
-
-
-prepare() {
-  cp -R $_pipname-$pkgver python2-$_pipname-$pkgver
-}
-
-build() {
-  cd "$_pipname-$pkgver"
-  python setup.py build
-
-  cd "../python2-$_pipname-$pkgver"
-  python2 setup.py build
-}
-
-
-package_python-pyaes() {
-  depends=('python')
-  cd $_pipname-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-
-  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-package_python2-pyaes() {
-  depends=('python2')
-  cd "python2-$_pipname-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: python-pyaes/repos/community-any/PKGBUILD (from rev 256985, 
python-pyaes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 19:15:01 UTC (rev 256986)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+
+pkgbase=python-pyaes
+pkgname=('python-pyaes' 'python2-pyaes')
+_pipname=pyaes
+pkgver=1.6.0
+pkgrel=2
+pkgdesc="Pure-Python Implementation of the AES block-cipher and common modes 
of operation"
+arch=('any')
+makedepends=('python2-setuptools' 'python-setuptools')
+url="https://github.com/ricmoo/pyaes;
+license=('MIT')
+source=(https://pypi.org/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
+sha256sums=('9cd5a54d914b1eebfb14fcb490315214b6a0304d9f1bb47e90d1d8e0b15ce92e')
+
+
+prepare() {
+  cp -R $_pipname-$pkgver python2-$_pipname-$pkgver
+}
+
+build() {
+  cd "$_pipname-$pkgver"
+  python setup.py build
+
+  cd "../python2-$_pipname-$pkgver"
+  python2 setup.py build
+}
+
+
+package_python-pyaes() {
+  depends=('python')
+  cd $_pipname-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+
+  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}
+
+package_python2-pyaes() {
+  depends=('python2')
+  cd "python2-$_pipname-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:14:51
  Author: jelle
Revision: 256985

upgpkg: python-pyaes 1.6.0-2

rebuild for key removal

Modified:
  python-pyaes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:12:47 UTC (rev 256984)
+++ PKGBUILD2017-09-11 19:14:51 UTC (rev 256985)
@@ -6,7 +6,7 @@
 pkgname=('python-pyaes' 'python2-pyaes')
 _pipname=pyaes
 pkgver=1.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Pure-Python Implementation of the AES block-cipher and common modes 
of operation"
 arch=('any')
 makedepends=('python2-setuptools' 'python-setuptools')


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

2017-09-11 Thread Andreas Radke
Date: Monday, September 11, 2017 @ 19:16:32
  Author: andyrtr
Revision: 305357

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

Added:
  cups-filters/repos/staging-i686/
  cups-filters/repos/staging-i686/PKGBUILD
(from rev 305356, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/staging-x86_64/
  cups-filters/repos/staging-x86_64/PKGBUILD
(from rev 305356, cups-filters/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   57 ++
 staging-x86_64/PKGBUILD |   57 ++
 2 files changed, 114 insertions(+)

Copied: cups-filters/repos/staging-i686/PKGBUILD (from rev 305356, 
cups-filters/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-09-11 19:16:32 UTC (rev 305357)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=cups-filters
+pkgver=1.17.4
+pkgrel=1
+pkgdesc="OpenPrinting CUPS Filters"
+arch=('i686' 'x86_64')
+url="https://wiki.linuxfoundation.org/openprinting/cups-filters;
+license=('custom')
+depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups' 
'systemd')
+makedepends=('ghostscript' 'ttf-dejavu' 'python' 'mupdf-tools') # ttf-dejavu 
for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'antiword: needed to convert MS Word documents (requires also 
docx2txt (AUR)')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(https://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+sha256sums=('3ab37469193c9b95be84dd981ca1324eab408009174c8ae42b779cc4469c95bf')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--enable-auto-setup-driverless \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i "s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed|" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i "s|cups.service|org.cups.cupsd.service|g" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  
+  # use lp group from cups pkg FS#36769
+  chgrp -R lp ${pkgdir}/etc/cups
+
+  # license
+  mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 "${srcdir}"/${pkgname}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}

Copied: cups-filters/repos/staging-x86_64/PKGBUILD (from rev 305356, 
cups-filters/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-09-11 19:16:32 UTC (rev 305357)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=cups-filters
+pkgver=1.17.4
+pkgrel=1
+pkgdesc="OpenPrinting CUPS Filters"
+arch=('i686' 'x86_64')
+url="https://wiki.linuxfoundation.org/openprinting/cups-filters;
+license=('custom')
+depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups' 
'systemd')
+makedepends=('ghostscript' 'ttf-dejavu' 'python' 'mupdf-tools') # ttf-dejavu 
for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'antiword: needed to convert MS Word documents (requires also 
docx2txt (AUR)')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(https://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+sha256sums=('3ab37469193c9b95be84dd981ca1324eab408009174c8ae42b779cc4469c95bf')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:20:44
  Author: jelle
Revision: 256990

archrelease: copy trunk to community-any

Added:
  python2-btchip/repos/community-any/PKGBUILD
(from rev 256989, python2-btchip/trunk/PKGBUILD)
Deleted:
  python2-btchip/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 19:20:34 UTC (rev 256989)
+++ PKGBUILD2017-09-11 19:20:44 UTC (rev 256990)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgname=python2-btchip
-pkgver=0.1.20
-pkgrel=1
-pkgdesc="Python library to communicate with BTChip dongle"
-arch=('any')
-depends=('python2-hidapi')
-makedepends=('python2-setuptools')
-optdepends=('btchip-udev: access BTChip as non-root user')
-url="https://github.com/LedgerHQ/btchip-python;
-license=('Apache')
-source=($pkgname-$pkgver.tar.gz::https://github.com/LedgerHQ/btchip-python/archive/v$pkgver.tar.gz)
-sha256sums=('39c03103c4b92c7abe009701e5c02a37a3e86c2a5b9f52b8de8efaca85fd545a')
-
-build() {
-  cd btchip-python-$pkgver
-
-  python2 setup.py build
-}
-
-package() {
-  cd btchip-python-$pkgver
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python2-btchip/repos/community-any/PKGBUILD (from rev 256989, 
python2-btchip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 19:20:44 UTC (rev 256990)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+
+pkgname=python2-btchip
+pkgver=0.1.20
+pkgrel=2
+pkgdesc="Python library to communicate with BTChip dongle"
+arch=('any')
+depends=('python2-hidapi')
+makedepends=('python2-setuptools')
+optdepends=('btchip-udev: access BTChip as non-root user')
+url="https://github.com/LedgerHQ/btchip-python;
+license=('Apache')
+source=($pkgname-$pkgver.tar.gz::https://github.com/LedgerHQ/btchip-python/archive/v$pkgver.tar.gz)
+sha256sums=('39c03103c4b92c7abe009701e5c02a37a3e86c2a5b9f52b8de8efaca85fd545a')
+
+build() {
+  cd btchip-python-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd btchip-python-$pkgver
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:20:34
  Author: jelle
Revision: 256989

upgpkg: python2-btchip 0.1.20-2

rebuild for key removal

Modified:
  python2-btchip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:18:47 UTC (rev 256988)
+++ PKGBUILD2017-09-11 19:20:34 UTC (rev 256989)
@@ -4,7 +4,7 @@
 
 pkgname=python2-btchip
 pkgver=0.1.20
-pkgrel=1
+pkgrel=2
 pkgdesc="Python library to communicate with BTChip dongle"
 arch=('any')
 depends=('python2-hidapi')


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:22:10
  Author: jelle
Revision: 256991

upgpkg: purple-skypeweb 1.4-2

rebuild for key removal

Modified:
  purple-skypeweb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:20:44 UTC (rev 256990)
+++ PKGBUILD2017-09-11 19:22:10 UTC (rev 256991)
@@ -6,7 +6,7 @@
 _pkgname=skypeweb
 _parentname=skype4pidgin
 pkgver=1.4
-pkgrel=1
+pkgrel=2
 arch=('x86_64' 'i686')
 license=('GPL3')
 pkgdesc="SkypeWeb Plugin for Pidgin"


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:22:24
  Author: jelle
Revision: 256992

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

Added:
  purple-skypeweb/repos/community-i686/PKGBUILD
(from rev 256991, purple-skypeweb/trunk/PKGBUILD)
  purple-skypeweb/repos/community-x86_64/PKGBUILD
(from rev 256991, purple-skypeweb/trunk/PKGBUILD)
Deleted:
  purple-skypeweb/repos/community-i686/PKGBUILD
  purple-skypeweb/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 2017-09-11 19:22:10 UTC (rev 256991)
+++ community-i686/PKGBUILD 2017-09-11 19:22:24 UTC (rev 256992)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Colin Arnott
-
-pkgname=purple-skypeweb
-_pkgname=skypeweb
-_parentname=skype4pidgin
-pkgver=1.4
-pkgrel=1
-arch=('x86_64' 'i686')
-license=('GPL3')
-pkgdesc="SkypeWeb Plugin for Pidgin"
-url="https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb;
-depends=('libpurple' 'json-glib')
-makedepends=('pkg-config')
-conflicts=('skype4pidgin')
-
-source=("$pkgname-$pkgver.tar.gz"::"https://github.com/EionRobb/$_parentname/archive/$pkgver.tar.gz;)
-sha256sums=('026962ed818df7f2e54409d78e0d6f1fb64c2ef4f4264a489d2c04c2bae0da82')
-
-build() {
-cd "$srcdir/$_parentname-$pkgver/$_pkgname"
-make
-}
-
-package() {
-cd "$srcdir/$_parentname-$pkgver/$_pkgname"
-make DESTDIR="$pkgdir" install
-}

Copied: purple-skypeweb/repos/community-i686/PKGBUILD (from rev 256991, 
purple-skypeweb/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:22:24 UTC (rev 256992)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Colin Arnott
+
+pkgname=purple-skypeweb
+_pkgname=skypeweb
+_parentname=skype4pidgin
+pkgver=1.4
+pkgrel=2
+arch=('x86_64' 'i686')
+license=('GPL3')
+pkgdesc="SkypeWeb Plugin for Pidgin"
+url="https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb;
+depends=('libpurple' 'json-glib')
+makedepends=('pkg-config')
+conflicts=('skype4pidgin')
+
+source=("$pkgname-$pkgver.tar.gz"::"https://github.com/EionRobb/$_parentname/archive/$pkgver.tar.gz;)
+sha256sums=('026962ed818df7f2e54409d78e0d6f1fb64c2ef4f4264a489d2c04c2bae0da82')
+
+build() {
+cd "$srcdir/$_parentname-$pkgver/$_pkgname"
+make
+}
+
+package() {
+cd "$srcdir/$_parentname-$pkgver/$_pkgname"
+make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 19:22:10 UTC (rev 256991)
+++ community-x86_64/PKGBUILD   2017-09-11 19:22:24 UTC (rev 256992)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Colin Arnott
-
-pkgname=purple-skypeweb
-_pkgname=skypeweb
-_parentname=skype4pidgin
-pkgver=1.4
-pkgrel=1
-arch=('x86_64' 'i686')
-license=('GPL3')
-pkgdesc="SkypeWeb Plugin for Pidgin"
-url="https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb;
-depends=('libpurple' 'json-glib')
-makedepends=('pkg-config')
-conflicts=('skype4pidgin')
-
-source=("$pkgname-$pkgver.tar.gz"::"https://github.com/EionRobb/$_parentname/archive/$pkgver.tar.gz;)
-sha256sums=('026962ed818df7f2e54409d78e0d6f1fb64c2ef4f4264a489d2c04c2bae0da82')
-
-build() {
-cd "$srcdir/$_parentname-$pkgver/$_pkgname"
-make
-}
-
-package() {
-cd "$srcdir/$_parentname-$pkgver/$_pkgname"
-make DESTDIR="$pkgdir" install
-}

Copied: purple-skypeweb/repos/community-x86_64/PKGBUILD (from rev 256991, 
purple-skypeweb/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-11 19:22:24 UTC (rev 256992)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Colin Arnott
+
+pkgname=purple-skypeweb
+_pkgname=skypeweb
+_parentname=skype4pidgin
+pkgver=1.4
+pkgrel=2
+arch=('x86_64' 'i686')
+license=('GPL3')
+pkgdesc="SkypeWeb Plugin for Pidgin"
+url="https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb;
+depends=('libpurple' 'json-glib')
+makedepends=('pkg-config')
+conflicts=('skype4pidgin')
+
+source=("$pkgname-$pkgver.tar.gz"::"https://github.com/EionRobb/$_parentname/archive/$pkgver.tar.gz;)
+sha256sums=('026962ed818df7f2e54409d78e0d6f1fb64c2ef4f4264a489d2c04c2bae0da82')
+
+build() {
+cd "$srcdir/$_parentname-$pkgver/$_pkgname"
+make
+}
+
+package() 

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:26:30
  Author: jelle
Revision: 256993

upgpkg: bitcoin 0.14.2-4

rebuild for key removal

Modified:
  bitcoin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:22:24 UTC (rev 256992)
+++ PKGBUILD2017-09-11 19:26:30 UTC (rev 256993)
@@ -6,7 +6,7 @@
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
 pkgver=0.14.2
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url="http://www.bitcoin.org/;
 makedepends=('boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 'miniupnpc' 
'protobuf' 'zeromq')


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:26:46
  Author: jelle
Revision: 256994

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

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

---+
 /PKGBUILD |  416 
 community-i686/PKGBUILD   |  219 ---
 community-x86_64/PKGBUILD |  219 ---
 3 files changed, 416 insertions(+), 438 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 19:26:30 UTC (rev 256993)
+++ community-i686/PKGBUILD 2017-09-11 19:26:46 UTC (rev 256994)
@@ -1,219 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: shahid 
-
-#_dbver=4.8.30
-pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
-pkgver=0.14.2
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://www.bitcoin.org/;
-makedepends=('git' 'boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 
'miniupnpc' 'protobuf' 'zeromq')
-license=('MIT')
-source=(git+https://github.com/bitcoin/bitcoin.git#tag=v${pkgver})
-#http://download.oracle.com/berkeley-db/db-${_dbver}.NC.tar.gz
-sha256sums=('SKIP')
-
-validpgpkeys=(71A3B16735405025D447E8F274810B012346C9A6)
-
-# TODO: Build using db 4.8.30
-#prepare() {
-#  mkdir -p db4
-#}
-
-_parse_gpg_statusfile() {
-   local type arg1 arg6 arg10
-
-   while read -r _ type arg1 _ _ _ _ arg6 _ _ _ arg10 _; do
-   case "$type" in
-   GOODSIG)
-   pubkey=$arg1
-   success=1
-   status="good"
-   ;;
-   EXPSIG)
-   pubkey=$arg1
-   success=1
-   status="expired"
-   ;;
-   EXPKEYSIG)
-   pubkey=$arg1
-   success=1
-   status="expiredkey"
-   ;;
-   REVKEYSIG)
-   pubkey=$arg1
-   success=0
-   status="revokedkey"
-   ;;
-   BADSIG)
-   pubkey=$arg1
-   success=0
-   status="bad"
-   ;;
-   ERRSIG)
-   pubkey=$arg1
-   success=0
-   if [[ $arg6 == 9 ]]; then
-   status="missingkey"
-   else
-   status="error"
-   fi
-   ;;
-   VALIDSIG)
-   if [[ $arg10 ]]; then
-   # If the file was signed with a subkey, 
arg10 contains
-   # the fingerprint of the primary key
-   fingerprint=$arg10
-   else
-   fingerprint=$arg1
-   fi
-   ;;
-   TRUST_UNDEFINED|TRUST_NEVER)
-   trusted=0
-   ;;
-   TRUST_MARGINAL|TRUST_FULLY|TRUST_ULTIMATE)
-   trusted=1
-   ;;
-   esac
-   done < "$1"
-}
-
-_validate_gpg_tag() {
-  local file ext decompress found pubkey success status fingerprint trusted
-  local warning=0
-  local errors=0
-  local statusfile=$(mktemp)
-
-  msg "$(gettext "Verifying source file signatures with %s...")" "gpg"
-
-  git verify-tag --raw "$1" 2>"$statusfile"
-
-  # these variables are assigned values in parse_gpg_statusfile
-  success=0
-  status=
-  pubkey=
-  fingerprint=
-  trusted=
-  _parse_gpg_statusfile "$statusfile"
-  if (( ! $success )); then
-printf '%s' "$(gettext "FAILED")" >&2
-case "$status" in
-  "missingkey")
-printf ' (%s)' "$(gettext "unknown public key") $pubkey" >&2
-;;
-  "revokedkey")
-printf " ($(gettext "public key %s has been revoked"))" "$pubkey" >&2
-;;
-  "bad")
-printf ' (%s)' "$(gettext "bad signature from public key") $pubkey" >&2
-;;
-  "error")
-printf ' (%s)' "$(gettext "error during signature 

  1   2   3   >