[arch-commits] Commit in certbot-dns-digitalocean/repos (3 files)

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:43:50
  Author: felixonmars
Revision: 236118

archrelease: copy trunk to community-any

Added:
  certbot-dns-digitalocean/repos/community-any/
  certbot-dns-digitalocean/repos/community-any/PKGBUILD
(from rev 236117, certbot-dns-digitalocean/trunk/PKGBUILD)
  certbot-dns-digitalocean/repos/community-any/python3.patch
(from rev 236117, certbot-dns-digitalocean/trunk/python3.patch)

---+
 PKGBUILD  |   40 
 python3.patch |   33 +
 2 files changed, 73 insertions(+)

Copied: certbot-dns-digitalocean/repos/community-any/PKGBUILD (from rev 236117, 
certbot-dns-digitalocean/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-11 05:43:50 UTC (rev 236118)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-digitalocean
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="DigitalOcean DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-digitalocean' 
'python-mock'
+ 'python-setuptools' 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc}
+python3.patch)
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('5ebb5c1f291a03afb85fb5f45ec53f5795af8f5f28954be4e8c25624e28089c178f8dba26e5d1a8cabdffcd85629cb4b2410721b0aa4846835e52a9bc2f53699'
+'SKIP'
+
'7d61ce1ac31939ce5f0ea78ef45f74e6e22bc2a5c1348c98a7b1c9f7083eddd0a3448dec9c2d6ef9ea14e763d3fc6672e882bf1460e97770fba0e928ebc52266')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  patch -p2 -i ../python3.patch
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}

Copied: certbot-dns-digitalocean/repos/community-any/python3.patch (from rev 
236117, certbot-dns-digitalocean/trunk/python3.patch)
===
--- community-any/python3.patch (rev 0)
+++ community-any/python3.patch 2017-06-11 05:43:50 UTC (rev 236118)
@@ -0,0 +1,33 @@
+From 41d11cc1e8610c046e9889931197ced07aa195c1 Mon Sep 17 00:00:00 2001
+From: Felix Yan 
+Date: Sun, 11 Jun 2017 13:40:20 +0800
+Subject: [PATCH] Fix digitalocean plugin tests for Python 3
+
+assertItemsEqual() doesn't exist in Python 3.x. Travis didn't fail because of 
some nose errors (so not all tests were run).
+---
+ .../certbot_dns_digitalocean/dns_digitalocean_test.py| 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git 
a/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean_test.py 
b/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean_test.py
+index 7e97eed073..6ff76079b5 100644
+--- 
a/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean_test.py
 
b/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean_test.py
+@@ -2,6 +2,7 @@
+ 
+ import os
+ import unittest
++import six
+ 
+ import digitalocean
+ import mock
+@@ -133,8 +134,8 @@ def test_del_txt_record(self):
+ 
+ correct_record_mock.destroy.assert_called()
+ 
+-self.assertItemsEqual(first_record_mock.destroy.call_args_list, [])
+-self.assertItemsEqual(last_record_mock.destroy.call_args_list, [])
++six.assertCountEqual(self, first_record_mock.destroy.call_args_list, 
[])
++six.assertCountEqual(self, last_record_mock.destroy.call_args_list, 
[])
+ 
+ def test_del_txt_record_error_finding_domain(self):
+ self.manager.get_all_domains.side_effect = API_ERROR


[arch-commits] Commit in (5 files)

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:43:12
  Author: felixonmars
Revision: 236117

addpkg: certbot-dns-digitalocean 0.15.0-1

Added:
  certbot-dns-digitalocean/
  certbot-dns-digitalocean/repos/
  certbot-dns-digitalocean/trunk/
  certbot-dns-digitalocean/trunk/PKGBUILD
  certbot-dns-digitalocean/trunk/python3.patch

---+
 PKGBUILD  |   40 
 python3.patch |   33 +
 2 files changed, 73 insertions(+)

Added: certbot-dns-digitalocean/trunk/PKGBUILD
===
--- certbot-dns-digitalocean/trunk/PKGBUILD (rev 0)
+++ certbot-dns-digitalocean/trunk/PKGBUILD 2017-06-11 05:43:12 UTC (rev 
236117)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-digitalocean
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="DigitalOcean DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-digitalocean' 
'python-mock'
+ 'python-setuptools' 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc}
+python3.patch)
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('5ebb5c1f291a03afb85fb5f45ec53f5795af8f5f28954be4e8c25624e28089c178f8dba26e5d1a8cabdffcd85629cb4b2410721b0aa4846835e52a9bc2f53699'
+'SKIP'
+
'7d61ce1ac31939ce5f0ea78ef45f74e6e22bc2a5c1348c98a7b1c9f7083eddd0a3448dec9c2d6ef9ea14e763d3fc6672e882bf1460e97770fba0e928ebc52266')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  patch -p2 -i ../python3.patch
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


Property changes on: certbot-dns-digitalocean/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: certbot-dns-digitalocean/trunk/python3.patch
===
--- certbot-dns-digitalocean/trunk/python3.patch
(rev 0)
+++ certbot-dns-digitalocean/trunk/python3.patch2017-06-11 05:43:12 UTC 
(rev 236117)
@@ -0,0 +1,33 @@
+From 41d11cc1e8610c046e9889931197ced07aa195c1 Mon Sep 17 00:00:00 2001
+From: Felix Yan 
+Date: Sun, 11 Jun 2017 13:40:20 +0800
+Subject: [PATCH] Fix digitalocean plugin tests for Python 3
+
+assertItemsEqual() doesn't exist in Python 3.x. Travis didn't fail because of 
some nose errors (so not all tests were run).
+---
+ .../certbot_dns_digitalocean/dns_digitalocean_test.py| 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git 
a/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean_test.py 
b/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean_test.py
+index 7e97eed073..6ff76079b5 100644
+--- 
a/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean_test.py
 
b/certbot-dns-digitalocean/certbot_dns_digitalocean/dns_digitalocean_test.py
+@@ -2,6 +2,7 @@
+ 
+ import os
+ import unittest
++import six
+ 
+ import digitalocean
+ import mock
+@@ -133,8 +134,8 @@ def test_del_txt_record(self):
+ 
+ correct_record_mock.destroy.assert_called()
+ 
+-self.assertItemsEqual(first_record_mock.destroy.call_args_list, [])
+-self.assertItemsEqual(last_record_mock.destroy.call_args_list, [])
++six.assertCountEqual(self, first_record_mock.destroy.call_args_list, 
[])
++six.assertCountEqual(self, last_record_mock.destroy.call_args_list, 
[])
+ 
+ def test_del_txt_record_error_finding_domain(self):
+ self.manager.get_all_domains.side_effect = API_ERROR


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

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:26:37
  Author: felixonmars
Revision: 236116

archrelease: copy trunk to community-any

Added:
  python-digitalocean/repos/community-any/
  python-digitalocean/repos/community-any/PKGBUILD
(from rev 236115, python-digitalocean/trunk/PKGBUILD)

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

Copied: python-digitalocean/repos/community-any/PKGBUILD (from rev 236115, 
python-digitalocean/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-11 05:26:37 UTC (rev 236116)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-digitalocean
+pkgname=('python-digitalocean' 'python2-digitalocean')
+pkgver=1.11
+pkgrel=1
+pkgdesc='digitalocean.com API to manage Droplets and Images'
+arch=('any')
+license=('LGPL')
+url='https://github.com/koalalorenzo/python-digitalocean'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-responses' 'python2-responses')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/koalalorenzo/python-digitalocean/archive/v$pkgver.tar.gz;)
+sha512sums=('b09e0b9bb89e1e31870e18358d86cf69f704d18663749235842cc60c16d67241badb0541edbd4027d9e3a2624fd311a9db52c9a4932eb7567214a0dd8aee4e0a')
+
+prepare() {
+  cp -a python-digitalocean-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-digitalocean-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-digitalocean-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-digitalocean-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/python-digitalocean-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-digitalocean() {
+  depends=('python-requests')
+
+  cd python-digitalocean-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-digitalocean() {
+  depends=('python2-requests')
+
+  cd python-digitalocean-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:26:08
  Author: felixonmars
Revision: 236115

addpkg: python-digitalocean 1.11-1

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

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

Added: python-digitalocean/trunk/PKGBUILD
===
--- python-digitalocean/trunk/PKGBUILD  (rev 0)
+++ python-digitalocean/trunk/PKGBUILD  2017-06-11 05:26:08 UTC (rev 236115)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-digitalocean
+pkgname=('python-digitalocean' 'python2-digitalocean')
+pkgver=1.11
+pkgrel=1
+pkgdesc='digitalocean.com API to manage Droplets and Images'
+arch=('any')
+license=('LGPL')
+url='https://github.com/koalalorenzo/python-digitalocean'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-responses' 'python2-responses')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/koalalorenzo/python-digitalocean/archive/v$pkgver.tar.gz;)
+sha512sums=('b09e0b9bb89e1e31870e18358d86cf69f704d18663749235842cc60c16d67241badb0541edbd4027d9e3a2624fd311a9db52c9a4932eb7567214a0dd8aee4e0a')
+
+prepare() {
+  cp -a python-digitalocean-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-digitalocean-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-digitalocean-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-digitalocean-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/python-digitalocean-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-digitalocean() {
+  depends=('python-requests')
+
+  cd python-digitalocean-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-digitalocean() {
+  depends=('python2-requests')
+
+  cd python-digitalocean-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:24:48
  Author: felixonmars
Revision: 236114

archrelease: copy trunk to community-any

Added:
  python-responses/repos/community-any/
  python-responses/repos/community-any/PKGBUILD
(from rev 236113, python-responses/trunk/PKGBUILD)

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

Copied: python-responses/repos/community-any/PKGBUILD (from rev 236113, 
python-responses/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-11 05:24:48 UTC (rev 236114)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-responses
+pkgname=('python-responses' 'python2-responses')
+pkgver=0.5.1
+pkgrel=1
+pkgdesc='A utility library for mocking out the `requests` Python library.'
+arch=('any')
+license=('Apache')
+url='https://github.com/getsentry/responses'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-cookies' 'python2-cookies' 'python-six' 'python2-six' 
'python2-mock')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-cov'
+  'python2-pytest-cov' 'flake8' 'python2-flake8')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/responses/archive/$pkgver.tar.gz;)
+sha512sums=('bd3dcd0cb97d46519371fbda11b42f2dae6c12e2492e6872f29cab31d5cc3942388d0d1d1d400ddd07bf810951edb75ee20f144b24750a3103a0d0d9ba2f78eb')
+
+prepare() {
+  cp -a responses-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/responses-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/responses-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/responses-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/responses-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-responses() {
+  depends=('python-requests' 'python-cookies' 'python-six')
+
+  cd responses-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-responses() {
+  depends=('python2-requests' 'python2-cookies' 'python2-six' 'python2-mock')
+
+  cd responses-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:24:32
  Author: felixonmars
Revision: 236113

addpkg: python-responses 0.5.1-1

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

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

Added: python-responses/trunk/PKGBUILD
===
--- python-responses/trunk/PKGBUILD (rev 0)
+++ python-responses/trunk/PKGBUILD 2017-06-11 05:24:32 UTC (rev 236113)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-responses
+pkgname=('python-responses' 'python2-responses')
+pkgver=0.5.1
+pkgrel=1
+pkgdesc='A utility library for mocking out the `requests` Python library.'
+arch=('any')
+license=('Apache')
+url='https://github.com/getsentry/responses'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-cookies' 'python2-cookies' 'python-six' 'python2-six' 
'python2-mock')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-cov'
+  'python2-pytest-cov' 'flake8' 'python2-flake8')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/responses/archive/$pkgver.tar.gz;)
+sha512sums=('bd3dcd0cb97d46519371fbda11b42f2dae6c12e2492e6872f29cab31d5cc3942388d0d1d1d400ddd07bf810951edb75ee20f144b24750a3103a0d0d9ba2f78eb')
+
+prepare() {
+  cp -a responses-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/responses-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/responses-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/responses-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/responses-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-responses() {
+  depends=('python-requests' 'python-cookies' 'python-six')
+
+  cd responses-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-responses() {
+  depends=('python2-requests' 'python2-cookies' 'python2-six' 'python2-mock')
+
+  cd responses-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:20:18
  Author: felixonmars
Revision: 236112

archrelease: copy trunk to community-any

Added:
  python-cookies/repos/community-any/
  python-cookies/repos/community-any/PKGBUILD
(from rev 236111, python-cookies/trunk/PKGBUILD)

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

Copied: python-cookies/repos/community-any/PKGBUILD (from rev 236111, 
python-cookies/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-11 05:20:18 UTC (rev 236112)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cookies
+pkgname=('python-cookies' 'python2-cookies')
+pkgver=2.2.1
+_commit=ab8185e06f221eaf65305f15e05852393723ac95
+pkgrel=1
+pkgdesc='Friendlier RFC 6265-compliant cookie parser/renderer'
+arch=('any')
+license=('MIT')
+url='https://github.com/sashahart/cookies'
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$_commit.tar.gz::https://github.com/sashahart/cookies/archive/$_commit.tar.gz;)
+sha512sums=('38f9a4c96179256719f21b96356381066479f1ccadbe6f346f84d5b8d6023a0d6d5bb96f566a1b2d20de7ea5122c582b37f39aa71efbf667f14a607e0d869eb3')
+
+prepare() {
+  mv cookies-{$_commit,$pkgver}
+  cp -a cookies-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/cookies-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/cookies-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/cookies-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/cookies-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-cookies() {
+  depends=('python')
+
+  cd cookies-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-cookies() {
+  depends=('python2')
+
+  cd cookies-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:19:44
  Author: felixonmars
Revision: 236111

addpkg: python-cookies 2.2.1-1

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

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

Added: python-cookies/trunk/PKGBUILD
===
--- python-cookies/trunk/PKGBUILD   (rev 0)
+++ python-cookies/trunk/PKGBUILD   2017-06-11 05:19:44 UTC (rev 236111)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cookies
+pkgname=('python-cookies' 'python2-cookies')
+pkgver=2.2.1
+_commit=ab8185e06f221eaf65305f15e05852393723ac95
+pkgrel=1
+pkgdesc='Friendlier RFC 6265-compliant cookie parser/renderer'
+arch=('any')
+license=('MIT')
+url='https://github.com/sashahart/cookies'
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$_commit.tar.gz::https://github.com/sashahart/cookies/archive/$_commit.tar.gz;)
+sha512sums=('38f9a4c96179256719f21b96356381066479f1ccadbe6f346f84d5b8d6023a0d6d5bb96f566a1b2d20de7ea5122c582b37f39aa71efbf667f14a607e0d869eb3')
+
+prepare() {
+  mv cookies-{$_commit,$pkgver}
+  cp -a cookies-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/cookies-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/cookies-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/cookies-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/cookies-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-cookies() {
+  depends=('python')
+
+  cd cookies-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-cookies() {
+  depends=('python2')
+
+  cd cookies-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:16:37
  Author: felixonmars
Revision: 236110

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 236109, haskell-persistent-template/trunk/PKGBUILD)
  haskell-persistent-template/repos/community-staging-x86_64/
  haskell-persistent-template/repos/community-staging-x86_64/PKGBUILD
(from rev 236109, 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 236109, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-11 05:16:37 UTC (rev 236110)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.5.2
+pkgrel=36
+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 236109, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-11 05:16:37 UTC (rev 236110)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.5.2
+pkgrel=36
+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-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:16:15
  Author: felixonmars
Revision: 236109

upgpkg: haskell-persistent-template 2.5.2-36

rebuild with aeson-compat,0.3.7

Modified:
  haskell-persistent-template/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-11 05:13:13 UTC (rev 236108)
+++ PKGBUILD2017-06-11 05:16:15 UTC (rev 236109)
@@ -5,7 +5,7 @@
 _hkgname=persistent-template
 pkgname=haskell-persistent-template
 pkgver=2.5.2
-pkgrel=35
+pkgrel=36
 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-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:13:13
  Author: felixonmars
Revision: 236108

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 236107, haskell-aeson-compat/trunk/PKGBUILD)
  haskell-aeson-compat/repos/community-staging-x86_64/
  haskell-aeson-compat/repos/community-staging-x86_64/PKGBUILD
(from rev 236107, 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 
236107, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-11 05:13:13 UTC (rev 236108)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-compat
+pkgname=haskell-aeson-compat
+pkgver=0.3.7
+pkgrel=1
+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-attoparsec-iso8601"
+ "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;)
+sha512sums=('b04ce7b048d0fc15c7fab2a29f20afba6e38c921601af68a0b3fc211c2b08b659536e22930a1a6094985cc3e3b98282e2019c32b95aab9b931ca9fa83b9dff09')
+
+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 
236107, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-11 05:13:13 UTC (rev 236108)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-compat
+pkgname=haskell-aeson-compat
+pkgver=0.3.7
+pkgrel=1
+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-attoparsec-iso8601"
+ "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;)
+sha512sums=('b04ce7b048d0fc15c7fab2a29f20afba6e38c921601af68a0b3fc211c2b08b659536e22930a1a6094985cc3e3b98282e2019c32b95aab9b931ca9fa83b9dff09')
+
+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}" \
+

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

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:12:51
  Author: felixonmars
Revision: 236107

upgpkg: haskell-aeson-compat 0.3.7-1

rebuild with aeson-compat,0.3.7

Modified:
  haskell-aeson-compat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-11 05:04:05 UTC (rev 236106)
+++ PKGBUILD2017-06-11 05:12:51 UTC (rev 236107)
@@ -4,24 +4,22 @@
 
 _hkgname=aeson-compat
 pkgname=haskell-aeson-compat
-pkgver=0.3.6
-pkgrel=19
+pkgver=0.3.7
+pkgrel=1
 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")
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-attoparsec-iso8601"
+ "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')
+sha512sums=('b04ce7b048d0fc15c7fab2a29f20afba6e38c921601af68a0b3fc211c2b08b659536e22930a1a6094985cc3e3b98282e2019c32b95aab9b931ca9fa83b9dff09')
 
 prepare() {
 # nats is an empty package in new GHC
 sed -e '/nats/d' \
--e 's/, vector   >=0.10 && <0.12/, vector  
 >=0.10 \&\& <0.13/' \
--e 's/, aeson>=0.7.0.6 && <1.1/, aeson 
   >=0.7.0.6 \&\& <1.3/' \
 -i ${_hkgname}-${pkgver}/${_hkgname}.cabal
 }
 


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

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:03:38
  Author: felixonmars
Revision: 236105

upgpkg: python-ruamel-yaml 0.15.6-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-11 04:50:04 UTC (rev 236104)
+++ PKGBUILD2017-06-11 05:03:38 UTC (rev 236105)
@@ -4,7 +4,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.15.5
+pkgver=0.15.6
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=("MIT")
 makedepends=('python-pip')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('1451cfe81ac433d7b3822088b01df6e17383a2e4d16942f32809e4497f1975831c0d8fa01aa41b4f43a8aef475fd4cc00adb5182866902cd5abb1cd0e5a47b3a')
+sha512sums=('57e6fd46506243cd9dca3fa13a0ca31f94a2eb02d151da0195f5a645899eaf33a04e9169f89625aa699ef6acd389d826d69345855de178421c70a9e33cb91687')
 
 prepare() {
   export LC_CTYPE=en_US.UTF-8


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

2017-06-10 Thread Felix Yan
Date: Sunday, June 11, 2017 @ 05:04:05
  Author: felixonmars
Revision: 236106

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

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

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

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

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

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

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

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

2017-06-10 Thread Jan Steffens
Date: Sunday, June 11, 2017 @ 00:49:35
  Author: heftig
Revision: 298596

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

Added:
  valadoc/repos/extra-i686/PKGBUILD
(from rev 298595, valadoc/trunk/PKGBUILD)
  valadoc/repos/extra-x86_64/PKGBUILD
(from rev 298595, valadoc/trunk/PKGBUILD)
Deleted:
  valadoc/repos/extra-i686/PKGBUILD
  valadoc/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-06-11 00:48:56 UTC (rev 298595)
+++ extra-i686/PKGBUILD 2017-06-11 00:49:35 UTC (rev 298596)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=valadoc
-pkgver=0.36.0
-pkgrel=1
-epoch=1
-pkgdesc="A documentation tool for vala"
-arch=(i686 x86_64)
-url="https://git.gnome.org/browse/valadoc;
-license=(GPL2)
-depends=(vala gtk-doc graphviz libgee)
-makedepends=(git)
-_commit=a62ef4dbbc0d27ad39b1bc5aff309b59ebfa7504  # tags/0.36.0^0
-source=("git+https://git.gnome.org/browse/valadoc#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: valadoc/repos/extra-i686/PKGBUILD (from rev 298595, 
valadoc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-06-11 00:49:35 UTC (rev 298596)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=valadoc
+pkgver=0.36.0
+pkgrel=2
+epoch=1
+pkgdesc="A documentation tool for vala"
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/valadoc;
+license=(GPL2)
+depends=(vala gtk-doc graphviz libgee ttf-dejavu)
+makedepends=(git)
+_commit=a62ef4dbbc0d27ad39b1bc5aff309b59ebfa7504  # tags/0.36.0^0
+source=("git+https://git.gnome.org/browse/valadoc#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-06-11 00:48:56 UTC (rev 298595)
+++ extra-x86_64/PKGBUILD   2017-06-11 00:49:35 UTC (rev 298596)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=valadoc
-pkgver=0.36.0
-pkgrel=1
-epoch=1
-pkgdesc="A documentation tool for vala"
-arch=(i686 x86_64)
-url="https://git.gnome.org/browse/valadoc;
-license=(GPL2)
-depends=(vala gtk-doc graphviz libgee)
-makedepends=(git)
-_commit=a62ef4dbbc0d27ad39b1bc5aff309b59ebfa7504  # tags/0.36.0^0
-source=("git+https://git.gnome.org/browse/valadoc#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: valadoc/repos/extra-x86_64/PKGBUILD (from rev 298595, 
valadoc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-06-11 00:49:35 UTC (rev 298596)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=valadoc
+pkgver=0.36.0
+pkgrel=2
+epoch=1
+pkgdesc="A documentation tool for vala"
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/valadoc;
+license=(GPL2)
+depends=(vala gtk-doc graphviz libgee ttf-dejavu)
+makedepends=(git)
+_commit=a62ef4dbbc0d27ad39b1bc5aff309b59ebfa7504  # tags/0.36.0^0
+source=("git+https://git.gnome.org/browse/valadoc#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  sed -i -e 's/ 

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

2017-06-10 Thread Jan Steffens
Date: Sunday, June 11, 2017 @ 00:48:56
  Author: heftig
Revision: 298595

0.36.0-2

Modified:
  valadoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-11 00:40:43 UTC (rev 298594)
+++ PKGBUILD2017-06-11 00:48:56 UTC (rev 298595)
@@ -3,13 +3,13 @@
 
 pkgname=valadoc
 pkgver=0.36.0
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="A documentation tool for vala"
 arch=(i686 x86_64)
 url="https://git.gnome.org/browse/valadoc;
 license=(GPL2)
-depends=(vala gtk-doc graphviz libgee)
+depends=(vala gtk-doc graphviz libgee ttf-dejavu)
 makedepends=(git)
 _commit=a62ef4dbbc0d27ad39b1bc5aff309b59ebfa7504  # tags/0.36.0^0
 source=("git+https://git.gnome.org/browse/valadoc#commit=$_commit;)


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

2017-06-10 Thread Jan Steffens
Date: Sunday, June 11, 2017 @ 00:40:43
  Author: heftig
Revision: 298594

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

Added:
  libhttpseverywhere/repos/extra-i686/PKGBUILD
(from rev 298593, libhttpseverywhere/trunk/PKGBUILD)
  libhttpseverywhere/repos/extra-x86_64/PKGBUILD
(from rev 298593, libhttpseverywhere/trunk/PKGBUILD)
Deleted:
  libhttpseverywhere/repos/extra-i686/PKGBUILD
  libhttpseverywhere/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-06-11 00:40:12 UTC (rev 298593)
+++ extra-i686/PKGBUILD 2017-06-11 00:40:43 UTC (rev 298594)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Adrià Arrufat (archdria) 
-
-pkgname=libhttpseverywhere
-pkgver=0.4.4
-pkgrel=1
-pkgdesc="library to use HTTPSEverywhere in desktop applications"
-url="https://git.gnome.org/browse/libhttpseverywhere;
-arch=(i686 x86_64)
-license=(LGPL3)
-depends=(libgee libxml2 libarchive libsoup glib2 json-glib)
-makedepends=(meson valadoc gobject-introspection git)
-_commit=deaf5dac94d86ba2b80c5c533cfae251c2a6cc06  # tags/0.4.4^0
-source=("git+https://git.gnome.org/browse/libhttpseverywhere#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-check() {
-  cd build
-  ninja test
-}
-
-build() {
-  cd build
-  export LANG=en_US.UTF-8
-  meson --prefix=/usr --buildtype=release ../$pkgname \
--Denable_valadoc=true
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: libhttpseverywhere/repos/extra-i686/PKGBUILD (from rev 298593, 
libhttpseverywhere/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-06-11 00:40:43 UTC (rev 298594)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Adrià Arrufat (archdria) 
+
+pkgname=libhttpseverywhere
+pkgver=0.4.5
+pkgrel=1
+pkgdesc="library to use HTTPSEverywhere in desktop applications"
+url="https://git.gnome.org/browse/libhttpseverywhere;
+arch=(i686 x86_64)
+license=(LGPL3)
+depends=(libgee libxml2 libarchive libsoup glib2 json-glib)
+makedepends=(meson valadoc gobject-introspection git)
+_commit=455c0c44d5b9017183042e1c7658a135c1bd2fda  # tags/0.4.5^0
+source=("git+https://git.gnome.org/browse/libhttpseverywhere#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+check() {
+  cd build
+  ninja test
+}
+
+build() {
+  cd build
+  export LANG=en_US.UTF-8
+  meson --prefix=/usr --buildtype=release ../$pkgname \
+-Denable_valadoc=true
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-06-11 00:40:12 UTC (rev 298593)
+++ extra-x86_64/PKGBUILD   2017-06-11 00:40:43 UTC (rev 298594)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Adrià Arrufat (archdria) 
-
-pkgname=libhttpseverywhere
-pkgver=0.4.4
-pkgrel=1
-pkgdesc="library to use HTTPSEverywhere in desktop applications"
-url="https://git.gnome.org/browse/libhttpseverywhere;
-arch=(i686 x86_64)
-license=(LGPL3)
-depends=(libgee libxml2 libarchive libsoup glib2 json-glib)
-makedepends=(meson valadoc gobject-introspection git)
-_commit=deaf5dac94d86ba2b80c5c533cfae251c2a6cc06  # tags/0.4.4^0
-source=("git+https://git.gnome.org/browse/libhttpseverywhere#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-check() {
-  cd build
-  ninja test
-}
-
-build() {
-  cd build
-  export LANG=en_US.UTF-8
-  meson --prefix=/usr --buildtype=release ../$pkgname \
--Denable_valadoc=true
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: libhttpseverywhere/repos/extra-x86_64/PKGBUILD (from rev 298593, 
libhttpseverywhere/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-06-11 00:40:43 UTC (rev 298594)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Adrià Arrufat (archdria) 
+
+pkgname=libhttpseverywhere
+pkgver=0.4.5
+pkgrel=1
+pkgdesc="library to use HTTPSEverywhere in desktop applications"

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

2017-06-10 Thread Jan Steffens
Date: Sunday, June 11, 2017 @ 00:40:12
  Author: heftig
Revision: 298593

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-06-11 00:39:09 UTC (rev 298592)
+++ extra-i686/PKGBUILD 2017-06-11 00:40:12 UTC (rev 298593)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-calendar
-pkgver=3.24.2
-pkgrel=1
-pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
-url="https://wiki.gnome.org/Apps/Calendar;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(evolution-data-server 'gsettings-desktop-schemas>=3.21.2')
-makedepends=(intltool python gnome-common appstream-glib git)
-groups=(gnome-extra)
-_commit=d42ce8c5e7c92d0d715663177cb3e97faf24e143  # tags/3.24.2^0
-source=("git+https://git.gnome.org/browse/gnome-calendar#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-calendar/repos/extra-i686/PKGBUILD (from rev 298592, 
gnome-calendar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-06-11 00:40:12 UTC (rev 298593)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-calendar
+pkgver=3.24.3
+pkgrel=1
+pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
+url="https://wiki.gnome.org/Apps/Calendar;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(evolution-data-server 'gsettings-desktop-schemas>=3.21.2')
+makedepends=(intltool python gnome-common appstream-glib git)
+groups=(gnome-extra)
+_commit=b06145a62e01f62663b63d1666e224813d8950fa  # tags/3.24.3^0
+source=("git+https://git.gnome.org/browse/gnome-calendar#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-06-11 00:39:09 UTC (rev 298592)
+++ extra-x86_64/PKGBUILD   2017-06-11 00:40:12 UTC (rev 298593)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-calendar
-pkgver=3.24.2
-pkgrel=1
-pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
-url="https://wiki.gnome.org/Apps/Calendar;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(evolution-data-server 'gsettings-desktop-schemas>=3.21.2')
-makedepends=(intltool python gnome-common appstream-glib git)
-groups=(gnome-extra)
-_commit=d42ce8c5e7c92d0d715663177cb3e97faf24e143  # tags/3.24.2^0
-source=("git+https://git.gnome.org/browse/gnome-calendar#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-calendar/repos/extra-x86_64/PKGBUILD (from rev 298592, 
gnome-calendar/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-06-11 00:40:12 UTC (rev 298593)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-calendar
+pkgver=3.24.3
+pkgrel=1
+pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
+url="https://wiki.gnome.org/Apps/Calendar;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(evolution-data-server 'gsettings-desktop-schemas>=3.21.2')
+makedepends=(intltool python gnome-common appstream-glib git)
+groups=(gnome-extra)
+_commit=b06145a62e01f62663b63d1666e224813d8950fa  # 

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

2017-06-10 Thread Jan Steffens
Date: Sunday, June 11, 2017 @ 00:39:09
  Author: heftig
Revision: 298592

0.4.5-1

Modified:
  libhttpseverywhere/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-11 00:38:44 UTC (rev 298591)
+++ PKGBUILD2017-06-11 00:39:09 UTC (rev 298592)
@@ -3,7 +3,7 @@
 # Contributor: Adrià Arrufat (archdria) 
 
 pkgname=libhttpseverywhere
-pkgver=0.4.4
+pkgver=0.4.5
 pkgrel=1
 pkgdesc="library to use HTTPSEverywhere in desktop applications"
 url="https://git.gnome.org/browse/libhttpseverywhere;
@@ -11,7 +11,7 @@
 license=(LGPL3)
 depends=(libgee libxml2 libarchive libsoup glib2 json-glib)
 makedepends=(meson valadoc gobject-introspection git)
-_commit=deaf5dac94d86ba2b80c5c533cfae251c2a6cc06  # tags/0.4.4^0
+_commit=455c0c44d5b9017183042e1c7658a135c1bd2fda  # tags/0.4.5^0
 source=("git+https://git.gnome.org/browse/libhttpseverywhere#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-06-10 Thread Jan Steffens
Date: Sunday, June 11, 2017 @ 00:38:44
  Author: heftig
Revision: 298591

3.24.3-1

Modified:
  gnome-calendar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-11 00:00:53 UTC (rev 298590)
+++ PKGBUILD2017-06-11 00:38:44 UTC (rev 298591)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-calendar
-pkgver=3.24.2
+pkgver=3.24.3
 pkgrel=1
 pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
 url="https://wiki.gnome.org/Apps/Calendar;
@@ -11,7 +11,7 @@
 depends=(evolution-data-server 'gsettings-desktop-schemas>=3.21.2')
 makedepends=(intltool python gnome-common appstream-glib git)
 groups=(gnome-extra)
-_commit=d42ce8c5e7c92d0d715663177cb3e97faf24e143  # tags/3.24.2^0
+_commit=b06145a62e01f62663b63d1666e224813d8950fa  # tags/3.24.3^0
 source=("git+https://git.gnome.org/browse/gnome-calendar#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-06-10 Thread Maxime Gauduin
Date: Sunday, June 11, 2017 @ 00:00:53
  Author: alucryd
Revision: 298590

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

Added:
  ffmpeg/repos/extra-i686/PKGBUILD
(from rev 298589, ffmpeg/trunk/PKGBUILD)
  ffmpeg/repos/extra-x86_64/PKGBUILD
(from rev 298589, ffmpeg/trunk/PKGBUILD)
Deleted:
  ffmpeg/repos/extra-i686/PKGBUILD
  ffmpeg/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-06-11 00:00:28 UTC (rev 298589)
+++ extra-i686/PKGBUILD 2017-06-11 00:00:53 UTC (rev 298590)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Ionut Biru 
-# Contributor: Tom Newsom 
-# Contributor: Paul Mattal 
-
-pkgname=ffmpeg
-pkgver=3.3.1
-pkgrel=9
-epoch=1
-pkgdesc='Complete solution to record, convert and stream audio and video'
-arch=('i686' 'x86_64')
-url='http://ffmpeg.org/'
-license=('GPL3')
-depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
- 'jack' 'lame' 'libavc1394' 'libiec61883' 'libmodplug' 'libpulse'
- 'libraw1394' 'libsoxr' 'libssh' 'libtheora' 'libva' 'libvdpau'
- 'libwebp' 'libx11' 'libxcb' 'opencore-amr' 'openjpeg2' 'opus'
- 'schroedinger' 'sdl2' 'speex' 'v4l-utils' 'xz' 'zlib'
- 'libass.so' 'libbluray.so' 'libfreetype.so' 'libvidstab.so'
- 'libvorbisenc.so' 'libvorbis.so' 'libvpx.so'
- 'libx264.so' 'libx265.so' 'libxvidcore.so')
-makedepends=('hardening-wrapper' 'ladspa' 'libvdpau' 'yasm')
-optdepends=('ladspa: LADSPA filters')
-provides=('libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
-  'libavresample.so' 'libavutil.so' 'libpostproc.so' 'libswresample.so'
-  'libswscale.so')
-source=("https://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.xz"{,.asc})
-validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8')
-sha256sums=('b702a7fc656ac23e276b8c823a2f646e4e6f6309bb2788435a708e69bea98f2f'
-'SKIP')
-
-build() {
-  cd ffmpeg-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---disable-debug \
---disable-static \
---disable-stripping \
---enable-avisynth \
---enable-avresample \
---enable-fontconfig \
---enable-gmp \
---enable-gnutls \
---enable-gpl \
---enable-ladspa \
---enable-libass \
---enable-libbluray \
---enable-libfreetype \
---enable-libfribidi \
---enable-libgsm \
---enable-libiec61883 \
---enable-libmodplug \
---enable-libmp3lame \
---enable-libopencore_amrnb \
---enable-libopencore_amrwb \
---enable-libopenjpeg \
---enable-libopus \
---enable-libpulse \
---enable-libschroedinger \
---enable-libsoxr \
---enable-libspeex \
---enable-libssh \
---enable-libtheora \
---enable-libv4l2 \
---enable-libvidstab \
---enable-libvorbis \
---enable-libvpx \
---enable-libwebp \
---enable-libx264 \
---enable-libx265 \
---enable-libxcb \
---enable-libxvid \
---enable-shared \
---enable-version3
-
-  make
-  make tools/qt-faststart
-  make doc/ff{mpeg,play,server}.1
-}
-
-package() {
-  cd ffmpeg-${pkgver}
-
-  make DESTDIR="${pkgdir}" install install-man
-  install -Dm 755 tools/qt-faststart "${pkgdir}"/usr/bin/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ffmpeg/repos/extra-i686/PKGBUILD (from rev 298589, 
ffmpeg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-06-11 00:00:53 UTC (rev 298590)
@@ -0,0 +1,91 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg
+pkgver=3.3.2
+pkgrel=1
+epoch=1
+pkgdesc='Complete solution to record, convert and stream audio and video'
+arch=('i686' 'x86_64')
+url='http://ffmpeg.org/'
+license=('GPL3')
+depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
+ 'jack' 'lame' 'libavc1394' 'libiec61883' 'libmodplug' 'libpulse'
+ 'libraw1394' 'libsoxr' 'libssh' 'libtheora' 'libva' 'libvdpau'
+ 'libwebp' 'libx11' 'libxcb' 'opencore-amr' 'openjpeg2' 'opus'
+ 'schroedinger' 'sdl2' 'speex' 'v4l-utils' 'xz' 'zlib'
+ 'libass.so' 'libbluray.so' 'libfreetype.so' 'libvidstab.so'
+ 'libvorbisenc.so' 'libvorbis.so' 'libvpx.so'
+ 

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

2017-06-10 Thread Maxime Gauduin
Date: Sunday, June 11, 2017 @ 00:00:28
  Author: alucryd
Revision: 298589

upgpkg: ffmpeg 1:3.3.2-1

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 23:57:03 UTC (rev 298588)
+++ PKGBUILD2017-06-11 00:00:28 UTC (rev 298589)
@@ -6,8 +6,8 @@
 # Contributor: Paul Mattal 
 
 pkgname=ffmpeg
-pkgver=3.3.1
-pkgrel=9
+pkgver=3.3.2
+pkgrel=1
 epoch=1
 pkgdesc='Complete solution to record, convert and stream audio and video'
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
   'libswscale.so')
 source=("https://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.xz"{,.asc})
 validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8')
-sha256sums=('b702a7fc656ac23e276b8c823a2f646e4e6f6309bb2788435a708e69bea98f2f'
+sha256sums=('1998de1ab32616cbf2ff86efc3f1f26e76805ec5dc51e24c041c79edd8262785'
 'SKIP')
 
 build() {


[arch-commits] Commit in backuppc/repos (32 files)

2017-06-10 Thread Sébastien Luttringer
Date: Saturday, June 10, 2017 @ 21:39:44
  Author: seblu
Revision: 236052

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

Added:
  backuppc/repos/community-i686/PKGBUILD
(from rev 236051, backuppc/trunk/PKGBUILD)
  backuppc/repos/community-i686/backuppc.httpd
(from rev 236051, backuppc/trunk/backuppc.httpd)
  backuppc/repos/community-i686/backuppc.install
(from rev 236051, backuppc/trunk/backuppc.install)
  backuppc/repos/community-i686/backuppc.profile.csh
(from rev 236051, backuppc/trunk/backuppc.profile.csh)
  backuppc/repos/community-i686/backuppc.profile.sh
(from rev 236051, backuppc/trunk/backuppc.profile.sh)
  backuppc/repos/community-i686/backuppc.service
(from rev 236051, backuppc/trunk/backuppc.service)
  backuppc/repos/community-i686/backuppc.sysusers
(from rev 236051, backuppc/trunk/backuppc.sysusers)
  backuppc/repos/community-i686/backuppc.tmpfiles
(from rev 236051, backuppc/trunk/backuppc.tmpfiles)
  backuppc/repos/community-x86_64/PKGBUILD
(from rev 236051, backuppc/trunk/PKGBUILD)
  backuppc/repos/community-x86_64/backuppc.httpd
(from rev 236051, backuppc/trunk/backuppc.httpd)
  backuppc/repos/community-x86_64/backuppc.install
(from rev 236051, backuppc/trunk/backuppc.install)
  backuppc/repos/community-x86_64/backuppc.profile.csh
(from rev 236051, backuppc/trunk/backuppc.profile.csh)
  backuppc/repos/community-x86_64/backuppc.profile.sh
(from rev 236051, backuppc/trunk/backuppc.profile.sh)
  backuppc/repos/community-x86_64/backuppc.service
(from rev 236051, backuppc/trunk/backuppc.service)
  backuppc/repos/community-x86_64/backuppc.sysusers
(from rev 236051, backuppc/trunk/backuppc.sysusers)
  backuppc/repos/community-x86_64/backuppc.tmpfiles
(from rev 236051, backuppc/trunk/backuppc.tmpfiles)
Deleted:
  backuppc/repos/community-i686/PKGBUILD
  backuppc/repos/community-i686/backuppc.httpd
  backuppc/repos/community-i686/backuppc.install
  backuppc/repos/community-i686/backuppc.profile.csh
  backuppc/repos/community-i686/backuppc.profile.sh
  backuppc/repos/community-i686/backuppc.service
  backuppc/repos/community-i686/backuppc.sysusers
  backuppc/repos/community-i686/backuppc.tmpfiles
  backuppc/repos/community-x86_64/PKGBUILD
  backuppc/repos/community-x86_64/backuppc.httpd
  backuppc/repos/community-x86_64/backuppc.install
  backuppc/repos/community-x86_64/backuppc.profile.csh
  backuppc/repos/community-x86_64/backuppc.profile.sh
  backuppc/repos/community-x86_64/backuppc.service
  backuppc/repos/community-x86_64/backuppc.sysusers
  backuppc/repos/community-x86_64/backuppc.tmpfiles

---+
 /PKGBUILD |  258 
 /backuppc.httpd   |   42 +
 /backuppc.install |   46 +
 /backuppc.profile.csh |2 
 /backuppc.profile.sh  |6 
 /backuppc.service |   22 ++
 /backuppc.sysusers|2 
 /backuppc.tmpfiles|2 
 community-i686/PKGBUILD   |  129 
 community-i686/backuppc.httpd |   21 --
 community-i686/backuppc.install   |   23 --
 community-i686/backuppc.profile.csh   |1 
 community-i686/backuppc.profile.sh|3 
 community-i686/backuppc.service   |   11 -
 community-i686/backuppc.sysusers  |1 
 community-i686/backuppc.tmpfiles  |1 
 community-x86_64/PKGBUILD |  129 
 community-x86_64/backuppc.httpd   |   21 --
 community-x86_64/backuppc.install |   23 --
 community-x86_64/backuppc.profile.csh |1 
 community-x86_64/backuppc.profile.sh  |3 
 community-x86_64/backuppc.service |   11 -
 community-x86_64/backuppc.sysusers|1 
 community-x86_64/backuppc.tmpfiles|1 
 24 files changed, 380 insertions(+), 380 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-10 21:38:37 UTC (rev 236051)
+++ community-i686/PKGBUILD 2017-06-10 21:39:44 UTC (rev 236052)
@@ -1,129 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=backuppc
-pkgver=4.1.3
-_xsver=0.54
-_rbpcver=3.0.9.7
-pkgrel=1
-pkgdesc='Enterprise-grade system for backing up Linux, Windows and MacOS PCs'
-url='https://github.com/backuppc/backuppc/'
-license=('GPL2')
-arch=('x86_64' 'i686')
-makedepends=('git')
-depends=('glibc' 'popt' 'perl' 'par2cmdline' 'perl-archive-zip' 
'perl-io-dirent'
- 'perl-file-listing' 'perl-time-modules' 'perl-cgi' 'perl-xml-rss')
-optdepends=('openssh: ssh transfert support'
-'rsync: rsync transfert support'
-'smbclient: smb/cifs transfert support'
-'rrdtool: graphs of the pool usage ')
-source=("https://github.com/backuppc/backuppc/releases/download/$pkgver/BackupPC-$pkgver.tar.gz;
-

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

2017-06-10 Thread Sébastien Luttringer
Date: Saturday, June 10, 2017 @ 21:38:37
  Author: seblu
Revision: 236051

upgpkg: backuppc 4.1.3-2

- perl rebuild

Modified:
  backuppc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 19:40:54 UTC (rev 236050)
+++ PKGBUILD2017-06-10 21:38:37 UTC (rev 236051)
@@ -5,7 +5,7 @@
 pkgver=4.1.3
 _xsver=0.54
 _rbpcver=3.0.9.7
-pkgrel=1
+pkgrel=2
 pkgdesc='Enterprise-grade system for backing up Linux, Windows and MacOS PCs'
 url='https://github.com/backuppc/backuppc/'
 license=('GPL2')


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:40:54
  Author: felixonmars
Revision: 236050

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 236049, haskell-yesod-auth/trunk/PKGBUILD)
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 236049, 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 
236049, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 19:40:54 UTC (rev 236050)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17.2
+pkgrel=4
+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-cryptonite" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lifted-base" "haskell-memory" "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;)
+sha512sums=('14f93e1683f5c727f3628ed3d7e685a58f9c39d6189049a7d2d179bf54ce6baf973f3c8d241c17f9324a719d01df35f109448df8356db5d71bc846dda244e4db')
+
+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 
236049, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 19:40:54 UTC (rev 236050)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17.2
+pkgrel=4
+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-cryptonite" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lifted-base" "haskell-memory" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:40:30
  Author: felixonmars
Revision: 236049

upgpkg: haskell-yesod-auth 1.4.17.2-4

rebuild with memory,0.14.6

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 19:33:55 UTC (rev 236048)
+++ PKGBUILD2017-06-10 19:40:30 UTC (rev 236049)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.17.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:33:55
  Author: felixonmars
Revision: 236048

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

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

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

Copied: hoogle/repos/community-staging-i686/PKGBUILD (from rev 236047, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 19:33:55 UTC (rev 236048)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.12
+pkgrel=20
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" 
"haskell-cmdargs" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "haskell-uniplate" "haskell-utf8-string" "haskell-vector" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" 
"haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d40c13674ad113079b23386d2fc5ae3a61dc79012e88f4e1bc2e2123106412b96cc32955e94ec0f294451feadd5bd06ad5b03ab1a40dd7172c5344bdd520e225')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fnetwork-uri
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 236047, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 19:33:55 UTC (rev 236048)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.12
+pkgrel=20
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" 
"haskell-cmdargs" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "haskell-uniplate" "haskell-utf8-string" "haskell-vector" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" 
"haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d40c13674ad113079b23386d2fc5ae3a61dc79012e88f4e1bc2e2123106412b96cc32955e94ec0f294451feadd5bd06ad5b03ab1a40dd7172c5344bdd520e225')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fnetwork-uri
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:33:31
  Author: felixonmars
Revision: 236047

upgpkg: hoogle 5.0.12-20

rebuild with memory,0.14.6

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 19:28:45 UTC (rev 236046)
+++ PKGBUILD2017-06-10 19:33:31 UTC (rev 236047)
@@ -4,7 +4,7 @@
 
 pkgname=hoogle
 pkgver=5.0.12
-pkgrel=19
+pkgrel=20
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:28:45
  Author: felixonmars
Revision: 236046

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 236045, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 236045, 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 236045, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 19:28:45 UTC (rev 236046)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170519
+pkgrel=26
+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-memory" "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-split" "haskell-stm"
+ "haskell-stm-chans" "haskell-tasty" "haskell-tasty-hunit" 
"haskell-tasty-quickcheck"
+ "haskell-tasty-rerun" "haskell-text" "haskell-torrent" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-uuid" "haskell-wai"
+ "haskell-wai-extra" "haskell-warp" "haskell-warp-tls" 
"haskell-yesod"
+ "haskell-yesod-core" "haskell-yesod-default" "haskell-yesod-form"
+ "haskell-yesod-static")
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+  
+  runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make DESTDIR="$pkgdir" install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 236045, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 19:28:45 UTC (rev 236046)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170519
+pkgrel=26
+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" 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:28:22
  Author: felixonmars
Revision: 236045

upgpkg: git-annex 6.20170519-26

rebuild with memory,0.14.6

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 19:12:47 UTC (rev 236044)
+++ PKGBUILD2017-06-10 19:28:22 UTC (rev 236045)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20170519
-pkgrel=25
+pkgrel=26
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:12:47
  Author: felixonmars
Revision: 236044

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

Added:
  haskell-warp-tls/repos/community-staging-i686/
  haskell-warp-tls/repos/community-staging-i686/PKGBUILD
(from rev 236043, haskell-warp-tls/trunk/PKGBUILD)
  haskell-warp-tls/repos/community-staging-x86_64/
  haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD
(from rev 236043, haskell-warp-tls/trunk/PKGBUILD)

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

Copied: haskell-warp-tls/repos/community-staging-i686/PKGBUILD (from rev 
236043, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 19:12:47 UTC (rev 236044)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.3
+pkgrel=34
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" "haskell-wai" 
"haskell-warp")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f5c4c871fee62021a7b3b22d1f2af3543843a0c54632da6f7be9ef58e65fa292')
+
+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-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
236043, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 19:12:47 UTC (rev 236044)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.3
+pkgrel=34
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" "haskell-wai" 
"haskell-warp")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f5c4c871fee62021a7b3b22d1f2af3543843a0c54632da6f7be9ef58e65fa292')
+
+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 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:12:23
  Author: felixonmars
Revision: 236043

upgpkg: haskell-warp-tls 3.2.3-34

rebuild with memory,0.14.6

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 19:08:59 UTC (rev 236042)
+++ PKGBUILD2017-06-10 19:12:23 UTC (rev 236043)
@@ -5,7 +5,7 @@
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
 pkgver=3.2.3
-pkgrel=33
+pkgrel=34
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="http://github.com/yesodweb/wai;
 license=("MIT")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:08:59
  Author: felixonmars
Revision: 236042

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

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

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

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 19:08:35
  Author: felixonmars
Revision: 236041

upgpkg: stack 1.4.0-73

rebuild with memory,0.14.6

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 18:48:41 UTC (rev 236040)
+++ PKGBUILD2017-06-10 19:08:35 UTC (rev 236041)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.4.0
-pkgrel=72
+pkgrel=73
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-06-10 Thread Bruno Pagani
Date: Saturday, June 10, 2017 @ 18:48:41
  Author: archange
Revision: 236040

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

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

---+
 /PKGBUILD |  112 
 /couchdb.install  |   20 ++
 /couchdb.service  |   30 +
 /couchdb.tmpfiles |6 +
 /datadirs.ini |6 +
 community-i686/PKGBUILD   |   59 --
 community-i686/couchdb.install|   16 -
 community-i686/couchdb.service|   15 
 community-i686/couchdb.sysusers   |1 
 community-i686/couchdb.tmpfiles   |1 
 community-i686/datadirs.ini   |3 
 community-x86_64/PKGBUILD |   59 --
 community-x86_64/couchdb.install  |   16 -
 community-x86_64/couchdb.service  |   15 
 community-x86_64/couchdb.sysusers |1 
 community-x86_64/couchdb.tmpfiles |1 
 community-x86_64/datadirs.ini |3 
 17 files changed, 176 insertions(+), 188 deletions(-)

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

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

2017-06-10 Thread Bruno Pagani
Date: Saturday, June 10, 2017 @ 18:44:41
  Author: archange
Revision: 236039

Fix building by using Erlang 19.3 instead of 20.0

Erlang is in fact a makedep only, not a runtime dep.
Also clean a bit things around user/group and folders creation.
couchdb now defaults to couchdb group instead of daemon one.

Added:
  couchdb/trunk/couchdb.sysusers
Modified:
  couchdb/trunk/PKGBUILD
  couchdb/trunk/couchdb.install
  couchdb/trunk/couchdb.tmpfiles

--+
 PKGBUILD |   63 +
 couchdb.install  |   20 +---
 couchdb.sysusers |1 
 couchdb.tmpfiles |4 ++-
 4 files changed, 41 insertions(+), 47 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 18:27:31 UTC (rev 236038)
+++ PKGBUILD2017-06-10 18:44:41 UTC (rev 236039)
@@ -1,4 +1,3 @@
-# $Id$
 # Maintainer: Sergej Pupykin 
 # Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
 # Contributor: Michael Fellinger 
@@ -5,55 +4,53 @@
 
 pkgname=couchdb
 pkgver=2.0.0
-pkgrel=14
+pkgrel=15
 pkgdesc="A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
 arch=('i686' 'x86_64')
 url="http://couchdb.apache.org;
 license=('APACHE')
-depends=('icu' 'erlang-nox' 'js185' 'openssl' 'curl' 'util-linux')
-makedepends=('autoconf-archive' 'git')
-install=couchdb.install
+depends=('icu' 'js185' 'openssl' 'zlib')
+makedepends=('erlang19-nox')
+install=${pkgname}.install
 backup=('etc/couchdb/local.ini'
-   'etc/couchdb/vm.args')
+'etc/couchdb/vm.args')
+source=("http://www-eu.apache.org/dist/couchdb/source/${pkgver}/apache-couchdb-${pkgver}.tar.gz"{,.asc}
+'couchdb.service'
+'couchdb.sysusers'
+'couchdb.tmpfiles'
+'datadirs.ini')
+sha256sums=('ccaf3ce9cb06c50a73e091696e557e2a57c5ba02c5b299e1ac2f5b959ee96eca'
+'SKIP'
+'b658af33dcd5e7f90b42ba1b65b61905b818103f0a9fa85f15f3bfec216c7435'
+'3ed1ad2a37a068ce194b03fb72eb35285d60fa7faf2d2c2bb710703d229108a8'
+'0ce806cbc5e18e60b17be9fd2cdbd4c7f12cc84ca95b079efdede16ddb5f3efd'
+'937ca3498aab47b3f2226d027fa8a1a95de55cbb463373099e28cb9a6c7046ac')
 validpgpkeys=('E0AF0A194D55C84E4A19A801CDB0C0F904F4EE9B'
- 'D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4')
-source=("http://www.eu.apache.org/dist/couchdb/source/$pkgver/apache-couchdb-$pkgver.tar.gz"{,.asc}
-   "couchdb.service"
-   "couchdb.tmpfiles"
-   "datadirs.ini")
-md5sums=('402fc02df28a5297a56cedebbae42524'
- 'SKIP'
- '38cea6d9b533a22dadc22538a921c282'
- '1e254ebe32eeb061be64193bafa35dbf'
- 'cd649a705805e6193ae72aea33a2e4bd')
+  'D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4')
 
 prepare() {
-  cd "$srcdir/apache-couchdb-$pkgver"
+  cd apache-couchdb-${pkgver}
   sed -i 's|$ROOTDIR/etc/vm.args|/etc/couchdb/vm.args|' rel/overlay/bin/couchdb
-  sed -i 's/17|18|19/&|20/' rebar.config.script src/snappy/rebar.config
 }
 
 build() {
-  cd "$srcdir/apache-couchdb-$pkgver"
+  cd apache-couchdb-${pkgver}
   ./configure
   make release
 }
 
 package() {
-  cd "$srcdir/apache-couchdb-$pkgver"
-  install -dm0755 "$pkgdir"/usr/lib/
-  install -dm0755 "$pkgdir"/etc/couchdb/
-  install -dm0755 "$pkgdir"/var/lib/couchdb/
+  cd apache-couchdb-${pkgver}
+  install -dm755 "${pkgdir}"/usr/lib/
+  install -dm755 "${pkgdir}"/etc/couchdb/
 
-  cp -r rel/couchdb "$pkgdir"/usr/lib/couchdb
-  mv "$pkgdir"/usr/lib/couchdb/etc/local.ini "$pkgdir"/etc/couchdb/local.ini
-  mv "$pkgdir"/usr/lib/couchdb/etc/vm.args "$pkgdir"/etc/couchdb/vm.args
+  cp -r rel/couchdb "${pkgdir}"/usr/lib/couchdb
+  mv "${pkgdir}"/usr/lib/couchdb/etc/local.ini 
"${pkgdir}"/etc/couchdb/local.ini
+  mv "${pkgdir}"/usr/lib/couchdb/etc/vm.args "${pkgdir}"/etc/couchdb/vm.args
 
-  # use system erts
-#  rm -rf "$pkgdir"/usr/lib/couchdb/erts-*
-#  _erts=$(cd /usr/lib/erlang/ && ls -1d erts-*)
-#  ln -s /usr/lib/erlang/${_erts} "$pkgdir"/usr/lib/couchdb/${_erts}
-
-  install -Dm0644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
-  install -Dm0644 "$srcdir"/datadirs.ini 
"$pkgdir"/usr/lib/couchdb/etc/datadirs.ini
+  cd "${srcdir}"
+  install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
+  install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+  install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
+  install -Dm644 datadirs.ini -t "${pkgdir}"/usr/lib/couchdb/etc/
 }

Modified: couchdb.install
===
--- couchdb.install 2017-06-10 18:27:31 UTC (rev 236038)
+++ couchdb.install 2017-06-10 18:44:41 UTC (rev 236039)
@@ -1,16 +1,10 @@
-post_install() {
-id couchdb &>/dev/null || \
-useradd -r -c "CouchDB daemon" -g daemon -d /var/lib/couchdb -s 
/bin/false 

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

2017-06-10 Thread Bruno Pagani
Date: Saturday, June 10, 2017 @ 18:27:31
  Author: archange
Revision: 236038

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

Added:
  erlang19-nox/repos/community-i686/
  erlang19-nox/repos/community-i686/PKGBUILD
(from rev 236037, erlang19-nox/trunk/PKGBUILD)
  erlang19-nox/repos/community-i686/openssl-1.1.0-fixup.patch
(from rev 236037, erlang19-nox/trunk/openssl-1.1.0-fixup.patch)
  erlang19-nox/repos/community-i686/openssl-1.1.0.patch
(from rev 236037, erlang19-nox/trunk/openssl-1.1.0.patch)
  erlang19-nox/repos/community-i686/otp-0007-Fix-CVE-2016-10253.patch
(from rev 236037, erlang19-nox/trunk/otp-0007-Fix-CVE-2016-10253.patch)
  erlang19-nox/repos/community-x86_64/
  erlang19-nox/repos/community-x86_64/PKGBUILD
(from rev 236037, erlang19-nox/trunk/PKGBUILD)
  erlang19-nox/repos/community-x86_64/openssl-1.1.0-fixup.patch
(from rev 236037, erlang19-nox/trunk/openssl-1.1.0-fixup.patch)
  erlang19-nox/repos/community-x86_64/openssl-1.1.0.patch
(from rev 236037, erlang19-nox/trunk/openssl-1.1.0.patch)
  erlang19-nox/repos/community-x86_64/otp-0007-Fix-CVE-2016-10253.patch
(from rev 236037, erlang19-nox/trunk/otp-0007-Fix-CVE-2016-10253.patch)

+
 community-i686/PKGBUILD|  112 ++
 community-i686/openssl-1.1.0-fixup.patch   |   32 
 community-i686/openssl-1.1.0.patch | 1062 +++
 community-i686/otp-0007-Fix-CVE-2016-10253.patch   |  318 +
 community-x86_64/PKGBUILD  |  112 ++
 community-x86_64/openssl-1.1.0-fixup.patch |   32 
 community-x86_64/openssl-1.1.0.patch   | 1062 +++
 community-x86_64/otp-0007-Fix-CVE-2016-10253.patch |  318 +
 8 files changed, 3048 insertions(+)

Copied: erlang19-nox/repos/community-i686/PKGBUILD (from rev 236037, 
erlang19-nox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-10 18:27:31 UTC (rev 236038)
@@ -0,0 +1,112 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+# Contributor: Alexander F Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgname=erlang19-nox
+pkgver=19.3
+pkgrel=1
+pkgdesc="General-purpose concurrent functional programming language developed 
by Ericsson (headless version, only for building CouchDB)"
+arch=('x86_64' 'i686')
+url="http://www.erlang.org/;
+license=('Apache')
+depends=('zlib' 'openssl')
+makedepends=('perl' 'git')
+conflicts=('erlang')
+options=('staticlibs')
+source=("git+https://github.com/erlang/otp.git#tag=OTP-${pkgver};
+'otp-0007-Fix-CVE-2016-10253.patch'
+'openssl-1.1.0.patch'
+'openssl-1.1.0-fixup.patch')
+sha256sums=('SKIP'
+'a1361b0fd7b32d8de061f1a985df31f5b37f433b42d46a6a03e2f19c9372b46e'
+'dd315047f3ccdad8609a5eb881eb2f31316e5fcc34ebec2a0b6328d5a7a5'
+'3ca0a3b8426f1ad08b7bb2fb45a243cf17efa7d5db0ed20a934cd8cbf6178b53')
+
+prepare() {
+cd otp
+git cherry-pick -n 25aa0128340d819e85e641f0ef8b9e0fd5fdda0b
+git cherry-pick -n e30294f44d02200c20a80f1a3a2bb075afc3747d
+git cherry-pick -n 78a5de9611c25a4e7b5248aa9828f949f3a5c131
+git cherry-pick -n 1cdaf0a6fd8dbbf08fe88dd148424df4da683f48
+patch -Np1 -i ../openssl-1.1.0.patch
+patch -Np1 -i ../openssl-1.1.0-fixup.patch
+patch -Np1 -i ../otp-0007-Fix-CVE-2016-10253.patch
+./otp_build autoconf
+}
+
+build() {
+cd otp
+
+# List of apps at http://erlang.org/doc/applications.html, CouchDB only 
needs the following:
+# compiler
+# erts
+# kernel
+# sasl
+# stdlib > parsetools
+#
+# os_mon > otp_mibs > snmp
+#
+# asn1
+# crypto
+# inets
+# public_key
+# ssl
+# xmerl
+#
+# runtime_tools
+# syntax_tools
+#
+# Plus for makedepends:
+# erl_interface
+# eunit
+# reltool
+
+# Actually this is not working at release step, but not clear which app is 
missing for that.
+# So massively commenting out.
+./configure \
+--prefix=/usr \
+--enable-smp-support \
+--disable-sctp \
+--without-javac #\
+   # --without-mnesia \
+   # --without-odbc \
+   # --without-diameter \
+   # --without-eldap \
+   # --without-gs \
+   # --without-jinterface \
+   # --without-megaco \
+   # --without-ssh \
+   # --without-wx \
+   # --without-debugger \
+   # --without-dialyzer \
+   # --without-et \
+   # --without-observer \
+   # --without-percept \
+  

[arch-commits] Commit in (7 files)

2017-06-10 Thread Bruno Pagani
Date: Saturday, June 10, 2017 @ 18:22:33
  Author: archange
Revision: 236037

Add erlang19(-nox) to fix CouchDB building

Added:
  erlang19-nox/
  erlang19-nox/repos/
  erlang19-nox/trunk/
  erlang19-nox/trunk/PKGBUILD
  erlang19-nox/trunk/openssl-1.1.0-fixup.patch
  erlang19-nox/trunk/openssl-1.1.0.patch
  erlang19-nox/trunk/otp-0007-Fix-CVE-2016-10253.patch

---+
 PKGBUILD  |  112 +++
 openssl-1.1.0-fixup.patch |   32 +
 openssl-1.1.0.patch   | 1062 
 otp-0007-Fix-CVE-2016-10253.patch |  318 ++
 4 files changed, 1524 insertions(+)

Added: erlang19-nox/trunk/PKGBUILD
===
--- erlang19-nox/trunk/PKGBUILD (rev 0)
+++ erlang19-nox/trunk/PKGBUILD 2017-06-10 18:22:33 UTC (rev 236037)
@@ -0,0 +1,112 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+# Contributor: Alexander F Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgname=erlang19-nox
+pkgver=19.3
+pkgrel=1
+pkgdesc="General-purpose concurrent functional programming language developed 
by Ericsson (headless version, only for building CouchDB)"
+arch=('x86_64' 'i686')
+url="http://www.erlang.org/;
+license=('Apache')
+depends=('zlib' 'openssl')
+makedepends=('perl' 'git')
+conflicts=('erlang')
+options=('staticlibs')
+source=("git+https://github.com/erlang/otp.git#tag=OTP-${pkgver};
+'otp-0007-Fix-CVE-2016-10253.patch'
+'openssl-1.1.0.patch'
+'openssl-1.1.0-fixup.patch')
+sha256sums=('SKIP'
+'a1361b0fd7b32d8de061f1a985df31f5b37f433b42d46a6a03e2f19c9372b46e'
+'dd315047f3ccdad8609a5eb881eb2f31316e5fcc34ebec2a0b6328d5a7a5'
+'3ca0a3b8426f1ad08b7bb2fb45a243cf17efa7d5db0ed20a934cd8cbf6178b53')
+
+prepare() {
+cd otp
+git cherry-pick -n 25aa0128340d819e85e641f0ef8b9e0fd5fdda0b
+git cherry-pick -n e30294f44d02200c20a80f1a3a2bb075afc3747d
+git cherry-pick -n 78a5de9611c25a4e7b5248aa9828f949f3a5c131
+git cherry-pick -n 1cdaf0a6fd8dbbf08fe88dd148424df4da683f48
+patch -Np1 -i ../openssl-1.1.0.patch
+patch -Np1 -i ../openssl-1.1.0-fixup.patch
+patch -Np1 -i ../otp-0007-Fix-CVE-2016-10253.patch
+./otp_build autoconf
+}
+
+build() {
+cd otp
+
+# List of apps at http://erlang.org/doc/applications.html, CouchDB only 
needs the following:
+# compiler
+# erts
+# kernel
+# sasl
+# stdlib > parsetools
+#
+# os_mon > otp_mibs > snmp
+#
+# asn1
+# crypto
+# inets
+# public_key
+# ssl
+# xmerl
+#
+# runtime_tools
+# syntax_tools
+#
+# Plus for makedepends:
+# erl_interface
+# eunit
+# reltool
+
+# Actually this is not working at release step, but not clear which app is 
missing for that.
+# So massively commenting out.
+./configure \
+--prefix=/usr \
+--enable-smp-support \
+--disable-sctp \
+--without-javac #\
+   # --without-mnesia \
+   # --without-odbc \
+   # --without-diameter \
+   # --without-eldap \
+   # --without-gs \
+   # --without-jinterface \
+   # --without-megaco \
+   # --without-ssh \
+   # --without-wx \
+   # --without-debugger \
+   # --without-dialyzer \
+   # --without-et \
+   # --without-observer \
+   # --without-percept \
+   # --without-tools \
+   # --without-typer \
+   # --without-common_test \
+   # --without-edoc \
+   # --without-erl_docgen \
+   # --without-cosEvent \
+   # --without-cosEventDomain \
+   # --without-cosFileTransfer \
+   # --without-cosNotification \
+   # --without-cosProperty \
+   # --without-cosTime \
+   # --without-cosTransactions \
+   # --without-ic \
+   # --without-orber \
+   # --without-hipe
+make
+}
+
+package() {
+make -C otp DESTDIR="${pkgdir}" install
+
+# License
+install -Dm0644 "${srcdir}"/otp/LICENSE.txt -t 
"${pkgdir}"/usr/share/licenses/erlang
+}

Added: erlang19-nox/trunk/openssl-1.1.0-fixup.patch
===
--- erlang19-nox/trunk/openssl-1.1.0-fixup.patch
(rev 0)
+++ erlang19-nox/trunk/openssl-1.1.0-fixup.patch2017-06-10 18:22:33 UTC 
(rev 236037)
@@ -0,0 +1,32 @@
+--- otp/lib/crypto/c_src/crypto.c  2017-04-28 09:39:16.685119582 +
 otp/lib/crypto/c_src/crypto.c  2017-04-28 09:41:19.371604045 +
+@@ -1720,7 +1720,7 @@
+ ErlNifBinary key, ivec, text;
+ #ifdef HAVE_EVP_AES_CTR
+ const EVP_CIPHER 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 18:20:17
  Author: felixonmars
Revision: 236036

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

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

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

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

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 18:19:52
  Author: felixonmars
Revision: 236035

upgpkg: purescript 0.11.5-6

rebuild with memory,0.14.6

Modified:
  purescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 18:01:08 UTC (rev 236034)
+++ PKGBUILD2017-06-10 18:19:52 UTC (rev 236035)
@@ -4,7 +4,7 @@
 
 pkgname=purescript
 pkgver=0.11.5
-pkgrel=5
+pkgrel=6
 pkgdesc="PureScript Programming Language Compiler"
 url="http://www.purescript.org/;
 license=("custom:BSD3")


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

2017-06-10 Thread Sven-Hendrik Haase
Date: Saturday, June 10, 2017 @ 18:00:56
  Author: svenstaro
Revision: 236033

upgpkg: python-paramiko1 1.18.3-1

Modified:
  python-paramiko1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 17:58:17 UTC (rev 236032)
+++ PKGBUILD2017-06-10 18:00:56 UTC (rev 236033)
@@ -7,13 +7,13 @@
 
 pkgbase=python-paramiko1
 pkgname=(python-paramiko1 python2-paramiko1)
-pkgver=1.16.0
-pkgrel=3
+pkgver=1.18.3
+pkgrel=1
 pkgdesc="Python module that implements the SSH2 protocol (compatibility 
version)"
 url="https://github.com/paramiko/paramiko/;
 license=('LGPL')
 arch=('any')
-makedepends=('python-ecdsa' 'python2-ecdsa' 'python-crypto' 'python2-crypto' 
'git')
+makedepends=('python-ecdsa' 'python2-ecdsa' 'python-crypto' 'python2-crypto' 
'git' 'python-setuptools' 'python2-setuptools')
 source=("git+https://github.com/paramiko/paramiko.git#tag=$pkgver;)
 md5sums=('SKIP')
 


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

2017-06-10 Thread Sven-Hendrik Haase
Date: Saturday, June 10, 2017 @ 18:01:08
  Author: svenstaro
Revision: 236034

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-10 18:00:56 UTC (rev 236033)
+++ PKGBUILD2017-06-10 18:01:08 UTC (rev 236034)
@@ -1,60 +0,0 @@
-# $Id: PKGBUILD 172879 2016-04-30 04:50:53Z fyan $
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Angel Velasquez 
-# Contributor: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Mario Danic 
-
-pkgbase=python-paramiko1
-pkgname=(python-paramiko1 python2-paramiko1)
-pkgver=1.16.0
-pkgrel=3
-pkgdesc="Python module that implements the SSH2 protocol (compatibility 
version)"
-url="https://github.com/paramiko/paramiko/;
-license=('LGPL')
-arch=('any')
-makedepends=('python-ecdsa' 'python2-ecdsa' 'python-crypto' 'python2-crypto' 
'git')
-source=("git+https://github.com/paramiko/paramiko.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a paramiko{,-py2}
-
-  find paramiko-py2 -name '*.py' -print0 | xargs -0 \
-sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
--e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-}
-
-check() {
-  cd "$srcdir/paramiko"
-  LANG=en_US.UTF-8 python test.py
-
-  cd "$srcdir/paramiko-py2"
-  LANG=en_US.UTF-8 python2 test.py
-}
-
-package_python-paramiko1() {
-  depends=('python-ecdsa' 'python-setuptools' 'python-cryptography')
-  conflicts=('python-paramiko')
-  provides=('python-paramiko==1.8.0')
-
-  cd "$srcdir/paramiko"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname/demos"
-  install -m644 demos/* "$pkgdir/usr/share/doc/$pkgname/demos"
-  chmod 755 "$pkgdir/usr/share/doc/$pkgname/demos/"*.py
-}
-
-package_python2-paramiko1() {
-  depends=('python2-ecdsa' 'python2-setuptools' 'python2-cryptography')
-  conflicts=('python2-paramiko')
-  provides=('python2-paramiko==1.8.0')
-
-  cd "$srcdir/paramiko-py2"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname/demos"
-  install -m644 demos/* "$pkgdir/usr/share/doc/$pkgname/demos"
-  chmod 755 "$pkgdir/usr/share/doc/$pkgname/demos/"*.py
-}

Copied: python-paramiko1/repos/community-any/PKGBUILD (from rev 236033, 
python-paramiko1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-10 18:01:08 UTC (rev 236034)
@@ -0,0 +1,60 @@
+# $Id: PKGBUILD 172879 2016-04-30 04:50:53Z fyan $
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Angel Velasquez 
+# Contributor: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Mario Danic 
+
+pkgbase=python-paramiko1
+pkgname=(python-paramiko1 python2-paramiko1)
+pkgver=1.18.3
+pkgrel=1
+pkgdesc="Python module that implements the SSH2 protocol (compatibility 
version)"
+url="https://github.com/paramiko/paramiko/;
+license=('LGPL')
+arch=('any')
+makedepends=('python-ecdsa' 'python2-ecdsa' 'python-crypto' 'python2-crypto' 
'git' 'python-setuptools' 'python2-setuptools')
+source=("git+https://github.com/paramiko/paramiko.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a paramiko{,-py2}
+
+  find paramiko-py2 -name '*.py' -print0 | xargs -0 \
+sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+-e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+}
+
+check() {
+  cd "$srcdir/paramiko"
+  LANG=en_US.UTF-8 python test.py
+
+  cd "$srcdir/paramiko-py2"
+  LANG=en_US.UTF-8 python2 test.py
+}
+
+package_python-paramiko1() {
+  depends=('python-ecdsa' 'python-setuptools' 'python-cryptography')
+  conflicts=('python-paramiko')
+  provides=('python-paramiko==1.8.0')
+
+  cd "$srcdir/paramiko"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/demos"
+  install -m644 demos/* "$pkgdir/usr/share/doc/$pkgname/demos"
+  chmod 755 "$pkgdir/usr/share/doc/$pkgname/demos/"*.py
+}
+
+package_python2-paramiko1() {
+  depends=('python2-ecdsa' 'python2-setuptools' 'python2-cryptography')
+  conflicts=('python2-paramiko')
+  provides=('python2-paramiko==1.8.0')
+
+  cd "$srcdir/paramiko-py2"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/demos"
+  install -m644 demos/* "$pkgdir/usr/share/doc/$pkgname/demos"
+  chmod 755 

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

2017-06-10 Thread Anatol Pomozov
Date: Saturday, June 10, 2017 @ 17:58:17
  Author: anatolik
Revision: 236032

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

Added:
  vtk6/repos/community-staging-i686/
  vtk6/repos/community-staging-i686/PKGBUILD
(from rev 236030, vtk6/trunk/PKGBUILD)
  vtk6/repos/community-staging-i686/ffmpeg3_compat.patch
(from rev 236030, vtk6/trunk/ffmpeg3_compat.patch)
  vtk6/repos/community-staging-i686/gcc6.patch
(from rev 236030, vtk6/trunk/gcc6.patch)
  vtk6/repos/community-staging-i686/gdal2.patch
(from rev 236030, vtk6/trunk/gdal2.patch)
  vtk6/repos/community-staging-x86_64/
  vtk6/repos/community-staging-x86_64/PKGBUILD
(from rev 236031, vtk6/trunk/PKGBUILD)
  vtk6/repos/community-staging-x86_64/ffmpeg3_compat.patch
(from rev 236031, vtk6/trunk/ffmpeg3_compat.patch)
  vtk6/repos/community-staging-x86_64/gcc6.patch
(from rev 236031, vtk6/trunk/gcc6.patch)
  vtk6/repos/community-staging-x86_64/gdal2.patch
(from rev 236031, vtk6/trunk/gdal2.patch)

---+
 community-staging-i686/PKGBUILD   |  136 
 community-staging-i686/ffmpeg3_compat.patch   |   62 ++
 community-staging-i686/gcc6.patch |   24 
 community-staging-i686/gdal2.patch|   31 +
 community-staging-x86_64/PKGBUILD |  136 
 community-staging-x86_64/ffmpeg3_compat.patch |   62 ++
 community-staging-x86_64/gcc6.patch   |   24 
 community-staging-x86_64/gdal2.patch  |   31 +
 8 files changed, 506 insertions(+)

Copied: vtk6/repos/community-staging-i686/PKGBUILD (from rev 236030, 
vtk6/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 17:58:17 UTC (rev 236032)
@@ -0,0 +1,136 @@
+# Mainteriner: Florian Pritz 
+# Contributor: Ray Rashif 
+# Contributor: Andrzej Giniewicz 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+
+pkgname=vtk6
+pkgver=6.3.0
+_majorver=6.3
+pkgrel=7
+pkgdesc='A software system for 3D computer graphics, image processing, and 
visualization. Legacy 6.3 version.'
+arch=('i686' 'x86_64')
+url='http://www.vtk.org/'
+license=('BSD')
+depends=('gcc-libs' 'gl2ps')
+makedepends=('boost' 'cmake' 'ninja' 'java-environment' 'doxygen' 'gnuplot' 
'tk' 'wget' 'python2-matplotlib' 'python2-twisted' 'python2-mpi4py' 
'python2-autobahn' 'unixodbc' 'gdal' 'openmpi' 'mariadb' 'glew' 'ffmpeg' 
'lesstif' 'qt5-base' 'jsoncpp' 'qt5-webkit' 'qt5-tools')
+optdepends=('python2: python bindings'
+'java-runtime: java bindings'
+'tk: tcl bindings'
+'gnuplot: plotting tools'
+'graphviz: drawing tools'
+'python2-matplotlib: for Matplotlib rendering'
+'python2-twisted: for vtkWeb'
+'python2-autobahn: for vtkWeb'
+'openmpi: OpenMPI support'
+'python2-mpi4py: OpenMPI python support'
+'unixodbc'
+'glew'
+'gdal'
+'mariadb')
+source=("http://www.vtk.org/files/release/${_majorver}/VTK-${pkgver}.tar.gz;
+
"http://www.vtk.org/files/release/${_majorver}/VTKData-${pkgver}.tar.gz;
+
"http://www.vtk.org/files/release/${_majorver}/VTKLargeData-${pkgver}.tar.gz;
+# https://github.com/Kitware/VTK/pull/21
+
remove-vtkxdmf3.patch::https://github.com/nschloe/VTK/commit/a98527dfe9ce23beebf386fab07caef99b911ede.patch
+
find-libxml2.patch::https://github.com/nschloe/VTK/commit/6216f98a7124e12a2c1cefd113347f94b51f3c51.patch
+   ffmpeg3_compat.patch
+gdal2.patch
+gcc6.patch)
+options=(staticlibs)
+sha1sums=('452efab1eedf6202f2d9a3362b5f69adfc44edda'
+  '424b138c079a688cd8c52c43d12b54e2f2b06acf'
+  '622a2bd314262961c6d96f2686f96224e8e31de3'
+  '191a9393dc0e2e8c40e5042611102cd5e421dfaa'
+  '1c26fc85939eb95696e52c7ae1bfac3cc0df52b7'
+  'a78177f8dd6dedd9ad189fa12730ec53c7d02508'
+  'c60610e7c8cf0ad93d7c02cbf8a20fc415f59b3e'
+  '0dc5e510a7f522e32484e2e77205c1a9d2c48854')
+
+prepare() {
+  cd "${srcdir}"/VTK-$pkgver
+
+  # fix compilation errors:
+  patch -Np1 -i "${srcdir}"/remove-vtkxdmf3.patch
+  patch -Np1 -i "${srcdir}"/find-libxml2.patch
+  patch -Np1 -i "${srcdir}"/gdal2.patch
+  patch -Np1 -i "${srcdir}"/ffmpeg3_compat.patch
+  patch -Np1 -i "${srcdir}"/gcc6.patch
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "${srcdir}"
+  rm -rf build
+  mkdir build
+  cd build
+
+  # to help cmake find java
+  export JAVA_HOME=/usr/lib/jvm/default
+
+  # flags to enable 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:57:49
  Author: felixonmars
Revision: 236031

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

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

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

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

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

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

2017-06-10 Thread Anatol Pomozov
Date: Saturday, June 10, 2017 @ 17:57:27
  Author: anatolik
Revision: 236030

openmpi 2.x rebuild

Modified:
  vtk6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 17:57:25 UTC (rev 236029)
+++ PKGBUILD2017-06-10 17:57:27 UTC (rev 236030)
@@ -6,7 +6,7 @@
 pkgname=vtk6
 pkgver=6.3.0
 _majorver=6.3
-pkgrel=6
+pkgrel=7
 pkgdesc='A software system for 3D computer graphics, image processing, and 
visualization. Legacy 6.3 version.'
 arch=('i686' 'x86_64')
 url='http://www.vtk.org/'


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:57:25
  Author: felixonmars
Revision: 236029

upgpkg: haskell-pipes-http 1.0.5-41

rebuild with memory,0.14.6

Modified:
  haskell-pipes-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 17:55:02 UTC (rev 236028)
+++ PKGBUILD2017-06-10 17:57:25 UTC (rev 236029)
@@ -5,7 +5,7 @@
 _hkgname=pipes-http
 pkgname=haskell-pipes-http
 pkgver=1.0.5
-pkgrel=40
+pkgrel=41
 pkgdesc="HTTP client with pipes interface"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:54:40
  Author: felixonmars
Revision: 236027

upgpkg: pandoc-crossref 0.2.5.0-57

rebuild with memory,0.14.6

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 17:48:38 UTC (rev 236026)
+++ PKGBUILD2017-06-10 17:54:40 UTC (rev 236027)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-crossref
 pkgname=(pandoc-crossref haskell-pandoc-crossref)
 pkgver=0.2.5.0
-pkgrel=56
+pkgrel=57
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("GPL2")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:55:02
  Author: felixonmars
Revision: 236028

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 236027, pandoc-crossref/trunk/PKGBUILD)
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 236027, 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 236027, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 17:55:02 UTC (rev 236028)
@@ -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=57
+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 
236027, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 17:55:02 UTC (rev 236028)
@@ -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=57
+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 haskell-hakyll/repos (4 files)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:48:38
  Author: felixonmars
Revision: 236026

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 236025, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 236025, 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 236025, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 17:48:38 UTC (rev 236026)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=79
+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 
236025, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 17:48:38 UTC (rev 236026)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=79
+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 haskell-hakyll/trunk (PKGBUILD)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:48:16
  Author: felixonmars
Revision: 236025

upgpkg: haskell-hakyll 4.9.5.1-79

rebuild with memory,0.14.6

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 17:41:24 UTC (rev 236024)
+++ PKGBUILD2017-06-10 17:48:16 UTC (rev 236025)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.5.1
-pkgrel=78
+pkgrel=79
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:41:24
  Author: felixonmars
Revision: 236024

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 236023, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 236023, 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 236023, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 17:41:24 UTC (rev 236024)
@@ -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=66
+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 
236023, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 17:41:24 UTC (rev 236024)
@@ -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=66
+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-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:41:01
  Author: felixonmars
Revision: 236023

upgpkg: pandoc-citeproc 0.10.4.1-66

rebuild with memory,0.14.6

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 17:27:04 UTC (rev 236022)
+++ PKGBUILD2017-06-10 17:41:01 UTC (rev 236023)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.10.4.1
-pkgrel=65
+pkgrel=66
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:27:04
  Author: felixonmars
Revision: 236022

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 236021, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 236021, 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 236021, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 17:27:04 UTC (rev 236022)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=70
+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 236021, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 17:27:04 UTC (rev 236022)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=70
+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-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:26:41
  Author: felixonmars
Revision: 236021

upgpkg: pandoc 1.19.2.1-70

rebuild with memory,0.14.6

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 17:02:51 UTC (rev 236020)
+++ PKGBUILD2017-06-10 17:26:41 UTC (rev 236021)
@@ -5,7 +5,7 @@
 pkgbase=pandoc
 pkgname=(pandoc haskell-pandoc)
 pkgver=1.19.2.1
-pkgrel=69
+pkgrel=70
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:02:51
  Author: felixonmars
Revision: 236020

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

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

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

Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 236019, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 17:02:51 UTC (rev 236020)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.16
+pkgrel=46
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="http://github.com/aristidb/aws;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable"
+ "haskell-case-insensitive" "haskell-cereal" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default"
+ "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-network" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-safe" "haskell-scientific" 
"haskell-tagged"
+ "haskell-text" "haskell-unordered-containers" "haskell-utf8-string"
+ "haskell-vector" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('84b5c60227f3c9eddc0abf0881aee22443fc4a211b8a95f18be628eaa492209c')
+
+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-examples
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 236019, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 17:02:51 UTC (rev 236020)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.16
+pkgrel=46
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="http://github.com/aristidb/aws;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable"
+ "haskell-case-insensitive" "haskell-cereal" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default"
+ "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-network" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-safe" "haskell-scientific" 
"haskell-tagged"
+ "haskell-text" "haskell-unordered-containers" "haskell-utf8-string"
+ "haskell-vector" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('84b5c60227f3c9eddc0abf0881aee22443fc4a211b8a95f18be628eaa492209c')
+
+build() {
+   

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:02:29
  Author: felixonmars
Revision: 236019

upgpkg: haskell-aws 0.16-46

rebuild with memory,0.14.6

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 17:00:44 UTC (rev 236018)
+++ PKGBUILD2017-06-10 17:02:29 UTC (rev 236019)
@@ -5,7 +5,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.16
-pkgrel=45
+pkgrel=46
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="http://github.com/aristidb/aws;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:00:44
  Author: felixonmars
Revision: 236018

archrelease: copy trunk to community-any

Added:
  certbot-dns-cloudflare/repos/community-any/
  certbot-dns-cloudflare/repos/community-any/PKGBUILD
(from rev 236017, certbot-dns-cloudflare/trunk/PKGBUILD)

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

Copied: certbot-dns-cloudflare/repos/community-any/PKGBUILD (from rev 236017, 
certbot-dns-cloudflare/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-10 17:00:44 UTC (rev 236018)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-cloudflare
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-cloudflare' 
'python-mock'
+ 'python-setuptools' 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('3c1d1fa0ac44944bb1566526835dc0de8d56fc920dc952298dd93ad6af72646bcf4b91183fa5698bec5e43e31f0c469ff48a7abb92601b453bc16304469807ab'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 17:00:15
  Author: felixonmars
Revision: 236017

addpkg: certbot-dns-cloudflare 0.15.0-1

Added:
  certbot-dns-cloudflare/
  certbot-dns-cloudflare/repos/
  certbot-dns-cloudflare/trunk/
  certbot-dns-cloudflare/trunk/PKGBUILD

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

Added: certbot-dns-cloudflare/trunk/PKGBUILD
===
--- certbot-dns-cloudflare/trunk/PKGBUILD   (rev 0)
+++ certbot-dns-cloudflare/trunk/PKGBUILD   2017-06-10 17:00:15 UTC (rev 
236017)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-cloudflare
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-cloudflare' 
'python-mock'
+ 'python-setuptools' 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('3c1d1fa0ac44944bb1566526835dc0de8d56fc920dc952298dd93ad6af72646bcf4b91183fa5698bec5e43e31f0c469ff48a7abb92601b453bc16304469807ab'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:58:31
  Author: felixonmars
Revision: 236016

archrelease: copy trunk to community-any

Added:
  python-cloudflare/repos/community-any/
  python-cloudflare/repos/community-any/PKGBUILD
(from rev 236015, python-cloudflare/trunk/PKGBUILD)

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

Copied: python-cloudflare/repos/community-any/PKGBUILD (from rev 236015, 
python-cloudflare/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-10 16:58:31 UTC (rev 236016)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cloudflare
+pkgname=('python-cloudflare' 'python2-cloudflare')
+pkgver=1.5.1
+_commit=c1c5096e4c8e20609638dfde9b662be9c70c9c7b
+pkgrel=1
+pkgdesc='Python wrapper for the Cloudflare v4 API'
+arch=('any')
+license=('MIT')
+url='https://github.com/cloudflare/python-cloudflare'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-future' 'python2-future' 'python-yaml' 'python2-yaml')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/cloudflare/python-cloudflare/archive/$_commit.tar.gz;)
+sha512sums=('2a2c131038099223117aa50ab75c6d624efaf24d8f9fd908cb18017ec3e698b765c9c9bce09e3678f61a74b5787131e3d3ccdfa5d9991684a79205bf910c5958')
+
+prepare() {
+  mv python-cloudflare-{$_commit,$pkgver}
+
+  # https://github.com/cloudflare/python-cloudflare/issues/30
+  sed -i "s/'logger', //" python-cloudflare-$pkgver/setup.py
+  cp -a python-cloudflare-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-cloudflare-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-cloudflare-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-cloudflare-$pkgver
+  PYTHONPATH="$PWD/build/lib" python tests/test1.py
+
+  cd "$srcdir"/python-cloudflare-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib" python2 tests/test1.py
+}
+
+package_python-cloudflare() {
+  depends=('python-requests' 'python-future' 'python-yaml')
+
+  cd python-cloudflare-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-cloudflare() {
+  depends=('python2-requests' 'python2-future' 'python2-yaml')
+
+  cd python-cloudflare-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/cli4{,-python2}
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:58:15
  Author: felixonmars
Revision: 236015

addpkg: python-cloudflare 1.5.1-1

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

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

Added: python-cloudflare/trunk/PKGBUILD
===
--- python-cloudflare/trunk/PKGBUILD(rev 0)
+++ python-cloudflare/trunk/PKGBUILD2017-06-10 16:58:15 UTC (rev 236015)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cloudflare
+pkgname=('python-cloudflare' 'python2-cloudflare')
+pkgver=1.5.1
+_commit=c1c5096e4c8e20609638dfde9b662be9c70c9c7b
+pkgrel=1
+pkgdesc='Python wrapper for the Cloudflare v4 API'
+arch=('any')
+license=('MIT')
+url='https://github.com/cloudflare/python-cloudflare'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-future' 'python2-future' 'python-yaml' 'python2-yaml')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/cloudflare/python-cloudflare/archive/$_commit.tar.gz;)
+sha512sums=('2a2c131038099223117aa50ab75c6d624efaf24d8f9fd908cb18017ec3e698b765c9c9bce09e3678f61a74b5787131e3d3ccdfa5d9991684a79205bf910c5958')
+
+prepare() {
+  mv python-cloudflare-{$_commit,$pkgver}
+
+  # https://github.com/cloudflare/python-cloudflare/issues/30
+  sed -i "s/'logger', //" python-cloudflare-$pkgver/setup.py
+  cp -a python-cloudflare-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-cloudflare-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-cloudflare-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-cloudflare-$pkgver
+  PYTHONPATH="$PWD/build/lib" python tests/test1.py
+
+  cd "$srcdir"/python-cloudflare-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib" python2 tests/test1.py
+}
+
+package_python-cloudflare() {
+  depends=('python-requests' 'python-future' 'python-yaml')
+
+  cd python-cloudflare-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-cloudflare() {
+  depends=('python2-requests' 'python2-future' 'python2-yaml')
+
+  cd python-cloudflare-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/cli4{,-python2}
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:52:13
  Author: felixonmars
Revision: 236013

upgpkg: haskell-authenticate 1.3.3.2-92

rebuild with memory,0.14.6

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:49:46 UTC (rev 236012)
+++ PKGBUILD2017-06-10 16:52:13 UTC (rev 236013)
@@ -5,7 +5,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.3.2
-pkgrel=91
+pkgrel=92
 pkgdesc="Authentication methods for Haskell web applications."
 url="http://github.com/yesodweb/authenticate;
 license=("MIT")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:52:35
  Author: felixonmars
Revision: 236014

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

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

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

Copied: haskell-authenticate/repos/community-staging-i686/PKGBUILD (from rev 
236013, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:52:35 UTC (rev 236014)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3.2
+pkgrel=92
+pkgdesc="Authentication methods for Haskell web applications."
+url="http://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-http-conduit"
+ "haskell-http-types" "haskell-monad-control" "haskell-network-uri"
+ "haskell-resourcet" "haskell-tagstream-conduit" "haskell-text"
+ "haskell-unordered-containers" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('a65ff7791e646ea847fc6b8369addeecf6d2c3055a0b7ebe1421881103656e30')
+
+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
+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-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
236013, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:52:35 UTC (rev 236014)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3.2
+pkgrel=92
+pkgdesc="Authentication methods for Haskell web applications."
+url="http://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-http-conduit"
+ "haskell-http-types" "haskell-monad-control" "haskell-network-uri"
+ "haskell-resourcet" "haskell-tagstream-conduit" "haskell-text"
+ "haskell-unordered-containers" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('a65ff7791e646ea847fc6b8369addeecf6d2c3055a0b7ebe1421881103656e30')
+
+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
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:49:46
  Author: felixonmars
Revision: 236012

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

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

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

Copied: haskell-http-conduit/repos/community-staging-i686/PKGBUILD (from rev 
236011, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:49:46 UTC (rev 236012)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.2.3.1
+pkgrel=42
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-conduit" "haskell-conduit-extra" 
"haskell-exceptions"
+ "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-resourcet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('53ae16c601f980f323f2b24a32a776f9867b6b595e6e1929d440d1549715ca0e')
+
+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-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
236011, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:49:46 UTC (rev 236012)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.2.3.1
+pkgrel=42
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-conduit" "haskell-conduit-extra" 
"haskell-exceptions"
+ "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-resourcet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('53ae16c601f980f323f2b24a32a776f9867b6b595e6e1929d440d1549715ca0e')
+
+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   

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:49:25
  Author: felixonmars
Revision: 236011

upgpkg: haskell-http-conduit 2.2.3.1-42

rebuild with memory,0.14.6

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:46:32 UTC (rev 236010)
+++ PKGBUILD2017-06-10 16:49:25 UTC (rev 236011)
@@ -5,7 +5,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.2.3.1
-pkgrel=41
+pkgrel=42
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="http://www.yesodweb.com/book/http-conduit;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:46:32
  Author: felixonmars
Revision: 236010

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


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:46:10
  Author: felixonmars
Revision: 236009

upgpkg: hopenpgp-tools 0.19.4-107

rebuild with memory,0.14.6

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:42:53 UTC (rev 236008)
+++ PKGBUILD2017-06-10 16:46:10 UTC (rev 236009)
@@ -4,7 +4,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.19.4
-pkgrel=106
+pkgrel=107
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")


[arch-commits] Commit in (letshelp-certbot)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:42:53
  Author: felixonmars
Revision: 236008

remove unneeded package

Deleted:
  letshelp-certbot/


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:40:58
  Author: felixonmars
Revision: 236007

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

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

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

Copied: haskell-dav/repos/community-staging-i686/PKGBUILD (from rev 236006, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:40:58 UTC (rev 236007)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=111
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009')
+
+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 -f-mtl-compat
+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-dav/repos/community-staging-x86_64/PKGBUILD (from rev 236006, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:40:58 UTC (rev 236007)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=111
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009')
+
+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 -f-mtl-compat
+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 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:40:37
  Author: felixonmars
Revision: 236006

upgpkg: haskell-dav 1.3.1-111

rebuild with memory,0.14.6

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:37:29 UTC (rev 236005)
+++ PKGBUILD2017-06-10 16:40:37 UTC (rev 236006)
@@ -5,7 +5,7 @@
 _hkgname=DAV
 pkgname=haskell-dav
 pkgver=1.3.1
-pkgrel=110
+pkgrel=111
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV;
 license=("GPL3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:37:29
  Author: felixonmars
Revision: 236005

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

Added:
  haskell-http-client-tls/repos/community-staging-i686/
  haskell-http-client-tls/repos/community-staging-i686/PKGBUILD
(from rev 236004, haskell-http-client-tls/trunk/PKGBUILD)
  haskell-http-client-tls/repos/community-staging-x86_64/
  haskell-http-client-tls/repos/community-staging-x86_64/PKGBUILD
(from rev 236004, haskell-http-client-tls/trunk/PKGBUILD)

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

Copied: haskell-http-client-tls/repos/community-staging-i686/PKGBUILD (from rev 
236004, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:37:29 UTC (rev 236005)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client-tls
+pkgname=haskell-http-client-tls
+pkgver=0.3.5
+pkgrel=6
+pkgdesc="http-client backend using the connection package and tls library"
+url="https://github.com/snoyberg/http-client;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-connection" 
"haskell-cryptonite"
+ "haskell-data-default-class" "haskell-exceptions" 
"haskell-http-client"
+ "haskell-http-types" "haskell-memory" "haskell-network" 
"haskell-network-uri"
+ "haskell-text" "haskell-tls")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f6b3188827db4c609cefda20e8216cd9445ae12f7ce9868558d570cb801765def796a960e2b295b62e0ad94fd0af83440b6414cceb9ede1d13a23c829f02516b')
+
+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-http-client-tls/repos/community-staging-x86_64/PKGBUILD (from 
rev 236004, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:37:29 UTC (rev 236005)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client-tls
+pkgname=haskell-http-client-tls
+pkgver=0.3.5
+pkgrel=6
+pkgdesc="http-client backend using the connection package and tls library"
+url="https://github.com/snoyberg/http-client;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-connection" 
"haskell-cryptonite"
+ "haskell-data-default-class" "haskell-exceptions" 
"haskell-http-client"
+ "haskell-http-types" "haskell-memory" "haskell-network" 
"haskell-network-uri"
+ "haskell-text" "haskell-tls")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f6b3188827db4c609cefda20e8216cd9445ae12f7ce9868558d570cb801765def796a960e2b295b62e0ad94fd0af83440b6414cceb9ede1d13a23c829f02516b')
+
+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' |" 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:37:06
  Author: felixonmars
Revision: 236004

upgpkg: haskell-http-client-tls 0.3.5-6

rebuild with memory,0.14.6

Modified:
  haskell-http-client-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:35:03 UTC (rev 236003)
+++ PKGBUILD2017-06-10 16:37:06 UTC (rev 236004)
@@ -5,7 +5,7 @@
 _hkgname=http-client-tls
 pkgname=haskell-http-client-tls
 pkgver=0.3.5
-pkgrel=5
+pkgrel=6
 pkgdesc="http-client backend using the connection package and tls library"
 url="https://github.com/snoyberg/http-client;
 license=("MIT")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:35:03
  Author: felixonmars
Revision: 236003

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

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

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

Copied: haskell-connection/repos/community-staging-i686/PKGBUILD (from rev 
236002, haskell-connection/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:35:03 UTC (rev 236003)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 143584 2015-10-10 10:28:35Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=connection
+pkgname=haskell-connection
+pkgver=0.2.8
+pkgrel=12
+pkgdesc="Simple and easy network connections API"
+url="http://github.com/vincenthz/hs-connection;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-byteable" "haskell-data-default-class" 
"haskell-network" "haskell-socks"
+ "haskell-tls" "haskell-x509" "haskell-x509-store" 
"haskell-x509-system" "haskell-x509-validation")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('70b1f44e8786320c18b26fc5d4ec115fc8ac016ba1f852fa8137f55d785a93eb')
+
+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-connection/repos/community-staging-x86_64/PKGBUILD (from rev 
236002, haskell-connection/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:35:03 UTC (rev 236003)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 143584 2015-10-10 10:28:35Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=connection
+pkgname=haskell-connection
+pkgver=0.2.8
+pkgrel=12
+pkgdesc="Simple and easy network connections API"
+url="http://github.com/vincenthz/hs-connection;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-byteable" "haskell-data-default-class" 
"haskell-network" "haskell-socks"
+ "haskell-tls" "haskell-x509" "haskell-x509-store" 
"haskell-x509-system" "haskell-x509-validation")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('70b1f44e8786320c18b26fc5d4ec115fc8ac016ba1f852fa8137f55d785a93eb')
+
+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-connection/trunk (PKGBUILD)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:34:42
  Author: felixonmars
Revision: 236002

upgpkg: haskell-connection 0.2.8-12

rebuild with memory,0.14.6

Modified:
  haskell-connection/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:33:49 UTC (rev 236001)
+++ PKGBUILD2017-06-10 16:34:42 UTC (rev 236002)
@@ -5,7 +5,7 @@
 _hkgname=connection
 pkgname=haskell-connection
 pkgver=0.2.8
-pkgrel=11
+pkgrel=12
 pkgdesc="Simple and easy network connections API"
 url="http://github.com/vincenthz/hs-connection;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:33:49
  Author: felixonmars
Revision: 236001

archrelease: copy trunk to community-any

Added:
  certbot-dns-dnsimple/repos/community-any/
  certbot-dns-dnsimple/repos/community-any/PKGBUILD
(from rev 236000, certbot-dns-dnsimple/trunk/PKGBUILD)

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

Copied: certbot-dns-dnsimple/repos/community-any/PKGBUILD (from rev 236000, 
certbot-dns-dnsimple/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-10 16:33:49 UTC (rev 236001)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-dnsimple
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="DNSimple DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" 'dns-lexicon' "python-acme=$pkgver" 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('65d4a0bfa19b4bc0acdc14080b1aa2fee285daae1bd8122360aa92a3016f411a0f18a3c1f39be8cffac6a3a332696ebee7c77a245a6662506a8aff46b013ebea'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:32:13
  Author: felixonmars
Revision: 235999

upgpkg: haskell-tls 1.3.10-13

rebuild with memory,0.14.6

Modified:
  haskell-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:31:53 UTC (rev 235998)
+++ PKGBUILD2017-06-10 16:32:13 UTC (rev 235999)
@@ -5,7 +5,7 @@
 _hkgname=tls
 pkgname=haskell-tls
 pkgver=1.3.10
-pkgrel=12
+pkgrel=13
 pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
 url="http://github.com/vincenthz/hs-tls;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:32:36
  Author: felixonmars
Revision: 236000

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

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

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

Copied: haskell-tls/repos/community-staging-i686/PKGBUILD (from rev 235999, 
haskell-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:32:36 UTC (rev 236000)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls
+pkgname=haskell-tls
+pkgver=1.3.10
+pkgrel=13
+pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
+url="http://github.com/vincenthz/hs-tls;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-async" "haskell-cereal"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-memory" 
"haskell-mtl"
+ "haskell-network" "haskell-x509" "haskell-x509-store" 
"haskell-x509-validation")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('9f057d0f40dda5ce8d0f0e0f2a06087be8007c41462c6cab19774538c35e0171')
+
+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-hans -fnetwork -fcompat
+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-tls/repos/community-staging-x86_64/PKGBUILD (from rev 235999, 
haskell-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:32:36 UTC (rev 236000)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls
+pkgname=haskell-tls
+pkgver=1.3.10
+pkgrel=13
+pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
+url="http://github.com/vincenthz/hs-tls;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-async" "haskell-cereal"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-memory" 
"haskell-mtl"
+ "haskell-network" "haskell-x509" "haskell-x509-store" 
"haskell-x509-validation")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('9f057d0f40dda5ce8d0f0e0f2a06087be8007c41462c6cab19774538c35e0171')
+
+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-hans -fnetwork -fcompat
+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"
+

[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:31:53
  Author: felixonmars
Revision: 235998

addpkg: certbot-dns-dnsimple 0.15.0-1

Added:
  certbot-dns-dnsimple/
  certbot-dns-dnsimple/repos/
  certbot-dns-dnsimple/trunk/
  certbot-dns-dnsimple/trunk/PKGBUILD

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

Added: certbot-dns-dnsimple/trunk/PKGBUILD
===
--- certbot-dns-dnsimple/trunk/PKGBUILD (rev 0)
+++ certbot-dns-dnsimple/trunk/PKGBUILD 2017-06-10 16:31:53 UTC (rev 235998)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-dnsimple
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="DNSimple DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" 'dns-lexicon' "python-acme=$pkgver" 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('65d4a0bfa19b4bc0acdc14080b1aa2fee285daae1bd8122360aa92a3016f411a0f18a3c1f39be8cffac6a3a332696ebee7c77a245a6662506a8aff46b013ebea'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:29:59
  Author: felixonmars
Revision: 235997

archrelease: copy trunk to community-any

Added:
  certbot-dns-google/repos/community-any/
  certbot-dns-google/repos/community-any/PKGBUILD
(from rev 235996, certbot-dns-google/trunk/PKGBUILD)

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

Copied: certbot-dns-google/repos/community-any/PKGBUILD (from rev 235996, 
certbot-dns-google/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-10 16:29:59 UTC (rev 235997)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-google
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="Google Cloud DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-mock' 
'python-google-api-python-client'
+ 'python-oauth2client' 'python-setuptools' 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('e4848d2a667fe9706acd341856426adf9e91c215b8aafa1f75b35df21b649f992d89faf54817edb93e9542a54584239e0c9ea2900591d66920f67c328e0dece8'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:29:43
  Author: felixonmars
Revision: 235996

addpkg: certbot-dns-google 0.15.0-1

Added:
  certbot-dns-google/
  certbot-dns-google/repos/
  certbot-dns-google/trunk/
  certbot-dns-google/trunk/PKGBUILD

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

Added: certbot-dns-google/trunk/PKGBUILD
===
--- certbot-dns-google/trunk/PKGBUILD   (rev 0)
+++ certbot-dns-google/trunk/PKGBUILD   2017-06-10 16:29:43 UTC (rev 235996)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-google
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="Google Cloud DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" "python-acme=$pkgver" 'python-mock' 
'python-google-api-python-client'
+ 'python-oauth2client' 'python-setuptools' 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('e4848d2a667fe9706acd341856426adf9e91c215b8aafa1f75b35df21b649f992d89faf54817edb93e9542a54584239e0c9ea2900591d66920f67c328e0dece8'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:27:56
  Author: felixonmars
Revision: 235994

upgpkg: haskell-x509-validation 1.6.5-18

rebuild with memory,0.14.6

Modified:
  haskell-x509-validation/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:26:48 UTC (rev 235993)
+++ PKGBUILD2017-06-10 16:27:56 UTC (rev 235994)
@@ -5,7 +5,7 @@
 _hkgname=x509-validation
 pkgname=haskell-x509-validation
 pkgver=1.6.5
-pkgrel=17
+pkgrel=18
 pkgdesc="X.509 Certificate and CRL validation"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:28:18
  Author: felixonmars
Revision: 235995

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

Added:
  haskell-x509-validation/repos/community-staging-i686/
  haskell-x509-validation/repos/community-staging-i686/PKGBUILD
(from rev 235994, haskell-x509-validation/trunk/PKGBUILD)
  haskell-x509-validation/repos/community-staging-x86_64/
  haskell-x509-validation/repos/community-staging-x86_64/PKGBUILD
(from rev 235994, haskell-x509-validation/trunk/PKGBUILD)

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

Copied: haskell-x509-validation/repos/community-staging-i686/PKGBUILD (from rev 
235994, haskell-x509-validation/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:28:18 UTC (rev 235995)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-validation
+pkgname=haskell-x509-validation
+pkgver=1.6.5
+pkgrel=18
+pkgdesc="X.509 Certificate and CRL validation"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-byteable"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-hourglass"
+ "haskell-memory" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d1f73197677b6d19795fc80e4a1fa93e810d567ee4e3edc74e841b3eb20e1ca4')
+
+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-x509-validation/repos/community-staging-x86_64/PKGBUILD (from 
rev 235994, haskell-x509-validation/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:28:18 UTC (rev 235995)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-validation
+pkgname=haskell-x509-validation
+pkgver=1.6.5
+pkgrel=18
+pkgdesc="X.509 Certificate and CRL validation"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-byteable"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-hourglass"
+ "haskell-memory" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d1f73197677b6d19795fc80e4a1fa93e810d567ee4e3edc74e841b3eb20e1ca4')
+
+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"
+

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:26:48
  Author: felixonmars
Revision: 235993

archrelease: copy trunk to community-any

Added:
  certbot-dns-cloudxns/repos/community-any/
  certbot-dns-cloudxns/repos/community-any/PKGBUILD
(from rev 235992, certbot-dns-cloudxns/trunk/PKGBUILD)

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

Copied: certbot-dns-cloudxns/repos/community-any/PKGBUILD (from rev 235992, 
certbot-dns-cloudxns/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-10 16:26:48 UTC (rev 235993)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-cloudxns
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="CloudXNS DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" 'dns-lexicon' "python-acme=$pkgver" 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('c7995d5a575c043c8f538e28386c94eec2f023e4564dd9c3d8977314757cc475d977450f9205138b009aeb51fd153e894ba5657a2da1b1cc31c9f255f153b183'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:26:32
  Author: felixonmars
Revision: 235992

addpkg: certbot-dns-cloudxns 0.15.0-1

Added:
  certbot-dns-cloudxns/
  certbot-dns-cloudxns/repos/
  certbot-dns-cloudxns/trunk/
  certbot-dns-cloudxns/trunk/PKGBUILD

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

Added: certbot-dns-cloudxns/trunk/PKGBUILD
===
--- certbot-dns-cloudxns/trunk/PKGBUILD (rev 0)
+++ certbot-dns-cloudxns/trunk/PKGBUILD 2017-06-10 16:26:32 UTC (rev 235992)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-cloudxns
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="CloudXNS DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" 'dns-lexicon' "python-acme=$pkgver" 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('c7995d5a575c043c8f538e28386c94eec2f023e4564dd9c3d8977314757cc475d977450f9205138b009aeb51fd153e894ba5657a2da1b1cc31c9f255f153b183'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:26:16
  Author: felixonmars
Revision: 235991

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

Added:
  haskell-x509-system/repos/community-staging-i686/
  haskell-x509-system/repos/community-staging-i686/PKGBUILD
(from rev 235990, haskell-x509-system/trunk/PKGBUILD)
  haskell-x509-system/repos/community-staging-x86_64/
  haskell-x509-system/repos/community-staging-x86_64/PKGBUILD
(from rev 235990, haskell-x509-system/trunk/PKGBUILD)

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

Copied: haskell-x509-system/repos/community-staging-i686/PKGBUILD (from rev 
235990, haskell-x509-system/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:26:16 UTC (rev 235991)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-system
+pkgname=haskell-x509-system
+pkgver=1.6.4
+pkgrel=18
+pkgdesc="Handle per-operating-system X.509 accessors and storage"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d98ef028855ad73a872ed86026f205aba383378bf1e63462c5d3e4733b60ff4c')
+
+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-x509-system/repos/community-staging-x86_64/PKGBUILD (from rev 
235990, haskell-x509-system/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:26:16 UTC (rev 235991)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-system
+pkgname=haskell-x509-system
+pkgver=1.6.4
+pkgrel=18
+pkgdesc="Handle per-operating-system X.509 accessors and storage"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d98ef028855ad73a872ed86026f205aba383378bf1e63462c5d3e4733b60ff4c')
+
+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-x509-system/trunk (PKGBUILD)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:25:55
  Author: felixonmars
Revision: 235990

upgpkg: haskell-x509-system 1.6.4-18

rebuild with memory,0.14.6

Modified:
  haskell-x509-system/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:24:17 UTC (rev 235989)
+++ PKGBUILD2017-06-10 16:25:55 UTC (rev 235990)
@@ -5,7 +5,7 @@
 _hkgname=x509-system
 pkgname=haskell-x509-system
 pkgver=1.6.4
-pkgrel=17
+pkgrel=18
 pkgdesc="Handle per-operating-system X.509 accessors and storage"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:24:17
  Author: felixonmars
Revision: 235989

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

Added:
  haskell-x509-store/repos/community-staging-i686/
  haskell-x509-store/repos/community-staging-i686/PKGBUILD
(from rev 235988, haskell-x509-store/trunk/PKGBUILD)
  haskell-x509-store/repos/community-staging-x86_64/
  haskell-x509-store/repos/community-staging-x86_64/PKGBUILD
(from rev 235988, haskell-x509-store/trunk/PKGBUILD)

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

Copied: haskell-x509-store/repos/community-staging-i686/PKGBUILD (from rev 
235988, haskell-x509-store/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:24:17 UTC (rev 235989)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-store
+pkgname=haskell-x509-store
+pkgver=1.6.2
+pkgrel=18
+pkgdesc="X.509 collection accessing and storing methods"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" "haskell-mtl"
+ "haskell-cryptonite" "haskell-pem" "haskell-x509")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49fd261c7e55a45fd357931a6d9f81e22f242e6047304d3e2662e43db94d807b')
+
+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-x509-store/repos/community-staging-x86_64/PKGBUILD (from rev 
235988, haskell-x509-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:24:17 UTC (rev 235989)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-store
+pkgname=haskell-x509-store
+pkgver=1.6.2
+pkgrel=18
+pkgdesc="X.509 collection accessing and storing methods"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" "haskell-mtl"
+ "haskell-cryptonite" "haskell-pem" "haskell-x509")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49fd261c7e55a45fd357931a6d9f81e22f242e6047304d3e2662e43db94d807b')
+
+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 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:23:55
  Author: felixonmars
Revision: 235988

upgpkg: haskell-x509-store 1.6.2-18

rebuild with memory,0.14.6

Modified:
  haskell-x509-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:23:47 UTC (rev 235987)
+++ PKGBUILD2017-06-10 16:23:55 UTC (rev 235988)
@@ -5,7 +5,7 @@
 _hkgname=x509-store
 pkgname=haskell-x509-store
 pkgver=1.6.2
-pkgrel=17
+pkgrel=18
 pkgdesc="X.509 collection accessing and storing methods"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:23:47
  Author: felixonmars
Revision: 235987

archrelease: copy trunk to community-any

Added:
  certbot-dns-nsone/repos/community-any/
  certbot-dns-nsone/repos/community-any/PKGBUILD
(from rev 235986, certbot-dns-nsone/trunk/PKGBUILD)

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

Copied: certbot-dns-nsone/repos/community-any/PKGBUILD (from rev 235986, 
certbot-dns-nsone/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-10 16:23:47 UTC (rev 235987)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-nsone
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="NS1 DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" 'dns-lexicon' "python-acme=$pkgver" 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('cf5eb694dd38c57bdb067f427c77c2fdd0df4f602b664b7342b20841728bf570882c4375733e27bfb3ab351a0521095dd1011fb00e329effa3ca11b32c0a5f3f'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:23:30
  Author: felixonmars
Revision: 235986

addpkg: certbot-dns-nsone 0.15.0-1

Added:
  certbot-dns-nsone/
  certbot-dns-nsone/repos/
  certbot-dns-nsone/trunk/
  certbot-dns-nsone/trunk/PKGBUILD

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

Added: certbot-dns-nsone/trunk/PKGBUILD
===
--- certbot-dns-nsone/trunk/PKGBUILD(rev 0)
+++ certbot-dns-nsone/trunk/PKGBUILD2017-06-10 16:23:30 UTC (rev 235986)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=certbot-dns-nsone
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="NS1 DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=("certbot=$pkgver" 'dns-lexicon' "python-acme=$pkgver" 'python-mock' 
'python-setuptools'
+ 'python-zope-interface')
+source=("https://pypi.io/packages/source/c/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2')
+sha512sums=('cf5eb694dd38c57bdb067f427c77c2fdd0df4f602b664b7342b20841728bf570882c4375733e27bfb3ab351a0521095dd1011fb00e329effa3ca11b32c0a5f3f'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}


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


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:22:14
  Author: felixonmars
Revision: 235985

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

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

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

Copied: haskell-x509/repos/community-staging-i686/PKGBUILD (from rev 235984, 
haskell-x509/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:22:14 UTC (rev 235985)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509
+pkgname=haskell-x509
+pkgver=1.6.5
+pkgrel=17
+pkgdesc="X509 reader and writer"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-parse" 
"haskell-asn1-types"
+ "haskell-cryptonite" "haskell-hourglass" "haskell-memory" 
"haskell-mtl" "haskell-pem")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b53894214e23ab2795f2a9f4c885e37b35a223bbc03763b0017ce06dc8394783')
+
+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-x509/repos/community-staging-x86_64/PKGBUILD (from rev 235984, 
haskell-x509/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:22:14 UTC (rev 235985)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509
+pkgname=haskell-x509
+pkgver=1.6.5
+pkgrel=17
+pkgdesc="X509 reader and writer"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-parse" 
"haskell-asn1-types"
+ "haskell-cryptonite" "haskell-hourglass" "haskell-memory" 
"haskell-mtl" "haskell-pem")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b53894214e23ab2795f2a9f4c885e37b35a223bbc03763b0017ce06dc8394783')
+
+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 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:21:52
  Author: felixonmars
Revision: 235984

upgpkg: haskell-x509 1.6.5-17

rebuild with memory,0.14.6

Modified:
  haskell-x509/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:20:04 UTC (rev 235983)
+++ PKGBUILD2017-06-10 16:21:52 UTC (rev 235984)
@@ -5,7 +5,7 @@
 _hkgname=x509
 pkgname=haskell-x509
 pkgver=1.6.5
-pkgrel=16
+pkgrel=17
 pkgdesc="X509 reader and writer"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:20:04
  Author: felixonmars
Revision: 235983

archrelease: copy trunk to community-any

Added:
  dns-lexicon/repos/community-any/
  dns-lexicon/repos/community-any/PKGBUILD
(from rev 235982, dns-lexicon/trunk/PKGBUILD)

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

Copied: dns-lexicon/repos/community-any/PKGBUILD (from rev 235982, 
dns-lexicon/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-10 16:20:04 UTC (rev 235983)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=dns-lexicon
+pkgver=2.1.5
+pkgrel=1
+pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
+arch=('any')
+url="https://github.com/AnalogJ/lexicon;
+license=('MIT')
+depends=('python-future' 'python-requests' 'python-setuptools' 
'python-tldextract')
+checkdepends=('python-pytest-runner' 'python-vcrpy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
+sha512sums=('7fe15177b670a07d8578f01a3c4c31f192dac6cc912b6e2e522a5a8f128f509eb87ee8317d833f2507f92a3f781dcee2b23f2d2d5da23a305d94cf7d1362870f')
+
+build() {
+  cd lexicon-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd lexicon-$pkgver
+  python setup.py pytest --addopts '--ignore tests/providers/test_route53.py 
--ignore tests/providers/test_transip.py'
+}
+
+package() {
+  cd lexicon-$pkgver
+  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:19:38
  Author: felixonmars
Revision: 235982

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 235981, haskell-yesod-static/trunk/PKGBUILD)
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 235981, 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 
235981, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:19:38 UTC (rev 235982)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.3
+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;)
+sha512sums=('50f8115e0f0a4495e27ea13aa8cbf4ec6bc596f6a758338ae0f4b4aaf9a5161dbca77ba1770467e830c0ef8984a5375d0c53b282ce5572d731c3887050472a8a')
+
+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 
235981, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:19:38 UTC (rev 235982)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.3
+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;)

[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:18:48
  Author: felixonmars
Revision: 235980

addpkg: dns-lexicon 2.1.5-1

Added:
  dns-lexicon/
  dns-lexicon/repos/
  dns-lexicon/trunk/
  dns-lexicon/trunk/PKGBUILD

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

Added: dns-lexicon/trunk/PKGBUILD
===
--- dns-lexicon/trunk/PKGBUILD  (rev 0)
+++ dns-lexicon/trunk/PKGBUILD  2017-06-10 16:18:48 UTC (rev 235980)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=dns-lexicon
+pkgver=2.1.5
+pkgrel=1
+pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
+arch=('any')
+url="https://github.com/AnalogJ/lexicon;
+license=('MIT')
+depends=('python-future' 'python-requests' 'python-setuptools' 
'python-tldextract')
+checkdepends=('python-pytest-runner' 'python-vcrpy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
+sha512sums=('7fe15177b670a07d8578f01a3c4c31f192dac6cc912b6e2e522a5a8f128f509eb87ee8317d833f2507f92a3f781dcee2b23f2d2d5da23a305d94cf7d1362870f')
+
+build() {
+  cd lexicon-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd lexicon-$pkgver
+  python setup.py pytest --addopts '--ignore tests/providers/test_route53.py 
--ignore tests/providers/test_transip.py'
+}
+
+package() {
+  cd lexicon-$pkgver
+  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:19:13
  Author: felixonmars
Revision: 235981

upgpkg: haskell-yesod-static 1.5.3-4

rebuild with memory,0.14.6

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:18:48 UTC (rev 235980)
+++ PKGBUILD2017-06-10 16:19:13 UTC (rev 235981)
@@ -5,7 +5,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.5.3
-pkgrel=3
+pkgrel=4
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:15:42
  Author: felixonmars
Revision: 235979

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

Added:
  haskell-wai-app-static/repos/community-staging-i686/
  haskell-wai-app-static/repos/community-staging-i686/PKGBUILD
(from rev 235978, haskell-wai-app-static/trunk/PKGBUILD)
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 235978, haskell-wai-app-static/trunk/PKGBUILD)

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

Copied: haskell-wai-app-static/repos/community-staging-i686/PKGBUILD (from rev 
235978, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:15:42 UTC (rev 235979)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.1
+pkgrel=70
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-blaze-html" 
"haskell-blaze-markup" 
+ "haskell-cryptonite" "haskell-file-embed" "haskell-http-date" 
"haskell-http-types"
+ "haskell-memory" "haskell-mime-types" "haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-text" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-warp"
+ "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b318acf31e2e809411f119744a016ba0a78f52554ac7321a3a1410a218886668')
+
+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-print
+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-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 235978, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:15:42 UTC (rev 235979)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.1
+pkgrel=70
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-blaze-html" 
"haskell-blaze-markup" 
+ "haskell-cryptonite" "haskell-file-embed" "haskell-http-date" 
"haskell-http-types"
+ "haskell-memory" "haskell-mime-types" "haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-text" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-warp"
+ "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b318acf31e2e809411f119744a016ba0a78f52554ac7321a3a1410a218886668')
+
+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-print
+runhaskell Setup build
+runhaskell 

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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:15:20
  Author: felixonmars
Revision: 235978

upgpkg: haskell-wai-app-static 3.1.6.1-70

rebuild with memory,0.14.6

Modified:
  haskell-wai-app-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-10 16:14:17 UTC (rev 235977)
+++ PKGBUILD2017-06-10 16:15:20 UTC (rev 235978)
@@ -5,7 +5,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.6.1
-pkgrel=69
+pkgrel=70
 pkgdesc="WAI application for static serving"
 url="http://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:14:17
  Author: felixonmars
Revision: 235977

archrelease: copy trunk to community-any

Added:
  python-vcrpy/repos/community-any/
  python-vcrpy/repos/community-any/PKGBUILD
(from rev 235976, python-vcrpy/trunk/PKGBUILD)

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

Copied: python-vcrpy/repos/community-any/PKGBUILD (from rev 235976, 
python-vcrpy/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-06-10 16:14:17 UTC (rev 235977)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-vcrpy
+pkgname=('python-vcrpy' 'python2-vcrpy')
+pkgver=1.11.1
+pkgrel=1
+pkgdesc='Automatically mock your HTTP interactions to simplify and speed up 
testing'
+arch=('any')
+license=('MIT')
+url='https://github.com/kevin1024/vcrpy'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-yaml' 
'python2-yaml' 'python-wrapt'
+ 'python2-wrapt' 'python-six' 'python2-six' 'python-yarl' 
'python2-contextlib2'
+ 'python2-mock')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-httpbin'
+  'python2-pytest-httpbin' 'python-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/kevin1024/vcrpy/archive/v$pkgver.tar.gz;)
+sha512sums=('1de6e38e00b164ad068df5b1787db5bdba17f368e3e3271eaecf835c1a28b0a1ce7de3ead00b1748aecd52800d340c3f6a3546063036d0c15406a09f34550f63')
+
+prepare() {
+  cp -a vcrpy-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/vcrpy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/vcrpy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/vcrpy-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/vcrpy-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-vcrpy() {
+  depends=('python-yaml' 'python-wrapt' 'python-six' 'python-yarl')
+
+  cd vcrpy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-vcrpy() {
+  depends=('python2-yaml' 'python2-wrapt' 'python2-six' 'python2-contextlib2' 
'python2-mock')
+
+  cd vcrpy-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:13:58
  Author: felixonmars
Revision: 235976

addpkg: python-vcrpy 1.11.1-1

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

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

Added: python-vcrpy/trunk/PKGBUILD
===
--- python-vcrpy/trunk/PKGBUILD (rev 0)
+++ python-vcrpy/trunk/PKGBUILD 2017-06-10 16:13:58 UTC (rev 235976)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-vcrpy
+pkgname=('python-vcrpy' 'python2-vcrpy')
+pkgver=1.11.1
+pkgrel=1
+pkgdesc='Automatically mock your HTTP interactions to simplify and speed up 
testing'
+arch=('any')
+license=('MIT')
+url='https://github.com/kevin1024/vcrpy'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-yaml' 
'python2-yaml' 'python-wrapt'
+ 'python2-wrapt' 'python-six' 'python2-six' 'python-yarl' 
'python2-contextlib2'
+ 'python2-mock')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-httpbin'
+  'python2-pytest-httpbin' 'python-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/kevin1024/vcrpy/archive/v$pkgver.tar.gz;)
+sha512sums=('1de6e38e00b164ad068df5b1787db5bdba17f368e3e3271eaecf835c1a28b0a1ce7de3ead00b1748aecd52800d340c3f6a3546063036d0c15406a09f34550f63')
+
+prepare() {
+  cp -a vcrpy-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/vcrpy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/vcrpy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/vcrpy-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/vcrpy-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-vcrpy() {
+  depends=('python-yaml' 'python-wrapt' 'python-six' 'python-yarl')
+
+  cd vcrpy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-vcrpy() {
+  depends=('python2-yaml' 'python2-wrapt' 'python2-six' 'python2-contextlib2' 
'python2-mock')
+
+  cd vcrpy-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-06-10 Thread Felix Yan
Date: Saturday, June 10, 2017 @ 16:12:02
  Author: felixonmars
Revision: 235975

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

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

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

Copied: haskell-hopenpgp/repos/community-staging-i686/PKGBUILD (from rev 
235974, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-10 16:12:02 UTC (rev 235975)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.5.5
+pkgrel=76
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-bifunctors' 'haskell-byteable' 
'haskell-bzlib'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-data-default-class' 
'haskell-errors'
+ 'haskell-hashable' 'haskell-incremental-parser' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-nettle' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-newtype' 'haskell-openpgp-asciiarmor' 
'haskell-resourcet'
+ 'haskell-securemem' 'haskell-semigroups' 'haskell-split' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-wl-pprint-extras'
+ 'haskell-zlib')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('f480201a10f14150adc290c81d38e7b6')
+
+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
+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-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
235974, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-10 16:12:02 UTC (rev 235975)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.5.5
+pkgrel=76
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-bifunctors' 'haskell-byteable' 
'haskell-bzlib'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-data-default-class' 
'haskell-errors'
+ 'haskell-hashable' 'haskell-incremental-parser' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-nettle' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-newtype' 'haskell-openpgp-asciiarmor' 
'haskell-resourcet'
+ 'haskell-securemem' 'haskell-semigroups' 'haskell-split' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 

  1   2   3   4   >