[arch-commits] Commit in mariadb/trunk (0001-openssl-1-1-0.patch PKGBUILD)

2017-05-14 Thread Christian Hesse
Date: Sunday, May 14, 2017 @ 21:36:51
  Author: eworm
Revision: 296001

upgpkg: mariadb 10.1.23-2

back to system ssl with openssl 1.1.0

Added:
  mariadb/trunk/0001-openssl-1-1-0.patch
Modified:
  mariadb/trunk/PKGBUILD

--+
 0001-openssl-1-1-0.patch | 2129 +
 PKGBUILD |   27 
 2 files changed, 2143 insertions(+), 13 deletions(-)

Added: 0001-openssl-1-1-0.patch
===
--- 0001-openssl-1-1-0.patch(rev 0)
+++ 0001-openssl-1-1-0.patch2017-05-14 21:36:51 UTC (rev 296001)
@@ -0,0 +1,2129 @@
+From fb57acd98f96b3d2684cd29c126b4904db81f84c Mon Sep 17 00:00:00 2001
+From: Georg Richter 
+Date: Wed, 8 Mar 2017 17:39:47 +0100
+Subject: [PATCH 1/2] MDEV-10332  support for OpenSSL 1.1 and LibreSSL
+
+Initial support
+
+tested against OpenSSL 1.0.1, 1.0.2, 1.1.0, Yassl and LibreSSL
+not working on Windows with native SChannel support, due to wrong cipher
+mapping: Latter one requires push of CONC-241 fixes.
+Please note that OpenSSL 0.9.8 and OpenSSL 1.1.0 will not work: Even if
+the build succeeds, test cases will fail with various errors, especially
+when using different tls libraries or versions for client and server.
+
+Upstream commit: f8866f8f665ac26beb31842fef48ecee5feb346e
+---
+ extra/yassl/src/handshake.cpp |  10 +++
+ include/my_crypt.h|  15 
+ include/violite.h |   9 +-
+ mysql-test/include/require_openssl_client.inc |   5 ++
+ mysql-test/mysql-test-run.pl  |   5 ++
+ mysql-test/r/openssl_1.result |   2 +-
+ mysql-test/r/openssl_6975,tlsv10.result   |  18 ++--
+ mysql-test/r/openssl_6975,tlsv12.result   |  14 ++--
+ mysql-test/t/openssl_1.test   |   4 +-
+ mysql-test/t/openssl_6975.test|  19 +++--
+ mysql-test/t/ssl_7937.test|   1 +
+ mysql-test/t/ssl_8k_key.test  |   1 +
+ mysys_ssl/my_crypt.cc | 115 ++
+ mysys_ssl/my_md5.cc   |  39 ++---
+ mysys_ssl/yassl.cc|  15 
+ sql-common/client.c   |   6 +-
+ sql/mysqld.cc |  14 +++-
+ sql/slave.cc  |  13 +++
+ vio/viosslfactories.c |  54 
+ 19 files changed, 263 insertions(+), 96 deletions(-)
+ create mode 100644 mysql-test/include/require_openssl_client.inc
+
+diff --git a/extra/yassl/src/handshake.cpp b/extra/yassl/src/handshake.cpp
+index 407e4092ccc..6e181a997bd 100644
+--- a/extra/yassl/src/handshake.cpp
 b/extra/yassl/src/handshake.cpp
+@@ -788,6 +788,16 @@ int DoProcessReply(SSL& ssl)
+ needHdr = true;
+ else {
+ buffer >> hdr;
++/*
++  According to RFC 4346 (see "7.4.1.3. Server Hello"), the Server 
Hello
++  packet needs to specify the highest supported TLS version, but 
not
++  higher than what client requests. YaSSL highest supported 
version is
++  TLSv1.1 (=3.2) - if the client requests a higher version, 
downgrade it
++  here to 3.2.
++  See also Appendix E of RFC 5246 (TLS 1.2)
++*/
++if (hdr.version_.major_ == 3 && hdr.version_.minor_ > 2)
++  hdr.version_.minor_ = 2;
+ ssl.verifyState(hdr);
+ }
+ 
+diff --git a/include/my_crypt.h b/include/my_crypt.h
+index 719e349bfb9..e7dd9d80100 100644
+--- a/include/my_crypt.h
 b/include/my_crypt.h
+@@ -21,4 +21,19 @@
+ #include  /* HAVE_EncryptAes128{Ctr,Gcm} */
+ #include 
+ 
++/* OpenSSL version specific definitions */
++#if !defined(HAVE_YASSL) && defined(OPENSSL_VERSION_NUMBER)
++#if OPENSSL_VERSION_NUMBER >= 0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
++#define ERR_remove_state(X)
++#else
++#define EVP_CIPHER_CTX_reset(X) EVP_CIPHER_CTX_cleanup(X)
++#define RAND_OpenSSL() RAND_SSLeay();
++#if defined(HAVE_ERR_remove_thread_state)
++#define ERR_remove_state(X) ERR_remove_thread_state(NULL)
++#endif
++#endif
++#elif defined(HAVE_YASSL)
++#define EVP_CIPHER_CTX_reset(X) EVP_CIPHER_CTX_cleanup(X)
++#endif /* !defined(HAVE_YASSL) */
++
+ #endif /* MY_CRYPT_INCLUDED */
+diff --git a/include/violite.h b/include/violite.h
+index a7165ca91a9..23800696e5a 100644
+--- a/include/violite.h
 b/include/violite.h
+@@ -146,14 +146,15 @@ typedef my_socket YASSL_SOCKET_T;
+ #include 
+ #include 
+ 
+-#ifdef HAVE_ERR_remove_thread_state
++#if OPENSSL_VERSION_NUMBER >= 0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
++#define ERR_remove_state(X)
++#elif defined(HAVE_ERR_remove_thread_state)
+ #define ERR_remove_state(X) ERR_remove_thread_state(NULL)
+ #endif
+-
+ enum enum_ssl_init_error
+ {
+-  SSL_INITERR_NOERROR= 0, 

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

2017-05-14 Thread Antonio Rojas
Date: Sunday, May 14, 2017 @ 21:20:38
  Author: arojas
Revision: 228071

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

Added:
  xapps/repos/community-testing-i686/
  xapps/repos/community-testing-i686/PKGBUILD
(from rev 228070, xapps/trunk/PKGBUILD)
  xapps/repos/community-testing-x86_64/
  xapps/repos/community-testing-x86_64/PKGBUILD
(from rev 228070, xapps/trunk/PKGBUILD)

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

Copied: xapps/repos/community-testing-i686/PKGBUILD (from rev 228070, 
xapps/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-14 21:20:38 UTC (rev 228071)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alex Filgueira 
+# Contributor: Nate Simon 
+
+pkgname=xapps
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="Common library for X-Apps project"
+arch=('i686' 'x86_64')
+url='https://github.com/linuxmint/xapps'
+license=('GPL')
+depends=('libgnomekbd' 'python')
+makedepends=('gnome-common' 'gobject-introspection')
+options=(!emptydirs)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/${pkgname}/archive/${pkgver}.tar.gz;)
+sha256sums=('bb1b89b586eec67fc109140de791710c5b4ec488b01ef3ac261e288a27b4797e')
+
+build() {
+cd ${pkgname}-${pkgver}
+
+./autogen.sh --prefix=/usr \
+--localstatedir=/var \
+--libexecdir=/usr/lib/${pkgname}
+make
+}
+
+package(){
+cd ${pkgname}-${pkgver}
+make DESTDIR="$pkgdir" install
+}
+

Copied: xapps/repos/community-testing-x86_64/PKGBUILD (from rev 228070, 
xapps/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-05-14 21:20:38 UTC (rev 228071)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alex Filgueira 
+# Contributor: Nate Simon 
+
+pkgname=xapps
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="Common library for X-Apps project"
+arch=('i686' 'x86_64')
+url='https://github.com/linuxmint/xapps'
+license=('GPL')
+depends=('libgnomekbd' 'python')
+makedepends=('gnome-common' 'gobject-introspection')
+options=(!emptydirs)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/${pkgname}/archive/${pkgver}.tar.gz;)
+sha256sums=('bb1b89b586eec67fc109140de791710c5b4ec488b01ef3ac261e288a27b4797e')
+
+build() {
+cd ${pkgname}-${pkgver}
+
+./autogen.sh --prefix=/usr \
+--localstatedir=/var \
+--libexecdir=/usr/lib/${pkgname}
+make
+}
+
+package(){
+cd ${pkgname}-${pkgver}
+make DESTDIR="$pkgdir" install
+}
+


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

2017-05-14 Thread Antonio Rojas
Date: Sunday, May 14, 2017 @ 21:20:06
  Author: arojas
Revision: 228070

Update to 1.0.3

Modified:
  xapps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 21:07:52 UTC (rev 228069)
+++ PKGBUILD2017-05-14 21:20:06 UTC (rev 228070)
@@ -3,8 +3,8 @@
 # Contributor: Nate Simon 
 
 pkgname=xapps
-pkgver=1.0.2
-pkgrel=2
+pkgver=1.0.3
+pkgrel=1
 pkgdesc="Common library for X-Apps project"
 arch=('i686' 'x86_64')
 url='https://github.com/linuxmint/xapps'
@@ -13,7 +13,7 @@
 makedepends=('gnome-common' 'gobject-introspection')
 options=(!emptydirs)
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('1443e9f319763f8b90749ea9669880005f315af060f7bbaa2b4241b4c4ca49a4')
+sha256sums=('bb1b89b586eec67fc109140de791710c5b4ec488b01ef3ac261e288a27b4797e')
 
 build() {
 cd ${pkgname}-${pkgver}


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

2017-05-14 Thread Christian Hesse
Date: Sunday, May 14, 2017 @ 21:07:52
  Author: eworm
Revision: 228069

update bundled gdal

Modified:
  mysql-workbench/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 20:15:22 UTC (rev 228068)
+++ PKGBUILD2017-05-14 21:07:52 UTC (rev 228069)
@@ -10,7 +10,7 @@
 pkgrel=3
 _mysql_version=5.7.18
 _connector_version=1.1.8
-_gdal_version=2.1.3
+_gdal_version=2.2.0
 _boost_version=1.59.0
 pkgdesc='A cross-platform, visual database design tool developed by MySQL'
 arch=('i686' 'x86_64')
@@ -41,7 +41,7 @@
 'SKIP'
 '85ff10bd056128562f92b440eb27766cfcd558b474bfddc1153f7dd8feb5f963'
 'SKIP'
-'b489793627e6cb8d2ff8d7737b61daf58382fe189fae4c581ddfd48c04b49005'
+'0d4c326862e0f118e17418c042c2bcd037b25abd3fb198e1fc5d40b11a9fc8ea'
 '727a932322d94287b62abb1bd2d41723eec4356a7728909e38adb65ca25241ca'
 '9d3e866b610460664522520f73b81777b5626fb0a282a5952b9800b751550bf7'
 'b189e15c6b6f5a707357d9a9297f39ee3a33264fd28b44d5de6f537f851f82cf'


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 20:15:22
  Author: felixonmars
Revision: 228068

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

Added:
  git-annex/repos/community-staging-i686/
  git-annex/repos/community-staging-i686/PKGBUILD
(from rev 228067, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 228067, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 228067, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 20:15:22 UTC (rev 228068)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170510
+pkgrel=4
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-crypto-api" "haskell-cryptonite" "haskell-data-default" 
"haskell-dav"
+ "haskell-dbus" "haskell-disk-free-space" "haskell-dlist" 
"haskell-dns"
+ "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions" 
"haskell-fdo-notify"
+ "haskell-feed" "haskell-hinotify" "haskell-hslogger" 
"haskell-http-client"
+ "haskell-http-conduit" "haskell-http-types" "haskell-ifelse" 
"haskell-magic"
+ "haskell-missingh" "haskell-monad-control" "haskell-monad-logger" 
"haskell-mountpoints"
+ "haskell-mtl" "haskell-network" "haskell-network-info" 
"haskell-network-multicast"
+ "haskell-network-uri" "haskell-old-locale" 
"haskell-optparse-applicative"
+ "haskell-path-pieces" "haskell-persistent" 
"haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-quickcheck" 
"haskell-random"
+ "haskell-regex-tdfa" "haskell-resourcet" "haskell-safesemaphore" 
"haskell-sandi"
+ "haskell-securemem" "haskell-shakespeare" "haskell-socks" 
"haskell-stm"
+ "haskell-stm-chans" "haskell-tasty" "haskell-tasty-hunit" 
"haskell-tasty-quickcheck"
+ "haskell-tasty-rerun" "haskell-text" "haskell-torrent" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-uuid" "haskell-wai"
+ "haskell-wai-extra" "haskell-warp" "haskell-warp-tls" 
"haskell-yesod"
+ "haskell-yesod-core" "haskell-yesod-default" "haskell-yesod-form"
+ "haskell-yesod-static")
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+  
+  runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make DESTDIR="$pkgdir" install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 228067, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 20:15:22 UTC (rev 228068)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170510
+pkgrel=4
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-crypto-api" "haskell-cryptonite" 

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 20:14:53
  Author: felixonmars
Revision: 228067

upgpkg: git-annex 6.20170510-4

rebuild with yaml,0.8.22.1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 20:13:59 UTC (rev 228066)
+++ PKGBUILD2017-05-14 20:14:53 UTC (rev 228067)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20170510
-pkgrel=3
+pkgrel=4
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 20:13:59
  Author: foutrelis
Revision: 228066

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

Added:
  wings3d/repos/community-i686/PKGBUILD
(from rev 228065, wings3d/trunk/PKGBUILD)
  wings3d/repos/community-i686/wings3d.sh
(from rev 228065, wings3d/trunk/wings3d.sh)
  wings3d/repos/community-x86_64/PKGBUILD
(from rev 228065, wings3d/trunk/PKGBUILD)
  wings3d/repos/community-x86_64/wings3d.sh
(from rev 228065, wings3d/trunk/wings3d.sh)
Deleted:
  wings3d/repos/community-i686/PKGBUILD
  wings3d/repos/community-i686/wings3d.sh
  wings3d/repos/community-x86_64/PKGBUILD
  wings3d/repos/community-x86_64/wings3d.sh

-+
 /PKGBUILD   |  110 ++
 /wings3d.sh |4 +
 community-i686/PKGBUILD |   53 
 community-i686/wings3d.sh   |2 
 community-x86_64/PKGBUILD   |   53 
 community-x86_64/wings3d.sh |2 
 6 files changed, 114 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-14 20:13:48 UTC (rev 228065)
+++ community-i686/PKGBUILD 2017-05-14 20:13:59 UTC (rev 228066)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: kappa 
-
-pkgname=wings3d
-pkgver=2.1.5
-pkgrel=1
-pkgdesc='3D modeling program'
-arch=('x86_64' 'i686')
-url='http://www.wings3d.com/'
-license=('GPL')
-depends=('erlang-sdl' 'erlang-cl' 'bash' 'desktop-file-utils' 'erlang')
-makedepends=('gendesk' 'imagemagick')
-optdepends=('povray: rendering support via POV-Ray')
-source=("http://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2;
-"$pkgname.sh")
-sha256sums=('f0f03cfe9f0ee0ee6c734a2b7e50410d5f21238441cb1f34422b0ecde25b582c'
-'9f91da23a91bd5808a4f3ce38472e262706f648804628648703ad3695df22e27')
-
-prepare() {
-  gendesk -f -n \
---pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'Wings3D' \
---genericname '3D Modeler' --categories 'Graphics;3DGraphics'
-
-  convert "${pkgname%3d}-$pkgver/win32/wings.ico" "$pkgname.png"
-
-  # Path fix for building wpc_lwo
-  ln -s "$srcdir/${pkgname%3d}-$pkgver" \
-"${pkgname%3d}-$pkgver/plugins_src/import_export/wings"
-  ln -s "$srcdir/${pkgname%3d}-$pkgver" "$srcdir/wings"
-}
-
-build() {
-  export ESDL_PATH="$(echo /usr/lib/erlang/lib/esdl-*)"
-  export ERL_LIBS="$srcdir"
-  make -C "${pkgname%3d}-$pkgver" all lang
-}
-
-package() {
-  install -Dm644 "$pkgname-3.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
-  install -Dm644 "$pkgname.desktop" \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
-  install -d "$pkgdir/usr/lib/$pkgname"
-
-  cd "${pkgname%3d}-$pkgver"
-  for subdir in e3d ebin icons plugins psd shaders src textures tools; do
-cp -r "$srcdir/${pkgname%3d}-$pkgver/$subdir/" "$pkgdir/usr/lib/$pkgname"
-  done
-}
-
-# getver: wings3d.com/?page_id=84
-# vim:set ts=2 sw=2 et:

Copied: wings3d/repos/community-i686/PKGBUILD (from rev 228065, 
wings3d/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 20:13:59 UTC (rev 228066)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: kappa 
+
+pkgname=wings3d
+pkgver=2.1.5
+pkgrel=2
+pkgdesc='3D modeling program'
+arch=('x86_64' 'i686')
+url='http://www.wings3d.com/'
+license=('GPL')
+depends=('erlang-sdl' 'erlang-cl' 'bash' 'desktop-file-utils' 'erlang')
+makedepends=('gendesk' 'imagemagick')
+optdepends=('povray: rendering support via POV-Ray')
+source=("http://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2;
+"$pkgname.sh")
+sha256sums=('f0f03cfe9f0ee0ee6c734a2b7e50410d5f21238441cb1f34422b0ecde25b582c'
+'9f91da23a91bd5808a4f3ce38472e262706f648804628648703ad3695df22e27')
+
+prepare() {
+  gendesk -f -n \
+--pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'Wings3D' \
+--genericname '3D Modeler' --categories 'Graphics;3DGraphics'
+
+  convert "${pkgname%3d}-$pkgver/win32/wings.ico" "$pkgname.png"
+
+  # Path fix for building wpc_lwo
+  ln -s "$srcdir/${pkgname%3d}-$pkgver" \
+"${pkgname%3d}-$pkgver/plugins_src/import_export/wings"
+  ln -s "$srcdir/${pkgname%3d}-$pkgver" "$srcdir/wings"
+
+  sed -i 's/-Werror//' 
${pkgname%3d}-$pkgver/{src,e3d,plugins_src/import_export}/Makefile
+}
+
+build() {
+  export ESDL_PATH="$(echo /usr/lib/erlang/lib/esdl-*)"
+  export ERL_LIBS="$srcdir"
+  make -C "${pkgname%3d}-$pkgver" all lang
+}
+
+package() {
+  install -Dm644 "$pkgname-3.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 "$pkgname.desktop" \
+

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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 20:13:48
  Author: foutrelis
Revision: 228065

upgpkg: wings3d 2.1.5-2

Erlang 20 rebuild.

Modified:
  wings3d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:58:48 UTC (rev 228064)
+++ PKGBUILD2017-05-14 20:13:48 UTC (rev 228065)
@@ -4,7 +4,7 @@
 
 pkgname=wings3d
 pkgver=2.1.5
-pkgrel=1
+pkgrel=2
 pkgdesc='3D modeling program'
 arch=('x86_64' 'i686')
 url='http://www.wings3d.com/'
@@ -28,6 +28,8 @@
   ln -s "$srcdir/${pkgname%3d}-$pkgver" \
 "${pkgname%3d}-$pkgver/plugins_src/import_export/wings"
   ln -s "$srcdir/${pkgname%3d}-$pkgver" "$srcdir/wings"
+
+  sed -i 's/-Werror//' 
${pkgname%3d}-$pkgver/{src,e3d,plugins_src/import_export}/Makefile
 }
 
 build() {


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 19:58:48
  Author: felixonmars
Revision: 228064

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

Added:
  haskell-yesod/repos/community-staging-i686/
  haskell-yesod/repos/community-staging-i686/PKGBUILD
(from rev 228063, haskell-yesod/trunk/PKGBUILD)
  haskell-yesod/repos/community-staging-x86_64/
  haskell-yesod/repos/community-staging-x86_64/PKGBUILD
(from rev 228063, haskell-yesod/trunk/PKGBUILD)

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

Copied: haskell-yesod/repos/community-staging-i686/PKGBUILD (from rev 228063, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 19:58:48 UTC (rev 228064)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=40
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-conduit-extra" "haskell-data-default-class" 
"haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-resourcet" 
"haskell-semigroups"
+ "haskell-shakespeare" "haskell-streaming-commons" "haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-wai-logger"
+ "haskell-warp" "haskell-yaml" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('267c8780b27cc0ae8199f80b3063683fb2cd62eeb9696c4b155a298fb035e6e9')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 228063, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 19:58:48 UTC (rev 228064)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=40
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-conduit-extra" "haskell-data-default-class" 
"haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-resourcet" 
"haskell-semigroups"
+ "haskell-shakespeare" "haskell-streaming-commons" "haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-wai-logger"
+ "haskell-warp" "haskell-yaml" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('267c8780b27cc0ae8199f80b3063683fb2cd62eeb9696c4b155a298fb035e6e9')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 19:58:11
  Author: felixonmars
Revision: 228063

upgpkg: haskell-yesod 1.4.5-40

rebuild with yaml,0.8.22.1

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:54:36 UTC (rev 228062)
+++ PKGBUILD2017-05-14 19:58:11 UTC (rev 228063)
@@ -5,7 +5,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.4.5
-pkgrel=39
+pkgrel=40
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 19:54:36
  Author: felixonmars
Revision: 228062

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

Added:
  stylish-haskell/repos/community-staging-i686/
  stylish-haskell/repos/community-staging-i686/PKGBUILD
(from rev 228061, stylish-haskell/trunk/PKGBUILD)
  stylish-haskell/repos/community-staging-x86_64/
  stylish-haskell/repos/community-staging-x86_64/PKGBUILD
(from rev 228061, stylish-haskell/trunk/PKGBUILD)

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

Copied: stylish-haskell/repos/community-staging-i686/PKGBUILD (from rev 228061, 
stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 19:54:36 UTC (rev 228062)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.7.1.0
+pkgrel=23
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-src-exts" "haskell-mtl"
+ "haskell-optparse-applicative" "haskell-strict" "haskell-syb" 
"haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('570a643ae6798995a43b0b357005e71c1529ed43ebafa2748fc97a236e0c01bc')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: stylish-haskell/repos/community-staging-x86_64/PKGBUILD (from rev 
228061, stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 19:54:36 UTC (rev 228062)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.7.1.0
+pkgrel=23
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-src-exts" "haskell-mtl"
+ "haskell-optparse-applicative" "haskell-strict" "haskell-syb" 
"haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('570a643ae6798995a43b0b357005e71c1529ed43ebafa2748fc97a236e0c01bc')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 19:53:59
  Author: felixonmars
Revision: 228061

upgpkg: stylish-haskell 0.7.1.0-23

rebuild with yaml,0.8.22.1

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:50:01 UTC (rev 228060)
+++ PKGBUILD2017-05-14 19:53:59 UTC (rev 228061)
@@ -4,7 +4,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.7.1.0
-pkgrel=22
+pkgrel=23
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell;
 license=("custom:BSD3")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 19:50:01
  Author: felixonmars
Revision: 228060

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

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

+
 community-staging-i686/PKGBUILD|   87 +++
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   87 +++
 community-staging-x86_64/stack.install |4 +
 4 files changed, 182 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 228059, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 19:50:01 UTC (rev 228060)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.4.0
+pkgrel=47
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base64-bytestring"
+ "haskell-binary-tagged" "haskell-blaze-builder" "haskell-clock" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptonite" 
"haskell-cryptonite-conduit"
+ "haskell-either" "haskell-errors" "haskell-exceptions" 
"haskell-extra"
+ "haskell-fast-logger" "haskell-file-embed" "haskell-filelock" 
"haskell-fsnotify"
+ "haskell-generic-deriving" "haskell-gitrev" 
"haskell-hackage-security"
+ "haskell-hashable" "haskell-hastache" "haskell-hit" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-conduit" 
"haskell-http-types" "haskell-hpack"
+ "haskell-lifted-async" "haskell-lifted-base" "haskell-memory" 
"haskell-microlens"
+ "haskell-microlens-mtl" "haskell-monad-control" 
"haskell-monad-logger"
+ "haskell-monad-unlift" "haskell-mtl" "haskell-network-uri" 
"haskell-open-browser"
+ "haskell-optparse-applicative" "haskell-optparse-simple" 
"haskell-path"
+ "haskell-path-io" "haskell-persistent" "haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-pid1" 
"haskell-project-template"
+ "haskell-regex-applicative-text" "haskell-resourcet" 
"haskell-retry" "haskell-safe"
+ "haskell-safe-exceptions" "haskell-semigroups" "haskell-split" 
"haskell-stm"
+ "haskell-store" "haskell-streaming-commons" "haskell-tar" 
"haskell-temporary"
+ "haskell-text" "haskell-text-binary" "haskell-text-metrics" 
"haskell-tls"
+ "haskell-transformers-base" "haskell-unicode-transforms" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-vector-binary-instances"
+ "haskell-yaml" "haskell-zip-archive" "haskell-zlib")
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;
+
"store-0.4.patch::https://github.com/commercialhaskell/stack/commit/d3637126b9045b266d2e53387e183915cb4a912d.patch;)
+sha256sums=('595d311ad117e41ad908b7065743917542b40f343d1334673e98171ee74d36e6'
+'63d0f620dcbde3a7f236aadab32f5fa3e2b93741dcf462392624bb30b6b49c16')
+
+prepare() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+patch -p1 -i ../store-0.4.patch
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r 

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 19:49:30
  Author: felixonmars
Revision: 228059

upgpkg: stack 1.4.0-47

rebuild with yaml,0.8.22.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:47:32 UTC (rev 228058)
+++ PKGBUILD2017-05-14 19:49:30 UTC (rev 228059)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.4.0
-pkgrel=46
+pkgrel=47
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:47:16
  Author: foutrelis
Revision: 228056

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

Added:
  couchdb/repos/community-i686/PKGBUILD
(from rev 228055, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-i686/couchdb.install
(from rev 228055, couchdb/trunk/couchdb.install)
  couchdb/repos/community-i686/couchdb.service
(from rev 228055, couchdb/trunk/couchdb.service)
  couchdb/repos/community-i686/couchdb.tmpfiles
(from rev 228055, couchdb/trunk/couchdb.tmpfiles)
  couchdb/repos/community-i686/datadirs.ini
(from rev 228055, couchdb/trunk/datadirs.ini)
  couchdb/repos/community-x86_64/PKGBUILD
(from rev 228055, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-x86_64/couchdb.install
(from rev 228055, couchdb/trunk/couchdb.install)
  couchdb/repos/community-x86_64/couchdb.service
(from rev 228055, couchdb/trunk/couchdb.service)
  couchdb/repos/community-x86_64/couchdb.tmpfiles
(from rev 228055, couchdb/trunk/couchdb.tmpfiles)
  couchdb/repos/community-x86_64/datadirs.ini
(from rev 228055, couchdb/trunk/datadirs.ini)
Deleted:
  couchdb/repos/community-i686/PKGBUILD
  couchdb/repos/community-i686/couchdb.install
  couchdb/repos/community-i686/couchdb.service
  couchdb/repos/community-i686/couchdb.tmpfiles
  couchdb/repos/community-i686/datadirs.ini
  couchdb/repos/community-x86_64/PKGBUILD
  couchdb/repos/community-x86_64/couchdb.install
  couchdb/repos/community-x86_64/couchdb.service
  couchdb/repos/community-x86_64/couchdb.tmpfiles
  couchdb/repos/community-x86_64/datadirs.ini

---+
 /PKGBUILD |  118 
 /couchdb.install  |   32 +
 /couchdb.service  |   30 +
 /couchdb.tmpfiles |2 
 /datadirs.ini |6 +
 community-i686/PKGBUILD   |   58 -
 community-i686/couchdb.install|   16 
 community-i686/couchdb.service|   15 
 community-i686/couchdb.tmpfiles   |1 
 community-i686/datadirs.ini   |3 
 community-x86_64/PKGBUILD |   58 -
 community-x86_64/couchdb.install  |   16 
 community-x86_64/couchdb.service  |   15 
 community-x86_64/couchdb.tmpfiles |1 
 community-x86_64/datadirs.ini |3 
 15 files changed, 188 insertions(+), 186 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-14 19:46:57 UTC (rev 228055)
+++ community-i686/PKGBUILD 2017-05-14 19:47:16 UTC (rev 228056)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
-# Contributor: Michael Fellinger 
-
-pkgname=couchdb
-pkgver=2.0.0
-pkgrel=13
-pkgdesc="A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
-arch=('i686' 'x86_64')
-url="http://couchdb.apache.org;
-license=('APACHE')
-depends=('icu' 'erlang-nox' 'js185' 'openssl' 'curl' 'util-linux')
-makedepends=('autoconf-archive' 'git')
-install=couchdb.install
-backup=('etc/couchdb/local.ini'
-   'etc/couchdb/vm.args')
-validpgpkeys=('E0AF0A194D55C84E4A19A801CDB0C0F904F4EE9B'
- 'D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4')
-source=("http://www.eu.apache.org/dist/couchdb/source/$pkgver/apache-couchdb-$pkgver.tar.gz"{,.asc}
-   "couchdb.service"
-   "couchdb.tmpfiles"
-   "datadirs.ini")
-md5sums=('402fc02df28a5297a56cedebbae42524'
- 'SKIP'
- '38cea6d9b533a22dadc22538a921c282'
- '1e254ebe32eeb061be64193bafa35dbf'
- 'cd649a705805e6193ae72aea33a2e4bd')
-
-prepare() {
-  cd "$srcdir/apache-couchdb-$pkgver"
-  sed -i 's|$ROOTDIR/etc/vm.args|/etc/couchdb/vm.args|' rel/overlay/bin/couchdb
-}
-
-build() {
-  cd "$srcdir/apache-couchdb-$pkgver"
-  ./configure
-  make release
-}
-
-package() {
-  cd "$srcdir/apache-couchdb-$pkgver"
-  install -dm0755 "$pkgdir"/usr/lib/
-  install -dm0755 "$pkgdir"/etc/couchdb/
-  install -dm0755 "$pkgdir"/var/lib/couchdb/
-
-  cp -r rel/couchdb "$pkgdir"/usr/lib/couchdb
-  mv "$pkgdir"/usr/lib/couchdb/etc/local.ini "$pkgdir"/etc/couchdb/local.ini
-  mv "$pkgdir"/usr/lib/couchdb/etc/vm.args "$pkgdir"/etc/couchdb/vm.args
-
-  # use system erts
-#  rm -rf "$pkgdir"/usr/lib/couchdb/erts-*
-#  _erts=$(cd /usr/lib/erlang/ && ls -1d erts-*)
-#  ln -s /usr/lib/erlang/${_erts} "$pkgdir"/usr/lib/couchdb/${_erts}
-
-  install -Dm0644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
-  install -Dm0644 "$srcdir"/datadirs.ini 
"$pkgdir"/usr/lib/couchdb/etc/datadirs.ini
-}

Copied: couchdb/repos/community-i686/PKGBUILD (from rev 228055, 
couchdb/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ 

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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:47:20
  Author: foutrelis
Revision: 228057

upgpkg: ejabberd 17.04-2

Erlang 20 rebuild.

Modified:
  ejabberd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:47:16 UTC (rev 228056)
+++ PKGBUILD2017-05-14 19:47:20 UTC (rev 228057)
@@ -14,7 +14,7 @@
 
 pkgname=ejabberd
 pkgver=17.04
-pkgrel=1
+pkgrel=2
 pkgdesc="Jabber server written in Erlang"
 arch=('x86_64' 'i686')
 url="http://www.ejabberd.im/;
@@ -108,7 +108,7 @@
   done
 
   sed -i "s|git describe --tags 2>/dev/null|echo $pkgver|" configure.ac
-  sed -i 's#R15|R16|17|18#R15|R16|17|18|19#' deps/riakc/rebar.config
+  sed -i 's#R15|R16|17|18#&|19|20#' deps/riakc/rebar.config
 }
 
 build() {


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:47:32
  Author: foutrelis
Revision: 228058

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

Added:
  ejabberd/repos/community-i686/PKGBUILD
(from rev 228057, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-i686/ejabberd.logrotate
(from rev 228057, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-i686/ejabberd.service
(from rev 228057, ejabberd/trunk/ejabberd.service)
  ejabberd/repos/community-i686/sysuser.conf
(from rev 228057, ejabberd/trunk/sysuser.conf)
  ejabberd/repos/community-x86_64/PKGBUILD
(from rev 228057, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-x86_64/ejabberd.logrotate
(from rev 228057, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-x86_64/ejabberd.service
(from rev 228057, ejabberd/trunk/ejabberd.service)
  ejabberd/repos/community-x86_64/sysuser.conf
(from rev 228057, ejabberd/trunk/sysuser.conf)
Deleted:
  ejabberd/repos/community-i686/PKGBUILD
  ejabberd/repos/community-i686/ejabberd.logrotate
  ejabberd/repos/community-i686/ejabberd.service
  ejabberd/repos/community-i686/sysuser.conf
  ejabberd/repos/community-x86_64/PKGBUILD
  ejabberd/repos/community-x86_64/ejabberd.logrotate
  ejabberd/repos/community-x86_64/ejabberd.service
  ejabberd/repos/community-x86_64/sysuser.conf

-+
 /PKGBUILD   |  306 ++
 /ejabberd.logrotate |   24 ++
 /ejabberd.service   |   30 +++
 /sysuser.conf   |4 
 community-i686/PKGBUILD |  153 -
 community-i686/ejabberd.logrotate   |   12 -
 community-i686/ejabberd.service |   15 -
 community-i686/sysuser.conf |2 
 community-x86_64/PKGBUILD   |  153 -
 community-x86_64/ejabberd.logrotate |   12 -
 community-x86_64/ejabberd.service   |   15 -
 community-x86_64/sysuser.conf   |2 
 12 files changed, 364 insertions(+), 364 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-14 19:47:20 UTC (rev 228057)
+++ community-i686/PKGBUILD 2017-05-14 19:47:32 UTC (rev 228058)
@@ -1,153 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jeff 'codemac' Mickey 
-# Contributor: Alexander Rødseth 
-
-#
-# cd deps ; ls -1 | while read g; do (test -d $g && cd $g && sh ../t.sh); done 
>qwe
-#
-# U=`grep 'url =' .git/config | cut -f2 -d= | tr -d ' '`
-# C=`git rev-parse HEAD`
-# N=`basename $(pwd)`
-# echo -e "\t\"$N::$U#commit=$C\""
-#
-
-pkgname=ejabberd
-pkgver=17.04
-pkgrel=1
-pkgdesc="Jabber server written in Erlang"
-arch=('x86_64' 'i686')
-url="http://www.ejabberd.im/;
-license=("GPL")
-depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2' 
'erlang-unixodbc'
-'libyaml' 'sqlite')
-makedepends=('git' 'rebar' 'hevea' 'texlive-bin' 'texlive-core' 
'texlive-latexextra')
-backup=('etc/ejabberd/ejabberd.yml'
-   'etc/ejabberd/ejabberdctl.cfg'
-   'etc/logrotate.d/ejabberd')
-options=(emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;
-   
"cache_tab::git://github.com/processone/cache_tab#commit=89659f4e3c8c67fca351f709e1ea7b0f6327948d"
-   
"elixir::git://github.com/elixir-lang/elixir#commit=3dbfb92860fb24f83c92e1f1b67f48554fb211d6"
-   
"epam::git://github.com/processone/epam#commit=488759ff2bbfdbfb9e2a253857c049bc8a357da0"
-   
"eredis::git://github.com/wooga/eredis#commit=cbc013f516e464706493c01662e5e9dd82d1db01"
-   
"esip::git://github.com/processone/esip#commit=c4f971f93f6141f716bf0e8f4cc2e2acdba16aaa"
-   
"ezlib::git://github.com/processone/ezlib#commit=e42ce61e60dd312ac60ef299d7f6f4522af577e5"
-   
"fast_tls::git://github.com/processone/fast_tls#commit=2ae628f6e0d1acb09e683b1a5978909ade8f3038"
-   
"fast_xml::git://github.com/processone/fast_xml#commit=dca6aaf422e3d82cc616d4f22187ce2bdb5af3c9"
-   
"fast_yaml::git://github.com/processone/fast_yaml#commit=d5cc9701cf0bd15de129453c82ef433bd752a27c"
-   
"goldrush::git://github.com/DeadZen/goldrush.git#commit=212299233c7e7eb63a97be2777e1c05ebaa58dbe"
-   
"hamcrest::git://github.com/basho/hamcrest-erlang.git#commit=98bc7aa19ea081478c816824aa05fc5a48acae66"
-   
"iconv::git://github.com/processone/iconv#commit=4886399bd973c8544821f5b70482ef54168155b8"
-   
"jiffy::git://github.com/davisp/jiffy#commit=1febce3ca86c5ca5d5a3618ed3d5f125bb99e4c5"
-   
"lager::git://github.com/basho/lager#commit=8187757388c9adc915379caaab36a2f2ca26e944"
-   
"luerl::git://github.com/rvirding/luerl#commit=f7b2cc0ab6fa4245ebeda0169fc994aff0628bf9"
-   
"meck::git://github.com/eproxus/meck#commit=70d6a33ce7407029dc59e22a5b3c1c61c1348b23"
-   

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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:46:57
  Author: foutrelis
Revision: 228055

upgpkg: couchdb 2.0.0-14

Erlang 20 rebuild.

Modified:
  couchdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:31:43 UTC (rev 228054)
+++ PKGBUILD2017-05-14 19:46:57 UTC (rev 228055)
@@ -5,7 +5,7 @@
 
 pkgname=couchdb
 pkgver=2.0.0
-pkgrel=13
+pkgrel=14
 pkgdesc="A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
 arch=('i686' 'x86_64')
 url="http://couchdb.apache.org;
@@ -30,6 +30,7 @@
 prepare() {
   cd "$srcdir/apache-couchdb-$pkgver"
   sed -i 's|$ROOTDIR/etc/vm.args|/etc/couchdb/vm.args|' rel/overlay/bin/couchdb
+  sed -i 's/17|18|19/&|20/' rebar.config.script src/snappy/rebar.config
 }
 
 build() {


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:31:27
  Author: foutrelis
Revision: 228053

upgpkg: yaws 2.0.4-3

Erlang 20 rebuild.

Modified:
  yaws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:31:24 UTC (rev 228052)
+++ PKGBUILD2017-05-14 19:31:27 UTC (rev 228053)
@@ -5,7 +5,7 @@
 
 pkgname=yaws
 pkgver=2.0.4
-pkgrel=2
+pkgrel=3
 pkgdesc='Web server/framework written in Erlang'
 arch=('x86_64' 'i686')
 url='http://yaws.hyber.org/'


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:31:24
  Author: foutrelis
Revision: 228052

archrelease: copy trunk to community-any

Added:
  rebar/repos/community-any/PKGBUILD
(from rev 228051, rebar/trunk/PKGBUILD)
Deleted:
  rebar/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-14 19:31:06 UTC (rev 228051)
+++ PKGBUILD2017-05-14 19:31:24 UTC (rev 228052)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: AeroNotix 
-# Contributor: AeroNotix 
-
-pkgname=rebar
-epoch=1
-pkgver=2.6.1
-pkgrel=2
-pkgdesc="A sophisticated build-tool for Erlang projects that follows OTP 
principles."
-arch=('any')
-url="https://github.com/rebar/rebar;
-license=('APACHE')
-depends=('erlang-nox')
-makedepends=('git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/rebar/rebar/archive/$pkgver.tar.gz;)
-md5sums=('1ae17dd671c0434012c7a688d4cf60e4')
-
-build() {
-  cd "$srcdir/rebar-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/rebar-$pkgver"
-  install -Dm0755 "rebar" "$pkgdir/usr/bin/rebar"
-  install -Dm0644 "priv/shell-completion/bash/rebar" 
"$pkgdir/usr/share/bash-completion/completions/rebar"
-  install -Dm0644 "priv/shell-completion/zsh/_rebar" 
"$pkgdir/usr/share/zsh/functions/Completion/Zsh/_rebar"
-  install -Dm0644 "priv/shell-completion/fish/rebar.fish" 
"$pkgdir/usr/share/fish/completions/rebar.fish"
-}

Copied: rebar/repos/community-any/PKGBUILD (from rev 228051, 
rebar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-14 19:31:24 UTC (rev 228052)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: AeroNotix 
+# Contributor: AeroNotix 
+
+pkgname=rebar
+epoch=1
+pkgver=2.6.1
+pkgrel=3
+pkgdesc="A sophisticated build-tool for Erlang projects that follows OTP 
principles."
+arch=('any')
+url="https://github.com/rebar/rebar;
+license=('APACHE')
+depends=('erlang-nox')
+makedepends=('git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/rebar/rebar/archive/$pkgver.tar.gz;)
+md5sums=('1ae17dd671c0434012c7a688d4cf60e4')
+
+build() {
+  cd "$srcdir/rebar-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/rebar-$pkgver"
+  install -Dm0755 "rebar" "$pkgdir/usr/bin/rebar"
+  install -Dm0644 "priv/shell-completion/bash/rebar" 
"$pkgdir/usr/share/bash-completion/completions/rebar"
+  install -Dm0644 "priv/shell-completion/zsh/_rebar" 
"$pkgdir/usr/share/zsh/functions/Completion/Zsh/_rebar"
+  install -Dm0644 "priv/shell-completion/fish/rebar.fish" 
"$pkgdir/usr/share/fish/completions/rebar.fish"
+}


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:31:43
  Author: foutrelis
Revision: 228054

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

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

---+
 /PKGBUILD |  120 
 /yaws.install |   26 
 /yaws.service |   26 
 community-i686/PKGBUILD   |   60 
 community-i686/yaws.install   |   13 
 community-i686/yaws.service   |   13 
 community-x86_64/PKGBUILD |   60 
 community-x86_64/yaws.install |   13 
 community-x86_64/yaws.service |   13 
 9 files changed, 172 insertions(+), 172 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-14 19:31:27 UTC (rev 228053)
+++ community-i686/PKGBUILD 2017-05-14 19:31:43 UTC (rev 228054)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Maintainer: Vesa Kaihlavirta 
-# Contributor: Patrick Smits 
-
-pkgname=yaws
-pkgver=2.0.4
-pkgrel=2
-pkgdesc='Web server/framework written in Erlang'
-arch=('x86_64' 'i686')
-url='http://yaws.hyber.org/'
-license=('BSD')
-depends=('pam' 'erlang-nox')
-backup=('etc/yaws/yaws.conf')
-options=('!emptydirs')
-install="$pkgname.install"
-source=("http://yaws.hyber.org/download/$pkgname-$pkgver.tar.gz; # no https
-"$pkgname.service")
-sha256sums=('da6677c315aadc7c64c970ef74eaa29f61eba886c7d30c61806651ac38c1e6c5'
-'3628a0f6fdacc91c216cb782e3f3da638958cca6eee34a0a1e692482659109db')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # use python2
-  for f in cgi.yaws cgi-bin/foo.py; do
-sed -i 's:n/python:n/python2:' "www/$f"
-  done
-
-  # don't treat warnings as errors just now
-  sed -i 's/-Werror//g' include.mk
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export wwwdir=/srv/http/yaws
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -d "$pkgdir/usr/lib/erlang/lib"
-  ln -s /usr/lib/yaws "$pkgdir/usr/lib/erlang/lib/$pkgname-$pkgver"
-  install -Dm644 "$srcdir/$pkgname.service" \
-"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # path fixes
-  cp -ru examples/include "$pkgdir/usr/lib/yaws-$pkgver/examples/"
-  mv "$pkgdir/srv/http/yaws/"* "$pkgdir/srv/http/www" || true
-  rmdir "$pkgdir/srv/http/yaws" || true
-  mv "$pkgdir/srv/http/www" "$pkgdir/srv/http/yaws" || true
-}
-
-# vim:set ts=2 sw=2 et:

Copied: yaws/repos/community-i686/PKGBUILD (from rev 228053, 
yaws/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 19:31:43 UTC (rev 228054)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Maintainer: Vesa Kaihlavirta 
+# Contributor: Patrick Smits 
+
+pkgname=yaws
+pkgver=2.0.4
+pkgrel=3
+pkgdesc='Web server/framework written in Erlang'
+arch=('x86_64' 'i686')
+url='http://yaws.hyber.org/'
+license=('BSD')
+depends=('pam' 'erlang-nox')
+backup=('etc/yaws/yaws.conf')
+options=('!emptydirs')
+install="$pkgname.install"
+source=("http://yaws.hyber.org/download/$pkgname-$pkgver.tar.gz; # no https
+"$pkgname.service")
+sha256sums=('da6677c315aadc7c64c970ef74eaa29f61eba886c7d30c61806651ac38c1e6c5'
+'3628a0f6fdacc91c216cb782e3f3da638958cca6eee34a0a1e692482659109db')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # use python2
+  for f in cgi.yaws cgi-bin/foo.py; do
+sed -i 's:n/python:n/python2:' "www/$f"
+  done
+
+  # don't treat warnings as errors just now
+  sed -i 's/-Werror//g' include.mk
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  export wwwdir=/srv/http/yaws
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -d 

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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:30:50
  Author: foutrelis
Revision: 228049

upgpkg: rabbitmq 3.6.9-2

Erlang 20 rebuild.

Modified:
  rabbitmq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:30:47 UTC (rev 228048)
+++ PKGBUILD2017-05-14 19:30:50 UTC (rev 228049)
@@ -9,7 +9,7 @@
 
 pkgname=rabbitmq
 pkgver=3.6.9
-pkgrel=1
+pkgrel=2
 pkgdesc='Highly reliable and performant enterprise messaging implementation of 
AMQP written in Erlang/OTP'
 url='https://rabbitmq.com'
 arch=('any')


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:30:47
  Author: foutrelis
Revision: 228048

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

Added:
  erlang-sdl/repos/community-i686/PKGBUILD
(from rev 228047, erlang-sdl/trunk/PKGBUILD)
  erlang-sdl/repos/community-x86_64/PKGBUILD
(from rev 228047, erlang-sdl/trunk/PKGBUILD)
Deleted:
  erlang-sdl/repos/community-i686/PKGBUILD
  erlang-sdl/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-05-14 19:30:35 UTC (rev 228047)
+++ community-i686/PKGBUILD 2017-05-14 19:30:47 UTC (rev 228048)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: kappa 
-
-pkgname=erlang-sdl
-pkgver=1.3.1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='SDL and OpenGL bindings for Erlang'
-url='http://github.com/dgud/esdl/'
-license=('custom')
-depends=('erlang' 'sdl' 'glu' 'libgl')
-makedepends=('mesa-libgl' 'rebar' 'git')
-# tag=esdl-1.3.1 fails mysteriously. Using commit instead.
-source=("esdl::git://github.com/dgud/esdl.git#commit=dbd8ce9228aa36828091df2e8706c364094a3e22")
-md5sums=('SKIP')
-
-build() {
-  cd esdl
-
-  find -type f -print0 | xargs -0 chmod 644
-  CFLAGS="$CFLAGS -Wno-deprecated-declarations" rebar compile
-}
-
-package() {
-  cd esdl
-
-  install -d "$pkgdir/usr/lib/erlang/lib/esdl-$pkgver"
-  cp -ruv c_src doc ebin include priv src \
-"$pkgdir/usr/lib/erlang/lib/esdl-$pkgver/"
-  install -Dm644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: erlang-sdl/repos/community-i686/PKGBUILD (from rev 228047, 
erlang-sdl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 19:30:47 UTC (rev 228048)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: kappa 
+
+pkgname=erlang-sdl
+pkgver=1.3.1
+pkgrel=2
+arch=('x86_64' 'i686')
+pkgdesc='SDL and OpenGL bindings for Erlang'
+url='http://github.com/dgud/esdl/'
+license=('custom')
+depends=('erlang' 'sdl' 'glu' 'libgl')
+makedepends=('mesa-libgl' 'rebar' 'git')
+# tag=esdl-1.3.1 fails mysteriously. Using commit instead.
+source=("esdl::git://github.com/dgud/esdl.git#commit=dbd8ce9228aa36828091df2e8706c364094a3e22")
+md5sums=('SKIP')
+
+build() {
+  cd esdl
+
+  find -type f -print0 | xargs -0 chmod 644
+  CFLAGS="$CFLAGS -Wno-deprecated-declarations" rebar compile
+}
+
+package() {
+  cd esdl
+
+  install -d "$pkgdir/usr/lib/erlang/lib/esdl-$pkgver"
+  cp -ruv c_src doc ebin include priv src \
+"$pkgdir/usr/lib/erlang/lib/esdl-$pkgver/"
+  install -Dm644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-14 19:30:35 UTC (rev 228047)
+++ community-x86_64/PKGBUILD   2017-05-14 19:30:47 UTC (rev 228048)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: kappa 
-
-pkgname=erlang-sdl
-pkgver=1.3.1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='SDL and OpenGL bindings for Erlang'
-url='http://github.com/dgud/esdl/'
-license=('custom')
-depends=('erlang' 'sdl' 'glu' 'libgl')
-makedepends=('mesa-libgl' 'rebar' 'git')
-# tag=esdl-1.3.1 fails mysteriously. Using commit instead.
-source=("esdl::git://github.com/dgud/esdl.git#commit=dbd8ce9228aa36828091df2e8706c364094a3e22")
-md5sums=('SKIP')
-
-build() {
-  cd esdl
-
-  find -type f -print0 | xargs -0 chmod 644
-  CFLAGS="$CFLAGS -Wno-deprecated-declarations" rebar compile
-}
-
-package() {
-  cd esdl
-
-  install -d "$pkgdir/usr/lib/erlang/lib/esdl-$pkgver"
-  cp -ruv c_src doc ebin include priv src \
-"$pkgdir/usr/lib/erlang/lib/esdl-$pkgver/"
-  install -Dm644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: erlang-sdl/repos/community-x86_64/PKGBUILD (from rev 228047, 
erlang-sdl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-14 19:30:47 UTC (rev 228048)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: kappa 
+
+pkgname=erlang-sdl
+pkgver=1.3.1
+pkgrel=2
+arch=('x86_64' 'i686')
+pkgdesc='SDL and OpenGL bindings for Erlang'
+url='http://github.com/dgud/esdl/'

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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:31:06
  Author: foutrelis
Revision: 228051

upgpkg: rebar 1:2.6.1-3

Erlang 20 rebuild.

Modified:
  rebar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:30:58 UTC (rev 228050)
+++ PKGBUILD2017-05-14 19:31:06 UTC (rev 228051)
@@ -6,7 +6,7 @@
 pkgname=rebar
 epoch=1
 pkgver=2.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A sophisticated build-tool for Erlang projects that follows OTP 
principles."
 arch=('any')
 url="https://github.com/rebar/rebar;


[arch-commits] Commit in rabbitmq/repos/community-any (8 files)

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:30:58
  Author: foutrelis
Revision: 228050

archrelease: copy trunk to community-any

Added:
  rabbitmq/repos/community-any/PKGBUILD
(from rev 228049, rabbitmq/trunk/PKGBUILD)
  rabbitmq/repos/community-any/rabbitmq-env.conf
(from rev 228049, rabbitmq/trunk/rabbitmq-env.conf)
  rabbitmq/repos/community-any/rabbitmq.install
(from rev 228049, rabbitmq/trunk/rabbitmq.install)
  rabbitmq/repos/community-any/rabbitmq.service
(from rev 228049, rabbitmq/trunk/rabbitmq.service)
Deleted:
  rabbitmq/repos/community-any/PKGBUILD
  rabbitmq/repos/community-any/rabbitmq-env.conf
  rabbitmq/repos/community-any/rabbitmq.install
  rabbitmq/repos/community-any/rabbitmq.service

---+
 PKGBUILD  |  124 ++--
 rabbitmq-env.conf |   12 ++---
 rabbitmq.install  |   30 ++--
 rabbitmq.service  |   30 ++--
 4 files changed, 98 insertions(+), 98 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-14 19:30:50 UTC (rev 228049)
+++ PKGBUILD2017-05-14 19:30:58 UTC (rev 228050)
@@ -1,62 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Marcello "mereghost" Rocha 
-# Contributor: Gianni Vialetto 
-# Contributor: Stefan J. Betz 
-# Contributor: p2k 
-# Contributor: Jonathan Liu 
-# Contributor: Christopher Grebs 
-# Contributor: mutantmonkey
-
-pkgname=rabbitmq
-pkgver=3.6.9
-pkgrel=1
-pkgdesc='Highly reliable and performant enterprise messaging implementation of 
AMQP written in Erlang/OTP'
-url='https://rabbitmq.com'
-arch=('any')
-license=('MPL')
-depends=('erlang-nox')
-optdepends=('rabbitmqadmin: CLI management tool')
-backup=('etc/rabbitmq/rabbitmq-env.conf')
-install=rabbitmq.install
-source=(https://www.rabbitmq.com/releases/${pkgname}-server/v${pkgver}/${pkgname}-server-generic-unix-${pkgver}.tar.xz{,.asc}
-rabbitmq-env.conf
-rabbitmq.service)
-sha512sums=('feb38e459c98661f2d64d67b8fc39e4d6efc4cba87177ca3b543386847ff5960e81d3471676927c200a75354c7d52c86d53eb596d0ad8bf1c0af7ca82ce28ae4'
-'SKIP'
-
'4872ff514c9f841fe4c93bc442ec4e3177d1bfa3834e8d8a26fc77a63aff1cdc14944827673a59556e26210b2b4c0091f93c8e93a334710e5bc3336a64e77140'
-
'd51b43f948febb23cdd5b0c7736f966d8433b05ccd95778e90d280d45ccfd9a714e888762f458337a784fff4b86430151adb0f81d779d6b99c9154fcd7e0e319')
-validpgpkeys=('0A9AF2115F4687BD29803A206B73A36E6026DFCA') # RabbitMQ Release 
Signing Key 
-
-prepare() {
-  cd ${pkgname}_server-${pkgver}
-  sed -r 's|^(SYS_PREFIX=).*$|\1""|' -i sbin/rabbitmq-defaults
-}
-
-package() {
-  cd ${pkgname}_server-${pkgver}
-  local libdir="${pkgdir}/usr/lib/rabbitmq/lib/rabbitmq-server-${pkgver}"
-
-  install -d "${libdir}"
-  install -d "${pkgdir}/usr/bin"
-  install -dm 750 "${pkgdir}/var/log/rabbitmq"
-  install -dm 750 "${pkgdir}/var/lib/rabbitmq"
-
-  cp -R ebin "${libdir}"
-  cp -R include "${libdir}"
-  cp -R plugins "${libdir}"
-  cp -R sbin "${libdir}"
-  cp -R share "${pkgdir}/usr"
-
-  for script in ${libdir}/sbin/*; do
-ln -s "${script#${pkgdir}}" "${pkgdir}/usr/bin/"
-  done
-
-  install -Dm 644 "${srcdir}/rabbitmq-env.conf" 
"${pkgdir}/etc/rabbitmq/rabbitmq-env.conf"
-  install -Dm 644 "${srcdir}/rabbitmq.service" 
"${pkgdir}/usr/lib/systemd/system/rabbitmq.service"
-
-  chown -R 197:197 "${pkgdir}/var/log/rabbitmq"
-  chown -R 197:197 "${pkgdir}/var/lib/rabbitmq"
-  chown -R 197:0 "${pkgdir}/etc/rabbitmq"
-}
-
-# vim: ts=2 sw=2 et:

Copied: rabbitmq/repos/community-any/PKGBUILD (from rev 228049, 
rabbitmq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-14 19:30:58 UTC (rev 228050)
@@ -0,0 +1,62 @@
+# Maintainer: Levente Polyak 
+# Contributor: Marcello "mereghost" Rocha 
+# Contributor: Gianni Vialetto 
+# Contributor: Stefan J. Betz 
+# Contributor: p2k 
+# Contributor: Jonathan Liu 
+# Contributor: Christopher Grebs 
+# Contributor: mutantmonkey
+
+pkgname=rabbitmq
+pkgver=3.6.9
+pkgrel=2
+pkgdesc='Highly reliable and performant enterprise messaging implementation of 
AMQP written in Erlang/OTP'
+url='https://rabbitmq.com'
+arch=('any')
+license=('MPL')
+depends=('erlang-nox')
+optdepends=('rabbitmqadmin: CLI management tool')
+backup=('etc/rabbitmq/rabbitmq-env.conf')
+install=rabbitmq.install
+source=(https://www.rabbitmq.com/releases/${pkgname}-server/v${pkgver}/${pkgname}-server-generic-unix-${pkgver}.tar.xz{,.asc}
+rabbitmq-env.conf
+rabbitmq.service)
+sha512sums=('feb38e459c98661f2d64d67b8fc39e4d6efc4cba87177ca3b543386847ff5960e81d3471676927c200a75354c7d52c86d53eb596d0ad8bf1c0af7ca82ce28ae4'
+'SKIP'
+

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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:30:35
  Author: foutrelis
Revision: 228047

upgpkg: erlang-sdl 1.3.1-2

Erlang 20 rebuild.

Modified:
  erlang-sdl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:30:32 UTC (rev 228046)
+++ PKGBUILD2017-05-14 19:30:35 UTC (rev 228047)
@@ -4,7 +4,7 @@
 
 pkgname=erlang-sdl
 pkgver=1.3.1
-pkgrel=1
+pkgrel=2
 arch=('x86_64' 'i686')
 pkgdesc='SDL and OpenGL bindings for Erlang'
 url='http://github.com/dgud/esdl/'


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:30:32
  Author: foutrelis
Revision: 228046

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

Added:
  erlang-cl/repos/community-i686/PKGBUILD
(from rev 228045, erlang-cl/trunk/PKGBUILD)
  erlang-cl/repos/community-x86_64/PKGBUILD
(from rev 228045, erlang-cl/trunk/PKGBUILD)
Deleted:
  erlang-cl/repos/community-i686/PKGBUILD
  erlang-cl/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-14 19:30:23 UTC (rev 228045)
+++ community-i686/PKGBUILD 2017-05-14 19:30:32 UTC (rev 228046)
@@ -1,32 +0,0 @@
-# $Id: PKGBUILD 61589 2012-01-03 23:37:49Z arodseth $
-# Maintainer: Alexander Rødseth 
-# Contributor: kappa 
-
-pkgname=erlang-cl
-pkgver=1.2.1
-pkgrel=3
-arch=('x86_64' 'i686')
-pkgdesc='OpenCL binding for Erlang'
-url='http://github.com/tonyrog/cl'
-license=('MIT')
-depends=('erlang' 'opencl-icd-loader' 'bash')
-replaces=('cl')
-makedepends=('opencl-headers' 'rebar' 'git')
-source=("$pkgname::git://github.com/tonyrog/cl.git#tag=cl-1.2.1")
-md5sums=('SKIP')
-
-build() {
-  cd "$pkgname"
-
-  rebar compile
-}
-
-package() {
-  cd "$pkgname"
-
-  mkdir -p "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
-  cp -r * "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
-  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: erlang-cl/repos/community-i686/PKGBUILD (from rev 228045, 
erlang-cl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 19:30:32 UTC (rev 228046)
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 61589 2012-01-03 23:37:49Z arodseth $
+# Maintainer: Alexander Rødseth 
+# Contributor: kappa 
+
+pkgname=erlang-cl
+pkgver=1.2.1
+pkgrel=4
+arch=('x86_64' 'i686')
+pkgdesc='OpenCL binding for Erlang'
+url='http://github.com/tonyrog/cl'
+license=('MIT')
+depends=('erlang' 'opencl-icd-loader' 'bash')
+replaces=('cl')
+makedepends=('opencl-headers' 'rebar' 'git')
+source=("$pkgname::git://github.com/tonyrog/cl.git#tag=cl-1.2.1")
+md5sums=('SKIP')
+
+build() {
+  cd "$pkgname"
+
+  rebar compile
+}
+
+package() {
+  cd "$pkgname"
+
+  mkdir -p "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
+  cp -r * "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
+  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-14 19:30:23 UTC (rev 228045)
+++ community-x86_64/PKGBUILD   2017-05-14 19:30:32 UTC (rev 228046)
@@ -1,32 +0,0 @@
-# $Id: PKGBUILD 61589 2012-01-03 23:37:49Z arodseth $
-# Maintainer: Alexander Rødseth 
-# Contributor: kappa 
-
-pkgname=erlang-cl
-pkgver=1.2.1
-pkgrel=3
-arch=('x86_64' 'i686')
-pkgdesc='OpenCL binding for Erlang'
-url='http://github.com/tonyrog/cl'
-license=('MIT')
-depends=('erlang' 'opencl-icd-loader' 'bash')
-replaces=('cl')
-makedepends=('opencl-headers' 'rebar' 'git')
-source=("$pkgname::git://github.com/tonyrog/cl.git#tag=cl-1.2.1")
-md5sums=('SKIP')
-
-build() {
-  cd "$pkgname"
-
-  rebar compile
-}
-
-package() {
-  cd "$pkgname"
-
-  mkdir -p "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
-  cp -r * "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
-  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: erlang-cl/repos/community-x86_64/PKGBUILD (from rev 228045, 
erlang-cl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-14 19:30:32 UTC (rev 228046)
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 61589 2012-01-03 23:37:49Z arodseth $
+# Maintainer: Alexander Rødseth 
+# Contributor: kappa 
+
+pkgname=erlang-cl
+pkgver=1.2.1
+pkgrel=4
+arch=('x86_64' 'i686')
+pkgdesc='OpenCL binding for Erlang'
+url='http://github.com/tonyrog/cl'
+license=('MIT')
+depends=('erlang' 'opencl-icd-loader' 'bash')
+replaces=('cl')
+makedepends=('opencl-headers' 'rebar' 'git')
+source=("$pkgname::git://github.com/tonyrog/cl.git#tag=cl-1.2.1")
+md5sums=('SKIP')
+
+build() {
+  cd "$pkgname"
+
+  rebar compile
+}
+
+package() {
+  cd "$pkgname"
+
+  mkdir -p "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
+  cp -r * "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
+  install -Dm644 COPYRIGHT 

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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:30:19
  Author: foutrelis
Revision: 228044

archrelease: copy trunk to community-any

Added:
  elixir/repos/community-any/PKGBUILD
(from rev 228043, elixir/trunk/PKGBUILD)
Deleted:
  elixir/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-14 19:30:13 UTC (rev 228043)
+++ PKGBUILD2017-05-14 19:30:19 UTC (rev 228044)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Old maintainer: Gilbert Kennen 
-
-pkgname=elixir
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
-url="http://elixir-lang.org;
-arch=('any')
-license=('Apache' 'custom:EPL')
-depends=('erlang-nox')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/tarball/v${pkgver};)
-sha256sums=('29e66607f4a02151cc299538edbf3d8d76de4e9f546adff33a42dac98c8e2e5f')
-
-build() {
-  cd "${srcdir}/"elixir-lang*
-  make
-}
-
-check() {
-  cd "${srcdir}/"elixir-lang*
-  make test_erlang
-}
-
-package() {
-  cd "${srcdir}/"elixir-lang*
-  mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}"
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: elixir/repos/community-any/PKGBUILD (from rev 228043, 
elixir/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-14 19:30:19 UTC (rev 228044)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Old maintainer: Gilbert Kennen 
+
+pkgname=elixir
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="http://elixir-lang.org;
+arch=('any')
+license=('Apache' 'custom:EPL')
+depends=('erlang-nox')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/tarball/v${pkgver};)
+sha256sums=('29e66607f4a02151cc299538edbf3d8d76de4e9f546adff33a42dac98c8e2e5f')
+
+build() {
+  cd "${srcdir}/"elixir-lang*
+  make
+}
+
+check() {
+  cd "${srcdir}/"elixir-lang*
+  make test_erlang
+}
+
+package() {
+  cd "${srcdir}/"elixir-lang*
+  mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:30:23
  Author: foutrelis
Revision: 228045

upgpkg: erlang-cl 1.2.1-4

Erlang 20 rebuild.

Modified:
  erlang-cl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:30:19 UTC (rev 228044)
+++ PKGBUILD2017-05-14 19:30:23 UTC (rev 228045)
@@ -4,7 +4,7 @@
 
 pkgname=erlang-cl
 pkgver=1.2.1
-pkgrel=3
+pkgrel=4
 arch=('x86_64' 'i686')
 pkgdesc='OpenCL binding for Erlang'
 url='http://github.com/tonyrog/cl'


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 19:30:13
  Author: foutrelis
Revision: 228043

upgpkg: elixir 1.4.2-2

Erlang 20 rebuild.

Modified:
  elixir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:09:35 UTC (rev 228042)
+++ PKGBUILD2017-05-14 19:30:13 UTC (rev 228043)
@@ -4,7 +4,7 @@
 
 pkgname=elixir
 pkgver=1.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
 url="http://elixir-lang.org;
 arch=('any')


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

2017-05-14 Thread Alexander Rødseth
Date: Sunday, May 14, 2017 @ 19:09:35
  Author: arodseth
Revision: 228042

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-14 19:09:21 UTC (rev 228041)
+++ community-i686/PKGBUILD 2017-05-14 19:09:35 UTC (rev 228042)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: 
-# Contributor: Alexander Rødseth 
-
-pkgname=chicken
-pkgver=4.12.0
-pkgrel=1
-pkgdesc='Feature rich R5RS Scheme compiler and interpreter'
-arch=('x86_64' 'i686')
-url='http://call-cc.org/'
-license=('BSD')
-makedepends=('inetutils' 'chicken')
-options=('staticlibs')
-source=("https://code.call-cc.org/releases/$pkgver/$pkgname-$pkgver.tar.gz;) # 
${pkgver%.*}
-sha256sums=('605ace459bc66e8c5f82abb03d9b1c9ca36f1c2295931d244d03629a947a6989')
-
-build() {
-  make -j1 -C "$pkgname-$pkgver" PLATFORM=linux PREFIX=/usr
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make -j1 PLATFORM=linux PREFIX=/usr DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: code.call-cc.org/releases/current/NEWS
-# vim:set ts=2 sw=2 et:

Copied: chicken/repos/community-i686/PKGBUILD (from rev 228041, 
chicken/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 19:09:35 UTC (rev 228042)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: 
+# Contributor: Alexander Rødseth 
+
+pkgname=chicken
+pkgver=4.12.0
+pkgrel=2
+pkgdesc='Feature rich R5RS Scheme compiler and interpreter'
+arch=('x86_64' 'i686')
+url='http://call-cc.org/'
+conflicts=('mono') # /usr/bin/csc
+license=('BSD')
+makedepends=('inetutils' 'chicken')
+options=('staticlibs')
+source=("https://code.call-cc.org/releases/$pkgver/$pkgname-$pkgver.tar.gz;) # 
${pkgver%.*}
+sha256sums=('605ace459bc66e8c5f82abb03d9b1c9ca36f1c2295931d244d03629a947a6989')
+
+build() {
+  make -j1 -C "$pkgname-$pkgver" PLATFORM=linux PREFIX=/usr
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make -j1 PLATFORM=linux PREFIX=/usr DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: code.call-cc.org/releases/current/NEWS
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-14 19:09:21 UTC (rev 228041)
+++ community-x86_64/PKGBUILD   2017-05-14 19:09:35 UTC (rev 228042)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: 
-# Contributor: Alexander Rødseth 
-
-pkgname=chicken
-pkgver=4.12.0
-pkgrel=1
-pkgdesc='Feature rich R5RS Scheme compiler and interpreter'
-arch=('x86_64' 'i686')
-url='http://call-cc.org/'
-license=('BSD')
-makedepends=('inetutils' 'chicken')
-options=('staticlibs')
-source=("https://code.call-cc.org/releases/$pkgver/$pkgname-$pkgver.tar.gz;) # 
${pkgver%.*}
-sha256sums=('605ace459bc66e8c5f82abb03d9b1c9ca36f1c2295931d244d03629a947a6989')
-
-build() {
-  make -j1 -C "$pkgname-$pkgver" PLATFORM=linux PREFIX=/usr
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make -j1 PLATFORM=linux PREFIX=/usr DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: code.call-cc.org/releases/current/NEWS
-# vim:set ts=2 sw=2 et:

Copied: chicken/repos/community-x86_64/PKGBUILD (from rev 228041, 
chicken/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-14 19:09:35 UTC (rev 228042)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: 
+# Contributor: Alexander Rødseth 
+
+pkgname=chicken
+pkgver=4.12.0
+pkgrel=2
+pkgdesc='Feature rich R5RS Scheme compiler and interpreter'

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

2017-05-14 Thread Alexander Rødseth
Date: Sunday, May 14, 2017 @ 19:09:21
  Author: arodseth
Revision: 228041

upgpkg: chicken 4.12.0-2

Modified:
  chicken/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:02:22 UTC (rev 228040)
+++ PKGBUILD2017-05-14 19:09:21 UTC (rev 228041)
@@ -6,10 +6,11 @@
 
 pkgname=chicken
 pkgver=4.12.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Feature rich R5RS Scheme compiler and interpreter'
 arch=('x86_64' 'i686')
 url='http://call-cc.org/'
+conflicts=('mono') # /usr/bin/csc
 license=('BSD')
 makedepends=('inetutils' 'chicken')
 options=('staticlibs')
@@ -27,4 +28,4 @@
 }
 
 # getver: code.call-cc.org/releases/current/NEWS
-# vim:set ts=2 sw=2 et:
+# vim: ts=2 sw=2 et:


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 19:02:13
  Author: felixonmars
Revision: 228039

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

Added:
  haskell-hakyll/repos/community-staging-i686/
  haskell-hakyll/repos/community-staging-i686/PKGBUILD
(from rev 228038, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 228038, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 228038, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 19:02:13 UTC (rev 228039)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=55
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('8deca33939717372ca227559dfe82aa0b02af49b19e9ea60051f555dcee2cfe6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
228038, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 19:02:13 UTC (rev 228039)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=55
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")

[arch-commits] Commit in linux-hardened/repos/community-x86_64 (10 files)

2017-05-14 Thread Daniel Micay
Date: Sunday, May 14, 2017 @ 19:02:22
  Author: thestinger
Revision: 228040

archrelease: copy trunk to community-x86_64

Added:
  linux-hardened/repos/community-x86_64/90-linux.hook
(from rev 228038, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/community-x86_64/PKGBUILD
(from rev 228038, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/community-x86_64/config.x86_64
(from rev 228038, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/community-x86_64/linux.install
(from rev 228038, linux-hardened/trunk/linux.install)
  linux-hardened/repos/community-x86_64/linux.preset
(from rev 228038, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/community-x86_64/90-linux.hook
  linux-hardened/repos/community-x86_64/PKGBUILD
  linux-hardened/repos/community-x86_64/config.x86_64
  linux-hardened/repos/community-x86_64/linux.install
  linux-hardened/repos/community-x86_64/linux.preset

---+
 90-linux.hook |   22 
 PKGBUILD  |  582 -
 config.x86_64 |16362 
 linux.install |   54 
 linux.preset  |   28 
 5 files changed, 8525 insertions(+), 8523 deletions(-)

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


[arch-commits] Commit in linux-hardened/trunk (PKGBUILD config.x86_64)

2017-05-14 Thread Daniel Micay
Date: Sunday, May 14, 2017 @ 19:01:51
  Author: thestinger
Revision: 228038

upgpkg: linux-hardened 4.11.1.a-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config.x86_64

---+
 PKGBUILD  |   16 +---
 config.x86_64 |2 +-
 2 files changed, 10 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 19:01:44 UTC (rev 228037)
+++ PKGBUILD2017-05-14 19:01:51 UTC (rev 228038)
@@ -5,8 +5,8 @@
 
 pkgbase=linux-hardened
 _srcname=linux-4.11
-_pkgver=4.11
-pkgver=$_pkgver.f
+_pkgver=4.11.1
+pkgver=$_pkgver.a
 pkgrel=1
 arch=('x86_64')
 url="https://github.com/thestinger/linux-hardened;
@@ -15,8 +15,8 @@
 options=('!strip')
 source=("https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.xz;
 "https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.sign;
-#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${_pkgver}.xz;
-#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${_pkgver}.sign;
+"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${_pkgver}.xz;
+"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${_pkgver}.sign;
 
"https://github.com/thestinger/$pkgbase/releases/download/$pkgver/$pkgbase-$pkgver.patch;
 
"https://github.com/thestinger/$pkgbase/releases/download/$pkgver/$pkgbase-$pkgver.patch.sig;
 # the main kernel config files
@@ -28,9 +28,11 @@
 
 sha256sums=('b67ecafd0a42b3383bf4d82f0850cbff92a7e72a215a6d02f42ddbafcf42a7d6'
 'SKIP'
-'1df39ffdd97a4350c38e8603aa7d0bc634e8664fc4c7f87342fd9fe21dff659b'
+'0d96845b0f1bbe47a62659f48367948c4e747f995694927aa309e0e5e1556949'
 'SKIP'
-'d1d65ed9dc42d4a409aace6b933b64a7069ca5b10eecd94f83d6c5a4e6c3250f'
+'ae5921094e61e1e48bbd26202d0f9cfed30d1a0d2b0f200c2cde7e22d31786d9'
+'SKIP'
+'d590fc79081785873999cfa66a38f4286a9b95f92f33035228bb1f80c2d4af87'
 '834bd254b56ab71d73f59b3221f056c72f559553c04718e350ab2a3e2991afe0'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')
 validpgpkeys=(
@@ -45,7 +47,7 @@
   cd "${srcdir}/${_srcname}"
 
   # add upstream patch
-  #patch -p1 -i "${srcdir}/patch-${_pkgver}"
+  patch -p1 -i "${srcdir}/patch-${_pkgver}"
 
   patch -p1 -i "${srcdir}/$pkgbase-$pkgver.patch"
 

Modified: config.x86_64
===
--- config.x86_64   2017-05-14 19:01:44 UTC (rev 228037)
+++ config.x86_64   2017-05-14 19:01:51 UTC (rev 228038)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.11.0-1 Kernel Configuration
+# Linux/x86 4.11.1-1 Kernel Configuration
 #
 CONFIG_64BIT=y
 CONFIG_X86_64=y


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 19:01:44
  Author: felixonmars
Revision: 228037

upgpkg: haskell-hakyll 4.9.5.1-55

rebuild with yaml,0.8.22.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 18:54:25 UTC (rev 228036)
+++ PKGBUILD2017-05-14 19:01:44 UTC (rev 228037)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.5.1
-pkgrel=54
+pkgrel=55
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:53:48
  Author: felixonmars
Revision: 228035

upgpkg: pandoc-citeproc 0.10.4.1-45

rebuild with yaml,0.8.22.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 18:40:55 UTC (rev 228034)
+++ PKGBUILD2017-05-14 18:53:48 UTC (rev 228035)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.10.4.1
-pkgrel=44
+pkgrel=45
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("custom:BSD3")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:54:25
  Author: felixonmars
Revision: 228036

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

Added:
  pandoc-citeproc/repos/community-staging-i686/
  pandoc-citeproc/repos/community-staging-i686/PKGBUILD
(from rev 228035, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 228035, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 228035, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 18:54:25 UTC (rev 228036)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.4.1
+pkgrel=45
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-xml-conduit" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('6e6b0a89a831f9bfaa33dc0f3dff1792ee1626a5e66e1bd34da9447cd3c7de51')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc-citeproc() {
+depends=('pandoc' 'icu')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_haskell-pandoc-citeproc() {
+pkgdesc="Supports using pandoc with citeproc (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-citeproc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgbase}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc-citeproc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
228035, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 18:54:25 UTC (rev 228036)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.4.1
+pkgrel=45
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+  

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:40:55
  Author: felixonmars
Revision: 228034

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

Added:
  pandoc-crossref/repos/community-staging-i686/
  pandoc-crossref/repos/community-staging-i686/PKGBUILD
(from rev 228033, pandoc-crossref/trunk/PKGBUILD)
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 228033, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 228033, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 18:40:55 UTC (rev 228034)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.2.5.0
+pkgrel=38
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('d4d93bbe448e2cf187a0b7bcc605d0445e28021e4e31bfef890b93bee2b28491')
+
+prepare() {
+sed -i 's/pandoc >= 1.17.1 && <1.19/pandoc >= 1.17.1 \&\& <1.20/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc-crossref() {
+depends=('pandoc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share}
+}
+
+package_haskell-pandoc-crossref() {
+pkgdesc="Pandoc filter for cross-references (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-crossref')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
228033, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 18:40:55 UTC (rev 228034)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.2.5.0
+pkgrel=38
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('d4d93bbe448e2cf187a0b7bcc605d0445e28021e4e31bfef890b93bee2b28491')
+
+prepare() {
+sed -i 's/pandoc >= 1.17.1 && <1.19/pandoc >= 1.17.1 \&\& <1.20/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:40:18
  Author: felixonmars
Revision: 228033

upgpkg: pandoc-crossref 0.2.5.0-38

rebuild with yaml,0.8.22.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 18:32:24 UTC (rev 228032)
+++ PKGBUILD2017-05-14 18:40:18 UTC (rev 228033)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-crossref
 pkgname=(pandoc-crossref haskell-pandoc-crossref)
 pkgver=0.2.5.0
-pkgrel=37
+pkgrel=38
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("GPL2")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:32:24
  Author: felixonmars
Revision: 228032

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

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

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

Copied: pandoc/repos/community-staging-i686/PKGBUILD (from rev 228031, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 18:32:24 UTC (rev 228032)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=52
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cmark" "haskell-data-default" "haskell-doctemplates" 
"haskell-mtl"
+ "haskell-extensible-exceptions" "haskell-filemanip" 
"haskell-haddock-library"
+ "haskell-skylighting" "haskell-hslua" "haskell-http-client" 
"haskell-syb"
+ "haskell-http-client-tls" "haskell-http-types"  "haskell-text" 
"haskell-texmath"
+ "haskell-network" "haskell-old-time" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-random" "haskell-scientific" "haskell-tagsoup" 
"haskell-temporary"
+ "haskell-network-uri" "haskell-unordered-containers" 
"haskell-zip-archive"
+ "haskell-vector" "haskell-xml" "haskell-yaml" "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('08692f3d77bf95bb9ba3407f7af26de7c23134e7efcdafad0bdaf9050e2c7801')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -fhttps -f-trypandoc 
-f-embed_data_files -f-weigh-pandoc
+runhaskell Setup build
+
+runhaskell Setup haddock --hoogle --html
+
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc() {
+depends=('gmp' 'libffi' 'zlib' 'pcre' 'cmark')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'texlive-core: for pdf output')
+replaces=('pandoc-static')
+conflicts=('pandoc-static')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}
+
+package_haskell-pandoc() {
+pkgdesc="Conversion between markup formats (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 228031, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 18:32:24 UTC (rev 228032)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=52
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" 

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:31:54
  Author: felixonmars
Revision: 228031

upgpkg: pandoc 1.19.2.1-52

rebuild with yaml,0.8.22.1

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 18:08:14 UTC (rev 228030)
+++ PKGBUILD2017-05-14 18:31:54 UTC (rev 228031)
@@ -5,7 +5,7 @@
 pkgbase=pandoc
 pkgname=(pandoc haskell-pandoc)
 pkgver=1.19.2.1
-pkgrel=51
+pkgrel=52
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:08:14
  Author: felixonmars
Revision: 228030

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

Added:
  haskell-hpack/repos/community-staging-i686/
  haskell-hpack/repos/community-staging-i686/PKGBUILD
(from rev 228029, haskell-hpack/trunk/PKGBUILD)
  haskell-hpack/repos/community-staging-x86_64/
  haskell-hpack/repos/community-staging-x86_64/PKGBUILD
(from rev 228029, haskell-hpack/trunk/PKGBUILD)

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

Copied: haskell-hpack/repos/community-staging-i686/PKGBUILD (from rev 228029, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 18:08:14 UTC (rev 228030)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.17.0
+pkgrel=12
+pkgdesc="An alternative format for Haskell packages"
+url="https://github.com/sol/hpack#readme;
+license=("MIT")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=8.0.1" 'haskell-aeson' 'haskell-base-compat' 'haskell-glob' 
'haskell-text'
+ 'haskell-unordered-containers' 'haskell-yaml')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+md5sums=('66b71e2a62c149fa13e507e9d8b1563b')
+
+build() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd "${srcdir}/${_hkgname}-${pkgver}"
+  
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  install -dm755 "$pkgdir/usr/share/doc/ghc/html/libraries"
+  ln -s /usr/share/doc/$pkgname/html 
"$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname"
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE"
+}

Copied: haskell-hpack/repos/community-staging-x86_64/PKGBUILD (from rev 228029, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 18:08:14 UTC (rev 228030)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.17.0
+pkgrel=12
+pkgdesc="An alternative format for Haskell packages"
+url="https://github.com/sol/hpack#readme;
+license=("MIT")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=8.0.1" 'haskell-aeson' 'haskell-base-compat' 'haskell-glob' 
'haskell-text'
+ 'haskell-unordered-containers' 'haskell-yaml')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+md5sums=('66b71e2a62c149fa13e507e9d8b1563b')
+
+build() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd "${srcdir}/${_hkgname}-${pkgver}"
+  
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  install -dm755 "$pkgdir/usr/share/doc/ghc/html/libraries"
+  ln -s /usr/share/doc/$pkgname/html 
"$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname"
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE"
+}


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:07:47
  Author: felixonmars
Revision: 228029

upgpkg: haskell-hpack 0.17.0-12

rebuild with yaml,0.8.22.1

Modified:
  haskell-hpack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 18:03:25 UTC (rev 228028)
+++ PKGBUILD2017-05-14 18:07:47 UTC (rev 228029)
@@ -6,7 +6,7 @@
 pkgname=haskell-hpack
 _hkgname=hpack
 pkgver=0.17.0
-pkgrel=11
+pkgrel=12
 pkgdesc="An alternative format for Haskell packages"
 url="https://github.com/sol/hpack#readme;
 license=("MIT")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:03:25
  Author: felixonmars
Revision: 228028

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

Added:
  hopenpgp-tools/repos/community-staging-i686/
  hopenpgp-tools/repos/community-staging-i686/PKGBUILD
(from rev 228027, hopenpgp-tools/trunk/PKGBUILD)
  hopenpgp-tools/repos/community-staging-x86_64/
  hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 228027, hopenpgp-tools/trunk/PKGBUILD)

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

Copied: hopenpgp-tools/repos/community-staging-i686/PKGBUILD (from rev 228027, 
hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 18:03:25 UTC (rev 228028)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.4
+pkgrel=87
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "alex" "happy" "haskell-aeson" 
"haskell-ansi-wl-pprint"
+ "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-binary-conduit"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-crypto-pubkey" 
"haskell-cryptohash"
+ "haskell-errors" "haskell-fgl" "haskell-graphviz" 
"haskell-hopenpgp"
+ "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-ixset-typed" "haskell-lens" "haskell-monad-loops" 
"haskell-openpgp-asciiarmor"
+ "haskell-optparse-applicative" "haskell-resourcet" "haskell-text"
+ "haskell-time-locale-compat" "haskell-wl-pprint-extras" 
"haskell-wl-pprint-terminfo"
+ "haskell-yaml")
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e656cd989833c6d318d5c44931ef5a8cd98bb0ebb4bab70a2d2f701091d0abd8')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
228027, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 18:03:25 UTC (rev 228028)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.4
+pkgrel=87
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "alex" "happy" "haskell-aeson" 
"haskell-ansi-wl-pprint"
+ "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-binary-conduit"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-crypto-pubkey" 
"haskell-cryptohash"
+ "haskell-errors" "haskell-fgl" "haskell-graphviz" 
"haskell-hopenpgp"
+ "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-ixset-typed" "haskell-lens" "haskell-monad-loops" 
"haskell-openpgp-asciiarmor"
+ "haskell-optparse-applicative" "haskell-resourcet" "haskell-text"
+ "haskell-time-locale-compat" "haskell-wl-pprint-extras" 
"haskell-wl-pprint-terminfo"
+ "haskell-yaml")
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e656cd989833c6d318d5c44931ef5a8cd98bb0ebb4bab70a2d2f701091d0abd8')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 18:02:58
  Author: felixonmars
Revision: 228027

upgpkg: hopenpgp-tools 0.19.4-87

rebuild with yaml,0.8.22.1

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 17:57:28 UTC (rev 228026)
+++ PKGBUILD2017-05-14 18:02:58 UTC (rev 228027)
@@ -4,7 +4,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.19.4
-pkgrel=86
+pkgrel=87
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 17:57:28
  Author: felixonmars
Revision: 228026

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

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

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

Copied: hindent/repos/community-staging-i686/PKGBUILD (from rev 228025, 
hindent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 17:57:28 UTC (rev 228026)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=5.2.3
+pkgrel=2
+pkgdesc="Extensible Haskell pretty printer"
+url="https://github.com/commercialhaskell/hindent;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=8.0.1" "haskell-descriptive" "haskell-exceptions" 
"haskell-monad-loops"
+ "haskell-mtl" "haskell-path" "haskell-path-io" "haskell-src-exts" 
"haskell-text"
+ "haskell-unix-compat" "haskell-utf8-string" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('478c207ffb408e31f15dbc5bf941acdc9116de1c775d393cb59514e4a28354865d808715005a7e6f076b86d4e5f5c0f389059c16d4761ffcec31953d2d88d969')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: hindent/repos/community-staging-x86_64/PKGBUILD (from rev 228025, 
hindent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 17:57:28 UTC (rev 228026)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=5.2.3
+pkgrel=2
+pkgdesc="Extensible Haskell pretty printer"
+url="https://github.com/commercialhaskell/hindent;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=8.0.1" "haskell-descriptive" "haskell-exceptions" 
"haskell-monad-loops"
+ "haskell-mtl" "haskell-path" "haskell-path-io" "haskell-src-exts" 
"haskell-text"
+ "haskell-unix-compat" "haskell-utf8-string" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('478c207ffb408e31f15dbc5bf941acdc9116de1c775d393cb59514e4a28354865d808715005a7e6f076b86d4e5f5c0f389059c16d4761ffcec31953d2d88d969')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 17:56:59
  Author: felixonmars
Revision: 228025

upgpkg: hindent 5.2.3-2

rebuild with yaml,0.8.22.1

Modified:
  hindent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 17:53:28 UTC (rev 228024)
+++ PKGBUILD2017-05-14 17:56:59 UTC (rev 228025)
@@ -4,7 +4,7 @@
 
 pkgname=hindent
 pkgver=5.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Extensible Haskell pretty printer"
 url="https://github.com/commercialhaskell/hindent;
 license=("custom:BSD3")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 17:53:28
  Author: felixonmars
Revision: 228024

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

Added:
  haskell-yaml/repos/community-staging-i686/
  haskell-yaml/repos/community-staging-i686/PKGBUILD
(from rev 228023, haskell-yaml/trunk/PKGBUILD)
  haskell-yaml/repos/community-staging-x86_64/
  haskell-yaml/repos/community-staging-x86_64/PKGBUILD
(from rev 228023, haskell-yaml/trunk/PKGBUILD)

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

Copied: haskell-yaml/repos/community-staging-i686/PKGBUILD (from rev 228023, 
haskell-yaml/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 17:53:28 UTC (rev 228024)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yaml
+pkgname=haskell-yaml
+pkgver=0.8.22.1
+pkgrel=1
+pkgdesc="Support for parsing and rendering YAML documents."
+url="http://github.com/snoyberg/yaml/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" "haskell-conduit" 
"haskell-vector"
+ "haskell-resourcet" "haskell-scientific" "haskell-semigroups" 
"haskell-text"
+ "haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('794ca125f6d2fddce5a57b3b44877b75edc47dffc1ad14d9b9d874d7f459d18df47bc646b41b0d1340f336240fd782c175a07c15ccbe8e5befe9f2f4a6b6cb60')
+
+prepare() {
+# Needed only for examples, which won't be built
+sed -i '/raw-strings-qq/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-no-unicode -f-system-libyaml -f-no-exe -fno-examples
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-yaml/repos/community-staging-x86_64/PKGBUILD (from rev 228023, 
haskell-yaml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 17:53:28 UTC (rev 228024)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yaml
+pkgname=haskell-yaml
+pkgver=0.8.22.1
+pkgrel=1
+pkgdesc="Support for parsing and rendering YAML documents."
+url="http://github.com/snoyberg/yaml/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" "haskell-conduit" 
"haskell-vector"
+ "haskell-resourcet" "haskell-scientific" "haskell-semigroups" 
"haskell-text"
+ "haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('794ca125f6d2fddce5a57b3b44877b75edc47dffc1ad14d9b9d874d7f459d18df47bc646b41b0d1340f336240fd782c175a07c15ccbe8e5befe9f2f4a6b6cb60')
+
+prepare() {
+# Needed only for examples, which won't be built
+sed -i '/raw-strings-qq/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-no-unicode -f-system-libyaml -f-no-exe -fno-examples
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 17:53:01
  Author: felixonmars
Revision: 228023

upgpkg: haskell-yaml 0.8.22.1-1

rebuild with yaml,0.8.22.1

Modified:
  haskell-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 17:17:00 UTC (rev 228022)
+++ PKGBUILD2017-05-14 17:53:01 UTC (rev 228023)
@@ -4,8 +4,8 @@
 
 _hkgname=yaml
 pkgname=haskell-yaml
-pkgver=0.8.22
-pkgrel=12
+pkgver=0.8.22.1
+pkgrel=1
 pkgdesc="Support for parsing and rendering YAML documents."
 url="http://github.com/snoyberg/yaml/;
 license=("custom:BSD3")
@@ -14,7 +14,7 @@
  "haskell-resourcet" "haskell-scientific" "haskell-semigroups" 
"haskell-text"
  "haskell-unordered-containers")
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('76429aedad04cadacbdc20fdb7f4a763b8e5bf9f733d6c97f166edb24bd9b5a3')
+sha512sums=('794ca125f6d2fddce5a57b3b44877b75edc47dffc1ad14d9b9d874d7f459d18df47bc646b41b0d1340f336240fd782c175a07c15ccbe8e5befe9f2f4a6b6cb60')
 
 prepare() {
 # Needed only for examples, which won't be built


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

2017-05-14 Thread Antonio Rojas
Date: Sunday, May 14, 2017 @ 17:17:00
  Author: arojas
Revision: 228022

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

Added:
  normaliz/repos/community-i686/PKGBUILD
(from rev 228021, normaliz/trunk/PKGBUILD)
  normaliz/repos/community-x86_64/PKGBUILD
(from rev 228021, normaliz/trunk/PKGBUILD)
Deleted:
  normaliz/repos/community-i686/PKGBUILD
  normaliz/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-05-14 17:16:35 UTC (rev 228021)
+++ community-i686/PKGBUILD 2017-05-14 17:17:00 UTC (rev 228022)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Tarn Burton 
-
-pkgname=normaliz
-pkgver=3.2.1
-pkgrel=1
-pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
-arch=(i686 x86_64)
-url="https://www.normaliz.uni-osnabrueck.de/;
-license=(GPL)
-depends=(gmp)
-makedepends=(boost)
-source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
-sha256sums=('c4982070f64c0575ab20b8d48b0e19128e8118ebb4187c5d7f8908ec006bc37f')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: normaliz/repos/community-i686/PKGBUILD (from rev 228021, 
normaliz/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 17:17:00 UTC (rev 228022)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Tarn Burton 
+
+pkgname=normaliz
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
+arch=(i686 x86_64)
+url="https://www.normaliz.uni-osnabrueck.de/;
+license=(GPL)
+depends=(gmp)
+makedepends=(boost)
+source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
+sha256sums=('a0fb74784cc4866637f894794d788931f50872180c800d20aa8d6fd375b098c3')
+
+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-05-14 17:16:35 UTC (rev 228021)
+++ community-x86_64/PKGBUILD   2017-05-14 17:17:00 UTC (rev 228022)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Tarn Burton 
-
-pkgname=normaliz
-pkgver=3.2.1
-pkgrel=1
-pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
-arch=(i686 x86_64)
-url="https://www.normaliz.uni-osnabrueck.de/;
-license=(GPL)
-depends=(gmp)
-makedepends=(boost)
-source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
-sha256sums=('c4982070f64c0575ab20b8d48b0e19128e8118ebb4187c5d7f8908ec006bc37f')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: normaliz/repos/community-x86_64/PKGBUILD (from rev 228021, 
normaliz/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-14 17:17:00 UTC (rev 228022)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Tarn Burton 
+
+pkgname=normaliz
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
+arch=(i686 x86_64)
+url="https://www.normaliz.uni-osnabrueck.de/;
+license=(GPL)
+depends=(gmp)
+makedepends=(boost)
+source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
+sha256sums=('a0fb74784cc4866637f894794d788931f50872180c800d20aa8d6fd375b098c3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-05-14 Thread Antonio Rojas
Date: Sunday, May 14, 2017 @ 17:16:35
  Author: arojas
Revision: 228021

Update to 3.3.0

Modified:
  normaliz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 16:43:01 UTC (rev 228020)
+++ PKGBUILD2017-05-14 17:16:35 UTC (rev 228021)
@@ -2,7 +2,7 @@
 # Contributor: Tarn Burton 
 
 pkgname=normaliz
-pkgver=3.2.1
+pkgver=3.3.0
 pkgrel=1
 pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(gmp)
 makedepends=(boost)
 
source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
-sha256sums=('c4982070f64c0575ab20b8d48b0e19128e8118ebb4187c5d7f8908ec006bc37f')
+sha256sums=('a0fb74784cc4866637f894794d788931f50872180c800d20aa8d6fd375b098c3')
 
 build() {
   cd $pkgname-$pkgver


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

2017-05-14 Thread Andreas Radke
Date: Sunday, May 14, 2017 @ 17:01:01
  Author: andyrtr
Revision: 295998

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/90-linux.hook
(from rev 295997, linux-lts/trunk/90-linux.hook)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 295997, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 295997, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 295997, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 295997, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 295997, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 295997, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/90-linux.hook
(from rev 295997, linux-lts/trunk/90-linux.hook)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 295997, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 295997, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 295997, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 295997, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 295997, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 295997, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/90-linux.hook   |   11 
 testing-i686/PKGBUILD|  300 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 8211 +
 testing-i686/config.x86_64   | 7976 
 testing-i686/linux-lts.install   |   33 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/90-linux.hook |   11 
 testing-x86_64/PKGBUILD  |  300 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 8211 +
 testing-x86_64/config.x86_64 | 7976 
 testing-x86_64/linux-lts.install |   33 
 testing-x86_64/linux-lts.preset  |   14 
 14 files changed, 33112 insertions(+)

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


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

2017-05-14 Thread Andreas Radke
Date: Sunday, May 14, 2017 @ 17:00:18
  Author: andyrtr
Revision: 295997

upgpkg: linux-lts 4.9.28-1

upstream update 4.9.28

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 16:44:41 UTC (rev 295996)
+++ PKGBUILD2017-05-14 17:00:18 UTC (rev 295997)
@@ -4,7 +4,7 @@
 pkgbase=linux-lts
 #pkgbase=linux-lts-custom
 _srcname=linux-4.9
-pkgver=4.9.27
+pkgver=4.9.28
 pkgrel=1
 arch=('i686' 'x86_64')
 url="https://www.kernel.org/;
@@ -23,7 +23,7 @@
 # https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256sums=('029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a'
 'SKIP'
-'098948ea0680836413c604c20f2cd83220ef6aba0280c50ac43821f6536bf8c4'
+'8e332a60444ccc4f32d05867f1fa75ffd8d958b1e9afea707fb60246bc93d57c'
 'SKIP'
 'd577759532f56b0df073cdc0f2aa3975f1325b8a91851050bb678e18ace6700c'
 '521943d91f3e2a42b9848c429063db2b554e4433366fa8341ab9186a1151d0ca'


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 16:44:32
  Author: foutrelis
Revision: 295995

upgpkg: xfce4-terminal 0.8.5.1-1

New upstream release.

Modified:
  xfce4-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 16:30:05 UTC (rev 295994)
+++ PKGBUILD2017-05-14 16:44:32 UTC (rev 295995)
@@ -4,7 +4,7 @@
 # Contributor: Aurelien Foret 
 
 pkgname=xfce4-terminal
-pkgver=0.8.4
+pkgver=0.8.5.1
 pkgrel=1
 pkgdesc="A modern terminal emulator primarily for the Xfce desktop environment"
 arch=('i686' 'x86_64')
@@ -15,8 +15,8 @@
 makedepends=('intltool')
 conflicts=('terminal')
 replaces=('terminal')
-source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('c5c1163b30e7a43d56ff92a25193bf9f29ce60e6cf43e5988530df79c84cfdc8')
+source=(http://archive.xfce.org/src/apps/$pkgname/0.8/$pkgname-$pkgver.tar.bz2)
+sha256sums=('8a34568f78abf669957984602c54cd938f19c9343ee2691c2b787446629be064')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2017-05-14 Thread Evangelos Foutras
Date: Sunday, May 14, 2017 @ 16:44:41
  Author: foutrelis
Revision: 295996

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

Added:
  xfce4-terminal/repos/extra-i686/PKGBUILD
(from rev 295995, xfce4-terminal/trunk/PKGBUILD)
  xfce4-terminal/repos/extra-x86_64/PKGBUILD
(from rev 295995, xfce4-terminal/trunk/PKGBUILD)
Deleted:
  xfce4-terminal/repos/extra-i686/PKGBUILD
  xfce4-terminal/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-14 16:44:32 UTC (rev 295995)
+++ extra-i686/PKGBUILD 2017-05-14 16:44:41 UTC (rev 295996)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-# Contributor: Aurelien Foret 
-
-pkgname=xfce4-terminal
-pkgver=0.8.4
-pkgrel=1
-pkgdesc="A modern terminal emulator primarily for the Xfce desktop environment"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'vte3' 'hicolor-icon-theme')
-makedepends=('intltool')
-conflicts=('terminal')
-replaces=('terminal')
-source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('c5c1163b30e7a43d56ff92a25193bf9f29ce60e6cf43e5988530df79c84cfdc8')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-terminal/repos/extra-i686/PKGBUILD (from rev 295995, 
xfce4-terminal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-14 16:44:41 UTC (rev 295996)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-terminal
+pkgver=0.8.5.1
+pkgrel=1
+pkgdesc="A modern terminal emulator primarily for the Xfce desktop environment"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'vte3' 'hicolor-icon-theme')
+makedepends=('intltool')
+conflicts=('terminal')
+replaces=('terminal')
+source=(http://archive.xfce.org/src/apps/$pkgname/0.8/$pkgname-$pkgver.tar.bz2)
+sha256sums=('8a34568f78abf669957984602c54cd938f19c9343ee2691c2b787446629be064')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-14 16:44:32 UTC (rev 295995)
+++ extra-x86_64/PKGBUILD   2017-05-14 16:44:41 UTC (rev 295996)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-# Contributor: Aurelien Foret 
-
-pkgname=xfce4-terminal
-pkgver=0.8.4
-pkgrel=1
-pkgdesc="A modern terminal emulator primarily for the Xfce desktop environment"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'vte3' 'hicolor-icon-theme')
-makedepends=('intltool')
-conflicts=('terminal')
-replaces=('terminal')
-source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('c5c1163b30e7a43d56ff92a25193bf9f29ce60e6cf43e5988530df79c84cfdc8')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-terminal/repos/extra-x86_64/PKGBUILD (from rev 295995, 
xfce4-terminal/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-05-14 16:44:41 UTC (rev 295996)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-terminal
+pkgver=0.8.5.1
+pkgrel=1

[arch-commits] Commit in python-pytables/trunk (PKGBUILD hdf5_18.patch)

2017-05-14 Thread Andrzej Giniewicz
Date: Sunday, May 14, 2017 @ 16:42:49
  Author: aginiewicz
Revision: 228019

upgpkg: python-pytables 3.4.2-1

python-pytables: new upstream release

Modified:
  python-pytables/trunk/PKGBUILD
Deleted:
  python-pytables/trunk/hdf5_18.patch

---+
 PKGBUILD  |   29 +
 hdf5_18.patch |   14 --
 2 files changed, 9 insertions(+), 34 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 16:41:54 UTC (rev 228018)
+++ PKGBUILD2017-05-14 16:42:49 UTC (rev 228019)
@@ -4,30 +4,19 @@
 
 pkgbase=python-pytables
 pkgname=('python2-pytables' 'python-pytables')
-pkgver=3.3.0
-pkgrel=3
+pkgver=3.4.2
+pkgrel=1
 arch=("i686" "x86_64")
 pkgdesc="A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data"
 url="http://www.pytables.org;
 license=("BSD")
-makedepends=('lzo' 'hdf5_18' 'python2-numexpr' 'python-numexpr' 
'python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'blosc' 'bzip2' 
'lzo')
-source=("https://github.com/PyTables/PyTables/archive/v${pkgver}.tar.gz;
-"hdf5_18.patch")
-md5sums=('056c161ae0fd2d6e585b766adacf3b0b'
- '6cca19b6ce2eb9f84d1ad2c1a3b4')
+makedepends=('lzo' 'hdf5' 'python2-numexpr' 'python-numexpr' 
'python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'blosc' 'bzip2')
+source=("https://github.com/PyTables/PyTables/archive/v${pkgver}.tar.gz;)
+md5sums=('a14bc216fa323562a35029183c0ffda9')
 
 prepare() {
   cd "$srcdir"/PyTables-$pkgver
 
-  # -march=native generates AVX instructions if the host supports it, which
-  # then results in "SIGILL (Illegal instruction)" on machines lacking AVX
-  # https://github.com/PyTables/PyTables/issues/458
-  # https://github.com/PyTables/PyTables/pull/503
-  sed -i 's/"-march=native",\?//' setup.py
-
-  # force hdf5_18 location
-  patch -Np0 -i "$srcdir"/hdf5_18.patch
-  
   cd "${srcdir}" 
   cp -a PyTables-$pkgver PyTables-py2-$pkgver
 }
@@ -35,15 +24,15 @@
 build() {
   msg "Building Python2"
   cd "$srcdir"/PyTables-py2-$pkgver
-  HDF5_DIR=/usr/include/hdf5_18 LD_LIBRARY_PATH=/usr/lib/hdf5_18 python2 
setup.py build --blosc=/usr
+  python2 setup.py build --blosc=/usr
 
   msg "Building Python3"
   cd "$srcdir"/PyTables-$pkgver
-  HDF5_DIR=/usr/include/hdf5_18 LD_LIBRARY_PATH=/usr/lib/hdf5_18 python 
setup.py build --blosc=/usr
+  python setup.py build --blosc=/usr
 }
 
 package_python2-pytables() {
-  depends=('lzo' 'hdf5_18' 'python2-numexpr' 'blosc')
+  depends=('lzo' 'hdf5' 'python2-numexpr' 'blosc')
 
   cd "$srcdir"/PyTables-py2-${pkgver}
   python2 setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
@@ -63,7 +52,7 @@
 }
 
 package_python-pytables() {
-  depends=('lzo' 'hdf5_18' 'python-numexpr' 'blosc')
+  depends=('lzo' 'hdf5' 'python-numexpr' 'blosc')
 
   cd "$srcdir"/PyTables-${pkgver}
   python setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1

Deleted: hdf5_18.patch
===
--- hdf5_18.patch   2017-05-14 16:41:54 UTC (rev 228018)
+++ hdf5_18.patch   2017-05-14 16:42:49 UTC (rev 228019)
@@ -1,14 +0,0 @@
 setup.py.old   2016-05-24 13:16:36.129769271 +0200
-+++ setup.py   2016-05-24 13:17:07.380243229 +0200
-@@ -552,6 +552,11 @@
- libdir = compiler.has_function(package.target_function,
-libraries=(package.library_name,))
- 
-+# force location of hdf5_18
-+if package==hdf5_package:
-+hdrdir = '/usr/include/hdf5_18'
-+libdir = '/usr/lib/hdf5_18'
-+
- if not (hdrdir and libdir):
- if package.tag in ['HDF5']:  # these are compulsory!
- pname, ptag = package.name, package.tag


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

2017-05-14 Thread Andrzej Giniewicz
Date: Sunday, May 14, 2017 @ 16:43:01
  Author: aginiewicz
Revision: 228020

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

Added:
  python-pytables/repos/community-i686/PKGBUILD
(from rev 228019, python-pytables/trunk/PKGBUILD)
  python-pytables/repos/community-x86_64/PKGBUILD
(from rev 228019, python-pytables/trunk/PKGBUILD)
Deleted:
  python-pytables/repos/community-i686/PKGBUILD
  python-pytables/repos/community-i686/hdf5_18.patch
  python-pytables/repos/community-x86_64/PKGBUILD
  python-pytables/repos/community-x86_64/hdf5_18.patch

+
 /PKGBUILD  |  134 +++
 community-i686/PKGBUILD|   78 --
 community-i686/hdf5_18.patch   |   14 
 community-x86_64/PKGBUILD  |   78 --
 community-x86_64/hdf5_18.patch |   14 
 5 files changed, 134 insertions(+), 184 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-14 16:42:49 UTC (rev 228019)
+++ community-i686/PKGBUILD 2017-05-14 16:43:01 UTC (rev 228020)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Sebastien Binet 
-
-pkgbase=python-pytables
-pkgname=('python2-pytables' 'python-pytables')
-pkgver=3.3.0
-pkgrel=3
-arch=("i686" "x86_64")
-pkgdesc="A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data"
-url="http://www.pytables.org;
-license=("BSD")
-makedepends=('lzo' 'hdf5_18' 'python2-numexpr' 'python-numexpr' 
'python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'blosc' 'bzip2' 
'lzo')
-source=("https://github.com/PyTables/PyTables/archive/v${pkgver}.tar.gz;
-"hdf5_18.patch")
-md5sums=('056c161ae0fd2d6e585b766adacf3b0b'
- '6cca19b6ce2eb9f84d1ad2c1a3b4')
-
-prepare() {
-  cd "$srcdir"/PyTables-$pkgver
-
-  # -march=native generates AVX instructions if the host supports it, which
-  # then results in "SIGILL (Illegal instruction)" on machines lacking AVX
-  # https://github.com/PyTables/PyTables/issues/458
-  # https://github.com/PyTables/PyTables/pull/503
-  sed -i 's/"-march=native",\?//' setup.py
-
-  # force hdf5_18 location
-  patch -Np0 -i "$srcdir"/hdf5_18.patch
-  
-  cd "${srcdir}" 
-  cp -a PyTables-$pkgver PyTables-py2-$pkgver
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/PyTables-py2-$pkgver
-  HDF5_DIR=/usr/include/hdf5_18 LD_LIBRARY_PATH=/usr/lib/hdf5_18 python2 
setup.py build --blosc=/usr
-
-  msg "Building Python3"
-  cd "$srcdir"/PyTables-$pkgver
-  HDF5_DIR=/usr/include/hdf5_18 LD_LIBRARY_PATH=/usr/lib/hdf5_18 python 
setup.py build --blosc=/usr
-}
-
-package_python2-pytables() {
-  depends=('lzo' 'hdf5_18' 'python2-numexpr' 'blosc')
-
-  cd "$srcdir"/PyTables-py2-${pkgver}
-  python2 setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # see FS#36015 and FS#44971
-  mv "$pkgdir"/usr/bin/pt2to3{,-2.7}
-  mv "$pkgdir"/usr/bin/ptdump{,-2.7}
-  mv "$pkgdir"/usr/bin/ptrepack{,-2.7}
-  mv "$pkgdir"/usr/bin/pttree{,-2.7}
-
-  # see FS#45975
-  _site_packages=`python2 -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod a+rx "${pkgdir}${_site_packages}"/*.egg-info
-  chmod a+r "${pkgdir}${_site_packages}"/*.egg-info/*
-}
-
-package_python-pytables() {
-  depends=('lzo' 'hdf5_18' 'python-numexpr' 'blosc')
-
-  cd "$srcdir"/PyTables-${pkgver}
-  python setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # see FS#45975
-  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod a+rx "${pkgdir}${_site_packages}"/*.egg-info
-  chmod a+r "${pkgdir}${_site_packages}"/*.egg-info/*
-}
-

Copied: python-pytables/repos/community-i686/PKGBUILD (from rev 228019, 
python-pytables/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 16:43:01 UTC (rev 228020)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Sebastien Binet 
+
+pkgbase=python-pytables
+pkgname=('python2-pytables' 'python-pytables')
+pkgver=3.4.2
+pkgrel=1
+arch=("i686" "x86_64")
+pkgdesc="A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data"
+url="http://www.pytables.org;
+license=("BSD")
+makedepends=('lzo' 'hdf5' 'python2-numexpr' 'python-numexpr' 
'python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'blosc' 'bzip2')

[arch-commits] Commit in opendht (5 files)

2017-05-14 Thread Baptiste Jonglez
Date: Sunday, May 14, 2017 @ 16:41:54
  Author: zorun
Revision: 228018

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

Added:
  opendht/repos/
  opendht/repos/community-i686/
  opendht/repos/community-i686/PKGBUILD
(from rev 228017, opendht/trunk/PKGBUILD)
  opendht/repos/community-x86_64/
  opendht/repos/community-x86_64/PKGBUILD
(from rev 228017, opendht/trunk/PKGBUILD)

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

Copied: opendht/repos/community-i686/PKGBUILD (from rev 228017, 
opendht/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-05-14 16:41:54 UTC (rev 228018)
@@ -0,0 +1,42 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=opendht
+pkgver=1.3.3
+pkgrel=1
+epoch=1
+pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
+arch=('i686' 'x86_64')
+depends=('gnutls' 'nettle' 'readline' 'argon2')
+makedepends=('msgpack-c' 'cmake' 'cython')
+optdepends=('python: to use the Python bindings')
+url="https://github.com/savoirfairelinux/opendht;
+license=('GPL3')
+source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('0ba0d3eedd38e1e6d1d62ae8a4181a5beb4b18b508145e40f9759fc687bc881d')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DOPENDHT_PYTHON=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Installing...'
+  cd build
+  make DESTDIR="$pkgdir" install
+  cd ..
+
+  msg2 'Installing documentation...'
+  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: opendht/repos/community-x86_64/PKGBUILD (from rev 228017, 
opendht/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-05-14 16:41:54 UTC (rev 228018)
@@ -0,0 +1,42 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=opendht
+pkgver=1.3.3
+pkgrel=1
+epoch=1
+pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
+arch=('i686' 'x86_64')
+depends=('gnutls' 'nettle' 'readline' 'argon2')
+makedepends=('msgpack-c' 'cmake' 'cython')
+optdepends=('python: to use the Python bindings')
+url="https://github.com/savoirfairelinux/opendht;
+license=('GPL3')
+source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('0ba0d3eedd38e1e6d1d62ae8a4181a5beb4b18b508145e40f9759fc687bc881d')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DOPENDHT_PYTHON=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Installing...'
+  cd build
+  make DESTDIR="$pkgdir" install
+  cd ..
+
+  msg2 'Installing documentation...'
+  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in freetype2/repos (30 files)

2017-05-14 Thread Jan Steffens
Date: Sunday, May 14, 2017 @ 16:30:05
  Author: heftig
Revision: 295994

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

Added:
  freetype2/repos/testing-i686/0001-Enable-table-validation-modules.patch
(from rev 295993, 
freetype2/trunk/0001-Enable-table-validation-modules.patch)
  freetype2/repos/testing-i686/0002-Enable-subpixel-rendering.patch
(from rev 295993, freetype2/trunk/0002-Enable-subpixel-rendering.patch)
  freetype2/repos/testing-i686/0003-Enable-infinality-subpixel-hinting.patch
(from rev 295993, 
freetype2/trunk/0003-Enable-infinality-subpixel-hinting.patch)
  freetype2/repos/testing-i686/0004-Enable-long-PCF-family-names.patch
(from rev 295993, freetype2/trunk/0004-Enable-long-PCF-family-names.patch)
  freetype2/repos/testing-i686/0005-freetype-2.5.2-more-demos.patch
(from rev 295993, freetype2/trunk/0005-freetype-2.5.2-more-demos.patch)
  freetype2/repos/testing-i686/PKGBUILD
(from rev 295993, freetype2/trunk/PKGBUILD)
  freetype2/repos/testing-i686/freetype2.install
(from rev 295993, freetype2/trunk/freetype2.install)
  freetype2/repos/testing-i686/freetype2.sh
(from rev 295993, freetype2/trunk/freetype2.sh)
  freetype2/repos/testing-x86_64/0001-Enable-table-validation-modules.patch
(from rev 295993, 
freetype2/trunk/0001-Enable-table-validation-modules.patch)
  freetype2/repos/testing-x86_64/0002-Enable-subpixel-rendering.patch
(from rev 295993, freetype2/trunk/0002-Enable-subpixel-rendering.patch)
  freetype2/repos/testing-x86_64/0003-Enable-infinality-subpixel-hinting.patch
(from rev 295993, 
freetype2/trunk/0003-Enable-infinality-subpixel-hinting.patch)
  freetype2/repos/testing-x86_64/0004-Enable-long-PCF-family-names.patch
(from rev 295993, freetype2/trunk/0004-Enable-long-PCF-family-names.patch)
  freetype2/repos/testing-x86_64/0005-freetype-2.5.2-more-demos.patch
(from rev 295993, freetype2/trunk/0005-freetype-2.5.2-more-demos.patch)
  freetype2/repos/testing-x86_64/PKGBUILD
(from rev 295993, freetype2/trunk/PKGBUILD)
  freetype2/repos/testing-x86_64/freetype2.install
(from rev 295993, freetype2/trunk/freetype2.install)
  freetype2/repos/testing-x86_64/freetype2.sh
(from rev 295993, freetype2/trunk/freetype2.sh)
Deleted:
  freetype2/repos/testing-i686/0001-Enable-table-validation-modules.patch
  freetype2/repos/testing-i686/0002-Enable-subpixel-rendering.patch
  freetype2/repos/testing-i686/0003-Enable-infinality-subpixel-hinting.patch
  freetype2/repos/testing-i686/0005-freetype-2.5.2-more-demos.patch
  freetype2/repos/testing-i686/PKGBUILD
  freetype2/repos/testing-i686/freetype2.install
  freetype2/repos/testing-i686/freetype2.sh
  freetype2/repos/testing-x86_64/0001-Enable-table-validation-modules.patch
  freetype2/repos/testing-x86_64/0002-Enable-subpixel-rendering.patch
  freetype2/repos/testing-x86_64/0003-Enable-infinality-subpixel-hinting.patch
  freetype2/repos/testing-x86_64/0005-freetype-2.5.2-more-demos.patch
  freetype2/repos/testing-x86_64/PKGBUILD
  freetype2/repos/testing-x86_64/freetype2.install
  freetype2/repos/testing-x86_64/freetype2.sh

--+
 /0001-Enable-table-validation-modules.patch  |   98 +
 /0002-Enable-subpixel-rendering.patch|   50 ++
 /0003-Enable-infinality-subpixel-hinting.patch   |   54 ++
 /0005-freetype-2.5.2-more-demos.patch|   34 +
 /PKGBUILD|  196 ++
 /freetype2.install   |   16 
 /freetype2.sh|   24 +
 testing-i686/0001-Enable-table-validation-modules.patch  |   34 -
 testing-i686/0002-Enable-subpixel-rendering.patch|   25 -
 testing-i686/0003-Enable-infinality-subpixel-hinting.patch   |   27 -
 testing-i686/0004-Enable-long-PCF-family-names.patch |   25 +
 testing-i686/0005-freetype-2.5.2-more-demos.patch|   17 
 testing-i686/PKGBUILD|   97 
 testing-i686/freetype2.install   |8 
 testing-i686/freetype2.sh|   12 
 testing-x86_64/0001-Enable-table-validation-modules.patch|   34 -
 testing-x86_64/0002-Enable-subpixel-rendering.patch  |   25 -
 testing-x86_64/0003-Enable-infinality-subpixel-hinting.patch |   27 -
 testing-x86_64/0004-Enable-long-PCF-family-names.patch   |   25 +
 testing-x86_64/0005-freetype-2.5.2-more-demos.patch  |   17 
 testing-x86_64/PKGBUILD  |   97 
 testing-x86_64/freetype2.install |8 
 testing-x86_64/freetype2.sh  |   12 
 23 files changed, 522 insertions(+), 440 deletions(-)

Deleted: testing-i686/0001-Enable-table-validation-modules.patch

[arch-commits] Commit in freetype2/trunk (5 files)

2017-05-14 Thread Jan Steffens
Date: Sunday, May 14, 2017 @ 16:28:08
  Author: heftig
Revision: 295993

2.8-2: Enable long family names, simplify installing demos, reduce differences 
to -git package

Added:
  freetype2/trunk/0004-Enable-long-PCF-family-names.patch
Modified:
  freetype2/trunk/0001-Enable-table-validation-modules.patch
  freetype2/trunk/0002-Enable-subpixel-rendering.patch
  freetype2/trunk/0003-Enable-infinality-subpixel-hinting.patch
  freetype2/trunk/PKGBUILD

---+
 0001-Enable-table-validation-modules.patch|   27 
 0002-Enable-subpixel-rendering.patch  |8 ++--
 0003-Enable-infinality-subpixel-hinting.patch |   10 +++---
 0004-Enable-long-PCF-family-names.patch   |   25 +++
 PKGBUILD  |   39 
 5 files changed, 75 insertions(+), 34 deletions(-)

Modified: 0001-Enable-table-validation-modules.patch
===
--- 0001-Enable-table-validation-modules.patch  2017-05-14 16:02:37 UTC (rev 
295992)
+++ 0001-Enable-table-validation-modules.patch  2017-05-14 16:28:08 UTC (rev 
295993)
@@ -1,7 +1,7 @@
-From c3680bf8d38cf759c1e33dcc2d2d51e0a4fea2f9 Mon Sep 17 00:00:00 2001
+From 17dd2751813c3c8b37dac474cc5024473eb9bece Mon Sep 17 00:00:00 2001
 From: "Jan Alexander Steffens (heftig)" 
 Date: Tue, 23 Jun 2015 08:40:29 +0200
-Subject: [PATCH 1/3] Enable table validation modules
+Subject: [PATCH 1/4] Enable table validation modules
 
 ---
  modules.cfg | 4 ++--
@@ -8,10 +8,10 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/modules.cfg b/modules.cfg
-index f30049c38cc45159..7b8e50fe1b34584a 100644
+index 517111efeb642459..64b2a34d510ce8f7 100644
 --- a/modules.cfg
 +++ b/modules.cfg
-@@ -120,7 +120,7 @@ AUX_MODULES += cache
+@@ -120,30 +120,30 @@ AUX_MODULES += cache
  # TrueType GX/AAT table validation.  Needs ftgxval.c below.
  #
  # No FT_CONFIG_OPTION_PIC support.
@@ -20,7 +20,22 @@
  
  # Support for streams compressed with gzip (files with suffix .gz).
  #
-@@ -143,7 +143,7 @@ AUX_MODULES += bzip2
+ # See include/freetype/ftgzip.h for the API.
+ # No FT_CONFIG_OPTION_PIC support.
+ AUX_MODULES += gzip
+ 
+ # Support for streams compressed with LZW (files with suffix .Z).
+ #
+ # See include/freetype/ftlzw.h for the API.
+ # No FT_CONFIG_OPTION_PIC support.
+ AUX_MODULES += lzw
+ 
+ # Support for streams compressed with bzip2 (files with suffix .bz2).
+ #
+ # See include/freetype/ftbzip2.h for the API.
+ # No FT_CONFIG_OPTION_PIC support.
+ AUX_MODULES += bzip2
+ 
  # OpenType table validation.  Needs ftotval.c below.
  #
  # No FT_CONFIG_OPTION_PIC support.
@@ -30,5 +45,5 @@
  # Auxiliary PostScript driver component to share common code.
  #
 -- 
-2.9.3
+2.13.0
 

Modified: 0002-Enable-subpixel-rendering.patch
===
--- 0002-Enable-subpixel-rendering.patch2017-05-14 16:02:37 UTC (rev 
295992)
+++ 0002-Enable-subpixel-rendering.patch2017-05-14 16:28:08 UTC (rev 
295993)
@@ -1,7 +1,7 @@
-From 96f09f08417887b2618c177bccfb6da2906568d9 Mon Sep 17 00:00:00 2001
+From a8f7f3068a8a5f94adfc77f4ddf03bf08da38f9b Mon Sep 17 00:00:00 2001
 From: "Jan Alexander Steffens (heftig)" 
 Date: Tue, 23 Jun 2015 08:43:07 +0200
-Subject: [PATCH 2/3] Enable subpixel rendering
+Subject: [PATCH 2/4] Enable subpixel rendering
 
 ---
  include/freetype/config/ftoption.h | 2 +-
@@ -8,7 +8,7 @@
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/include/freetype/config/ftoption.h 
b/include/freetype/config/ftoption.h
-index 90c123ef93e9ea04..67a361dd41e0b026 100644
+index 1bf6e8f534ff0734..1126716626b570df 100644
 --- a/include/freetype/config/ftoption.h
 +++ b/include/freetype/config/ftoption.h
 @@ -122,7 +122,7 @@ FT_BEGIN_HEADER
@@ -21,5 +21,5 @@
  
/*/
 -- 
-2.9.3
+2.13.0
 

Modified: 0003-Enable-infinality-subpixel-hinting.patch
===
--- 0003-Enable-infinality-subpixel-hinting.patch   2017-05-14 16:02:37 UTC 
(rev 295992)
+++ 0003-Enable-infinality-subpixel-hinting.patch   2017-05-14 16:28:08 UTC 
(rev 295993)
@@ -1,7 +1,7 @@
-From 220e96a9a8d7aff6ad0f0f1aa12c79cdb563331c Mon Sep 17 00:00:00 2001
+From 239cd8209c8d15a641d4548d386aeae4853b7d23 Mon Sep 17 00:00:00 2001
 From: "Jan Alexander Steffens (heftig)" 
 Date: Mon, 29 Aug 2016 08:43:10 +0200
-Subject: [PATCH 3/3] Enable infinality subpixel hinting
+Subject: [PATCH 3/4] Enable infinality subpixel hinting
 
 ---
  include/freetype/config/ftoption.h | 4 ++--
@@ -8,10 +8,10 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/include/freetype/config/ftoption.h 
b/include/freetype/config/ftoption.h
-index 67a361dd41e0b026..c4812862518b66a6 100644

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

2017-05-14 Thread Baptiste Jonglez
Date: Sunday, May 14, 2017 @ 16:23:34
  Author: zorun
Revision: 228017

opendht: import from AUR

Added:
  opendht/
  opendht/trunk/
  opendht/trunk/PKGBUILD

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

Added: opendht/trunk/PKGBUILD
===
--- opendht/trunk/PKGBUILD  (rev 0)
+++ opendht/trunk/PKGBUILD  2017-05-14 16:23:34 UTC (rev 228017)
@@ -0,0 +1,42 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=opendht
+pkgver=1.3.3
+pkgrel=1
+epoch=1
+pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
+arch=('i686' 'x86_64')
+depends=('gnutls' 'nettle' 'readline' 'argon2')
+makedepends=('msgpack-c' 'cmake' 'cython')
+optdepends=('python: to use the Python bindings')
+url="https://github.com/savoirfairelinux/opendht;
+license=('GPL3')
+source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('0ba0d3eedd38e1e6d1d62ae8a4181a5beb4b18b508145e40f9759fc687bc881d')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DOPENDHT_PYTHON=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Installing...'
+  cd build
+  make DESTDIR="$pkgdir" install
+  cd ..
+
+  msg2 'Installing documentation...'
+  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-05-14 Thread Baptiste Jonglez
Date: Sunday, May 14, 2017 @ 16:11:36
  Author: zorun
Revision: 228000

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

Added:
  argon2/repos/community-i686/
  argon2/repos/community-i686/PKGBUILD
(from rev 227999, argon2/trunk/PKGBUILD)
  argon2/repos/community-i686/libargon2.pc
(from rev 227999, argon2/trunk/libargon2.pc)
  argon2/repos/community-x86_64/
  argon2/repos/community-x86_64/PKGBUILD
(from rev 227999, argon2/trunk/PKGBUILD)
  argon2/repos/community-x86_64/libargon2.pc
(from rev 227999, argon2/trunk/libargon2.pc)

---+
 community-i686/PKGBUILD   |   38 ++
 community-i686/libargon2.pc   |   11 +++
 community-x86_64/PKGBUILD |   38 ++
 community-x86_64/libargon2.pc |   11 +++
 4 files changed, 98 insertions(+)

Copied: argon2/repos/community-i686/PKGBUILD (from rev 227999, 
argon2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 16:11:36 UTC (rev 228000)
@@ -0,0 +1,38 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=argon2
+pkgver=20161029
+pkgrel=2
+pkgdesc="A password-hashing function (reference C implementation)"
+arch=("x86_64" "i686")
+url="https://github.com/P-H-C/phc-winner-argon2;
+license=('Apache')
+depends=("glibc")
+source=("https://github.com/P-H-C/phc-winner-argon2/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+"libargon2.pc")
+sha256sums=('fe0049728b946b58b94cc6db89b34e2d050c62325d16316a534d2bedd78cd5e7'
+'4189ce6c183319ceaf2c4ec96facd424deeaa9e2819efb7511893bcf3ef5c836')
+
+prepare() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  cp "${srcdir}/libargon2.pc" libargon2.pc
+  sed -i -e "s/@UPSTREAM_VER@/${pkgver}/" libargon2.pc
+}
+
+build() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  make argon2 libs
+}
+
+check() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  make test
+}
+
+package() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  chmod -x "${pkgdir}/usr/include/argon2.h"
+  install -Dm644 libargon2.pc "${pkgdir}/usr/lib/pkgconfig/libargon2.pc"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: argon2/repos/community-i686/libargon2.pc (from rev 227999, 
argon2/trunk/libargon2.pc)
===
--- community-i686/libargon2.pc (rev 0)
+++ community-i686/libargon2.pc 2017-05-14 16:11:36 UTC (rev 228000)
@@ -0,0 +1,11 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${prefix}/lib
+includedir=${prefix}/include
+
+Name: libargon2
+Description: Development libraries for libargon2
+Version: @UPSTREAM_VER@
+Libs: -L${libdir} -largon2 -lrt -ldl
+Cflags:
+URL: https://github.com/P-H-C/phc-winner-argon2

Copied: argon2/repos/community-x86_64/PKGBUILD (from rev 227999, 
argon2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-14 16:11:36 UTC (rev 228000)
@@ -0,0 +1,38 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=argon2
+pkgver=20161029
+pkgrel=2
+pkgdesc="A password-hashing function (reference C implementation)"
+arch=("x86_64" "i686")
+url="https://github.com/P-H-C/phc-winner-argon2;
+license=('Apache')
+depends=("glibc")
+source=("https://github.com/P-H-C/phc-winner-argon2/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+"libargon2.pc")
+sha256sums=('fe0049728b946b58b94cc6db89b34e2d050c62325d16316a534d2bedd78cd5e7'
+'4189ce6c183319ceaf2c4ec96facd424deeaa9e2819efb7511893bcf3ef5c836')
+
+prepare() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  cp "${srcdir}/libargon2.pc" libargon2.pc
+  sed -i -e "s/@UPSTREAM_VER@/${pkgver}/" libargon2.pc
+}
+
+build() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  make argon2 libs
+}
+
+check() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  make test
+}
+
+package() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  chmod -x "${pkgdir}/usr/include/argon2.h"
+  install -Dm644 libargon2.pc "${pkgdir}/usr/lib/pkgconfig/libargon2.pc"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: argon2/repos/community-x86_64/libargon2.pc (from rev 227999, 
argon2/trunk/libargon2.pc)
===
--- community-x86_64/libargon2.pc   (rev 0)
+++ community-x86_64/libargon2.pc   2017-05-14 16:11:36 UTC (rev 228000)
@@ -0,0 +1,11 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${prefix}/lib
+includedir=${prefix}/include
+
+Name: libargon2
+Description: Development libraries for libargon2
+Version: @UPSTREAM_VER@
+Libs: -L${libdir} -largon2 -lrt -ldl
+Cflags:
+URL: https://github.com/P-H-C/phc-winner-argon2


[arch-commits] Commit in (5 files)

2017-05-14 Thread Baptiste Jonglez
Date: Sunday, May 14, 2017 @ 16:10:42
  Author: zorun
Revision: 227999

Add argon2

Added:
  argon2/
  argon2/repos/
  argon2/trunk/
  argon2/trunk/PKGBUILD
  argon2/trunk/libargon2.pc

--+
 PKGBUILD |   38 ++
 libargon2.pc |   11 +++
 2 files changed, 49 insertions(+)

Added: argon2/trunk/PKGBUILD
===
--- argon2/trunk/PKGBUILD   (rev 0)
+++ argon2/trunk/PKGBUILD   2017-05-14 16:10:42 UTC (rev 227999)
@@ -0,0 +1,38 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=argon2
+pkgver=20161029
+pkgrel=2
+pkgdesc="A password-hashing function (reference C implementation)"
+arch=("x86_64" "i686")
+url="https://github.com/P-H-C/phc-winner-argon2;
+license=('Apache')
+depends=("glibc")
+source=("https://github.com/P-H-C/phc-winner-argon2/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+"libargon2.pc")
+sha256sums=('fe0049728b946b58b94cc6db89b34e2d050c62325d16316a534d2bedd78cd5e7'
+'4189ce6c183319ceaf2c4ec96facd424deeaa9e2819efb7511893bcf3ef5c836')
+
+prepare() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  cp "${srcdir}/libargon2.pc" libargon2.pc
+  sed -i -e "s/@UPSTREAM_VER@/${pkgver}/" libargon2.pc
+}
+
+build() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  make argon2 libs
+}
+
+check() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  make test
+}
+
+package() {
+  cd "$srcdir/phc-winner-$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  chmod -x "${pkgdir}/usr/include/argon2.h"
+  install -Dm644 libargon2.pc "${pkgdir}/usr/lib/pkgconfig/libargon2.pc"
+}
+
+# vim:set ts=2 sw=2 et:

Added: argon2/trunk/libargon2.pc
===
--- argon2/trunk/libargon2.pc   (rev 0)
+++ argon2/trunk/libargon2.pc   2017-05-14 16:10:42 UTC (rev 227999)
@@ -0,0 +1,11 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${prefix}/lib
+includedir=${prefix}/include
+
+Name: libargon2
+Description: Development libraries for libargon2
+Version: @UPSTREAM_VER@
+Libs: -L${libdir} -largon2 -lrt -ldl
+Cflags:
+URL: https://github.com/P-H-C/phc-winner-argon2


[arch-commits] Commit in (agetpkg)

2017-05-14 Thread Sébastien Luttringer
Date: Sunday, May 14, 2017 @ 16:02:37
  Author: seblu
Revision: 295992

No time to fight

Deleted:
  agetpkg/


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 15:48:52
  Author: felixonmars
Revision: 227998

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

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

+
 community-staging-i686/PKGBUILD|   87 +++
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   87 +++
 community-staging-x86_64/stack.install |4 +
 4 files changed, 182 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 227997, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 15:48:52 UTC (rev 227998)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.4.0
+pkgrel=46
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base64-bytestring"
+ "haskell-binary-tagged" "haskell-blaze-builder" "haskell-clock" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptonite" 
"haskell-cryptonite-conduit"
+ "haskell-either" "haskell-errors" "haskell-exceptions" 
"haskell-extra"
+ "haskell-fast-logger" "haskell-file-embed" "haskell-filelock" 
"haskell-fsnotify"
+ "haskell-generic-deriving" "haskell-gitrev" 
"haskell-hackage-security"
+ "haskell-hashable" "haskell-hastache" "haskell-hit" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-conduit" 
"haskell-http-types" "haskell-hpack"
+ "haskell-lifted-async" "haskell-lifted-base" "haskell-memory" 
"haskell-microlens"
+ "haskell-microlens-mtl" "haskell-monad-control" 
"haskell-monad-logger"
+ "haskell-monad-unlift" "haskell-mtl" "haskell-network-uri" 
"haskell-open-browser"
+ "haskell-optparse-applicative" "haskell-optparse-simple" 
"haskell-path"
+ "haskell-path-io" "haskell-persistent" "haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-pid1" 
"haskell-project-template"
+ "haskell-regex-applicative-text" "haskell-resourcet" 
"haskell-retry" "haskell-safe"
+ "haskell-safe-exceptions" "haskell-semigroups" "haskell-split" 
"haskell-stm"
+ "haskell-store" "haskell-streaming-commons" "haskell-tar" 
"haskell-temporary"
+ "haskell-text" "haskell-text-binary" "haskell-text-metrics" 
"haskell-tls"
+ "haskell-transformers-base" "haskell-unicode-transforms" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-vector-binary-instances"
+ "haskell-yaml" "haskell-zip-archive" "haskell-zlib")
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;
+
"store-0.4.patch::https://github.com/commercialhaskell/stack/commit/d3637126b9045b266d2e53387e183915cb4a912d.patch;)
+sha256sums=('595d311ad117e41ad908b7065743917542b40f343d1334673e98171ee74d36e6'
+'63d0f620dcbde3a7f236aadab32f5fa3e2b93741dcf462392624bb30b6b49c16')
+
+prepare() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+patch -p1 -i ../store-0.4.patch
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r 

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 15:47:54
  Author: felixonmars
Revision: 227997

upgpkg: stack 1.4.0-46

rebuild with http-client-tls,0.3.4.2

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 15:08:19 UTC (rev 227996)
+++ PKGBUILD2017-05-14 15:47:54 UTC (rev 227997)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.4.0
-pkgrel=45
+pkgrel=46
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-05-14 Thread Sébastien Luttringer
Date: Sunday, May 14, 2017 @ 15:35:41
  Author: seblu
Revision: 295991

archrelease: copy trunk to extra-any

Added:
  archivetools/repos/extra-any/PKGBUILD
(from rev 295990, archivetools/trunk/PKGBUILD)
Deleted:
  archivetools/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-14 15:35:17 UTC (rev 295990)
+++ PKGBUILD2017-05-14 15:35:41 UTC (rev 295991)
@@ -1,28 +0,0 @@
-# Maintainer: Sébastien Luttringer
-
-pkgname=archivetools
-pkgver=1
-pkgrel=3
-pkgdesc='Arch Linux Archive Tools'
-arch=('any')
-url='https://github.com/seblu/archivetools'
-license=('GPL2')
-depends=('rsync' 'hardlink' 'xz' 'util-linux' 'systemd')
-makedepends=('git')
-backup=('etc/archive.conf')
-source=("git+https://github.com/seblu/archivetools.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-package() {
-  cd $pkgname
-  install -Dm644 archive.conf "$pkgdir/etc/archive.conf"
-  install -Dm755 archive.sh "$pkgdir/usr/bin/archive"
-  # systemd stuff
-  install -Dm644 archive.sysusers "$pkgdir/usr/lib/sysusers.d/archive.conf"
-  install -Dm644 archive.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/archive.conf"
-  for _p in archive.{timer,service} archive-hardlink.{timer,service}; do
-install -Dm644 $_p "$pkgdir/usr/lib/systemd/system/$_p"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: archivetools/repos/extra-any/PKGBUILD (from rev 295990, 
archivetools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-14 15:35:41 UTC (rev 295991)
@@ -0,0 +1,28 @@
+# Maintainer: Sébastien Luttringer
+
+pkgname=archivetools
+pkgver=2
+pkgrel=1
+pkgdesc='Arch Linux Archive Tools'
+arch=('any')
+url='https://github.com/seblu/archivetools'
+license=('GPL2')
+depends=('rsync' 'hardlink' 'xz' 'util-linux' 'systemd')
+makedepends=('git')
+backup=('etc/archive.conf')
+source=("git+https://github.com/seblu/archivetools.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+package() {
+  cd $pkgname
+  install -Dm644 archive.conf "$pkgdir/etc/archive.conf"
+  install -Dm755 archive.sh "$pkgdir/usr/bin/archive"
+  # systemd stuff
+  install -Dm644 archive.sysusers "$pkgdir/usr/lib/sysusers.d/archive.conf"
+  install -Dm644 archive.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/archive.conf"
+  for _p in archive.{timer,service} archive-hardlink.{timer,service}; do
+install -Dm644 $_p "$pkgdir/usr/lib/systemd/system/$_p"
+  done
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-05-14 Thread Sébastien Luttringer
Date: Sunday, May 14, 2017 @ 15:35:17
  Author: seblu
Revision: 295990

upgpkg: archivetools 2-1

Modified:
  archivetools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:08:22 UTC (rev 295989)
+++ PKGBUILD2017-05-14 15:35:17 UTC (rev 295990)
@@ -1,8 +1,8 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=archivetools
-pkgver=1
-pkgrel=3
+pkgver=2
+pkgrel=1
 pkgdesc='Arch Linux Archive Tools'
 arch=('any')
 url='https://github.com/seblu/archivetools'


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 15:08:19
  Author: felixonmars
Revision: 227996

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-14 15:07:59 UTC (rev 227995)
+++ PKGBUILD2017-05-14 15:08:19 UTC (rev 227996)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Hugo Osvaldo Barrera 
-# Contributor: Daniel M. Capella 
-# Contributor: Hugo Osvaldo Barrera 
-# Contributor: Limao Luo 
-# Contributor: Jeremy Sands 
-
-pkgbase=python-parsedatetime
-pkgname=('python-parsedatetime' 'python2-parsedatetime')
-pkgver=2.3
-pkgrel=1
-pkgdesc="Parse human-readable date/time strings."
-arch=('any')
-license=('Apache')
-url='http://github.com/bear/parsedatetime'
-makedepends=('python-pytest-runner' 'python2-pytest-runner' 'python-future' 
'python2-future' 'git')
-source=("git+https://github.com/bear/parsedatetime.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a parsedatetime{,-py2}
-}
-
-build() {
-  cd "$srcdir"/parsedatetime
-  python setup.py build
-
-  cd "$srcdir"/parsedatetime-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/parsedatetime
-  python setup.py pytest
-
-  cd "$srcdir"/parsedatetime-py2
-  python2 setup.py pytest
-}
-
-package_python-parsedatetime() {
-  depends=('python-future')
-
-  cd parsedatetime
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-parsedatetime() {
-  depends=('python2-future')
-
-  cd parsedatetime-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-parsedatetime/repos/community-any/PKGBUILD (from rev 227995, 
python-parsedatetime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-14 15:08:19 UTC (rev 227996)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Hugo Osvaldo Barrera 
+# Contributor: Daniel M. Capella 
+# Contributor: Hugo Osvaldo Barrera 
+# Contributor: Limao Luo 
+# Contributor: Jeremy Sands 
+
+pkgbase=python-parsedatetime
+pkgname=('python-parsedatetime' 'python2-parsedatetime')
+pkgver=2.4
+pkgrel=1
+pkgdesc="Parse human-readable date/time strings."
+arch=('any')
+license=('Apache')
+url='http://github.com/bear/parsedatetime'
+makedepends=('python-future' 'python2-future' 'python-setuptools' 
'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/bear/parsedatetime/archive/v$pkgver.tar.gz;)
+sha512sums=('0fd8bfa3411476a20d8874b44036bc162735fb7865d39ca98b0a608daec39daac47100314279dbf66229ec333821492744f7505315d955f58216fdaa75cbf046')
+
+prepare() {
+  cp -a parsedatetime-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/parsedatetime-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/parsedatetime-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/parsedatetime-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/parsedatetime-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-parsedatetime() {
+  depends=('python-future')
+
+  cd parsedatetime-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-parsedatetime() {
+  depends=('python2-future')
+
+  cd parsedatetime-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 15:07:59
  Author: felixonmars
Revision: 227995

upgpkg: python-parsedatetime 2.4-1

Modified:
  python-parsedatetime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 15:06:52 UTC (rev 227994)
+++ PKGBUILD2017-05-14 15:07:59 UTC (rev 227995)
@@ -8,33 +8,34 @@
 
 pkgbase=python-parsedatetime
 pkgname=('python-parsedatetime' 'python2-parsedatetime')
-pkgver=2.3
+pkgver=2.4
 pkgrel=1
 pkgdesc="Parse human-readable date/time strings."
 arch=('any')
 license=('Apache')
 url='http://github.com/bear/parsedatetime'
-makedepends=('python-pytest-runner' 'python2-pytest-runner' 'python-future' 
'python2-future' 'git')
-source=("git+https://github.com/bear/parsedatetime.git#tag=v$pkgver;)
-sha512sums=('SKIP')
+makedepends=('python-future' 'python2-future' 'python-setuptools' 
'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/bear/parsedatetime/archive/v$pkgver.tar.gz;)
+sha512sums=('0fd8bfa3411476a20d8874b44036bc162735fb7865d39ca98b0a608daec39daac47100314279dbf66229ec333821492744f7505315d955f58216fdaa75cbf046')
 
 prepare() {
-  cp -a parsedatetime{,-py2}
+  cp -a parsedatetime-$pkgver{,-py2}
 }
 
 build() {
-  cd "$srcdir"/parsedatetime
+  cd "$srcdir"/parsedatetime-$pkgver
   python setup.py build
 
-  cd "$srcdir"/parsedatetime-py2
+  cd "$srcdir"/parsedatetime-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir"/parsedatetime
+  cd "$srcdir"/parsedatetime-$pkgver
   python setup.py pytest
 
-  cd "$srcdir"/parsedatetime-py2
+  cd "$srcdir"/parsedatetime-$pkgver-py2
   python2 setup.py pytest
 }
 
@@ -41,7 +42,7 @@
 package_python-parsedatetime() {
   depends=('python-future')
 
-  cd parsedatetime
+  cd parsedatetime-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 }
 
@@ -48,6 +49,6 @@
 package_python2-parsedatetime() {
   depends=('python2-future')
 
-  cd parsedatetime-py2
+  cd parsedatetime-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
 }


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 15:06:52
  Author: felixonmars
Revision: 227994

archrelease: copy trunk to community-any

Added:
  cordova/repos/community-any/PKGBUILD
(from rev 227993, cordova/trunk/PKGBUILD)
  cordova/repos/community-any/cordova.install
(from rev 227993, cordova/trunk/cordova.install)
Deleted:
  cordova/repos/community-any/PKGBUILD
  cordova/repos/community-any/cordova.install

-+
 PKGBUILD|   66 +++---
 cordova.install |   20 
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-14 15:06:26 UTC (rev 227993)
+++ PKGBUILD2017-05-14 15:06:52 UTC (rev 227994)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=cordova
-pkgver=7.0.0
-pkgrel=1
-pkgdesc='Cordova command line interface tool'
-arch=('any')
-url='http://cordova.apache.org'
-license=('Apache')
-depends=('npm' 'acorn' 'semver' 'browserify')
-install=cordova.install
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
-noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('5e2bf6915506468d8c1e1b80ca42a11c9bc746423ff70306663dbc12b393714d8a31a6b420da785d598c99dd867c24aa6745367a868d70d39c4cc2678f444a5b')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn semver npm browserify; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/syntax-error/node_modules
-  for dep in acorn; do
-rm -r $dep;
-npm link $dep;
-  done
-}

Copied: cordova/repos/community-any/PKGBUILD (from rev 227993, 
cordova/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-14 15:06:52 UTC (rev 227994)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=cordova
+pkgver=7.0.1
+pkgrel=1
+pkgdesc='Cordova command line interface tool'
+arch=('any')
+url='http://cordova.apache.org'
+license=('Apache')
+depends=('npm' 'acorn' 'semver' 'browserify')
+install=cordova.install
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
+noextract=("$pkgname-$pkgver.tgz")
+sha512sums=('c256867e7d5399e7e0f0d7646da297b50b60a8a6d8f635af5ae418dae9fcd0e05aaf7a87bed27b1649ee884b337d7a69759be11e22f4008ac20bf4f028a8f766')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn semver npm browserify; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/syntax-error/node_modules
+  for dep in acorn; do
+rm -r $dep;
+npm link $dep;
+  done
+}

Deleted: cordova.install
===
--- cordova.install 2017-05-14 15:06:26 UTC (rev 227993)
+++ cordova.install 2017-05-14 15:06:52 UTC (rev 227994)
@@ -1,10 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules \
- /usr/lib/node_modules/cordova/node_modules \
- /usr/lib/node_modules/cordova/node_modules/.bin
-}
-
-post_upgrade() {
-  post_install
-}

Copied: cordova/repos/community-any/cordova.install (from rev 227993, 
cordova/trunk/cordova.install)
===
--- cordova.install (rev 0)
+++ cordova.install 2017-05-14 15:06:52 UTC (rev 227994)
@@ -0,0 +1,10 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules \
+ /usr/lib/node_modules/cordova/node_modules \
+ /usr/lib/node_modules/cordova/node_modules/.bin
+}
+
+post_upgrade() {
+  post_install
+}


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 15:06:26
  Author: felixonmars
Revision: 227993

upgpkg: cordova 7.0.1-1

Modified:
  cordova/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 15:04:19 UTC (rev 227992)
+++ PKGBUILD2017-05-14 15:06:26 UTC (rev 227993)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=cordova
-pkgver=7.0.0
+pkgver=7.0.1
 pkgrel=1
 pkgdesc='Cordova command line interface tool'
 arch=('any')
@@ -12,7 +12,7 @@
 install=cordova.install
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
 noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('5e2bf6915506468d8c1e1b80ca42a11c9bc746423ff70306663dbc12b393714d8a31a6b420da785d598c99dd867c24aa6745367a868d70d39c4cc2678f444a5b')
+sha512sums=('c256867e7d5399e7e0f0d7646da297b50b60a8a6d8f635af5ae418dae9fcd0e05aaf7a87bed27b1649ee884b337d7a69759be11e22f4008ac20bf4f028a8f766')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 15:04:19
  Author: felixonmars
Revision: 227992

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

Added:
  python-ruamel-yaml/repos/community-i686/PKGBUILD
(from rev 227991, python-ruamel-yaml/trunk/PKGBUILD)
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD
(from rev 227991, python-ruamel-yaml/trunk/PKGBUILD)
Deleted:
  python-ruamel-yaml/repos/community-i686/PKGBUILD
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-14 15:03:47 UTC (rev 227991)
+++ community-i686/PKGBUILD 2017-05-14 15:04:19 UTC (rev 227992)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.14.11
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('i686' 'x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('8df412495b30f299247360a809aeb3ce83b2a8fe195bedcbac3e9f28e25c9bd276860735d9a3740c1b28650eb2c8739adee98d2560a2108b05e0e9a28f81a3fa')
-
-prepare() {
-  export LC_CTYPE=en_US.UTF-8
-}
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-i686/PKGBUILD (from rev 227991, 
python-ruamel-yaml/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 15:04:19 UTC (rev 227992)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.14.12
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('i686' 'x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip')
+source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
+sha512sums=('6716c15619e36242d6535486fc2815a1f786494c317f28b2edbc6cac45360985bbd983f618932db4285c62d0aed6063eb44d2bf021e658882d178e4688ad3f25')
+
+prepare() {
+  export LC_CTYPE=en_US.UTF-8
+}
+
+package() {
+  depends=('python')
+
+  cd ruamel.yaml-$pkgver
+  pip install . --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-14 15:03:47 UTC (rev 227991)
+++ community-x86_64/PKGBUILD   2017-05-14 15:04:19 UTC (rev 227992)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.14.11
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('i686' 'x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('8df412495b30f299247360a809aeb3ce83b2a8fe195bedcbac3e9f28e25c9bd276860735d9a3740c1b28650eb2c8739adee98d2560a2108b05e0e9a28f81a3fa')
-
-prepare() {
-  export LC_CTYPE=en_US.UTF-8
-}
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-x86_64/PKGBUILD (from rev 227991, 
python-ruamel-yaml/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-14 15:04:19 UTC (rev 227992)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.14.12
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('i686' 'x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip')

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 15:03:47
  Author: felixonmars
Revision: 227991

upgpkg: python-ruamel-yaml 0.14.12-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:59:04 UTC (rev 227990)
+++ PKGBUILD2017-05-14 15:03:47 UTC (rev 227991)
@@ -4,7 +4,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.14.11
+pkgver=0.14.12
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=("MIT")
 makedepends=('python-pip')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('8df412495b30f299247360a809aeb3ce83b2a8fe195bedcbac3e9f28e25c9bd276860735d9a3740c1b28650eb2c8739adee98d2560a2108b05e0e9a28f81a3fa')
+sha512sums=('6716c15619e36242d6535486fc2815a1f786494c317f28b2edbc6cac45360985bbd983f618932db4285c62d0aed6063eb44d2bf021e658882d178e4688ad3f25')
 
 prepare() {
   export LC_CTYPE=en_US.UTF-8


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:59:04
  Author: felixonmars
Revision: 227990

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

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

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

Copied: purescript/repos/community-staging-i686/PKGBUILD (from rev 227989, 
purescript/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 14:59:04 UTC (rev 227990)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.11.4
+pkgrel=6
+pkgdesc="PureScript Programming Language Compiler"
+url="http://www.purescript.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-better-errors" 
"haskell-aeson-pretty"
+ "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-base-compat"
+ "haskell-blaze-html" "haskell-bower-json" "haskell-boxes" 
"haskell-cheapskate"
+ "haskell-clock" "haskell-data-ordlist" "haskell-dlist" 
"haskell-edit-distance"
+ "haskell-file-embed" "haskell-fsnotify" "haskell-glob" 
"haskell-http-client"
+ "haskell-http-types" "haskell-language-javascript" "haskell-lens" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mtl" 
"haskell-network"
+ "haskell-optparse-applicative" "haskell-parallel" "haskell-parsec"
+ "haskell-pattern-arrows" "haskell-pipes" "haskell-pipes-http" 
"haskell-protolude"
+ "haskell-regex-tdfa" "haskell-safe" "haskell-semigroups" 
"haskell-sourcemap"
+ "haskell-spdx" "haskell-split" "haskell-stm" "haskell-syb" 
"haskell-text"
+ "haskell-transformers-base" "haskell-transformers-compat"
+ "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-websockets" "haskell-warp" "haskell-websockets")
+optdepends=('pulp: for development environment')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('95beb7bd3e9ed69ecc82044065a25c77fc2693fd0597701eb9cfabb8e8901aa9716857a4fc50084da04253df51d7c9664f9f6b9e9e0d3d038864b12e869ef099')
+
+prepare() {
+sed -i 's/aeson >=1.0 && <1.1/aeson >=1.0/' 
${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-frelease
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share}
+}

Copied: purescript/repos/community-staging-x86_64/PKGBUILD (from rev 227989, 
purescript/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 14:59:04 UTC (rev 227990)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.11.4
+pkgrel=6
+pkgdesc="PureScript Programming Language Compiler"
+url="http://www.purescript.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-better-errors" 
"haskell-aeson-pretty"
+ "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-base-compat"
+ "haskell-blaze-html" "haskell-bower-json" "haskell-boxes" 
"haskell-cheapskate"
+ "haskell-clock" "haskell-data-ordlist" "haskell-dlist" 
"haskell-edit-distance"
+ "haskell-file-embed" "haskell-fsnotify" "haskell-glob" 
"haskell-http-client"
+ "haskell-http-types" "haskell-language-javascript" "haskell-lens" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mtl" 
"haskell-network"
+ "haskell-optparse-applicative" "haskell-parallel" "haskell-parsec"
+ "haskell-pattern-arrows" 

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:58:21
  Author: felixonmars
Revision: 227989

upgpkg: purescript 0.11.4-6

rebuild with http-client-tls,0.3.4.2

Modified:
  purescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:47:01 UTC (rev 227988)
+++ PKGBUILD2017-05-14 14:58:21 UTC (rev 227989)
@@ -4,7 +4,7 @@
 
 pkgname=purescript
 pkgver=0.11.4
-pkgrel=5
+pkgrel=6
 pkgdesc="PureScript Programming Language Compiler"
 url="http://www.purescript.org/;
 license=("custom:BSD3")


[arch-commits] Commit in certbot-apache/repos (2 files)

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:47:01
  Author: felixonmars
Revision: 227988

archrelease: copy trunk to community-testing-any

Added:
  certbot-apache/repos/community-testing-any/
  certbot-apache/repos/community-testing-any/PKGBUILD
(from rev 227987, certbot-apache/trunk/PKGBUILD)

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

Copied: certbot-apache/repos/community-testing-any/PKGBUILD (from rev 227987, 
certbot-apache/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-05-14 14:47:01 UTC (rev 227988)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=certbot-apache
+pkgver=0.14.0
+pkgrel=2
+pkgdesc="Apache plugin for Let’s Encrypt client"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+replaces=("letsencrypt-apache")
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-augeas' 'python-mock' 
'python-setuptools'
+ 'python-zope-component' 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('225c98b9879baedff9b067fee5246f12181bdcb44d13416ae67499b85b9ba82bfb4a41a681dcdce85a23f31db1f8499d9dec5b95abec154802d8dd6a287cfc60'
+'SKIP')
+
+prepare() {
+  sed -i "s/'python-augeas<=0.5.0',/'python-augeas',/" 
$pkgname-$pkgver/setup.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  python setup.py test || warning "Tests failed"
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install -O1 --root="$pkgdir"
+}


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:46:44
  Author: felixonmars
Revision: 227987

upgpkg: certbot-apache 0.14.0-2

Modified:
  certbot-apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:34:40 UTC (rev 227986)
+++ PKGBUILD2017-05-14 14:46:44 UTC (rev 227987)
@@ -4,15 +4,14 @@
 
 pkgname=certbot-apache
 pkgver=0.14.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Apache plugin for Let’s Encrypt client"
 arch=('any')
 license=('Apache')
 url="https://pypi.python.org/pypi/$pkgname;
-depends=("certbot=$pkgver" "python2-acme=$pkgver" 'python2-augeas' 
'python2-setuptools'
- 'python2-mock' 'python2-zope-component' 'python2-zope-interface')
-checkdepends=('python2-nose')
 replaces=("letsencrypt-apache")
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-augeas' 'python-mock' 
'python-setuptools'
+ 'python-zope-component' 'python-zope-interface')
 
source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
   '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
@@ -20,17 +19,21 @@
 
sha512sums=('225c98b9879baedff9b067fee5246f12181bdcb44d13416ae67499b85b9ba82bfb4a41a681dcdce85a23f31db1f8499d9dec5b95abec154802d8dd6a287cfc60'
 'SKIP')
 
+prepare() {
+  sed -i "s/'python-augeas<=0.5.0',/'python-augeas',/" 
$pkgname-$pkgver/setup.py
+}
+
 build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py build
+  cd $pkgname-$pkgver
+  python setup.py build
 }
 
 check() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py nosetests || warning "Tests failed"
+  cd $pkgname-$pkgver
+  python setup.py test || warning "Tests failed"
 }
 
 package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py install -O1 --root="$pkgdir"
+  cd $pkgname-$pkgver
+  python setup.py install -O1 --root="$pkgdir"
 }


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:34:40
  Author: felixonmars
Revision: 227986

archrelease: copy trunk to community-testing-any

Added:
  python-augeas/repos/community-testing-any/
  python-augeas/repos/community-testing-any/PKGBUILD
(from rev 227985, python-augeas/trunk/PKGBUILD)

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

Copied: python-augeas/repos/community-testing-any/PKGBUILD (from rev 227985, 
python-augeas/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-05-14 14:34:40 UTC (rev 227986)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=python-augeas
+pkgver=1.0.2
+pkgrel=1
+pkgdesc="Python bindings for Augeas"
+arch=('any')
+license=('LGPL')
+url="http://augeas.net;
+depends=('augeas' 'python-cffi')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/p/python-augeas/python-augeas-$pkgver.tar.gz;)
+sha512sums=('c24c8f01420ca474be2903d3da35a246fa74f5ae848bb9267bf4a2166d3a4c64fa4d29a1c5aad6dac3c43251cda90673d6a5a72e6ebdd192e147baa03281e727')
+
+build() {
+  cd python-augeas-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-augeas-$pkgver
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" make check
+}
+
+package() {
+  cd python-augeas-$pkgver
+  python setup.py install --skip-build -O1 --root="$pkgdir"
+}


[arch-commits] Commit in haskell-pipes-http/repos (4 files)

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:34:11
  Author: felixonmars
Revision: 227985

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

Added:
  haskell-pipes-http/repos/community-staging-i686/
  haskell-pipes-http/repos/community-staging-i686/PKGBUILD
(from rev 227984, haskell-pipes-http/trunk/PKGBUILD)
  haskell-pipes-http/repos/community-staging-x86_64/
  haskell-pipes-http/repos/community-staging-x86_64/PKGBUILD
(from rev 227984, haskell-pipes-http/trunk/PKGBUILD)

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

Copied: haskell-pipes-http/repos/community-staging-i686/PKGBUILD (from rev 
227984, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 14:34:11 UTC (rev 227985)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=30
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-pipes-http/repos/community-staging-x86_64/PKGBUILD (from rev 
227984, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 14:34:11 UTC (rev 227985)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=30
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f 

[arch-commits] Commit in haskell-pipes-http/trunk (PKGBUILD)

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:33:45
  Author: felixonmars
Revision: 227984

upgpkg: haskell-pipes-http 1.0.5-30

rebuild with http-client-tls,0.3.4.2

Modified:
  haskell-pipes-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:33:38 UTC (rev 227983)
+++ PKGBUILD2017-05-14 14:33:45 UTC (rev 227984)
@@ -5,7 +5,7 @@
 _hkgname=pipes-http
 pkgname=haskell-pipes-http
 pkgver=1.0.5
-pkgrel=29
+pkgrel=30
 pkgdesc="HTTP client with pipes interface"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:33:38
  Author: felixonmars
Revision: 227983

upgpkg: python-augeas 1.0.2-1

Modified:
  python-augeas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:31:26 UTC (rev 227982)
+++ PKGBUILD2017-05-14 14:33:38 UTC (rev 227983)
@@ -3,16 +3,16 @@
 # Contributor: Massimiliano Torromeo 
 
 pkgname=python-augeas
-pkgver=0.5.0
+pkgver=1.0.2
 pkgrel=1
-pkgdesc="Pure python bindings for augeas"
+pkgdesc="Python bindings for Augeas"
 arch=('any')
 license=('LGPL')
 url="http://augeas.net;
-depends=('augeas' 'python')
+depends=('augeas' 'python-cffi')
 makedepends=('python-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/p/python-augeas/python-augeas-$pkgver.tar.gz;)
-sha512sums=('d93d9e21c720084ee3c1841a2172dd1a4cfb41e668de0f557bd214efd65e685a1e5fc713a7d34e0fed727fe908bb1e8a09a1c10587bc27f3708cbcdee575cc51')
+sha512sums=('c24c8f01420ca474be2903d3da35a246fa74f5ae848bb9267bf4a2166d3a4c64fa4d29a1c5aad6dac3c43251cda90673d6a5a72e6ebdd192e147baa03281e727')
 
 build() {
   cd python-augeas-$pkgver
@@ -19,6 +19,11 @@
   python setup.py build
 }
 
+check() {
+  cd python-augeas-$pkgver
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" make check
+}
+
 package() {
   cd python-augeas-$pkgver
   python setup.py install --skip-build -O1 --root="$pkgdir"


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:31:26
  Author: felixonmars
Revision: 227982

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

Added:
  pandoc-crossref/repos/community-staging-i686/
  pandoc-crossref/repos/community-staging-i686/PKGBUILD
(from rev 227981, pandoc-crossref/trunk/PKGBUILD)
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 227981, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 227981, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 14:31:26 UTC (rev 227982)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.2.5.0
+pkgrel=37
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('d4d93bbe448e2cf187a0b7bcc605d0445e28021e4e31bfef890b93bee2b28491')
+
+prepare() {
+sed -i 's/pandoc >= 1.17.1 && <1.19/pandoc >= 1.17.1 \&\& <1.20/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc-crossref() {
+depends=('pandoc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share}
+}
+
+package_haskell-pandoc-crossref() {
+pkgdesc="Pandoc filter for cross-references (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-crossref')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
227981, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 14:31:26 UTC (rev 227982)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.2.5.0
+pkgrel=37
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('d4d93bbe448e2cf187a0b7bcc605d0445e28021e4e31bfef890b93bee2b28491')
+
+prepare() {
+sed -i 's/pandoc >= 1.17.1 && <1.19/pandoc >= 1.17.1 \&\& <1.20/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:30:53
  Author: felixonmars
Revision: 227981

upgpkg: pandoc-crossref 0.2.5.0-37

rebuild with http-client-tls,0.3.4.2

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:25:06 UTC (rev 227980)
+++ PKGBUILD2017-05-14 14:30:53 UTC (rev 227981)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-crossref
 pkgname=(pandoc-crossref haskell-pandoc-crossref)
 pkgver=0.2.5.0
-pkgrel=36
+pkgrel=37
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("GPL2")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:25:06
  Author: felixonmars
Revision: 227980

archrelease: copy trunk to community-any

Added:
  python-augeas/repos/community-any/
  python-augeas/repos/community-any/PKGBUILD
(from rev 227979, python-augeas/trunk/PKGBUILD)

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

Copied: python-augeas/repos/community-any/PKGBUILD (from rev 227979, 
python-augeas/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-05-14 14:25:06 UTC (rev 227980)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=python-augeas
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="Pure python bindings for augeas"
+arch=('any')
+license=('LGPL')
+url="http://augeas.net;
+depends=('augeas' 'python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/p/python-augeas/python-augeas-$pkgver.tar.gz;)
+sha512sums=('d93d9e21c720084ee3c1841a2172dd1a4cfb41e668de0f557bd214efd65e685a1e5fc713a7d34e0fed727fe908bb1e8a09a1c10587bc27f3708cbcdee575cc51')
+
+build() {
+  cd python-augeas-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd python-augeas-$pkgver
+  python setup.py install --skip-build -O1 --root="$pkgdir"
+}


[arch-commits] Commit in (4 files)

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:24:47
  Author: felixonmars
Revision: 227979

addpkg: python-augeas 0.5.0-1

Added:
  python-augeas/
  python-augeas/repos/
  python-augeas/trunk/
  python-augeas/trunk/PKGBUILD

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

Added: python-augeas/trunk/PKGBUILD
===
--- python-augeas/trunk/PKGBUILD(rev 0)
+++ python-augeas/trunk/PKGBUILD2017-05-14 14:24:47 UTC (rev 227979)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=python-augeas
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="Pure python bindings for augeas"
+arch=('any')
+license=('LGPL')
+url="http://augeas.net;
+depends=('augeas' 'python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/p/python-augeas/python-augeas-$pkgver.tar.gz;)
+sha512sums=('d93d9e21c720084ee3c1841a2172dd1a4cfb41e668de0f557bd214efd65e685a1e5fc713a7d34e0fed727fe908bb1e8a09a1c10587bc27f3708cbcdee575cc51')
+
+build() {
+  cd python-augeas-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd python-augeas-$pkgver
+  python setup.py install --skip-build -O1 --root="$pkgdir"
+}


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


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:23:52
  Author: felixonmars
Revision: 227977

upgpkg: haskell-hakyll 4.9.5.1-54

rebuild with http-client-tls,0.3.4.2

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:19:12 UTC (rev 227976)
+++ PKGBUILD2017-05-14 14:23:52 UTC (rev 227977)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.5.1
-pkgrel=53
+pkgrel=54
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:24:19
  Author: felixonmars
Revision: 227978

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

Added:
  haskell-hakyll/repos/community-staging-i686/
  haskell-hakyll/repos/community-staging-i686/PKGBUILD
(from rev 227977, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 227977, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 227977, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 14:24:19 UTC (rev 227978)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=54
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('8deca33939717372ca227559dfe82aa0b02af49b19e9ea60051f555dcee2cfe6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
227977, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 14:24:19 UTC (rev 227978)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=54
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")

[arch-commits] Commit in certbot-nginx/repos (2 files)

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:19:12
  Author: felixonmars
Revision: 227976

archrelease: copy trunk to community-testing-any

Added:
  certbot-nginx/repos/community-testing-any/
  certbot-nginx/repos/community-testing-any/PKGBUILD
(from rev 227975, certbot-nginx/trunk/PKGBUILD)

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

Copied: certbot-nginx/repos/community-testing-any/PKGBUILD (from rev 227975, 
certbot-nginx/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-05-14 14:19:12 UTC (rev 227976)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=certbot-nginx
+pkgver=0.14.0
+pkgrel=2
+pkgdesc="Nginx plugin for Let’s Encrypt client"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-mock' 
'python-pyopenssl' 'python-pyparsing'
+ 'python-setuptools' 'python-zope-interface')
+replaces=("letsencrypt-nginx")
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('583cbf40e1f859bcc6fa805ae08b923961eaf0c7025178f56a9d853dced32c8a6178119c68a4f48443227e8c78afbeaa49e2dfcd1c956d158617c309f51f5c7d'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:18:54
  Author: felixonmars
Revision: 227975

upgpkg: certbot-nginx 0.14.0-2

Modified:
  certbot-nginx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:17:12 UTC (rev 227974)
+++ PKGBUILD2017-05-14 14:18:54 UTC (rev 227975)
@@ -4,14 +4,13 @@
 
 pkgname=certbot-nginx
 pkgver=0.14.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Nginx plugin for Let’s Encrypt client"
 arch=('any')
 license=('Apache')
 url="https://pypi.python.org/pypi/$pkgname;
-depends=("certbot=$pkgver" "python2-acme=$pkgver" 'python2-pyopenssl' 
'python2-pyparsing'
- 'python2-setuptools' 'python2-mock' 'python2-zope-interface')
-checkdepends=('python2-nose')
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-mock' 
'python-pyopenssl' 'python-pyparsing'
+ 'python-setuptools' 'python-zope-interface')
 replaces=("letsencrypt-nginx")
 
source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
@@ -22,15 +21,15 @@
 
 build() {
   cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py build
+  python setup.py build
 }
 
 check() {
   cd "$srcdir"/$pkgname-$pkgver
-  nosetests2
+  python setup.py test
 }
 
 package() {
   cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py install --root="$pkgdir"
+  python setup.py install --root="$pkgdir"
 }


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:16:45
  Author: felixonmars
Revision: 227973

upgpkg: pandoc-citeproc 0.10.4.1-44

rebuild with http-client-tls,0.3.4.2

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 14:15:14 UTC (rev 227972)
+++ PKGBUILD2017-05-14 14:16:45 UTC (rev 227973)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.10.4.1
-pkgrel=43
+pkgrel=44
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("custom:BSD3")


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:17:12
  Author: felixonmars
Revision: 227974

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

Added:
  pandoc-citeproc/repos/community-staging-i686/
  pandoc-citeproc/repos/community-staging-i686/PKGBUILD
(from rev 227973, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 227973, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 227973, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-14 14:17:12 UTC (rev 227974)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.4.1
+pkgrel=44
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-xml-conduit" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('6e6b0a89a831f9bfaa33dc0f3dff1792ee1626a5e66e1bd34da9447cd3c7de51')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc-citeproc() {
+depends=('pandoc' 'icu')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_haskell-pandoc-citeproc() {
+pkgdesc="Supports using pandoc with citeproc (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-citeproc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgbase}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc-citeproc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
227973, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-14 14:17:12 UTC (rev 227974)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.4.1
+pkgrel=44
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+  

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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:15:14
  Author: felixonmars
Revision: 227972

archrelease: copy trunk to community-testing-any

Added:
  certbot/repos/community-testing-any/
  certbot/repos/community-testing-any/PKGBUILD
(from rev 227971, certbot/trunk/PKGBUILD)

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

Copied: certbot/repos/community-testing-any/PKGBUILD (from rev 227971, 
certbot/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-05-14 14:15:14 UTC (rev 227972)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=certbot
+pkgver=0.14.0
+pkgrel=2
+pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
+arch=('any')
+license=('Apache')
+url="https://letsencrypt.org/;
+depends=('ca-certificates' "python-acme=$pkgver" 'python-configargparse' 
'python-configobj'
+ 'python-cryptography' 'python-pyopenssl' 'python-mock' 
'python-parsedatetime'
+ 'python-pytz' 'python-setuptools' 'python-six' 'python-zope-component'
+ 'python-zope-interface')
+optdepends=("certbot-apache: Apache plugin for Let’s Encrypt client"
+"certbot-nginx: Nginx plugin for Let’s Encrypt client")
+checkdepends=('python-nose')
+replaces=("letsencrypt")
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('0b11e24cee48a354e11c322c669585f953957b0776050647e9e477c642900ca6c2876192f903c91782a5d11a2129c60916fa6090f9aaac45f0b6045ad4eb'
+'SKIP')
+
+prepare() {
+  sed -i "/'argparse',/d" $pkgname-$pkgver/setup.py
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+
+  mkdir -p "$pkgdir"/{etc,var/lib,var/log}/letsencrypt
+  chmod 700 "$pkgdir"/var/log/letsencrypt
+}


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

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:14:57
  Author: felixonmars
Revision: 227971

upgpkg: certbot 0.14.0-2

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 12:51:04 UTC (rev 227970)
+++ PKGBUILD2017-05-14 14:14:57 UTC (rev 227971)
@@ -4,18 +4,18 @@
 
 pkgname=certbot
 pkgver=0.14.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool to automatically receive and install X.509 certificates to 
enable TLS on servers. The client will interoperate with the Let’s Encrypt CA 
which will be issuing browser-trusted certificates for free."
 arch=('any')
 license=('Apache')
 url="https://letsencrypt.org/;
-depends=('ca-certificates' "python2-acme=$pkgver" 'python2-configargparse' 
'python2-configobj'
- 'python2-cryptography' 'python2-pyopenssl' 'python2-mock' 
'python2-parsedatetime'
- 'python2-psutil' 'python2-pyrfc3339' 'python2-pytz' 
'python2-requests' 'python2-setuptools'
- 'python2-six' 'python2-zope-component' 'python2-zope-interface')
+depends=('ca-certificates' "python-acme=$pkgver" 'python-configargparse' 
'python-configobj'
+ 'python-cryptography' 'python-pyopenssl' 'python-mock' 
'python-parsedatetime'
+ 'python-pytz' 'python-setuptools' 'python-six' 'python-zope-component'
+ 'python-zope-interface')
 optdepends=("certbot-apache: Apache plugin for Let’s Encrypt client"
 "certbot-nginx: Nginx plugin for Let’s Encrypt client")
-checkdepends=('python2-nose')
+checkdepends=('python-nose')
 replaces=("letsencrypt")
 
source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
@@ -30,17 +30,17 @@
 
 build() {
   cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py build
+  python setup.py build
 }
 
 check() {
   cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py test
+  python setup.py test
 }
 
 package() {
   cd "$srcdir"/$pkgname-$pkgver
-  python2 setup.py install --root="$pkgdir"
+  python setup.py install --root="$pkgdir"
 
   mkdir -p "$pkgdir"/{etc,var/lib,var/log}/letsencrypt
   chmod 700 "$pkgdir"/var/log/letsencrypt


[arch-commits] Commit in python2-backports.functools_lru_cache/repos/extra-any (2 files)

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:08:22
  Author: felixonmars
Revision: 295989

archrelease: copy trunk to extra-any

Added:
  python2-backports.functools_lru_cache/repos/extra-any/PKGBUILD
(from rev 295988, python2-backports.functools_lru_cache/trunk/PKGBUILD)
Deleted:
  python2-backports.functools_lru_cache/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-14 14:07:59 UTC (rev 295988)
+++ PKGBUILD2017-05-14 14:08:22 UTC (rev 295989)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Crass00 
-
-pkgname=python2-backports.functools_lru_cache
-pkgver=1.4
-pkgrel=1
-pkgdesc="Backport of functools.lru_cache from Python 3.3"
-arch=('any')
-url="https://github.com/jaraco/backports.functools_lru_cache;
-license=('MIT')
-depends=('python2-backports')
-makedepends=('python2-setuptools-scm')
-checkdepends=('python2-pytest-runner')
-optdepends=('python2-ipaddress: for IPAddress ServerAltnames support')
-source=("https://pypi.io/packages/source/b/backports.functools_lru_cache/backports.functools_lru_cache-$pkgver.tar.gz;)
-sha512sums=('78dcd12f392bc110d1556f567a9f8fe977fa4ddc98a2121ceaf43606687171866832b8d32220dfb4ca335f53e89acecabda9e48ad48571f1741b21ab2d3b8a21')
-
-build() {
-  cd backports.functools_lru_cache-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd backports.functools_lru_cache-$pkgver
-  python2 setup.py pytest
-}
-
-package() {
-  cd backports.functools_lru_cache-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python2-backports.functools_lru_cache/repos/extra-any/PKGBUILD (from 
rev 295988, python2-backports.functools_lru_cache/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-14 14:08:22 UTC (rev 295989)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Crass00 
+
+pkgname=python2-backports.functools_lru_cache
+pkgver=1.4
+pkgrel=2
+pkgdesc="Backport of functools.lru_cache from Python 3.3"
+arch=('any')
+url="https://github.com/jaraco/backports.functools_lru_cache;
+license=('MIT')
+depends=('python2-backports')
+makedepends=('python2-setuptools-scm')
+checkdepends=('python2-pytest-runner')
+optdepends=('python2-ipaddress: for IPAddress ServerAltnames support')
+source=("https://pypi.io/packages/source/b/backports.functools_lru_cache/backports.functools_lru_cache-$pkgver.tar.gz;)
+sha512sums=('78dcd12f392bc110d1556f567a9f8fe977fa4ddc98a2121ceaf43606687171866832b8d32220dfb4ca335f53e89acecabda9e48ad48571f1741b21ab2d3b8a21')
+
+build() {
+  cd backports.functools_lru_cache-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd backports.functools_lru_cache-$pkgver
+  python2 setup.py pytest
+}
+
+package() {
+  cd backports.functools_lru_cache-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  rm "$pkgdir"/usr/lib/python2.7/site-packages/backports/__init__.py*
+}


[arch-commits] Commit in python2-backports.functools_lru_cache/trunk (PKGBUILD)

2017-05-14 Thread Felix Yan
Date: Sunday, May 14, 2017 @ 14:07:59
  Author: felixonmars
Revision: 295988

upgpkg: python2-backports.functools_lru_cache 1.4-2

remove conflicting files

Modified:
  python2-backports.functools_lru_cache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 09:53:45 UTC (rev 295987)
+++ PKGBUILD2017-05-14 14:07:59 UTC (rev 295988)
@@ -4,7 +4,7 @@
 
 pkgname=python2-backports.functools_lru_cache
 pkgver=1.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Backport of functools.lru_cache from Python 3.3"
 arch=('any')
 url="https://github.com/jaraco/backports.functools_lru_cache;
@@ -29,4 +29,6 @@
 package() {
   cd backports.functools_lru_cache-$pkgver
   python2 setup.py install --root="$pkgdir" --optimize=1
+
+  rm "$pkgdir"/usr/lib/python2.7/site-packages/backports/__init__.py*
 }


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

2017-05-14 Thread Bruno Pagani
Date: Sunday, May 14, 2017 @ 12:51:04
  Author: archange
Revision: 227970

archrelease: copy trunk to community-any

Added:
  arc-kde/repos/community-any/PKGBUILD
(from rev 227969, arc-kde/trunk/PKGBUILD)
Deleted:
  arc-kde/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-14 12:50:49 UTC (rev 227969)
+++ PKGBUILD2017-05-14 12:51:04 UTC (rev 227970)
@@ -1,24 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=arc-kde
-pkgver=20170218
-pkgrel=1
-pkgdesc="Arc theme for KDE Plasma 5"
-arch=('any')
-url="https://github.com/PapirusDevelopmentTeam/${pkgname};
-license=('GPL3')
-options=('!strip')
-source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz")
-sha256sums=('5c7dbe80f06b027527ada72b43934d116aed0c2a5717a3103946c7c45a5d74d7')
-
-package() {
-cd ${pkgname}-${pkgver}
-mkdir -p ${pkgdir}/usr/share
- 
-cp -r plasma "${pkgdir}"/usr/share
-cp -r aurorae "${pkgdir}"/usr/share
-cp -r color-schemes "${pkgdir}"/usr/share
-cp -r konsole "${pkgdir}"/usr/share
-# Not sure whether this is the right place to provide this script…
-rm "${pkgdir}"/usr/share/plasma/desktoptheme/Arc-Dark/fix-menubar.sh
-}

Copied: arc-kde/repos/community-any/PKGBUILD (from rev 227969, 
arc-kde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-14 12:51:04 UTC (rev 227970)
@@ -0,0 +1,24 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=arc-kde
+pkgver=20170423
+pkgrel=1
+pkgdesc="Arc theme for KDE Plasma 5"
+arch=('any')
+url="https://github.com/PapirusDevelopmentTeam/${pkgname};
+license=('GPL3')
+options=('!strip')
+source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz")
+sha256sums=('bd6a139ef990f3a8acbc06a26c280c299ff705c6c56eb90af320507d2ecec7ae')
+
+package() {
+cd ${pkgname}-${pkgver}
+mkdir -p ${pkgdir}/usr/share
+ 
+cp -r plasma "${pkgdir}"/usr/share
+cp -r aurorae "${pkgdir}"/usr/share
+cp -r color-schemes "${pkgdir}"/usr/share
+cp -r konsole "${pkgdir}"/usr/share
+# Not sure whether this is the right place to provide this script…
+rm "${pkgdir}"/usr/share/plasma/desktoptheme/Arc-Dark/fix-menubar.sh
+}


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

2017-05-14 Thread Bruno Pagani
Date: Sunday, May 14, 2017 @ 12:50:49
  Author: archange
Revision: 227969

upgpkg: arc-kde 20170423-1

Upstream update to 20170423

Modified:
  arc-kde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 12:40:39 UTC (rev 227968)
+++ PKGBUILD2017-05-14 12:50:49 UTC (rev 227969)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=arc-kde
-pkgver=20170218
+pkgver=20170423
 pkgrel=1
 pkgdesc="Arc theme for KDE Plasma 5"
 arch=('any')
@@ -9,7 +9,7 @@
 license=('GPL3')
 options=('!strip')
 source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz")
-sha256sums=('5c7dbe80f06b027527ada72b43934d116aed0c2a5717a3103946c7c45a5d74d7')
+sha256sums=('bd6a139ef990f3a8acbc06a26c280c299ff705c6c56eb90af320507d2ecec7ae')
 
 package() {
 cd ${pkgname}-${pkgver}


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

2017-05-14 Thread Antonio Rojas
Date: Sunday, May 14, 2017 @ 12:40:39
  Author: arojas
Revision: 227968

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

Added:
  qt5ct/repos/community-i686/PKGBUILD
(from rev 227967, qt5ct/trunk/PKGBUILD)
  qt5ct/repos/community-x86_64/PKGBUILD
(from rev 227967, qt5ct/trunk/PKGBUILD)
Deleted:
  qt5ct/repos/community-i686/PKGBUILD
  qt5ct/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-05-14 12:40:11 UTC (rev 227967)
+++ community-i686/PKGBUILD 2017-05-14 12:40:39 UTC (rev 227968)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: FadeMind 
-# Contributor: Zatherz 
-
-pkgname=qt5ct
-pkgver=0.31
-pkgrel=1
-pkgdesc="Qt5 Configuration Utility"
-arch=(i686 x86_64)
-url="http://qt5ct.sourceforge.net;
-license=(BSD)
-depends=(qt5-svg)
-makedepends=(qt5-tools)
-source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('d5357768832a81e39aa9cd0a45d8144de9bd59302d8d122d8c2d1a231be2aba9')
-
-build() {
-cd $pkgname-$pkgver
-qmake-qt5 $pkgname.pro 
-make
-}
-
-package() {
-cd $pkgname-$pkgver
-make INSTALL_ROOT="$pkgdir" install
-
-install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-} 
-

Copied: qt5ct/repos/community-i686/PKGBUILD (from rev 227967, 
qt5ct/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-14 12:40:39 UTC (rev 227968)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: FadeMind 
+# Contributor: Zatherz 
+
+pkgname=qt5ct
+pkgver=0.32
+pkgrel=1
+pkgdesc="Qt5 Configuration Utility"
+arch=(i686 x86_64)
+url="http://qt5ct.sourceforge.net;
+license=(BSD)
+depends=(qt5-svg)
+makedepends=(qt5-tools)
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('d501975f876aeb7a4c9814c9b9a46eb20804c3e0ee2b5d5e7b1b3d244dc7f53f')
+
+build() {
+cd $pkgname-$pkgver
+qmake-qt5 $pkgname.pro 
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make INSTALL_ROOT="$pkgdir" install
+
+install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+} 
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-14 12:40:11 UTC (rev 227967)
+++ community-x86_64/PKGBUILD   2017-05-14 12:40:39 UTC (rev 227968)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: FadeMind 
-# Contributor: Zatherz 
-
-pkgname=qt5ct
-pkgver=0.31
-pkgrel=1
-pkgdesc="Qt5 Configuration Utility"
-arch=(i686 x86_64)
-url="http://qt5ct.sourceforge.net;
-license=(BSD)
-depends=(qt5-svg)
-makedepends=(qt5-tools)
-source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('d5357768832a81e39aa9cd0a45d8144de9bd59302d8d122d8c2d1a231be2aba9')
-
-build() {
-cd $pkgname-$pkgver
-qmake-qt5 $pkgname.pro 
-make
-}
-
-package() {
-cd $pkgname-$pkgver
-make INSTALL_ROOT="$pkgdir" install
-
-install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-} 
-

Copied: qt5ct/repos/community-x86_64/PKGBUILD (from rev 227967, 
qt5ct/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-14 12:40:39 UTC (rev 227968)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: FadeMind 
+# Contributor: Zatherz 
+
+pkgname=qt5ct
+pkgver=0.32
+pkgrel=1
+pkgdesc="Qt5 Configuration Utility"
+arch=(i686 x86_64)
+url="http://qt5ct.sourceforge.net;
+license=(BSD)
+depends=(qt5-svg)
+makedepends=(qt5-tools)
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('d501975f876aeb7a4c9814c9b9a46eb20804c3e0ee2b5d5e7b1b3d244dc7f53f')
+
+build() {
+cd $pkgname-$pkgver
+qmake-qt5 $pkgname.pro 
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make INSTALL_ROOT="$pkgdir" install
+
+install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+} 
+


  1   2   >