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

2017-09-11 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 06:59:10
  Author: arojas
Revision: 257088

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

Added:
  lucene++/repos/community-staging-i686/
  lucene++/repos/community-staging-i686/PKGBUILD
(from rev 257087, lucene++/trunk/PKGBUILD)
  lucene++/repos/community-staging-x86_64/
  lucene++/repos/community-staging-x86_64/PKGBUILD
(from rev 257087, lucene++/trunk/PKGBUILD)

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

Copied: lucene++/repos/community-staging-i686/PKGBUILD (from rev 257087, 
lucene++/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-12 06:59:10 UTC (rev 257088)
@@ -0,0 +1,47 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Rafael Ferreira 
+
+pkgname=lucene++
+pkgver=3.0.7
+_githash='972c9cb37'
+pkgrel=11
+pkgdesc='C++ port of the popular Java Lucene library'
+arch=(i686 x86_64)
+url='https://github.com/luceneplusplus/LucenePlusPlus'
+license=('GPL' 'Apache')
+depends=('boost-libs')
+makedepends=('boost' 'cmake' 'subversion')
+#source=(https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_$pkgver.tar.gz)
+source=("https://github.com/luceneplusplus/LucenePlusPlus/archive/${_githash}.tar.gz";)
+md5sums=('a90abdd313ecf32a358f096b7cab9d62')
+
+prepare() {
+  mkdir build
+  #ln -s LucenePlusPlus-rel_$pkgver LucenePlusPlus-$pkgver
+  #ln -s LucenePlusPlus-master LucenePlusPlus-$pkgver
+  ln -s LucenePlusPlus-$_githash* LucenePlusPlus-$pkgver
+  sed -i \
+-e 's#SET(LUCENE++_VERSION_REVISION.*#SET(LUCENE++_VERSION_REVISION "5")#' 
\
+-e 's#SET(LUCENE++_VERSION_PATCH.*#SET(LUCENE++_VERSION_PATCH "0")#' \
+"$srcdir"/LucenePlusPlus-$pkgver/CMakeLists.txt
+}
+
+build() {
+  cd build
+
+  cmake ../LucenePlusPlus-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_DESTINATION=/usr/lib \
+-DBoost_LIBRARY_DIR=/usr/lib \
+-DENABLE_CUSTOM_ALLOCATOR='FALSE' \
+-DCMAKE_CXX_FLAGS='-DBOOST_VARIANT_USE_RELAXED_GET_BY_DEFAULT'
+# RELAXED for boost 1.58 breakage, remove when lucene++ updates
+
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: lucene++/repos/community-staging-x86_64/PKGBUILD (from rev 257087, 
lucene++/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-12 06:59:10 UTC (rev 257088)
@@ -0,0 +1,47 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Rafael Ferreira 
+
+pkgname=lucene++
+pkgver=3.0.7
+_githash='972c9cb37'
+pkgrel=11
+pkgdesc='C++ port of the popular Java Lucene library'
+arch=(i686 x86_64)
+url='https://github.com/luceneplusplus/LucenePlusPlus'
+license=('GPL' 'Apache')
+depends=('boost-libs')
+makedepends=('boost' 'cmake' 'subversion')
+#source=(https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_$pkgver.tar.gz)
+source=("https://github.com/luceneplusplus/LucenePlusPlus/archive/${_githash}.tar.gz";)
+md5sums=('a90abdd313ecf32a358f096b7cab9d62')
+
+prepare() {
+  mkdir build
+  #ln -s LucenePlusPlus-rel_$pkgver LucenePlusPlus-$pkgver
+  #ln -s LucenePlusPlus-master LucenePlusPlus-$pkgver
+  ln -s LucenePlusPlus-$_githash* LucenePlusPlus-$pkgver
+  sed -i \
+-e 's#SET(LUCENE++_VERSION_REVISION.*#SET(LUCENE++_VERSION_REVISION "5")#' 
\
+-e 's#SET(LUCENE++_VERSION_PATCH.*#SET(LUCENE++_VERSION_PATCH "0")#' \
+"$srcdir"/LucenePlusPlus-$pkgver/CMakeLists.txt
+}
+
+build() {
+  cd build
+
+  cmake ../LucenePlusPlus-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_DESTINATION=/usr/lib \
+-DBoost_LIBRARY_DIR=/usr/lib \
+-DENABLE_CUSTOM_ALLOCATOR='FALSE' \
+-DCMAKE_CXX_FLAGS='-DBOOST_VARIANT_USE_RELAXED_GET_BY_DEFAULT'
+# RELAXED for boost 1.58 breakage, remove when lucene++ updates
+
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-09-11 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 06:58:42
  Author: arojas
Revision: 257087

boost 1.65 rebuild

Modified:
  lucene++/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 06:28:57 UTC (rev 257086)
+++ PKGBUILD2017-09-12 06:58:42 UTC (rev 257087)
@@ -5,7 +5,7 @@
 pkgname=lucene++
 pkgver=3.0.7
 _githash='972c9cb37'
-pkgrel=10
+pkgrel=11
 pkgdesc='C++ port of the popular Java Lucene library'
 arch=(i686 x86_64)
 url='https://github.com/luceneplusplus/LucenePlusPlus'
@@ -14,7 +14,7 @@
 makedepends=('boost' 'cmake' 'subversion')
 
#source=(https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_$pkgver.tar.gz)
 
source=("https://github.com/luceneplusplus/LucenePlusPlus/archive/${_githash}.tar.gz";)
-md5sums=('486af3a6da7a119669e64c979049852c')
+md5sums=('a90abdd313ecf32a358f096b7cab9d62')
 
 prepare() {
   mkdir build


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

2017-09-11 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 06:28:57
  Author: arojas
Revision: 257086

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-12 06:28:24 UTC (rev 257085)
+++ community-i686/PKGBUILD 2017-09-12 06:28:57 UTC (rev 257086)
@@ -1,28 +0,0 @@
-# $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-i686/PKGBUILD (from rev 257085, 
fplll/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-12 06:28:57 UTC (rev 257086)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=fplll
+pkgver=5.2.0
+pkgrel=2
+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=('75e17fcaa4fc5fdddbe6eb42aca5f38c4c169a4b52756e74fbe2d1769737ac9c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-12 06:28:24 UTC (rev 257085)
+++ community-x86_64/PKGBUILD   2017-09-12 06:28:57 UTC (rev 257086)
@@ -1,28 +0,0 @@
-# $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-x86_64/PKGBUILD (from rev 257085, 
fplll/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-12 06:28:57 UTC (rev 257086)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=fplll
+pkgver=5.2.0
+pkgrel=2
+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=('75e17fcaa4fc5fdddbe6eb42aca5f38c4c169a4b52756e74fbe2d1769737ac9c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+


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

2017-09-11 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 06:28:24
  Author: arojas
Revision: 257085

New tarball

Modified:
  fplll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 05:31:17 UTC (rev 257084)
+++ PKGBUILD2017-09-12 06:28:24 UTC (rev 257085)
@@ -3,7 +3,7 @@
 
 pkgname=fplll
 pkgver=5.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Lattice algorithms using floating-point arithmetic"
 arch=(i686 x86_64)
 url="https://github.com/fplll/fplll";
@@ -13,7 +13,7 @@
 provides=(libfplll)
 replaces=(libfplll)
 
source=("https://github.com/fplll/fplll/releases/download/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('a39871bc9d351732c230e9e56a9e7f4128f2a5ae3bd4094fe61065d4a8f54dfd')
+sha256sums=('75e17fcaa4fc5fdddbe6eb42aca5f38c4c169a4b52756e74fbe2d1769737ac9c')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 05:31:17
  Author: felixonmars
Revision: 257084

archrelease: copy trunk to community-any

Added:
  systemd-swap/repos/community-any/PKGBUILD
(from rev 257083, systemd-swap/trunk/PKGBUILD)
  systemd-swap/repos/community-any/systemd-swap.install
(from rev 257083, systemd-swap/trunk/systemd-swap.install)
Deleted:
  systemd-swap/repos/community-any/PKGBUILD
  systemd-swap/repos/community-any/systemd-swap.install

--+
 PKGBUILD |   54 -
 systemd-swap.install |   10 -
 2 files changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 05:30:47 UTC (rev 257083)
+++ PKGBUILD2017-09-12 05:31:17 UTC (rev 257084)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Timofey Titovets 
-
-pkgname=systemd-swap
-pkgver=3.5.1
-pkgrel=1
-pkgdesc="Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions."
-arch=('any')
-url="https://github.com/Nefelim4ag/systemd-swap";
-license=('GPL3')
-conflicts=(systemd-loop-swapfile zramswap zram)
-depends=('systemd' 'bash')
-makedepends=('git')
-backup=(etc/systemd/swap.conf)
-install=$pkgname.install
-source=("git://github.com/Nefelim4ag/systemd-swap.git#tag=$pkgver")
-sha512sums=('SKIP')
-
-package() {
-  cd systemd-swap
-  make PREFIX="$pkgdir" install
-
-  install -dm755 "$pkgdir"/usr/lib
-  mv "$pkgdir"/lib/systemd "$pkgdir"/usr/lib/systemd
-  rmdir "$pkgdir"/lib
-}

Copied: systemd-swap/repos/community-any/PKGBUILD (from rev 257083, 
systemd-swap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-12 05:31:17 UTC (rev 257084)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Timofey Titovets 
+
+pkgname=systemd-swap
+pkgver=3.5.2
+pkgrel=1
+pkgdesc="Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions."
+arch=('any')
+url="https://github.com/Nefelim4ag/systemd-swap";
+license=('GPL3')
+conflicts=(systemd-loop-swapfile zramswap zram)
+depends=('systemd' 'bash')
+makedepends=('git')
+backup=(etc/systemd/swap.conf)
+install=$pkgname.install
+source=("git://github.com/Nefelim4ag/systemd-swap.git#tag=$pkgver")
+sha512sums=('SKIP')
+
+package() {
+  cd systemd-swap
+  make PREFIX="$pkgdir" install
+
+  install -dm755 "$pkgdir"/usr/lib
+  mv "$pkgdir"/lib/systemd "$pkgdir"/usr/lib/systemd
+  rmdir "$pkgdir"/lib
+}

Deleted: systemd-swap.install
===
--- systemd-swap.install2017-09-12 05:30:47 UTC (rev 257083)
+++ systemd-swap.install2017-09-12 05:31:17 UTC (rev 257084)
@@ -1,5 +0,0 @@
-post_upgrade() {
-  if [[ $(vercmp "$2" 3) < 0 ]]; then
-echo "Since 3.0, the config file was moved to /etc/systemd/swap.conf, and 
incompatible with the old syntax. Please adjust your settings accordingly."
-  fi
-}

Copied: systemd-swap/repos/community-any/systemd-swap.install (from rev 257083, 
systemd-swap/trunk/systemd-swap.install)
===
--- systemd-swap.install(rev 0)
+++ systemd-swap.install2017-09-12 05:31:17 UTC (rev 257084)
@@ -0,0 +1,5 @@
+post_upgrade() {
+  if [[ $(vercmp "$2" 3) < 0 ]]; then
+echo "Since 3.0, the config file was moved to /etc/systemd/swap.conf, and 
incompatible with the old syntax. Please adjust your settings accordingly."
+  fi
+}


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

2017-09-11 Thread Felix Yan
Date: Tuesday, September 12, 2017 @ 05:30:47
  Author: felixonmars
Revision: 257083

upgpkg: systemd-swap 3.5.2-1

Modified:
  systemd-swap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 04:54:04 UTC (rev 257082)
+++ PKGBUILD2017-09-12 05:30:47 UTC (rev 257083)
@@ -3,7 +3,7 @@
 # Contributor: Timofey Titovets 
 
 pkgname=systemd-swap
-pkgver=3.5.1
+pkgver=3.5.2
 pkgrel=1
 pkgdesc="Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions."
 arch=('any')


[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 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-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-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 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-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 setup.py build
+
+  cd "$srcdir"/hypothesis-python-$pkgve

[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 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 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 @@
+# Shadowe

[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 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() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[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 ldc/repos (community-i686)

2017-09-11 Thread Dan Printzell
Date: Monday, September 11, 2017 @ 22:30:25
  Author: wild
Revision: 257066

Removed community-i686, dmd for i686 is no longer available

Deleted:
  ldc/repos/community-i686/


[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"
+];
+// default switches appe

[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 
"$pkgdir/usr/lib/libldruntime-debug.so"
 
 # imports
-mkdi

[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
+post-switches = [
+"-L-L/usr/lib",

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 22:21:29
  Author: anthraxx
Revision: 257060

upgpkg: ruby-rubydns 2.0.1-2 (added missing ruby-async-dns dependency)

Modified:
  ruby-rubydns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 22:14:16 UTC (rev 257059)
+++ PKGBUILD2017-09-11 22:21:29 UTC (rev 257060)
@@ -3,12 +3,12 @@
 _gemname=rubydns
 pkgname=ruby-${_gemname}
 pkgver=2.0.1
-pkgrel=1
-pkgdesc='High-performance asynchronous DNS server and resolver for Ruby'
+pkgrel=2
+pkgdesc='High-performance asynchronous DNS server and resolver'
 url='https://github.com/ioquatix/rubydns'
 arch=('any')
 license=('MIT')
-depends=('ruby' 'ruby-celluloid-dns')
+depends=('ruby' 'ruby-celluloid-dns' 'ruby-async-dns')
 options=('!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/ioquatix/rubydns/archive/v${pkgver}.tar.gz)
 sha256sums=('2190a5b769b9396e739ebf6d43878294662e25c863d845a32ec7f68129b60bf2')


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 22:21:37
  Author: anthraxx
Revision: 257061

archrelease: copy trunk to community-any

Added:
  ruby-rubydns/repos/community-any/PKGBUILD
(from rev 257060, ruby-rubydns/trunk/PKGBUILD)
Deleted:
  ruby-rubydns/repos/community-any/PKGBUILD

--+
 PKGBUILD |   76 ++---
 1 file changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 22:21:29 UTC (rev 257060)
+++ PKGBUILD2017-09-11 22:21:37 UTC (rev 257061)
@@ -1,38 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_gemname=rubydns
-pkgname=ruby-${_gemname}
-pkgver=2.0.1
-pkgrel=1
-pkgdesc='High-performance asynchronous DNS server and resolver for Ruby'
-url='https://github.com/ioquatix/rubydns'
-arch=('any')
-license=('MIT')
-depends=('ruby' 'ruby-celluloid-dns')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/ioquatix/rubydns/archive/v${pkgver}.tar.gz)
-sha256sums=('2190a5b769b9396e739ebf6d43878294662e25c863d845a32ec7f68129b60bf2')
-sha512sums=('2a0e674a1cc58c9f9a80500882af34306e73a177f26ce745e9501db996cd5e9697442a3c5f7b04b5c5fccd8f972795e629b8d130ecebd38d3dfa9c058c26fb56')
-
-prepare() {
-  cd ${_gemname}-${pkgver}
-  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
-  sed 's|~>|>=|g' -i ${_gemname}.gemspec
-  sed -r "s|(VERSION =) '2.0.1'|\1 '${pkgver}'|" -i lib/rubydns/version.rb
-}
-
-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}"
-  cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
-  rm "${pkgdir}"/${_gemdir}/cache/${_gemname}-${pkgver}.gem
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-rubydns/repos/community-any/PKGBUILD (from rev 257060, 
ruby-rubydns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 22:21:37 UTC (rev 257061)
@@ -0,0 +1,38 @@
+# Maintainer: Levente Polyak 
+
+_gemname=rubydns
+pkgname=ruby-${_gemname}
+pkgver=2.0.1
+pkgrel=2
+pkgdesc='High-performance asynchronous DNS server and resolver'
+url='https://github.com/ioquatix/rubydns'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-celluloid-dns' 'ruby-async-dns')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/ioquatix/rubydns/archive/v${pkgver}.tar.gz)
+sha256sums=('2190a5b769b9396e739ebf6d43878294662e25c863d845a32ec7f68129b60bf2')
+sha512sums=('2a0e674a1cc58c9f9a80500882af34306e73a177f26ce745e9501db996cd5e9697442a3c5f7b04b5c5fccd8f972795e629b8d130ecebd38d3dfa9c058c26fb56')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
+  sed 's|~>|>=|g' -i ${_gemname}.gemspec
+  sed -r "s|(VERSION =) '2.0.1'|\1 '${pkgver}'|" -i lib/rubydns/version.rb
+}
+
+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}"
+  cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
+  rm "${pkgdir}"/${_gemdir}/cache/${_gemname}-${pkgver}.gem
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in ruby-async-dns/repos (community-any community-any/PKGBUILD)

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

archrelease: copy trunk to community-any

Added:
  ruby-async-dns/repos/community-any/
  ruby-async-dns/repos/community-any/PKGBUILD
(from rev 257058, ruby-async-dns/trunk/PKGBUILD)

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

Copied: ruby-async-dns/repos/community-any/PKGBUILD (from rev 257058, 
ruby-async-dns/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-09-11 22:14:16 UTC (rev 257059)
@@ -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 (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 ruby-async-io/repos/community-any (PKGBUILD)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 22:03:03
  Author: anthraxx
Revision: 257057

archrelease: copy trunk to community-any

Added:
  ruby-async-io/repos/community-any/PKGBUILD
(from rev 257056, ruby-async-io/trunk/PKGBUILD)

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

Copied: ruby-async-io/repos/community-any/PKGBUILD (from rev 257056, 
ruby-async-io/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 22:03:03 UTC (rev 257057)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+
+_gemname=async-io
+pkgname=ruby-${_gemname}
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Provides support for asynchonous TCP, UDP, UNIX and SSL sockets'
+url='https://github.com/socketry/async-io'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-async')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async-io/archive/v${pkgver}.tar.gz)
+sha256sums=('a261535e8a9b22b3c8f62c59794b5012eadb7382220c0ab957a079a978d194cf')
+sha512sums=('54b45de9a37438a5db6264aab0d31dfed521b3086a8cd52ddc97b7bbf3742307399da829ee7892ecc6742f2cc0903d91f2ea168fff06c6f6319424382e4f')
+
+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 ruby-async-io/trunk (PKGBUILD)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 22:02:56
  Author: anthraxx
Revision: 257056

upgpkg: ruby-async-io 1.0.0-1

Added:
  ruby-async-io/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 22:02:56 UTC (rev 257056)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+
+_gemname=async-io
+pkgname=ruby-${_gemname}
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Provides support for asynchonous TCP, UDP, UNIX and SSL sockets'
+url='https://github.com/socketry/async-io'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-async')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async-io/archive/v${pkgver}.tar.gz)
+sha256sums=('a261535e8a9b22b3c8f62c59794b5012eadb7382220c0ab957a079a978d194cf')
+sha512sums=('54b45de9a37438a5db6264aab0d31dfed521b3086a8cd52ddc97b7bbf3742307399da829ee7892ecc6742f2cc0903d91f2ea168fff06c6f6319424382e4f')
+
+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 ruby-async-io/repos (community-any)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:59:58
  Author: anthraxx
Revision: 257055

archrelease: copy trunk to community-any

Added:
  ruby-async-io/repos/community-any/


[arch-commits] Commit in (ruby-async-io ruby-async-io/repos ruby-async-io/trunk)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:58:45
  Author: anthraxx
Revision: 257054

addpkg: ruby-async-io 1.0.0-1

Added:
  ruby-async-io/
  ruby-async-io/repos/
  ruby-async-io/trunk/


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:52:14
  Author: anthraxx
Revision: 257053

archrelease: copy trunk to community-any

Added:
  ruby-async/repos/community-any/
  ruby-async/repos/community-any/PKGBUILD
(from rev 257052, ruby-async/trunk/PKGBUILD)

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

Copied: ruby-async/repos/community-any/PKGBUILD (from rev 257052, 
ruby-async/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-09-11 21:52:14 UTC (rev 257053)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+
+_gemname=async
+pkgname=ruby-${_gemname}
+pkgver=1.2.0
+pkgrel=1
+pkgdesc='Composable asynchronous I/O'
+url='https://github.com/socketry/async'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-nio4r' 'ruby-timers')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async/archive/v${pkgver}.tar.gz)
+sha256sums=('06bedecd8ead36a4c3f437f9da7985bddb4fca72121f638ce186d9c73bc7c952')
+sha512sums=('9ef5f7bc3ee81cdb377a43e352e8e8b75d23469156d3ae204cb2fbf1ebf92168387fd25575ee3c135e3f5f709907c7db7dfe732b8dad6434ad779633c8197fbe')
+
+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 (4 files)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:51:55
  Author: anthraxx
Revision: 257052

addpkg: ruby-async 1.2.0-1

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

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

Added: ruby-async/trunk/PKGBUILD
===
--- ruby-async/trunk/PKGBUILD   (rev 0)
+++ ruby-async/trunk/PKGBUILD   2017-09-11 21:51:55 UTC (rev 257052)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+
+_gemname=async
+pkgname=ruby-${_gemname}
+pkgver=1.2.0
+pkgrel=1
+pkgdesc='Composable asynchronous I/O'
+url='https://github.com/socketry/async'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-nio4r' 'ruby-timers')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/socketry/async/archive/v${pkgver}.tar.gz)
+sha256sums=('06bedecd8ead36a4c3f437f9da7985bddb4fca72121f638ce186d9c73bc7c952')
+sha512sums=('9ef5f7bc3ee81cdb377a43e352e8e8b75d23469156d3ae204cb2fbf1ebf92168387fd25575ee3c135e3f5f709907c7db7dfe732b8dad6434ad779633c8197fbe')
+
+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 gnome-packagekit/repos (5 files)

2017-09-11 Thread Christian Hesse
Date: Monday, September 11, 2017 @ 21:48:17
  Author: eworm
Revision: 257051

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

Added:
  gnome-packagekit/repos/community-i686/PKGBUILD
(from rev 257050, gnome-packagekit/trunk/PKGBUILD)
  gnome-packagekit/repos/community-x86_64/PKGBUILD
(from rev 257050, gnome-packagekit/trunk/PKGBUILD)
Deleted:
  gnome-packagekit/repos/community-i686/0001-alpm-hooks.patch
  gnome-packagekit/repos/community-i686/PKGBUILD
  gnome-packagekit/repos/community-x86_64/PKGBUILD

--+
 /PKGBUILD|   56 +
 community-i686/0001-alpm-hooks.patch |   38 --
 community-i686/PKGBUILD  |   42 
 community-x86_64/PKGBUILD|   28 
 4 files changed, 56 insertions(+), 108 deletions(-)

Deleted: community-i686/0001-alpm-hooks.patch
===
--- community-i686/0001-alpm-hooks.patch2017-09-11 21:46:26 UTC (rev 
257050)
+++ community-i686/0001-alpm-hooks.patch2017-09-11 21:48:17 UTC (rev 
257051)
@@ -1,38 +0,0 @@
-From 25da5747d55adceb7ccebba4e82af295eb397cb7 Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Thu, 1 Jun 2017 16:15:59 +0200
-Subject: Add new status "Running hooks"
-
-Signed-off-by: Christian Hesse 
-Signed-off-by: Richard Hughes 

- src/gpk-enum.c | 9 +
- 1 file changed, 9 insertions(+)
-
-diff --git a/src/gpk-enum.c b/src/gpk-enum.c
-index 09a1118..2bf8af5 100644
 a/src/gpk-enum.c
-+++ b/src/gpk-enum.c
-@@ -95,6 +95,9 @@ static const PkEnumMatch enum_status_icon_name[] = {
-   {PK_STATUS_ENUM_CHECK_EXECUTABLE_FILES, "pk-package-info"},
-   {PK_STATUS_ENUM_CHECK_LIBRARIES,"pk-package-info"},
-   {PK_STATUS_ENUM_COPY_FILES, "pk-package-info"},
-+#if PK_CHECK_VERSION(1,1,6)
-+  {PK_STATUS_ENUM_RUN_HOOK,   "pk-setup"},
-+#endif
-   {0, NULL}
- };
- 
-@@ -888,6 +891,12 @@ gpk_status_enum_to_localised_text (PkStatusEnum status)
-   /* TRANSLATORS: we are copying package files to prepare to 
install */
-   text = _("Copying files");
-   break;
-+#if PK_CHECK_VERSION(1,1,6)
-+  case PK_STATUS_ENUM_RUN_HOOK:
-+  /* TRANSLATORS: we are running hooks pre or post transaction */
-+  text = _("Running hooks");
-+  break;
-+#endif
-   default:
-   g_warning ("status unrecognized: %s", pk_status_enum_to_string 
(status));
-   }

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 21:46:26 UTC (rev 257050)
+++ community-i686/PKGBUILD 2017-09-11 21:48:17 UTC (rev 257051)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Balló György 
-# Contributor: Jonathan Conder 
-
-pkgname=gnome-packagekit
-pkgver=3.24.0
-pkgrel=2
-pkgdesc='Collection of graphical tools for PackageKit to be used in the GNOME 
desktop'
-arch=('i686' 'x86_64')
-url='http://www.packagekit.org/'
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'libnotify' 'packagekit')
-makedepends=('intltool' 'itstool' 'docbook-xsl' 'libcanberra')
-source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";
-'0001-alpm-hooks.patch')
-sha256sums=('8d038681f6879c93f3f58faaa37c41c7ac8cf53eba6b8cb871f5f683ac0bd13f'
-'97ccebcf0146a72876a4a6a9f88b5fa15b6d7f8cd915bd98c760f42d9f139c80')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   patch -Np1 < "${srcdir}"/0001-alpm-hooks.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --disable-schemas-compile \
-   --disable-gtk-doc
-   sed -i 's|docbook2man|docbook2man --sgml|' man/Makefile
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make DESTDIR="${pkgdir}" install
-}
-

Copied: gnome-packagekit/repos/community-i686/PKGBUILD (from rev 257050, 
gnome-packagekit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 21:48:17 UTC (rev 257051)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Balló György 
+# Contributor: Jonathan Conder 
+
+pkgname=gnome-packagekit
+pkgver=3.26.0
+pkgrel=1
+pkgdesc='Collection of graphical tools for PackageKit to be used in the GNOME 
desktop'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'libnotify' 'packagekit')
+makedepends=('meson' 'intltool' 'itstool' 'docbook-xsl' 'libcanberra')
+source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgv

[arch-commits] Commit in gnome-packagekit/repos/community-x86_64 (3 files)

2017-09-11 Thread Christian Hesse
Date: Monday, September 11, 2017 @ 21:46:26
  Author: eworm
Revision: 257050

archrelease: copy trunk to community-x86_64

Added:
  gnome-packagekit/repos/community-x86_64/PKGBUILD
(from rev 257049, gnome-packagekit/trunk/PKGBUILD)
Deleted:
  gnome-packagekit/repos/community-x86_64/0001-alpm-hooks.patch
  gnome-packagekit/repos/community-x86_64/PKGBUILD

---+
 0001-alpm-hooks.patch |   38 --
 PKGBUILD  |   70 +++-
 2 files changed, 28 insertions(+), 80 deletions(-)

Deleted: 0001-alpm-hooks.patch
===
--- 0001-alpm-hooks.patch   2017-09-11 21:46:16 UTC (rev 257049)
+++ 0001-alpm-hooks.patch   2017-09-11 21:46:26 UTC (rev 257050)
@@ -1,38 +0,0 @@
-From 25da5747d55adceb7ccebba4e82af295eb397cb7 Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Thu, 1 Jun 2017 16:15:59 +0200
-Subject: Add new status "Running hooks"
-
-Signed-off-by: Christian Hesse 
-Signed-off-by: Richard Hughes 

- src/gpk-enum.c | 9 +
- 1 file changed, 9 insertions(+)
-
-diff --git a/src/gpk-enum.c b/src/gpk-enum.c
-index 09a1118..2bf8af5 100644
 a/src/gpk-enum.c
-+++ b/src/gpk-enum.c
-@@ -95,6 +95,9 @@ static const PkEnumMatch enum_status_icon_name[] = {
-   {PK_STATUS_ENUM_CHECK_EXECUTABLE_FILES, "pk-package-info"},
-   {PK_STATUS_ENUM_CHECK_LIBRARIES,"pk-package-info"},
-   {PK_STATUS_ENUM_COPY_FILES, "pk-package-info"},
-+#if PK_CHECK_VERSION(1,1,6)
-+  {PK_STATUS_ENUM_RUN_HOOK,   "pk-setup"},
-+#endif
-   {0, NULL}
- };
- 
-@@ -888,6 +891,12 @@ gpk_status_enum_to_localised_text (PkStatusEnum status)
-   /* TRANSLATORS: we are copying package files to prepare to 
install */
-   text = _("Copying files");
-   break;
-+#if PK_CHECK_VERSION(1,1,6)
-+  case PK_STATUS_ENUM_RUN_HOOK:
-+  /* TRANSLATORS: we are running hooks pre or post transaction */
-+  text = _("Running hooks");
-+  break;
-+#endif
-   default:
-   g_warning ("status unrecognized: %s", pk_status_enum_to_string 
(status));
-   }

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 21:46:16 UTC (rev 257049)
+++ PKGBUILD2017-09-11 21:46:26 UTC (rev 257050)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Balló György 
-# Contributor: Jonathan Conder 
-
-pkgname=gnome-packagekit
-pkgver=3.24.0
-pkgrel=2
-pkgdesc='Collection of graphical tools for PackageKit to be used in the GNOME 
desktop'
-arch=('i686' 'x86_64')
-url='http://www.packagekit.org/'
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'libnotify' 'packagekit')
-makedepends=('intltool' 'itstool' 'docbook-xsl' 'libcanberra')
-source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";
-'0001-alpm-hooks.patch')
-sha256sums=('8d038681f6879c93f3f58faaa37c41c7ac8cf53eba6b8cb871f5f683ac0bd13f'
-'97ccebcf0146a72876a4a6a9f88b5fa15b6d7f8cd915bd98c760f42d9f139c80')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   patch -Np1 < "${srcdir}"/0001-alpm-hooks.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --disable-schemas-compile \
-   --disable-gtk-doc
-   sed -i 's|docbook2man|docbook2man --sgml|' man/Makefile
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make DESTDIR="${pkgdir}" install
-}
-

Copied: gnome-packagekit/repos/community-x86_64/PKGBUILD (from rev 257049, 
gnome-packagekit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 21:46:26 UTC (rev 257050)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Balló György 
+# Contributor: Jonathan Conder 
+
+pkgname=gnome-packagekit
+pkgver=3.26.0
+pkgrel=1
+pkgdesc='Collection of graphical tools for PackageKit to be used in the GNOME 
desktop'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'libnotify' 'packagekit')
+makedepends=('meson' 'intltool' 'itstool' 'docbook-xsl' 'libcanberra')
+source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('6a219e16923d3976f424416c944bef06913922da24bc9e6644ec114c2d563417')
+
+build() {
+   meson "${pkgname}-${pkgver}" build \
+   --prefix=/usr \
+   --sysconfdir=/etc
+   ninja -C build
+}
+
+package() {
+   DESTDIR="$pkgdir" ninja -C build install
+}
+


[arch-commits] Commit in gnome-packagekit/trunk (0001-alpm-hooks.patch PKGBUILD)

2017-09-11 Thread Christian Hesse
Date: Monday, September 11, 2017 @ 21:46:16
  Author: eworm
Revision: 257049

upgpkg: gnome-packagekit 3.26.0-1

new upstream release

Modified:
  gnome-packagekit/trunk/PKGBUILD
Deleted:
  gnome-packagekit/trunk/0001-alpm-hooks.patch

---+
 0001-alpm-hooks.patch |   38 --
 PKGBUILD  |   34 ++
 2 files changed, 10 insertions(+), 62 deletions(-)

Deleted: 0001-alpm-hooks.patch
===
--- 0001-alpm-hooks.patch   2017-09-11 21:41:55 UTC (rev 257048)
+++ 0001-alpm-hooks.patch   2017-09-11 21:46:16 UTC (rev 257049)
@@ -1,38 +0,0 @@
-From 25da5747d55adceb7ccebba4e82af295eb397cb7 Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Thu, 1 Jun 2017 16:15:59 +0200
-Subject: Add new status "Running hooks"
-
-Signed-off-by: Christian Hesse 
-Signed-off-by: Richard Hughes 

- src/gpk-enum.c | 9 +
- 1 file changed, 9 insertions(+)
-
-diff --git a/src/gpk-enum.c b/src/gpk-enum.c
-index 09a1118..2bf8af5 100644
 a/src/gpk-enum.c
-+++ b/src/gpk-enum.c
-@@ -95,6 +95,9 @@ static const PkEnumMatch enum_status_icon_name[] = {
-   {PK_STATUS_ENUM_CHECK_EXECUTABLE_FILES, "pk-package-info"},
-   {PK_STATUS_ENUM_CHECK_LIBRARIES,"pk-package-info"},
-   {PK_STATUS_ENUM_COPY_FILES, "pk-package-info"},
-+#if PK_CHECK_VERSION(1,1,6)
-+  {PK_STATUS_ENUM_RUN_HOOK,   "pk-setup"},
-+#endif
-   {0, NULL}
- };
- 
-@@ -888,6 +891,12 @@ gpk_status_enum_to_localised_text (PkStatusEnum status)
-   /* TRANSLATORS: we are copying package files to prepare to 
install */
-   text = _("Copying files");
-   break;
-+#if PK_CHECK_VERSION(1,1,6)
-+  case PK_STATUS_ENUM_RUN_HOOK:
-+  /* TRANSLATORS: we are running hooks pre or post transaction */
-+  text = _("Running hooks");
-+  break;
-+#endif
-   default:
-   g_warning ("status unrecognized: %s", pk_status_enum_to_string 
(status));
-   }

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 21:41:55 UTC (rev 257048)
+++ PKGBUILD2017-09-11 21:46:16 UTC (rev 257049)
@@ -4,39 +4,25 @@
 # Contributor: Jonathan Conder 
 
 pkgname=gnome-packagekit
-pkgver=3.24.0
-pkgrel=2
+pkgver=3.26.0
+pkgrel=1
 pkgdesc='Collection of graphical tools for PackageKit to be used in the GNOME 
desktop'
 arch=('i686' 'x86_64')
 url='http://www.packagekit.org/'
 license=('GPL')
 depends=('desktop-file-utils' 'gtk3' 'libnotify' 'packagekit')
-makedepends=('intltool' 'itstool' 'docbook-xsl' 'libcanberra')
-source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";
-'0001-alpm-hooks.patch')
-sha256sums=('8d038681f6879c93f3f58faaa37c41c7ac8cf53eba6b8cb871f5f683ac0bd13f'
-'97ccebcf0146a72876a4a6a9f88b5fa15b6d7f8cd915bd98c760f42d9f139c80')
+makedepends=('meson' 'intltool' 'itstool' 'docbook-xsl' 'libcanberra')
+source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('6a219e16923d3976f424416c944bef06913922da24bc9e6644ec114c2d563417')
 
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   patch -Np1 < "${srcdir}"/0001-alpm-hooks.patch
-}
-
 build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure --prefix=/usr \
-   --sysconfdir=/etc \
-   --disable-schemas-compile \
-   --disable-gtk-doc
-   sed -i 's|docbook2man|docbook2man --sgml|' man/Makefile
-   make
+   meson "${pkgname}-${pkgver}" build \
+   --prefix=/usr \
+   --sysconfdir=/etc
+   ninja -C build
 }
 
 package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make DESTDIR="${pkgdir}" install
+   DESTDIR="$pkgdir" ninja -C build install
 }
 


[arch-commits] Commit in arm-none-eabi-gcc/repos (8 files)

2017-09-11 Thread Anatol Pomozov
Date: Monday, September 11, 2017 @ 21:41:55
  Author: anatolik
Revision: 257048

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

Added:
  arm-none-eabi-gcc/repos/community-i686/PKGBUILD
(from rev 257047, arm-none-eabi-gcc/trunk/PKGBUILD)
  arm-none-eabi-gcc/repos/community-i686/enable-with-multilib-list-for-arm.patch
(from rev 257047, 
arm-none-eabi-gcc/trunk/enable-with-multilib-list-for-arm.patch)
  arm-none-eabi-gcc/repos/community-x86_64/PKGBUILD
(from rev 257047, arm-none-eabi-gcc/trunk/PKGBUILD)
  
arm-none-eabi-gcc/repos/community-x86_64/enable-with-multilib-list-for-arm.patch
(from rev 257047, 
arm-none-eabi-gcc/trunk/enable-with-multilib-list-for-arm.patch)
Deleted:
  arm-none-eabi-gcc/repos/community-i686/PKGBUILD
  arm-none-eabi-gcc/repos/community-i686/enable-with-multilib-list-for-arm.patch
  arm-none-eabi-gcc/repos/community-x86_64/PKGBUILD
  
arm-none-eabi-gcc/repos/community-x86_64/enable-with-multilib-list-for-arm.patch

--+
 /PKGBUILD|  254 +++
 /enable-with-multilib-list-for-arm.patch |  430 +
 community-i686/PKGBUILD  |  127 ---
 community-i686/enable-with-multilib-list-for-arm.patch   |  215 --
 community-x86_64/PKGBUILD|  127 ---
 community-x86_64/enable-with-multilib-list-for-arm.patch |  215 --
 6 files changed, 684 insertions(+), 684 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 21:40:38 UTC (rev 257047)
+++ community-i686/PKGBUILD 2017-09-11 21:41:55 UTC (rev 257048)
@@ -1,127 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Martin Schmölzer 
-
-_target=arm-none-eabi
-pkgname=$_target-gcc
-pkgver=7.1.0
-_islver=0.18
-pkgrel=1
-_snapshot=7-20170504
-pkgdesc='The GNU Compiler Collection - cross compiler for ARM EABI 
(bare-metal) target'
-arch=(i686 x86_64)
-url='http://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils zlib libmpc)
-makedepends=(gmp mpfr $_target-newlib)
-optdepends=('arm-none-eabi-newlib: Standard C library optimized for embedded 
systems')
-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.bz2
-http://isl.gforge.inria.fr/isl-$_islver.tar.bz2
-enable-with-multilib-list-for-arm.patch)
-sha256sums=('0a179b9fe8e90215d7b2385c40a2e36ba7f823193531847eb7fcff866df556ba'
-'6b8b0fd7f81d0a957beb3679c81bbb34ccc7568d5682844d8924424a0dadcb1b'
-'9447a8fd40d7c1e238b8e9790b739492de5feaa489d61f4ecdab863e5ea1975a')
-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  cd $_basedir
-
-  # link isl for in-tree builds
-  ln -s ../isl-$_islver isl
-
-  echo $pkgver > gcc/BASE-VER
-
-  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
-
-  patch -p1 < $srcdir/enable-with-multilib-list-for-arm.patch
-
-  mkdir $srcdir/build-{gcc,gcc-nano}
-}
-
-_build_gcc() {
-  $srcdir/$_basedir/configure \
---target=$_target \
---prefix=/usr \
---with-sysroot=/usr/$_target \
---with-native-system-header-dir=/include \
---libexecdir=/usr/lib \
---enable-languages=c,c++ \
---enable-plugins \
---disable-decimal-float \
---disable-libffi \
---disable-libgomp \
---disable-libmudflap \
---disable-libquadmath \
---disable-libssp \
---disable-libstdcxx-pch \
---disable-nls \
---disable-shared \
---disable-threads \
---disable-tls \
---with-gnu-as \
---with-gnu-ld \
---with-system-zlib \
---with-newlib \
---with-headers=/usr/$_target/include \
---with-python-dir=share/gcc-arm-none-eabi \
---with-gmp \
---with-mpfr \
---with-mpc \
---with-isl \
---with-libelf \
---enable-gnu-indirect-function \
---with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' 
\
---with-pkgversion='Arch Repository' \
---with-bugurl='https://bugs.archlinux.org/' \
---with-multilib-list=armv6-m,armv7-m,armv7e-m,armv7-r
-
-  make INHIBIT_LIBC_CFLAGS='-DUSE_TM_CLONE_REGISTRY=0'
-}
-
-build() {
-  cd $srcdir/build-gcc
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  _build_gcc
-
-  # Build libstdc++ without exceptions support (the 'nano' variant)
-  cd $srcdir/build-gcc-nano
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections 
-fno-exceptions'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections 
-fno-exceptions'  
-  _build_gcc
-}
-
-package() {
-  cd $srcdir/bu

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

2017-09-11 Thread Anatol Pomozov
Date: Monday, September 11, 2017 @ 21:40:38
  Author: anatolik
Revision: 257047

upgpkg: arm-none-eabi-gcc 7.2.0-1

Modified:
  arm-none-eabi-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 21:30:55 UTC (rev 257046)
+++ PKGBUILD2017-09-11 21:40:38 UTC (rev 257047)
@@ -3,10 +3,10 @@
 
 _target=arm-none-eabi
 pkgname=$_target-gcc
-pkgver=7.1.0
+pkgver=7.2.0
 _islver=0.18
 pkgrel=1
-_snapshot=7-20170504
+_snapshot=7-20170907
 pkgdesc='The GNU Compiler Collection - cross compiler for ARM EABI 
(bare-metal) target'
 arch=(i686 x86_64)
 url='http://gcc.gnu.org/'
@@ -16,10 +16,10 @@
 optdepends=('arm-none-eabi-newlib: Standard C library optimized for embedded 
systems')
 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.bz2
+ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
 http://isl.gforge.inria.fr/isl-$_islver.tar.bz2
 enable-with-multilib-list-for-arm.patch)
-sha256sums=('0a179b9fe8e90215d7b2385c40a2e36ba7f823193531847eb7fcff866df556ba'
+sha256sums=('af37950ac7fc4996b4bdf22cbaaf5d1db52ff6490bfe3d83bcae5d5097645bc9'
 '6b8b0fd7f81d0a957beb3679c81bbb34ccc7568d5682844d8924424a0dadcb1b'
 '9447a8fd40d7c1e238b8e9790b739492de5feaa489d61f4ecdab863e5ea1975a')
 


[arch-commits] Commit in python-recommonmark/trunk (2 files)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:30:47
  Author: anthraxx
Revision: 257045

upgpkg: python-recommonmark 0.4.0.133.c410abb-3 (fix mdnode parent pos)

Added:
  python-recommonmark/trunk/recommonmark-fix-mdnode-parent.patch
Modified:
  python-recommonmark/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 recommonmark-fix-mdnode-parent.patch |   25 +
 2 files changed, 31 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 21:26:13 UTC (rev 257044)
+++ PKGBUILD2017-09-11 21:30:47 UTC (rev 257045)
@@ -3,7 +3,7 @@
 pkgbase=python-recommonmark
 pkgname=('python-recommonmark' 'python2-recommonmark')
 pkgver=0.4.0.133.c410abb
-pkgrel=2
+pkgrel=3
 _gitcommit=c410abb565a3c4ad4de0ce204ab2fa2db8031cf1
 pkgdesc='Markdown parser for docutils'
 url='https://github.com/rtfd/recommonmark'
@@ -14,9 +14,11 @@
  'python2-setuptools' 'python2-commonmark' 'python2-docutils' 
'python2-sphinx')
 checkdepends=('python-pytest' 'python2-pytest')
 
source=(${pkgbase}::"git+https://github.com/rtfd/recommonmark#commit=$_gitcommit";
-recommonmark-sphinx-refdomain-fix.patch)
+recommonmark-sphinx-refdomain-fix.patch
+recommonmark-fix-mdnode-parent.patch)
 sha512sums=('SKIP'
-
'df2440e7ce927ca6adc31e07f9e375fa4643bbe1c33a34821d3d3e5d9d4b2ae8bbdf7412a8f2c64d343c9004f54a4a650fc59e461b3b1eb1ab11c1dec02422fd')
+
'df2440e7ce927ca6adc31e07f9e375fa4643bbe1c33a34821d3d3e5d9d4b2ae8bbdf7412a8f2c64d343c9004f54a4a650fc59e461b3b1eb1ab11c1dec02422fd'
+
'89745108ad78349ace30582cb28f8693edc109c97e94182a37afe5219bec8988bb785d77594e34306facf0eaa4e640c0bdf4e53249d6154094222e58df9498e9')
 
 pkgver() {
   cd ${pkgbase}
@@ -28,6 +30,7 @@
 
 prepare() {
   patch -d ${pkgbase} -p1 < "${srcdir}/recommonmark-sphinx-refdomain-fix.patch"
+  patch -d ${pkgbase} -p1 < "${srcdir}/recommonmark-fix-mdnode-parent.patch"
   cp -a ${pkgbase}{,-py2}
   for tool in cm2{html,latex,man,pseudoxml,xetex,xml}; do
 sed -r "s|(${tool}) |\12 |g" -i ${pkgbase}-py2/setup.py

Added: recommonmark-fix-mdnode-parent.patch
===
--- recommonmark-fix-mdnode-parent.patch(rev 0)
+++ recommonmark-fix-mdnode-parent.patch2017-09-11 21:30:47 UTC (rev 
257045)
@@ -0,0 +1,25 @@
+From c38a2fe8c0427d74edf94627d3bc4bf43306d385 Mon Sep 17 00:00:00 2001
+From: anthraxx 
+Date: Mon, 11 Sep 2017 23:25:14 +0200
+Subject: [PATCH] guard mdnode.parent.sourcepos if not existent
+
+---
+ recommonmark/parser.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/recommonmark/parser.py b/recommonmark/parser.py
+index e54fdf4..f651467 100644
+--- a/recommonmark/parser.py
 b/recommonmark/parser.py
+@@ -131,7 +131,7 @@ class CommonMarkParser(parsers.Parser):
+ # these mdnodes won't have sourcepos on them for whatever reason. This
+ # is better than 0 though.
+ ref_node.line = (mdnode.sourcepos[0][0] if mdnode.sourcepos
+- else mdnode.parent.sourcepos[0][0])
++ else mdnode.parent.sourcepos[0][0] if 
mdnode.parent.sourcepos else 0)
+ if mdnode.title:
+ ref_node['title'] = mdnode.title
+ next_node = ref_node
+-- 
+2.14.1
+


[arch-commits] Commit in python-recommonmark/repos/community-any (5 files)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:30:55
  Author: anthraxx
Revision: 257046

archrelease: copy trunk to community-any

Added:
  python-recommonmark/repos/community-any/PKGBUILD
(from rev 257045, python-recommonmark/trunk/PKGBUILD)
  python-recommonmark/repos/community-any/recommonmark-fix-mdnode-parent.patch
(from rev 257045, 
python-recommonmark/trunk/recommonmark-fix-mdnode-parent.patch)
  
python-recommonmark/repos/community-any/recommonmark-sphinx-refdomain-fix.patch
(from rev 257045, 
python-recommonmark/trunk/recommonmark-sphinx-refdomain-fix.patch)
Deleted:
  python-recommonmark/repos/community-any/PKGBUILD
  
python-recommonmark/repos/community-any/recommonmark-sphinx-refdomain-fix.patch

-+
 PKGBUILD|  169 +++---
 recommonmark-fix-mdnode-parent.patch|   25 
 recommonmark-sphinx-refdomain-fix.patch |  144 -
 3 files changed, 183 insertions(+), 155 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 21:30:47 UTC (rev 257045)
+++ PKGBUILD2017-09-11 21:30:55 UTC (rev 257046)
@@ -1,83 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgbase=python-recommonmark
-pkgname=('python-recommonmark' 'python2-recommonmark')
-pkgver=0.4.0.133.c410abb
-pkgrel=2
-_gitcommit=c410abb565a3c4ad4de0ce204ab2fa2db8031cf1
-pkgdesc='Markdown parser for docutils'
-url='https://github.com/rtfd/recommonmark'
-arch=('any')
-license=('MIT')
-makedepends=('git'
- 'python-setuptools' 'python-commonmark' 'python-docutils' 
'python-sphinx'
- 'python2-setuptools' 'python2-commonmark' 'python2-docutils' 
'python2-sphinx')
-checkdepends=('python-pytest' 'python2-pytest')
-source=(${pkgbase}::"git+https://github.com/rtfd/recommonmark#commit=$_gitcommit";
-recommonmark-sphinx-refdomain-fix.patch)
-sha512sums=('SKIP'
-
'df2440e7ce927ca6adc31e07f9e375fa4643bbe1c33a34821d3d3e5d9d4b2ae8bbdf7412a8f2c64d343c9004f54a4a650fc59e461b3b1eb1ab11c1dec02422fd')
-
-pkgver() {
-  cd ${pkgbase}
-  printf "%s.%s.%s" \
-"$(PYTHONPATH=. python -c 
'print(__import__('"'recommonmark'"').__version__)')" \
-"$(git rev-list --count HEAD)" \
-"$(git rev-parse --short HEAD)"
-}
-
-prepare() {
-  patch -d ${pkgbase} -p1 < "${srcdir}/recommonmark-sphinx-refdomain-fix.patch"
-  cp -a ${pkgbase}{,-py2}
-  for tool in cm2{html,latex,man,pseudoxml,xetex,xml}; do
-sed -r "s|(${tool}) |\12 |g" -i ${pkgbase}-py2/setup.py
-  done
-}
-
-build() {
-  msg2 "Building python..."
-  (cd ${pkgbase}
-python setup.py build
-make -j1 -C docs text man SPHINXBUILD=sphinx-build
-  )
-  msg2 "Building python2..."
-  (cd ${pkgbase}-py2
-python2 setup.py build
-make -j1 -C docs text man SPHINXBUILD=sphinx-build2
-  )
-}
-
-check() {
-  msg2 "Checking python..."
-  (cd ${pkgbase}
-py.test
-  )
-  msg2 "Checking python2..."
-  (cd ${pkgbase}-py2
-py.test2
-  )
-}
-
-package_python-recommonmark() {
-  depends=('python-docutils' 'python-commonmark' 'python-setuptools' 
'python-sphinx')
-
-  cd ${pkgbase}
-  python setup.py install --root="${pkgdir}" --skip-build -O1
-  install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/recommonmark.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-package_python2-recommonmark() {
-  depends=('python2-docutils' 'python2-commonmark' 'python2-setuptools' 
'python2-sphinx')
-
-  cd ${pkgbase}-py2
-  python2 setup.py install --root="${pkgdir}" --skip-build -O1
-  install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/recommonmark.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-recommonmark/repos/community-any/PKGBUILD (from rev 257045, 
python-recommonmark/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 21:30:55 UTC (rev 257046)
@@ -0,0 +1,86 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-recommonmark
+pkgname=('python-recommonmark' 'python2-recommonmark')
+pkgver=0.4.0.133.c410abb
+pkgrel=3
+_gitcommit=c410abb565a3c4ad4de0ce204ab2fa2db8031cf1
+pkgdesc='Markdown parser for docutils'
+url='https://github.com/rtfd/recommonmark'
+arch=('any')
+license=('MIT')
+makedepends=('git'
+ 'python-setuptools' 'python-commonmark' 'python-docutils' 
'python-sphinx'
+ 'python2-setuptools' 'python2-commonmark' 'python2-docutils' 
'python2-sphinx')
+checkdepends=('pytho

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

2017-09-11 Thread Christian Hesse
Date: Monday, September 11, 2017 @ 21:26:13
  Author: eworm
Revision: 257044

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 21:25:53 UTC (rev 257043)
+++ community-i686/PKGBUILD 2017-09-11 21:26:13 UTC (rev 257044)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Jonathan Conder 
-
-pkgname='packagekit'
-pkgver=1.1.6
-pkgrel=1
-pkgdesc='A system designed to make installation and updates of packages easier'
-arch=('i686' 'x86_64')
-url='http://www.packagekit.org/'
-license=('GPL')
-depends=('dbus-glib' 'pacman>=5.0.0' 'polkit' 'shared-mime-info' 'sqlite')
-makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
-   'networkmanager' 'bash-completion' 'vala' 'autoconf-archive')
-optdepends=('networkmanager: detect connection status'
-   'bash-completion: command completion in bash')
-backup=('var/lib/PackageKit/transactions.db'
-   'etc/PackageKit/alpm.d/pacman.conf'
-   'etc/PackageKit/alpm.d/repos.list')
-validpgpkeys=(
-   '163EB50119225DB3DF8F49EA17ACBA8DFA970E17'  # Richard Hughes 

-   'EC60AABDF42AAE8FB062640480858FA38F62AF74') # Kalev Lember 

-source=("https://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
-sha256sums=('8c1e1e057fc29aca795f70a4976d105a3cc03961492fbd6c752c841afe45107c'
-'SKIP')
-
-build() {
-   cd "${srcdir}/PackageKit-${pkgver}"
-
-   ./autogen.sh --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --libexecdir=/usr/lib/PackageKit \
-   --with-dbus-sys=/usr/share/dbus-1/system.d \
-   --disable-static \
-   --disable-gtk-doc \
-   --disable-local \
-   --disable-browser-plugin \
-   --disable-gstreamer-plugin \
-   --disable-gtk-module \
-   --disable-command-not-found \
-   --disable-cron \
-   --disable-dummy \
-   --enable-alpm
-   make
-}
-
-package() {
-   cd "${srcdir}/PackageKit-${pkgver}"
-
-   # install directory with root owner, polkit group and
-   # correct permission
-   install -d -o root -g 102 -m 750 "${pkgdir}/usr/share/polkit-1/rules.d"
-
-   make DESTDIR="${pkgdir}" install
-}
-

Copied: packagekit/repos/community-i686/PKGBUILD (from rev 257043, 
packagekit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 21:26:13 UTC (rev 257044)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 
+
+pkgname='packagekit'
+pkgver=1.1.7
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman>=5.0.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala' 'autoconf-archive')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=(
+   '163EB50119225DB3DF8F49EA17ACBA8DFA970E17'  # Richard Hughes 

+   'EC60AABDF42AAE8FB062640480858FA38F62AF74') # Kalev Lember 

+source=("https://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
+sha256sums=('9fe34ee5657e45267e829bc7a1c9cf4d024e0ea00d3accfb40dda4be8cac606a'
+'SKIP')
+
+build() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --with-dbus-sys=/usr/share/dbus-1/system.d \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+  

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

2017-09-11 Thread Christian Hesse
Date: Monday, September 11, 2017 @ 21:25:53
  Author: eworm
Revision: 257043

upgpkg: packagekit 1.1.7-1

new upstream release

Modified:
  packagekit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 21:11:35 UTC (rev 257042)
+++ PKGBUILD2017-09-11 21:25:53 UTC (rev 257043)
@@ -3,7 +3,7 @@
 # Contributor: Jonathan Conder 
 
 pkgname='packagekit'
-pkgver=1.1.6
+pkgver=1.1.7
 pkgrel=1
 pkgdesc='A system designed to make installation and updates of packages easier'
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
'163EB50119225DB3DF8F49EA17ACBA8DFA970E17'  # Richard Hughes 

'EC60AABDF42AAE8FB062640480858FA38F62AF74') # Kalev Lember 

 
source=("https://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
-sha256sums=('8c1e1e057fc29aca795f70a4976d105a3cc03961492fbd6c752c841afe45107c'
+sha256sums=('9fe34ee5657e45267e829bc7a1c9cf4d024e0ea00d3accfb40dda4be8cac606a'
 'SKIP')
 
 build() {


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:11:35
  Author: anthraxx
Revision: 257042

archrelease: copy trunk to community-any

Added:
  python-recommonmark/repos/community-any/PKGBUILD
(from rev 257041, python-recommonmark/trunk/PKGBUILD)
  
python-recommonmark/repos/community-any/recommonmark-sphinx-refdomain-fix.patch
(from rev 257041, 
python-recommonmark/trunk/recommonmark-sphinx-refdomain-fix.patch)
Deleted:
  python-recommonmark/repos/community-any/PKGBUILD
  
python-recommonmark/repos/community-any/recommonmark-sphinx-refdomain-fix.patch

-+
 PKGBUILD|  160 +++---
 recommonmark-sphinx-refdomain-fix.patch |  144 +--
 2 files changed, 155 insertions(+), 149 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 21:11:19 UTC (rev 257041)
+++ PKGBUILD2017-09-11 21:11:35 UTC (rev 257042)
@@ -1,77 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgbase=python-recommonmark
-pkgname=('python-recommonmark' 'python2-recommonmark')
-pkgver=0.4.0.133.c410abb
-pkgrel=1
-_gitcommit=c410abb565a3c4ad4de0ce204ab2fa2db8031cf1
-pkgdesc='Markdown parser for docutils'
-url='https://github.com/rtfd/recommonmark'
-arch=('any')
-license=('MIT')
-makedepends=('git'
- 'python-setuptools' 'python-commonmark' 'python-docutils' 
'python-sphinx'
- 'python2-setuptools' 'python2-commonmark' 'python2-docutils' 
'python2-sphinx')
-checkdepends=('python-pytest' 'python2-pytest')
-source=(${pkgbase}::"git+https://github.com/rtfd/recommonmark#commit=$_gitcommit";
-recommonmark-sphinx-refdomain-fix.patch)
-sha512sums=('SKIP'
-
'df2440e7ce927ca6adc31e07f9e375fa4643bbe1c33a34821d3d3e5d9d4b2ae8bbdf7412a8f2c64d343c9004f54a4a650fc59e461b3b1eb1ab11c1dec02422fd')
-
-pkgver() {
-  cd ${pkgbase}
-  printf "%s.%s.%s" "$(PYTHONPATH=. python -c 
'print(__import__('"'recommonmark'"').__version__)')" \
-"$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
-}
-
-prepare() {
-  patch -d ${pkgbase} -p1 < "${srcdir}/recommonmark-sphinx-refdomain-fix.patch"
-  cp -a ${pkgbase}{,-py2}
-  for tool in cm2{html,latex,man,pseudoxml,xetex,xml}; do
-sed -r "s|(${tool}) |\12 |g" -i ${pkgbase}-py2/setup.py
-  done
-}
-
-build() {
-  msg2 "Building python..."
-  (cd ${pkgbase}
-python setup.py build
-make -j1 -C docs text man
-  )
-  msg2 "Building python2..."
-  (cd ${pkgbase}-py2
-python2 setup.py build
-make -j1 -C docs text man
-  )
-}
-
-check() {
-  msg2 "Checking python..."
-  (cd ${pkgbase}
-py.test
-  )
-  msg2 "Checking python2..."
-  (cd ${pkgbase}-py2
-py.test2
-  )
-}
-
-package_python-recommonmark() {
-  depends=('python-docutils' 'python-commonmark' 'python-setuptools' 
'python-sphinx')
-
-  cd ${pkgbase}
-  python setup.py install --root="${pkgdir}" --skip-build -O1
-  install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-package_python2-recommonmark() {
-  depends=('python2-docutils' 'python2-commonmark' 'python2-setuptools' 
'python2-sphinx')
-
-  cd ${pkgbase}-py2
-  python2 setup.py install --root="${pkgdir}" --skip-build -O1
-  install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-recommonmark/repos/community-any/PKGBUILD (from rev 257041, 
python-recommonmark/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 21:11:35 UTC (rev 257042)
@@ -0,0 +1,83 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-recommonmark
+pkgname=('python-recommonmark' 'python2-recommonmark')
+pkgver=0.4.0.133.c410abb
+pkgrel=2
+_gitcommit=c410abb565a3c4ad4de0ce204ab2fa2db8031cf1
+pkgdesc='Markdown parser for docutils'
+url='https://github.com/rtfd/recommonmark'
+arch=('any')
+license=('MIT')
+makedepends=('git'
+ 'python-setuptools' 'python-commonmark' 'python-docutils' 
'python-sphinx'
+ 'python2-setuptools' 'python2-commonmark' 'python2-docutils' 
'python2-sphinx')
+checkdepends=('python-pytest' 'python2-pytest')
+source=(${pkgbase}::"git+https://github.com/rtfd/recommonmark#commit=$_gitcommit";
+recommonmark-sphinx-refdomain-fix.patch)
+sha512sums=('SKIP'
+
'df2440e7ce927ca6adc31e07f9e375fa4643bbe1c33a34821d3d3e5d9d4b2ae8bbdf7412a8f2c64d343c9004f54a4a650fc59e461b3b1eb1ab11c1dec02422fd')
+
+pkgver() {
+  cd ${pkgbase}
+  printf "%s.%s.%s" \
+"$(PYTHONPATH=. python -c 
'print(__import__('"'recommonmark'"').__version__)')" \
+"$(git rev-list --count HEAD)" \
+"$(git rev-parse --short HEAD)"
+}
+
+prepare() {
+  patch -d ${pkgbase} -p1 < "${srcdir}/recommonmark-sphinx-refdomain-fix.p

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:11:19
  Author: anthraxx
Revision: 257041

upgpkg: python-recommonmark 0.4.0.133.c410abb-2 (publish docs)

Modified:
  python-recommonmark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 21:02:40 UTC (rev 257040)
+++ PKGBUILD2017-09-11 21:11:19 UTC (rev 257041)
@@ -3,7 +3,7 @@
 pkgbase=python-recommonmark
 pkgname=('python-recommonmark' 'python2-recommonmark')
 pkgver=0.4.0.133.c410abb
-pkgrel=1
+pkgrel=2
 _gitcommit=c410abb565a3c4ad4de0ce204ab2fa2db8031cf1
 pkgdesc='Markdown parser for docutils'
 url='https://github.com/rtfd/recommonmark'
@@ -20,8 +20,10 @@
 
 pkgver() {
   cd ${pkgbase}
-  printf "%s.%s.%s" "$(PYTHONPATH=. python -c 
'print(__import__('"'recommonmark'"').__version__)')" \
-"$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+  printf "%s.%s.%s" \
+"$(PYTHONPATH=. python -c 
'print(__import__('"'recommonmark'"').__version__)')" \
+"$(git rev-list --count HEAD)" \
+"$(git rev-parse --short HEAD)"
 }
 
 prepare() {
@@ -36,12 +38,12 @@
   msg2 "Building python..."
   (cd ${pkgbase}
 python setup.py build
-make -j1 -C docs text man
+make -j1 -C docs text man SPHINXBUILD=sphinx-build
   )
   msg2 "Building python2..."
   (cd ${pkgbase}-py2
 python2 setup.py build
-make -j1 -C docs text man
+make -j1 -C docs text man SPHINXBUILD=sphinx-build2
   )
 }
 
@@ -63,6 +65,8 @@
   python setup.py install --root="${pkgdir}" --skip-build -O1
   install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/man/recommonmark.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 }
 
 package_python2-recommonmark() {
@@ -72,6 +76,8 @@
   python2 setup.py install --root="${pkgdir}" --skip-build -O1
   install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/man/recommonmark.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 }
 
 # vim: ts=2 sw=2 et:


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

2017-09-11 Thread Sébastien Luttringer
Date: Monday, September 11, 2017 @ 21:03:32
  Author: seblu
Revision: 305364

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

Added:
  btrfs-progs/repos/core-i686/PKGBUILD
(from rev 305363, btrfs-progs/repos/testing-i686/PKGBUILD)
  btrfs-progs/repos/core-i686/btrfs-progs.install
(from rev 305363, btrfs-progs/repos/testing-i686/btrfs-progs.install)
  btrfs-progs/repos/core-i686/btrfs-scrub@.service
(from rev 305363, btrfs-progs/repos/testing-i686/btrfs-scrub@.service)
  btrfs-progs/repos/core-i686/btrfs-scrub@.timer
(from rev 305363, btrfs-progs/repos/testing-i686/btrfs-scrub@.timer)
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
(from rev 305363, btrfs-progs/repos/testing-i686/initcpio-hook-btrfs)
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
(from rev 305363, btrfs-progs/repos/testing-i686/initcpio-install-btrfs)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 305363, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 305363, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
(from rev 305363, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
(from rev 305363, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 305363, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 305363, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-i686/PKGBUILD
  btrfs-progs/repos/core-i686/btrfs-progs.install
  btrfs-progs/repos/core-i686/btrfs-scrub@.service
  btrfs-progs/repos/core-i686/btrfs-scrub@.timer
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-x86_64/

+
 /PKGBUILD  |  122 +++
 /btrfs-progs.install   |   30 
 /btrfs-scrub@.service  |   14 
 /btrfs-scrub@.timer|   20 +
 /initcpio-hook-btrfs   |   14 
 /initcpio-install-btrfs|   34 +
 core-i686/PKGBUILD |   61 -
 core-i686/btrfs-progs.install  |   15 
 core-i686/btrfs-scrub@.service |7 --
 core-i686/btrfs-scrub@.timer   |   10 --
 core-i686/initcpio-hook-btrfs  |7 --
 core-i686/initcpio-install-btrfs   |   17 
 core-x86_64/PKGBUILD   |   61 -
 core-x86_64/btrfs-progs.install|   15 
 core-x86_64/btrfs-scrub@.service   |7 --
 core-x86_64/btrfs-scrub@.timer |   10 --
 core-x86_64/initcpio-hook-btrfs|7 --
 core-x86_64/initcpio-install-btrfs |   17 
 18 files changed, 234 insertions(+), 234 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2017-09-11 20:46:56 UTC (rev 305363)
+++ core-i686/PKGBUILD  2017-09-11 21:03:32 UTC (rev 305364)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=4.12.1
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('i686' 'x86_64')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
-makedepends=('git' 'asciidoc' 'xmlto' 'systemd')
-url='https://btrfs.wiki.kernel.org'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
-source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs'
-'btrfs-scrub@.service'
-'btrfs-scrub@.timer')
-install=btrfs-progs.install
-options=(!staticlibs)
-md5sums=('SKIP'
- 'ef6dc0caff8b51daf4bed5f25ed003d5'
- '7241ba3a4286d08da0d50b7176941112'
- 'b09688a915a0ec8f40e2f5aacbabc9ad'
- '794b867e09451284c545bae112aa0cfd'
- '502221c1b47a3bb2c06703d4fb90a0c2')
-
-build() {
-  cd $pkgname-v$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-v$pkgver
- ./btrfs filesystem show
-}
-
-package() {
-  cd $pkgname-v$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # install bash completion (FS#44618)
-  install -Dm644 btrfs-completion 
"$pkgdir/usr/share/bash-completion/completions/btrf

[arch-commits] Commit in (5 files)

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:02:26
  Author: anthraxx
Revision: 257039

addpkg: 0.4.0.133.c410abb

Added:
  python-recommonmark/
  python-recommonmark/repos/
  python-recommonmark/trunk/
  python-recommonmark/trunk/PKGBUILD
  python-recommonmark/trunk/recommonmark-sphinx-refdomain-fix.patch

-+
 PKGBUILD|   77 ++
 recommonmark-sphinx-refdomain-fix.patch |   72 
 2 files changed, 149 insertions(+)

Added: python-recommonmark/trunk/PKGBUILD
===
--- python-recommonmark/trunk/PKGBUILD  (rev 0)
+++ python-recommonmark/trunk/PKGBUILD  2017-09-11 21:02:26 UTC (rev 257039)
@@ -0,0 +1,77 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-recommonmark
+pkgname=('python-recommonmark' 'python2-recommonmark')
+pkgver=0.4.0.133.c410abb
+pkgrel=1
+_gitcommit=c410abb565a3c4ad4de0ce204ab2fa2db8031cf1
+pkgdesc='Markdown parser for docutils'
+url='https://github.com/rtfd/recommonmark'
+arch=('any')
+license=('MIT')
+makedepends=('git'
+ 'python-setuptools' 'python-commonmark' 'python-docutils' 
'python-sphinx'
+ 'python2-setuptools' 'python2-commonmark' 'python2-docutils' 
'python2-sphinx')
+checkdepends=('python-pytest' 'python2-pytest')
+source=(${pkgbase}::"git+https://github.com/rtfd/recommonmark#commit=$_gitcommit";
+recommonmark-sphinx-refdomain-fix.patch)
+sha512sums=('SKIP'
+
'df2440e7ce927ca6adc31e07f9e375fa4643bbe1c33a34821d3d3e5d9d4b2ae8bbdf7412a8f2c64d343c9004f54a4a650fc59e461b3b1eb1ab11c1dec02422fd')
+
+pkgver() {
+  cd ${pkgbase}
+  printf "%s.%s.%s" "$(PYTHONPATH=. python -c 
'print(__import__('"'recommonmark'"').__version__)')" \
+"$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+}
+
+prepare() {
+  patch -d ${pkgbase} -p1 < "${srcdir}/recommonmark-sphinx-refdomain-fix.patch"
+  cp -a ${pkgbase}{,-py2}
+  for tool in cm2{html,latex,man,pseudoxml,xetex,xml}; do
+sed -r "s|(${tool}) |\12 |g" -i ${pkgbase}-py2/setup.py
+  done
+}
+
+build() {
+  msg2 "Building python..."
+  (cd ${pkgbase}
+python setup.py build
+make -j1 -C docs text man
+  )
+  msg2 "Building python2..."
+  (cd ${pkgbase}-py2
+python2 setup.py build
+make -j1 -C docs text man
+  )
+}
+
+check() {
+  msg2 "Checking python..."
+  (cd ${pkgbase}
+py.test
+  )
+  msg2 "Checking python2..."
+  (cd ${pkgbase}-py2
+py.test2
+  )
+}
+
+package_python-recommonmark() {
+  depends=('python-docutils' 'python-commonmark' 'python-setuptools' 
'python-sphinx')
+
+  cd ${pkgbase}
+  python setup.py install --root="${pkgdir}" --skip-build -O1
+  install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+package_python2-recommonmark() {
+  depends=('python2-docutils' 'python2-commonmark' 'python2-setuptools' 
'python2-sphinx')
+
+  cd ${pkgbase}-py2
+  python2 setup.py install --root="${pkgdir}" --skip-build -O1
+  install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Added: python-recommonmark/trunk/recommonmark-sphinx-refdomain-fix.patch
===
--- python-recommonmark/trunk/recommonmark-sphinx-refdomain-fix.patch   
(rev 0)
+++ python-recommonmark/trunk/recommonmark-sphinx-refdomain-fix.patch   
2017-09-11 21:02:26 UTC (rev 257039)
@@ -0,0 +1,72 @@
+From 90d07fbe8fccaeb0da0ed7708e4c2a89f33c2426 Mon Sep 17 00:00:00 2001
+From: anthraxx 
+Date: Mon, 7 Aug 2017 15:50:41 +0200
+Subject: [PATCH] fix for modern sphinx require refdomain
+
+---
+ recommonmark/parser.py |  1 +
+ tests/test_basic.py| 10 +-
+ 2 files changed, 6 insertions(+), 5 deletions(-)
+
+diff --git a/recommonmark/parser.py b/recommonmark/parser.py
+index e54fdf4..c3c27ac 100644
+--- a/recommonmark/parser.py
 b/recommonmark/parser.py
+@@ -141,6 +141,7 @@ class CommonMarkParser(parsers.Parser):
+ wrap_node = addnodes.pending_xref(
+ reftarget=mdnode.destination,
+ reftype='any',
++refdomain='',
+ refexplicit=True,
+ refwarn=True
+ )
+diff --git a/tests/test_basic.py b/tests/test_basic.py
+index 0e703dc..ca1a08c 100644
+--- a/tests/test_basic.py
 b/tests/test_basic.py
+@@ -183,7 +183,7 @@ class TestParsing(unittest.TestCase):
+ 
+ 
+   
+-
++
+   link
+ 
+   
+@@ -198,7 +198,7 @@ class TestParsing(unittest.TestCase):
+ 
+ 
+   
+-
++
+   link
+ 
+ 

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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 21:02:40
  Author: anthraxx
Revision: 257040

archrelease: copy trunk to community-any

Added:
  python-recommonmark/repos/community-any/
  python-recommonmark/repos/community-any/PKGBUILD
(from rev 257039, python-recommonmark/trunk/PKGBUILD)
  
python-recommonmark/repos/community-any/recommonmark-sphinx-refdomain-fix.patch
(from rev 257039, 
python-recommonmark/trunk/recommonmark-sphinx-refdomain-fix.patch)

-+
 PKGBUILD|   77 ++
 recommonmark-sphinx-refdomain-fix.patch |   72 
 2 files changed, 149 insertions(+)

Copied: python-recommonmark/repos/community-any/PKGBUILD (from rev 257039, 
python-recommonmark/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-09-11 21:02:40 UTC (rev 257040)
@@ -0,0 +1,77 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-recommonmark
+pkgname=('python-recommonmark' 'python2-recommonmark')
+pkgver=0.4.0.133.c410abb
+pkgrel=1
+_gitcommit=c410abb565a3c4ad4de0ce204ab2fa2db8031cf1
+pkgdesc='Markdown parser for docutils'
+url='https://github.com/rtfd/recommonmark'
+arch=('any')
+license=('MIT')
+makedepends=('git'
+ 'python-setuptools' 'python-commonmark' 'python-docutils' 
'python-sphinx'
+ 'python2-setuptools' 'python2-commonmark' 'python2-docutils' 
'python2-sphinx')
+checkdepends=('python-pytest' 'python2-pytest')
+source=(${pkgbase}::"git+https://github.com/rtfd/recommonmark#commit=$_gitcommit";
+recommonmark-sphinx-refdomain-fix.patch)
+sha512sums=('SKIP'
+
'df2440e7ce927ca6adc31e07f9e375fa4643bbe1c33a34821d3d3e5d9d4b2ae8bbdf7412a8f2c64d343c9004f54a4a650fc59e461b3b1eb1ab11c1dec02422fd')
+
+pkgver() {
+  cd ${pkgbase}
+  printf "%s.%s.%s" "$(PYTHONPATH=. python -c 
'print(__import__('"'recommonmark'"').__version__)')" \
+"$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+}
+
+prepare() {
+  patch -d ${pkgbase} -p1 < "${srcdir}/recommonmark-sphinx-refdomain-fix.patch"
+  cp -a ${pkgbase}{,-py2}
+  for tool in cm2{html,latex,man,pseudoxml,xetex,xml}; do
+sed -r "s|(${tool}) |\12 |g" -i ${pkgbase}-py2/setup.py
+  done
+}
+
+build() {
+  msg2 "Building python..."
+  (cd ${pkgbase}
+python setup.py build
+make -j1 -C docs text man
+  )
+  msg2 "Building python2..."
+  (cd ${pkgbase}-py2
+python2 setup.py build
+make -j1 -C docs text man
+  )
+}
+
+check() {
+  msg2 "Checking python..."
+  (cd ${pkgbase}
+py.test
+  )
+  msg2 "Checking python2..."
+  (cd ${pkgbase}-py2
+py.test2
+  )
+}
+
+package_python-recommonmark() {
+  depends=('python-docutils' 'python-commonmark' 'python-setuptools' 
'python-sphinx')
+
+  cd ${pkgbase}
+  python setup.py install --root="${pkgdir}" --skip-build -O1
+  install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+package_python2-recommonmark() {
+  depends=('python2-docutils' 'python2-commonmark' 'python2-setuptools' 
'python2-sphinx')
+
+  cd ${pkgbase}-py2
+  python2 setup.py install --root="${pkgdir}" --skip-build -O1
+  install -Dm 644 license.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
python-recommonmark/repos/community-any/recommonmark-sphinx-refdomain-fix.patch 
(from rev 257039, 
python-recommonmark/trunk/recommonmark-sphinx-refdomain-fix.patch)
===
--- community-any/recommonmark-sphinx-refdomain-fix.patch   
(rev 0)
+++ community-any/recommonmark-sphinx-refdomain-fix.patch   2017-09-11 
21:02:40 UTC (rev 257040)
@@ -0,0 +1,72 @@
+From 90d07fbe8fccaeb0da0ed7708e4c2a89f33c2426 Mon Sep 17 00:00:00 2001
+From: anthraxx 
+Date: Mon, 7 Aug 2017 15:50:41 +0200
+Subject: [PATCH] fix for modern sphinx require refdomain
+
+---
+ recommonmark/parser.py |  1 +
+ tests/test_basic.py| 10 +-
+ 2 files changed, 6 insertions(+), 5 deletions(-)
+
+diff --git a/recommonmark/parser.py b/recommonmark/parser.py
+index e54fdf4..c3c27ac 100644
+--- a/recommonmark/parser.py
 b/recommonmark/parser.py
+@@ -141,6 +141,7 @@ class CommonMarkParser(parsers.Parser):
+ wrap_node = addnodes.pending_xref(
+ reftarget=mdnode.destination,
+ reftype='any',
++refdomain='',
+ refexplicit=True,
+ refwarn=True
+ )
+diff --git a/tests/test_basic.py b/tests/test_basic.py
+index 0e703dc..ca1a08c 100644
+--- a/tests/test_basic.py
 b/tests/test_basic.py
+@@ -183,7 +183,7 @@ class TestParsing(unittest.TestCase):
+ 
+ 
+  

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

2017-09-11 Thread Sébastien Luttringer
Date: Monday, September 11, 2017 @ 20:46:56
  Author: seblu
Revision: 305363

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

Added:
  systemd/repos/testing-i686/
  systemd/repos/testing-i686/PKGBUILD
(from rev 305362, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/arch.conf
(from rev 305362, systemd/trunk/arch.conf)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 305362, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 305362, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 305362, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/loader.conf
(from rev 305362, systemd/trunk/loader.conf)
  systemd/repos/testing-i686/splash-arch.bmp
(from rev 305362, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-i686/systemd-hwdb.hook
(from rev 305362, systemd/trunk/systemd-hwdb.hook)
  systemd/repos/testing-i686/systemd-sysusers.hook
(from rev 305362, systemd/trunk/systemd-sysusers.hook)
  systemd/repos/testing-i686/systemd-tmpfiles.hook
(from rev 305362, systemd/trunk/systemd-tmpfiles.hook)
  systemd/repos/testing-i686/systemd-update.hook
(from rev 305362, systemd/trunk/systemd-update.hook)
  systemd/repos/testing-i686/systemd-user.pam
(from rev 305362, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-i686/systemd.install
(from rev 305362, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 305362, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 305362, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 305362, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 305362, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 305362, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 305362, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 305362, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hwdb.hook
(from rev 305362, systemd/trunk/systemd-hwdb.hook)
  systemd/repos/testing-x86_64/systemd-sysusers.hook
(from rev 305362, systemd/trunk/systemd-sysusers.hook)
  systemd/repos/testing-x86_64/systemd-tmpfiles.hook
(from rev 305362, systemd/trunk/systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/systemd-update.hook
(from rev 305362, systemd/trunk/systemd-update.hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 305362, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 305362, systemd/trunk/systemd.install)

-+
 testing-i686/PKGBUILD   |  279 ++
 testing-i686/arch.conf  |7 
 testing-i686/initcpio-hook-udev |   22 ++
 testing-i686/initcpio-install-systemd   |  198 +
 testing-i686/initcpio-install-udev  |   29 +++
 testing-i686/loader.conf|1 
 testing-i686/systemd-hwdb.hook  |   11 +
 testing-i686/systemd-sysusers.hook  |   11 +
 testing-i686/systemd-tmpfiles.hook  |   11 +
 testing-i686/systemd-update.hook|   11 +
 testing-i686/systemd-user.pam   |5 
 testing-i686/systemd.install|   99 ++
 testing-x86_64/PKGBUILD |  279 ++
 testing-x86_64/arch.conf|7 
 testing-x86_64/initcpio-hook-udev   |   22 ++
 testing-x86_64/initcpio-install-systemd |  198 +
 testing-x86_64/initcpio-install-udev|   29 +++
 testing-x86_64/loader.conf  |1 
 testing-x86_64/systemd-hwdb.hook|   11 +
 testing-x86_64/systemd-sysusers.hook|   11 +
 testing-x86_64/systemd-tmpfiles.hook|   11 +
 testing-x86_64/systemd-update.hook  |   11 +
 testing-x86_64/systemd-user.pam |5 
 testing-x86_64/systemd.install  |   99 ++
 24 files changed, 1368 insertions(+)

Copied: systemd/repos/testing-i686/PKGBUILD (from rev 305362, 
systemd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-09-11 20:46:56 UTC (rev 305363)
@@ -0,0 +1,279 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Maintainer: Dave Reisner 
+# Maintainer: Tom Gundersen 
+
+pkgbase=systemd
+pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
+# latest commit on stable branch
+_commit='d52e2bb9c20216972754c054e8534bca28baab66'
+# Bump this to latest major release for signed tag verification,
+# the commit count is handled by pkgver() function.
+pkgver=234.11
+pkgrel=9
+arch=('i686' 'x86_64')
+url=

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

2017-09-11 Thread Sébastien Luttringer
Date: Monday, September 11, 2017 @ 20:45:52
  Author: seblu
Revision: 305362

upgpkg: systemd 234.11-9

- See FS#55492

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:27:18 UTC (rev 305361)
+++ PKGBUILD2017-09-11 20:45:52 UTC (rev 305362)
@@ -10,7 +10,7 @@
 # Bump this to latest major release for signed tag verification,
 # the commit count is handled by pkgver() function.
 pkgver=234.11
-pkgrel=8
+pkgrel=9
 arch=('i686' 'x86_64')
 url="https://www.github.com/systemd/systemd";
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -157,6 +157,7 @@
 package_systemd() {
   pkgdesc="system and service manager"
   license=('GPL2' 'LGPL2.1')
+  groups=('base-devel')
   depends=('acl' 'bash' 'cryptsetup' 'dbus' 'iptables' 'kbd' 'kmod' 'hwids' 
'libcap'
'libgcrypt' 'libsystemd' 'libidn' 'lz4' 'pam' 'libelf' 'libseccomp'
'util-linux' 'xz')


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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:45:19
  Author: bpiotrowski
Revision: 257038

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

Added:
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 257037, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands-gcc7.patch
(from rev 257037, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 257037, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 257037, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 257037, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands-gcc7.patch
(from rev 257037, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 257037, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 257037, widelands/trunk/widelands.png)
Deleted:
  widelands/repos/community-staging-i686/PKGBUILD
  widelands/repos/community-staging-i686/widelands-gcc7.patch
  widelands/repos/community-staging-i686/widelands.desktop
  widelands/repos/community-staging-i686/widelands.png
  widelands/repos/community-staging-x86_64/PKGBUILD
  widelands/repos/community-staging-x86_64/widelands-gcc7.patch
  widelands/repos/community-staging-x86_64/widelands.desktop
  widelands/repos/community-staging-x86_64/widelands.png

---+
 /PKGBUILD |  118 
 /widelands-gcc7.patch |   30 ++
 /widelands.desktop|   16 +++
 community-staging-i686/PKGBUILD   |   59 
 community-staging-i686/widelands-gcc7.patch   |   15 ---
 community-staging-i686/widelands.desktop  |8 -
 community-staging-x86_64/PKGBUILD |   59 
 community-staging-x86_64/widelands-gcc7.patch |   15 ---
 community-staging-x86_64/widelands.desktop|8 -
 9 files changed, 164 insertions(+), 164 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2017-09-11 20:42:50 UTC (rev 257037)
+++ community-staging-i686/PKGBUILD 2017-09-11 20:45:19 UTC (rev 257038)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Arkham 
-# Contributor: Christoph Zeiler 
-
-pkgname=widelands
-pkgver=19
-_realver=build${pkgver}
-pkgrel=8
-pkgdesc="A realtime strategy game with emphasis on economy and transport"
-arch=('i686' 'x86_64')
-url="http://widelands.org/";
-license=('GPL')
-depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 'lua51' 
'glew' 'python2' 'boost-libs')
-makedepends=('cmake' 'boost' 'mesa')
-replaces=('widelands-data')
-source=("https://launchpad.net/widelands/${_realver}/build${pkgver}/+download/$pkgname-$_realver-src.tar.bz2";
-$pkgname.desktop
-$pkgname.png
-widelands-gcc7.patch)
-sha512sums=('80d70542f30c47498c38c5066ecbfa094cfa16fa3c8c75a950420b334cc019766a90a9f715d326506ce425848da1d75fa6f87e33e3551019c0dd8a4ccf99d666'
-
'ef7e54ffba11a2fe54d2cafc0a12fcbe5028e861b9b980f549317b159c8532ee62423af8724b05cfd344017097e022215fa750f4ca9afffa57703d434017d727'
-
'f7db9d7584ec8431f2f1857baddeb32cd3ae182343e7f0369e61fb444514bd9c2e6a3931ae34f24cc994840dffbbe4451f33845798f3d582f41b31f451b261ac'
-
'a60c6f0309579b167664cf0c1022e6c293dad328c2698793d3bc63e880bc3933db8c708494502e898016443d4ec0deac7bd4f80d201dc681098d8197af98193d')
-
-prepare() {
-# Fix build with GCC 7 - don't turn warnings to errors
-patch -p0 -i widelands-gcc7.patch
-}
-
-build() {
-cd $srcdir/$pkgname-$_realver-src
-
-mkdir -p build/compile && cd build/compile
-
-cmake ../.. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWL_INSTALL_BASEDIR=/usr \
--DWL_INSTALL_DATADIR=/usr/share/widelands
-make
-}
-
-package() {
-cd $srcdir/$pkgname-$_realver-src/build/compile
-
-make DESTDIR="$pkgdir" install
-
-mkdir -p $pkgdir/usr/bin
-mv 
$pkgdir/usr/{widelands,wl_map_object_info,wl_render_richtext,wl_map_info} 
$pkgdir/usr/bin
-mv $pkgdir/usr/{VERSION,ChangeLog,CREDITS} $pkgdir/usr/share/widelands
-
-mkdir -p $pkgdir/usr/share/licenses/$pkgname
-mv $pkgdir/usr/COPYING $pkgdir/usr/share/licenses/$pkgname
-
-# Install bin, icon and desktop file
-install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
-install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
-}

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 257037, 
widelands/trunk/PKGBUILD)
===
--- community-sta

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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:42:40
  Author: bpiotrowski
Revision: 257036

3.3.8-3: rebuild against boost 1.65.1

Modified:
  wt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:41:30 UTC (rev 257035)
+++ PKGBUILD2017-09-11 20:42:40 UTC (rev 257036)
@@ -5,7 +5,7 @@
 
 pkgname=wt
 pkgver=3.3.8
-pkgrel=2
+pkgrel=3
 pkgdesc="a C++ library and application server for developing and deploying web 
applications"
 arch=('i686' 'x86_64')
 url="http://www.webtoolkit.eu/";


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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:42:50
  Author: bpiotrowski
Revision: 257037

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

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

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

Copied: wt/repos/community-staging-i686/PKGBUILD (from rev 257036, 
wt/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 20:42:50 UTC (rev 257037)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Denis Martinez 
+
+pkgname=wt
+pkgver=3.3.8
+pkgrel=3
+pkgdesc="a C++ library and application server for developing and deploying web 
applications"
+arch=('i686' 'x86_64')
+url="http://www.webtoolkit.eu/";
+license=('GPL')
+depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib')
+makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
+optdepends=('openssl: for SSL support in built-in webserver'
+   'fcgi: for FastCGI support'
+   'postgresql-libs: for PostgreSQL Dbo support'
+   'sqlite: for Sqlite Dbo support'
+   'mysql++: for the hangman example'
+   'qt4: for the Wt/Qt interopability example (wtwithqt)')
+backup=('etc/wt/wt_config.xml')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kdeforche/wt/archive/${pkgver}.tar.gz";)
+sha512sums=('227bfa888ad53c9a22205d79de0111a286fd1f6a6fa46a1a8fb3795fdae45fc1cc19b95600585310cd10fee57e6355067f073c7ece72e68aa5656b512ec311ad')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+
+  [[ -d build ]] && rm -r build
+  mkdir -p build && cd build
+  cmake \
+  -DCONNECTOR_HTTP=ON \
+  -DWT_CPP_11_MODE=-std=c++11 \
+  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DWEBUSER=http \
+  -DWEBGROUP=http \
+  -DUSE_SYSTEM_SQLITE3=ON \
+  -DINSTALL_EXAMPLES=ON \
+  -DBUILD_EXAMPLES=ON \
+  -DINSTALL_FINDWT_CMAKE_FILE=ON \
+  ..
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver}/build
+
+  make DESTDIR="$pkgdir" install
+}

Copied: wt/repos/community-staging-x86_64/PKGBUILD (from rev 257036, 
wt/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-11 20:42:50 UTC (rev 257037)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Denis Martinez 
+
+pkgname=wt
+pkgver=3.3.8
+pkgrel=3
+pkgdesc="a C++ library and application server for developing and deploying web 
applications"
+arch=('i686' 'x86_64')
+url="http://www.webtoolkit.eu/";
+license=('GPL')
+depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib')
+makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
+optdepends=('openssl: for SSL support in built-in webserver'
+   'fcgi: for FastCGI support'
+   'postgresql-libs: for PostgreSQL Dbo support'
+   'sqlite: for Sqlite Dbo support'
+   'mysql++: for the hangman example'
+   'qt4: for the Wt/Qt interopability example (wtwithqt)')
+backup=('etc/wt/wt_config.xml')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kdeforche/wt/archive/${pkgver}.tar.gz";)
+sha512sums=('227bfa888ad53c9a22205d79de0111a286fd1f6a6fa46a1a8fb3795fdae45fc1cc19b95600585310cd10fee57e6355067f073c7ece72e68aa5656b512ec311ad')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+
+  [[ -d build ]] && rm -r build
+  mkdir -p build && cd build
+  cmake \
+  -DCONNECTOR_HTTP=ON \
+  -DWT_CPP_11_MODE=-std=c++11 \
+  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DWEBUSER=http \
+  -DWEBGROUP=http \
+  -DUSE_SYSTEM_SQLITE3=ON \
+  -DINSTALL_EXAMPLES=ON \
+  -DBUILD_EXAMPLES=ON \
+  -DINSTALL_FINDWT_CMAKE_FILE=ON \
+  ..
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver}/build
+
+  make DESTDIR="$pkgdir" install
+}


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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:41:30
  Author: bpiotrowski
Revision: 257035

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

Added:
  widelands/repos/community-staging-i686/
  widelands/repos/community-staging-i686/PKGBUILD
(from rev 257034, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-i686/widelands-gcc7.patch
(from rev 257034, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-i686/widelands.desktop
(from rev 257034, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-i686/widelands.png
(from rev 257034, widelands/trunk/widelands.png)
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 257034, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands-gcc7.patch
(from rev 257034, widelands/trunk/widelands-gcc7.patch)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 257034, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 257034, widelands/trunk/widelands.png)

---+
 community-staging-i686/PKGBUILD   |   59 
 community-staging-i686/widelands-gcc7.patch   |   15 ++
 community-staging-i686/widelands.desktop  |8 +++
 community-staging-x86_64/PKGBUILD |   59 
 community-staging-x86_64/widelands-gcc7.patch |   15 ++
 community-staging-x86_64/widelands.desktop|8 +++
 6 files changed, 164 insertions(+)

Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 257034, 
widelands/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 20:41:30 UTC (rev 257035)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=19
+_realver=build${pkgver}
+pkgrel=8
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/";
+license=('GPL')
+depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 'lua51' 
'glew' 'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+replaces=('widelands-data')
+source=("https://launchpad.net/widelands/${_realver}/build${pkgver}/+download/$pkgname-$_realver-src.tar.bz2";
+$pkgname.desktop
+$pkgname.png
+widelands-gcc7.patch)
+sha512sums=('80d70542f30c47498c38c5066ecbfa094cfa16fa3c8c75a950420b334cc019766a90a9f715d326506ce425848da1d75fa6f87e33e3551019c0dd8a4ccf99d666'
+
'ef7e54ffba11a2fe54d2cafc0a12fcbe5028e861b9b980f549317b159c8532ee62423af8724b05cfd344017097e022215fa750f4ca9afffa57703d434017d727'
+
'f7db9d7584ec8431f2f1857baddeb32cd3ae182343e7f0369e61fb444514bd9c2e6a3931ae34f24cc994840dffbbe4451f33845798f3d582f41b31f451b261ac'
+
'a60c6f0309579b167664cf0c1022e6c293dad328c2698793d3bc63e880bc3933db8c708494502e898016443d4ec0deac7bd4f80d201dc681098d8197af98193d')
+
+prepare() {
+# Fix build with GCC 7 - don't turn warnings to errors
+patch -p0 -i widelands-gcc7.patch
+}
+
+build() {
+cd $srcdir/$pkgname-$_realver-src
+
+mkdir -p build/compile && cd build/compile
+
+cmake ../.. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWL_INSTALL_BASEDIR=/usr \
+-DWL_INSTALL_DATADIR=/usr/share/widelands
+make
+}
+
+package() {
+cd $srcdir/$pkgname-$_realver-src/build/compile
+
+make DESTDIR="$pkgdir" install
+
+mkdir -p $pkgdir/usr/bin
+mv 
$pkgdir/usr/{widelands,wl_map_object_info,wl_render_richtext,wl_map_info} 
$pkgdir/usr/bin
+mv $pkgdir/usr/{VERSION,ChangeLog,CREDITS} $pkgdir/usr/share/widelands
+
+mkdir -p $pkgdir/usr/share/licenses/$pkgname
+mv $pkgdir/usr/COPYING $pkgdir/usr/share/licenses/$pkgname
+
+# Install bin, icon and desktop file
+install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-i686/widelands-gcc7.patch (from rev 
257034, widelands/trunk/widelands-gcc7.patch)
===
--- community-staging-i686/widelands-gcc7.patch (rev 0)
+++ community-staging-i686/widelands-gcc7.patch 2017-09-11 20:41:30 UTC (rev 
257035)
@@ -0,0 +1,15 @@
+--- widelands-build19-src/CMakeLists.txt.orig  2017-05-21 16:53:12.517380329 
+
 widelands-build19-src/CMakeLists.txt   2017-05-21 16:53:23.590697586 
+
+@@ -176,12 +176,6 @@
+   wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Wunused-macros")
+ endif()
+ 
+-# Turn some warnings into errors.
+-wl_add_flag(WL_COMP

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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:41:03
  Author: bpiotrowski
Revision: 257034

19-8: rebuild against boost 1.65.1

Modified:
  widelands/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:39:40 UTC (rev 257033)
+++ PKGBUILD2017-09-11 20:41:03 UTC (rev 257034)
@@ -6,7 +6,7 @@
 pkgname=widelands
 pkgver=19
 _realver=build${pkgver}
-pkgrel=7
+pkgrel=8
 pkgdesc="A realtime strategy game with emphasis on economy and transport"
 arch=('i686' 'x86_64')
 url="http://widelands.org/";


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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:39:40
  Author: bpiotrowski
Revision: 257033

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

Added:
  wesnoth/repos/community-staging-i686/
  wesnoth/repos/community-staging-i686/PKGBUILD
(from rev 257032, wesnoth/trunk/PKGBUILD)
  wesnoth/repos/community-staging-i686/wesnoth-boost.patch
(from rev 257032, wesnoth/trunk/wesnoth-boost.patch)
  wesnoth/repos/community-staging-i686/wesnothd.service
(from rev 257032, wesnoth/trunk/wesnothd.service)
  wesnoth/repos/community-staging-i686/wesnothd.tmpfiles.conf
(from rev 257032, wesnoth/trunk/wesnothd.tmpfiles.conf)
  wesnoth/repos/community-staging-x86_64/
  wesnoth/repos/community-staging-x86_64/PKGBUILD
(from rev 257032, wesnoth/trunk/PKGBUILD)
  wesnoth/repos/community-staging-x86_64/wesnoth-boost.patch
(from rev 257032, wesnoth/trunk/wesnoth-boost.patch)
  wesnoth/repos/community-staging-x86_64/wesnothd.service
(from rev 257032, wesnoth/trunk/wesnothd.service)
  wesnoth/repos/community-staging-x86_64/wesnothd.tmpfiles.conf
(from rev 257032, wesnoth/trunk/wesnothd.tmpfiles.conf)

-+
 community-staging-i686/PKGBUILD |   55 ++
 community-staging-i686/wesnoth-boost.patch  |   12 
 community-staging-i686/wesnothd.service |9 +++
 community-staging-i686/wesnothd.tmpfiles.conf   |1 
 community-staging-x86_64/PKGBUILD   |   55 ++
 community-staging-x86_64/wesnoth-boost.patch|   12 
 community-staging-x86_64/wesnothd.service   |9 +++
 community-staging-x86_64/wesnothd.tmpfiles.conf |1 
 8 files changed, 154 insertions(+)

Copied: wesnoth/repos/community-staging-i686/PKGBUILD (from rev 257032, 
wesnoth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 20:39:40 UTC (rev 257033)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Jan de Groot 
+# Contributor: Tobias Powalowski 
+# Contributor: Jacobo Arvelo 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=wesnoth
+pkgver=1.12.6
+pkgrel=7
+pkgdesc="A turn-based strategy game on a fantasy world"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.wesnoth.org/";
+depends=('sdl_ttf' 'sdl_net' 'sdl_mixer' 'sdl_image' 'fribidi' 'boost-libs' 
'pango' 'lua52' 'wesnoth-data' 'dbus' 'python2')
+makedepends=('boost' 'cmake' 'git')
+options=(!emptydirs)
+source=("git://github.com/wesnoth/wesnoth.git#tag=${pkgver}"
+"wesnoth-boost.patch"
+wesnothd.tmpfiles.conf
+wesnothd.service)
+md5sums=('SKIP'
+ '9a4ad99ba66990bfc17cb12966b3823b'
+ '2d2fea6b3d86dfd589f5ad35a3be1f97'
+ 'd1b6bf1d3dc05086ee6a370adff0ae4a')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  # Try this again in a new version when they fix their linking to boost
+  patch -Np1 < ${srcdir}/wesnoth-boost.patch
+
+  mkdir build && cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DENABLE_OMP=ON \
+  -DENABLE_TOOLS=ON \
+  -DMANDIR=share/man
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm -r $pkgdir/usr/share/applications
+  rm -r $pkgdir/usr/share/doc
+  rm -r $pkgdir/usr/share/pixmaps
+  rm -r $pkgdir/usr/share/wesnoth
+
+  install -Dm644 "$srcdir/wesnothd.tmpfiles.conf" 
"$pkgdir/usr/lib/tmpfiles.d/wesnothd.conf"
+  install -Dm644 "$srcdir/wesnothd.service" 
"$pkgdir/usr/lib/systemd/system/wesnothd.service"
+}

Copied: wesnoth/repos/community-staging-i686/wesnoth-boost.patch (from rev 
257032, wesnoth/trunk/wesnoth-boost.patch)
===
--- community-staging-i686/wesnoth-boost.patch  (rev 0)
+++ community-staging-i686/wesnoth-boost.patch  2017-09-11 20:39:40 UTC (rev 
257033)
@@ -0,0 +1,12 @@
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 43a20d7..61f36e0 100644
+--- a/src/CMakeLists.txt
 b/src/CMakeLists.txt
+@@ -79,6 +79,7 @@ else(MSVC)
+   ${Boost_IOSTREAMS_LIBRARY}
+   ${Boost_REGEX_LIBRARY}
+   ${Boost_PROGRAM_OPTIONS_LIBRARY}
++${Boost_SYSTEM_LIBRARIES}
+   ${LIBINTL_LIBRARIES}
+   )
+ endif(MSVC)

Copied: wesnoth/repos/community-staging-i686/wesnothd.service (from rev 257032, 
wesnoth/trunk/wesnothd.service)
===
--- community-staging-i686/wesnothd.service (rev 0)
+++ community-staging-i686/wesnothd.service 2017-09-11 20:39:40 UTC (rev 
257033)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Wesnoth Server Daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/wesnothd
+
+[Install]
+WantedBy=multi-user.target

Copied: wesnoth/repos/community-stagi

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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:39:15
  Author: bpiotrowski
Revision: 257032

1.12.6-7: rebuild against boost 1.65.1

Modified:
  wesnoth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:34:53 UTC (rev 257031)
+++ PKGBUILD2017-09-11 20:39:15 UTC (rev 257032)
@@ -7,7 +7,7 @@
 
 pkgname=wesnoth
 pkgver=1.12.6
-pkgrel=6
+pkgrel=7
 pkgdesc="A turn-based strategy game on a fantasy world"
 arch=('i686' 'x86_64')
 license=('GPL')


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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:34:40
  Author: bpiotrowski
Revision: 257030

1.11.1-3: rebuild against boost 1.65.1

Modified:
  vigra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:34:18 UTC (rev 257029)
+++ PKGBUILD2017-09-11 20:34:40 UTC (rev 257030)
@@ -5,7 +5,7 @@
 pkgbase=vigra
 pkgname=('vigra' 'vigra-doc')
 pkgver=1.11.1
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url="https://ukoethe.github.io/vigra/";
 license=('custom:MIT')


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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:34:53
  Author: bpiotrowski
Revision: 257031

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

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

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

Copied: vigra/repos/community-staging-i686/PKGBUILD (from rev 257030, 
vigra/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 20:34:53 UTC (rev 257031)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Lukas Jirkovsky 
+
+pkgbase=vigra
+pkgname=('vigra' 'vigra-doc')
+pkgver=1.11.1
+pkgrel=3
+arch=('i686' 'x86_64')
+url="https://ukoethe.github.io/vigra/";
+license=('custom:MIT')
+makedepends=(# runtime deps
+ 'libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw'
+# additional makedeps
+ 'cmake' 'python-nose' 'doxygen' 'python-sphinx' 'boost' 
'python-numpy')
+source=(https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/vigra-${pkgver}-src.tar.gz)
+sha256sums=('a5564e1083f6af6a885431c1ee718bad77d11f117198b277557f8558fa461aaf')
+
+build() {
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYTHON_EXECUTABLE=/usr/bin/python \
+  -DWITH_OPENEXR=true \
+  -DWITH_VIGRANUMPY=1 \
+  -DDOCINSTALL=share/doc
+  make
+}
+
+#check() {
+#  cd "${srcdir}"/${pkgname}-${pkgver}
+#  make -j1 -k check #|| /bin/true # i686 fails
+#}
+
+package_vigra() {
+  pkgdesc="Computer vision library"
+  depends=('libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw')
+  optdepends=('python: for python bindings'
+  'boost-libs: for python bindings')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # license
+  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  
+  # remove doc
+  rm -rf "${pkgdir}"/usr/share/doc
+}
+
+package_vigra-doc() {
+  pkgdesc="Computer vision library - documentation and examples"
+  #depends=('vigra')
+  #arch=('any')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # cleanup
+  rm -rf "${pkgdir}"/usr/{bin,include,lib}
+
+  # license
+  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: vigra/repos/community-staging-x86_64/PKGBUILD (from rev 257030, 
vigra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-11 20:34:53 UTC (rev 257031)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Lukas Jirkovsky 
+
+pkgbase=vigra
+pkgname=('vigra' 'vigra-doc')
+pkgver=1.11.1
+pkgrel=3
+arch=('i686' 'x86_64')
+url="https://ukoethe.github.io/vigra/";
+license=('custom:MIT')
+makedepends=(# runtime deps
+ 'libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw'
+# additional makedeps
+ 'cmake' 'python-nose' 'doxygen' 'python-sphinx' 'boost' 
'python-numpy')
+source=(https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/vigra-${pkgver}-src.tar.gz)
+sha256sums=('a5564e1083f6af6a885431c1ee718bad77d11f117198b277557f8558fa461aaf')
+
+build() {
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYTHON_EXECUTABLE=/usr/bin/python \
+  -DWITH_OPENEXR=true \
+  -DWITH_VIGRANUMPY=1 \
+  -DDOCINSTALL=share/doc
+  make
+}
+
+#check() {
+#  cd "${srcdir}"/${pkgname}-${pkgver}
+#  make -j1 -k check #|| /bin/true # i686 fails
+#}
+
+package_vigra() {
+  pkgdesc="Computer vision library"
+  depends=('libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw')
+  optdepends=('python: for python bindings'
+  'boost-libs: for python bindings')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # license
+  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  
+  # remove doc
+  rm -rf "${pkgdir}"/usr/share/doc
+}
+
+package_vigra-doc() {
+  pkgdesc="Computer vision library - documentation and examples"
+  #depends=('vigra')
+  #arch=('any')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # cleanup
+  rm -rf "${pkgdir}"/usr/{bin,include,lib}
+
+  # license
+  install -D -m644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:34:18
  Author: bpiotrowski
Revision: 257029

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

Added:
  schroot/repos/community-staging-i686/
  schroot/repos/community-staging-i686/PKGBUILD
(from rev 257028, schroot/trunk/PKGBUILD)
  schroot/repos/community-staging-i686/arch32-config
(from rev 257028, schroot/trunk/arch32-config)
  schroot/repos/community-staging-i686/arch32-copyfiles
(from rev 257028, schroot/trunk/arch32-copyfiles)
  schroot/repos/community-staging-i686/arch32-example
(from rev 257028, schroot/trunk/arch32-example)
  schroot/repos/community-staging-i686/arch32-mount
(from rev 257028, schroot/trunk/arch32-mount)
  schroot/repos/community-staging-i686/arch32-nssdatabases
(from rev 257028, schroot/trunk/arch32-nssdatabases)
  schroot/repos/community-staging-i686/fix-bash-completion.patch
(from rev 257028, schroot/trunk/fix-bash-completion.patch)
  schroot/repos/community-staging-i686/pam.d.schroot.patch
(from rev 257028, schroot/trunk/pam.d.schroot.patch)
  schroot/repos/community-staging-i686/schroot-cppunit.patch
(from rev 257028, schroot/trunk/schroot-cppunit.patch)
  schroot/repos/community-staging-x86_64/
  schroot/repos/community-staging-x86_64/PKGBUILD
(from rev 257028, schroot/trunk/PKGBUILD)
  schroot/repos/community-staging-x86_64/arch32-config
(from rev 257028, schroot/trunk/arch32-config)
  schroot/repos/community-staging-x86_64/arch32-copyfiles
(from rev 257028, schroot/trunk/arch32-copyfiles)
  schroot/repos/community-staging-x86_64/arch32-example
(from rev 257028, schroot/trunk/arch32-example)
  schroot/repos/community-staging-x86_64/arch32-mount
(from rev 257028, schroot/trunk/arch32-mount)
  schroot/repos/community-staging-x86_64/arch32-nssdatabases
(from rev 257028, schroot/trunk/arch32-nssdatabases)
  schroot/repos/community-staging-x86_64/fix-bash-completion.patch
(from rev 257028, schroot/trunk/fix-bash-completion.patch)
  schroot/repos/community-staging-x86_64/pam.d.schroot.patch
(from rev 257028, schroot/trunk/pam.d.schroot.patch)
  schroot/repos/community-staging-x86_64/schroot-cppunit.patch
(from rev 257028, schroot/trunk/schroot-cppunit.patch)

+
 community-staging-i686/PKGBUILD|   88 +++
 community-staging-i686/arch32-config   |   11 ++
 community-staging-i686/arch32-copyfiles|6 +
 community-staging-i686/arch32-example  |   10 ++
 community-staging-i686/arch32-mount|   12 ++
 community-staging-i686/arch32-nssdatabases |6 +
 community-staging-i686/fix-bash-completion.patch   |   11 ++
 community-staging-i686/pam.d.schroot.patch |   15 +++
 community-staging-i686/schroot-cppunit.patch   |   11 ++
 community-staging-x86_64/PKGBUILD  |   88 +++
 community-staging-x86_64/arch32-config |   11 ++
 community-staging-x86_64/arch32-copyfiles  |6 +
 community-staging-x86_64/arch32-example|   10 ++
 community-staging-x86_64/arch32-mount  |   12 ++
 community-staging-x86_64/arch32-nssdatabases   |6 +
 community-staging-x86_64/fix-bash-completion.patch |   11 ++
 community-staging-x86_64/pam.d.schroot.patch   |   15 +++
 community-staging-x86_64/schroot-cppunit.patch |   11 ++
 18 files changed, 340 insertions(+)

Copied: schroot/repos/community-staging-i686/PKGBUILD (from rev 257028, 
schroot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 20:34:18 UTC (rev 257029)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andreas Wagner 
+
+pkgname=schroot
+pkgver=1.6.10
+pkgrel=17
+pkgdesc="Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot)."
+url="http://packages.qa.debian.org/s/schroot.html";
+license=('GPL3')
+depends=('pam' 'lockdev' 'boost-libs' 'e2fsprogs')
+makedepends=('boost' 'cppunit')
+optdepends=('btrfs-progs-unstable' 'lvm2')
+arch=('i686' 'x86_64')
+conflicts=('dchroot')
+replaces=('dchroot')
+provides=('schroot' 'sbuild' 'dchroot')
+backup=('etc/schroot/schroot.conf'
+   'etc/schroot/arch32/config'
+   'etc/schroot/arch32/copyfiles'
+   'etc/schroot/arch32/mount'
+   'etc/schroot/arch32/nssdatabases')
+source=("http://ftp.debian.org/debian/pool/main/s/$pkgname/${pkgname}_${pkgver}.orig.tar.xz";
+   
"http://http.debian.net/debian/pool/main/s/schroot/schroot_$pkgver-3.debian.tar.xz";
+   'arch32-example'
+   'arch32-config'
+   'arch32-copyfiles'
+   'arch32-mount'
+   'arch32-nssdatabases'
+   'pam.d.schroot.patch'
+   'schroot-cppunit.patch'
+   'fix-bash-completion.patch')
+md5sums=('f8ec6678314

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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:33:54
  Author: bpiotrowski
Revision: 257028

1.6.10-17: rebuild against boost 1.65.1

Modified:
  schroot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:30:55 UTC (rev 257027)
+++ PKGBUILD2017-09-11 20:33:54 UTC (rev 257028)
@@ -4,7 +4,7 @@
 
 pkgname=schroot
 pkgver=1.6.10
-pkgrel=16
+pkgrel=17
 pkgdesc="Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot)."
 url="http://packages.qa.debian.org/s/schroot.html";
 license=('GPL3')


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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:30:55
  Author: bpiotrowski
Revision: 257027

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

Added:
  pingus/repos/community-staging-i686/
  pingus/repos/community-staging-i686/ChangeLog
(from rev 257026, pingus/trunk/ChangeLog)
  pingus/repos/community-staging-i686/PKGBUILD
(from rev 257026, pingus/trunk/PKGBUILD)
  pingus/repos/community-staging-i686/missing-header.patch
(from rev 257026, pingus/trunk/missing-header.patch)
  pingus/repos/community-staging-i686/pingus-0.7.6-gcc470-udl.patch
(from rev 257026, pingus/trunk/pingus-0.7.6-gcc470-udl.patch)
  pingus/repos/community-staging-i686/pingus.desktop
(from rev 257026, pingus/trunk/pingus.desktop)
  pingus/repos/community-staging-x86_64/
  pingus/repos/community-staging-x86_64/ChangeLog
(from rev 257026, pingus/trunk/ChangeLog)
  pingus/repos/community-staging-x86_64/PKGBUILD
(from rev 257026, pingus/trunk/PKGBUILD)
  pingus/repos/community-staging-x86_64/missing-header.patch
(from rev 257026, pingus/trunk/missing-header.patch)
  pingus/repos/community-staging-x86_64/pingus-0.7.6-gcc470-udl.patch
(from rev 257026, pingus/trunk/pingus-0.7.6-gcc470-udl.patch)
  pingus/repos/community-staging-x86_64/pingus.desktop
(from rev 257026, pingus/trunk/pingus.desktop)

+
 community-staging-i686/ChangeLog   |   21 +++
 community-staging-i686/PKGBUILD|   42 +++
 community-staging-i686/missing-header.patch|   22 +++
 community-staging-i686/pingus-0.7.6-gcc470-udl.patch   |   22 +++
 community-staging-i686/pingus.desktop  |9 +++
 community-staging-x86_64/ChangeLog |   21 +++
 community-staging-x86_64/PKGBUILD  |   42 +++
 community-staging-x86_64/missing-header.patch  |   22 +++
 community-staging-x86_64/pingus-0.7.6-gcc470-udl.patch |   22 +++
 community-staging-x86_64/pingus.desktop|9 +++
 10 files changed, 232 insertions(+)

Copied: pingus/repos/community-staging-i686/ChangeLog (from rev 257026, 
pingus/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2017-09-11 20:30:55 UTC (rev 257027)
@@ -0,0 +1,21 @@
+2010-03-18  Jaroslav Lichtblau  
+
+* pingus 0.7.2-8
+* Rebuilt against boost 1.41.0
+
+2010-02-23  Eric Belanger  
+
+   * pingus 0.7.2-7
+   * Rebuilt against boost 1.42.0
+
+2010-01-20  Eric Belanger  
+
+   * pingus 0.7.2-6
+   * Rebuilt against libpng 1.4/libjpeg 8
+
+2009-07-13  Eric Belanger  
+
+   * pingus 0.7.2-2
+   * Rebuilt against boost 1.39
+   * Added gcc 4.4 patch
+   * Added ChangeLog

Copied: pingus/repos/community-staging-i686/PKGBUILD (from rev 257026, 
pingus/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 20:30:55 UTC (rev 257027)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Eric Belanger 
+
+pkgname=pingus
+pkgver=0.7.6
+pkgrel=22
+pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
+arch=('i686' 'x86_64')
+url="http://pingus.seul.org";
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'libgl' 'boost-libs>=1.49')
+makedepends=('scons' 'boost>=1.49' 'mesa' 'glu')
+source=("$pkgname-$pkgver.tgz::https://github.com/Pingus/pingus/archive/v$pkgver.tar.gz";
+'pingus.desktop'
+'pingus-0.7.6-gcc470-udl.patch'
+'missing-header.patch')
+sha1sums=('c888c277995bed84052b62d0eacbd77d0346a276'
+  '579a1144f161ce89e6e024cea37210149b89c0c0'
+  '143dd9969e8d100d29ed4f5b2039dde627afeb06'
+  '9e1402d43ac5e2423c573b3b3afada3a20709dd5')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # fedora patch to fix error due to new standards
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51282
+  patch -Np0 -i ${srcdir}/pingus-0.7.6-gcc470-udl.patch
+  # manpage must be in man6, not man1
+  sed -i "s#/man1/#/man6/#g" Makefile
+  # missing header
+  patch -Np1 -i ../missing-header.patch
+
+  scons prefix=/usr
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make install DESTDIR="${pkgdir}" PREFIX="/usr"
+
+  install -D -m644 "${srcdir}/pingus.desktop" 
"${pkgdir}/usr/share/applications/pingus.desktop"
+}

Copied: pingus/repos/community-staging-i686/missing-header.patch (from rev 
257026, pingus/trunk/missing-header.patch)
===
--- community-staging-i686/missing-header.patch (rev 0)
+++ community-staging-i686/missing-header.patch 2017-09-11 20:30:55 UTC (rev 
257027)
@@ -0,0 +1,22 @@
+From df6e2f445d3e2925a94d22faeb17be9444513e92 Mon Se

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

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:30:39
  Author: bpiotrowski
Revision: 257026

0.7.6-22: rebuild against boost 1.65.1

Modified:
  pingus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:19:43 UTC (rev 257025)
+++ PKGBUILD2017-09-11 20:30:39 UTC (rev 257026)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=21
+pkgrel=22
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('i686' 'x86_64')
 url="http://pingus.seul.org";


[arch-commits] Commit in breeze-grub/repos/extra-any (PKGBUILD PKGBUILD)

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 20:27:18
  Author: arojas
Revision: 305361

archrelease: copy trunk to extra-any

Added:
  breeze-grub/repos/extra-any/PKGBUILD
(from rev 305360, breeze-grub/trunk/PKGBUILD)
Deleted:
  breeze-grub/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 20:26:52 UTC (rev 305360)
+++ PKGBUILD2017-09-11 20:27:18 UTC (rev 305361)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=breeze-grub
-pkgver=5.10.5
-pkgrel=1
-pkgdesc="Breeze theme for GRUB"
-arch=(any)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(grub)
-makedepends=()
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('2e0eac19f5b5831787d809afb373d7ac27c01cc7021f9054f359678f1b85a12a'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-package() {
-  install -d "$pkgdir"/boot/grub/themes
-  cp -r $pkgname-$pkgver/breeze "$pkgdir"/boot/grub/themes
-}

Copied: breeze-grub/repos/extra-any/PKGBUILD (from rev 305360, 
breeze-grub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 20:27:18 UTC (rev 305361)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=breeze-grub
+pkgver=5.10.5
+pkgrel=2
+pkgdesc="Breeze theme for GRUB"
+arch=(any)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(grub)
+makedepends=()
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('2e0eac19f5b5831787d809afb373d7ac27c01cc7021f9054f359678f1b85a12a'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+package() {
+  install -d "$pkgdir"/usr/share/grub/themes
+  cp -r $pkgname-$pkgver/breeze "$pkgdir"/usr/share/grub/themes
+}


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

2017-09-11 Thread Antonio Rojas
Date: Monday, September 11, 2017 @ 20:26:52
  Author: arojas
Revision: 305360

Install in /usr/share/grub (FS#55583)

Modified:
  breeze-grub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:41:08 UTC (rev 305359)
+++ PKGBUILD2017-09-11 20:26:52 UTC (rev 305360)
@@ -4,7 +4,7 @@
 
 pkgname=breeze-grub
 pkgver=5.10.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Breeze theme for GRUB"
 arch=(any)
 url='https://www.kde.org/workspaces/plasmadesktop/'
@@ -23,6 +23,6 @@
 }
 
 package() {
-  install -d "$pkgdir"/boot/grub/themes
-  cp -r $pkgname-$pkgver/breeze "$pkgdir"/boot/grub/themes
+  install -d "$pkgdir"/usr/share/grub/themes
+  cp -r $pkgname-$pkgver/breeze "$pkgdir"/usr/share/grub/themes
 }


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

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

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

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

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

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2017-09-11 20:18:58 UTC (rev 257024)
+++ community-staging-i686/PKGBUILD 2017-09-11 20:19:43 UTC (rev 257025)
@@ -1,208 +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=3
-arch=('i686' 'x86_64')
-url="http://www.bitcoin.org/";
-makedepends=('boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 'miniupnpc' 
'protobuf' 'zeromq')
-license=('MIT')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/bitcoin/bitcoin/archive/v$pkgver.tar.gz";)
-sha256sums=('e0ac23f01a953fcc6290c96799deeffb32aa76ca8e216c564d20c18e75a25219')
-
-validpgpkeys=(71A3B16735405025D447E8F274810B012346C9A6)
-
- _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 verification")" >&2

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 20:18:58
  Author: jelle
Revision: 257024

upgpkg: bitcoin 0.14.2-5

.

Modified:
  bitcoin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:09:02 UTC (rev 257023)
+++ PKGBUILD2017-09-11 20:18:58 UTC (rev 257024)
@@ -6,7 +6,7 @@
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
 pkgver=0.14.2
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 url="http://www.bitcoin.org/";
 makedepends=('boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 'miniupnpc' 
'protobuf' 'zeromq')


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 20:09:02
  Author: jelle
Revision: 257023

archrelease: copy trunk to community-any

Added:
  sub2srt/repos/community-any/PKGBUILD
(from rev 257022, sub2srt/trunk/PKGBUILD)
Deleted:
  sub2srt/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 20:08:52 UTC (rev 257022)
+++ PKGBUILD2017-09-11 20:09:02 UTC (rev 257023)
@@ -1,19 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andrea Scarpino 
-
-pkgname=sub2srt
-pkgver=0.5.5
-pkgrel=1
-pkgdesc="A simple tool to convert 2 common subtitle formats to .srt format"
-arch=('any')
-url="http://www.robelix.com/sub2srt/";
-license=('GPL')
-depends=('perl')
-source=($pkgname-$pkgver.tar.gz::https://github.com/robelix/sub2srt/archive/$pkgver.tar.gz)
-md5sums=('e68b22eca94ae7b9207a4f9c46c17ad5')
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  install -D -m755 $pkgname "$pkgdir/usr/bin/$pkgname"
-}

Copied: sub2srt/repos/community-any/PKGBUILD (from rev 257022, 
sub2srt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 20:09:02 UTC (rev 257023)
@@ -0,0 +1,19 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andrea Scarpino 
+
+pkgname=sub2srt
+pkgver=0.5.5
+pkgrel=2
+pkgdesc="A simple tool to convert 2 common subtitle formats to .srt format"
+arch=('any')
+url="http://www.robelix.com/sub2srt/";
+license=('GPL')
+depends=('perl')
+source=($pkgname-$pkgver.tar.gz::https://github.com/robelix/sub2srt/archive/$pkgver.tar.gz)
+md5sums=('e68b22eca94ae7b9207a4f9c46c17ad5')
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -D -m755 $pkgname "$pkgdir/usr/bin/$pkgname"
+}


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 20:08:52
  Author: jelle
Revision: 257022

upgpkg: sub2srt 0.5.5-2

rebuild for key removal

Modified:
  sub2srt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:08:03 UTC (rev 257021)
+++ PKGBUILD2017-09-11 20:08:52 UTC (rev 257022)
@@ -4,7 +4,7 @@
 
 pkgname=sub2srt
 pkgver=0.5.5
-pkgrel=1
+pkgrel=2
 pkgdesc="A simple tool to convert 2 common subtitle formats to .srt format"
 arch=('any')
 url="http://www.robelix.com/sub2srt/";


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

2017-09-11 Thread Alexander Rødseth
Date: Monday, September 11, 2017 @ 20:08:03
  Author: arodseth
Revision: 257021

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

Added:
  povray/repos/community-i686/PKGBUILD
(from rev 257020, povray/trunk/PKGBUILD)
  povray/repos/community-i686/povray3.7.0_rc3-user-conf.patch
(from rev 257020, povray/trunk/povray3.7.0_rc3-user-conf.patch)
  povray/repos/community-x86_64/PKGBUILD
(from rev 257020, povray/trunk/PKGBUILD)
  povray/repos/community-x86_64/povray3.7.0_rc3-user-conf.patch
(from rev 257020, 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 20:07:47 UTC (rev 257020)
+++ community-i686/PKGBUILD 2017-09-11 20:08:03 UTC (rev 257021)
@@ -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.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"
-}
-
-build() {
-  cd "$pkgname"
-
-  ./configure \
-LIBS="-lboost_system -lboost_thread" \
-COMPILED_BY='Arch Linux' \
---sysconfdir=/etc \
---prefix=/usr
-
-  make CXXFLAGS+="-std=c++03 -w -lboost_system -lboost_thread"
-  gzip -f povray.1
-}
-
-package() {
-  cd "$pkgname"
-
-  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 257020, 
povray/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 20:08:03 UTC (rev 257021)
@@ -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=2
+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' 'glu')
+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"
+}
+
+build() {
+  cd "$pkgname"
+
+  ./configure \
+LIBS="-lboost_system -lboost_thread" \
+COMPILED_BY='Arch Linux' \
+--sysconfdir=/etc \
+--prefix=/usr
+
+  make CXXFLAGS+="-std=c++03 -w -lboost_system -lbo

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

2017-09-11 Thread Alexander Rødseth
Date: Monday, September 11, 2017 @ 20:07:47
  Author: arodseth
Revision: 257020

Add dependency on glu for openexr support, resolves FS#52272

Modified:
  povray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:07:35 UTC (rev 257019)
+++ PKGBUILD2017-09-11 20:07:47 UTC (rev 257020)
@@ -7,7 +7,7 @@
 
 pkgname=povray
 pkgver=3.7.2_alpha
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Script based raytracer for creating 3D graphics'
 arch=('x86_64' 'i686')
@@ -14,7 +14,7 @@
 license=('AGPL3')
 url='http://povray.org/'
 depends=('libtiff' 'libpng' 'boost-libs' 'openexr')
-makedepends=('boost' 'git')
+makedepends=('boost' 'git' 'glu')
 backup=("etc/povray/$pkgver/povray.conf"
 "etc/povray/$pkgver/povray.ini")
 
source=('git+https://github.com/POV-Ray/povray#commit=5410fd423cebbf2270fe16888edbe2ca28b99ec7'


[arch-commits] Commit in btchip-udev/repos/community-any (6 files)

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 20:07:35
  Author: jelle
Revision: 257019

archrelease: copy trunk to community-any

Added:
  btchip-udev/repos/community-any/71-hw1.rules
(from rev 257018, btchip-udev/trunk/71-hw1.rules)
  btchip-udev/repos/community-any/PKGBUILD
(from rev 257018, btchip-udev/trunk/PKGBUILD)
  btchip-udev/repos/community-any/btchip-udev.install
(from rev 257018, btchip-udev/trunk/btchip-udev.install)
Deleted:
  btchip-udev/repos/community-any/71-hw1.rules
  btchip-udev/repos/community-any/PKGBUILD
  btchip-udev/repos/community-any/btchip-udev.install

-+
 71-hw1.rules|   16 
 PKGBUILD|   38 +++---
 btchip-udev.install |   24 
 3 files changed, 39 insertions(+), 39 deletions(-)

Deleted: 71-hw1.rules
===
--- 71-hw1.rules2017-09-11 20:07:26 UTC (rev 257018)
+++ 71-hw1.rules2017-09-11 20:07:35 UTC (rev 257019)
@@ -1,8 +0,0 @@
-SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="1b7c", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
-SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="2b7c", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
-SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="3b7c", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
-SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="4b7c", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
-SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="1807", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
-SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="1808", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
-SUBSYSTEMS=="usb", ATTRS{idVendor}=="2c97", ATTRS{idProduct}=="", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
-SUBSYSTEMS=="usb", ATTRS{idVendor}=="2c97", ATTRS{idProduct}=="0001", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"

Copied: btchip-udev/repos/community-any/71-hw1.rules (from rev 257018, 
btchip-udev/trunk/71-hw1.rules)
===
--- 71-hw1.rules(rev 0)
+++ 71-hw1.rules2017-09-11 20:07:35 UTC (rev 257019)
@@ -0,0 +1,8 @@
+SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="1b7c", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
+SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="2b7c", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
+SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="3b7c", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
+SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="4b7c", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
+SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="1807", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
+SUBSYSTEMS=="usb", ATTRS{idVendor}=="2581", ATTRS{idProduct}=="1808", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
+SUBSYSTEMS=="usb", ATTRS{idVendor}=="2c97", ATTRS{idProduct}=="", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"
+SUBSYSTEMS=="usb", ATTRS{idVendor}=="2c97", ATTRS{idProduct}=="0001", 
MODE="0660", TAG+="uaccess", TAG+="udev-acl"

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 20:07:26 UTC (rev 257018)
+++ PKGBUILD2017-09-11 20:07:35 UTC (rev 257019)
@@ -1,19 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-
-pkgname=btchip-udev
-pkgver=2
-pkgrel=1
-pkgdesc='Udev rules to connect BTChip wallet to your linux box'
-arch=(any)
-url='https://hardwarewallet.com/'
-license=(GPL)
-depends=(udev)
-install='btchip-udev.install'
-
-source=(71-hw1.rules)
-sha256sums=('4acca406fb7f2f53817399b78b347695fdc5bd08c1bb1cb8406b6a7328d2f475')
-
-package() {
-  install -Dm 644 71-hw1.rules "$pkgdir"/usr/lib/udev/rules.d/71-hw1.rules
-}

Copied: btchip-udev/repos/community-any/PKGBUILD (from rev 257018, 
btchip-udev/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 20:07:35 UTC (rev 257019)
@@ -0,0 +1,19 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+
+pkgname=btchip-udev
+pkgver=2
+pkgrel=2
+pkgdesc='Udev rules to connect BTChip wallet to your linux box'
+arch=(any)
+url='https://hardwarewallet.com/'
+license=(GPL)
+depends=(udev)
+install='btchip-udev.install'
+
+source=(71-hw1.rules)
+sha256sums=('4acca406fb7f2f53817399b78b347695fdc5bd08c1bb1cb8406b6a7328d2f475')
+
+package() {
+  install -Dm 644 71-hw1.rules "$pkgdir"/usr/lib/udev/rules.d/71-hw1.rules
+}

Deleted: btchip-udev.install
===
--- btchip-udev.install 2017-09-11 20:07:26 UTC (rev 257018)
+++ btchip-udev.install 2017-09-11 20:07:35 UTC (rev 257019)
@@ -1,12 +0,0 @@
-post_install() {
-  udevadm trigger
-  udevadm control --reload-rules
-}
-
-post_upgrade() {
-  post_install
-}

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 20:07:26
  Author: jelle
Revision: 257018

upgpkg: btchip-udev 2-2

rebuild for key removal

Modified:
  btchip-udev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:01:37 UTC (rev 257017)
+++ PKGBUILD2017-09-11 20:07:26 UTC (rev 257018)
@@ -3,7 +3,7 @@
 
 pkgname=btchip-udev
 pkgver=2
-pkgrel=1
+pkgrel=2
 pkgdesc='Udev rules to connect BTChip wallet to your linux box'
 arch=(any)
 url='https://hardwarewallet.com/'


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:57:02
  Author: jelle
Revision: 257014

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

Added:
  pax-utils/repos/community-i686/PKGBUILD
(from rev 257013, pax-utils/trunk/PKGBUILD)
  pax-utils/repos/community-x86_64/PKGBUILD
(from rev 257013, pax-utils/trunk/PKGBUILD)
Deleted:
  pax-utils/repos/community-i686/PKGBUILD
  pax-utils/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 19:56:45 UTC (rev 257013)
+++ community-i686/PKGBUILD 2017-09-11 19:57:02 UTC (rev 257014)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: sh0 
-# Contributor: Maxwel 
-
-pkgname=pax-utils
-pkgver=1.2.2
-pkgrel=2
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'python-pyelftools')
-source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9')
-
-_make() {
-  make USE_CAP='yes' USE_PYTHON='yes' "$@"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  _make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  LD_LIBRARY_PATH="/usr/lib" _make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  _make DESTDIR="${pkgdir}" install
-}

Copied: pax-utils/repos/community-i686/PKGBUILD (from rev 257013, 
pax-utils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:57:02 UTC (rev 257014)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: sh0 
+# Contributor: Maxwel 
+
+pkgname=pax-utils
+pkgver=1.2.2
+pkgrel=3
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9')
+
+_make() {
+  make USE_CAP='yes' USE_PYTHON='yes' "$@"
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  _make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  LD_LIBRARY_PATH="/usr/lib" _make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  _make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 19:56:45 UTC (rev 257013)
+++ community-x86_64/PKGBUILD   2017-09-11 19:57:02 UTC (rev 257014)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: sh0 
-# Contributor: Maxwel 
-
-pkgname=pax-utils
-pkgver=1.2.2
-pkgrel=2
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'python-pyelftools')
-source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9')
-
-_make() {
-  make USE_CAP='yes' USE_PYTHON='yes' "$@"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  _make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  LD_LIBRARY_PATH="/usr/lib" _make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  _make DESTDIR="${pkgdir}" install
-}

Copied: pax-utils/repos/community-x86_64/PKGBUILD (from rev 257013, 
pax-utils/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-11 19:57:02 UTC (rev 257014)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: sh0 
+# Contributor: Maxwel 
+
+pkgname=pax-utils
+pkgver=1.2.2
+pkgrel=3
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9')
+
+_make() {
+  make USE_CAP='yes' USE_PYTHON='yes' "$@"
+}
+
+build() {
+

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:56:45
  Author: jelle
Revision: 257013

upgpkg: pax-utils 1.2.2-3

rebuild for key removal

Modified:
  pax-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:56:25 UTC (rev 257012)
+++ PKGBUILD2017-09-11 19:56:45 UTC (rev 257013)
@@ -5,7 +5,7 @@
 
 pkgname=pax-utils
 pkgver=1.2.2
-pkgrel=2
+pkgrel=3
 pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
 url='http://hardened.gentoo.org/pax-utils.xml'
 arch=('i686' 'x86_64')


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:56:11
  Author: jelle
Revision: 257011

upgpkg: python2-pbkdf2 1.3-2

rebuild for key removal

Modified:
  python2-pbkdf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:52:39 UTC (rev 257010)
+++ PKGBUILD2017-09-11 19:56:11 UTC (rev 257011)
@@ -5,7 +5,7 @@
 pkgname=python2-pbkdf2
 _pkgname=pbkdf2
 pkgver=1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A module that implements the password-based key derivation function 
PBKDF2."
 arch=('any')
 url="https://www.dlitz.net/software/python-pbkdf2/";


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:56:25
  Author: jelle
Revision: 257012

archrelease: copy trunk to community-any

Added:
  python2-pbkdf2/repos/community-any/LICENSE
(from rev 257011, python2-pbkdf2/trunk/LICENSE)
  python2-pbkdf2/repos/community-any/PKGBUILD
(from rev 257011, python2-pbkdf2/trunk/PKGBUILD)
Deleted:
  python2-pbkdf2/repos/community-any/LICENSE
  python2-pbkdf2/repos/community-any/PKGBUILD

--+
 LICENSE  |   40 
 PKGBUILD |   60 ++--
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-09-11 19:56:11 UTC (rev 257011)
+++ LICENSE 2017-09-11 19:56:25 UTC (rev 257012)
@@ -1,20 +0,0 @@
-Copyright (C) 2007-2011 Dwayne C. Litzenberger 
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copied: python2-pbkdf2/repos/community-any/LICENSE (from rev 257011, 
python2-pbkdf2/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2017-09-11 19:56:25 UTC (rev 257012)
@@ -0,0 +1,20 @@
+Copyright (C) 2007-2011 Dwayne C. Litzenberger 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 19:56:11 UTC (rev 257011)
+++ PKGBUILD2017-09-11 19:56:25 UTC (rev 257012)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Hilton Medeiros 
-
-pkgname=python2-pbkdf2
-_pkgname=pbkdf2
-pkgver=1.3
-pkgrel=1
-pkgdesc="A module that implements the password-based key derivation function 
PBKDF2."
-arch=('any')
-url="https://www.dlitz.net/software/python-pbkdf2/";
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools')
-optdepends=('python2-crypto: to make use of PyCrypto`s HMAC and SHA')
-source=("http://pypi.python.org/packages/source/p/$_pkgname/$_pkgname-$pkgver.tar.gz";
-LICENSE)
-md5sums=('40cda566f61420490206597243dd869f'
- '180c44cc3999239185d0523570c61fa8')
-
-prepare() {
-  cd "$srcdir/$_pkgname-$pkgver"
-  find . -type f -name "*.py" -exec sed -i 
's#/usr/bin/python#/usr/bin/python2#g' {} +
-}
-
-package() {
-  cd "$srcdir/$_pkgname-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" -O1
-  install -Dm644 "$srcdir/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python2-pbkdf2/repos/community-any/PKGBUILD (from rev 257011, 
python2-pbkdf2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 19:56:25 UTC (rev 257012)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Hilton Medeiros 
+
+pkgname=python2-pbkdf2
+_pkgname=pbkdf2
+pkgver=1.3
+pkgrel=2
+pkgdesc="A module that implements the password-based key derivation function

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:52:39
  Author: jelle
Revision: 257010

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

Added:
  npapi-vlc/repos/community-i686/PKGBUILD
(from rev 257009, npapi-vlc/trunk/PKGBUILD)
  npapi-vlc/repos/community-x86_64/PKGBUILD
(from rev 257009, npapi-vlc/trunk/PKGBUILD)
Deleted:
  npapi-vlc/repos/community-i686/PKGBUILD
  npapi-vlc/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 19:52:26 UTC (rev 257009)
+++ community-i686/PKGBUILD 2017-09-11 19:52:39 UTC (rev 257010)
@@ -1,41 +0,0 @@
-# $Id$
-
-# Maintainer: Timothy Redaelli 
-# Contributor: Det 
-# Contributor: Hugo Osvaldo Barrera 
-
-pkgname=npapi-vlc
-pkgver=2.2.5
-pkgrel=1
-pkgdesc="The modern VLC Mozilla (NPAPI) plugin"
-arch=('i686' 'x86_64')
-url="https://code.videolan.org/videolan/npapi-vlc";
-license=('GPL')
-depends=('gtk2' 'vlc')
-makedepends=('git' 'npapi-sdk')
-# This package uses version tags from Git, because there are no official 
releases
-source=("git+https://code.videolan.org/videolan/$pkgname.git#tag=$pkgver";
-"git+https://code.videolan.org/videolan/libvlcpp.git";)
-md5sums=('SKIP'
- 'SKIP')
-
-prepare() {
-  cd "$pkgname"
-  git submodule init
-  git config submodule.vlcpp.url "$srcdir/libvlcpp"
-  git submodule update
-}
-
-build() {
-  cd "$pkgname"
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname"
-
-  make DESTDIR="$pkgdir" install
-}

Copied: npapi-vlc/repos/community-i686/PKGBUILD (from rev 257009, 
npapi-vlc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:52:39 UTC (rev 257010)
@@ -0,0 +1,41 @@
+# $Id$
+
+# Maintainer: Timothy Redaelli 
+# Contributor: Det 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgname=npapi-vlc
+pkgver=2.2.5
+pkgrel=2
+pkgdesc="The modern VLC Mozilla (NPAPI) plugin"
+arch=('i686' 'x86_64')
+url="https://code.videolan.org/videolan/npapi-vlc";
+license=('GPL')
+depends=('gtk2' 'vlc')
+makedepends=('git' 'npapi-sdk')
+# This package uses version tags from Git, because there are no official 
releases
+source=("git+https://code.videolan.org/videolan/$pkgname.git#tag=$pkgver";
+"git+https://code.videolan.org/videolan/libvlcpp.git";)
+md5sums=('SKIP'
+ 'SKIP')
+
+prepare() {
+  cd "$pkgname"
+  git submodule init
+  git config submodule.vlcpp.url "$srcdir/libvlcpp"
+  git submodule update
+}
+
+build() {
+  cd "$pkgname"
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname"
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 19:52:26 UTC (rev 257009)
+++ community-x86_64/PKGBUILD   2017-09-11 19:52:39 UTC (rev 257010)
@@ -1,41 +0,0 @@
-# $Id$
-
-# Maintainer: Timothy Redaelli 
-# Contributor: Det 
-# Contributor: Hugo Osvaldo Barrera 
-
-pkgname=npapi-vlc
-pkgver=2.2.5
-pkgrel=1
-pkgdesc="The modern VLC Mozilla (NPAPI) plugin"
-arch=('i686' 'x86_64')
-url="https://code.videolan.org/videolan/npapi-vlc";
-license=('GPL')
-depends=('gtk2' 'vlc')
-makedepends=('git' 'npapi-sdk')
-# This package uses version tags from Git, because there are no official 
releases
-source=("git+https://code.videolan.org/videolan/$pkgname.git#tag=$pkgver";
-"git+https://code.videolan.org/videolan/libvlcpp.git";)
-md5sums=('SKIP'
- 'SKIP')
-
-prepare() {
-  cd "$pkgname"
-  git submodule init
-  git config submodule.vlcpp.url "$srcdir/libvlcpp"
-  git submodule update
-}
-
-build() {
-  cd "$pkgname"
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname"
-
-  make DESTDIR="$pkgdir" install
-}

Copied: npapi-vlc/repos/community-x86_64/PKGBUILD (from rev 257009, 
npapi-vlc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-11 19:52:39 UTC (rev 257010)
@@ -0,0 +1,41 @@
+# $Id$
+
+# Maintainer: Timothy Redaelli 
+# Contributor: Det 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgname=npapi-vlc
+pkgver=2.2.5
+pkgrel=2
+pkgdesc="The modern VLC Mozilla (NPAPI) plugin"
+arch=('i686' 'x86_64')
+url="https://code.videolan.org/videolan/npapi-vlc";
+license=('GPL')
+depends=('gtk2' 'vlc')
+makedepends=('git' 'npapi-sdk')
+# This package uses version tags from Git, because there are no official 
releases
+source=("git+https://co

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

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

upgpkg: npapi-vlc 2.2.5-2

rebuild for key removal

Modified:
  npapi-vlc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:52:08 UTC (rev 257008)
+++ PKGBUILD2017-09-11 19:52:26 UTC (rev 257009)
@@ -6,7 +6,7 @@
 
 pkgname=npapi-vlc
 pkgver=2.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc="The modern VLC Mozilla (NPAPI) plugin"
 arch=('i686' 'x86_64')
 url="https://code.videolan.org/videolan/npapi-vlc";


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:52:08
  Author: jelle
Revision: 257008

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

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

+
 /PKGBUILD  |  116 +++
 /argyllcms.install |   78 +++
 community-i686/PKGBUILD|   58 -
 community-i686/argyllcms.install   |   39 ---
 community-x86_64/PKGBUILD  |   58 -
 community-x86_64/argyllcms.install |   39 ---
 6 files changed, 194 insertions(+), 194 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 19:51:56 UTC (rev 257007)
+++ community-i686/PKGBUILD 2017-09-11 19:52:08 UTC (rev 257008)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Frank Ickstadt (frank dot ickstadt at gmail dot com)
-
-pkgname=argyllcms
-_pkgname=Argyll
-pkgver=1.9.2
-_pkgver="V${pkgver}"
-pkgrel=1
-pkgdesc="An ICC compatible color management system with support for different 
colorimeter hardware"
-arch=(i686 x86_64)
-depends=('libtiff' 'libxss' 'libxinerama' 'libxxf86vm' 'libxrandr' 'openssl')
-makedepends=('ftjam' 'zip' 'unzip')
-# You need to fake an UserAgent or it doesn't download
-DLAGENTS=('http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -A 
"Mozilla/4.0" -o %o %u')
-source=(http://www.argyllcms.com/${_pkgname}_${_pkgver}_src.zip)
-url="http://www.argyllcms.com/";
-license=("GPL" "AGPL")
-install=${pkgname}.install
-sha256sums=('4d61ae0b91686dea721d34df2e44eaf36c88da87086fd50ccc4e999a58e9ce90')
-
-prepare() {
-  cd ${_pkgname}_${_pkgver}
-  sed -i 's:^TEST=="/lib/udev/usb-db", IMPORT{program}="usb-db 
%p":IMPORT{builtin}="hwdb --subsystem=usb":' usb/55-Argyll.rules
-
-  sed -i 's/-j${NUMBER_OF_PROCESSORS:-2}/$MAKEFLAGS/' makeall.sh
-
-  # From Gentoo argyllcms ebuild
-  echo "LINKFLAGS += ${LDFLAGS} ;" >> Jamtop
-  echo "STDLIBS += -ldl -lrt -lX11 -lXext -lXxf86vm -lXinerama -lXrandr -lXau 
-lXdmcp -lXss -ltiff -ljpeg ;" >> Jamtop
-}
-
-build() {
-  cd ${_pkgname}_${_pkgver}
-
-  CCOPTFLAG="$CFLAGS" ./makeall.sh
-  ./makeinstall.sh
-  ./makepackagebin.sh
-  rm {bin,ref}/License.txt
-  rm {doc,ref}/afiles
-}
-
-package() {
-  mkdir -p "${pkgdir}"/usr/bin
-  install -m755 ${_pkgname}_${_pkgver}/bin/* "${pkgdir}"/usr/bin
-  mkdir -p "${pkgdir}"/usr/share/${pkgname}/ref
-  install -m644 ${_pkgname}_${_pkgver}/ref/*.* 
"${pkgdir}"/usr/share/${pkgname}/ref
-  install -m644 ${_pkgname}_${_pkgver}/profile/*.sp 
"${pkgdir}"/usr/share/${pkgname}/ref
-  install -m644 ${_pkgname}_${_pkgver}/scanin/*.c?? 
"${pkgdir}"/usr/share/${pkgname}/ref
-  # Because there is just html documentation we have to move it
-  mkdir -p "${pkgdir}"/usr/share/${pkgname}/doc/ccmxs
-  install -m644 ${_pkgname}_${_pkgver}/doc/ccmxs/*.ccmx 
"${pkgdir}"/usr/share/${pkgname}/doc/ccmxs
-  install -m644 ${_pkgname}_${_pkgver}/doc/*.* 
"${pkgdir}"/usr/share/${pkgname}/doc
-  mkdir -p "${pkgdir}"/usr/lib/udev/rules.d
-  install -m644 ${_pkgname}_${_pkgver}/usb/55-Argyll.rules 
"${pkgdir}"/usr/lib/udev/rules.d/55-Argyll.rules
-}
-
-# vim:set ts=2 sw=2 et:

Copied: argyllcms/repos/community-i686/PKGBUILD (from rev 257007, 
argyllcms/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:52:08 UTC (rev 257008)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Frank Ickstadt (frank dot ickstadt at gmail dot com)
+
+pkgname=argyllcms
+_pkgname=Argyll
+pkgver=1.9.2
+_pkgver="V${pkgver}"
+pkgrel=2
+pkgdesc="An ICC compatible color management system with support for different 
colorimeter hardware"
+arch=(i686 x86_64)
+depends=('libtiff' 'libxss' 'libxinerama' 'libxxf86vm' 'libxrandr' 'openssl')
+makedepends=('ftjam' 'zip' 'unzip')
+# You need to fake an UserAgent or it doesn't download
+DLAGENTS=('http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -A 
"Mozilla/4.0" -o %o %u')
+source=(http://www.argyllcms.com/${_pkgname}_${_pkgver}_src.zip)
+url="http://www.argyllcms.com/";
+license=("GPL" "AGPL")
+install=${pkgname}.install
+sha256sums=('4d61ae0b91686dea721d34df2e44eaf36c88da87086fd50ccc4e999a58e9ce90')
+
+prepare() {
+  cd ${_pkgname}_

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

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

upgpkg: argyllcms 1.9.2-2

rebuild for key removal

Modified:
  argyllcms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:40:48 UTC (rev 257006)
+++ PKGBUILD2017-09-11 19:51:56 UTC (rev 257007)
@@ -6,7 +6,7 @@
 _pkgname=Argyll
 pkgver=1.9.2
 _pkgver="V${pkgver}"
-pkgrel=1
+pkgrel=2
 pkgdesc="An ICC compatible color management system with support for different 
colorimeter hardware"
 arch=(i686 x86_64)
 depends=('libtiff' 'libxss' 'libxinerama' 'libxxf86vm' 'libxrandr' 'openssl')


[arch-commits] Commit in devtools/repos (testing-any testing-any/PKGBUILD)

2017-09-11 Thread Sébastien Luttringer
Date: Monday, September 11, 2017 @ 19:41:08
  Author: seblu
Revision: 305359

archrelease: copy trunk to testing-any

Added:
  devtools/repos/testing-any/
  devtools/repos/testing-any/PKGBUILD
(from rev 305358, devtools/trunk/PKGBUILD)

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

Copied: devtools/repos/testing-any/PKGBUILD (from rev 305358, 
devtools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-09-11 19:41:08 UTC (rev 305359)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=devtools
+pkgver=20170911
+pkgrel=1
+pkgdesc='Tools for Arch Linux package maintainers'
+arch=('any')
+license=('GPL')
+url='https://git.archlinux.org/devtools.git/'
+depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
+source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53'
+  '4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC'
+  '86CFFCA918CF3AF47147588051E8B148AC34'
+  '8FC15A064950A99DD1BD14DD39E4B877E62EB915'
+  '8218F88849AAC522E94CF470A5E9288C4FA415FA'
+  'B81B051F2D7FC867AAFF35A58DBD63B82072D77A')
+md5sums=('45d4334ed90d9c41adc8c34eea93dcfa'
+ 'SKIP')
+
+prepare() {
+   cd "${pkgname}-${pkgver}"
+}
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   make PREFIX=/usr
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make PREFIX=/usr DESTDIR=${pkgdir} install
+}


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:40:48
  Author: jelle
Revision: 257006

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 19:40:27 UTC (rev 257005)
+++ community-i686/PKGBUILD 2017-09-11 19:40:48 UTC (rev 257006)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Florian Loitsch 
-pkgname=miniupnpc
-pkgver=2.0.20170509
-pkgrel=1
-pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
-arch=('i686' 'x86_64')
-url="http://miniupnp.free.fr";
-license=('BSD')
-depends=('sh')
-source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('d3c368627f5cdfb66d3ebd64ca39ba54d6ff14a61966dbecb8dd296b7039f16a')
-
-build() {
-  cd "$pkgname-$pkgver"
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  install -Dm644 man3/miniupnpc.3 "${pkgdir}"/usr/share/man/man3/miniupnpc.3
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: miniupnpc/repos/community-i686/PKGBUILD (from rev 257005, 
miniupnpc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:40:48 UTC (rev 257006)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Florian Loitsch 
+pkgname=miniupnpc
+pkgver=2.0.20170509
+pkgrel=2
+pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
+arch=('i686' 'x86_64')
+url="http://miniupnp.free.fr";
+license=('BSD')
+depends=('sh')
+source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
+sha256sums=('d3c368627f5cdfb66d3ebd64ca39ba54d6ff14a61966dbecb8dd296b7039f16a')
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  install -Dm644 man3/miniupnpc.3 "${pkgdir}"/usr/share/man/man3/miniupnpc.3
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 19:40:27 UTC (rev 257005)
+++ community-x86_64/PKGBUILD   2017-09-11 19:40:48 UTC (rev 257006)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Florian Loitsch 
-pkgname=miniupnpc
-pkgver=2.0.20170509
-pkgrel=1
-pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
-arch=('i686' 'x86_64')
-url="http://miniupnp.free.fr";
-license=('BSD')
-depends=('sh')
-source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
-sha256sums=('d3c368627f5cdfb66d3ebd64ca39ba54d6ff14a61966dbecb8dd296b7039f16a')
-
-build() {
-  cd "$pkgname-$pkgver"
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  install -Dm644 man3/miniupnpc.3 "${pkgdir}"/usr/share/man/man3/miniupnpc.3
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: miniupnpc/repos/community-x86_64/PKGBUILD (from rev 257005, 
miniupnpc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-11 19:40:48 UTC (rev 257006)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Florian Loitsch 
+pkgname=miniupnpc
+pkgver=2.0.20170509
+pkgrel=2
+pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
+arch=('i686' 'x86_64')
+url="http://miniupnp.free.fr";
+license=('BSD')
+depends=('sh')
+source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";)
+sha256sums=('d3c368627f5cdfb66d3ebd64ca39ba54d6ff14a61966dbecb8dd296b7039f16a')
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  install -Dm644 man3/miniupnpc.3 "${pkgdir}"/usr/share/man/man3/miniupnpc.3
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:40:27
  Author: jelle
Revision: 257005

upgpkg: miniupnpc 2.0.20170509-2

rebuild for key removal

Modified:
  miniupnpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:38:30 UTC (rev 257004)
+++ PKGBUILD2017-09-11 19:40:27 UTC (rev 257005)
@@ -3,7 +3,7 @@
 # Contributor: Florian Loitsch 
 pkgname=miniupnpc
 pkgver=2.0.20170509
-pkgrel=1
+pkgrel=2
 pkgdesc="A small UPnP client library/tool to access Internet Gateway Devices"
 arch=('i686' 'x86_64')
 url="http://miniupnp.free.fr";


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

2017-09-11 Thread Sébastien Luttringer
Date: Monday, September 11, 2017 @ 19:40:44
  Author: seblu
Revision: 305358

upgpkg: devtools 20170911-1

Modified:
  devtools/trunk/PKGBUILD
Deleted:
  devtools/trunk/0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch
  devtools/trunk/0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch

-+
 0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch |   27 -
 0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch  |   47 
--
 PKGBUILD|7 -
 3 files changed, 4 insertions(+), 77 deletions(-)

Deleted: 0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch
===
--- 0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch 
2017-09-11 19:16:32 UTC (rev 305357)
+++ 0001-makechrootpkg-Delete-chroot-subvols-recursively-when.patch 
2017-09-11 19:40:44 UTC (rev 305358)
@@ -1,27 +0,0 @@
-From a1f8ac9c70494009554c08c1036351cb2b374828 Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Sun, 9 Apr 2017 02:36:01 +0200
-Subject: [PATCH] makechrootpkg: Delete chroot subvols recursively when using
- -T
-
-I overlooked this one. Fixes FS#53513.

- makechrootpkg.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/makechrootpkg.in b/makechrootpkg.in
-index f6764cb..20a1f50 100644
 a/makechrootpkg.in
-+++ b/makechrootpkg.in
-@@ -143,7 +143,7 @@ delete_chroot() {
- 
-   stat_busy "Removing chroot copy [%s]" "$copy"
-   if is_btrfs "$chrootdir" && ! mountpoint -q "$copydir"; then
--  btrfs subvolume delete "$copydir" >/dev/null ||
-+  subvolume_delete_recursive "$copydir" ||
-   die "Unable to delete subvolume %s" "$copydir"
-   else
-   # avoid change of filesystem in case of an umount failure
--- 
-2.12.2
-

Deleted: 0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch
===
--- 0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch  2017-09-11 
19:16:32 UTC (rev 305357)
+++ 0002-Sync-makepkg.conf-files-with-pacman-5.0.2-2.patch  2017-09-11 
19:40:44 UTC (rev 305358)
@@ -1,47 +0,0 @@
-From c9b1fc08b5f63c9f6bb1a992431c661129ab2db1 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= 
-Date: Tue, 4 Jul 2017 12:04:51 +0200
-Subject: [PATCH] Sync makepkg.conf files with pacman 5.0.2-2
-

- makepkg-i686.conf   | 6 +++---
- makepkg-x86_64.conf | 6 +++---
- 2 files changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/makepkg-i686.conf b/makepkg-i686.conf
-index c565795..e57988f 100644
 a/makepkg-i686.conf
-+++ b/makepkg-i686.conf
-@@ -37,9 +37,9 @@ CHOST="i686-pc-linux-gnu"
- # -march (or -mcpu) builds exclusively for an architecture
- # -mtune optimizes for an architecture, but builds for whole processor family
- CPPFLAGS="-D_FORTIFY_SOURCE=2"
--CFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong"
--CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong"
--LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
-+CFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong 
-fno-plt"
-+CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong 
-fno-plt"
-+LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
- #-- Make Flags: change this for DistCC/SMP systems
- #MAKEFLAGS="-j2"
- #-- Debugging flags
-diff --git a/makepkg-x86_64.conf b/makepkg-x86_64.conf
-index 058da9b..7aa192e 100644
 a/makepkg-x86_64.conf
-+++ b/makepkg-x86_64.conf
-@@ -37,9 +37,9 @@ CHOST="x86_64-pc-linux-gnu"
- # -march (or -mcpu) builds exclusively for an architecture
- # -mtune optimizes for an architecture, but builds for whole processor family
- CPPFLAGS="-D_FORTIFY_SOURCE=2"
--CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong"
--CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong"
--LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
-+CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong 
-fno-plt"
-+CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong 
-fno-plt"
-+LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
- #-- Make Flags: change this for DistCC/SMP systems
- #MAKEFLAGS="-j2"
- #-- Debugging flags
--- 
-2.13.2
-

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:16:32 UTC (rev 305357)
+++ PKGBUILD2017-09-11 19:40:44 UTC (rev 305358)
@@ -2,7 +2,7 @@
 # Maintaine

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:38:17
  Author: jelle
Revision: 257003

upgpkg: dropbear 2017.75-2

rebuild for key removal

Modified:
  dropbear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:37:31 UTC (rev 257002)
+++ PKGBUILD2017-09-11 19:38:17 UTC (rev 257003)
@@ -9,7 +9,7 @@
 
 pkgname=dropbear
 pkgver=2017.75
-pkgrel=1
+pkgrel=2
 pkgdesc="Lightweight replacement for sshd"
 arch=('i686' 'x86_64')
 url="http://matt.ucc.asn.au/dropbear/dropbear.html";


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

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

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

Added:
  dropbear/repos/community-i686/PKGBUILD
(from rev 257003, dropbear/trunk/PKGBUILD)
  dropbear/repos/community-i686/dropbear.service
(from rev 257003, dropbear/trunk/dropbear.service)
  dropbear/repos/community-x86_64/PKGBUILD
(from rev 257003, dropbear/trunk/PKGBUILD)
  dropbear/repos/community-x86_64/dropbear.service
(from rev 257003, dropbear/trunk/dropbear.service)
Deleted:
  dropbear/repos/community-i686/PKGBUILD
  dropbear/repos/community-i686/dropbear.service
  dropbear/repos/community-x86_64/PKGBUILD
  dropbear/repos/community-x86_64/dropbear.service

---+
 /PKGBUILD |   96 
 /dropbear.service |   20 +++
 community-i686/PKGBUILD   |   48 --
 community-i686/dropbear.service   |   10 ---
 community-x86_64/PKGBUILD |   48 --
 community-x86_64/dropbear.service |   10 ---
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 19:38:17 UTC (rev 257003)
+++ community-i686/PKGBUILD 2017-09-11 19:38:30 UTC (rev 257004)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Simon Perry 
-# Contributor: Bartlomiej Piotrowski 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
-# Contributor: Jeremy Cowgar 
-# Contributor: Simon Perry 
-
-pkgname=dropbear
-pkgver=2017.75
-pkgrel=1
-pkgdesc="Lightweight replacement for sshd"
-arch=('i686' 'x86_64')
-url="http://matt.ucc.asn.au/dropbear/dropbear.html";
-license=('MIT')
-depends=('zlib')
-source=(https://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2{,.asc}
-$pkgname.service)
-sha256sums=('6cbc1dcb1c9709d226dff669e5604172a18cf5dbf9a201474d5618ae4465098c'
-'SKIP'
-'8890a35b6cb14745c1b22f80d3a8532de2a853c78a30eac72b954012e286504a')
-validpgpkeys=('F7347EF2EE2E07A267628CA944931494F29C6773')
-
-prepare() {
-  sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' $pkgname-$pkgver/options.h
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install DESTDIR="${pkgdir}/"
-
-  # Configuration files
-  install -d "${pkgdir}/etc/$pkgname"
-  install -D -m644 "${srcdir}/$pkgname.service" 
"${pkgdir}/usr/lib/systemd/system/$pkgname.service"
-
-  # License file
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: dropbear/repos/community-i686/PKGBUILD (from rev 257003, 
dropbear/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:38:30 UTC (rev 257004)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Simon Perry 
+# Contributor: Bartlomiej Piotrowski 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
+# Contributor: Jeremy Cowgar 
+# Contributor: Simon Perry 
+
+pkgname=dropbear
+pkgver=2017.75
+pkgrel=2
+pkgdesc="Lightweight replacement for sshd"
+arch=('i686' 'x86_64')
+url="http://matt.ucc.asn.au/dropbear/dropbear.html";
+license=('MIT')
+depends=('zlib')
+source=(https://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2{,.asc}
+$pkgname.service)
+sha256sums=('6cbc1dcb1c9709d226dff669e5604172a18cf5dbf9a201474d5618ae4465098c'
+'SKIP'
+'8890a35b6cb14745c1b22f80d3a8532de2a853c78a30eac72b954012e286504a')
+validpgpkeys=('F7347EF2EE2E07A267628CA944931494F29C6773')
+
+prepare() {
+  sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' $pkgname-$pkgver/options.h
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install DESTDIR="${pkgdir}/"
+
+  # Configuration files
+  install -d "${pkgdir}/etc/$pkgname"
+  install -D -m644 "${srcdir}/$pkgname.service" 
"${pkgdir}/usr/lib/systemd/system/$pkgname.service"
+
+  # License file
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}
+

Deleted: community-i686/dropbear.service
===
--- community-i686/dropbear.service 2017-09-11 19:38:17 UTC (rev 257003)
+++ community-i686/dropbear.service 2017-09-11 19:38:30 UTC (rev 257004)
@@ -1,10 +0,0 @@
-[Unit]
-Description=Dropbear SSH Daemon
-After=network.target
-
-[Service]
-Type=simple
-ExecStart=/usr/bin/dropbear -F -P /run/dropbear.pid -R
-
-[Install]
-WantedBy=multi-user.target

Copied: drop

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

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

upgpkg: mtd-utils 2.0.0-2

rebuild for key removal

Modified:
  mtd-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:36:06 UTC (rev 257000)
+++ PKGBUILD2017-09-11 19:37:10 UTC (rev 257001)
@@ -4,7 +4,7 @@
 
 pkgname=mtd-utils
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Utilities for dealing with MTD devices'
 arch=('i686' 'x86_64')
 url='http://www.linux-mtd.infradead.org/'


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:37:31
  Author: jelle
Revision: 257002

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

Added:
  mtd-utils/repos/community-i686/PKGBUILD
(from rev 257001, mtd-utils/trunk/PKGBUILD)
  mtd-utils/repos/community-x86_64/PKGBUILD
(from rev 257001, mtd-utils/trunk/PKGBUILD)
Deleted:
  mtd-utils/repos/community-i686/PKGBUILD
  mtd-utils/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:37:10 UTC (rev 257001)
+++ community-i686/PKGBUILD 2017-09-11 19:37:31 UTC (rev 257002)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Phil Pirozhkov 
-
-pkgname=mtd-utils
-pkgver=2.0.0
-pkgrel=1
-pkgdesc='Utilities for dealing with MTD devices'
-arch=('i686' 'x86_64')
-url='http://www.linux-mtd.infradead.org/'
-license=('GPL2')
-depends=('lzo' 'util-linux')
-source=(ftp://ftp.infradead.org/pub/mtd-utils/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('70b80fccdfc1b536a91deefb91f4e2be'
- 'SKIP')
-validpgpkeys=('13063F723C9E584AEACD5B9BBCE5DC3C741A02D1')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-check() {
-  make -C $pkgname-$pkgver check
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-}

Copied: mtd-utils/repos/community-i686/PKGBUILD (from rev 257001, 
mtd-utils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:37:31 UTC (rev 257002)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Phil Pirozhkov 
+
+pkgname=mtd-utils
+pkgver=2.0.0
+pkgrel=2
+pkgdesc='Utilities for dealing with MTD devices'
+arch=('i686' 'x86_64')
+url='http://www.linux-mtd.infradead.org/'
+license=('GPL2')
+depends=('lzo' 'util-linux')
+source=(ftp://ftp.infradead.org/pub/mtd-utils/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('70b80fccdfc1b536a91deefb91f4e2be'
+ 'SKIP')
+validpgpkeys=('13063F723C9E584AEACD5B9BBCE5DC3C741A02D1')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 19:37:10 UTC (rev 257001)
+++ community-x86_64/PKGBUILD   2017-09-11 19:37:31 UTC (rev 257002)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Phil Pirozhkov 
-
-pkgname=mtd-utils
-pkgver=2.0.0
-pkgrel=1
-pkgdesc='Utilities for dealing with MTD devices'
-arch=('i686' 'x86_64')
-url='http://www.linux-mtd.infradead.org/'
-license=('GPL2')
-depends=('lzo' 'util-linux')
-source=(ftp://ftp.infradead.org/pub/mtd-utils/$pkgname-$pkgver.tar.bz2{,.asc})
-md5sums=('70b80fccdfc1b536a91deefb91f4e2be'
- 'SKIP')
-validpgpkeys=('13063F723C9E584AEACD5B9BBCE5DC3C741A02D1')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-check() {
-  make -C $pkgname-$pkgver check
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-}

Copied: mtd-utils/repos/community-x86_64/PKGBUILD (from rev 257001, 
mtd-utils/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-11 19:37:31 UTC (rev 257002)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Phil Pirozhkov 
+
+pkgname=mtd-utils
+pkgver=2.0.0
+pkgrel=2
+pkgdesc='Utilities for dealing with MTD devices'
+arch=('i686' 'x86_64')
+url='http://www.linux-mtd.infradead.org/'
+license=('GPL2')
+depends=('lzo' 'util-linux')
+source=(ftp://ftp.infradead.org/pub/mtd-utils/$pkgname-$pkgver.tar.bz2{,.asc})
+md5sums=('70b80fccdfc1b536a91deefb91f4e2be'
+ 'SKIP')
+validpgpkeys=('13063F723C9E584AEACD5B9BBCE5DC3C741A02D1')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}


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

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

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-11 19:35:40 UTC (rev 256999)
+++ PKGBUILD2017-09-11 19:36:06 UTC (rev 257000)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-
-pkgname=python2-jsonrpclib
-pkgver=0.1.7
-pkgrel=1
-pkgdesc="An implementation of the JSON-RPC v2.0 specification 
(backwards-compatible) as a client library"
-arch=('any')
-depends=('python2')
-makedepends=('python2-setuptools')
-url="https://github.com/joshmarshall/jsonrpclib/";
-license=('Apache')
-source=(https://pypi.python.org/packages/source/j/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz)
-md5sums=('fb67bd327fbd8b53e62ecbc1c4c6b97d')
-sha256sums=('7f50239d53b5e95b94455d5e1adae70592b5b71f0e960d3bbbfbb125788e6f0b')
-
-build() {
-  cd $srcdir/${pkgname#python2-}-$pkgver
-
-  msg2 'Building...'
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/${pkgname#python2-}-$pkgver
-
-  msg2 'Installing...'
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python2-jsonrpclib/repos/community-any/PKGBUILD (from rev 256999, 
python2-jsonrpclib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-11 19:36:06 UTC (rev 257000)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+
+pkgname=python2-jsonrpclib
+pkgver=0.1.7
+pkgrel=2
+pkgdesc="An implementation of the JSON-RPC v2.0 specification 
(backwards-compatible) as a client library"
+arch=('any')
+depends=('python2')
+makedepends=('python2-setuptools')
+url="https://github.com/joshmarshall/jsonrpclib/";
+license=('Apache')
+source=(https://pypi.python.org/packages/source/j/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz)
+md5sums=('fb67bd327fbd8b53e62ecbc1c4c6b97d')
+sha256sums=('7f50239d53b5e95b94455d5e1adae70592b5b71f0e960d3bbbfbb125788e6f0b')
+
+build() {
+  cd $srcdir/${pkgname#python2-}-$pkgver
+
+  msg2 'Building...'
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/${pkgname#python2-}-$pkgver
+
+  msg2 'Installing...'
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:35:40
  Author: jelle
Revision: 256999

upgpkg: python2-jsonrpclib 0.1.7-2

rebuild for key removal

Modified:
  python2-jsonrpclib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:34:03 UTC (rev 256998)
+++ PKGBUILD2017-09-11 19:35:40 UTC (rev 256999)
@@ -4,7 +4,7 @@
 
 pkgname=python2-jsonrpclib
 pkgver=0.1.7
-pkgrel=1
+pkgrel=2
 pkgdesc="An implementation of the JSON-RPC v2.0 specification 
(backwards-compatible) as a client library"
 arch=('any')
 depends=('python2')


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

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

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

Added:
  miniupnpd/repos/community-i686/PKGBUILD
(from rev 256997, miniupnpd/trunk/PKGBUILD)
  miniupnpd/repos/community-i686/miniupnpd.systemd
(from rev 256997, miniupnpd/trunk/miniupnpd.systemd)
  miniupnpd/repos/community-x86_64/PKGBUILD
(from rev 256997, miniupnpd/trunk/PKGBUILD)
  miniupnpd/repos/community-x86_64/miniupnpd.systemd
(from rev 256997, miniupnpd/trunk/miniupnpd.systemd)
Deleted:
  miniupnpd/repos/community-i686/PKGBUILD
  miniupnpd/repos/community-i686/miniupnpd.systemd
  miniupnpd/repos/community-x86_64/PKGBUILD
  miniupnpd/repos/community-x86_64/miniupnpd.systemd

+
 /PKGBUILD  |   82 +++
 /miniupnpd.systemd |   28 +++
 community-i686/PKGBUILD|   41 -
 community-i686/miniupnpd.systemd   |   14 -
 community-x86_64/PKGBUILD  |   41 -
 community-x86_64/miniupnpd.systemd |   14 -
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 19:33:50 UTC (rev 256997)
+++ community-i686/PKGBUILD 2017-09-11 19:34:03 UTC (rev 256998)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: fauno 
-pkgname=miniupnpd
-pkgver=2.0.20170421
-pkgrel=1
-pkgdesc="Lightweight UPnP IGD daemon"
-arch=('i686' 'x86_64')
-url="http://miniupnp.free.fr";
-license=('BSD')
-backup=(etc/miniupnpd/miniupnpd.conf)
-depends=('iptables' 'net-tools' 'util-linux')
-makedepends=('lsb-release')
-source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";
-miniupnpd.systemd)
-sha256sums=('9677aeccadf73b4bf8bb9d832c32b5da8266b4d58eed888f3fd43d7656405643'
-'66cd1ed0ae55c683910d46c2e486a8b52e48088b70248323cf894bc962ede48f')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  CONFIG_OPTIONS="--ipv6 --leasefile" make -f Makefile.linux config.h
-  make -f Makefile.linux
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  mkdir -p "$pkgdir/usr/share/man/man8"
-
-  make PREFIX="$pkgdir/" SBININSTALLDIR="$pkgdir/usr/bin" -f Makefile.linux 
install
-
-  rm -r "${pkgdir}/etc/init.d"
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 "${srcdir}/miniupnpd.systemd" 
"${pkgdir}/usr/lib/systemd/system/miniupnpd.service"
-
-  sed -i 's:/s\?bin/iptables:/usr/bin/iptables:
-  s:eth0:"`cat /etc/miniupnpd/miniupnpd.conf | '"awk -F= 
'/^ext_ifname/ { print \$2 }'"'`":' "${pkgdir}"/etc/miniupnpd/*.sh
-  sed -i -e "s/^uuid=[-0-9a-f]*/uuid=----/
- s/make genuuid/uuidgen/" "${pkgdir}/etc/miniupnpd/miniupnpd.conf"
-}

Copied: miniupnpd/repos/community-i686/PKGBUILD (from rev 256997, 
miniupnpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:34:03 UTC (rev 256998)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: fauno 
+pkgname=miniupnpd
+pkgver=2.0.20170421
+pkgrel=2
+pkgdesc="Lightweight UPnP IGD daemon"
+arch=('i686' 'x86_64')
+url="http://miniupnp.free.fr";
+license=('BSD')
+backup=(etc/miniupnpd/miniupnpd.conf)
+depends=('iptables' 'net-tools' 'util-linux')
+makedepends=('lsb-release')
+source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz";
+miniupnpd.systemd)
+sha256sums=('9677aeccadf73b4bf8bb9d832c32b5da8266b4d58eed888f3fd43d7656405643'
+'66cd1ed0ae55c683910d46c2e486a8b52e48088b70248323cf894bc962ede48f')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  CONFIG_OPTIONS="--ipv6 --leasefile" make -f Makefile.linux config.h
+  make -f Makefile.linux
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  mkdir -p "$pkgdir/usr/share/man/man8"
+
+  make PREFIX="$pkgdir/" SBININSTALLDIR="$pkgdir/usr/bin" -f Makefile.linux 
install
+
+  rm -r "${pkgdir}/etc/init.d"
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 "${srcdir}/miniupnpd.systemd" 
"${pkgdir}/usr/lib/systemd/system/miniupnpd.service"
+
+  sed -i 's:/s\?bin/iptables:/usr/bin/iptables:
+  s:eth0:"`cat /etc/miniupnpd/miniupnpd.conf | '"awk -F= 
'/^ext_ifname/ { print \$2 }'"'`":' "${pkgdir}"/etc/miniupnpd/*.sh
+  sed -i -e "s/^uuid=[-0-9a-f]*/uuid=----/
+ s/make genuuid/uuidgen/" "${pkgdir}/etc/miniupnpd/miniupnpd.conf"
+}

Deleted: community-i686/miniupnpd.systemd
===
--- community-i686/miniupnpd.systemd2017-09-11 19:33:50 UTC (rev 256997)
+++ community-i686/miniupnpd.systemd2017-09-11 19:34:03 UTC (rev 256998)
@@ -1,14 +0,0 @@
-[Unit]
-Description=Light

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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:33:50
  Author: jelle
Revision: 256997

upgpkg: miniupnpd 2.0.20170421-2

rebuild for key removal

Modified:
  miniupnpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:31:16 UTC (rev 256996)
+++ PKGBUILD2017-09-11 19:33:50 UTC (rev 256997)
@@ -3,7 +3,7 @@
 # Contributor: fauno 
 pkgname=miniupnpd
 pkgver=2.0.20170421
-pkgrel=1
+pkgrel=2
 pkgdesc="Lightweight UPnP IGD daemon"
 arch=('i686' 'x86_64')
 url="http://miniupnp.free.fr";


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:31:02
  Author: jelle
Revision: 256995

upgpkg: packeth 1.8.1-2

rebuild for key removal

Modified:
  packeth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 19:26:46 UTC (rev 256994)
+++ PKGBUILD2017-09-11 19:31:02 UTC (rev 256995)
@@ -4,7 +4,7 @@
 
 pkgname=packeth
 pkgver=1.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A Linux GUI packet generator tool for ethernet."
 depends=(gtk2)
 source=("http://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2";)


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

2017-09-11 Thread Jelle van der Waa
Date: Monday, September 11, 2017 @ 19:31:16
  Author: jelle
Revision: 256996

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-11 19:31:02 UTC (rev 256995)
+++ community-i686/PKGBUILD 2017-09-11 19:31:16 UTC (rev 256996)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Rudy Matela 
-
-pkgname=packeth
-pkgver=1.8.1
-pkgrel=1
-pkgdesc="A Linux GUI packet generator tool for ethernet."
-depends=(gtk2)
-source=("http://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2";)
-url="http://packeth.sourceforge.net/";
-md5sums=('90a05c12df7f5c02ef4a3e5324149f40')
-arch=('i686' 'x86_64')
-license=('GPL')
-
-build() {
-  cd "$srcdir"/packETH-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/packETH-$pkgver
-  make install DESTDIR="$pkgdir/"
-}

Copied: packeth/repos/community-i686/PKGBUILD (from rev 256995, 
packeth/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-11 19:31:16 UTC (rev 256996)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Rudy Matela 
+
+pkgname=packeth
+pkgver=1.8.1
+pkgrel=2
+pkgdesc="A Linux GUI packet generator tool for ethernet."
+depends=(gtk2)
+source=("http://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2";)
+url="http://packeth.sourceforge.net/";
+md5sums=('90a05c12df7f5c02ef4a3e5324149f40')
+arch=('i686' 'x86_64')
+license=('GPL')
+
+build() {
+  cd "$srcdir"/packETH-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/packETH-$pkgver
+  make install DESTDIR="$pkgdir/"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-11 19:31:02 UTC (rev 256995)
+++ community-x86_64/PKGBUILD   2017-09-11 19:31:16 UTC (rev 256996)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Rudy Matela 
-
-pkgname=packeth
-pkgver=1.8.1
-pkgrel=1
-pkgdesc="A Linux GUI packet generator tool for ethernet."
-depends=(gtk2)
-source=("http://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2";)
-url="http://packeth.sourceforge.net/";
-md5sums=('90a05c12df7f5c02ef4a3e5324149f40')
-arch=('i686' 'x86_64')
-license=('GPL')
-
-build() {
-  cd "$srcdir"/packETH-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/packETH-$pkgver
-  make install DESTDIR="$pkgdir/"
-}

Copied: packeth/repos/community-x86_64/PKGBUILD (from rev 256995, 
packeth/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-11 19:31:16 UTC (rev 256996)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Rudy Matela 
+
+pkgname=packeth
+pkgver=1.8.1
+pkgrel=2
+pkgdesc="A Linux GUI packet generator tool for ethernet."
+depends=(gtk2)
+source=("http://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2";)
+url="http://packeth.sourceforge.net/";
+md5sums=('90a05c12df7f5c02ef4a3e5324149f40')
+arch=('i686' 'x86_64')
+license=('GPL')
+
+build() {
+  cd "$srcdir"/packETH-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/packETH-$pkgver
+  make install DESTDIR="$pkgdir/"
+}


[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')


  1   2   3   >