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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:08:03
  Author: foutrelis
Revision: 216007

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

Added:
  fossil/repos/community-staging-i686/
  fossil/repos/community-staging-i686/PKGBUILD
(from rev 216006, fossil/trunk/PKGBUILD)
  fossil/repos/community-staging-i686/fossil-xinetd
(from rev 216006, fossil/trunk/fossil-xinetd)
  fossil/repos/community-staging-i686/fossil.service
(from rev 216006, fossil/trunk/fossil.service)
  fossil/repos/community-staging-i686/fossil.socket
(from rev 216006, fossil/trunk/fossil.socket)
  fossil/repos/community-staging-x86_64/
  fossil/repos/community-staging-x86_64/PKGBUILD
(from rev 216006, fossil/trunk/PKGBUILD)
  fossil/repos/community-staging-x86_64/fossil-xinetd
(from rev 216006, fossil/trunk/fossil-xinetd)
  fossil/repos/community-staging-x86_64/fossil.service
(from rev 216006, fossil/trunk/fossil.service)
  fossil/repos/community-staging-x86_64/fossil.socket
(from rev 216006, fossil/trunk/fossil.socket)

-+
 community-staging-i686/PKGBUILD |   43 ++
 community-staging-i686/fossil-xinetd|   23 
 community-staging-i686/fossil.service   |   11 +++
 community-staging-i686/fossil.socket|   10 ++
 community-staging-x86_64/PKGBUILD   |   43 ++
 community-staging-x86_64/fossil-xinetd  |   23 
 community-staging-x86_64/fossil.service |   11 +++
 community-staging-x86_64/fossil.socket  |   10 ++
 8 files changed, 174 insertions(+)

Copied: fossil/repos/community-staging-i686/PKGBUILD (from rev 216006, 
fossil/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-13 04:08:03 UTC (rev 216007)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Anatol Pomozov  
+# Contributor: Daniel YC Lin 
+# Contributor: Konstantin Plotnikov 
+
+pkgname=fossil
+pkgver=2.0
+pkgrel=2
+pkgdesc='Simple, high-reliability, distributed software configuration 
management'
+arch=(i686 x86_64)
+license=(BSD)
+url='http://www.fossil-scm.org'
+depends=(openssl zlib sqlite)
+backup=(etc/xinetd.d/fossil)
+source=(
+  fossil.socket
+  fossil.service
+  fossil-xinetd
+  http://www.fossil-scm.org/index.html/uv/download/fossil-src-$pkgver.tar.gz
+)
+sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
+'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
+'2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
+'359f474844792b57ba2733277c2dc8ba3b20d890925d50618d85a20867ae1761')
+
+build() {
+  cd fossil-$pkgver
+  ./configure --prefix=/usr --json --disable-internal-sqlite
+  # headers and translate targets are problematic with parallel jobs
+  #make -j1 bld bld/headers
+  make
+}
+
+package() {
+  install -Dm644 fossil-xinetd "$pkgdir"/etc/xinetd.d/fossil
+  install -Dm644 fossil.socket "$pkgdir"/usr/lib/systemd/system/fossil.socket
+  install -Dm644 fossil.service 
"$pkgdir"/usr/lib/systemd/system/fossil@.service
+
+  cd fossil-$pkgver
+  install -Dm755 fossil "$pkgdir"/usr/bin/fossil
+  install -Dm644 tools/fossil-autocomplete.bash 
"$pkgdir"/usr/share/bash-completion/completions/fossil
+  install -Dm644 COPYRIGHT-BSD2.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: fossil/repos/community-staging-i686/fossil-xinetd (from rev 216006, 
fossil/trunk/fossil-xinetd)
===
--- community-staging-i686/fossil-xinetd(rev 0)
+++ community-staging-i686/fossil-xinetd2017-03-13 04:08:03 UTC (rev 
216007)
@@ -0,0 +1,23 @@
+service fossil
+{
+#better not change any of these
+type = UNLISTED
+socket_type = stream
+protocol = tcp
+wait = no
+user = root
+server = /usr/bin/fossil
+
+#only change these
+#http port, fossil will listen
+port = 8055
+
+#change this path to where your fossil repositories are
+server_args = http /var/fossil
+
+#comment next line to enable remote access
+only_from = 127.0.0.1 localhost
+
+#change to `no` to activate fossil
+disable = yes
+}

Copied: fossil/repos/community-staging-i686/fossil.service (from rev 216006, 
fossil/trunk/fossil.service)
===
--- community-staging-i686/fossil.service   (rev 0)
+++ community-staging-i686/fossil.service   2017-03-13 04:08:03 UTC (rev 
216007)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Fossil service
+
+[Service]
+# /var/fossil is the default path to fossil repositories
+ExecStart=-/usr/bin/fossil http /var/fossil
+StandardInput=socket
+# Uncomment this line to use fossil with URL prefix
+# This allows fossil to generate correct hyperlinks and redirects when
+# hosted within 

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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:07:47
  Author: foutrelis
Revision: 216006

OpenSSL 1.1.0 rebuild

Modified:
  fossil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 04:06:29 UTC (rev 216005)
+++ PKGBUILD2017-03-13 04:07:47 UTC (rev 216006)
@@ -5,7 +5,7 @@
 
 pkgname=fossil
 pkgver=2.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Simple, high-reliability, distributed software configuration 
management'
 arch=(i686 x86_64)
 license=(BSD)


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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:06:29
  Author: foutrelis
Revision: 216005

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

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

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

Copied: tinc/repos/community-staging-i686/PKGBUILD (from rev 216004, 
tinc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-13 04:06:29 UTC (rev 216005)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: helios
+# Contributor: Lothar Gesslein
+# Contributor: Dominik George 
+
+pkgname=tinc
+pkgver=1.0.31
+pkgrel=2
+pkgdesc="VPN (Virtual Private Network) daemon"
+arch=('i686' 'x86_64')
+url="http://www.tinc-vpn.org/;
+license=('GPL')
+depends=('lzo' 'openssl' 'zlib')
+source=(https://www.tinc-vpn.org/packages/tinc-$pkgver.tar.gz{,.sig})
+md5sums=('7a96f7eb12dfd43b21852b4207d860f2'
+ 'SKIP')
+validpgpkeys=('D62BDD168EFBE48BC60E8E234A6084B9C0D71F4A')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+  install -dm755 "$pkgdir"/usr/share/tinc/examples
+  tar xozvf doc/sample-config.tar.gz -C $pkgdir/usr/share/tinc/examples
+  find "$pkgdir"/usr/share/tinc/examples -type f -exec chmod 644 {} +
+  find "$pkgdir"/usr/share/tinc/examples -type d -exec chmod 755 {} +
+}

Copied: tinc/repos/community-staging-x86_64/PKGBUILD (from rev 216004, 
tinc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-13 04:06:29 UTC (rev 216005)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: helios
+# Contributor: Lothar Gesslein
+# Contributor: Dominik George 
+
+pkgname=tinc
+pkgver=1.0.31
+pkgrel=2
+pkgdesc="VPN (Virtual Private Network) daemon"
+arch=('i686' 'x86_64')
+url="http://www.tinc-vpn.org/;
+license=('GPL')
+depends=('lzo' 'openssl' 'zlib')
+source=(https://www.tinc-vpn.org/packages/tinc-$pkgver.tar.gz{,.sig})
+md5sums=('7a96f7eb12dfd43b21852b4207d860f2'
+ 'SKIP')
+validpgpkeys=('D62BDD168EFBE48BC60E8E234A6084B9C0D71F4A')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+  install -dm755 "$pkgdir"/usr/share/tinc/examples
+  tar xozvf doc/sample-config.tar.gz -C $pkgdir/usr/share/tinc/examples
+  find "$pkgdir"/usr/share/tinc/examples -type f -exec chmod 644 {} +
+  find "$pkgdir"/usr/share/tinc/examples -type d -exec chmod 755 {} +
+}


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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:06:19
  Author: foutrelis
Revision: 216004

OpenSSL 1.1.0 rebuild

Modified:
  tinc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 04:04:21 UTC (rev 216003)
+++ PKGBUILD2017-03-13 04:06:19 UTC (rev 216004)
@@ -6,7 +6,7 @@
 
 pkgname=tinc
 pkgver=1.0.31
-pkgrel=1
+pkgrel=2
 pkgdesc="VPN (Virtual Private Network) daemon"
 arch=('i686' 'x86_64')
 url="http://www.tinc-vpn.org/;


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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:04:21
  Author: foutrelis
Revision: 216003

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

Added:
  monit/repos/community-staging-i686/
  monit/repos/community-staging-i686/PKGBUILD
(from rev 216002, monit/trunk/PKGBUILD)
  monit/repos/community-staging-i686/monit.changelog
(from rev 216002, monit/trunk/monit.changelog)
  monit/repos/community-staging-x86_64/
  monit/repos/community-staging-x86_64/PKGBUILD
(from rev 216002, monit/trunk/PKGBUILD)
  monit/repos/community-staging-x86_64/monit.changelog
(from rev 216002, monit/trunk/monit.changelog)

--+
 community-staging-i686/PKGBUILD  |   33 ++
 community-staging-i686/monit.changelog   |   91 +
 community-staging-x86_64/PKGBUILD|   33 ++
 community-staging-x86_64/monit.changelog |   91 +
 4 files changed, 248 insertions(+)

Copied: monit/repos/community-staging-i686/PKGBUILD (from rev 216002, 
monit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-13 04:04:21 UTC (rev 216003)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Geoffroy Carrier 
+# Contributor: Marco Bartholomew 
+
+pkgname=monit
+pkgver=5.21.0
+pkgrel=2
+pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
+arch=('i686' 'x86_64')
+url="http://mmonit.com/monit/;
+license=('GPL3')
+depends=('openssl')
+backup=('etc/monitrc')
+changelog=$pkgname.changelog
+source=(http://mmonit.com/$pkgname/dist/$pkgname-$pkgver.tar.gz)
+sha256sums=('fbf76163ed4a180854d378af60fed0cdbc5a8772823957234efc182ead10c03c')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm700 monitrc "${pkgdir}"/etc/monitrc
+  install -Dm644 system/startup/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/system/$pkgname.service
+}

Copied: monit/repos/community-staging-i686/monit.changelog (from rev 216002, 
monit/trunk/monit.changelog)
===
--- community-staging-i686/monit.changelog  (rev 0)
+++ community-staging-i686/monit.changelog  2017-03-13 04:04:21 UTC (rev 
216003)
@@ -0,0 +1,91 @@
+2017-03-08 Jaroslav Lichtblau 
+   * monit 5.21.0-1
+
+2016-12-05 Jaroslav Lichtblau 
+   * monit 5.20.0-1
+
+2016-08-18 Jaroslav Lichtblau 
+   * monit 5.19.0-1
+
+2016-06-07 Jaroslav Lichtblau 
+   * monit 5.18-1
+
+2016-03-17 Jaroslav Lichtblau 
+   * monit 5.17.1-1
+
+2016-02-05 Jaroslav Lichtblau 
+   * monit 5.16-1
+
+2015-10-26 Jaroslav Lichtblau 
+   * monit 5.15-1
+
+2015-06-15 Jaroslav Lichtblau 
+   * monit 5.14-1
+
+2015-05-16 Jaroslav Lichtblau 
+   * monit 5.13-1
+
+2015-03-28 Jaroslav Lichtblau 
+   * monit 5.12.2-1
+
+2015-01-27 Jaroslav Lichtblau 
+   * monit 5.11-1
+
+2014-10-30 Jaroslav Lichtblau 
+   * monit 5.10-1
+
+2014-10-16 Jaroslav Lichtblau 
+   * monit 5.9-1
+
+2014-05-14 Jaroslav Lichtblau 
+   * monit 5.8.1-1
+
+2014-04-02 Jaroslav Lichtblau 
+   * monit 5.8-1
+
+2014-03-01 Jaroslav Lichtblau 
+   * monit 5.7-1
+
+2013-09-28 Jaroslav Lichtblau 
+   * monit 5.6-1
+
+2012-10-28 Jaroslav Lichtblau 
+   * monit 5.5-2 systemd .service file added
+
+2012-10-02 Jaroslav Lichtblau 
+   * monit 5.5-1
+
+2012-05-20 Jaroslav Lichtblau 
+   * monit 5.4-1
+
+2012-03-18 Jaroslav Lichtblau 
+   * monit 5.3.2-1
+
+2011-11-20 Jaroslav Lichtblau 
+   * monit 5.3.1-1
+
+2011-10-09 Jaroslav Lichtblau 
+   * monit 5.3-1
+
+2011-07-19 Jaroslav Lichtblau 
+   * monit 5.2.5-1
+
+2011-03-21 Jaroslav Lichtblau 
+   * monit 5.2.4-1
+
+2010-11-24 Jaroslav Lichtblau 
+   * monit 5.2.3-1
+
+2010-09-26 Jaroslav Lichtblau 
+   * monit 5.2-1
+

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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:04:11
  Author: foutrelis
Revision: 216002

OpenSSL 1.1.0 rebuild

Modified:
  monit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 04:02:03 UTC (rev 216001)
+++ PKGBUILD2017-03-13 04:04:11 UTC (rev 216002)
@@ -5,7 +5,7 @@
 
 pkgname=monit
 pkgver=5.21.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
 arch=('i686' 'x86_64')
 url="http://mmonit.com/monit/;


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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:03:20
  Author: foutrelis
Revision: 290695

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

Added:
  socat/repos/staging-i686/
  socat/repos/staging-i686/PKGBUILD
(from rev 290694, socat/trunk/PKGBUILD)
  socat/repos/staging-x86_64/
  socat/repos/staging-x86_64/PKGBUILD
(from rev 290694, socat/trunk/PKGBUILD)

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

Copied: socat/repos/staging-i686/PKGBUILD (from rev 290694, 
socat/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-03-13 04:03:20 UTC (rev 290695)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Juergen Hoetzel 
+# Contributor: John Proctor 
+
+pkgname=socat
+pkgver=1.7.3.2
+pkgrel=2
+pkgdesc='Multipurpose relay'
+url='http://www.dest-unreach.org/socat/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('readline' 'openssl')
+source=("http://www.dest-unreach.org/socat/download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('ce3efc17e3e544876ebce7cd6c85b3c279fda057b2857fcaaf67b9ab8bdaf034')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: socat/repos/staging-x86_64/PKGBUILD (from rev 290694, 
socat/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-03-13 04:03:20 UTC (rev 290695)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Juergen Hoetzel 
+# Contributor: John Proctor 
+
+pkgname=socat
+pkgver=1.7.3.2
+pkgrel=2
+pkgdesc='Multipurpose relay'
+url='http://www.dest-unreach.org/socat/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('readline' 'openssl')
+source=("http://www.dest-unreach.org/socat/download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('ce3efc17e3e544876ebce7cd6c85b3c279fda057b2857fcaaf67b9ab8bdaf034')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:03:10
  Author: foutrelis
Revision: 290694

OpenSSL 1.1.0 rebuild

Modified:
  socat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 21:52:01 UTC (rev 290693)
+++ PKGBUILD2017-03-13 04:03:10 UTC (rev 290694)
@@ -5,7 +5,7 @@
 
 pkgname=socat
 pkgver=1.7.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Multipurpose relay'
 url='http://www.dest-unreach.org/socat/'
 license=('GPL2')


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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:02:03
  Author: foutrelis
Revision: 216001

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

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

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

Copied: sqlcipher/repos/community-staging-i686/PKGBUILD (from rev 216000, 
sqlcipher/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-13 04:02:03 UTC (rev 216001)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: flu
+
+pkgname=sqlcipher
+pkgver=3.4.1
+pkgrel=2
+pkgdesc="SQLite extension that provides transparent 256-bit AES encryption of 
database files"
+arch=('i686' 'x86_64')
+url="https://www.zetetic.net/sqlcipher/;
+license=('BSD')
+makedepends=('openssl' 'sqlite' 'tcl')
+source=($pkgname-$pkgver.zip::https://github.com/$pkgname/$pkgname/archive/v$pkgver.zip
+
https://www.zetetic.net/$pkgname/verify/$pkgver/$pkgname-$pkgver.zip.sig)
+validpgpkeys=('D83F5F9EB811D6E6B4A0D9C5D1FA3A2A97ED25C2') # Zetetic LLC 

+sha256sums=('6f65b65a6b450279151bdec8c66122133245bc78605165482a45347cee8dc904'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-tempstore=yes \
+CFLAGS="$CFLAGS -DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+#license
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: sqlcipher/repos/community-staging-x86_64/PKGBUILD (from rev 216000, 
sqlcipher/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-13 04:02:03 UTC (rev 216001)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: flu
+
+pkgname=sqlcipher
+pkgver=3.4.1
+pkgrel=2
+pkgdesc="SQLite extension that provides transparent 256-bit AES encryption of 
database files"
+arch=('i686' 'x86_64')
+url="https://www.zetetic.net/sqlcipher/;
+license=('BSD')
+makedepends=('openssl' 'sqlite' 'tcl')
+source=($pkgname-$pkgver.zip::https://github.com/$pkgname/$pkgname/archive/v$pkgver.zip
+
https://www.zetetic.net/$pkgname/verify/$pkgver/$pkgname-$pkgver.zip.sig)
+validpgpkeys=('D83F5F9EB811D6E6B4A0D9C5D1FA3A2A97ED25C2') # Zetetic LLC 

+sha256sums=('6f65b65a6b450279151bdec8c66122133245bc78605165482a45347cee8dc904'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-tempstore=yes \
+CFLAGS="$CFLAGS -DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+#license
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 04:01:53
  Author: foutrelis
Revision: 216000

OpenSSL 1.1.0 rebuild

Modified:
  sqlcipher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 03:46:11 UTC (rev 215999)
+++ PKGBUILD2017-03-13 04:01:53 UTC (rev 216000)
@@ -4,7 +4,7 @@
 
 pkgname=sqlcipher
 pkgver=3.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="SQLite extension that provides transparent 256-bit AES encryption of 
database files"
 arch=('i686' 'x86_64')
 url="https://www.zetetic.net/sqlcipher/;


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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:46:11
  Author: felixonmars
Revision: 215999

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 215998, purescript/trunk/PKGBUILD)
  purescript/repos/community-staging-i686/http-client-0.5.patch
(from rev 215998, purescript/trunk/http-client-0.5.patch)
  purescript/repos/community-staging-x86_64/
  purescript/repos/community-staging-x86_64/PKGBUILD
(from rev 215998, purescript/trunk/PKGBUILD)
  purescript/repos/community-staging-x86_64/http-client-0.5.patch
(from rev 215998, purescript/trunk/http-client-0.5.patch)

+
 community-staging-i686/PKGBUILD|   57 ++
 community-staging-i686/http-client-0.5.patch   |   90 +++
 community-staging-x86_64/PKGBUILD  |   57 ++
 community-staging-x86_64/http-client-0.5.patch |   90 +++
 4 files changed, 294 insertions(+)

Copied: purescript/repos/community-staging-i686/PKGBUILD (from rev 215998, 
purescript/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-13 03:46:11 UTC (rev 215999)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.10.7
+pkgrel=13
+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-foldl" "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-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-system-filepath"
+ "haskell-text" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-turtle" "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;
+http-client-0.5.patch)
+sha256sums=('85dff2f4b6916e9d45b6a1b2674dc6c91c56ac6c1597f627d5f1cbee9d0b3a9d'
+'2e8ac0165d8dfde7f2ec27f4b77fb4139a435cf2148d3853ec95455334601b03')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -i ../http-client-0.5.patch
+
+sed -e 's/pipes >= 4.0.0 && < 4.3.0,/pipes >= 4.0.0 \&\& < 4.4.0,/' \
+-e 's/websockets >= 0.9 && <0.10/websockets >= 0.9 \&\& <0.11/' \
+-e 's/aeson >= 0.8 && < 1.0,/aeson >= 0.8,/' \
+-i purescript.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
+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-i686/http-client-0.5.patch (from rev 
215998, purescript/trunk/http-client-0.5.patch)
===
--- community-staging-i686/http-client-0.5.patch
(rev 0)
+++ community-staging-i686/http-client-0.5.patch2017-03-13 03:46:11 UTC 
(rev 215999)
@@ -0,0 +1,90 @@
+From e0527fb7f10721870014d7c08b1a2f8f5bf2edcf Mon Sep 17 00:00:00 2001
+From: Oleg Grenrus 
+Date: Mon, 22 Aug 2016 17:51:42 +0300
+Subject: [PATCH] Support http-client-0.5
+
+---
+ purescript.cabal   |  2 +-
+ src/Language/PureScript/Ide/Pursuit.hs | 44 --
+ stack.yaml   

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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:45:48
  Author: felixonmars
Revision: 215998

upgpkg: purescript 0.10.7-13

rebuild with turtle,1.3.2

Modified:
  purescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 03:38:43 UTC (rev 215997)
+++ PKGBUILD2017-03-13 03:45:48 UTC (rev 215998)
@@ -4,7 +4,7 @@
 
 pkgname=purescript
 pkgver=0.10.7
-pkgrel=12
+pkgrel=13
 pkgdesc="PureScript Programming Language Compiler"
 url="http://www.purescript.org/;
 license=("custom:BSD3")


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

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 03:38:43
  Author: foutrelis
Revision: 215997

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-openssl/repos/multilib-staging-x86_64/
  lib32-openssl/repos/multilib-staging-x86_64/PKGBUILD
(from rev 215996, lib32-openssl/trunk/PKGBUILD)
  lib32-openssl/repos/multilib-staging-x86_64/ca-dir.patch
(from rev 215996, lib32-openssl/trunk/ca-dir.patch)

--+
 PKGBUILD |   67 +
 ca-dir.patch |   31 ++
 2 files changed, 98 insertions(+)

Copied: lib32-openssl/repos/multilib-staging-x86_64/PKGBUILD (from rev 215996, 
lib32-openssl/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2017-03-13 03:38:43 UTC (rev 215997)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+_pkgbasename=openssl
+pkgname=lib32-$_pkgbasename
+_ver=1.1.0e
+# use a pacman compatible version scheme
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+#pkgver=$_ver
+pkgrel=1
+epoch=1
+pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security (32-bit)'
+arch=('x86_64')
+url='https://www.openssl.org'
+license=('custom:BSD')
+depends=('lib32-glibc' "${_pkgbasename}")
+optdepends=('ca-certificates')
+makedepends=('gcc-multilib')
+source=("https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz;
+"https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz.asc;
+'ca-dir.patch')
+validpgpkeys=(8657ABB260F056B1E5190839D9C4D26D0E604491)
+md5sums=('51c42d152122e474754aea96f66928c6'
+ 'SKIP'
+ '02b53865fb70faef763e262b4971aa4b')
+
+prepare() {
+   cd $srcdir/$_pkgbasename-$_ver
+
+   # set ca dir to /etc/ssl by default
+   patch -p0 -i $srcdir/ca-dir.patch
+}
+
+build() {
+   export CC="gcc -m32"
+   export CXX="g++ -m32"
+   export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+   cd $srcdir/$_pkgbasename-$_ver
+
+   # mark stack as non-executable: http://bugs.archlinux.org/task/12434
+   ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib32 \
+   shared no-ssl3-method \
+   linux-elf \
+   "-Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}"
+
+   make MAKEDEPPROG="${CC}" depend
+   make
+}
+
+check() {
+   cd $srcdir/$_pkgbasename-$_ver
+   # the test fails due to missing write permissions in /etc/ssl
+   # revert this patch for make test
+   patch -p0 -R -i $srcdir/ca-dir.patch
+   make test
+   patch -p0 -i $srcdir/ca-dir.patch
+}
+
+package() {
+   cd $srcdir/$_pkgbasename-$_ver
+   make DESTDIR=$pkgdir install_sw
+
+   rm -rf ${pkgdir}/{usr/{include,bin},etc}
+   mkdir -p $pkgdir/usr/share/licenses
+   ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}

Copied: lib32-openssl/repos/multilib-staging-x86_64/ca-dir.patch (from rev 
215996, lib32-openssl/trunk/ca-dir.patch)
===
--- multilib-staging-x86_64/ca-dir.patch(rev 0)
+++ multilib-staging-x86_64/ca-dir.patch2017-03-13 03:38:43 UTC (rev 
215997)
@@ -0,0 +1,31 @@
+--- apps/CA.pl.in  2016-09-26 11:46:04.0 +0200
 apps/CA.pl.in  2016-11-01 16:02:16.709616823 +0100
+@@ -33,7 +33,7 @@
+ my $PKCS12 = "$openssl pkcs12";
+ 
+ # default openssl.cnf file has setup as per the following
+-my $CATOP = "./demoCA";
++my $CATOP = "/etc/ssl";
+ my $CAKEY = "cakey.pem";
+ my $CAREQ = "careq.pem";
+ my $CACERT = "cacert.pem";
+--- apps/openssl.cnf   2016-09-26 11:46:04.0 +0200
 apps/openssl.cnf   2016-11-01 16:02:48.378503427 +0100
+@@ -39,7 +39,7 @@
+ 
+ [ CA_default ]
+ 
+-dir   = ./demoCA  # Where everything is kept
++dir   = /etc/ssl  # Where everything is kept
+ certs = $dir/certs# Where the issued certs are kept
+ crl_dir   = $dir/crl  # Where the issued crl are kept
+ database  = $dir/index.txt# database index file.
+@@ -323,7 +323,7 @@
+ [ tsa_config1 ]
+ 
+ # These are used by the TSA reply generation only.
+-dir   = ./demoCA  # TSA root directory
++dir   = /etc/ssl  # TSA root directory
+ serial= $dir/tsaserial# The current serial number 
(mandatory)
+ crypto_device = builtin   # OpenSSL engine to use for signing
+ signer_cert   = $dir/tsacert.pem  # The TSA signing certificate


[arch-commits] Commit in lib32-openssl/trunk (4 files)

2017-03-12 Thread Evangelos Foutras
Date: Monday, March 13, 2017 @ 03:38:36
  Author: foutrelis
Revision: 215996

upgpkg: lib32-openssl 1:1.1.0.e-1

New upstream release.

Modified:
  lib32-openssl/trunk/PKGBUILD
  lib32-openssl/trunk/ca-dir.patch
Deleted:
  lib32-openssl/trunk/no-rpath.patch
  lib32-openssl/trunk/ssl3-test-failure.patch

-+
 PKGBUILD|   19 ---
 ca-dir.patch|   44 +---
 no-rpath.patch  |   11 ---
 ssl3-test-failure.patch |   26 --
 4 files changed, 25 insertions(+), 75 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 03:25:15 UTC (rev 215995)
+++ PKGBUILD2017-03-13 03:38:36 UTC (rev 215996)
@@ -3,7 +3,7 @@
 
 _pkgbasename=openssl
 pkgname=lib32-$_pkgbasename
-_ver=1.0.2k
+_ver=1.1.0e
 # use a pacman compatible version scheme
 pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
 #pkgver=$_ver
@@ -16,28 +16,17 @@
 depends=('lib32-glibc' "${_pkgbasename}")
 optdepends=('ca-certificates')
 makedepends=('gcc-multilib')
-options=('!makeflags')
 source=("https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz;
 "https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz.asc;
-'no-rpath.patch'
-'ssl3-test-failure.patch'
 'ca-dir.patch')
 validpgpkeys=(8657ABB260F056B1E5190839D9C4D26D0E604491)
-md5sums=('f965fc0bf01bf882b31314b61391ae65'
+md5sums=('51c42d152122e474754aea96f66928c6'
  'SKIP'
- 'dc78d3d06baffc16217519242ce92478'
- '62fc492252edd3283871632bb77fadbe'
- '3bf51be3a1bbd262be46dc619f92aa90')
+ '02b53865fb70faef763e262b4971aa4b')
 
 prepare() {
cd $srcdir/$_pkgbasename-$_ver
 
-   # remove rpath: http://bugs.archlinux.org/task/14367
-   patch -p0 -i $srcdir/no-rpath.patch
-
-   # disable a test that fails when ssl3 is disabled
-   patch -p1 -i $srcdir/ssl3-test-failure.patch
-
# set ca dir to /etc/ssl by default
patch -p0 -i $srcdir/ca-dir.patch
 }
@@ -70,7 +59,7 @@
 
 package() {
cd $srcdir/$_pkgbasename-$_ver
-   make INSTALL_PREFIX=$pkgdir install_sw
+   make DESTDIR=$pkgdir install_sw
 
rm -rf ${pkgdir}/{usr/{include,bin},etc}
mkdir -p $pkgdir/usr/share/licenses

Modified: ca-dir.patch
===
--- ca-dir.patch2017-03-13 03:25:15 UTC (rev 215995)
+++ ca-dir.patch2017-03-13 03:38:36 UTC (rev 215996)
@@ -1,27 +1,16 @@
 apps/CA.pl.in  2006-04-28 02:30:49.0 +0200
-+++ apps/CA.pl.in  2010-04-01 00:35:02.600553509 +0200
-@@ -53,7 +53,7 @@
- $X509="$openssl x509";
- $PKCS12="$openssl pkcs12";
+--- apps/CA.pl.in  2016-09-26 11:46:04.0 +0200
 apps/CA.pl.in  2016-11-01 16:02:16.709616823 +0100
+@@ -33,7 +33,7 @@
+ my $PKCS12 = "$openssl pkcs12";
  
--$CATOP="./demoCA";
-+$CATOP="/etc/ssl";
- $CAKEY="cakey.pem";
- $CAREQ="careq.pem";
- $CACERT="cacert.pem";
 apps/CA.sh 2009-10-15 19:27:47.0 +0200
-+++ apps/CA.sh 2010-04-01 00:35:02.600553509 +0200
-@@ -68,7 +68,7 @@
- X509="$OPENSSL x509"
- PKCS12="openssl pkcs12"
- 
--if [ -z "$CATOP" ] ; then CATOP=./demoCA ; fi
-+if [ -z "$CATOP" ] ; then CATOP=/etc/ssl ; fi
- CAKEY=./cakey.pem
- CAREQ=./careq.pem
- CACERT=./cacert.pem
 apps/openssl.cnf   2009-04-04 20:09:43.0 +0200
-+++ apps/openssl.cnf   2010-04-01 00:35:02.607220681 +0200
+ # default openssl.cnf file has setup as per the following
+-my $CATOP = "./demoCA";
++my $CATOP = "/etc/ssl";
+ my $CAKEY = "cakey.pem";
+ my $CAREQ = "careq.pem";
+ my $CACERT = "cacert.pem";
+--- apps/openssl.cnf   2016-09-26 11:46:04.0 +0200
 apps/openssl.cnf   2016-11-01 16:02:48.378503427 +0100
 @@ -39,7 +39,7 @@
  
  [ CA_default ]
@@ -31,3 +20,12 @@
  certs = $dir/certs# Where the issued certs are kept
  crl_dir   = $dir/crl  # Where the issued crl are kept
  database  = $dir/index.txt# database index file.
+@@ -323,7 +323,7 @@
+ [ tsa_config1 ]
+ 
+ # These are used by the TSA reply generation only.
+-dir   = ./demoCA  # TSA root directory
++dir   = /etc/ssl  # TSA root directory
+ serial= $dir/tsaserial# The current serial number 
(mandatory)
+ crypto_device = builtin   # OpenSSL engine to use for signing
+ signer_cert   = $dir/tsacert.pem  # The TSA signing certificate

Deleted: no-rpath.patch
===
--- no-rpath.patch  2017-03-13 03:25:15 UTC (rev 215995)
+++ no-rpath.patch  2017-03-13 03:38:36 UTC (rev 215996)
@@ -1,11 +0,0 @@
 Makefile.shared.no-rpath   2005-06-23 22:47:54.0 +0200
-+++ Makefile.shared2005-11-16 22:35:37.0 +0100
-@@ 

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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:25:15
  Author: felixonmars
Revision: 215995

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

Added:
  deepin-desktop/repos/community-i686/PKGBUILD
(from rev 215994, deepin-desktop/trunk/PKGBUILD)
  deepin-desktop/repos/community-x86_64/PKGBUILD
(from rev 215994, deepin-desktop/trunk/PKGBUILD)
Deleted:
  deepin-desktop/repos/community-i686/PKGBUILD
  deepin-desktop/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-13 03:24:44 UTC (rev 215994)
+++ community-i686/PKGBUILD 2017-03-13 03:25:15 UTC (rev 215995)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=4.0.4
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Desktop module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-desktop;
-license=('GPL3')
-depends=('gsettings-qt' 'deepin-daemon' 'deepin-tool-kit' 'startdde' 
'deepin-dock' 'gtk2' 'qt5-svg'
- 'qt5-x11extras' 'libqtxdg' 'deepin-file-manager' 
'deepin-qt5integration')
-makedepends=('git' 'boost' 'qt5-tools')
-conflicts=('dde-desktop')
-replaces=('dde-desktop')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' dde-desktop/build.pri
-}
-
-build() {
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-i686/PKGBUILD (from rev 215994, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-13 03:25:15 UTC (rev 215995)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=4.0.4
+pkgrel=2
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-desktop;
+license=('GPL3')
+depends=('gsettings-qt' 'deepin-daemon' 'deepin-tool-kit' 'startdde' 
'deepin-dock' 'gtk2' 'qt5-svg'
+ 'qt5-x11extras' 'libqtxdg' 'deepin-file-manager' 
'deepin-qt5integration')
+makedepends=('git' 'boost' 'qt5-tools')
+conflicts=('dde-desktop')
+replaces=('dde-desktop')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  sed -i 's/-0-2//g' dde-desktop/build.pri
+}
+
+build() {
+  cd dde-desktop
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-desktop
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-13 03:24:44 UTC (rev 215994)
+++ community-x86_64/PKGBUILD   2017-03-13 03:25:15 UTC (rev 215995)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=4.0.4
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Desktop module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-desktop;
-license=('GPL3')
-depends=('gsettings-qt' 'deepin-daemon' 'deepin-tool-kit' 'startdde' 
'deepin-dock' 'gtk2' 'qt5-svg'
- 'qt5-x11extras' 'libqtxdg' 'deepin-file-manager' 
'deepin-qt5integration')
-makedepends=('git' 'boost' 'qt5-tools')
-conflicts=('dde-desktop')
-replaces=('dde-desktop')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' dde-desktop/build.pri
-}
-
-build() {
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-x86_64/PKGBUILD (from rev 215994, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-13 03:25:15 UTC (rev 215995)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=4.0.4
+pkgrel=2
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')

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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:24:44
  Author: felixonmars
Revision: 215994

upgpkg: deepin-desktop 4.0.4-2

rebuild to fix symbol lookup issues

Modified:
  deepin-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 03:11:55 UTC (rev 215993)
+++ PKGBUILD2017-03-13 03:24:44 UTC (rev 215994)
@@ -5,7 +5,7 @@
 
 pkgname=deepin-desktop
 pkgver=4.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Deepin desktop-environment - Desktop module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-desktop;


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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:11:55
  Author: felixonmars
Revision: 215993

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

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

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

Copied: haskell-turtle/repos/community-staging-i686/PKGBUILD (from rev 215992, 
haskell-turtle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-13 03:11:55 UTC (rev 215993)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=turtle
+pkgname=haskell-turtle
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="Shell programming, Haskell-style"
+url="https://github.com/Gabriel439/Haskell-Turtle-Library;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-foldl'
+ 'haskell-hostname' 'haskell-managed' 'haskell-optparse-applicative' 
'haskell-optional-args'
+ 'haskell-stm' 'haskell-system-fileio' 'haskell-system-filepath' 
'haskell-temporary'
+ 'haskell-text' 'haskell-unix-compat')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('b994c4e9e3f36a69f8a9097bc5998ee9')
+
+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-turtle/repos/community-staging-x86_64/PKGBUILD (from rev 
215992, haskell-turtle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-13 03:11:55 UTC (rev 215993)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=turtle
+pkgname=haskell-turtle
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="Shell programming, Haskell-style"
+url="https://github.com/Gabriel439/Haskell-Turtle-Library;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-foldl'
+ 'haskell-hostname' 'haskell-managed' 'haskell-optparse-applicative' 
'haskell-optional-args'
+ 'haskell-stm' 'haskell-system-fileio' 'haskell-system-filepath' 
'haskell-temporary'
+ 'haskell-text' 'haskell-unix-compat')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('b994c4e9e3f36a69f8a9097bc5998ee9')
+
+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 

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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:11:32
  Author: felixonmars
Revision: 215992

upgpkg: haskell-turtle 1.3.2-1

rebuild with turtle,1.3.2

Modified:
  haskell-turtle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 03:10:35 UTC (rev 215991)
+++ PKGBUILD2017-03-13 03:11:32 UTC (rev 215992)
@@ -4,8 +4,8 @@
 
 _hkgname=turtle
 pkgname=haskell-turtle
-pkgver=1.3.1
-pkgrel=4
+pkgver=1.3.2
+pkgrel=1
 pkgdesc="Shell programming, Haskell-style"
 url="https://github.com/Gabriel439/Haskell-Turtle-Library;
 license=('custom:BSD3')
@@ -15,7 +15,7 @@
  'haskell-stm' 'haskell-system-fileio' 'haskell-system-filepath' 
'haskell-temporary'
  'haskell-text' 'haskell-unix-compat')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-md5sums=('cea4203c6398ead0f214bcec69c71cc5')
+md5sums=('b994c4e9e3f36a69f8a9097bc5998ee9')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:10:35
  Author: felixonmars
Revision: 215991

archrelease: copy trunk to community-any

Added:
  pulp/repos/community-any/PKGBUILD
(from rev 215990, pulp/trunk/PKGBUILD)
Deleted:
  pulp/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-13 03:10:16 UTC (rev 215990)
+++ PKGBUILD2017-03-13 03:10:35 UTC (rev 215991)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Micha Alt 
-
-pkgname=pulp
-pkgver=10.0.3
-pkgrel=1
-pkgdesc="A build system for PureScript projects"
-arch=('any')
-url="https://github.com/bodil/pulp;
-license=('LGPL')
-depends=('nodejs' 'acorn' 'browserify' 'bower' 'purescript')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('f8b7ca9845d6d61d93a6b685d1b8b21e')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn browserify; do
-rm -r $dep;
-npm link $dep;
-  done
-}

Copied: pulp/repos/community-any/PKGBUILD (from rev 215990, pulp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-13 03:10:35 UTC (rev 215991)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Micha Alt 
+
+pkgname=pulp
+pkgver=10.0.4
+pkgrel=1
+pkgdesc="A build system for PureScript projects"
+arch=('any')
+url="https://github.com/bodil/pulp;
+license=('LGPL')
+depends=('nodejs' 'acorn' 'browserify' 'bower' 'purescript')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('5fa53b5c1eb2ed4f82cee48ce8476676')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn browserify; do
+rm -r $dep;
+npm link $dep;
+  done
+}


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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:10:16
  Author: felixonmars
Revision: 215990

upgpkg: pulp 10.0.4-1

Modified:
  pulp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 03:06:14 UTC (rev 215989)
+++ PKGBUILD2017-03-13 03:10:16 UTC (rev 215990)
@@ -3,7 +3,7 @@
 # Contributor: Micha Alt 
 
 pkgname=pulp
-pkgver=10.0.3
+pkgver=10.0.4
 pkgrel=1
 pkgdesc="A build system for PureScript projects"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('f8b7ca9845d6d61d93a6b685d1b8b21e')
+md5sums=('5fa53b5c1eb2ed4f82cee48ce8476676')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


[arch-commits] Commit in jenkins/repos/community-any (14 files)

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:06:14
  Author: felixonmars
Revision: 215989

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 215988, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 215988, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 215988, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 215988, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 215988, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 215988, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 215988, jenkins/trunk/jenkins.tmpfiles)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   46 +--
 PKGBUILD |   90 ++---
 jenkins.conf |   26 +++
 jenkins.install  |   18 +-
 jenkins.service  |   48 ++--
 jenkins.sysusers |4 +-
 jenkins.tmpfiles |2 -
 7 files changed, 117 insertions(+), 117 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-03-13 03:05:36 UTC (rev 215988)
+++ LICENSE 2017-03-13 03:06:14 UTC (rev 215989)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 215988, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2017-03-13 03:06:14 UTC (rev 215989)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-13 03:05:36 UTC (rev 215988)
+++ PKGBUILD2017-03-13 03:06:14 UTC (rev 215989)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.49
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')

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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:05:36
  Author: felixonmars
Revision: 215988

upgpkg: jenkins 2.50-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 03:04:41 UTC (rev 215987)
+++ PKGBUILD2017-03-13 03:05:36 UTC (rev 215988)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.49
+pkgver=2.50
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('dce45e1544fcc8ee3aaad98beaad7426332d120932275e75af8c3c6e47c5651fefb5893b39e1cf4bc81359367d31fe9cf31a72ccd67c85016e13f252f56ac210'
+sha512sums=('994de35818b9292578a14510c3a8b0184c9b641ea89a5a2b06e68876f8155efa4ff1d635ce3afc2c7a0690ca33459d1915fa262a15a5e60043f03a229e1abb0a'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


[arch-commits] Commit in deepin-image-viewer/repos (4 files)

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:04:41
  Author: felixonmars
Revision: 215987

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

Added:
  deepin-image-viewer/repos/community-i686/PKGBUILD
(from rev 215986, deepin-image-viewer/trunk/PKGBUILD)
  deepin-image-viewer/repos/community-x86_64/PKGBUILD
(from rev 215986, deepin-image-viewer/trunk/PKGBUILD)
Deleted:
  deepin-image-viewer/repos/community-i686/PKGBUILD
  deepin-image-viewer/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-13 03:04:14 UTC (rev 215986)
+++ community-i686/PKGBUILD 2017-03-13 03:04:41 UTC (rev 215987)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-image-viewer
-pkgver=1.2.4
-pkgrel=1
-pkgdesc='Deepin Image Viewer'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-image-viewer;
-license=('GPL3')
-depends=('deepin-tool-kit' 'libexif' 'freeimage' 'libraw' 'qt5-svg' 
'deepin-shortcut-viewer' 'deepin-manual')
-makedepends=('git' 'qt5-tools')
-groups=('deepin')
-source=("git+https://cr.deepin.io/deepin-image-viewer.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' deepin-image-viewer/viewer/viewer.pro
-  sed -i 's|#include |#include |' 
deepin-image-viewer/viewer/utils/imageutils_libexif.h
-}
-
-build() {
-  cd deepin-image-viewer
-  qmake-qt5 PREFIX=/usr QMAKE_CFLAGS_ISYSTEM=
-  make
-}
-
-package() {
-  cd deepin-image-viewer
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-image-viewer/repos/community-i686/PKGBUILD (from rev 215986, 
deepin-image-viewer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-13 03:04:41 UTC (rev 215987)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-image-viewer
+pkgver=1.2.5
+pkgrel=1
+pkgdesc='Deepin Image Viewer'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-image-viewer;
+license=('GPL3')
+depends=('deepin-tool-kit' 'libexif' 'freeimage' 'libraw' 'qt5-svg' 
'deepin-shortcut-viewer' 'deepin-manual')
+makedepends=('git' 'qt5-tools')
+groups=('deepin')
+source=("git+https://cr.deepin.io/deepin-image-viewer.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  sed -i 's/-0-2//g' deepin-image-viewer/viewer/viewer.pro
+  sed -i 's|#include |#include |' 
deepin-image-viewer/viewer/utils/imageutils_libexif.h
+}
+
+build() {
+  cd deepin-image-viewer
+  qmake-qt5 PREFIX=/usr QMAKE_CFLAGS_ISYSTEM=
+  make
+}
+
+package() {
+  cd deepin-image-viewer
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-13 03:04:14 UTC (rev 215986)
+++ community-x86_64/PKGBUILD   2017-03-13 03:04:41 UTC (rev 215987)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-image-viewer
-pkgver=1.2.4
-pkgrel=1
-pkgdesc='Deepin Image Viewer'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-image-viewer;
-license=('GPL3')
-depends=('deepin-tool-kit' 'libexif' 'freeimage' 'libraw' 'qt5-svg' 
'deepin-shortcut-viewer' 'deepin-manual')
-makedepends=('git' 'qt5-tools')
-groups=('deepin')
-source=("git+https://cr.deepin.io/deepin-image-viewer.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' deepin-image-viewer/viewer/viewer.pro
-  sed -i 's|#include |#include |' 
deepin-image-viewer/viewer/utils/imageutils_libexif.h
-}
-
-build() {
-  cd deepin-image-viewer
-  qmake-qt5 PREFIX=/usr QMAKE_CFLAGS_ISYSTEM=
-  make
-}
-
-package() {
-  cd deepin-image-viewer
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-image-viewer/repos/community-x86_64/PKGBUILD (from rev 215986, 
deepin-image-viewer/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-13 03:04:41 UTC (rev 215987)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-image-viewer
+pkgver=1.2.5
+pkgrel=1
+pkgdesc='Deepin Image Viewer'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-image-viewer;
+license=('GPL3')
+depends=('deepin-tool-kit' 'libexif' 'freeimage' 'libraw' 'qt5-svg' 
'deepin-shortcut-viewer' 'deepin-manual')
+makedepends=('git' 'qt5-tools')
+groups=('deepin')
+source=("git+https://cr.deepin.io/deepin-image-viewer.git#tag=$pkgver;)

[arch-commits] Commit in deepin-image-viewer/trunk (PKGBUILD)

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 03:04:14
  Author: felixonmars
Revision: 215986

upgpkg: deepin-image-viewer 1.2.5-1

Modified:
  deepin-image-viewer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 02:59:44 UTC (rev 215985)
+++ PKGBUILD2017-03-13 03:04:14 UTC (rev 215986)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=deepin-image-viewer
-pkgver=1.2.4
+pkgver=1.2.5
 pkgrel=1
 pkgdesc='Deepin Image Viewer'
 arch=('i686' 'x86_64')


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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 02:59:44
  Author: felixonmars
Revision: 215985

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-13 02:59:26 UTC (rev 215984)
+++ PKGBUILD2017-03-13 02:59:44 UTC (rev 215985)
@@ -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.2
-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 215984, 
python-parsedatetime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-13 02:59:44 UTC (rev 215985)
@@ -0,0 +1,53 @@
+# $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
+}


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

2017-03-12 Thread Felix Yan
Date: Monday, March 13, 2017 @ 02:59:26
  Author: felixonmars
Revision: 215984

upgpkg: python-parsedatetime 2.3-1

Modified:
  python-parsedatetime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 01:47:39 UTC (rev 215983)
+++ PKGBUILD2017-03-13 02:59:26 UTC (rev 215984)
@@ -8,7 +8,7 @@
 
 pkgbase=python-parsedatetime
 pkgname=('python-parsedatetime' 'python2-parsedatetime')
-pkgver=2.2
+pkgver=2.3
 pkgrel=1
 pkgdesc="Parse human-readable date/time strings."
 arch=('any')


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

2017-03-12 Thread Sven-Hendrik Haase
Date: Monday, March 13, 2017 @ 00:53:37
  Author: svenstaro
Revision: 215921

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

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

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

Copied: naev/repos/community-testing-i686/PKGBUILD (from rev 215920, 
naev/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-03-13 00:53:37 UTC (rev 215921)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Johan Rehnberg 
+
+pkgname=naev
+pkgver=0.6.1
+pkgrel=3
+pkgdesc='2D action/rpg space game'
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/naev/;
+license=('GPL3')
+depends=('glu' 'openal' 'libvorbis' 'sdl2' 'sdl2_image' 'sdl2_mixer' 'libgl' 
'libxml2' 'freetype2' 'libpng' 'libzip' 'luajit')
+makedepends=('freeglut' 'zip')
+source=("https://github.com/naev/naev/archive/naev-${pkgver}.tar.gz;)
+md5sums=('48eb864a04f4c7fd9e5178d2ddb9284e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgname-$pkgver"
+
+  ./autogen.sh
+  ./configure --prefix=/usr --disable-debug --disable-shave 
--with-ndata-path=/usr/share/naev/ndata
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+}

Copied: naev/repos/community-testing-x86_64/PKGBUILD (from rev 215920, 
naev/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-03-13 00:53:37 UTC (rev 215921)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Johan Rehnberg 
+
+pkgname=naev
+pkgver=0.6.1
+pkgrel=3
+pkgdesc='2D action/rpg space game'
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/naev/;
+license=('GPL3')
+depends=('glu' 'openal' 'libvorbis' 'sdl2' 'sdl2_image' 'sdl2_mixer' 'libgl' 
'libxml2' 'freetype2' 'libpng' 'libzip' 'luajit')
+makedepends=('freeglut' 'zip')
+source=("https://github.com/naev/naev/archive/naev-${pkgver}.tar.gz;)
+md5sums=('48eb864a04f4c7fd9e5178d2ddb9284e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgname-$pkgver"
+
+  ./autogen.sh
+  ./configure --prefix=/usr --disable-debug --disable-shave 
--with-ndata-path=/usr/share/naev/ndata
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+}


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

2017-03-12 Thread Sven-Hendrik Haase
Date: Monday, March 13, 2017 @ 00:53:22
  Author: svenstaro
Revision: 215920

upgpkg: naev 0.6.1-3

rebuild

Modified:
  naev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-13 00:40:20 UTC (rev 215919)
+++ PKGBUILD2017-03-13 00:53:22 UTC (rev 215920)
@@ -4,7 +4,7 @@
 
 pkgname=naev
 pkgver=0.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc='2D action/rpg space game'
 arch=('i686' 'x86_64')
 url="http://sourceforge.net/projects/naev/;


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

2017-03-12 Thread Sven-Hendrik Haase
Date: Monday, March 13, 2017 @ 00:40:20
  Author: svenstaro
Revision: 215919

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-13 00:40:05 UTC (rev 215918)
+++ community-i686/PKGBUILD 2017-03-13 00:40:20 UTC (rev 215919)
@@ -1,37 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=forge
-pkgdesc="High Performance Visualizations"
-url='https://github.com/arrayfire/forge'
-pkgver=0.9.2
-arch=('i686' 'x86_64')
-pkgrel=3
-epoch=1
-license=('BSD')
-makedepends=('cmake' 'doxygen' 'graphviz' 'git' 'python' 'glm')
-depends=('glfw' 'freetype2' 'fontconfig' 'freeimage')
-source=(https://github.com/arrayfire/forge/archive/v${pkgver}.tar.gz)
-md5sums=('dfb1a6f9c228aa90efa1089cd4b0d65b')
-
-build() {
-  cd forge-${pkgver}
-
-  rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DBUILD_EXAMPLES=ON \
-  -DBUILD_DOCUMENTATION=ON
-
-  make
-}
-
-package() {
-  cd forge-${pkgver}
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: forge/repos/community-i686/PKGBUILD (from rev 215918, 
forge/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-13 00:40:20 UTC (rev 215919)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=forge
+pkgdesc="High Performance Visualizations"
+url='https://github.com/arrayfire/forge'
+pkgver=0.9.2
+arch=('i686' 'x86_64')
+pkgrel=4
+epoch=1
+license=('BSD')
+makedepends=('cmake' 'doxygen' 'graphviz' 'git' 'python' 'glm' 'gcc5')
+depends=('glfw' 'freetype2' 'fontconfig' 'freeimage')
+source=(https://github.com/arrayfire/forge/archive/v${pkgver}.tar.gz)
+md5sums=('dfb1a6f9c228aa90efa1089cd4b0d65b')
+
+build() {
+  cd forge-${pkgver}
+
+  rm -rf build
+  mkdir build && cd build
+
+  export CC=gcc-5
+  export CXX=g++-5
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_EXAMPLES=ON \
+  -DBUILD_DOCUMENTATION=ON
+
+  make
+}
+
+package() {
+  cd forge-${pkgver}
+
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  cd build
+
+  make DESTDIR="${pkgdir}/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-13 00:40:05 UTC (rev 215918)
+++ community-x86_64/PKGBUILD   2017-03-13 00:40:20 UTC (rev 215919)
@@ -1,37 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=forge
-pkgdesc="High Performance Visualizations"
-url='https://github.com/arrayfire/forge'
-pkgver=0.9.2
-arch=('i686' 'x86_64')
-pkgrel=3
-epoch=1
-license=('BSD')
-makedepends=('cmake' 'doxygen' 'graphviz' 'git' 'python' 'glm')
-depends=('glfw' 'freetype2' 'fontconfig' 'freeimage')
-source=(https://github.com/arrayfire/forge/archive/v${pkgver}.tar.gz)
-md5sums=('dfb1a6f9c228aa90efa1089cd4b0d65b')
-
-build() {
-  cd forge-${pkgver}
-
-  rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DBUILD_EXAMPLES=ON \
-  -DBUILD_DOCUMENTATION=ON
-
-  make
-}
-
-package() {
-  cd forge-${pkgver}
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: forge/repos/community-x86_64/PKGBUILD (from rev 215918, 
forge/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-13 00:40:20 UTC (rev 215919)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=forge
+pkgdesc="High Performance Visualizations"
+url='https://github.com/arrayfire/forge'
+pkgver=0.9.2
+arch=('i686' 'x86_64')
+pkgrel=4
+epoch=1
+license=('BSD')
+makedepends=('cmake' 'doxygen' 'graphviz' 'git' 'python' 'glm' 'gcc5')
+depends=('glfw' 'freetype2' 'fontconfig' 'freeimage')
+source=(https://github.com/arrayfire/forge/archive/v${pkgver}.tar.gz)
+md5sums=('dfb1a6f9c228aa90efa1089cd4b0d65b')
+
+build() {
+  cd forge-${pkgver}
+
+  rm -rf build
+  mkdir build && cd build
+
+  export CC=gcc-5
+  export CXX=g++-5
+  cmake .. \
+  

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

2017-03-12 Thread Sven-Hendrik Haase
Date: Monday, March 13, 2017 @ 00:40:05
  Author: svenstaro
Revision: 215918

upgpkg: forge 1:0.9.2-4

rebuild with gcc5

Modified:
  forge/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 22:19:54 UTC (rev 215917)
+++ PKGBUILD2017-03-13 00:40:05 UTC (rev 215918)
@@ -4,10 +4,10 @@
 url='https://github.com/arrayfire/forge'
 pkgver=0.9.2
 arch=('i686' 'x86_64')
-pkgrel=3
+pkgrel=4
 epoch=1
 license=('BSD')
-makedepends=('cmake' 'doxygen' 'graphviz' 'git' 'python' 'glm')
+makedepends=('cmake' 'doxygen' 'graphviz' 'git' 'python' 'glm' 'gcc5')
 depends=('glfw' 'freetype2' 'fontconfig' 'freeimage')
 source=(https://github.com/arrayfire/forge/archive/v${pkgver}.tar.gz)
 md5sums=('dfb1a6f9c228aa90efa1089cd4b0d65b')
@@ -18,6 +18,8 @@
   rm -rf build
   mkdir build && cd build
 
+  export CC=gcc-5
+  export CXX=g++-5
   cmake .. \
   -DCMAKE_INSTALL_PREFIX=/usr \
   -DBUILD_EXAMPLES=ON \


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 22:19:27
  Author: felixonmars
Revision: 215916

upgpkg: hopenpgp-tools 0.19.4-53

rebuild with base-compat,0.9.2

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 22:14:12 UTC (rev 215915)
+++ PKGBUILD2017-03-12 22:19:27 UTC (rev 215916)
@@ -4,7 +4,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.19.4
-pkgrel=52
+pkgrel=53
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 22:19:54
  Author: felixonmars
Revision: 215917

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 215916, hopenpgp-tools/trunk/PKGBUILD)
  hopenpgp-tools/repos/community-staging-x86_64/
  hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 215916, 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 215916, 
hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 22:19:54 UTC (rev 215917)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.4
+pkgrel=53
+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 
215916, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 22:19:54 UTC (rev 215917)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.4
+pkgrel=53
+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 darcs/repos (4 files)

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 22:14:12
  Author: felixonmars
Revision: 215915

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

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

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

Copied: darcs/repos/community-staging-i686/PKGBUILD (from rev 215914, 
darcs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 22:14:12 UTC (rev 215915)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.12.5
+pkgrel=10
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('curl')
+makedepends=("ghc=8.0.1" "haskell-async" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-cryptohash" "haskell-data-ordlist" "haskell-fgl" 
"haskell-graphviz"
+ "haskell-hashable" "haskell-html" "haskell-http" "haskell-mmap" 
"haskell-mtl"
+ "haskell-network" "haskell-network-uri" "haskell-old-time" 
"haskell-parsec"
+ "haskell-sandi" "haskell-random" "haskell-regex-applicative"
+ "haskell-regex-compat-tdfa" "haskell-tar" "haskell-text"
+ "haskell-transformers-compat" "haskell-unix-compat" 
"haskell-utf8-string"
+ "haskell-vector" "haskell-zip-archive" "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('355b04c85c27bca43c8c380212988d9c1e9a984b0b593ceb2884de4295063553')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv -fnetwork-uri
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+# Remove library and doc (license only)
+rm -r "$pkgdir"/usr/{lib,share/doc}
+chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
+
+install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
+install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
+}

Copied: darcs/repos/community-staging-x86_64/PKGBUILD (from rev 215914, 
darcs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 22:14:12 UTC (rev 215915)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.12.5
+pkgrel=10
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('curl')
+makedepends=("ghc=8.0.1" "haskell-async" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-cryptohash" "haskell-data-ordlist" "haskell-fgl" 
"haskell-graphviz"
+ "haskell-hashable" "haskell-html" "haskell-http" "haskell-mmap" 
"haskell-mtl"
+ "haskell-network" "haskell-network-uri" "haskell-old-time" 
"haskell-parsec"
+ "haskell-sandi" "haskell-random" "haskell-regex-applicative"
+ "haskell-regex-compat-tdfa" "haskell-tar" "haskell-text"
+ "haskell-transformers-compat" "haskell-unix-compat" 
"haskell-utf8-string"
+ "haskell-vector" "haskell-zip-archive" "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('355b04c85c27bca43c8c380212988d9c1e9a984b0b593ceb2884de4295063553')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv -fnetwork-uri
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+# Remove library and doc (license only)
+rm -r "$pkgdir"/usr/{lib,share/doc}
+chmod 644 

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 22:13:46
  Author: felixonmars
Revision: 215914

upgpkg: darcs 2.12.5-10

rebuild with base-compat,0.9.2

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 22:04:47 UTC (rev 215913)
+++ PKGBUILD2017-03-12 22:13:46 UTC (rev 215914)
@@ -4,7 +4,7 @@
 
 pkgname=darcs
 pkgver=2.12.5
-pkgrel=9
+pkgrel=10
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net;
 license=("GPL")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 22:04:47
  Author: felixonmars
Revision: 215913

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

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

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

Copied: haskell-graphviz/repos/community-staging-i686/PKGBUILD (from rev 
215912, haskell-graphviz/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 22:04:47 UTC (rev 215913)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=graphviz
+pkgname=haskell-graphviz
+pkgver=2999.18.1.2
+pkgrel=7
+pkgdesc="Bindings to Graphviz for graph visualisation."
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-colour" "haskell-dlist" "haskell-fgl" 
"haskell-polyparse"
+ "haskell-temporary" "haskell-text" "haskell-wl-pprint-text")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b08c2026d3810c15f6ad49a07fd7b879978d958fa477b369b719ec00741c85fc')
+
+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-test-parsing
+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.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: haskell-graphviz/repos/community-staging-x86_64/PKGBUILD (from rev 
215912, haskell-graphviz/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 22:04:47 UTC (rev 215913)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=graphviz
+pkgname=haskell-graphviz
+pkgver=2999.18.1.2
+pkgrel=7
+pkgdesc="Bindings to Graphviz for graph visualisation."
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-colour" "haskell-dlist" "haskell-fgl" 
"haskell-polyparse"
+ "haskell-temporary" "haskell-text" "haskell-wl-pprint-text")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b08c2026d3810c15f6ad49a07fd7b879978d958fa477b369b719ec00741c85fc')
+
+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-test-parsing
+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 

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 22:04:22
  Author: felixonmars
Revision: 215912

upgpkg: haskell-graphviz 2999.18.1.2-7

rebuild with base-compat,0.9.2

Modified:
  haskell-graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 21:55:08 UTC (rev 215911)
+++ PKGBUILD2017-03-12 22:04:22 UTC (rev 215912)
@@ -5,7 +5,7 @@
 _hkgname=graphviz
 pkgname=haskell-graphviz
 pkgver=2999.18.1.2
-pkgrel=6
+pkgrel=7
 pkgdesc="Bindings to Graphviz for graph visualisation."
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


[arch-commits] Commit in haskell-wl-pprint-text/repos (4 files)

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 21:55:08
  Author: felixonmars
Revision: 215911

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

Added:
  haskell-wl-pprint-text/repos/community-staging-i686/
  haskell-wl-pprint-text/repos/community-staging-i686/PKGBUILD
(from rev 215910, haskell-wl-pprint-text/trunk/PKGBUILD)
  haskell-wl-pprint-text/repos/community-staging-x86_64/
  haskell-wl-pprint-text/repos/community-staging-x86_64/PKGBUILD
(from rev 215910, haskell-wl-pprint-text/trunk/PKGBUILD)

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

Copied: haskell-wl-pprint-text/repos/community-staging-i686/PKGBUILD (from rev 
215910, haskell-wl-pprint-text/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 21:55:08 UTC (rev 215911)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wl-pprint-text
+pkgname=haskell-wl-pprint-text
+pkgver=1.1.1.0
+pkgrel=2
+pkgdesc="A Wadler/Leijen Pretty Printer for Text values"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-base-compat" "haskell-text")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('2960c8201c05d912a1df748a3ceeadc7525905ff1c371d7b4972f4011eca0acd')
+
+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-wl-pprint-text/repos/community-staging-x86_64/PKGBUILD (from 
rev 215910, haskell-wl-pprint-text/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 21:55:08 UTC (rev 215911)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wl-pprint-text
+pkgname=haskell-wl-pprint-text
+pkgver=1.1.1.0
+pkgrel=2
+pkgdesc="A Wadler/Leijen Pretty Printer for Text values"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-base-compat" "haskell-text")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('2960c8201c05d912a1df748a3ceeadc7525905ff1c371d7b4972f4011eca0acd')
+
+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" 

[arch-commits] Commit in haskell-wl-pprint-text/trunk (PKGBUILD)

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 21:54:43
  Author: felixonmars
Revision: 215910

upgpkg: haskell-wl-pprint-text 1.1.1.0-2

rebuild with base-compat,0.9.2

Modified:
  haskell-wl-pprint-text/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 21:51:46 UTC (rev 215909)
+++ PKGBUILD2017-03-12 21:54:43 UTC (rev 215910)
@@ -5,7 +5,7 @@
 _hkgname=wl-pprint-text
 pkgname=haskell-wl-pprint-text
 pkgver=1.1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A Wadler/Leijen Pretty Printer for Text values"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2017-03-12 Thread Antonio Rojas
Date: Sunday, March 12, 2017 @ 21:52:01
  Author: arojas
Revision: 290693

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

Added:
  php/repos/testing-i686/
  php/repos/testing-i686/PKGBUILD
(from rev 290692, php/trunk/PKGBUILD)
  php/repos/testing-i686/apache.conf
(from rev 290692, php/trunk/apache.conf)
  php/repos/testing-i686/apache.patch
(from rev 290692, php/trunk/apache.patch)
  php/repos/testing-i686/generate_patches
(from rev 290692, php/trunk/generate_patches)
  php/repos/testing-i686/php-fpm.patch
(from rev 290692, php/trunk/php-fpm.patch)
  php/repos/testing-i686/php-fpm.tmpfiles
(from rev 290692, php/trunk/php-fpm.tmpfiles)
  php/repos/testing-i686/php.ini.patch
(from rev 290692, php/trunk/php.ini.patch)
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 290692, php/trunk/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 290692, php/trunk/apache.conf)
  php/repos/testing-x86_64/apache.patch
(from rev 290692, php/trunk/apache.patch)
  php/repos/testing-x86_64/generate_patches
(from rev 290692, php/trunk/generate_patches)
  php/repos/testing-x86_64/php-fpm.patch
(from rev 290692, php/trunk/php-fpm.patch)
  php/repos/testing-x86_64/php-fpm.tmpfiles
(from rev 290692, php/trunk/php-fpm.tmpfiles)
  php/repos/testing-x86_64/php.ini.patch
(from rev 290692, php/trunk/php.ini.patch)

-+
 testing-i686/PKGBUILD   |  332 ++
 testing-i686/apache.conf|   13 +
 testing-i686/apache.patch   |   20 ++
 testing-i686/generate_patches   |   48 +
 testing-i686/php-fpm.patch  |   74 
 testing-i686/php-fpm.tmpfiles   |1 
 testing-i686/php.ini.patch  |   97 +++
 testing-x86_64/PKGBUILD |  332 ++
 testing-x86_64/apache.conf  |   13 +
 testing-x86_64/apache.patch |   20 ++
 testing-x86_64/generate_patches |   48 +
 testing-x86_64/php-fpm.patch|   74 
 testing-x86_64/php-fpm.tmpfiles |1 
 testing-x86_64/php.ini.patch|   97 +++
 14 files changed, 1170 insertions(+)

Copied: php/repos/testing-i686/PKGBUILD (from rev 290692, php/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-12 21:52:01 UTC (rev 290693)
@@ -0,0 +1,332 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-phpdbg'
+ 'php-dblib'
+ 'php-enchant'
+ 'php-gd'
+ 'php-imap'
+ 'php-intl'
+ 'php-mcrypt'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=7.1.2
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libmcrypt' 'libxslt' 'libzip' 'net-snmp'
+ 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre')
+checkdepends=('procps-ng')
+source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
+'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
+sha256sums=('d815a0c39fd57bab1434a77ff0610fb507c22f790c66cd6f26e27030c4b3e971'
+'SKIP'
+'258b33b6531b1128d9804c8b608b6013423a421edcf764747042d07e79ec6df3'
+'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
+'236fdf535389b5b1b60db5c63f91705832191f7de2cf812d79b1cd8744c97c6d'
+'640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
+'78f60b1d9f3a0ef8af77208feed76e303b3a13e93b80613c1e5a729004a5343c')
+validpgpkeys=('A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0'
+  '528995BFEDFBA7191D46839EF9BA0ADA31CBD89E')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/apache.patch
+   patch -p0 -i ${srcdir}/php-fpm.patch
+   patch -p0 -i ${srcdir}/php.ini.patch
+}
+
+build() {
+   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   "
+
+   local _phpextensions="\
+   --enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+  

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 21:51:46
  Author: felixonmars
Revision: 215909

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 215908, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/stack.install
(from rev 215908, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 215908, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 215908, stack/trunk/stack.install)

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

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 215908, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 21:51:46 UTC (rev 215909)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.3.2
+pkgrel=58
+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-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-binary-tagged" 
"haskell-blaze-builder"
+ "haskell-byteable" "haskell-clock" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-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-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-microlens"
+ "haskell-monad-control" "haskell-monad-logger" 
"haskell-monad-unlift" "haskell-mtl"
+ "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=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('488b9292ea605c92f6ebf79b233e8e374d857b21053051cb44b305dad8f0d3f7')
+
+prepare() {
+sed -i 's/hpack >=0.14.0 && <0.16,/hpack >=0.14.0 \&\& <0.17,/' 
${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}" \
+--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 "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 21:51:19
  Author: felixonmars
Revision: 215908

upgpkg: stack 1.3.2-58

rebuild with base-compat,0.9.2

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 21:45:23 UTC (rev 215907)
+++ PKGBUILD2017-03-12 21:51:19 UTC (rev 215908)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.3.2
-pkgrel=57
+pkgrel=58
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-03-12 Thread Antonio Rojas
Date: Sunday, March 12, 2017 @ 21:51:11
  Author: arojas
Revision: 290692

libzip 1.2 rebuild

Modified:
  php/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 21:37:23 UTC (rev 290691)
+++ PKGBUILD2017-03-12 21:51:11 UTC (rev 290692)
@@ -22,7 +22,7 @@
  'php-tidy'
  'php-xsl')
 pkgver=7.1.2
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('PHP')
 url='http://www.php.net'


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

2017-03-12 Thread Levente Polyak
Date: Sunday, March 12, 2017 @ 21:45:23
  Author: anthraxx
Revision: 215907

archrelease: copy trunk to multilib-x86_64

Added:
  fasm/repos/multilib-x86_64/
  fasm/repos/multilib-x86_64/PKGBUILD
(from rev 215906, fasm/trunk/PKGBUILD)

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

Copied: fasm/repos/multilib-x86_64/PKGBUILD (from rev 215906, 
fasm/trunk/PKGBUILD)
===
--- multilib-x86_64/PKGBUILD(rev 0)
+++ multilib-x86_64/PKGBUILD2017-03-12 21:45:23 UTC (rev 215907)
@@ -0,0 +1,57 @@
+# Maintainer: Levente Polyak 
+# Contributor: Chris Andrews 
+# Contributor: FadeMind 
+# Contributor: Serge Victor 
+# Contributor: Krzysztof Wloch 
+# Contributor: Luke McCarthy 
+
+pkgname=fasm
+pkgver=1.71.60
+pkgrel=3
+pkgdesc='Fast and efficient self-assembling x86 assembler for DOS, Windows and 
Linux operating systems'
+url='https://flatassembler.net/'
+arch=('i686' 'x86_64')
+license=('custom')
+depends_i686=('glibc')
+depends_x86_64=('lib32-glibc')
+source=(${pkgname}-${pkgver}.tgz::https://flatassembler.net/${pkgname}-${pkgver}.tgz)
+sha512sums=('6c31fd044a972cb694b84adbb2b18940d9256f12c4ad1acd466b2f9c99c3bc01bfa6daba434e480c7694be5a604809d5f0da8dc41ff09919f0a5f0dda9ad74b3')
+
+build() {
+  cd ${pkgname}
+  CFLAGS+=" -pie"
+
+  # compile fasm with itself
+  ./fasm source/libc/${pkgname}.asm
+  gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -L/usr/lib32 
source/libc/${pkgname}.o -o source/libc/${pkgname}
+
+  # tools
+  local s
+  for s in listing prepsrc symbols; do
+./source/libc/${pkgname} tools/libc/${s}.asm ${s}.o
+gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o ${s} ${s}.o
+  done
+}
+
+package() {
+  cd ${pkgname}
+
+  install -Dm 755 source/libc/${pkgname} -t "${pkgdir}/usr/bin"
+  # tools
+  local s
+  for s in listing prepsrc symbols; do
+install -Dm 755 ${s} "${pkgdir}/usr/bin/${pkgname}-${s}"
+  done
+
+  # docs
+  install -Dm 644 ${pkgname}.txt whatsnew.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 examples/elfexe/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe"
+  install -Dm 644 examples/elfexe/dynamic/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
+  install -Dm 644 examples/elfexe/dynamic/*.inc -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
+  install -Dm 644 examples/elfobj/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfobj"
+  install -Dm 644 examples/libcdemo/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/libcdemo"
+  install -Dm 644 examples/libcdemo/*.inc -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/libcdemo"
+  install -Dm 644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in fasm/repos/community-i686 (PKGBUILD PKGBUILD)

2017-03-12 Thread Levente Polyak
Date: Sunday, March 12, 2017 @ 21:45:11
  Author: anthraxx
Revision: 215906

archrelease: copy trunk to community-i686

Added:
  fasm/repos/community-i686/PKGBUILD
(from rev 215905, fasm/trunk/PKGBUILD)
Deleted:
  fasm/repos/community-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-12 21:45:04 UTC (rev 215905)
+++ PKGBUILD2017-03-12 21:45:11 UTC (rev 215906)
@@ -1,56 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Chris Andrews 
-# Contributor: FadeMind 
-# Contributor: Serge Victor 
-# Contributor: Krzysztof Wloch 
-# Contributor: Luke McCarthy 
-
-pkgname=fasm
-pkgver=1.71.60
-pkgrel=2
-pkgdesc='Fast and efficient self-assembling x86 assembler for DOS, Windows and 
Linux operating systems'
-url='https://flatassembler.net/'
-arch=('i686' 'x86_64')
-license=('custom')
-depends_x86_64=('lib32-glibc')
-source=(${pkgname}-${pkgver}.tgz::https://flatassembler.net/${pkgname}-${pkgver}.tgz)
-sha512sums=('6c31fd044a972cb694b84adbb2b18940d9256f12c4ad1acd466b2f9c99c3bc01bfa6daba434e480c7694be5a604809d5f0da8dc41ff09919f0a5f0dda9ad74b3')
-
-build() {
-  cd ${pkgname}
-  CFLAGS+=" -pie"
-
-  # compile fasm with itself
-  ./fasm source/libc/${pkgname}.asm
-  gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -L/usr/lib32 
source/libc/${pkgname}.o -o source/libc/${pkgname}
-
-  # tools
-  local s
-  for s in listing prepsrc symbols; do
-./source/libc/${pkgname} tools/libc/${s}.asm ${s}.o
-gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o ${s} ${s}.o
-  done
-}
-
-package() {
-  cd ${pkgname}
-
-  install -Dm 755 source/libc/${pkgname} -t "${pkgdir}/usr/bin"
-  # tools
-  local s
-  for s in listing prepsrc symbols; do
-install -Dm 755 ${s} "${pkgdir}/usr/bin/${pkgname}-${s}"
-  done
-
-  # docs
-  install -Dm 644 ${pkgname}.txt whatsnew.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 examples/elfexe/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe"
-  install -Dm 644 examples/elfexe/dynamic/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
-  install -Dm 644 examples/elfexe/dynamic/*.inc -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
-  install -Dm 644 examples/elfobj/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfobj"
-  install -Dm 644 examples/libcdemo/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/libcdemo"
-  install -Dm 644 examples/libcdemo/*.inc -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/libcdemo"
-  install -Dm 644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: fasm/repos/community-i686/PKGBUILD (from rev 215905, 
fasm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-12 21:45:11 UTC (rev 215906)
@@ -0,0 +1,57 @@
+# Maintainer: Levente Polyak 
+# Contributor: Chris Andrews 
+# Contributor: FadeMind 
+# Contributor: Serge Victor 
+# Contributor: Krzysztof Wloch 
+# Contributor: Luke McCarthy 
+
+pkgname=fasm
+pkgver=1.71.60
+pkgrel=3
+pkgdesc='Fast and efficient self-assembling x86 assembler for DOS, Windows and 
Linux operating systems'
+url='https://flatassembler.net/'
+arch=('i686' 'x86_64')
+license=('custom')
+depends_i686=('glibc')
+depends_x86_64=('lib32-glibc')
+source=(${pkgname}-${pkgver}.tgz::https://flatassembler.net/${pkgname}-${pkgver}.tgz)
+sha512sums=('6c31fd044a972cb694b84adbb2b18940d9256f12c4ad1acd466b2f9c99c3bc01bfa6daba434e480c7694be5a604809d5f0da8dc41ff09919f0a5f0dda9ad74b3')
+
+build() {
+  cd ${pkgname}
+  CFLAGS+=" -pie"
+
+  # compile fasm with itself
+  ./fasm source/libc/${pkgname}.asm
+  gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -L/usr/lib32 
source/libc/${pkgname}.o -o source/libc/${pkgname}
+
+  # tools
+  local s
+  for s in listing prepsrc symbols; do
+./source/libc/${pkgname} tools/libc/${s}.asm ${s}.o
+gcc -m32 ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o ${s} ${s}.o
+  done
+}
+
+package() {
+  cd ${pkgname}
+
+  install -Dm 755 source/libc/${pkgname} -t "${pkgdir}/usr/bin"
+  # tools
+  local s
+  for s in listing prepsrc symbols; do
+install -Dm 755 ${s} "${pkgdir}/usr/bin/${pkgname}-${s}"
+  done
+
+  # docs
+  install -Dm 644 ${pkgname}.txt whatsnew.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 examples/elfexe/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe"
+  install -Dm 644 examples/elfexe/dynamic/*.asm -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
+  install -Dm 644 examples/elfexe/dynamic/*.inc -t 
"${pkgdir}/usr/share/doc/${pkgname}/examples/elfexe/dynamic"
+  

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

2017-03-12 Thread Levente Polyak
Date: Sunday, March 12, 2017 @ 21:45:04
  Author: anthraxx
Revision: 215905

upgpkg: fasm 1.71.60-3 (rebuild)

Modified:
  fasm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 21:38:58 UTC (rev 215904)
+++ PKGBUILD2017-03-12 21:45:04 UTC (rev 215905)
@@ -7,11 +7,12 @@
 
 pkgname=fasm
 pkgver=1.71.60
-pkgrel=2
+pkgrel=3
 pkgdesc='Fast and efficient self-assembling x86 assembler for DOS, Windows and 
Linux operating systems'
 url='https://flatassembler.net/'
 arch=('i686' 'x86_64')
 license=('custom')
+depends_i686=('glibc')
 depends_x86_64=('lib32-glibc')
 
source=(${pkgname}-${pkgver}.tgz::https://flatassembler.net/${pkgname}-${pkgver}.tgz)
 
sha512sums=('6c31fd044a972cb694b84adbb2b18940d9256f12c4ad1acd466b2f9c99c3bc01bfa6daba434e480c7694be5a604809d5f0da8dc41ff09919f0a5f0dda9ad74b3')


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

2017-03-12 Thread Levente Polyak
Date: Sunday, March 12, 2017 @ 21:38:58
  Author: anthraxx
Revision: 215904

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-12 21:38:47 UTC (rev 215903)
+++ community-i686/PKGBUILD 2017-03-12 21:38:58 UTC (rev 215904)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=nimble
-pkgver=0.7.8
-pkgrel=1
-epoch=1
-pkgdesc='Package manager for the Nim programming language'
-arch=('x86_64' 'i686')
-url='https://github.com/nim-lang/nimble'
-license=('BSD')
-makedepends=('nim' 'git')
-depends=('glibc')
-source=("git://github.com/nim-lang/nimble.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  git clone -b v0.14.0 --depth 1 git://github.com/nim-lang/nim vendor/nim
-}
-
-build() {
-  cd "$pkgname"
-
-  nim c -d:release src/nimble
-}
-
-package() {
-  cd "$pkgname"
-
-  install -Dm755 src/nimble "$pkgdir/usr/bin/nimble"
-  install -Dm644 license.txt "$pkgdir/usr/share/licenses/$pkgname/license.txt"
-
-  # Nimble looks for nimscriptapi.nim in /usr/bin/nimblepkg/, of all places.
-  cp -r src/nimblepkg "$pkgdir/usr/share/$pkgname"
-  ln -s "/usr/share/$pkgname" "$pkgdir/usr/bin/nimblepkg"
-}
-
-# getver: github.com/nim-lang/nimble
-# vim:set ts=2 sw=2 et:

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

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-12 21:38:47 UTC (rev 215903)
+++ community-x86_64/PKGBUILD   2017-03-12 21:38:58 UTC (rev 215904)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=nimble
-pkgver=0.7.8
-pkgrel=1
-epoch=1
-pkgdesc='Package manager for the Nim programming language'
-arch=('x86_64' 'i686')
-url='https://github.com/nim-lang/nimble'
-license=('BSD')
-makedepends=('nim' 'git')
-depends=('glibc')
-source=("git://github.com/nim-lang/nimble.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  git clone -b v0.14.0 --depth 1 git://github.com/nim-lang/nim vendor/nim
-}
-
-build() {
-  cd "$pkgname"
-
-  nim c -d:release src/nimble
-}
-
-package() {
-  cd "$pkgname"
-
-  install -Dm755 src/nimble "$pkgdir/usr/bin/nimble"
-  install -Dm644 license.txt "$pkgdir/usr/share/licenses/$pkgname/license.txt"
-
-  # Nimble looks for nimscriptapi.nim in /usr/bin/nimblepkg/, of all places.
-  cp -r src/nimblepkg "$pkgdir/usr/share/$pkgname"
-  ln -s "/usr/share/$pkgname" "$pkgdir/usr/bin/nimblepkg"
-}
-
-# getver: github.com/nim-lang/nimble
-# vim:set ts=2 sw=2 et:

Copied: nimble/repos/community-x86_64/PKGBUILD (from rev 215903, 
nimble/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-12 21:38:58 UTC (rev 215904)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak 

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

2017-03-12 Thread Levente Polyak
Date: Sunday, March 12, 2017 @ 21:38:47
  Author: anthraxx
Revision: 215903

upgpkg: nimble 1:0.8.4-1

Modified:
  nimble/trunk/PKGBUILD

--+
 PKGBUILD |   37 +++--
 1 file changed, 15 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 21:06:08 UTC (rev 215902)
+++ PKGBUILD2017-03-12 21:38:47 UTC (rev 215903)
@@ -1,41 +1,34 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
+# Maintainer: Levente Polyak 
+# Contributor: Alexander F Rødseth 
 
 pkgname=nimble
-pkgver=0.7.8
+pkgver=0.8.4
 pkgrel=1
 epoch=1
 pkgdesc='Package manager for the Nim programming language'
+url='https://github.com/nim-lang/nimble'
 arch=('x86_64' 'i686')
-url='https://github.com/nim-lang/nimble'
 license=('BSD')
-makedepends=('nim' 'git')
 depends=('glibc')
-source=("git://github.com/nim-lang/nimble.git#tag=v$pkgver")
-md5sums=('SKIP')
+makedepends=('nim')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/nimble/archive/v${pkgver}.tar.gz)
+sha256sums=('ba47cee4f74c56d14d6142e9324b3a8fd5a0e6cd8cbcf81e04ae58543b848e5e')
+sha512sums=('93092b59926941b35d74cf678dc6c45e7c7d23654441fd59cf0794d0f9917fb1c13cf813e1109172981bb1da06f925116643b97141fdc039b43fbbcad7b583d7')
 
-prepare() {
-  cd "$pkgname"
-
-  git clone -b v0.14.0 --depth 1 git://github.com/nim-lang/nim vendor/nim
-}
-
 build() {
-  cd "$pkgname"
-
+  cd ${pkgname}-${pkgver}
   nim c -d:release src/nimble
 }
 
 package() {
-  cd "$pkgname"
+  cd ${pkgname}-${pkgver}
 
-  install -Dm755 src/nimble "$pkgdir/usr/bin/nimble"
-  install -Dm644 license.txt "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+  install -Dm 755 src/nimble -t "${pkgdir}/usr/bin"
+  install -Dm 644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 
   # Nimble looks for nimscriptapi.nim in /usr/bin/nimblepkg/, of all places.
-  cp -r src/nimblepkg "$pkgdir/usr/share/$pkgname"
-  ln -s "/usr/share/$pkgname" "$pkgdir/usr/bin/nimblepkg"
+  cp -r src/nimblepkg "${pkgdir}/usr/share/${pkgname}"
+  ln -s /usr/share/${pkgname} "${pkgdir}/usr/bin/nimblepkg"
 }
 
-# getver: github.com/nim-lang/nimble
-# vim:set ts=2 sw=2 et:
+# vim: ts=2 sw=2 et:


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

2017-03-12 Thread Antonio Rojas
Date: Sunday, March 12, 2017 @ 21:37:23
  Author: arojas
Revision: 290691

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

Added:
  ebook-tools/repos/testing-i686/
  ebook-tools/repos/testing-i686/PKGBUILD
(from rev 290690, ebook-tools/trunk/PKGBUILD)
  ebook-tools/repos/testing-x86_64/
  ebook-tools/repos/testing-x86_64/PKGBUILD
(from rev 290690, ebook-tools/trunk/PKGBUILD)

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

Copied: ebook-tools/repos/testing-i686/PKGBUILD (from rev 290690, 
ebook-tools/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-12 21:37:23 UTC (rev 290691)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+
+pkgname=ebook-tools
+pkgver=0.2.2
+pkgrel=4
+pkgdesc="Tools for accessing and converting various ebook file formats"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/ebook-tools/;
+license=('custom')
+depends=('libzip' 'libxml2' 'convertlit')
+makedepends=('pkgconfig' 'cmake')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('67bce67ceb72dcc3578d6a81ef92b29b')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: ebook-tools/repos/testing-x86_64/PKGBUILD (from rev 290690, 
ebook-tools/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-03-12 21:37:23 UTC (rev 290691)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+
+pkgname=ebook-tools
+pkgver=0.2.2
+pkgrel=4
+pkgdesc="Tools for accessing and converting various ebook file formats"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/ebook-tools/;
+license=('custom')
+depends=('libzip' 'libxml2' 'convertlit')
+makedepends=('pkgconfig' 'cmake')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('67bce67ceb72dcc3578d6a81ef92b29b')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 ${srcdir}/${pkgname}-${pkgver}/LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2017-03-12 Thread Antonio Rojas
Date: Sunday, March 12, 2017 @ 21:36:45
  Author: arojas
Revision: 290690

libzip 1.2 rebuild

Modified:
  ebook-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:51:28 UTC (rev 290689)
+++ PKGBUILD2017-03-12 21:36:45 UTC (rev 290690)
@@ -3,7 +3,7 @@
 
 pkgname=ebook-tools
 pkgver=0.2.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Tools for accessing and converting various ebook file formats"
 arch=('i686' 'x86_64')
 url="http://sourceforge.net/projects/ebook-tools/;


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

2017-03-12 Thread Levente Polyak
Date: Sunday, March 12, 2017 @ 21:06:08
  Author: anthraxx
Revision: 215902

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

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

---+
 /PKGBUILD |  160 
 community-i686/PKGBUILD   |   79 -
 community-x86_64/PKGBUILD |   79 -
 3 files changed, 160 insertions(+), 158 deletions(-)

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

Copied: nim/repos/community-i686/PKGBUILD (from rev 215901, nim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-12 21:06:08 UTC (rev 215902)
@@ -0,0 +1,80 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander F Rødseth 
+# Contributor: Dominik Picheta 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Jesus Alvarez 
+
+pkgname=nim
+_pkgname=Nim
+pkgver=0.16.0
+pkgrel=2
+pkgdesc='Imperative, multi-paradigm, compiled programming language'
+url='https://nim-lang.org/'
+arch=('x86_64' 'i686')
+license=('MIT')
+depends=('python' 'bash')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/Nim/archive/v${pkgver}.tar.gz
+
csources-${pkgver}.tar.gz::https://github.com/nim-lang/csources/archive/v${pkgver}.tar.gz)
+sha256sums=('63b35b35d5976fec9d88e3307adb78d2e3988538e5855d13b7f6e6f89c593f7c'
+'e909cea51c2d1f6b04af955db219877ab9f9666741ccc750334597eded80844e')
+sha512sums=('c1cf13d5003d14f3ea0f332ea0ee7355923d17d3020fd35e9106d36e8225f0fde1a49e5c76bb6a48bc6fefbfa3f9205efdd234ad0da9aec2c136d0a067f92a2a'
+

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

2017-03-12 Thread Levente Polyak
Date: Sunday, March 12, 2017 @ 21:05:57
  Author: anthraxx
Revision: 215901

upgpkg: nim 0.16.0-2 (distribute compiler sources for tools)

Modified:
  nim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 21:00:18 UTC (rev 215900)
+++ PKGBUILD2017-03-12 21:05:57 UTC (rev 215901)
@@ -7,7 +7,7 @@
 pkgname=nim
 _pkgname=Nim
 pkgver=0.16.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Imperative, multi-paradigm, compiled programming language'
 url='https://nim-lang.org/'
 arch=('x86_64' 'i686')
@@ -57,6 +57,7 @@
 
   install -d "${pkgdir}/usr/lib"
   cp -a lib "${pkgdir}/usr/lib/nim"
+  cp -a compiler{,.nimble} "${pkgdir}/usr/lib/nim"
   install -m 755 lib/libnimrtl.so "${pkgdir}/usr/lib/libnimrtl.so"
 
   # Fix FS#48118, related to the doc2 command


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 21:00:18
  Author: felixonmars
Revision: 215900

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 215899, purescript/trunk/PKGBUILD)
  purescript/repos/community-staging-i686/http-client-0.5.patch
(from rev 215899, purescript/trunk/http-client-0.5.patch)
  purescript/repos/community-staging-x86_64/
  purescript/repos/community-staging-x86_64/PKGBUILD
(from rev 215899, purescript/trunk/PKGBUILD)
  purescript/repos/community-staging-x86_64/http-client-0.5.patch
(from rev 215899, purescript/trunk/http-client-0.5.patch)

+
 community-staging-i686/PKGBUILD|   57 ++
 community-staging-i686/http-client-0.5.patch   |   90 +++
 community-staging-x86_64/PKGBUILD  |   57 ++
 community-staging-x86_64/http-client-0.5.patch |   90 +++
 4 files changed, 294 insertions(+)

Copied: purescript/repos/community-staging-i686/PKGBUILD (from rev 215899, 
purescript/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 21:00:18 UTC (rev 215900)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.10.7
+pkgrel=12
+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-foldl" "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-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-system-filepath"
+ "haskell-text" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-turtle" "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;
+http-client-0.5.patch)
+sha256sums=('85dff2f4b6916e9d45b6a1b2674dc6c91c56ac6c1597f627d5f1cbee9d0b3a9d'
+'2e8ac0165d8dfde7f2ec27f4b77fb4139a435cf2148d3853ec95455334601b03')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -i ../http-client-0.5.patch
+
+sed -e 's/pipes >= 4.0.0 && < 4.3.0,/pipes >= 4.0.0 \&\& < 4.4.0,/' \
+-e 's/websockets >= 0.9 && <0.10/websockets >= 0.9 \&\& <0.11/' \
+-e 's/aeson >= 0.8 && < 1.0,/aeson >= 0.8,/' \
+-i purescript.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
+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-i686/http-client-0.5.patch (from rev 
215899, purescript/trunk/http-client-0.5.patch)
===
--- community-staging-i686/http-client-0.5.patch
(rev 0)
+++ community-staging-i686/http-client-0.5.patch2017-03-12 21:00:18 UTC 
(rev 215900)
@@ -0,0 +1,90 @@
+From e0527fb7f10721870014d7c08b1a2f8f5bf2edcf Mon Sep 17 00:00:00 2001
+From: Oleg Grenrus 
+Date: Mon, 22 Aug 2016 17:51:42 +0300
+Subject: [PATCH] Support http-client-0.5
+
+---
+ purescript.cabal   |  2 +-
+ src/Language/PureScript/Ide/Pursuit.hs | 44 --
+ stack.yaml   

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:59:51
  Author: felixonmars
Revision: 215899

upgpkg: purescript 0.10.7-12

rebuild with base-compat,0.9.2

Modified:
  purescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 20:33:57 UTC (rev 215898)
+++ PKGBUILD2017-03-12 20:59:51 UTC (rev 215899)
@@ -4,7 +4,7 @@
 
 pkgname=purescript
 pkgver=0.10.7
-pkgrel=11
+pkgrel=12
 pkgdesc="PureScript Programming Language Compiler"
 url="http://www.purescript.org/;
 license=("custom:BSD3")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:33:57
  Author: felixonmars
Revision: 215898

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 215897, haskell-hpack/trunk/PKGBUILD)
  haskell-hpack/repos/community-staging-x86_64/
  haskell-hpack/repos/community-staging-x86_64/PKGBUILD
(from rev 215897, 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 215897, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 20:33:57 UTC (rev 215898)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.16.0
+pkgrel=7
+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=('a2fad3e908ec8f8c2f98da404826a0b9')
+
+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 215897, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 20:33:57 UTC (rev 215898)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.16.0
+pkgrel=7
+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=('a2fad3e908ec8f8c2f98da404826a0b9')
+
+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-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:33:31
  Author: felixonmars
Revision: 215897

upgpkg: haskell-hpack 0.16.0-7

rebuild with base-compat,0.9.2

Modified:
  haskell-hpack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 20:29:52 UTC (rev 215896)
+++ PKGBUILD2017-03-12 20:33:31 UTC (rev 215897)
@@ -6,7 +6,7 @@
 pkgname=haskell-hpack
 _hkgname=hpack
 pkgver=0.16.0
-pkgrel=6
+pkgrel=7
 pkgdesc="An alternative format for Haskell packages"
 url="https://github.com/sol/hpack#readme;
 license=("MIT")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:29:26
  Author: felixonmars
Revision: 215895

upgpkg: haskell-hakyll 4.9.5.1-20

rebuild with base-compat,0.9.2

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 20:22:53 UTC (rev 215894)
+++ PKGBUILD2017-03-12 20:29:26 UTC (rev 215895)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.5.1
-pkgrel=19
+pkgrel=20
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:29:52
  Author: felixonmars
Revision: 215896

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 215895, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 215895, 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 215895, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 20:29:52 UTC (rev 215896)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=20
+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 
215895, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 20:29:52 UTC (rev 215896)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=20
+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 pandoc-citeproc/repos (4 files)

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:22:53
  Author: felixonmars
Revision: 215894

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 215893, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 215893, 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 215893, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 20:22:53 UTC (rev 215894)
@@ -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=13
+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 
215893, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 20:22:53 UTC (rev 215894)
@@ -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=13
+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-citeproc/trunk (PKGBUILD)

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:22:27
  Author: felixonmars
Revision: 215893

upgpkg: pandoc-citeproc 0.10.4.1-13

rebuild with base-compat,0.9.2

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 20:10:29 UTC (rev 215892)
+++ PKGBUILD2017-03-12 20:22:27 UTC (rev 215893)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.10.4.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("custom:BSD3")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:10:29
  Author: felixonmars
Revision: 215892

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

Added:
  haskell-aeson-pretty/repos/community-staging-i686/
  haskell-aeson-pretty/repos/community-staging-i686/PKGBUILD
(from rev 215891, haskell-aeson-pretty/trunk/PKGBUILD)
  haskell-aeson-pretty/repos/community-staging-x86_64/
  haskell-aeson-pretty/repos/community-staging-x86_64/PKGBUILD
(from rev 215891, haskell-aeson-pretty/trunk/PKGBUILD)

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

Copied: haskell-aeson-pretty/repos/community-staging-i686/PKGBUILD (from rev 
215891, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 20:10:29 UTC (rev 215892)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.8.2
+pkgrel=8
+pkgdesc="JSON pretty-printing library and command-line tool."
+url="http://github.com/informatikr/aeson-pretty;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base-compat" "haskell-cmdargs"
+ "haskell-scientific" "haskell-text" "haskell-unordered-containers" 
"haskell-vector")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('6cb429821040bdd6f819b1c6170cac630a4155fa57fa24eb3d496c06030fb9b0')
+
+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-lib-only
+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-aeson-pretty/repos/community-staging-x86_64/PKGBUILD (from rev 
215891, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 20:10:29 UTC (rev 215892)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.8.2
+pkgrel=8
+pkgdesc="JSON pretty-printing library and command-line tool."
+url="http://github.com/informatikr/aeson-pretty;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base-compat" "haskell-cmdargs"
+ "haskell-scientific" "haskell-text" "haskell-unordered-containers" 
"haskell-vector")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('6cb429821040bdd6f819b1c6170cac630a4155fa57fa24eb3d496c06030fb9b0')
+
+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-lib-only
+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"
+ 

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:10:01
  Author: felixonmars
Revision: 215891

upgpkg: haskell-aeson-pretty 0.8.2-8

rebuild with base-compat,0.9.2

Modified:
  haskell-aeson-pretty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 20:07:51 UTC (rev 215890)
+++ PKGBUILD2017-03-12 20:10:01 UTC (rev 215891)
@@ -5,7 +5,7 @@
 _hkgname=aeson-pretty
 pkgname=haskell-aeson-pretty
 pkgver=0.8.2
-pkgrel=7
+pkgrel=8
 pkgdesc="JSON pretty-printing library and command-line tool."
 url="http://github.com/informatikr/aeson-pretty;
 license=("custom:BSD3")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:07:51
  Author: felixonmars
Revision: 215890

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

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

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

Copied: haskell-yesod-auth/repos/community-staging-i686/PKGBUILD (from rev 
215889, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 20:07:51 UTC (rev 215890)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17
+pkgrel=8
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('444a9b4b913e5f7addb1b9c5aa778f32d2b9e040d9b1c4d8a232fae908392891')
+
+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 \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 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-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
215889, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 20:07:51 UTC (rev 215890)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17
+pkgrel=8
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:07:25
  Author: felixonmars
Revision: 215889

upgpkg: haskell-yesod-auth 1.4.17-8

rebuild with base-compat,0.9.2

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 20:00:45 UTC (rev 215888)
+++ PKGBUILD2017-03-12 20:07:25 UTC (rev 215889)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.17
-pkgrel=7
+pkgrel=8
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:00:45
  Author: felixonmars
Revision: 215888

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 215887, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 215887, 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 215887, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 20:00:45 UTC (rev 215888)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170301.1
+pkgrel=12
+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;)
+sha256sums=('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 215887, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 20:00:45 UTC (rev 215888)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170301.1
+pkgrel=12
+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-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 20:00:16
  Author: felixonmars
Revision: 215887

upgpkg: git-annex 6.20170301.1-12

rebuild with base-compat,0.9.2

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:50:59 UTC (rev 215886)
+++ PKGBUILD2017-03-12 20:00:16 UTC (rev 215887)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20170301.1
-pkgrel=11
+pkgrel=12
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-03-12 Thread Jelle van der Waa
Date: Sunday, March 12, 2017 @ 19:50:59
  Author: jelle
Revision: 215886

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

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

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

Copied: opusfile/repos/community-staging-i686/PKGBUILD (from rev 215885, 
opusfile/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:50:59 UTC (rev 215886)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: DrZaius 
+
+pkgname=opusfile
+pkgver=0.8
+pkgrel=2
+pkgdesc='Library for opening, seeking, and decoding .opus files'
+arch=('x86_64' 'i686')
+url='http://www.opus-codec.org/'
+license=('BSD')
+depends=('libogg' 'openssl' 'opus')
+source=("http://downloads.xiph.org/releases/opus/$pkgname-$pkgver.tar.gz;)
+sha256sums=('2c231ed3cfaa1b3173f52d740e5bbd77d51b9dfecb87014b404917fba4b855a4')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/opusfile/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: opusfile/repos/community-staging-x86_64/PKGBUILD (from rev 215885, 
opusfile/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:50:59 UTC (rev 215886)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: DrZaius 
+
+pkgname=opusfile
+pkgver=0.8
+pkgrel=2
+pkgdesc='Library for opening, seeking, and decoding .opus files'
+arch=('x86_64' 'i686')
+url='http://www.opus-codec.org/'
+license=('BSD')
+depends=('libogg' 'openssl' 'opus')
+source=("http://downloads.xiph.org/releases/opus/$pkgname-$pkgver.tar.gz;)
+sha256sums=('2c231ed3cfaa1b3173f52d740e5bbd77d51b9dfecb87014b404917fba4b855a4')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/opusfile/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-03-12 Thread Jelle van der Waa
Date: Sunday, March 12, 2017 @ 19:50:47
  Author: jelle
Revision: 215885

upgpkg: opusfile 0.8-2

openssl 1.1.0 rebuild

Modified:
  opusfile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:45:10 UTC (rev 215884)
+++ PKGBUILD2017-03-12 19:50:47 UTC (rev 215885)
@@ -5,7 +5,7 @@
 
 pkgname=opusfile
 pkgver=0.8
-pkgrel=1
+pkgrel=2
 pkgdesc='Library for opening, seeking, and decoding .opus files'
 arch=('x86_64' 'i686')
 url='http://www.opus-codec.org/'


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:45:10
  Author: felixonmars
Revision: 215884

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 215883, haskell-yesod/trunk/PKGBUILD)
  haskell-yesod/repos/community-staging-x86_64/
  haskell-yesod/repos/community-staging-x86_64/PKGBUILD
(from rev 215883, 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 215883, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:45:10 UTC (rev 215884)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=5
+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 215883, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:45:10 UTC (rev 215884)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=5
+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-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:44:44
  Author: felixonmars
Revision: 215883

upgpkg: haskell-yesod 1.4.5-5

rebuild with base-compat,0.9.2

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:41:48 UTC (rev 215882)
+++ PKGBUILD2017-03-12 19:44:44 UTC (rev 215883)
@@ -5,7 +5,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.4.5
-pkgrel=4
+pkgrel=5
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:41:48
  Author: felixonmars
Revision: 215882

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

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

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

Copied: haskell-yesod-form/repos/community-staging-i686/PKGBUILD (from rev 
215881, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:41:48 UTC (rev 215882)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.11
+pkgrel=7
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-data-default" "haskell-email-validate" "haskell-network-uri"
+ "haskell-persistent" "haskell-resourcet" "haskell-semigroups"
+ "haskell-shakespeare" "haskell-text" "haskell-wai" 
"haskell-xss-sanitize"
+ "haskell-yesod-core" "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('45edd3ea97a09968426ab20ea4595389b61f5fc2c9e328cecbdeed4a78dcd8d6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 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 $_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-form/repos/community-staging-x86_64/PKGBUILD (from rev 
215881, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:41:48 UTC (rev 215882)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.11
+pkgrel=7
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-data-default" "haskell-email-validate" "haskell-network-uri"
+ "haskell-persistent" "haskell-resourcet" "haskell-semigroups"
+ "haskell-shakespeare" "haskell-text" "haskell-wai" 
"haskell-xss-sanitize"
+ "haskell-yesod-core" "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('45edd3ea97a09968426ab20ea4595389b61f5fc2c9e328cecbdeed4a78dcd8d6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:41:23
  Author: felixonmars
Revision: 215881

upgpkg: haskell-yesod-form 1.4.11-7

rebuild with base-compat,0.9.2

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:40:37 UTC (rev 215880)
+++ PKGBUILD2017-03-12 19:41:23 UTC (rev 215881)
@@ -5,7 +5,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.4.11
-pkgrel=6
+pkgrel=7
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-03-12 Thread Jerome Leclanche
Date: Sunday, March 12, 2017 @ 19:40:37
  Author: jleclanche
Revision: 215880

archrelease: copy trunk to community-x86_64

Added:
  sway/repos/community-x86_64/PKGBUILD
(from rev 215879, sway/trunk/PKGBUILD)
  sway/repos/community-x86_64/sway.install
(from rev 215879, sway/trunk/sway.install)
Deleted:
  sway/repos/community-x86_64/sway.install

--+
 PKGBUILD |   49 +
 sway.install |   14 +++---
 2 files changed, 56 insertions(+), 7 deletions(-)

Copied: sway/repos/community-x86_64/PKGBUILD (from rev 215879, 
sway/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-12 19:40:37 UTC (rev 215880)
@@ -0,0 +1,49 @@
+# $Id$
+
+pkgname=sway
+pkgver=0.12
+pkgrel=2
+pkgdesc="i3 compatible window manager for Wayland"
+arch=("i686" "x86_64")
+url="http://swaywm.org;
+license=("MIT")
+depends=(
+   "wlc" "xorg-server-xwayland" "json-c" "pango" "wayland" "gdk-pixbuf2"
+)
+optdepends=(
+   "rxvt-unicode: Default terminal emulator."
+   "dmenu: Default for launching applications."
+   "imagemagick: For taking screenshots."
+   "ffmpeg: For recording screencasts."
+   "i3status: To display system information with a bar."
+)
+makedepends=("cmake" "asciidoc")
+source=(
+   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz;
+   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz.sig;
+)
+install="$pkgname.install"
+sha256sums=(
+   "d67d557fefa1d671af792fc4acba8257f8257b5e5b42ccf7a2fe29d44b93fc0e"
+   "SKIP"
+)
+validpgpkeys=(
+   "9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A"
+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_SYSCONFDIR=/etc \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   DESTDIR="$pkgdir" make install
+   install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: sway.install
===
--- sway.install2017-03-12 19:39:07 UTC (rev 215879)
+++ sway.install2017-03-12 19:40:37 UTC (rev 215880)
@@ -1,7 +0,0 @@
-post_install() {
-   setcap cap_sys_ptrace=eip /usr/bin/sway
-}
-
-post_upgrade() {
-   post_install $1
-}

Copied: sway/repos/community-x86_64/sway.install (from rev 215879, 
sway/trunk/sway.install)
===
--- sway.install(rev 0)
+++ sway.install2017-03-12 19:40:37 UTC (rev 215880)
@@ -0,0 +1,7 @@
+post_install() {
+   setcap cap_sys_ptrace=eip /usr/bin/sway
+}
+
+post_upgrade() {
+   post_install $1
+}


[arch-commits] Commit in sway/repos/community-i686 (3 files)

2017-03-12 Thread Jerome Leclanche
Date: Sunday, March 12, 2017 @ 19:39:07
  Author: jleclanche
Revision: 215879

archrelease: copy trunk to community-i686

Added:
  sway/repos/community-i686/PKGBUILD
(from rev 215878, sway/trunk/PKGBUILD)
  sway/repos/community-i686/sway.install
(from rev 215878, sway/trunk/sway.install)
Deleted:
  sway/repos/community-i686/sway.install

--+
 PKGBUILD |   49 +
 sway.install |   14 +++---
 2 files changed, 56 insertions(+), 7 deletions(-)

Copied: sway/repos/community-i686/PKGBUILD (from rev 215878, 
sway/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-12 19:39:07 UTC (rev 215879)
@@ -0,0 +1,49 @@
+# $Id$
+
+pkgname=sway
+pkgver=0.12
+pkgrel=2
+pkgdesc="i3 compatible window manager for Wayland"
+arch=("i686" "x86_64")
+url="http://swaywm.org;
+license=("MIT")
+depends=(
+   "wlc" "xorg-server-xwayland" "json-c" "pango" "wayland" "gdk-pixbuf2"
+)
+optdepends=(
+   "rxvt-unicode: Default terminal emulator."
+   "dmenu: Default for launching applications."
+   "imagemagick: For taking screenshots."
+   "ffmpeg: For recording screencasts."
+   "i3status: To display system information with a bar."
+)
+makedepends=("cmake" "asciidoc")
+source=(
+   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz;
+   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz.sig;
+)
+install="$pkgname.install"
+sha256sums=(
+   "d67d557fefa1d671af792fc4acba8257f8257b5e5b42ccf7a2fe29d44b93fc0e"
+   "SKIP"
+)
+validpgpkeys=(
+   "9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A"
+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_SYSCONFDIR=/etc \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   DESTDIR="$pkgdir" make install
+   install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: sway.install
===
--- sway.install2017-03-12 19:37:18 UTC (rev 215878)
+++ sway.install2017-03-12 19:39:07 UTC (rev 215879)
@@ -1,7 +0,0 @@
-post_install() {
-   setcap cap_sys_ptrace=eip /usr/bin/sway
-}
-
-post_upgrade() {
-   post_install $1
-}

Copied: sway/repos/community-i686/sway.install (from rev 215878, 
sway/trunk/sway.install)
===
--- sway.install(rev 0)
+++ sway.install2017-03-12 19:39:07 UTC (rev 215879)
@@ -0,0 +1,7 @@
+post_install() {
+   setcap cap_sys_ptrace=eip /usr/bin/sway
+}
+
+post_upgrade() {
+   post_install $1
+}


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:37:18
  Author: felixonmars
Revision: 215878

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

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

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

Copied: haskell-yesod-persistent/repos/community-staging-i686/PKGBUILD (from 
rev 215877, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:37:18 UTC (rev 215878)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d938894209e27a7f2a6e41906a9db02cf5c66df2236a864361571ba4e63b1056')
+
+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-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 215877, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:37:18 UTC (rev 215878)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d938894209e27a7f2a6e41906a9db02cf5c66df2236a864361571ba4e63b1056')
+
+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 

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:36:52
  Author: felixonmars
Revision: 215877

upgpkg: haskell-yesod-persistent 1.4.2-2

rebuild with base-compat,0.9.2

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:34:35 UTC (rev 215876)
+++ PKGBUILD2017-03-12 19:36:52 UTC (rev 215877)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:34:35
  Author: felixonmars
Revision: 215876

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

Added:
  haskell-persistent-template/repos/community-staging-i686/
  haskell-persistent-template/repos/community-staging-i686/PKGBUILD
(from rev 215875, haskell-persistent-template/trunk/PKGBUILD)
  haskell-persistent-template/repos/community-staging-x86_64/
  haskell-persistent-template/repos/community-staging-x86_64/PKGBUILD
(from rev 215875, haskell-persistent-template/trunk/PKGBUILD)

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

Copied: haskell-persistent-template/repos/community-staging-i686/PKGBUILD (from 
rev 215875, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:34:35 UTC (rev 215876)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.5.2
+pkgrel=2
+pkgdesc="Type-safe, non-relational, multi-backend persistence"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-compat" 
"haskell-http-api-data"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-path-pieces"
+ "haskell-persistent" "haskell-tagged" "haskell-text"
+ "haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('de695b008158f9ae66d103fc33f89c098ebcf59337367063d9f4f816a58b4011')
+
+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-persistent-template/repos/community-staging-x86_64/PKGBUILD 
(from rev 215875, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:34:35 UTC (rev 215876)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.5.2
+pkgrel=2
+pkgdesc="Type-safe, non-relational, multi-backend persistence"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-compat" 
"haskell-http-api-data"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-path-pieces"
+ "haskell-persistent" "haskell-tagged" "haskell-text"
+ "haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('de695b008158f9ae66d103fc33f89c098ebcf59337367063d9f4f816a58b4011')
+
+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}"
+
+

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:34:03
  Author: felixonmars
Revision: 215875

upgpkg: haskell-persistent-template 2.5.2-2

rebuild with base-compat,0.9.2

Modified:
  haskell-persistent-template/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:31:11 UTC (rev 215874)
+++ PKGBUILD2017-03-12 19:34:03 UTC (rev 215875)
@@ -5,7 +5,7 @@
 _hkgname=persistent-template
 pkgname=haskell-persistent-template
 pkgver=2.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Type-safe, non-relational, multi-backend persistence"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:31:11
  Author: felixonmars
Revision: 215874

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

Added:
  haskell-aeson-compat/repos/community-staging-i686/
  haskell-aeson-compat/repos/community-staging-i686/PKGBUILD
(from rev 215873, haskell-aeson-compat/trunk/PKGBUILD)
  haskell-aeson-compat/repos/community-staging-x86_64/
  haskell-aeson-compat/repos/community-staging-x86_64/PKGBUILD
(from rev 215873, haskell-aeson-compat/trunk/PKGBUILD)

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

Copied: haskell-aeson-compat/repos/community-staging-i686/PKGBUILD (from rev 
215873, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:31:11 UTC (rev 215874)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-compat
+pkgname=haskell-aeson-compat
+pkgver=0.3.6
+pkgrel=7
+pkgdesc="Compatibility layer for aeson"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base-compat" "haskell-exceptions"
+ "haskell-hashable" "haskell-scientific" "haskell-semigroups" 
"haskell-text"
+ "haskell-tagged" "haskell-time-locale-compat" 
"haskell-unordered-containers"
+ "haskell-vector")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('7aa365d9f44f708f25c939489528836aa10b411e0a3e630c8c2888670874d142')
+
+prepare() {
+# nats is an empty package in new GHC
+sed -e '/nats/d' \
+-i ${_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
+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-aeson-compat/repos/community-staging-x86_64/PKGBUILD (from rev 
215873, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:31:11 UTC (rev 215874)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-compat
+pkgname=haskell-aeson-compat
+pkgver=0.3.6
+pkgrel=7
+pkgdesc="Compatibility layer for aeson"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base-compat" "haskell-exceptions"
+ "haskell-hashable" "haskell-scientific" "haskell-semigroups" 
"haskell-text"
+ "haskell-tagged" "haskell-time-locale-compat" 
"haskell-unordered-containers"
+ "haskell-vector")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('7aa365d9f44f708f25c939489528836aa10b411e0a3e630c8c2888670874d142')
+
+prepare() {
+# nats is an empty package in new GHC
+sed -e '/nats/d' \
+-i ${_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
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister 

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:30:45
  Author: felixonmars
Revision: 215873

upgpkg: haskell-aeson-compat 0.3.6-7

rebuild with base-compat,0.9.2

Modified:
  haskell-aeson-compat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:28:54 UTC (rev 215872)
+++ PKGBUILD2017-03-12 19:30:45 UTC (rev 215873)
@@ -5,7 +5,7 @@
 _hkgname=aeson-compat
 pkgname=haskell-aeson-compat
 pkgver=0.3.6
-pkgrel=6
+pkgrel=7
 pkgdesc="Compatibility layer for aeson"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:28:54
  Author: felixonmars
Revision: 215872

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

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

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

Copied: haskell-yesod-static/repos/community-staging-i686/PKGBUILD (from rev 
215871, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:28:54 UTC (rev 215872)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.2
+pkgrel=4
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-async" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" "haskell-css-text" 
"haskell-data-default"
+ "haskell-exceptions" "haskell-file-embed" "haskell-hashable" 
"haskell-hjsmin"
+ "haskell-http-types" "haskell-mime-types" "haskell-old-time" 
"haskell-resourcet"
+ "haskell-text" "haskell-unix-compat" "haskell-unordered-containers" 
"haskell-wai"
+ "haskell-wai-app-static" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b949c5f6087d9e32c7ff2f41ed647b1df605bbe1ce2cbcfe59cc46dc4a72099e')
+
+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-static/repos/community-staging-x86_64/PKGBUILD (from rev 
215871, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:28:54 UTC (rev 215872)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.2
+pkgrel=4
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-async" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" "haskell-css-text" 
"haskell-data-default"
+ "haskell-exceptions" "haskell-file-embed" "haskell-hashable" 
"haskell-hjsmin"
+ "haskell-http-types" "haskell-mime-types" "haskell-old-time" 
"haskell-resourcet"
+ "haskell-text" "haskell-unix-compat" "haskell-unordered-containers" 
"haskell-wai"
+ "haskell-wai-app-static" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b949c5f6087d9e32c7ff2f41ed647b1df605bbe1ce2cbcfe59cc46dc4a72099e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:28:26
  Author: felixonmars
Revision: 215871

upgpkg: haskell-yesod-static 1.5.2-4

rebuild with base-compat,0.9.2

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:25:23 UTC (rev 215870)
+++ PKGBUILD2017-03-12 19:28:26 UTC (rev 215871)
@@ -5,7 +5,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.5.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-03-12 Thread Jan Steffens
Date: Sunday, March 12, 2017 @ 19:25:55
  Author: heftig
Revision: 290688

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-12 19:25:18 UTC (rev 290687)
+++ extra-i686/PKGBUILD 2017-03-12 19:25:55 UTC (rev 290688)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-pkgbase=python-systemd
-pkgname=(python-systemd python2-systemd)
-pkgver=231
-pkgrel=2
-_commit=b71b8b64ebb28ddbf1130e9127f1e9fc5fb6117f
-pkgdesc="Python bindings for systemd"
-arch=(i686 x86_64)
-url="https://github.com/systemd/python-systemd;
-license=(LGPL)
-makedepends=(systemd python python2 git)
-source=("$pkgbase::git+${url}#tag=v${pkgver}")
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a $pkgbase python2
-  mv $pkgbase python3
-}
-
-build() {
-  cd python3
-  make PYTHON=/usr/bin/python3
-
-  cd ../python2
-  make PYTHON=/usr/bin/python2
-}
-
-package_python-systemd() {
-  depends=(python3 libsystemd)
-
-  cd python3
-  python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-systemd() {
-  depends=(python2 libsystemd)
-
-  cd python2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-systemd/repos/extra-i686/PKGBUILD (from rev 290687, 
python-systemd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-12 19:25:55 UTC (rev 290688)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+pkgbase=python-systemd
+pkgname=(python-systemd python2-systemd)
+pkgver=233
+pkgrel=1
+pkgdesc="Python bindings for systemd"
+arch=(i686 x86_64)
+url="https://github.com/systemd/python-systemd;
+license=(LGPL)
+makedepends=(systemd python python2 git)
+_commit=0cae964314226d2d3e9a0a72d9d250cfb0217609  # tags/v233^0
+source=("$pkgbase::git+${url}#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cp -a $pkgbase python2
+  cp -a $pkgbase python3
+}
+
+build() {
+  cd python3
+  make PYTHON=/usr/bin/python3
+
+  cd ../python2
+  make PYTHON=/usr/bin/python2
+}
+
+package_python-systemd() {
+  depends=(python3 libsystemd)
+
+  cd python3
+  python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python2-systemd() {
+  depends=(python2 libsystemd)
+
+  cd python2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-03-12 19:25:18 UTC (rev 290687)
+++ extra-x86_64/PKGBUILD   2017-03-12 19:25:55 UTC (rev 290688)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-pkgbase=python-systemd
-pkgname=(python-systemd python2-systemd)
-pkgver=231
-pkgrel=2
-_commit=b71b8b64ebb28ddbf1130e9127f1e9fc5fb6117f
-pkgdesc="Python bindings for systemd"
-arch=(i686 x86_64)
-url="https://github.com/systemd/python-systemd;
-license=(LGPL)
-makedepends=(systemd python python2 git)
-source=("$pkgbase::git+${url}#tag=v${pkgver}")
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a $pkgbase python2
-  mv $pkgbase python3
-}
-
-build() {
-  cd python3
-  make PYTHON=/usr/bin/python3
-
-  cd ../python2
-  make PYTHON=/usr/bin/python2
-}
-
-package_python-systemd() {
-  depends=(python3 libsystemd)
-
-  cd python3
-  python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-systemd() {
-  depends=(python2 libsystemd)
-
-  cd python2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-systemd/repos/extra-x86_64/PKGBUILD (from rev 290687, 
python-systemd/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-03-12 19:25:55 UTC (rev 290688)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+pkgbase=python-systemd
+pkgname=(python-systemd python2-systemd)
+pkgver=233
+pkgrel=1
+pkgdesc="Python bindings for systemd"
+arch=(i686 x86_64)
+url="https://github.com/systemd/python-systemd;

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

2017-03-12 Thread Jan Steffens
Date: Sunday, March 12, 2017 @ 19:25:18
  Author: heftig
Revision: 290687

233-1

Modified:
  python-systemd/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:11:49 UTC (rev 290686)
+++ PKGBUILD2017-03-12 19:25:18 UTC (rev 290687)
@@ -2,20 +2,25 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 pkgbase=python-systemd
 pkgname=(python-systemd python2-systemd)
-pkgver=231
-pkgrel=2
-_commit=b71b8b64ebb28ddbf1130e9127f1e9fc5fb6117f
+pkgver=233
+pkgrel=1
 pkgdesc="Python bindings for systemd"
 arch=(i686 x86_64)
 url="https://github.com/systemd/python-systemd;
 license=(LGPL)
 makedepends=(systemd python python2 git)
-source=("$pkgbase::git+${url}#tag=v${pkgver}")
+_commit=0cae964314226d2d3e9a0a72d9d250cfb0217609  # tags/v233^0
+source=("$pkgbase::git+${url}#commit=$_commit")
 sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
 prepare() {
   cp -a $pkgbase python2
-  mv $pkgbase python3
+  cp -a $pkgbase python3
 }
 
 build() {


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:25:23
  Author: felixonmars
Revision: 215870

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

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

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

Copied: haskell-yesod-default/repos/community-staging-i686/PKGBUILD (from rev 
215869, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:25:23 UTC (rev 215870)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=113
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+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-default/repos/community-staging-x86_64/PKGBUILD (from rev 
215869, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:25:23 UTC (rev 215870)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=113
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+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-yesod-default/trunk (PKGBUILD)

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:24:58
  Author: felixonmars
Revision: 215869

upgpkg: haskell-yesod-default 1.2.0-113

rebuild with base-compat,0.9.2

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:22:38 UTC (rev 215868)
+++ PKGBUILD2017-03-12 19:24:58 UTC (rev 215869)
@@ -5,7 +5,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=112
+pkgrel=113
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:22:38
  Author: felixonmars
Revision: 215868

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

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

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

Copied: haskell-yesod-core/repos/community-staging-i686/PKGBUILD (from rev 
215867, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:22:38 UTC (rev 215868)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.32
+pkgrel=2
+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-auto-update" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-cereal" "haskell-clientsession" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cookie" "haskell-data-default" "haskell-deepseq-generics" 
"haskell-exceptions"
+ "haskell-fast-logger" "haskell-http-types" "haskell-lifted-base" 
"haskell-monad-control"
+ "haskell-monad-logger" "haskell-mtl" "haskell-mwc-random" 
"haskell-old-locale"
+ "haskell-parsec" "haskell-path-pieces" "haskell-primitive" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-semigroups" 
"haskell-shakespeare"
+ "haskell-text" "haskell-transformers-base" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-wai" 
"haskell-wai-extra"
+ "haskell-wai-logger" "haskell-warp" "haskell-word8")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('0a3389e0e5d188c0bfcb99bb39856adcde28a1ebf572c0aebf8afa0e34946869')
+
+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-core/repos/community-staging-x86_64/PKGBUILD (from rev 
215867, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:22:38 UTC (rev 215868)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.32
+pkgrel=2
+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-auto-update" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-cereal" "haskell-clientsession" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cookie" "haskell-data-default" "haskell-deepseq-generics" 
"haskell-exceptions"
+ "haskell-fast-logger" "haskell-http-types" "haskell-lifted-base" 
"haskell-monad-control"
+ "haskell-monad-logger" "haskell-mtl" "haskell-mwc-random" 

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:22:12
  Author: felixonmars
Revision: 215867

upgpkg: haskell-yesod-core 1.4.32-2

rebuild with base-compat,0.9.2

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:16:27 UTC (rev 215866)
+++ PKGBUILD2017-03-12 19:22:12 UTC (rev 215867)
@@ -5,7 +5,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.4.32
-pkgrel=1
+pkgrel=2
 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-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:16:27
  Author: felixonmars
Revision: 215866

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 215865, stylish-haskell/trunk/PKGBUILD)
  stylish-haskell/repos/community-staging-x86_64/
  stylish-haskell/repos/community-staging-x86_64/PKGBUILD
(from rev 215865, 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 215865, 
stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:16:27 UTC (rev 215866)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.7.1.0
+pkgrel=11
+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 
215865, stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:16:27 UTC (rev 215866)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.7.1.0
+pkgrel=11
+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-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:16:01
  Author: felixonmars
Revision: 215865

upgpkg: stylish-haskell 0.7.1.0-11

rebuild with base-compat,0.9.2

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:13:14 UTC (rev 215864)
+++ PKGBUILD2017-03-12 19:16:01 UTC (rev 215865)
@@ -4,7 +4,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.7.1.0
-pkgrel=10
+pkgrel=11
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell;
 license=("custom:BSD3")


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:13:14
  Author: felixonmars
Revision: 215864

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 215863, pandoc-crossref/trunk/PKGBUILD)
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 215863, 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 215863, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:13:14 UTC (rev 215864)
@@ -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=8
+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 
215863, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:13:14 UTC (rev 215864)
@@ -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=8
+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-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:12:48
  Author: felixonmars
Revision: 215863

upgpkg: pandoc-crossref 0.2.5.0-8

rebuild with base-compat,0.9.2

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 19:05:42 UTC (rev 215862)
+++ PKGBUILD2017-03-12 19:12:48 UTC (rev 215863)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-crossref
 pkgname=(pandoc-crossref haskell-pandoc-crossref)
 pkgver=0.2.5.0
-pkgrel=7
+pkgrel=8
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("GPL2")


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

2017-03-12 Thread Jan Steffens
Date: Sunday, March 12, 2017 @ 19:11:49
  Author: heftig
Revision: 290686

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

Added:
  gnome-documents/repos/extra-i686/PKGBUILD
(from rev 290685, gnome-documents/trunk/PKGBUILD)
  gnome-documents/repos/extra-x86_64/PKGBUILD
(from rev 290685, gnome-documents/trunk/PKGBUILD)
Deleted:
  gnome-documents/repos/extra-i686/PKGBUILD
  gnome-documents/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-12 19:11:06 UTC (rev 290685)
+++ extra-i686/PKGBUILD 2017-03-12 19:11:49 UTC (rev 290686)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-documents
-pkgver=3.22.0+8+gf53c45e
-pkgrel=1
-pkgdesc="A document manager application for GNOME"
-url="https://wiki.gnome.org/Apps/Documents;
-arch=(i686 x86_64)
-license=(GPL)
-groups=(gnome-extra)
-depends=(evince gjs gtk3 gnome-desktop gnome-online-accounts libgdata
- tracker libzapojit webkit2gtk gnome-online-miners librsvg libgepub)
-makedepends=(intltool gobject-introspection git gnome-common)
-optdepends=('libreoffice-fresh: Support for Libreoffice document types')
-_commit=f53c45e240550bcc502ba644d15c9c8495defc6f  # gnome-3-22
-source=("git+https://git.gnome.org/browse/gnome-documents#commit=$_commit;
-"git+https://git.gnome.org/browse/libgd;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libgd.url "$srcdir/libgd"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-
-build() {
-  cd $pkgname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---libexecdir=/usr/lib/$pkgname
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-documents/repos/extra-i686/PKGBUILD (from rev 290685, 
gnome-documents/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-12 19:11:49 UTC (rev 290686)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-documents
+pkgver=3.22.1
+pkgrel=1
+pkgdesc="A document manager application for GNOME"
+url="https://wiki.gnome.org/Apps/Documents;
+arch=(i686 x86_64)
+license=(GPL)
+groups=(gnome-extra)
+depends=(evince gjs gtk3 gnome-desktop gnome-online-accounts libgdata
+ tracker libzapojit webkit2gtk gnome-online-miners librsvg libgepub)
+makedepends=(intltool gobject-introspection git gnome-common)
+optdepends=('libreoffice-fresh: Support for Libreoffice document types')
+_commit=19d8b6c6d86a81b5ea124b8426ffe4e91dbfbeee  # tags/3.22.1^0
+source=("git+https://git.gnome.org/browse/gnome-documents#commit=$_commit;
+"git+https://git.gnome.org/browse/libgd;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+  
+
+build() {
+  cd $pkgname
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-03-12 19:11:06 UTC (rev 290685)
+++ extra-x86_64/PKGBUILD   2017-03-12 19:11:49 UTC (rev 290686)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-documents
-pkgver=3.22.0+8+gf53c45e
-pkgrel=1
-pkgdesc="A document manager application for GNOME"
-url="https://wiki.gnome.org/Apps/Documents;
-arch=(i686 x86_64)
-license=(GPL)
-groups=(gnome-extra)
-depends=(evince gjs gtk3 gnome-desktop gnome-online-accounts libgdata
- tracker libzapojit webkit2gtk gnome-online-miners librsvg libgepub)
-makedepends=(intltool gobject-introspection git gnome-common)
-optdepends=('libreoffice-fresh: Support for Libreoffice document types')
-_commit=f53c45e240550bcc502ba644d15c9c8495defc6f  # gnome-3-22

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

2017-03-12 Thread Jan Steffens
Date: Sunday, March 12, 2017 @ 19:11:06
  Author: heftig
Revision: 290685

3.22.1-1

Modified:
  gnome-documents/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 18:59:30 UTC (rev 290684)
+++ PKGBUILD2017-03-12 19:11:06 UTC (rev 290685)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-documents
-pkgver=3.22.0+8+gf53c45e
+pkgver=3.22.1
 pkgrel=1
 pkgdesc="A document manager application for GNOME"
 url="https://wiki.gnome.org/Apps/Documents;
@@ -13,7 +13,7 @@
  tracker libzapojit webkit2gtk gnome-online-miners librsvg libgepub)
 makedepends=(intltool gobject-introspection git gnome-common)
 optdepends=('libreoffice-fresh: Support for Libreoffice document types')
-_commit=f53c45e240550bcc502ba644d15c9c8495defc6f  # gnome-3-22
+_commit=19d8b6c6d86a81b5ea124b8426ffe4e91dbfbeee  # tags/3.22.1^0
 source=("git+https://git.gnome.org/browse/gnome-documents#commit=$_commit;
 "git+https://git.gnome.org/browse/libgd;)
 sha256sums=('SKIP'


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:05:42
  Author: felixonmars
Revision: 215862

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 215861, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 215861, 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 215861, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 19:05:42 UTC (rev 215862)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=22
+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 215861, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 19:05:42 UTC (rev 215862)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=22
+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-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 19:05:15
  Author: felixonmars
Revision: 215861

upgpkg: pandoc 1.19.2.1-22

rebuild with base-compat,0.9.2

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 18:51:05 UTC (rev 215860)
+++ PKGBUILD2017-03-12 19:05:15 UTC (rev 215861)
@@ -5,7 +5,7 @@
 pkgbase=pandoc
 pkgname=(pandoc haskell-pandoc)
 pkgver=1.19.2.1
-pkgrel=21
+pkgrel=22
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2017-03-12 Thread Levente Polyak
Date: Sunday, March 12, 2017 @ 18:50:54
  Author: anthraxx
Revision: 215859

upgpkg: nim 0.16.0-1

Modified:
  nim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 18:41:27 UTC (rev 215858)
+++ PKGBUILD2017-03-12 18:50:54 UTC (rev 215859)
@@ -1,77 +1,79 @@
-# $Id: PKGBUILD 121061 2014-10-20 12:57:19Z arodseth $
-# Maintainer: Alexander F Rødseth 
+# Maintainer: Levente Polyak 
+# Contributor: Alexander F Rødseth 
 # Contributor: Dominik Picheta 
 # Contributor: Sven-Hendrik Haase 
 # Contributor: Jesus Alvarez 
 
 pkgname=nim
-pkgver=0.15.0
+_pkgname=Nim
+pkgver=0.16.0
 pkgrel=1
 pkgdesc='Imperative, multi-paradigm, compiled programming language'
+url='https://nim-lang.org/'
 arch=('x86_64' 'i686')
-url='http://nim-lang.org/'
 license=('MIT')
-makedepends=('git' 'glib2')
+depends=('python' 'bash')
 options=('!emptydirs')
-source=("$pkgname::git://github.com/Araq/Nimrod.git#tag=v$pkgver")
-md5sums=('SKIP')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/Nim/archive/v${pkgver}.tar.gz
+
csources-${pkgver}.tar.gz::https://github.com/nim-lang/csources/archive/v${pkgver}.tar.gz)
+sha256sums=('63b35b35d5976fec9d88e3307adb78d2e3988538e5855d13b7f6e6f89c593f7c'
+'e909cea51c2d1f6b04af955db219877ab9f9666741ccc750334597eded80844e')
+sha512sums=('c1cf13d5003d14f3ea0f332ea0ee7355923d17d3020fd35e9106d36e8225f0fde1a49e5c76bb6a48bc6fefbfa3f9205efdd234ad0da9aec2c136d0a067f92a2a'
+
'26e303140ea8740a191a3d1b6e9cfff1e9f29bf9fc323709636e0ddce7ecc06eabf37e9c11785c214bb6c0adf908b07a4514b4fbee221d560cc8aabf278438c6')
 
 prepare() {
-  cd "$pkgname"
-
-  rm build/empty.txt && rmdir build
-  git clone --depth=1 git://github.com/nimrod-code/csources build
-  cd build
-  git checkout b39a1df
+  cd ${_pkgname}-${pkgver}
+  mv ../csources-${pkgver} csources
+  rm bin/empty.txt
 }
 
 build() {
-  cd "$pkgname/build"
+  cd ${_pkgname}-${pkgver}
+  export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
 
-  sh build.sh
+  msg2 "Building nim"
+  (cd csources
+sh build.sh
+  )
+  msg2 "Building koch"
+  nim c -d:release koch
+  ./koch boot -d:release -d:nativeStacktrace -d:useGnuReadline
 
-  cd ..
-  ./bin/nim c koch
-  ./koch boot -d:release -d:useGnuReadline
-
-  export PATH="$srcdir/$pkgname/bin:$PATH"
-
-  cd lib
-  nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
-
-  cd ../tools
-  nim c -d:release nimgrep.nim
+  msg2 "Building libs"
+  (cd lib
+nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
+  )
+  msg2 "Building tools"
+  (cd tools
+nim c -d:release nimgrep.nim
+  )
 }
 
 package() {
-  cd "$pkgname"
+  cd ${_pkgname}-${pkgver}
+  export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
 
-  export PATH="$srcdir/$pkgname/bin:$PATH"
+  ./koch install "${pkgdir}"
 
-  ./koch install "$pkgdir"
+  install -d "${pkgdir}/usr/lib"
+  cp -a lib "${pkgdir}/usr/lib/nim"
+  install -m 755 lib/libnimrtl.so "${pkgdir}/usr/lib/libnimrtl.so"
 
-  install -d \
-"$pkgdir/usr/share/nim/doc" "$pkgdir/usr/lib/nim" \
-"$pkgdir/etc" "$pkgdir/usr/bin" "$pkgdir/usr/include"
+  # Fix FS#48118, related to the doc2 command
+  ln -s /usr/share/nim/doc "${pkgdir}/usr/lib/nim/doc"
 
-  cd "$pkgdir/nim"
-  mv lib/* "$pkgdir/usr/lib/nim/"
-  mv config/* "$pkgdir/etc/"
-  cp -a "$srcdir/$pkgname/lib/packages" "$pkgdir/usr/lib/nim/"
-  mv bin/* "$pkgdir/usr/bin/"
+  install -Dm 644 config/* -t "${pkgdir}/etc"
+  install -Dm 755 bin/* tools/nimgrep -t "${pkgdir}/usr/bin"
 
-  # Fix FS50252, unusual placement of header files
-  mv "$pkgdir/usr/lib/nim/"*.h "$pkgdir/usr/include/"
+  # Fix FS#50252, unusual placement of header files
+  install -d "${pkgdir}/usr/include"
+  cp -a "${pkgdir}/usr/lib/nim/"*.h "${pkgdir}/usr/include"
 
-  cd "$srcdir/$pkgname"
-  rm -r "$pkgdir/nim"
-  mv examples web doc/* "$pkgdir/usr/share/nim/doc/"
-  install -m644 lib/libnimrtl.so "$pkgdir/usr/lib/libnimrtl.so"
-  install -m755 tools/nimgrep "$pkgdir/usr/bin/"
-  install -Dm644 copying.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -d "${pkgdir}/usr/share/nim/doc"
+  cp -a examples web doc/* "${pkgdir}/usr/share/nim/doc"
 
-  # Fix FS#48118, related to the doc2 command
-  ln -s /usr/share/nim/doc "$pkgdir/usr/lib/nim/doc"
+  install -Dm 644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -r "${pkgdir}/nim"
 }
 
-# vim:set ts=2 sw=2 et:
+# vim: ts=2 sw=2 et:


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

2017-03-12 Thread Levente Polyak
Date: Sunday, March 12, 2017 @ 18:51:05
  Author: anthraxx
Revision: 215860

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

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

---+
 /PKGBUILD |  158 
 community-i686/PKGBUILD   |   77 -
 community-x86_64/PKGBUILD |   77 -
 3 files changed, 158 insertions(+), 154 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-12 18:50:54 UTC (rev 215859)
+++ community-i686/PKGBUILD 2017-03-12 18:51:05 UTC (rev 215860)
@@ -1,77 +0,0 @@
-# $Id: PKGBUILD 121061 2014-10-20 12:57:19Z arodseth $
-# Maintainer: Alexander F Rødseth 
-# Contributor: Dominik Picheta 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jesus Alvarez 
-
-pkgname=nim
-pkgver=0.15.0
-pkgrel=1
-pkgdesc='Imperative, multi-paradigm, compiled programming language'
-arch=('x86_64' 'i686')
-url='http://nim-lang.org/'
-license=('MIT')
-makedepends=('git' 'glib2')
-options=('!emptydirs')
-source=("$pkgname::git://github.com/Araq/Nimrod.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  rm build/empty.txt && rmdir build
-  git clone --depth=1 git://github.com/nimrod-code/csources build
-  cd build
-  git checkout b39a1df
-}
-
-build() {
-  cd "$pkgname/build"
-
-  sh build.sh
-
-  cd ..
-  ./bin/nim c koch
-  ./koch boot -d:release -d:useGnuReadline
-
-  export PATH="$srcdir/$pkgname/bin:$PATH"
-
-  cd lib
-  nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
-
-  cd ../tools
-  nim c -d:release nimgrep.nim
-}
-
-package() {
-  cd "$pkgname"
-
-  export PATH="$srcdir/$pkgname/bin:$PATH"
-
-  ./koch install "$pkgdir"
-
-  install -d \
-"$pkgdir/usr/share/nim/doc" "$pkgdir/usr/lib/nim" \
-"$pkgdir/etc" "$pkgdir/usr/bin" "$pkgdir/usr/include"
-
-  cd "$pkgdir/nim"
-  mv lib/* "$pkgdir/usr/lib/nim/"
-  mv config/* "$pkgdir/etc/"
-  cp -a "$srcdir/$pkgname/lib/packages" "$pkgdir/usr/lib/nim/"
-  mv bin/* "$pkgdir/usr/bin/"
-
-  # Fix FS50252, unusual placement of header files
-  mv "$pkgdir/usr/lib/nim/"*.h "$pkgdir/usr/include/"
-
-  cd "$srcdir/$pkgname"
-  rm -r "$pkgdir/nim"
-  mv examples web doc/* "$pkgdir/usr/share/nim/doc/"
-  install -m644 lib/libnimrtl.so "$pkgdir/usr/lib/libnimrtl.so"
-  install -m755 tools/nimgrep "$pkgdir/usr/bin/"
-  install -Dm644 copying.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Fix FS#48118, related to the doc2 command
-  ln -s /usr/share/nim/doc "$pkgdir/usr/lib/nim/doc"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nim/repos/community-i686/PKGBUILD (from rev 215859, nim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-12 18:51:05 UTC (rev 215860)
@@ -0,0 +1,79 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander F Rødseth 
+# Contributor: Dominik Picheta 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Jesus Alvarez 
+
+pkgname=nim
+_pkgname=Nim
+pkgver=0.16.0
+pkgrel=1
+pkgdesc='Imperative, multi-paradigm, compiled programming language'
+url='https://nim-lang.org/'
+arch=('x86_64' 'i686')
+license=('MIT')
+depends=('python' 'bash')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/nim-lang/Nim/archive/v${pkgver}.tar.gz
+
csources-${pkgver}.tar.gz::https://github.com/nim-lang/csources/archive/v${pkgver}.tar.gz)
+sha256sums=('63b35b35d5976fec9d88e3307adb78d2e3988538e5855d13b7f6e6f89c593f7c'
+'e909cea51c2d1f6b04af955db219877ab9f9666741ccc750334597eded80844e')
+sha512sums=('c1cf13d5003d14f3ea0f332ea0ee7355923d17d3020fd35e9106d36e8225f0fde1a49e5c76bb6a48bc6fefbfa3f9205efdd234ad0da9aec2c136d0a067f92a2a'
+
'26e303140ea8740a191a3d1b6e9cfff1e9f29bf9fc323709636e0ddce7ecc06eabf37e9c11785c214bb6c0adf908b07a4514b4fbee221d560cc8aabf278438c6')
+
+prepare() {
+  cd ${_pkgname}-${pkgver}
+  mv ../csources-${pkgver} csources
+  rm bin/empty.txt
+}
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  export PATH="${srcdir}/${_pkgname}-${pkgver}/bin:${PATH}"
+
+  msg2 "Building nim"
+  (cd csources
+sh build.sh
+  )
+  msg2 "Building koch"
+  nim c -d:release koch
+  ./koch boot -d:release -d:nativeStacktrace -d:useGnuReadline
+
+  msg2 "Building libs"
+  (cd lib
+nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
+  )
+  msg2 "Building tools"
+  (cd tools
+nim c -d:release nimgrep.nim
+  )
+}
+
+package() {

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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 18:41:27
  Author: felixonmars
Revision: 215858

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 215857, hindent/trunk/PKGBUILD)
  hindent/repos/community-staging-x86_64/
  hindent/repos/community-staging-x86_64/PKGBUILD
(from rev 215857, 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 215857, 
hindent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 18:41:27 UTC (rev 215858)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=5.2.2
+pkgrel=12
+pkgdesc="Extensible Haskell pretty printer"
+url="http://www.github.com/chrisdone/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;)
+sha256sums=('1fc9a92a501552b17219a13fd691e380cc2e2bbf4d768788f13b47639ff4237d')
+
+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 215857, 
hindent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 18:41:27 UTC (rev 215858)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=5.2.2
+pkgrel=12
+pkgdesc="Extensible Haskell pretty printer"
+url="http://www.github.com/chrisdone/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;)
+sha256sums=('1fc9a92a501552b17219a13fd691e380cc2e2bbf4d768788f13b47639ff4237d')
+
+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 sway/trunk (PKGBUILD)

2017-03-12 Thread Jerome Leclanche
Date: Sunday, March 12, 2017 @ 18:40:13
  Author: jleclanche
Revision: 215856

upgpkg: sway 0.12-2

Upstream release 0.12

Modified:
  sway/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 18:37:52 UTC (rev 215855)
+++ PKGBUILD2017-03-12 18:40:13 UTC (rev 215856)
@@ -2,7 +2,7 @@
 
 pkgname=sway
 pkgver=0.12
-pkgrel=1
+pkgrel=2
 pkgdesc="i3 compatible window manager for Wayland"
 arch=("i686" "x86_64")
 url="http://swaywm.org;


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

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 18:41:02
  Author: felixonmars
Revision: 215857

upgpkg: hindent 5.2.2-12

rebuild with base-compat,0.9.2

Modified:
  hindent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 18:40:13 UTC (rev 215856)
+++ PKGBUILD2017-03-12 18:41:02 UTC (rev 215857)
@@ -4,7 +4,7 @@
 
 pkgname=hindent
 pkgver=5.2.2
-pkgrel=11
+pkgrel=12
 pkgdesc="Extensible Haskell pretty printer"
 url="http://www.github.com/chrisdone/hindent;
 license=("custom:BSD3")


  1   2   3   >