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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:41:23
  Author: felixonmars
Revision: 516299

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   83 
 stack.install |4 ++
 2 files changed, 87 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 516298, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:41:23 UTC (rev 516299)
@@ -0,0 +1,83 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.1.3
+pkgrel=47
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-colour'
+ 'haskell-conduit' 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit'
+ 'haskell-echo' 'haskell-exceptions' 'haskell-extra' 
'haskell-file-embed' 'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hi-file-parser' 'haskell-hpack' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 
'haskell-http-download'
+ 'haskell-http-types' 'haskell-memory' 'haskell-microlens' 
'haskell-mintty'
+ 'haskell-mono-traversable' 'haskell-mustache' 
'haskell-neat-interpolation'
+ 'haskell-network-uri' 'haskell-open-browser' 
'haskell-optparse-applicative'
+ 'haskell-optparse-generic' 'haskell-optparse-simple' 'haskell-pantry' 
'haskell-path'
+ 'haskell-path-io' 'haskell-persistent' 'haskell-persistent-sqlite'
+ 'haskell-persistent-template' 'haskell-primitive' 
'haskell-project-template'
+ 'haskell-regex-applicative-text' 'haskell-resource-pool' 
'haskell-resourcet'
+ 'haskell-retry' 'haskell-rio' 'haskell-rio-prettyprint' 
'haskell-split'
+ 'haskell-streaming-commons' 'haskell-tar' 'haskell-temporary' 
'haskell-terminal-size'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver";
+
https://github.com/commercialhaskell/stack/commit/62c24fa0552dc722260f1cee75325145e837ab6a.patch)
+sha512sums=('SKIP'
+
'99bb04cf6581a8d712413822f834856b036b37ab2ae41307e82a7064b12cdfa43c6ccc60adfa870057f9ba197e1ae4eda144a7088306630400c0798a2b60d9c6')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../62c24fa0552dc722260f1cee75325145e837ab6a.patch || :
+  hpack
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i '1i {-# LANGUAGE UndecidableInstances #-}' 
src/Stack/Storage/{User,Project}.hs
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHS

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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:41:11
  Author: felixonmars
Revision: 516298

upgpkg: stack 2.1.3-47

rebuild with http-conduit 2.3.7.2

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:35:55 UTC (rev 516297)
+++ PKGBUILD2019-10-16 06:41:11 UTC (rev 516298)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.1.3
-pkgrel=46
+pkgrel=47
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack";
 license=("BSD")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:38:13
  Author: felixonmars
Revision: 365064

archrelease: copy trunk to extra-any

Added:
  python-attrs/repos/extra-any/PKGBUILD
(from rev 365063, python-attrs/trunk/PKGBUILD)
Deleted:
  python-attrs/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 06:38:01 UTC (rev 365063)
+++ PKGBUILD2019-10-16 06:38:13 UTC (rev 365064)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-attrs
-pkgname=('python-attrs' 'python2-attrs')
-pkgver=19.2.0
-pkgrel=1
-pkgdesc="Attributes without boilerplate."
-arch=('any')
-license=('MIT')
-url="https://attrs.readthedocs.org/";
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-zope-interface'
-  'python2-zope-interface' 'python-hypothesis' 
'python2-hypothesis')
-source=("https://pypi.io/packages/source/a/attrs/attrs-$pkgver.tar.gz";)
-sha512sums=('c6239f5553d99f324a36193d9f6e684fdce26efcf4da866d1b995cd644909ec4b58ac6ef6c20a0fda4b8a16d00ec0aacfd3970a52b68997fd10804d5286b41c6')
-
-prepare() {
-  cp -a attrs-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/attrs-$pkgver
-  python setup.py build
- 
-  cd "$srcdir"/attrs-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/attrs-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/attrs-$pkgver-py2
-  python2 setup.py pytest
-}
- 
-package_python-attrs() {
-  depends=('python')
- 
-  cd attrs-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
- 
-package_python2-attrs() {
-  depends=('python2')
- 
-  cd attrs-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-attrs/repos/extra-any/PKGBUILD (from rev 365063, 
python-attrs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-16 06:38:13 UTC (rev 365064)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-attrs
+pkgname=('python-attrs' 'python2-attrs')
+pkgver=19.3.0
+pkgrel=1
+pkgdesc="Attributes without boilerplate."
+arch=('any')
+license=('MIT')
+url="https://attrs.readthedocs.org/";
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-zope-interface'
+  'python2-zope-interface' 'python-hypothesis' 
'python2-hypothesis')
+source=("https://pypi.io/packages/source/a/attrs/attrs-$pkgver.tar.gz";)
+sha512sums=('b5b641e6732156d1454ed6c49e3a6b29200a8d3f1515fb59aeb85fcb5e9ab6a1d760904de45083cae5250e7bf1a7aa2c1f3ede217240a63f989ae4bb484f2511')
+
+prepare() {
+  cp -a attrs-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/attrs-$pkgver
+  python setup.py build
+ 
+  cd "$srcdir"/attrs-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/attrs-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/attrs-$pkgver-py2
+  python2 setup.py pytest
+}
+ 
+package_python-attrs() {
+  depends=('python')
+ 
+  cd attrs-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+ 
+package_python2-attrs() {
+  depends=('python2')
+ 
+  cd attrs-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:38:01
  Author: felixonmars
Revision: 365063

upgpkg: python-attrs 19.3.0-1

Modified:
  python-attrs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 23:59:29 UTC (rev 365062)
+++ PKGBUILD2019-10-16 06:38:01 UTC (rev 365063)
@@ -2,7 +2,7 @@
 
 pkgbase=python-attrs
 pkgname=('python-attrs' 'python2-attrs')
-pkgver=19.2.0
+pkgver=19.3.0
 pkgrel=1
 pkgdesc="Attributes without boilerplate."
 arch=('any')
@@ -12,7 +12,7 @@
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-zope-interface'
   'python2-zope-interface' 'python-hypothesis' 
'python2-hypothesis')
 source=("https://pypi.io/packages/source/a/attrs/attrs-$pkgver.tar.gz";)
-sha512sums=('c6239f5553d99f324a36193d9f6e684fdce26efcf4da866d1b995cd644909ec4b58ac6ef6c20a0fda4b8a16d00ec0aacfd3970a52b68997fd10804d5286b41c6')
+sha512sums=('b5b641e6732156d1454ed6c49e3a6b29200a8d3f1515fb59aeb85fcb5e9ab6a1d760904de45083cae5250e7bf1a7aa2c1f3ede217240a63f989ae4bb484f2511')
 
 prepare() {
   cp -a attrs-$pkgver{,-py2}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:35:45
  Author: felixonmars
Revision: 516296

upgpkg: hoogle 5.0.17.11-8

rebuild with http-conduit 2.3.7.2

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:34:08 UTC (rev 516295)
+++ PKGBUILD2019-10-16 06:35:45 UTC (rev 516296)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.11
-pkgrel=7
+pkgrel=8
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/";
 license=("BSD")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:35:55
  Author: felixonmars
Revision: 516297

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 516296, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:35:55 UTC (rev 516297)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.11
+pkgrel=8
+pkgdesc="Haskell API Search"
+url="https://www.haskell.org/hoogle/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('1bbb076b31a3289d0578741044d2747fca1b530b3f828922375379b4618de42cf4b0708eb022db841bbf91528da11183465895a2ac0378da2f7a8c3512a95b8d')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:34:08
  Author: felixonmars
Revision: 516295

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 516294, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 516294, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:34:08 UTC (rev 516295)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.15
+pkgrel=14
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-data-default' 
'haskell-decimal'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('1743835e21cf7b6c38ef31e293e0db80d1bf87dd064f382678547d2430b04f95c6d2dcf6d5175179e43f151581b239dead2400b208bd1cdda3bafbf2ca30')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:33:57
  Author: felixonmars
Revision: 516294

upgpkg: hledger-web 1.15-14

rebuild with http-conduit 2.3.7.2

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:32:26 UTC (rev 516293)
+++ PKGBUILD2019-10-16 06:33:57 UTC (rev 516294)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.15
-pkgrel=13
+pkgrel=14
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:32:16
  Author: felixonmars
Revision: 516292

upgpkg: haskell-yesod-auth 1.6.8-20

rebuild with http-conduit 2.3.7.2

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:31:04 UTC (rev 516291)
+++ PKGBUILD2019-10-16 06:32:16 UTC (rev 516292)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.8
-pkgrel=19
+pkgrel=20
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:32:26
  Author: felixonmars
Revision: 516293

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
516292, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:32:26 UTC (rev 516293)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.8
+pkgrel=20
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('d237b669f4fbd2838d50427d210c548c37d9866fc5790127563ab826a646b690d3e2ed3b0ca2db22c2c195aa7cc4d73e8f3bc4a385382b464d4d65724747b34b')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:31:04
  Author: felixonmars
Revision: 516291

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-pantry/repos/community-staging-x86_64/
  haskell-pantry/repos/community-staging-x86_64/PKGBUILD
(from rev 516290, haskell-pantry/trunk/PKGBUILD)

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

Copied: haskell-pantry/repos/community-staging-x86_64/PKGBUILD (from rev 
516290, haskell-pantry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:31:04 UTC (rev 516291)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+
+_hkgname=pantry
+pkgname=haskell-pantry
+pkgver=0.1.1.1
+pkgrel=40
+pkgdesc="Content addressable Haskell package management"
+url="https://github.com/commercialhaskell/pantry";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-base-orphans'
+ 'haskell-base64-bytestring' 'haskell-conduit' 'haskell-conduit-extra'
+ 'haskell-contravariant' 'haskell-cryptonite' 
'haskell-cryptonite-conduit'
+ 'haskell-digest' 'haskell-filelock' 'haskell-generic-deriving' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mono-traversable' 'haskell-network' 'haskell-network-uri' 
'haskell-path'
+ 'haskell-path-io' 'haskell-persistent' 'haskell-persistent-sqlite'
+ 'haskell-persistent-template' 'haskell-primitive' 'haskell-resourcet' 
'haskell-rio'
+ 'haskell-rio-orphans' 'haskell-rio-prettyprint' 'haskell-safe' 
'haskell-syb'
+ 'haskell-tar-conduit' 'haskell-text-metrics' 'haskell-th-lift' 
'haskell-th-lift-instances'
+ 'haskell-th-orphans' 'haskell-th-reify-many' 'haskell-th-utilities' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-hedgehog' 'haskell-hspec' 'haskell-quickcheck' 
'haskell-raw-strings-qq')
+checkdepends=('git' 'mercurial')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('aee544d5c18f7f1d8614470d236fb8e0f3d9260991b8ee895a5c7c863dd3023677260330fd34d9d30789780efb84f3faa49823827fe7aae69165eb9468b13a62')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:30:54
  Author: felixonmars
Revision: 516290

upgpkg: haskell-pantry 0.1.1.1-40

rebuild with http-conduit 2.3.7.2

Modified:
  haskell-pantry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:27:11 UTC (rev 516289)
+++ PKGBUILD2019-10-16 06:30:54 UTC (rev 516290)
@@ -3,7 +3,7 @@
 _hkgname=pantry
 pkgname=haskell-pantry
 pkgver=0.1.1.1
-pkgrel=39
+pkgrel=40
 pkgdesc="Content addressable Haskell package management"
 url="https://github.com/commercialhaskell/pantry";
 license=('BSD')


[arch-commits] Commit in haskell-http-download/repos (2 files)

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:27:11
  Author: felixonmars
Revision: 516289

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-download/repos/community-staging-x86_64/
  haskell-http-download/repos/community-staging-x86_64/PKGBUILD
(from rev 516288, haskell-http-download/trunk/PKGBUILD)

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

Copied: haskell-http-download/repos/community-staging-x86_64/PKGBUILD (from rev 
516288, haskell-http-download/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:27:11 UTC (rev 516289)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=http-download
+pkgname=haskell-http-download
+pkgver=0.1.0.0
+pkgrel=29
+pkgdesc="Verified downloads with retries"
+url="https://github.com/commercialhaskell/stack";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base64-bytestring' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-exceptions'
+ 'haskell-http-client' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-path' 'haskell-path-io' 'haskell-retry' 'haskell-rio' 
'haskell-rio-prettyprint')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hspec-discover')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0d8c768ac87c9c2fdfe7503e88bbc6135e6edd0938790b46849346f86c62f5416abd18dcb14349c2624a956990cac8b66e93c3ef5043ffc60e1df7f6dab950e6')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:27:01
  Author: felixonmars
Revision: 516288

upgpkg: haskell-http-download 0.1.0.0-29

rebuild with http-conduit 2.3.7.2

Modified:
  haskell-http-download/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:26:10 UTC (rev 516287)
+++ PKGBUILD2019-10-16 06:27:01 UTC (rev 516288)
@@ -3,7 +3,7 @@
 _hkgname=http-download
 pkgname=haskell-http-download
 pkgver=0.1.0.0
-pkgrel=28
+pkgrel=29
 pkgdesc="Verified downloads with retries"
 url="https://github.com/commercialhaskell/stack";
 license=('MIT')


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:26:10
  Author: felixonmars
Revision: 516287

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
516286, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:26:10 UTC (rev 516287)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.2
+pkgrel=103
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('715324fa19b85e8f39e33b4d5082a04f40fc667737b41117da68a6a0eedad288a551929fa2eea636dd421d4d416996125ff9d83752c7daaf64ecc191e9790469')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *2.13/<3/' -e 's/< *3.3/<4/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682";
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:26:00
  Author: felixonmars
Revision: 516286

upgpkg: haskell-hakyll 4.12.5.2-103

rebuild with http-conduit 2.3.7.2

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:23:57 UTC (rev 516285)
+++ PKGBUILD2019-10-16 06:26:00 UTC (rev 516286)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.2
-pkgrel=102
+pkgrel=103
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll";
 license=("BSD")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:23:57
  Author: felixonmars
Revision: 516285

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 516284, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:23:57 UTC (rev 516285)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20190912
+pkgrel=15
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/";
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'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-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver";)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+
+  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup -j1
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:23:46
  Author: felixonmars
Revision: 516284

upgpkg: git-annex 7.20190912-15

rebuild with http-conduit 2.3.7.2

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:19:37 UTC (rev 516283)
+++ PKGBUILD2019-10-16 06:23:46 UTC (rev 516284)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20190912
-pkgrel=14
+pkgrel=15
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/";
 license=("AGPL3")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:19:26
  Author: felixonmars
Revision: 516282

upgpkg: glider 0.8.3-1

Modified:
  glider/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:19:20 UTC (rev 516281)
+++ PKGBUILD2019-10-16 06:19:26 UTC (rev 516282)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=glider
-pkgver=0.8.2
+pkgver=0.8.3
 pkgrel=1
 pkgdesc="A forward proxy with multiple protocols support"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('glibc')
 makedepends=('go-pie' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz";)
-sha512sums=('846c61eb55e0a0d726fcd718b6fefe33c977b53c98d710ac39e5a338455058053526452951f61ce4b5478371ad5bc7b973dbb21c306f1312ebb34ef7c6ae4113')
+sha512sums=('f0d9e0eb710bd550c5b03141c1338ae8d9d63a011233ede075a64a1ace642e4197e95200b709ded195c8334d483b9557f1aa2f38609b1765bcab9f1eff24')
 
 prepare() {
   mkdir .gopath
@@ -18,8 +18,6 @@
   mkdir -p "$GOPATH"/src/github.com/nadoo
   ln -sf "$srcdir"/glider-$pkgver "$GOPATH"/src/github.com/nadoo/glider
 
-  echo 'replace gitlab.com/yawning/chacha20.git => github.com/Yawning/chacha20 
latest' >> "$srcdir"/glider-$pkgver/go.mod
-
   go get github.com/nadoo/conflag github.com/nadoo/go-shadowsocks2
 }
 


[arch-commits] Commit in glider/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:19:37
  Author: felixonmars
Revision: 516283

archrelease: copy trunk to community-x86_64

Added:
  glider/repos/community-x86_64/PKGBUILD
(from rev 516282, glider/trunk/PKGBUILD)
Deleted:
  glider/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 06:19:26 UTC (rev 516282)
+++ PKGBUILD2019-10-16 06:19:37 UTC (rev 516283)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=glider
-pkgver=0.8.2
-pkgrel=1
-pkgdesc="A forward proxy with multiple protocols support"
-arch=('x86_64')
-url="https://github.com/nadoo/glider";
-license=('GPL')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz";)
-sha512sums=('846c61eb55e0a0d726fcd718b6fefe33c977b53c98d710ac39e5a338455058053526452951f61ce4b5478371ad5bc7b973dbb21c306f1312ebb34ef7c6ae4113')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir"/.gopath
-  mkdir -p "$GOPATH"/src/github.com/nadoo
-  ln -sf "$srcdir"/glider-$pkgver "$GOPATH"/src/github.com/nadoo/glider
-
-  echo 'replace gitlab.com/yawning/chacha20.git => github.com/Yawning/chacha20 
latest' >> "$srcdir"/glider-$pkgver/go.mod
-
-  go get github.com/nadoo/conflag github.com/nadoo/go-shadowsocks2
-}
-
-build() {
-  cd glider-$pkgver
-  go build \
--gcflags "all=-trimpath=${PWD}" \
--asmflags "all=-trimpath=${PWD}" \
--ldflags "-extldflags ${LDFLAGS}"
-
-}
-
-package() {
-  cd glider-$pkgver
-  install -Dm755 glider "$pkgdir"/usr/bin/glider
-  install -Dm644 config/glider.conf.example 
"$pkgdir"/etc/glider/glider.conf.example
-  install -Dm644 systemd/glider@.service 
"$pkgdir"/usr/lib/systemd/system/glider@.service
-}

Copied: glider/repos/community-x86_64/PKGBUILD (from rev 516282, 
glider/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-16 06:19:37 UTC (rev 516283)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+pkgname=glider
+pkgver=0.8.3
+pkgrel=1
+pkgdesc="A forward proxy with multiple protocols support"
+arch=('x86_64')
+url="https://github.com/nadoo/glider";
+license=('GPL')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz";)
+sha512sums=('f0d9e0eb710bd550c5b03141c1338ae8d9d63a011233ede075a64a1ace642e4197e95200b709ded195c8334d483b9557f1aa2f38609b1765bcab9f1eff24')
+
+prepare() {
+  mkdir .gopath
+  export GOPATH="$srcdir"/.gopath
+  mkdir -p "$GOPATH"/src/github.com/nadoo
+  ln -sf "$srcdir"/glider-$pkgver "$GOPATH"/src/github.com/nadoo/glider
+
+  go get github.com/nadoo/conflag github.com/nadoo/go-shadowsocks2
+}
+
+build() {
+  cd glider-$pkgver
+  go build \
+-gcflags "all=-trimpath=${PWD}" \
+-asmflags "all=-trimpath=${PWD}" \
+-ldflags "-extldflags ${LDFLAGS}"
+
+}
+
+package() {
+  cd glider-$pkgver
+  install -Dm755 glider "$pkgdir"/usr/bin/glider
+  install -Dm644 config/glider.conf.example 
"$pkgdir"/etc/glider/glider.conf.example
+  install -Dm644 systemd/glider@.service 
"$pkgdir"/usr/lib/systemd/system/glider@.service
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:19:20
  Author: felixonmars
Revision: 516281

archrelease: copy trunk to community-any

Added:
  pm2/repos/community-any/PKGBUILD
(from rev 516280, pm2/trunk/PKGBUILD)
  pm2/repos/community-any/pm2.install
(from rev 516280, pm2/trunk/pm2.install)
  pm2/repos/community-any/pm2.service
(from rev 516280, pm2/trunk/pm2.service)
Deleted:
  pm2/repos/community-any/PKGBUILD
  pm2/repos/community-any/pm2.install
  pm2/repos/community-any/pm2.service

-+
 PKGBUILD|   67 +++---
 pm2.install |   20 -
 pm2.service |   32 +--
 3 files changed, 62 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 06:19:02 UTC (rev 516280)
+++ PKGBUILD2019-10-16 06:19:20 UTC (rev 516281)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=pm2
-pkgver=3.5.1
-pkgrel=1
-pkgdesc='Production process manager for Node.JS applications with a built-in 
load balancer'
-arch=('any')
-url='http://pm2.keymetrics.io'
-license=('AGPL3')
-depends=('nodejs' 'semver')
-makedepends=('npm' 'git')
-install=pm2.install
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
-pm2.service)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('a433c17ad6c8e3c243ca7c66b523cd48a44393f2d16e1b07ac9fd64822950f54d43676fa5cd31ee86cceec308d8a3241bdd690faed56c4db9dc6a13195776113'
-
'0d80c16d4694511cc19970a3eb4a2e10f706a58c5cdc554809e12a12093a5b29ff6d30027cbe8646f837a42e40f7d9b7fe2853f96a76a38f47ddc14833f141ef')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  install -Dm644 pm2.service "$pkgdir"/usr/lib/systemd/system/pm2.service
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in semver; do
-rm -r $dep;
-  done
-}

Copied: pm2/repos/community-any/PKGBUILD (from rev 516280, pm2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-16 06:19:20 UTC (rev 516281)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=pm2
+pkgver=4.0.0
+pkgrel=1
+pkgdesc='Production process manager for Node.JS applications with a built-in 
load balancer'
+arch=('any')
+url='https://pm2.keymetrics.io'
+license=('AGPL3')
+depends=('nodejs' 'semver')
+makedepends=('npm' 'git')
+install=pm2.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
+pm2.service)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('3cb272ddec7da51aed3f6002b3da8ee39306124fff01f60dd608c1be51acef6e41e75a393e44fc6463f460816739b6b7c51cec8085c6e20fc77fa81fced88d49'
+
'0d80c16d4694511cc19970a3eb4a2e10f706a58c5cdc554809e12a12093a5b29ff6d30027cbe8646f837a42e40f7d9b7fe2853f96a76a38f47ddc14833f141ef')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  install -Dm644 pm2.service "$pkgdir"/usr/lib/systemd/system/pm2.service
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in semver; do
+rm -r $dep;
+  done
+}

Deleted: pm2.install
===
--- pm2.install 2019-10-16 06:19:02 UTC (rev 516280)
+++ pm2.install 2019-10-16 06:19:20 UTC (rev 516281)
@@ -1,10 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules \
- /usr/lib/node_modules/pm2/node_modules \
- /usr/lib/node_modules/pm2/node_modules/.bin
-}
-
-post_upgrade() {
-  post_install
-}

Copied: pm2/repos/community-any/pm2.install (from rev 516280, 
pm2/trunk/pm2.install)
===
--- pm2.install (rev 0)
+++ pm2.install 2019-10-16 06:19:20 UTC (rev 516281)
@@ -0,0 +1,10 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules \
+ /usr/lib/node_modules/pm2/node_modules \
+ /usr/lib/node_modules/pm2/node_modules/.bin
+}
+
+post_upgrade() {
+  post_install
+}

Deleted: pm2.service
===
--- pm2.service 2019-10-16 06:19:02 UTC (rev 516280)
+++ pm2.service 2019-10-16 06:19:20 UTC (rev 516281)
@@ -1,16 +0,0 @@
-[Unit]
-Description=PM2 next gen process manager for Node.js
-After=network.target remote-fs.target
-
-[Service]
-Type=forking
-
-ExecStart=/usr/lib/node_modules/pm2/bin/pm2 resurrect
-ExecReload=/usr/lib/node_modules/pm2/bi

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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:19:02
  Author: felixonmars
Revision: 516280

upgpkg: pm2 4.0.0-1

Modified:
  pm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:16:52 UTC (rev 516279)
+++ PKGBUILD2019-10-16 06:19:02 UTC (rev 516280)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=pm2
-pkgver=3.5.1
+pkgver=4.0.0
 pkgrel=1
 pkgdesc='Production process manager for Node.JS applications with a built-in 
load balancer'
 arch=('any')
@@ -13,7 +13,7 @@
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
 pm2.service)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('a433c17ad6c8e3c243ca7c66b523cd48a44393f2d16e1b07ac9fd64822950f54d43676fa5cd31ee86cceec308d8a3241bdd690faed56c4db9dc6a13195776113'
+sha512sums=('3cb272ddec7da51aed3f6002b3da8ee39306124fff01f60dd608c1be51acef6e41e75a393e44fc6463f460816739b6b7c51cec8085c6e20fc77fa81fced88d49'
 
'0d80c16d4694511cc19970a3eb4a2e10f706a58c5cdc554809e12a12093a5b29ff6d30027cbe8646f837a42e40f7d9b7fe2853f96a76a38f47ddc14833f141ef')
 
 package() {
@@ -20,9 +20,14 @@
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
   install -Dm644 pm2.service "$pkgdir"/usr/lib/systemd/system/pm2.service
 
-  # Why 777? :/
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
   chmod -R u=rwX,go=rX "$pkgdir"
 
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+
   # Experimental dedup
   cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
   for dep in semver; do


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:16:52
  Author: felixonmars
Revision: 516279

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 516278, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:16:52 UTC (rev 516279)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.21.1
+pkgrel=101
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' '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-cryptonite' 'haskell-data-default' 'haskell-exceptions' 
'haskell-http-conduit'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-lifted-base' 
'haskell-memory'
+ 'haskell-monad-control' 'haskell-network' 'haskell-old-locale' 
'haskell-resourcet'
+ 'haskell-safe' 'haskell-scientific' 'haskell-tagged' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-errors' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('ab22fd2113b579404c218abbef42ebc04e3b5d90c4a1ecc4ad36aa720c8071c07d8b49bd2441bc07d1383122cfdd5e95a04fad6929adedb66e5d5b684eed2f37')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.6/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Requires AWS credentials to test"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:16:42
  Author: felixonmars
Revision: 516278

upgpkg: haskell-aws 0.21.1-101

rebuild with http-conduit 2.3.7.2

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:15:40 UTC (rev 516277)
+++ PKGBUILD2019-10-16 06:16:42 UTC (rev 516278)
@@ -4,7 +4,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.21.1
-pkgrel=100
+pkgrel=101
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws";
 license=("BSD")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:15:12
  Author: felixonmars
Revision: 516276

upgpkg: jenkins 2.199-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:14:25 UTC (rev 516275)
+++ PKGBUILD2019-10-16 06:15:12 UTC (rev 516276)
@@ -4,7 +4,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.198
+pkgver=2.199
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('8196b36c8f32ca7eb7021d4139608cd7bbb9f96dd75532b86f28f5a6a498ffd62416294610bcef0659f17e9af3e98648c02c2fb08ffa2b1078e75a36bea3c244'
+sha512sums=('d8b8533e18bef3ffcc0a86cb6b44c3f05158fd15f4a24800358a3cd68826bef712d88dbe192d5d819c025a1c49803beaf4453604714309dc70a354c914764c65'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:15:40
  Author: felixonmars
Revision: 516277

archrelease: copy trunk to community-any

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

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

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 06:15:12 UTC (rev 516276)
+++ PKGBUILD2019-10-16 06:15:40 UTC (rev 516277)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.198
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime=8' 'ttf-dejavu')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'
-

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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:14:25
  Author: felixonmars
Revision: 516275

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
516274, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:14:25 UTC (rev 516275)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.4
+pkgrel=347
+pkgdesc="Authentication methods for Haskell web applications."
+url="https://github.com/yesodweb/authenticate";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-conduit' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-network-uri' 'haskell-resourcet' 'haskell-tagstream-conduit'
+ 'haskell-unordered-containers' 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a6e5a9f4c20ca2bb980958c0cc6273492a6488a3f7c1954170bb8b40e46a4c2f7b607c961506e11ddc5421289c907148c1bc70b855bd16664bc1153ef7865571')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:14:15
  Author: felixonmars
Revision: 516274

upgpkg: haskell-authenticate 1.3.4-347

rebuild with http-conduit 2.3.7.2

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:13:21 UTC (rev 516273)
+++ PKGBUILD2019-10-16 06:14:15 UTC (rev 516274)
@@ -4,7 +4,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.4
-pkgrel=346
+pkgrel=347
 pkgdesc="Authentication methods for Haskell web applications."
 url="https://github.com/yesodweb/authenticate";
 license=("MIT")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:13:21
  Author: felixonmars
Revision: 516273

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
516272, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-16 06:13:21 UTC (rev 516273)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.7.2
+pkgrel=1
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="https://www.yesodweb.com/book/http-conduit";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-resourcet'
+ 'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-connection'
+ 'haskell-cookie' 'haskell-data-default-class' 'haskell-hunit' 
'haskell-hspec'
+ 'haskell-lifted-base' 'haskell-network' 
'haskell-streaming-commons' 'haskell-temporary'
+ 'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
+ 'haskell-warp' 'haskell-warp-tls')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('0046399603683d1f7541b224bde489a4ef50c6ba4ad7a1e69f7128cf087790330d9ba08a7578f08debd502e740dec0e08866f840dc19d8fbfc8455f507f5afe2')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *3.3/<4/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:13:10
  Author: felixonmars
Revision: 516272

upgpkg: haskell-http-conduit 2.3.7.2-1

rebuild with http-conduit 2.3.7.2

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:10:50 UTC (rev 516271)
+++ PKGBUILD2019-10-16 06:13:10 UTC (rev 516272)
@@ -3,8 +3,8 @@
 
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
-pkgver=2.3.7.1
-pkgrel=71
+pkgver=2.3.7.2
+pkgrel=1
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="https://www.yesodweb.com/book/http-conduit";
 license=("BSD")
@@ -18,7 +18,7 @@
  'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
  'haskell-warp' 'haskell-warp-tls')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('39308e85a9b8c292930803b0b0bb00d4fb58e64e3a8273a30fee4f6016fe18ae9cbd75ece5b67ff88237d87c0b895896b9d715eaa45d396f3baf1deb2b8388ba')
+sha512sums=('0046399603683d1f7541b224bde489a4ef50c6ba4ad7a1e69f7128cf087790330d9ba08a7578f08debd502e740dec0e08866f840dc19d8fbfc8455f507f5afe2')
 
 prepare() {
 cd $_hkgname-$pkgver


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:10:50
  Author: felixonmars
Revision: 516271

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 516270, uglify-js/trunk/PKGBUILD)
  uglify-js/repos/community-any/uglify-js.install
(from rev 516270, uglify-js/trunk/uglify-js.install)
Deleted:
  uglify-js/repos/community-any/PKGBUILD
  uglify-js/repos/community-any/uglify-js.install

---+
 PKGBUILD  |   64 ++--
 uglify-js.install |   16 ++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 06:10:13 UTC (rev 516270)
+++ PKGBUILD2019-10-16 06:10:50 UTC (rev 516271)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=3.6.1
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-install=${pkgname}.install
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('f9d4892c9a5705bea83073fe62fc3c854804973e202d387cd97b97ebc4222554d7684e626e5e9bbb384d910758841948868cd6382f607b5eb0c919a31b84f055')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 516270, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-16 06:10:50 UTC (rev 516271)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=3.6.2
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+install=${pkgname}.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('fa087fc45b5ee3518fae048c27fa0956ad79cd89aaafbe2963d56833af54eaf4d164e180f295c95bd7f6e11336526944236d6e51be78877aad5c76d4588f')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: uglify-js.install
===
--- uglify-js.install   2019-10-16 06:10:13 UTC (rev 516270)
+++ uglify-js.install   2019-10-16 06:10:50 UTC (rev 516271)
@@ -1,8 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules
-}
-
-post_upgrade() {
-  post_install
-}

Copied: uglify-js/repos/community-any/uglify-js.install (from rev 516270, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2019-10-16 06:10:50 UTC (rev 516271)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Wednesday, October 16, 2019 @ 06:10:13
  Author: felixonmars
Revision: 516270

upgpkg: uglify-js 3.6.2-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 06:02:34 UTC (rev 516269)
+++ PKGBUILD2019-10-16 06:10:13 UTC (rev 516270)
@@ -2,7 +2,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=3.6.1
+pkgver=3.6.2
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -13,7 +13,7 @@
 install=${pkgname}.install
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('f9d4892c9a5705bea83073fe62fc3c854804973e202d387cd97b97ebc4222554d7684e626e5e9bbb384d910758841948868cd6382f607b5eb0c919a31b84f055')
+sha512sums=('fa087fc45b5ee3518fae048c27fa0956ad79cd89aaafbe2963d56833af54eaf4d164e180f295c95bd7f6e11336526944236d6e51be78877aad5c76d4588f')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2019-10-15 Thread Antonio Rojas via arch-commits
Date: Wednesday, October 16, 2019 @ 06:02:11
  Author: arojas
Revision: 516268

Update to 1.1.4

Modified:
  jupyterlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 05:42:45 UTC (rev 516267)
+++ PKGBUILD2019-10-16 06:02:11 UTC (rev 516268)
@@ -2,7 +2,7 @@
 
 pkgname=jupyterlab
 _pipname=jupyterlab
-pkgver=1.1.3
+pkgver=1.1.4
 pkgrel=1
 pkgdesc="JupyterLab computational environment"
 arch=(any)
@@ -12,7 +12,7 @@
 depends=(jupyterlab_server)
 optdepends=('npm: to install extensions')
 
source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('820975c5a4d7be40245d7ec1c4feef469fa07f8f62907091bc4965353da124e0')
+sha256sums=('27acee5bf002a153e9852b13503687c419b0421dd9a3ed203123afd56b8bc41a')
 
 build() {
   cd $pkgname-$pkgver


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

2019-10-15 Thread Antonio Rojas via arch-commits
Date: Wednesday, October 16, 2019 @ 06:02:34
  Author: arojas
Revision: 516269

archrelease: copy trunk to community-any

Added:
  jupyterlab/repos/community-any/PKGBUILD
(from rev 516268, jupyterlab/trunk/PKGBUILD)
Deleted:
  jupyterlab/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 06:02:11 UTC (rev 516268)
+++ PKGBUILD2019-10-16 06:02:34 UTC (rev 516269)
@@ -1,28 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=jupyterlab
-_pipname=jupyterlab
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="JupyterLab computational environment"
-arch=(any)
-url="https://github.com/jupyterlab/jupyterlab";
-license=(custom)
-makedepends=(python-setuptools nodejs python2)
-depends=(jupyterlab_server)
-optdepends=('npm: to install extensions')
-source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('820975c5a4d7be40245d7ec1c4feef469fa07f8f62907091bc4965353da124e0')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build 
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/etc "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: jupyterlab/repos/community-any/PKGBUILD (from rev 516268, 
jupyterlab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-16 06:02:34 UTC (rev 516269)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=jupyterlab
+_pipname=jupyterlab
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="JupyterLab computational environment"
+arch=(any)
+url="https://github.com/jupyterlab/jupyterlab";
+license=(custom)
+makedepends=(python-setuptools nodejs python2)
+depends=(jupyterlab_server)
+optdepends=('npm: to install extensions')
+source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
+sha256sums=('27acee5bf002a153e9852b13503687c419b0421dd9a3ed203123afd56b8bc41a')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build 
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  mv "$pkgdir"/usr/etc "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-10-15 Thread Eli Schwartz via arch-commits
Date: Wednesday, October 16, 2019 @ 05:42:45
  Author: eschwartz
Revision: 516267

archrelease: copy trunk to community-any

Added:
  fanficfare/repos/community-any/PKGBUILD
(from rev 516266, fanficfare/trunk/PKGBUILD)
  fanficfare/repos/community-any/changelog.txt
(from rev 516266, fanficfare/trunk/changelog.txt)
Deleted:
  fanficfare/repos/community-any/PKGBUILD
  fanficfare/repos/community-any/changelog.txt

---+
 PKGBUILD  |   54 +++---
 changelog.txt |   44 ++--
 2 files changed, 53 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 05:42:18 UTC (rev 516266)
+++ PKGBUILD2019-10-16 05:42:45 UTC (rev 516267)
@@ -1,27 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=FanFicFare
-pkgname=fanficfare
-pkgver=3.11.0
-pkgrel=1
-pkgdesc="A tool for downloading fanfiction to eBook formats"
-arch=('any')
-url="https://github.com/JimmXinu/${_pkgname}";
-license=('Apache')
-changelog=changelog.txt
-depends=('python' 'python-beautifulsoup4' 'python-chardet' 'python-html5lib'
- 'python-html2text')
-optdepends=('python-pillow: support for converting/resizing story images and 
covers')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('b0e89544a00028d79f909c24133dac642807078cea24896f0852aa3847549b8f')
-b2sums=('16f6d7c74f98578b91f04001828499365eac08ed7eac0217cb68f85e001648329189d4f170b46499dd9ae9a4f0ac55826bc0e6648a16846a1b66c62de1bfcb27')
-
-build() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-python setup.py build
-}
-
-package() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: fanficfare/repos/community-any/PKGBUILD (from rev 516266, 
fanficfare/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-16 05:42:45 UTC (rev 516267)
@@ -0,0 +1,27 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=FanFicFare
+pkgname=fanficfare
+pkgver=3.12.0
+pkgrel=1
+pkgdesc="A tool for downloading fanfiction to eBook formats"
+arch=('any')
+url="https://github.com/JimmXinu/${_pkgname}";
+license=('Apache')
+changelog=changelog.txt
+depends=('python' 'python-beautifulsoup4' 'python-chardet' 'python-html5lib'
+ 'python-html2text')
+optdepends=('python-pillow: support for converting/resizing story images and 
covers')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('a9af8f6474d1411f2e0e580a64311c9fd67c8d4453764c68f37c52f02f1433aa')
+b2sums=('ba01abde69c54422652b1288f14e528f264e0310a8a0beac0e03146d4bb0424fd3ba0b397f8c6b0125f4cb06e086726b5ee413ac6e252fe317ff7823d1ad32ba')
+
+build() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+python setup.py build
+}
+
+package() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}

Deleted: changelog.txt
===
--- changelog.txt   2019-10-16 05:42:18 UTC (rev 516266)
+++ changelog.txt   2019-10-16 05:42:45 UTC (rev 516267)
@@ -1,18 +0,0 @@
-Version 3.11.0 - 04 Sep 2019
-- Update Translations
-- Add URL prefix for XF2 authorUrl if relative. Circa Aug 23, 2019 SV changed
-  the author URL FFF collects to a relative link and I didn't notice it until
-  now.
-- Add dedup_chapter_list option for buggy chapter lists. Optional in case
-  they're not buggy.
-- Add fetch_last_page for base_xenforo--SB doesn't send notice emails if user
-  not up-to-date now.
-- Fix for corner-case with deleting Rejects.
-- Fix for XF1 regression caused by XF2 threadmarks metadata code.
-- Add XF2 threadmarks_cover/status/desc/title options.
-
-Version 3.10.5 - 30 Jul 2019
-- Fixes for IMAP folder parsing.
-- ensure_str on IMAP4 folder name for Python3. Fixes #419
-- Fix adapter_inkbunnynet incorrect example URL, caused problems with get URLs
-  from page.

Copied: fanficfare/repos/community-any/changelog.txt (from rev 516266, 
fanficfare/trunk/changelog.txt)
===
--- changelog.txt   (rev 0)
+++ changelog.txt   2019-10-16 05:42:45 UTC (rev 516267)
@@ -0,0 +1,26 @@
+Version 3.12.0 - 14 Oct 2019
+- Update Translations
+- Add defaults.ini CSS for ficbook.net to preserve line breaks.
+- Changes for adapter_forumsspacebattlescom to use base_xenforo2forum.
+- Correct AO3 author parsing for high-byte characters.
+- Additional warnings about imaptags added to manually added story URLs.
+- Fix for adapter_trekfanfictionnet URL change. Closes #433.
+- Add 'Restricted to Registered Users'(restricted) metadata to AO3.
+- Fix for unicode chars in url params, fixes 427
+- Add feature to automatically add optional tags for stories downloa

[arch-commits] Commit in fanficfare/trunk (PKGBUILD changelog.txt)

2019-10-15 Thread Eli Schwartz via arch-commits
Date: Wednesday, October 16, 2019 @ 05:42:18
  Author: eschwartz
Revision: 516266

upgpkg: fanficfare 3.12.0-1: upstream release

Modified:
  fanficfare/trunk/PKGBUILD
  fanficfare/trunk/changelog.txt

---+
 PKGBUILD  |6 +++---
 changelog.txt |   20 ++--
 2 files changed, 17 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 04:57:35 UTC (rev 516265)
+++ PKGBUILD2019-10-16 05:42:18 UTC (rev 516266)
@@ -2,7 +2,7 @@
 
 _pkgname=FanFicFare
 pkgname=fanficfare
-pkgver=3.11.0
+pkgver=3.12.0
 pkgrel=1
 pkgdesc="A tool for downloading fanfiction to eBook formats"
 arch=('any')
@@ -13,8 +13,8 @@
  'python-html2text')
 optdepends=('python-pillow: support for converting/resizing story images and 
covers')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('b0e89544a00028d79f909c24133dac642807078cea24896f0852aa3847549b8f')
-b2sums=('16f6d7c74f98578b91f04001828499365eac08ed7eac0217cb68f85e001648329189d4f170b46499dd9ae9a4f0ac55826bc0e6648a16846a1b66c62de1bfcb27')
+sha256sums=('a9af8f6474d1411f2e0e580a64311c9fd67c8d4453764c68f37c52f02f1433aa')
+b2sums=('ba01abde69c54422652b1288f14e528f264e0310a8a0beac0e03146d4bb0424fd3ba0b397f8c6b0125f4cb06e086726b5ee413ac6e252fe317ff7823d1ad32ba')
 
 build() {
 cd "${srcdir}/${_pkgname}-${pkgver}"

Modified: changelog.txt
===
--- changelog.txt   2019-10-16 04:57:35 UTC (rev 516265)
+++ changelog.txt   2019-10-16 05:42:18 UTC (rev 516266)
@@ -1,3 +1,17 @@
+Version 3.12.0 - 14 Oct 2019
+- Update Translations
+- Add defaults.ini CSS for ficbook.net to preserve line breaks.
+- Changes for adapter_forumsspacebattlescom to use base_xenforo2forum.
+- Correct AO3 author parsing for high-byte characters.
+- Additional warnings about imaptags added to manually added story URLs.
+- Fix for adapter_trekfanfictionnet URL change. Closes #433.
+- Add 'Restricted to Registered Users'(restricted) metadata to AO3.
+- Fix for unicode chars in url params, fixes 427
+- Add feature to automatically add optional tags for stories downloaded from
+  email URLs.
+- New Russian Site added: www.swi.org.ru - Thanks gunmetal313
+- Fix for wordcount in adapter_fanfiktionde when max_zalgo:1
+
 Version 3.11.0 - 04 Sep 2019
 - Update Translations
 - Add URL prefix for XF2 authorUrl if relative. Circa Aug 23, 2019 SV changed
@@ -10,9 +24,3 @@
 - Fix for corner-case with deleting Rejects.
 - Fix for XF1 regression caused by XF2 threadmarks metadata code.
 - Add XF2 threadmarks_cover/status/desc/title options.
-
-Version 3.10.5 - 30 Jul 2019
-- Fixes for IMAP folder parsing.
-- ensure_str on IMAP4 folder name for Python3. Fixes #419
-- Fix adapter_inkbunnynet incorrect example URL, caused problems with get URLs
-  from page.


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

2019-10-15 Thread Jerome Leclanche via arch-commits
Date: Wednesday, October 16, 2019 @ 02:11:39
  Author: jleclanche
Revision: 516249

archrelease: copy trunk to community-any

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

---+
 PKGBUILD  |   42 +-
 xonsh.install |   22 +++---
 2 files changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 02:11:22 UTC (rev 516248)
+++ PKGBUILD2019-10-16 02:11:39 UTC (rev 516249)
@@ -1,21 +0,0 @@
-# Maintainer: Jerome Leclanche 
-
-pkgname=xonsh
-pkgver=0.9.12
-pkgrel=1
-pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
-url="https://xon.sh/";
-arch=("any")
-license=("BSD")
-depends=("python" "python-ply")
-optdepends=("python-prompt_toolkit: support for SHELL_TYPE=prompt_toolkit")
-makedepends=("python-setuptools")
-source=("https://github.com/xonsh/xonsh/releases/download/$pkgver/$pkgname-$pkgver.tar.gz";)
-install=xonsh.install
-sha256sums=("29c93fa7dd0aa6ec1ed6a53fc3dcb6eded28cc559575cc11269b81cea68dac6d")
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-   python setup.py install --root="$pkgdir"
-   install -D -m644 license "$pkgdir/usr/share/licenses/$pkgname/license"
-}

Copied: xonsh/repos/community-any/PKGBUILD (from rev 516248, 
xonsh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-16 02:11:39 UTC (rev 516249)
@@ -0,0 +1,21 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=xonsh
+pkgver=0.9.13
+pkgrel=1
+pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
+url="https://xon.sh/";
+arch=("any")
+license=("BSD")
+depends=("python" "python-ply")
+optdepends=("python-prompt_toolkit: support for SHELL_TYPE=prompt_toolkit")
+makedepends=("python-setuptools")
+source=("https://github.com/xonsh/xonsh/releases/download/$pkgver/$pkgname-$pkgver.tar.gz";)
+install=xonsh.install
+sha256sums=("8b62d959dddca2d872382244b15aa9787713c50fcb0085a6b7080e794162863d")
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+   python setup.py install --root="$pkgdir"
+   install -D -m644 license "$pkgdir/usr/share/licenses/$pkgname/license"
+}

Deleted: xonsh.install
===
--- xonsh.install   2019-10-16 02:11:22 UTC (rev 516248)
+++ xonsh.install   2019-10-16 02:11:39 UTC (rev 516249)
@@ -1,11 +0,0 @@
-post_install() {
-   grep -x /usr/bin/xonsh /etc/shells >/dev/null || echo /usr/bin/xonsh >> 
/etc/shells
-}
-
-post_remove() {
-   sed -i "/^\/usr\/bin\/xonsh$/d" /etc/shells
-}
-
-post_upgrade() {
-   post_install
-}

Copied: xonsh/repos/community-any/xonsh.install (from rev 516248, 
xonsh/trunk/xonsh.install)
===
--- xonsh.install   (rev 0)
+++ xonsh.install   2019-10-16 02:11:39 UTC (rev 516249)
@@ -0,0 +1,11 @@
+post_install() {
+   grep -x /usr/bin/xonsh /etc/shells >/dev/null || echo /usr/bin/xonsh >> 
/etc/shells
+}
+
+post_remove() {
+   sed -i "/^\/usr\/bin\/xonsh$/d" /etc/shells
+}
+
+post_upgrade() {
+   post_install
+}


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

2019-10-15 Thread Jerome Leclanche via arch-commits
Date: Wednesday, October 16, 2019 @ 02:11:22
  Author: jleclanche
Revision: 516248

upgpkg: xonsh 0.9.13-1

Upstream release 0.9.13

Modified:
  xonsh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 00:32:31 UTC (rev 516247)
+++ PKGBUILD2019-10-16 02:11:22 UTC (rev 516248)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=xonsh
-pkgver=0.9.12
+pkgver=0.9.13
 pkgrel=1
 pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
 url="https://xon.sh/";
@@ -12,7 +12,7 @@
 makedepends=("python-setuptools")
 
source=("https://github.com/xonsh/xonsh/releases/download/$pkgver/$pkgname-$pkgver.tar.gz";)
 install=xonsh.install
-sha256sums=("29c93fa7dd0aa6ec1ed6a53fc3dcb6eded28cc559575cc11269b81cea68dac6d")
+sha256sums=("8b62d959dddca2d872382244b15aa9787713c50fcb0085a6b7080e794162863d")
 
 package() {
cd "$srcdir/$pkgname-$pkgver"


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

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Wednesday, October 16, 2019 @ 00:32:10
  Author: polyzen
Revision: 516246

upgpkg: ipython 7.8.0-1

Modified:
  ipython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-16 00:10:36 UTC (rev 516245)
+++ PKGBUILD2019-10-16 00:32:10 UTC (rev 516246)
@@ -2,10 +2,10 @@
 # Contributor: PepeSmith
 # Contributor: Aron Asor 
 # Contributor: Chris Brannon 
-# Contributor : Douglas Soares de Andrade 
+# Contributor: Douglas Soares de Andrade 
 
 pkgname=ipython
-pkgver=7.6.1
+pkgver=7.8.0
 pkgrel=1
 pkgdesc="An enhanced Interactive Python shell."
 arch=('any')
@@ -23,7 +23,7 @@
 
"https://pypi.python.org/packages/source/s/simplegeneric/simplegeneric-0.8.1.zip";
 
"https://files.pythonhosted.org/packages/source/b/backcall/backcall-0.1.0.tar.gz";
 
"https://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png";)
-md5sums=('5357343e6ce1ca60e3f6f82dc727631f'
+md5sums=('901b416961d6a249a8607837c06ba0ac'
  'f9c1fab00fd981be588fc32759f474e3'
  '87ce0c7839808e6a3427d57df6a792e7'
  '2901d65f1b1fe354e72850085cd1c072')


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

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Wednesday, October 16, 2019 @ 00:32:31
  Author: polyzen
Revision: 516247

archrelease: copy trunk to community-any

Added:
  ipython/repos/community-any/PKGBUILD
(from rev 516246, ipython/trunk/PKGBUILD)
Deleted:
  ipython/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 00:32:10 UTC (rev 516246)
+++ PKGBUILD2019-10-16 00:32:31 UTC (rev 516247)
@@ -1,59 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: PepeSmith
-# Contributor: Aron Asor 
-# Contributor: Chris Brannon 
-# Contributor : Douglas Soares de Andrade 
-
-pkgname=ipython
-pkgver=7.6.1
-pkgrel=1
-pkgdesc="An enhanced Interactive Python shell."
-arch=('any')
-url="https://ipython.org";
-license=('BSD')
-depends=('python' 'python-traitlets' 'python-pexpect' 'sqlite'
- 'python-setuptools' 'python-pickleshare' 'python-prompt_toolkit'
- 'python-jedi' 'python-pygments')
-makedepends=('python-setuptools')
-optdepends=("python-nose: for IPython's test suite")
-
-# new optional thing: ipyparallel
-
-source=("ipython-$pkgver.tgz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz";
-
"https://pypi.python.org/packages/source/s/simplegeneric/simplegeneric-0.8.1.zip";
-
"https://files.pythonhosted.org/packages/source/b/backcall/backcall-0.1.0.tar.gz";
-
"https://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png";)
-md5sums=('5357343e6ce1ca60e3f6f82dc727631f'
- 'f9c1fab00fd981be588fc32759f474e3'
- '87ce0c7839808e6a3427d57df6a792e7'
- '2901d65f1b1fe354e72850085cd1c072')
-
-# confirm that an update does not break sage?
-
-package() {
-  cd "$srcdir/ipython-$pkgver"
-
-  # see https://github.com/ipython/ipython/issues/2057
-  #export LC_ALL=en_US.UTF-8
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/simplegeneric-0.8.1"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/backcall-0.1.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipython-$pkgver"
-  install -Dm644 docs/source/about/license_and_copyright.rst 
"$pkgdir/usr/share/licenses/ipython/LICENSE"
-
-  cd "$srcdir/ipython-$pkgver/examples/IPython Kernel/"
-  # FS#45120
-  sed -i 's/gnome-netstatus-idle/ipython/' *.desktop
-  install -Dm644 ipython.desktop 
"$pkgdir/usr/share/applications/ipython.desktop"
-  #install -Dm644 ipython-qtconsole.desktop 
"$pkgdir/usr/share/applications/ipython-qtconsole.desktop"
-  # FS#47046
-  install -Dm644 "$srcdir/icon.png" "$pkgdir/usr/share/pixmaps/ipython.png"
-
-  #cd $srcdir/ipython-$pkgver/IPython/qt/console/resources/icon/
-  #install -Dm644 IPythonConsole.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/ipython.svg"
-}

Copied: ipython/repos/community-any/PKGBUILD (from rev 516246, 
ipython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-16 00:32:31 UTC (rev 516247)
@@ -0,0 +1,59 @@
+# Maintainer: Kyle Keen 
+# Contributor: PepeSmith
+# Contributor: Aron Asor 
+# Contributor: Chris Brannon 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=ipython
+pkgver=7.8.0
+pkgrel=1
+pkgdesc="An enhanced Interactive Python shell."
+arch=('any')
+url="https://ipython.org";
+license=('BSD')
+depends=('python' 'python-traitlets' 'python-pexpect' 'sqlite'
+ 'python-setuptools' 'python-pickleshare' 'python-prompt_toolkit'
+ 'python-jedi' 'python-pygments')
+makedepends=('python-setuptools')
+optdepends=("python-nose: for IPython's test suite")
+
+# new optional thing: ipyparallel
+
+source=("ipython-$pkgver.tgz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz";
+
"https://pypi.python.org/packages/source/s/simplegeneric/simplegeneric-0.8.1.zip";
+
"https://files.pythonhosted.org/packages/source/b/backcall/backcall-0.1.0.tar.gz";
+
"https://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png";)
+md5sums=('901b416961d6a249a8607837c06ba0ac'
+ 'f9c1fab00fd981be588fc32759f474e3'
+ '87ce0c7839808e6a3427d57df6a792e7'
+ '2901d65f1b1fe354e72850085cd1c072')
+
+# confirm that an update does not break sage?
+
+package() {
+  cd "$srcdir/ipython-$pkgver"
+
+  # see https://github.com/ipython/ipython/issues/2057
+  #export LC_ALL=en_US.UTF-8
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+
+  cd "$srcdir/simplegeneric-0.8.1"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+
+  cd "$srcdir/backcall-0.1.0"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+
+  cd "$srcdir/ipython

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

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Wednesday, October 16, 2019 @ 00:10:14
  Author: polyzen
Revision: 516244

upgpkg: python-prompt_toolkit 2.0.10-1

Modified:
  python-prompt_toolkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 22:47:17 UTC (rev 516243)
+++ PKGBUILD2019-10-16 00:10:14 UTC (rev 516244)
@@ -4,7 +4,7 @@
 pkgbase=python-prompt_toolkit
 pkgname=(python-prompt_toolkit python2-prompt_toolkit)
 _name=prompt_toolkit
-pkgver=2.0.9
+pkgver=2.0.10
 pkgrel=1
 pkgdesc="Library for building powerful interactive command lines in Python"
 arch=('any')
@@ -17,8 +17,8 @@
 license=('BSD')
 options=(!emptydirs)
 
source=("https://files.pythonhosted.org/packages/source/p/$_name/$_name-$pkgver.tar.gz";)
-md5sums=('091daddeec62015e0be36e8682d36562')
-sha256sums=('2519ad1d8038fd5fc8e770362237ad0364d16a7650fb5724af6997ed5515e3c1')
+md5sums=('5016c523e603cd7119644fbc0f00ce53')
+sha256sums=('f15af68f66e664eaa559d4ac8a928111eebd5feda0c11738b5998045224829db')
 
 prepare() {
   cd "$srcdir"


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

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Wednesday, October 16, 2019 @ 00:10:36
  Author: polyzen
Revision: 516245

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-16 00:10:14 UTC (rev 516244)
+++ PKGBUILD2019-10-16 00:10:36 UTC (rev 516245)
@@ -1,50 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: Andy Weidenbaum 
-
-pkgbase=python-prompt_toolkit
-pkgname=(python-prompt_toolkit python2-prompt_toolkit)
-_name=prompt_toolkit
-pkgver=2.0.9
-pkgrel=1
-pkgdesc="Library for building powerful interactive command lines in Python"
-arch=('any')
-depends=('python-pygments'
- 'python-six'
- 'python-wcwidth')
-makedepends=('python-setuptools' 'python2-setuptools'
- 'python2-pygments' 'python2-six' 'python2-wcwidth')
-url="https://github.com/jonathanslenders/python-prompt-toolkit";
-license=('BSD')
-options=(!emptydirs)
-source=("https://files.pythonhosted.org/packages/source/p/$_name/$_name-$pkgver.tar.gz";)
-md5sums=('091daddeec62015e0be36e8682d36562')
-sha256sums=('2519ad1d8038fd5fc8e770362237ad0364d16a7650fb5724af6997ed5515e3c1')
-
-prepare() {
-  cd "$srcdir"
-  cp -r $_name-$pkgver python2-$_name-$pkgver
-}
-
-build() {
-  cd "$srcdir/$_name-$pkgver"
-  python3 setup.py build
-
-  cd "$srcdir/python2-$_name-$pkgver"
-  python2 setup.py build
-}
-
-package_python-prompt_toolkit() {
-  cd "$srcdir/$_name-$pkgver"
-  python3 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-prompt_toolkit() {
-  depends=('python2-pygments'
-   'python2-six'
-   'python2-wcwidth')
-  cd "$srcdir/python2-$_name-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: python-prompt_toolkit/repos/community-any/PKGBUILD (from rev 516244, 
python-prompt_toolkit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-16 00:10:36 UTC (rev 516245)
@@ -0,0 +1,50 @@
+# Maintainer: Kyle Keen 
+# Contributor: Andy Weidenbaum 
+
+pkgbase=python-prompt_toolkit
+pkgname=(python-prompt_toolkit python2-prompt_toolkit)
+_name=prompt_toolkit
+pkgver=2.0.10
+pkgrel=1
+pkgdesc="Library for building powerful interactive command lines in Python"
+arch=('any')
+depends=('python-pygments'
+ 'python-six'
+ 'python-wcwidth')
+makedepends=('python-setuptools' 'python2-setuptools'
+ 'python2-pygments' 'python2-six' 'python2-wcwidth')
+url="https://github.com/jonathanslenders/python-prompt-toolkit";
+license=('BSD')
+options=(!emptydirs)
+source=("https://files.pythonhosted.org/packages/source/p/$_name/$_name-$pkgver.tar.gz";)
+md5sums=('5016c523e603cd7119644fbc0f00ce53')
+sha256sums=('f15af68f66e664eaa559d4ac8a928111eebd5feda0c11738b5998045224829db')
+
+prepare() {
+  cd "$srcdir"
+  cp -r $_name-$pkgver python2-$_name-$pkgver
+}
+
+build() {
+  cd "$srcdir/$_name-$pkgver"
+  python3 setup.py build
+
+  cd "$srcdir/python2-$_name-$pkgver"
+  python2 setup.py build
+}
+
+package_python-prompt_toolkit() {
+  cd "$srcdir/$_name-$pkgver"
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-prompt_toolkit() {
+  depends=('python2-pygments'
+   'python2-six'
+   'python2-wcwidth')
+  cd "$srcdir/python2-$_name-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+


[arch-commits] Commit in pkgfile/repos/extra-x86_64 (4 files)

2019-10-15 Thread Dave Reisner via arch-commits
Date: Tuesday, October 15, 2019 @ 23:59:29
  Author: dreisner
Revision: 365062

archrelease: copy trunk to extra-x86_64

Added:
  pkgfile/repos/extra-x86_64/PKGBUILD
(from rev 365061, pkgfile/trunk/PKGBUILD)
  pkgfile/repos/extra-x86_64/pkgfile.install
(from rev 365061, pkgfile/trunk/pkgfile.install)
Deleted:
  pkgfile/repos/extra-x86_64/PKGBUILD
  pkgfile/repos/extra-x86_64/pkgfile.install

-+
 PKGBUILD|   60 +++---
 pkgfile.install |   38 +-
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-15 23:59:13 UTC (rev 365061)
+++ PKGBUILD2019-10-15 23:59:29 UTC (rev 365062)
@@ -1,30 +0,0 @@
-# Maintainer: Dave Reisner 
-
-pkgname=pkgfile
-pkgver=20
-pkgrel=2
-pkgdesc="a pacman .files metadata explorer"
-arch=('x86_64')
-url="https://github.com/falconindy/pkgfile";
-license=('MIT')
-depends=('libarchive' 'curl' 'pcre' 'pacman')
-makedepends=('git' 'meson')
-source=("git+https://github.com/falconindy/pkgfile?signed#tag=v$pkgver";)
-validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53')  # Dave Reisner
-install=pkgfile.install
-md5sums=('SKIP')
-
-build() {
-  cd "$pkgname"
-
-  arch-meson build
-  ninja -v -C build
-}
-
-package() {
-  cd "$pkgname"
-
-  DESTDIR=$pkgdir ninja -C build install
-}
-
-# vim: ft=sh syn=sh

Copied: pkgfile/repos/extra-x86_64/PKGBUILD (from rev 365061, 
pkgfile/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-15 23:59:29 UTC (rev 365062)
@@ -0,0 +1,30 @@
+# Maintainer: Dave Reisner 
+
+pkgname=pkgfile
+pkgver=21
+pkgrel=1
+pkgdesc="a pacman .files metadata explorer"
+arch=('x86_64')
+url="https://github.com/falconindy/pkgfile";
+license=('MIT')
+depends=('libarchive' 'curl' 'pcre' 'pacman')
+makedepends=('git' 'meson')
+source=("git+https://github.com/falconindy/pkgfile?signed#tag=v$pkgver";)
+validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53')  # Dave Reisner
+install=pkgfile.install
+md5sums=('SKIP')
+
+build() {
+  cd "$pkgname"
+
+  arch-meson build
+  ninja -v -C build
+}
+
+package() {
+  cd "$pkgname"
+
+  DESTDIR=$pkgdir ninja -C build install
+}
+
+# vim: ft=sh syn=sh

Deleted: pkgfile.install
===
--- pkgfile.install 2019-10-15 23:59:13 UTC (rev 365061)
+++ pkgfile.install 2019-10-15 23:59:29 UTC (rev 365062)
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-post_install() {
-  printf "==> Run 'pkgfile --update' to initialize the database\n"
-}
-
-post_remove() {
-  # the cache dir might not be removed, notify the user
-  if [ -d var/cache/pkgfile ]; then
-printf "==> /var/cache/pkgfile has not been removed\n"
-  fi
-}
-
-post_upgrade() {
-  if [ "$(vercmp 19-1 "$2")" -eq 1 ]; then
-printf "==> Changing permissions on /var/cache/pkgfile from 775 to 755\n"
-chmod 755 /var/cache/pkgfile
-  fi
-}

Copied: pkgfile/repos/extra-x86_64/pkgfile.install (from rev 365061, 
pkgfile/trunk/pkgfile.install)
===
--- pkgfile.install (rev 0)
+++ pkgfile.install 2019-10-15 23:59:29 UTC (rev 365062)
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+post_install() {
+  printf "==> Run 'pkgfile --update' to initialize the database\n"
+}
+
+post_remove() {
+  # the cache dir might not be removed, notify the user
+  if [ -d var/cache/pkgfile ]; then
+printf "==> /var/cache/pkgfile has not been removed\n"
+  fi
+}
+
+post_upgrade() {
+  if [ "$(vercmp 19-1 "$2")" -eq 1 ]; then
+printf "==> Changing permissions on /var/cache/pkgfile from 775 to 755\n"
+chmod 755 /var/cache/pkgfile
+  fi
+}


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

2019-10-15 Thread Dave Reisner via arch-commits
Date: Tuesday, October 15, 2019 @ 23:59:13
  Author: dreisner
Revision: 365061

upgpkg: pkgfile 21-1

Modified:
  pkgfile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 22:56:44 UTC (rev 365060)
+++ PKGBUILD2019-10-15 23:59:13 UTC (rev 365061)
@@ -1,8 +1,8 @@
 # Maintainer: Dave Reisner 
 
 pkgname=pkgfile
-pkgver=20
-pkgrel=2
+pkgver=21
+pkgrel=1
 pkgdesc="a pacman .files metadata explorer"
 arch=('x86_64')
 url="https://github.com/falconindy/pkgfile";


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

2019-10-15 Thread Levente Polyak via arch-commits
Date: Tuesday, October 15, 2019 @ 22:56:44
  Author: anthraxx
Revision: 365060

archrelease: copy trunk to testing-any

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

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

Copied: devtools/repos/testing-any/PKGBUILD (from rev 365059, 
devtools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2019-10-15 22:56:44 UTC (rev 365060)
@@ -0,0 +1,38 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Pierre Schmitz 
+
+pkgname=devtools
+pkgver=20191016
+pkgrel=1
+pkgdesc='Tools for Arch Linux package maintainers'
+arch=('any')
+license=('GPL')
+url='https://git.archlinux.org/devtools.git/'
+depends=('bash' 'openssh' 'subversion' 'rsync' 'arch-install-scripts'
+ 'git' 'bzr' 'mercurial' 'diffutils' 'util-linux' 'awk')
+makedepends=('asciidoc')
+optdepends=('btrfs-progs: btrfs support')
+source=(https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53'
+  '4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC'
+  '86CFFCA918CF3AF47147588051E8B148AC34'
+  '8FC15A064950A99DD1BD14DD39E4B877E62EB915'
+  '8218F88849AAC522E94CF470A5E9288C4FA415FA'
+  'B81B051F2D7FC867AAFF35A58DBD63B82072D77A'
+  'F3691687D867B81B51CE07D9BBE43771487328A9'
+  '6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'
+  'E240B57E2C4630BA768E2F26FC1B547C8D8172C8')
+sha256sums=('adc61b7761fb831f929a182e5e353c9f42c8666b6941c4ad7ce631fffd869994'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-10-15 Thread Levente Polyak via arch-commits
Date: Tuesday, October 15, 2019 @ 22:56:40
  Author: anthraxx
Revision: 365059

upgpkg: devtools 20191016-1

Modified:
  devtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 22:41:50 UTC (rev 365058)
+++ PKGBUILD2019-10-15 22:56:40 UTC (rev 365059)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=devtools
-pkgver=20190912
+pkgver=20191016
 pkgrel=1
 pkgdesc='Tools for Arch Linux package maintainers'
 arch=('any')
@@ -9,7 +9,7 @@
 license=('GPL')
 url='https://git.archlinux.org/devtools.git/'
 depends=('bash' 'openssh' 'subversion' 'rsync' 'arch-install-scripts'
- 'git' 'bzr' 'mercurial' 'diffutils' 'util-linux')
+ 'git' 'bzr' 'mercurial' 'diffutils' 'util-linux' 'awk')
 makedepends=('asciidoc')
 optdepends=('btrfs-progs: btrfs support')
 
source=(https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
@@ -22,7 +22,7 @@
   'F3691687D867B81B51CE07D9BBE43771487328A9'
   '6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'
   'E240B57E2C4630BA768E2F26FC1B547C8D8172C8')
-sha256sums=('0f6c83cdfb13b27292b034a5f4bfa46293830f879d4af5226079af30795992fb'
+sha256sums=('adc61b7761fb831f929a182e5e353c9f42c8666b6941c4ad7ce631fffd869994'
 'SKIP')
 
 build() {


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

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 15, 2019 @ 22:46:56
  Author: polyzen
Revision: 516242

upgpkg: razercfg 0.41-1

Modified:
  razercfg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 22:40:43 UTC (rev 516241)
+++ PKGBUILD2019-10-15 22:46:56 UTC (rev 516242)
@@ -3,8 +3,8 @@
 # Contributor: Fergus Symon 
 
 pkgname=razercfg
-pkgver=0.40
-pkgrel=3
+pkgver=0.41
+pkgrel=1
 pkgdesc='Razer mouse configuration tool'
 arch=('x86_64')
 url=https://bues.ch/cms/hacking/razercfg
@@ -14,11 +14,9 @@
 optdepends=('python-pyqt5: for the graphical qrazercfg tool')
 provides=('razerd')
 backup=('etc/razer.conf')
-source=("https://bues.ch/razercfg/razercfg-$pkgver.tar.bz2"{,.asc}
-'tmpfile.conf')
-sha512sums=('42c3e7a34a348982fb2c1022c85dd3ec6d875dec387492eb4f6aece82423a1fd5984c4efb79926084aac880944a9e139a424487ab277d8c1a56c4f9c0a7c9d6e'
-'SKIP'
-
'0a84cf5775930ff9adca513971a9eaf983f239b4cf59f8915632477c6ca20c02997fed3a24864aa04058d66899da3599d92a2180cfc43676102b733dd1db577b')
+source=("https://bues.ch/razercfg/razercfg-$pkgver.tar.bz2"{,.asc})
+sha512sums=('a24f3d2187f0791459e1f7a86583f72e6bfd9fc81fda6fa3482f3351dc641f8a511339b5c3b041c3e88a7d5da35a641696e86ce7d46b3fdb6a125bc7fed78a87'
+'SKIP')
 validpgpkeys=('757FAB7CED1814AE15B4836E5FB027474203454C') # Michael Busch
 
 build() {
@@ -32,8 +30,7 @@
   make DESTDIR="$pkgdir" install
 
   install -Dm644 -t "$pkgdir"/etc razer.conf
-  install -Dm644 "$srcdir"/tmpfile.conf\
-"$pkgdir"/usr/lib/tmpfiles.d/razerd.conf
+  install -Dm644 tmpfile.conf "$pkgdir"/usr/lib/tmpfiles.d/razerd.conf
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in razercfg/repos/community-x86_64 (4 files)

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 15, 2019 @ 22:47:17
  Author: polyzen
Revision: 516243

archrelease: copy trunk to community-x86_64

Added:
  razercfg/repos/community-x86_64/PKGBUILD
(from rev 516242, razercfg/trunk/PKGBUILD)
  razercfg/repos/community-x86_64/tmpfile.conf
(from rev 516242, razercfg/trunk/tmpfile.conf)
Deleted:
  razercfg/repos/community-x86_64/PKGBUILD
  razercfg/repos/community-x86_64/tmpfile.conf

--+
 PKGBUILD |   75 +++--
 tmpfile.conf |2 -
 2 files changed, 37 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-15 22:46:56 UTC (rev 516242)
+++ PKGBUILD2019-10-15 22:47:17 UTC (rev 516243)
@@ -1,39 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Maxwell "Synthead" Pray 
-# Contributor: Fergus Symon 
-
-pkgname=razercfg
-pkgver=0.40
-pkgrel=3
-pkgdesc='Razer mouse configuration tool'
-arch=('x86_64')
-url=https://bues.ch/h/razercfg
-license=('GPL')
-depends=('hicolor-icon-theme' 'libusb' 'python')
-makedepends=('cmake')
-optdepends=('python-pyqt5: for the graphical qrazercfg tool')
-provides=('razerd')
-backup=('etc/razer.conf')
-source=("http://bues.ch/razercfg/razercfg-$pkgver.tar.bz2"{,.asc}
-'tmpfile.conf')
-sha512sums=('42c3e7a34a348982fb2c1022c85dd3ec6d875dec387492eb4f6aece82423a1fd5984c4efb79926084aac880944a9e139a424487ab277d8c1a56c4f9c0a7c9d6e'
-'SKIP'
-
'0a84cf5775930ff9adca513971a9eaf983f239b4cf59f8915632477c6ca20c02997fed3a24864aa04058d66899da3599d92a2180cfc43676102b733dd1db577b')
-validpgpkeys=('757FAB7CED1814AE15B4836E5FB027474203454C') # Michael Busch
-
-build() {
-  cd razercfg-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd razercfg-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 -t "$pkgdir"/etc razer.conf
-  install -Dm644 "$srcdir"/tmpfile.conf\
-"$pkgdir"/usr/lib/tmpfiles.d/razerd.conf
-}
-
-# vim:set ts=2 sw=2 et:

Copied: razercfg/repos/community-x86_64/PKGBUILD (from rev 516242, 
razercfg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-15 22:47:17 UTC (rev 516243)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Maxwell "Synthead" Pray 
+# Contributor: Fergus Symon 
+
+pkgname=razercfg
+pkgver=0.41
+pkgrel=1
+pkgdesc='Razer mouse configuration tool'
+arch=('x86_64')
+url=https://bues.ch/cms/hacking/razercfg
+license=('GPL')
+depends=('hicolor-icon-theme' 'libusb' 'python')
+makedepends=('cmake')
+optdepends=('python-pyqt5: for the graphical qrazercfg tool')
+provides=('razerd')
+backup=('etc/razer.conf')
+source=("https://bues.ch/razercfg/razercfg-$pkgver.tar.bz2"{,.asc})
+sha512sums=('a24f3d2187f0791459e1f7a86583f72e6bfd9fc81fda6fa3482f3351dc641f8a511339b5c3b041c3e88a7d5da35a641696e86ce7d46b3fdb6a125bc7fed78a87'
+'SKIP')
+validpgpkeys=('757FAB7CED1814AE15B4836E5FB027474203454C') # Michael Busch
+
+build() {
+  cd razercfg-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd razercfg-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 -t "$pkgdir"/etc razer.conf
+  install -Dm644 tmpfile.conf "$pkgdir"/usr/lib/tmpfiles.d/razerd.conf
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: tmpfile.conf
===
--- tmpfile.conf2019-10-15 22:46:56 UTC (rev 516242)
+++ tmpfile.conf2019-10-15 22:47:17 UTC (rev 516243)
@@ -1 +0,0 @@
-d /run/razerd 0755 root root -

Copied: razercfg/repos/community-x86_64/tmpfile.conf (from rev 516242, 
razercfg/trunk/tmpfile.conf)
===
--- tmpfile.conf(rev 0)
+++ tmpfile.conf2019-10-15 22:47:17 UTC (rev 516243)
@@ -0,0 +1 @@
+d /run/razerd 0755 root root -


[arch-commits] Commit in gnome-online-accounts/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-10-15 Thread Jan Steffens via arch-commits
Date: Tuesday, October 15, 2019 @ 22:41:50
  Author: heftig
Revision: 365058

archrelease: copy trunk to extra-x86_64

Added:
  gnome-online-accounts/repos/extra-x86_64/PKGBUILD
(from rev 365057, gnome-online-accounts/trunk/PKGBUILD)
Deleted:
  gnome-online-accounts/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   90 ++---
 1 file changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-15 22:41:42 UTC (rev 365057)
+++ PKGBUILD2019-10-15 22:41:50 UTC (rev 365058)
@@ -1,45 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=gnome-online-accounts
-pkgver=3.34.0
-pkgrel=1
-pkgdesc="Single sign-on framework for GNOME"
-url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts";
-arch=(x86_64)
-license=(LGPL)
-depends=(webkit2gtk json-glib libnotify rest libsecret krb5 gcr)
-makedepends=(gobject-introspection gtk-doc vala git meson)
-optdepends=('gvfs-goa: Virtual file systems, e.g. OwnCloud'
-'gvfs-google: Google Drive')
-_commit=eabe91aec08ce2e1d2b7bb6b67c6ba097aee0ba9  # tags/3.34.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-online-accounts.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build \
--D lastfm=true \
--D media_server=true \
--D gtk_doc=true \
--D man=true
-  ninja -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-online-accounts/repos/extra-x86_64/PKGBUILD (from rev 365057, 
gnome-online-accounts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-15 22:41:50 UTC (rev 365058)
@@ -0,0 +1,45 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gnome-online-accounts
+pkgver=3.34.1
+pkgrel=1
+pkgdesc="Single sign-on framework for GNOME"
+url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts";
+arch=(x86_64)
+license=(LGPL)
+depends=(webkit2gtk json-glib libnotify rest libsecret krb5 gcr)
+makedepends=(gobject-introspection gtk-doc vala git meson)
+optdepends=('gvfs-goa: Virtual file systems, e.g. OwnCloud'
+'gvfs-google: Google Drive')
+_commit=a57487846b75dccd7a272f8682d647766ce222cd  # tags/3.34.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-online-accounts.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D lastfm=true \
+-D media_server=true \
+-D gtk_doc=true \
+-D man=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-10-15 Thread Jan Steffens via arch-commits
Date: Tuesday, October 15, 2019 @ 22:41:42
  Author: heftig
Revision: 365057

3.34.1-1

Modified:
  gnome-online-accounts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 17:29:19 UTC (rev 365056)
+++ PKGBUILD2019-10-15 22:41:42 UTC (rev 365057)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=gnome-online-accounts
-pkgver=3.34.0
+pkgver=3.34.1
 pkgrel=1
 pkgdesc="Single sign-on framework for GNOME"
 url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts";
@@ -12,7 +12,7 @@
 makedepends=(gobject-introspection gtk-doc vala git meson)
 optdepends=('gvfs-goa: Virtual file systems, e.g. OwnCloud'
 'gvfs-google: Google Drive')
-_commit=eabe91aec08ce2e1d2b7bb6b67c6ba097aee0ba9  # tags/3.34.0^0
+_commit=a57487846b75dccd7a272f8682d647766ce222cd  # tags/3.34.1^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-online-accounts.git#commit=$_commit";)
 sha256sums=('SKIP')
 


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

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 15, 2019 @ 22:40:25
  Author: polyzen
Revision: 516240

upgpkg: borgmatic 1.3.25-1

Modified:
  borgmatic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 22:39:52 UTC (rev 516239)
+++ PKGBUILD2019-10-15 22:40:25 UTC (rev 516240)
@@ -6,7 +6,7 @@
 # Contributor: stef204 
 
 pkgname=borgmatic
-pkgver=1.3.24
+pkgver=1.3.25
 pkgrel=1
 pkgdesc='Wrapper script for Borg backup software that creates and prunes 
backups'
 arch=('any')
@@ -14,7 +14,7 @@
 license=('GPL3')
 depends=('borg' 'python-colorama' 'python-pykwalify' 'python-ruamel-yaml' 
'python-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz";)
-sha256sums=('ca49f15e0eab8650550ce031a9c71a547acaaff15abd3448a6a2e55ca09e83ca')
+sha256sums=('56a0e3d1f5a2511b477fd8803c32e586a939f50fd3473f96c19db8b7d827d862')
 
 prepare() {
   cd $pkgname-$pkgver


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

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 15, 2019 @ 22:40:43
  Author: polyzen
Revision: 516241

archrelease: copy trunk to community-any

Added:
  borgmatic/repos/community-any/PKGBUILD
(from rev 516240, borgmatic/trunk/PKGBUILD)
Deleted:
  borgmatic/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-15 22:40:25 UTC (rev 516240)
+++ PKGBUILD2019-10-15 22:40:43 UTC (rev 516241)
@@ -1,35 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
-# Contributor: Alexander Görtz 
-# Contributor: Dan Beste 
-# Contributor: Julien Nicoulaud 
-# Contributor: stef204 
-
-pkgname=borgmatic
-pkgver=1.3.24
-pkgrel=1
-pkgdesc='Wrapper script for Borg backup software that creates and prunes 
backups'
-arch=('any')
-url=https://torsion.org/borgmatic
-license=('GPL3')
-depends=('borg' 'python-colorama' 'python-pykwalify' 'python-ruamel-yaml' 
'python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz";)
-sha256sums=('ca49f15e0eab8650550ce031a9c71a547acaaff15abd3448a6a2e55ca09e83ca')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's,root/.local,usr,' sample/systemd/$pkgname.service
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
-}
-
-# vim: ts=2 sw=2 et:

Copied: borgmatic/repos/community-any/PKGBUILD (from rev 516240, 
borgmatic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-15 22:40:43 UTC (rev 516241)
@@ -0,0 +1,35 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
+# Contributor: Alexander Görtz 
+# Contributor: Dan Beste 
+# Contributor: Julien Nicoulaud 
+# Contributor: stef204 
+
+pkgname=borgmatic
+pkgver=1.3.25
+pkgrel=1
+pkgdesc='Wrapper script for Borg backup software that creates and prunes 
backups'
+arch=('any')
+url=https://torsion.org/borgmatic
+license=('GPL3')
+depends=('borg' 'python-colorama' 'python-pykwalify' 'python-ruamel-yaml' 
'python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz";)
+sha256sums=('56a0e3d1f5a2511b477fd8803c32e586a939f50fd3473f96c19db8b7d827d862')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's,root/.local,usr,' sample/systemd/$pkgname.service
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
+}
+
+# vim: ts=2 sw=2 et:


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

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 15, 2019 @ 22:39:52
  Author: polyzen
Revision: 516239

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 516238, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-15 22:39:34 UTC (rev 516238)
+++ PKGBUILD2019-10-15 22:39:52 UTC (rev 516239)
@@ -1,36 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Daniel M. Capella 
-# Contributor: Eric Bélanger 
-
-pkgname=youtube-dl
-pkgver=2019.09.28
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="https://rg3.github.io/youtube-dl/";
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files'
-'python-pycryptodome: for hlsnative downloader')
-source=(https://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('50a0dfbf6d86eb2b7b461fd3aaa4fc2bc653d8bc0c728a9ead564f6ae602335b'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 516238, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-15 22:39:52 UTC (rev 516239)
@@ -0,0 +1,36 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Daniel M. Capella 
+# Contributor: Eric Bélanger 
+
+pkgname=youtube-dl
+pkgver=2019.10.16
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="https://ytdl-org.github.io/youtube-dl/";
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files'
+'python-pycryptodome: for hlsnative downloader')
+source=(https://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('f2acb43ae419ee6c33e94989cada162b4566755dc1d5e0935368952290a92b21'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Daniel M. Capella via arch-commits
Date: Tuesday, October 15, 2019 @ 22:39:34
  Author: polyzen
Revision: 516238

upgpkg: youtube-dl 2019.10.16-1

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:34:10 UTC (rev 516237)
+++ PKGBUILD2019-10-15 22:39:34 UTC (rev 516238)
@@ -3,7 +3,7 @@
 # Contributor: Eric Bélanger 
 
 pkgname=youtube-dl
-pkgver=2019.09.28
+pkgver=2019.10.16
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -15,7 +15,7 @@
 'atomicparsley: for embedding thumbnails into m4a files'
 'python-pycryptodome: for hlsnative downloader')
 
source=(https://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('50a0dfbf6d86eb2b7b461fd3aaa4fc2bc653d8bc0c728a9ead564f6ae602335b'
+sha256sums=('f2acb43ae419ee6c33e94989cada162b4566755dc1d5e0935368952290a92b21'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:34:00
  Author: felixonmars
Revision: 516236

upgpkg: tamarin-prover 1.4.1-165

rebuild with shakespeare 2.0.22

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:32:22 UTC (rev 516235)
+++ PKGBUILD2019-10-15 20:34:00 UTC (rev 516236)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=164
+pkgrel=165
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io";
 license=("GPL")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:34:10
  Author: felixonmars
Revision: 516237

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 516236, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
516236, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:34:10 UTC (rev 516237)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.1
+pkgrel=165
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="https://tamarin-prover.github.io";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz";)
+sha512sums=('4d3aeae02be5d430bff6c55d78656e3c9a648674d235bfeb36ce227a39abd3054a132b99ff8040abf05d8e26506fe85d21ecfb6fce73062dd45b5ba98d941144')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests --ghc-option='-pie'
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:32:12
  Author: felixonmars
Revision: 516234

upgpkg: hledger-web 1.15-13

rebuild with shakespeare 2.0.22

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:30:42 UTC (rev 516233)
+++ PKGBUILD2019-10-15 20:32:12 UTC (rev 516234)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.15
-pkgrel=12
+pkgrel=13
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:32:22
  Author: felixonmars
Revision: 516235

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 516234, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 516234, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:32:22 UTC (rev 516235)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.15
+pkgrel=13
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-data-default' 
'haskell-decimal'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('1743835e21cf7b6c38ef31e293e0db80d1bf87dd064f382678547d2430b04f95c6d2dcf6d5175179e43f151581b239dead2400b208bd1cdda3bafbf2ca30')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:30:33
  Author: felixonmars
Revision: 516232

upgpkg: hledger-ui 1.15-5

rebuild with shakespeare 2.0.22

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:29:36 UTC (rev 516231)
+++ PKGBUILD2019-10-15 20:30:33 UTC (rev 516232)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.15
-pkgrel=4
+pkgrel=5
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:30:42
  Author: felixonmars
Revision: 516233

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-ui/repos/community-staging-x86_64/
  hledger-ui/repos/community-staging-x86_64/PKGBUILD
(from rev 516232, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 516232, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:30:42 UTC (rev 516233)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.15
+pkgrel=5
+pkgdesc="Curses-style user interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-base-compat-batteries' 'haskell-cmdargs' 
'haskell-data-default' 'haskell-fsnotify'
+ 'haskell-microlens' 'haskell-microlens-platform' 'haskell-megaparsec' 
'haskell-pretty-show'
+ 'haskell-safe' 'haskell-split' 'haskell-text-zipper' 'haskell-vector' 
'haskell-brick'
+ 'haskell-vty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('67b5f6d013b9aed9e139b0f87510ee01e07c78ca8a003d8db74f3d851d00acf4df1f2b991e0e7b4ed847a2bdf5d38412798e02581c332b4d7c527155f5232565')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:29:36
  Author: felixonmars
Revision: 516231

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger/repos/community-staging-x86_64/
  hledger/repos/community-staging-x86_64/PKGBUILD
(from rev 516230, hledger/trunk/PKGBUILD)

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

Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 516230, 
hledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:29:36 UTC (rev 516231)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.15.2
+pkgrel=4
+pkgdesc="Command-line interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat-batteries' 
'haskell-cmdargs'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-diff' 
'haskell-easytest'
+ 'haskell-hashable' 'haskell-hledger-lib' 'haskell-lucid' 
'haskell-math-functions'
+ 'haskell-megaparsec' 'haskell-old-time' 'haskell-pretty-show' 
'haskell-regex-tdfa'
+ 'haskell-safe' 'haskell-shakespeare' 'haskell-split' 
'haskell-tabular' 'haskell-temporary'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 
'haskell-utility-ht'
+ 'haskell-wizards')
+makedepends=('ghc' 'haskell-extra' 'haskell-test-framework' 
'haskell-test-framework-hunit'
+ 'haskell-timeit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('77362ab356f16abe6742a1c59985b4e31a8901fb236083eb8fb77689e9ccf99e76f8bde722a4e05daebf0c23654b5bf2d1ecd2e7613b5a8ab85efd99d3282fc3')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fterminfo -fthreaded
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:29:26
  Author: felixonmars
Revision: 516230

upgpkg: hledger 1.15.2-4

rebuild with shakespeare 2.0.22

Modified:
  hledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:27:50 UTC (rev 516229)
+++ PKGBUILD2019-10-15 20:29:26 UTC (rev 516230)
@@ -3,7 +3,7 @@
 
 pkgname=hledger
 pkgver=1.15.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Command-line interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:27:50
  Author: felixonmars
Revision: 516229

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 516228, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:27:50 UTC (rev 516229)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20190912
+pkgrel=14
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/";
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'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-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver";)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+
+  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup -j1
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:27:40
  Author: felixonmars
Revision: 516228

upgpkg: git-annex 7.20190912-14

rebuild with shakespeare 2.0.22

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:19:50 UTC (rev 516227)
+++ PKGBUILD2019-10-15 20:27:40 UTC (rev 516228)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20190912
-pkgrel=13
+pkgrel=14
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/";
 license=("AGPL3")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:19:40
  Author: felixonmars
Revision: 516226

upgpkg: haskell-yesod-static 1.6.0.1-203

rebuild with shakespeare 2.0.22

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:18:30 UTC (rev 516225)
+++ PKGBUILD2019-10-15 20:19:40 UTC (rev 516226)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0.1
-pkgrel=202
+pkgrel=203
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:19:50
  Author: felixonmars
Revision: 516227

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
516226, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:19:50 UTC (rev 516227)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.0.1
+pkgrel=203
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('2e1e4873248d435a9d58f3075b6c06cde2edcdd520f700dc7f0427039c236d28787f62a643a8cf57b74d85a885625474a5662b91a56c25e8f4d1737be525bc2f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:18:30
  Author: felixonmars
Revision: 516225

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
516224, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:18:30 UTC (rev 516225)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.6.2
+pkgrel=30
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="https://www.yesodweb.com";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-blaze-html' 'haskell-case-insensitive' 'haskell-conduit'
+ 'haskell-cookie' 'haskell-hspec-core' 'haskell-html-conduit' 
'haskell-http-types'
+ 'haskell-network' 'haskell-pretty-show' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('253279e58cfaf2afa6d728d7188e84603b2d575c344e76e3742c146a400eb77a37067dde571e9ba84a0cf5dcdae239f58aa77144e95ae57b33beae4b2ac08b93')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:18:21
  Author: felixonmars
Revision: 516224

upgpkg: haskell-yesod-test 1.6.6.2-30

rebuild with shakespeare 2.0.22

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:17:22 UTC (rev 516223)
+++ PKGBUILD2019-10-15 20:18:21 UTC (rev 516224)
@@ -3,7 +3,7 @@
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
 pkgver=1.6.6.2
-pkgrel=29
+pkgrel=30
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="https://www.yesodweb.com";
 license=('MIT')


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:17:06
  Author: felixonmars
Revision: 516220

upgpkg: haskell-yesod-auth 1.6.8-19

rebuild with shakespeare 2.0.22

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:15:56 UTC (rev 516219)
+++ PKGBUILD2019-10-15 20:17:06 UTC (rev 516220)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.8
-pkgrel=18
+pkgrel=19
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:17:16
  Author: felixonmars
Revision: 516221

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
516220, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:17:16 UTC (rev 516221)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.8
+pkgrel=19
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('d237b669f4fbd2838d50427d210c548c37d9866fc5790127563ab826a646b690d3e2ed3b0ca2db22c2c195aa7cc4d73e8f3bc4a385382b464d4d65724747b34b')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:15:46
  Author: felixonmars
Revision: 516218

upgpkg: haskell-yesod 1.6.0-351

rebuild with shakespeare 2.0.22

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:14:56 UTC (rev 516217)
+++ PKGBUILD2019-10-15 20:15:46 UTC (rev 516218)
@@ -4,7 +4,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.6.0
-pkgrel=350
+pkgrel=351
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:15:56
  Author: felixonmars
Revision: 516219

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 516218, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:15:56 UTC (rev 516219)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.6.0
+pkgrel=351
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-blaze-html' 'haskell-blaze-markup'
+ 'haskell-data-default-class' 'haskell-fast-logger' 
'haskell-monad-logger'
+ 'haskell-resourcet' 'haskell-shakespeare' 'haskell-streaming-commons'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-wai-extra' 
'haskell-wai-logger'
+ 'haskell-warp' 'haskell-yaml' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('36caa5ee5c27a2355aff9e5dc210100661670717e251bb42bac48c02cd6979c38ae7b5fda1dd2e264aefb7b5b3808f7ccc9e511fd38b6de7090e16c7a91e1b15')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:14:46
  Author: felixonmars
Revision: 516216

upgpkg: haskell-yesod-form 1.6.7-12

rebuild with shakespeare 2.0.22

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:13:36 UTC (rev 516215)
+++ PKGBUILD2019-10-15 20:14:46 UTC (rev 516216)
@@ -4,7 +4,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.6.7
-pkgrel=11
+pkgrel=12
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:14:56
  Author: felixonmars
Revision: 516217

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
516216, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:14:56 UTC (rev 516217)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.6.7
+pkgrel=12
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-data-default' 
'haskell-email-validate'
+ 'haskell-network-uri' 'haskell-persistent' 'haskell-resourcet' 
'haskell-shakespeare'
+ 'haskell-wai' 'haskell-xss-sanitize' 'haskell-yesod-core' 
'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a23c2cb67ed0a87afde9e9e903aa789f8fd9c071893a1bebd0ff9dc3dec6e8e03dd08a4a7ef6ef2d438fbf62597ea0181a038bd7bb5631199c9be83d2a8aef0c')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:13:36
  Author: felixonmars
Revision: 516215

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 516214, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:13:36 UTC (rev 516215)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.6.0.2
+pkgrel=100
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('8014d1bcb5101bfad61911377e4122b07f41b4e98bd20c8f7a205d151caa73dbe4b1cc526f1f3d4bb2323920b290f080c77649e0f368ca017cd50389a7f7120c')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:13:27
  Author: felixonmars
Revision: 516214

upgpkg: haskell-yesod-persistent 1.6.0.2-100

rebuild with shakespeare 2.0.22

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:12:36 UTC (rev 516213)
+++ PKGBUILD2019-10-15 20:13:27 UTC (rev 516214)
@@ -4,7 +4,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0.2
-pkgrel=99
+pkgrel=100
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:12:36
  Author: felixonmars
Revision: 516213

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
516212, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:12:36 UTC (rev 516213)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=595
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:12:25
  Author: felixonmars
Revision: 516212

upgpkg: haskell-yesod-default 1.2.0-595

rebuild with shakespeare 2.0.22

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:11:39 UTC (rev 516211)
+++ PKGBUILD2019-10-15 20:12:25 UTC (rev 516212)
@@ -4,7 +4,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=594
+pkgrel=595
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:11:39
  Author: felixonmars
Revision: 516211

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD (from rev 
516210, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:11:39 UTC (rev 516211)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.6.16.1
+pkgrel=13
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-auto-update' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 'haskell-cereal'
+ 'haskell-clientsession' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cookie'
+ 'haskell-fast-logger' 'haskell-http-types' 'haskell-memory'
+ 'haskell-monad-logger' 'haskell-old-locale' 'haskell-path-pieces' 
'haskell-primitive'
+ 'haskell-random' 'haskell-resourcet' 'haskell-rio' 
'haskell-shakespeare'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-wai' 'haskell-wai-extra' 'haskell-wai-logger' 'haskell-warp' 
'haskell-word8')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('45084c7ae14cfaaad08725d775635051d0e03193b798448f2fd4fdea8b6b4f739ce5fbaa316e9e16ffeb6c3b2f89c0f96487910ca337b0bc0ee9e274eb66a675')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:11:29
  Author: felixonmars
Revision: 516210

upgpkg: haskell-yesod-core 1.6.16.1-13

rebuild with shakespeare 2.0.22

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:10:19 UTC (rev 516209)
+++ PKGBUILD2019-10-15 20:11:29 UTC (rev 516210)
@@ -4,7 +4,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.6.16.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:10:10
  Author: felixonmars
Revision: 516208

upgpkg: haskell-dav 1.3.3-104

rebuild with shakespeare 2.0.22

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:09:16 UTC (rev 516207)
+++ PKGBUILD2019-10-15 20:10:10 UTC (rev 516208)
@@ -4,7 +4,7 @@
 _hkgname=DAV
 pkgname=haskell-dav
 pkgver=1.3.3
-pkgrel=103
+pkgrel=104
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV";
 license=("GPL3")


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:10:19
  Author: felixonmars
Revision: 516209

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-dav/repos/community-staging-x86_64/PKGBUILD (from rev 516208, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:10:19 UTC (rev 516209)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.3
+pkgrel=104
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV";
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('bbc9a4d685e25ac763c05dd8dc72d7db39196dbbb0cd898b66f644abc8333cd82950439fd446770c5aae737fd863afe881129ce551dadf9d0f75ef52df738fae')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-mtl-compat
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:09:07
  Author: felixonmars
Revision: 516206

upgpkg: haskell-xml-hamlet 0.5.0.1-6

rebuild with shakespeare 2.0.22

Modified:
  haskell-xml-hamlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:08:20 UTC (rev 516205)
+++ PKGBUILD2019-10-15 20:09:07 UTC (rev 516206)
@@ -4,7 +4,7 @@
 _hkgname=xml-hamlet
 pkgname=haskell-xml-hamlet
 pkgver=0.5.0.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Hamlet-style quasiquoter for XML content"
 url="http://www.yesodweb.com/";
 license=("BSD")


[arch-commits] Commit in haskell-xml-hamlet/repos (2 files)

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:09:16
  Author: felixonmars
Revision: 516207

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-xml-hamlet/repos/community-staging-x86_64/
  haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD
(from rev 516206, haskell-xml-hamlet/trunk/PKGBUILD)

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

Copied: haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD (from rev 
516206, haskell-xml-hamlet/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:09:16 UTC (rev 516207)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-hamlet
+pkgname=haskell-xml-hamlet
+pkgver=0.5.0.1
+pkgrel=6
+pkgdesc="Hamlet-style quasiquoter for XML content"
+url="http://www.yesodweb.com/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-shakespeare"
+ "haskell-xml-conduit")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('273dbb637c6e37fcc3b180448ccee0dce8996319d653cc3833fef302a297e8fdc805958b4ebc6e015cbfb2ae8b60a8325108b9d6dcaab052b460ff27a404de39')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:08:20
  Author: felixonmars
Revision: 516205

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-shakespeare/repos/community-staging-x86_64/
  haskell-shakespeare/repos/community-staging-x86_64/PKGBUILD
(from rev 516204, haskell-shakespeare/trunk/PKGBUILD)

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

Copied: haskell-shakespeare/repos/community-staging-x86_64/PKGBUILD (from rev 
516204, haskell-shakespeare/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:08:20 UTC (rev 516205)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shakespeare
+pkgname=haskell-shakespeare
+pkgver=2.0.22
+pkgrel=1
+pkgdesc="A toolkit for making compile-time interpolated templates"
+url="https://www.yesodweb.com/book/shakespearean-templates";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-blaze-html' 
'haskell-blaze-markup' 'haskell-exceptions'
+ 'haskell-scientific' 'haskell-unordered-containers'
+ 'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('395cefa08407a6c8e398c798d3057286fab5a2821bde68bec1cc92c0f0fb2bdefaf7c13181851df19dbb7a85fe88ad61bbcb6b2424989f0348f42b6e7be66496')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-test_roy -f-test_coffee -f-test_export
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:08:11
  Author: felixonmars
Revision: 516204

upgpkg: haskell-shakespeare 2.0.22-1

rebuild with shakespeare 2.0.22

Modified:
  haskell-shakespeare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 20:06:30 UTC (rev 516203)
+++ PKGBUILD2019-10-15 20:08:11 UTC (rev 516204)
@@ -3,7 +3,7 @@
 
 _hkgname=shakespeare
 pkgname=haskell-shakespeare
-pkgver=2.0.21
+pkgver=2.0.22
 pkgrel=1
 pkgdesc="A toolkit for making compile-time interpolated templates"
 url="https://www.yesodweb.com/book/shakespearean-templates";
@@ -14,7 +14,7 @@
  'haskell-vector')
 makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('ca796206aafffb5a96c75d305e90bad48f17d213b24dce8c8adcc9c94299ed78b0a2b48b5116d18b0ee26b413e845df53d387d3ca1b3d4c127e9b02b9f124af7')
+sha512sums=('395cefa08407a6c8e398c798d3057286fab5a2821bde68bec1cc92c0f0fb2bdefaf7c13181851df19dbb7a85fe88ad61bbcb6b2424989f0348f42b6e7be66496')
 
 build() {
 cd $_hkgname-$pkgver


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:02:47
  Author: felixonmars
Revision: 516201

upgpkg: haskell-turtle 1.5.15-1

rebuild with turtle 1.5.15

Modified:
  haskell-turtle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 19:54:23 UTC (rev 516200)
+++ PKGBUILD2019-10-15 20:02:47 UTC (rev 516201)
@@ -3,8 +3,8 @@
 
 _hkgname=turtle
 pkgname=haskell-turtle
-pkgver=1.5.14
-pkgrel=26
+pkgver=1.5.15
+pkgrel=1
 pkgdesc="Shell programming, Haskell-style"
 url="https://github.com/Gabriel439/Haskell-Turtle-Library";
 license=('BSD')
@@ -11,15 +11,15 @@
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-exceptions'
  'haskell-foldl' 'haskell-hostname' 'haskell-managed' 
'haskell-optparse-applicative'
- 'haskell-optional-args' 'haskell-system-fileio' 
'haskell-system-filepath'
- 'haskell-temporary' 'haskell-unix-compat')
+ 'haskell-optional-args' 'haskell-streaming-commons' 
'haskell-system-fileio'
+ 'haskell-system-filepath' 'haskell-temporary' 'haskell-unix-compat')
 makedepends=('ghc' 'haskell-doctest')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('a07c1db409d99ef5f844abce742b4ffcb467c883808881a255bb30055b2646f7ca943ed5fe59b7248e7a34170a05c0af61b23e063b87d4ad272c1413fa700900')
+sha512sums=('60560c9746bf0aa1fa37480900f6d2532499ee77d26cc604418c07c8e99e1ef63dfc1697cd9270553b161bbd987d2132ea319d7f3e59f711c1e50a6dacd95fc4')
 
 prepare() {
 sed -i 's/]/, "-dynamic"]/' $_hkgname-$pkgver/test/Main.hs
-sed -i -e '/semigroups/d' -e 's/< *0.8/<1/' 
$_hkgname-$pkgver/$_hkgname.cabal
+sed -i -e '/semigroups/d' -e '/fail,/d' $_hkgname-$pkgver/$_hkgname.cabal
 }
 
 build() {


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

2019-10-15 Thread Felix Yan via arch-commits
Date: Tuesday, October 15, 2019 @ 20:02:57
  Author: felixonmars
Revision: 516202

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-turtle/repos/community-staging-x86_64/PKGBUILD (from rev 
516201, haskell-turtle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 20:02:57 UTC (rev 516202)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=turtle
+pkgname=haskell-turtle
+pkgver=1.5.15
+pkgrel=1
+pkgdesc="Shell programming, Haskell-style"
+url="https://github.com/Gabriel439/Haskell-Turtle-Library";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-exceptions'
+ 'haskell-foldl' 'haskell-hostname' 'haskell-managed' 
'haskell-optparse-applicative'
+ 'haskell-optional-args' 'haskell-streaming-commons' 
'haskell-system-fileio'
+ 'haskell-system-filepath' 'haskell-temporary' 'haskell-unix-compat')
+makedepends=('ghc' 'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('60560c9746bf0aa1fa37480900f6d2532499ee77d26cc604418c07c8e99e1ef63dfc1697cd9270553b161bbd987d2132ea319d7f3e59f711c1e50a6dacd95fc4')
+
+prepare() {
+sed -i 's/]/, "-dynamic"]/' $_hkgname-$pkgver/test/Main.hs
+sed -i -e '/semigroups/d' -e '/fail,/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-10-15 Thread Florian Pritz via arch-commits
Date: Tuesday, October 15, 2019 @ 17:39:11
  Author: bluewind
Revision: 516194

upgpkg: ack 3.1.2-1

upstream update

Modified:
  ack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 16:42:38 UTC (rev 516193)
+++ PKGBUILD2019-10-15 17:39:11 UTC (rev 516194)
@@ -3,7 +3,7 @@
 # Contributor: Michael S. Walker 
 
 pkgname=ack
-pkgver=3.1.1
+pkgver=3.1.2
 pkgrel=1
 pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees 
of heterogeneous source code"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl-file-next')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/P/PE/PETDANCE/$pkgname-v$pkgver.tar.gz";)
-md5sums=('3f74c5afa2221a1d2e1b121b3215571d')
+md5sums=('e2a175e0fdb80469924b01c727947332')
 
 build() {
   cd "$srcdir/$pkgname-v$pkgver"


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

2019-10-15 Thread Florian Pritz via arch-commits
Date: Tuesday, October 15, 2019 @ 17:39:14
  Author: bluewind
Revision: 516195

archrelease: copy trunk to community-any

Added:
  ack/repos/community-any/PKGBUILD
(from rev 516194, ack/trunk/PKGBUILD)
Deleted:
  ack/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-15 17:39:11 UTC (rev 516194)
+++ PKGBUILD2019-10-15 17:39:14 UTC (rev 516195)
@@ -1,31 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor:  TDY 
-# Contributor: Michael S. Walker 
-
-pkgname=ack
-pkgver=3.1.1
-pkgrel=1
-pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees 
of heterogeneous source code"
-arch=('any')
-url="http://betterthangrep.com/";
-license=('GPL' 'PerlArtistic')
-depends=('perl-file-next')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/P/PE/PETDANCE/$pkgname-v$pkgver.tar.gz";)
-md5sums=('3f74c5afa2221a1d2e1b121b3215571d')
-
-build() {
-  cd "$srcdir/$pkgname-v$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "$srcdir/$pkgname-v$pkgver"
-  make test
-}
-
-package() {
-  cd "$srcdir/$pkgname-v$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: ack/repos/community-any/PKGBUILD (from rev 516194, ack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-15 17:39:14 UTC (rev 516195)
@@ -0,0 +1,31 @@
+# Maintainer: Florian Pritz 
+# Contributor:  TDY 
+# Contributor: Michael S. Walker 
+
+pkgname=ack
+pkgver=3.1.2
+pkgrel=1
+pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees 
of heterogeneous source code"
+arch=('any')
+url="http://betterthangrep.com/";
+license=('GPL' 'PerlArtistic')
+depends=('perl-file-next')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/P/PE/PETDANCE/$pkgname-v$pkgver.tar.gz";)
+md5sums=('e2a175e0fdb80469924b01c727947332')
+
+build() {
+  cd "$srcdir/$pkgname-v$pkgver"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-v$pkgver"
+  make test
+}
+
+package() {
+  cd "$srcdir/$pkgname-v$pkgver"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in ghostscript/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2019-10-15 Thread Andreas Radke via arch-commits
Date: Tuesday, October 15, 2019 @ 17:29:19
  Author: andyrtr
Revision: 365056

archrelease: copy trunk to testing-x86_64

Added:
  ghostscript/repos/testing-x86_64/
  ghostscript/repos/testing-x86_64/PKGBUILD
(from rev 365055, ghostscript/trunk/PKGBUILD)

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

Copied: ghostscript/repos/testing-x86_64/PKGBUILD (from rev 365055, 
ghostscript/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-10-15 17:29:19 UTC (rev 365056)
@@ -0,0 +1,100 @@
+# Maintainer: AndyRTR 
+
+pkgbase=ghostscript
+pkgname=(ghostscript ghostxps ghostpcl)
+pkgver=9.50
+pkgrel=1
+pkgdesc="An interpreter for the PostScript language"
+url="https://www.ghostscript.com/";
+arch=('x86_64')
+license=('AGPL3' 'custom')
+depends=('libxt' 'libcups' 'fontconfig' 'zlib' 'libpng' 'libjpeg' 'jbig2dec'
+ 'libtiff' 'lcms2' 'dbus' 'libpaper' 'ijs' 'openjpeg2' 'libidn')
+makedepends=('gtk3' 'gnutls' 'glu' 'freeglut')
+# https://github.com/ArtifexSoftware/ghostpdl-downloads/releases
+source=(https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${pkgver/./}/ghostpdl-${pkgver}.tar.xz)
+sha512sums=('d6add852f2cb3b2fc7b5d40c42c5d5450f16a057a585f2011b675906b6e3cbf519278e80075459a51c1b78f737146b8a8fe78791a09ca521559f80b41d9ad3eb')
+
+prepare() {
+  cd ghostpdl-${pkgver}
+
+  # force it to use system-libs
+  rm -r cups/libs expat ijs jbig2dec jpeg lcms2mt libpng openjpeg tiff zlib
+  # using tree freetype because of https://bugs.archlinux.org/task/56849
+  # lcms2mt is the new lcms2 fork aimed to replace lcms2 in a thread safe way
+  
+  # 
http://git.ghostscript.com/?p=ghostpdl.git;a=commit;h=40dc5b409c6262b18b4bf5386b5482ead4c511e3
+  # libs link unwanted to libgpdl that isn't installed
+  rm -rf gpdl
+}
+
+build() {
+  cd ghostpdl-${pkgver}
+  ./configure --prefix=/usr \
+  --enable-dynamic \
+  --with-ijs \
+  --with-jbig2dec \
+  --with-x \
+  --with-drivers=ALL \
+  --with-fontpath=/usr/share/fonts/gsfonts \
+  --enable-fontconfig \
+  --enable-freetype \
+  --enable-openjpeg \
+  --without-luratech \
+  --with-system-libtiff \
+  --with-libpaper \
+  --disable-compile-inits #--help # needed for linking with 
system-zlib
+
+  make so-only
+}
+
+package_ghostscript() {
+  optdepends=('texlive-core:  needed for dvipdf'
+  'gtk3:  needed for gsx')
+
+  cd ghostpdl-${pkgver}
+
+  make DESTDIR="${pkgdir}" \
+   CUPSSERVERROOT="${pkgdir}$(cups-config --serverroot)" \
+   CUPSSERVERBIN="${pkgdir}$(cups-config --serverbin)" \
+   soinstall
+  ln -s gsc "${pkgdir}"/usr/bin/gs
+
+  # remove useless broken doc/ symlink - FS#59507
+  rm -f "${pkgdir}"/usr/share/ghostscript/${pkgver}/doc
+
+  # remove unwanted localized manpages
+  rm -r "${pkgdir}"/usr/share/man/de
+
+  install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 LICENSE
+}
+
+package_ghostxps() {
+  pkgdesc="${pkgdesc/PostScript/XPS document}"
+  depends=("ghostscript=${pkgver}-${pkgrel}")
+
+  cd ghostpdl-${pkgver}
+
+  install -Dt "${pkgdir}"/usr/bin sobin/gxpsc
+  ln -s gxpsc "${pkgdir}"/usr/bin/gxps
+
+  install -Dt "${pkgdir}"/usr/lib sobin/libgxps.so.${pkgver%.*}
+  ln -s libgxps.so.${pkgver%.*} "${pkgdir}"/usr/lib/libgxps.so.${pkgver%rc*}
+
+  install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 LICENSE
+}
+
+package_ghostpcl() {
+  pkgdesc="${pkgdesc/PostScript/PCL 6}"
+  depends=("ghostscript=${pkgver}-${pkgrel}")
+
+  cd ghostpdl-${pkgver}
+
+  install -Dt "${pkgdir}"/usr/bin sobin/gpcl6c
+  ln -sf gpcl6c "${pkgdir}"/usr/bin/gpcl6
+
+  install -Dt "${pkgdir}"/usr/lib sobin/libgpcl6.so.${pkgver%.*}
+  ln -s libgpcl6.so.${pkgver%.*} "${pkgdir}"/usr/lib/libgpcl6.so.${pkgver%rc*}
+
+  install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 LICENSE
+}


[arch-commits] Commit in ghostscript/trunk (CVE-2019-10216.diff PKGBUILD)

2019-10-15 Thread Andreas Radke via arch-commits
Date: Tuesday, October 15, 2019 @ 17:29:14
  Author: andyrtr
Revision: 365055

upgpkg: ghostscript 9.50-1

upstream update 9.50

Modified:
  ghostscript/trunk/PKGBUILD
Deleted:
  ghostscript/trunk/CVE-2019-10216.diff

-+
 CVE-2019-10216.diff |   50 --
 PKGBUILD|   12 
 2 files changed, 4 insertions(+), 58 deletions(-)

Deleted: CVE-2019-10216.diff
===
--- CVE-2019-10216.diff 2019-10-15 17:21:24 UTC (rev 365054)
+++ CVE-2019-10216.diff 2019-10-15 17:29:14 UTC (rev 365055)
@@ -1,50 +0,0 @@
-From 5b85ddd19a8420a1bd2d5529325be35d78e94234 Mon Sep 17 00:00:00 2001
-From: Chris Liddell 
-Date: Fri, 2 Aug 2019 15:18:26 +0100
-Subject: [PATCH] Bug 701394: protect use of .forceput with executeonly
-

- Resource/Init/gs_type1.ps | 14 +++---
- 1 file changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/Resource/Init/gs_type1.ps b/Resource/Init/gs_type1.ps
-index 6c7735b..a039cce 100644
 a/Resource/Init/gs_type1.ps
-+++ b/Resource/Init/gs_type1.ps
-@@ -118,25 +118,25 @@
-  ( to be the same as glyph: ) print 1 index //== exec 
} if
-3 index exch 3 index .forceput
-  % 
scratch(string) RAGL(dict) AGL(dict) CharStrings(dict) cstring gname
-- }
-+ }executeonly
-  {pop} ifelse
--   } forall
-+   } executeonly forall
-pop pop
-- }
-+ } executeonly
-  {
-pop pop pop
-  } ifelse
--   }
-+   } executeonly
-{
-% 
scratch(string) RAGL(dict) AGL(dict) CharStrings(dict) cstring gname
-  pop pop
-} ifelse
-- } forall
-+ } executeonly forall
-  3 1 roll pop pop
-- } if
-+ } executeonly if
-  pop
-  dup /.AGLprocessed~GS //true .forceput
--   } if
-+   } executeonly if
- 
-%% We need to excute the C .buildfont1 in a stopped context so that, if 
there
-%% are errors we can put the stack back sanely and exit. Otherwise callers 
won't
--- 
-2.9.1
-
-

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 17:21:24 UTC (rev 365054)
+++ PKGBUILD2019-10-15 17:29:14 UTC (rev 365055)
@@ -2,8 +2,8 @@
 
 pkgbase=ghostscript
 pkgname=(ghostscript ghostxps ghostpcl)
-pkgver=9.27
-pkgrel=2
+pkgver=9.50
+pkgrel=1
 pkgdesc="An interpreter for the PostScript language"
 url="https://www.ghostscript.com/";
 arch=('x86_64')
@@ -12,16 +12,12 @@
  'libtiff' 'lcms2' 'dbus' 'libpaper' 'ijs' 'openjpeg2' 'libidn')
 makedepends=('gtk3' 'gnutls' 'glu' 'freeglut')
 # https://github.com/ArtifexSoftware/ghostpdl-downloads/releases
-source=(https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${pkgver/./}/ghostpdl-${pkgver}.tar.xz
-CVE-2019-10216.diff)
-sha512sums=('bbdecbde3bebb0e22eb8976fe1e91d94b8d585aa72f9a2475ee58598de223ae31bc467eb518690dd05a4a4e1382cde7a682b854c324e985852250fde29c6'
-
'71e8aa1573cecde1e7432ce43ffec719615ee86da0d30cbc27be1ff39a738570768037c8af10b968e07b1aa1af82ed6fa61045d5f9cf207e201177eb77560ca4')
+source=(https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${pkgver/./}/ghostpdl-${pkgver}.tar.xz)
+sha512sums=('d6add852f2cb3b2fc7b5d40c42c5d5450f16a057a585f2011b675906b6e3cbf519278e80075459a51c1b78f737146b8a8fe78791a09ca521559f80b41d9ad3eb')
 
 prepare() {
   cd ghostpdl-${pkgver}
 
-  patch -Np1 -i ../CVE-2019-10216.diff
-
   # force it to use system-libs
   rm -r cups/libs expat ijs jbig2dec jpeg lcms2mt libpng openjpeg tiff zlib
   # using tree freetype because of https://bugs.archlinux.org/task/56849


[arch-commits] Commit in jbig2dec/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2019-10-15 Thread Andreas Radke via arch-commits
Date: Tuesday, October 15, 2019 @ 17:21:24
  Author: andyrtr
Revision: 365054

archrelease: copy trunk to testing-x86_64

Added:
  jbig2dec/repos/testing-x86_64/
  jbig2dec/repos/testing-x86_64/PKGBUILD
(from rev 365053, jbig2dec/trunk/PKGBUILD)

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

Copied: jbig2dec/repos/testing-x86_64/PKGBUILD (from rev 365053, 
jbig2dec/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-10-15 17:21:24 UTC (rev 365054)
@@ -0,0 +1,26 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Bartłomiej Piotrowski
+# Contributor: Stefan Husmann 
+
+pkgname=jbig2dec
+pkgver=0.17
+_gsver=gs950
+pkgrel=1
+pkgdesc='Decoder implementation of the JBIG2 image compression format'
+url='https://jbig2dec.com/'
+arch=('x86_64')
+license=('GPL3')
+depends=('libpng')
+source=("https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/${_gsver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('e1ac4af318fb31e097b558e6b88334d35e035d1378b152aabb025f2918969a3a79c6a6644848fccf5d4eaa6efaf2b0422ff01d5bbcde8245f7af6fa29022d9b8')
+
+build() {
+   cd ${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   make DESTDIR="${pkgdir}" install
+}


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

2019-10-15 Thread Andreas Radke via arch-commits
Date: Tuesday, October 15, 2019 @ 17:21:16
  Author: andyrtr
Revision: 365053

upgpkg: jbig2dec 0.17-1

upstream update 0.17

Modified:
  jbig2dec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 17:10:42 UTC (rev 365052)
+++ PKGBUILD2019-10-15 17:21:16 UTC (rev 365053)
@@ -3,8 +3,8 @@
 # Contributor: Stefan Husmann 
 
 pkgname=jbig2dec
-pkgver=0.16
-_gsver=gs927
+pkgver=0.17
+_gsver=gs950
 pkgrel=1
 pkgdesc='Decoder implementation of the JBIG2 image compression format'
 url='https://jbig2dec.com/'
@@ -12,15 +12,15 @@
 license=('GPL3')
 depends=('libpng')
 
source=("https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/${_gsver}/${pkgname}-${pkgver}.tar.gz";)
-sha256sums=('a4f6bf15d217e7816aa61b92971597c801e81f0a63f9fe1daee60fb88e0f0602')
+sha512sums=('e1ac4af318fb31e097b558e6b88334d35e035d1378b152aabb025f2918969a3a79c6a6644848fccf5d4eaa6efaf2b0422ff01d5bbcde8245f7af6fa29022d9b8')
 
 build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
+   cd ${pkgname}-${pkgver}
./configure --prefix=/usr
make
 }
 
 package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
+   cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in xf86-video-ati/trunk (PKGBUILD)

2019-10-15 Thread Andreas Radke via arch-commits
Date: Tuesday, October 15, 2019 @ 17:10:34
  Author: andyrtr
Revision: 365051

upgpkg: xf86-video-ati 1:19.1.0-1

upstream update 19.1.0

Modified:
  xf86-video-ati/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 16:42:33 UTC (rev 365050)
+++ PKGBUILD2019-10-15 17:10:34 UTC (rev 365051)
@@ -2,7 +2,7 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xf86-video-ati
-pkgver=19.0.1
+pkgver=19.1.0
 pkgrel=1
 epoch=1
 pkgdesc="X.org ati video driver"
@@ -14,7 +14,7 @@
 conflicts=('xorg-server<1.20.0' 'X-ABI-VIDEODRV_VERSION<24' 
'X-ABI-VIDEODRV_VERSION>=25')
 groups=('xorg-drivers')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha512sums=('e04c5395e3a49d81b8f7a4b0e11fe8c9ebd17af056a4eab4541873796dce05b103c93fb185f3a00873010df0655cd7311e6d27e177aeb7345c4c8017bbd1eb17'
+sha512sums=('73a81f6c492daf2e89067fb52b3033dc0fe6841f109627ddca1aee54a45a738c8c134443753a2a2aaa2c131e1d560057ebc76351ff2304c16407df3ff568fcd6'
 'SKIP')
 validpgpkeys=('B09FAF35BE914521980951145A81AF8E6ADBB200') # Michel Daenzer 

 


[arch-commits] Commit in xf86-video-ati/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2019-10-15 Thread Andreas Radke via arch-commits
Date: Tuesday, October 15, 2019 @ 17:10:42
  Author: andyrtr
Revision: 365052

archrelease: copy trunk to testing-x86_64

Added:
  xf86-video-ati/repos/testing-x86_64/
  xf86-video-ati/repos/testing-x86_64/PKGBUILD
(from rev 365051, xf86-video-ati/trunk/PKGBUILD)

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

Copied: xf86-video-ati/repos/testing-x86_64/PKGBUILD (from rev 365051, 
xf86-video-ati/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-10-15 17:10:42 UTC (rev 365052)
@@ -0,0 +1,46 @@
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xf86-video-ati
+pkgver=19.1.0
+pkgrel=1
+epoch=1
+pkgdesc="X.org ati video driver"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/";
+license=('custom')
+depends=('systemd-libs' 'mesa')
+makedepends=('xorg-server-devel' 'systemd' 'X-ABI-VIDEODRV_VERSION=24.0')
+conflicts=('xorg-server<1.20.0' 'X-ABI-VIDEODRV_VERSION<24' 
'X-ABI-VIDEODRV_VERSION>=25')
+groups=('xorg-drivers')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha512sums=('73a81f6c492daf2e89067fb52b3033dc0fe6841f109627ddca1aee54a45a738c8c134443753a2a2aaa2c131e1d560057ebc76351ff2304c16407df3ff568fcd6'
+'SKIP')
+validpgpkeys=('B09FAF35BE914521980951145A81AF8E6ADBB200') # Michel Daenzer 

+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # Since pacman 5.0.2-2, hardened flags are now enabled in makepkg.conf
+  # With them, module fail to load with undefined symbol.
+  # See https://bugs.archlinux.org/task/55102 / 
https://bugs.archlinux.org/task/54845
+  export CFLAGS=${CFLAGS/-fno-plt}
+  export CXXFLAGS=${CXXFLAGS/-fno-plt}
+  export LDFLAGS=${LDFLAGS/,-z,now}
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make "DESTDIR=${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-10-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 15, 2019 @ 16:41:22
  Author: arojas
Revision: 516191

Rebuild to stop linking to tbb debug libraries

Modified:
  opensubdiv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 16:00:41 UTC (rev 516190)
+++ PKGBUILD2019-10-15 16:41:22 UTC (rev 516191)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=opensubdiv
 pkgver=3.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An Open-Source subdivision surface library"
 arch=(x86_64)
 url="http://graphics.pixar.com/opensubdiv";


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

2019-10-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 15, 2019 @ 16:41:42
  Author: arojas
Revision: 516192

archrelease: copy trunk to community-staging-x86_64

Added:
  opensubdiv/repos/community-staging-x86_64/
  opensubdiv/repos/community-staging-x86_64/PKGBUILD
(from rev 516191, opensubdiv/trunk/PKGBUILD)

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

Copied: opensubdiv/repos/community-staging-x86_64/PKGBUILD (from rev 516191, 
opensubdiv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-15 16:41:42 UTC (rev 516192)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.4.0
+pkgrel=2
+pkgdesc="An Open-Source subdivision surface library"
+arch=(x86_64)
+url="http://graphics.pixar.com/opensubdiv";
+license=('apache')
+depends=(zlib ptex intel-tbb libxcursor xorg-xrandr libxinerama)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz";)
+sha512sums=('b80311aebd74e0c5ce4d185e1baf3626b2a14e9ca113ce7346f06d7506832a7ccdc0e3731c468fa1ebe890099847e808981dfe051bd2ee85fd4dc53c1f10c28c')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}


[arch-commits] Commit in intel-tbb/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-10-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 15, 2019 @ 16:37:20
  Author: arojas
Revision: 365049

archrelease: copy trunk to staging-x86_64

Added:
  intel-tbb/repos/staging-x86_64/
  intel-tbb/repos/staging-x86_64/PKGBUILD
(from rev 365048, intel-tbb/trunk/PKGBUILD)

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

Copied: intel-tbb/repos/staging-x86_64/PKGBUILD (from rev 365048, 
intel-tbb/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-10-15 16:37:20 UTC (rev 365049)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Denis Martinez 
+# Contributor: Bogdan Burlacu 
+
+pkgname=intel-tbb
+pkgver=2019.9
+_tagname=${pkgver/./_U}
+pkgrel=1
+pkgdesc='High level abstract threading library'
+arch=(x86_64)
+url='https://www.threadingbuildingblocks.org/'
+license=(GPL)
+depends=(gcc-libs)
+makedepends=(cmake inetutils)
+source=($pkgname-$pkgver.tar.gz::https://github.com/01org/tbb/archive/$_tagname.tar.gz)
+sha256sums=('15652f5328cf00c576f065e5cd3eaf3317422fe82afb67a9bcec0dc065bd2abe')
+
+build() {
+  cd tbb-$_tagname
+  sed -i '/debug/d' Makefile
+  make
+}
+
+package() {
+  cd tbb-$_tagname
+  install -d "$pkgdir"/usr/lib
+  install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
+  install -d "$pkgdir"/usr/include
+  cp -a include/tbb "$pkgdir"/usr/include
+  cmake \
+-DINSTALL_DIR="$pkgdir"/usr/lib/cmake/TBB \
+-DSYSTEM_NAME=Linux 
-DTBB_VERSION_FILE="$pkgdir"/usr/include/tbb/tbb_stddef.h \
+-P cmake/tbb_config_installer.cmake
+}


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

2019-10-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 15, 2019 @ 16:36:54
  Author: arojas
Revision: 365048

Update to 2019.9, don't build debug libraries, install cmake config (FS#62757)

Modified:
  intel-tbb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-15 13:57:49 UTC (rev 365047)
+++ PKGBUILD2019-10-15 16:36:54 UTC (rev 365048)
@@ -2,9 +2,10 @@
 # Contributor: Stéphane Gaudreault 
 # Contributor: Thomas Dziedzic < gostrc at gmail >
 # Contributor: Denis Martinez 
+# Contributor: Bogdan Burlacu 
 
 pkgname=intel-tbb
-pkgver=2019.8
+pkgver=2019.9
 _tagname=${pkgver/./_U}
 pkgrel=1
 pkgdesc='High level abstract threading library'
@@ -12,11 +13,13 @@
 url='https://www.threadingbuildingblocks.org/'
 license=(GPL)
 depends=(gcc-libs)
+makedepends=(cmake inetutils)
 
source=($pkgname-$pkgver.tar.gz::https://github.com/01org/tbb/archive/$_tagname.tar.gz)
-sha256sums=('7b1fd8caea14be72ae4175896510bf99c809cd7031306a1917565e6de7382fba')
+sha256sums=('15652f5328cf00c576f065e5cd3eaf3317422fe82afb67a9bcec0dc065bd2abe')
 
 build() {
   cd tbb-$_tagname
+  sed -i '/debug/d' Makefile
   make
 }
 
@@ -26,4 +29,8 @@
   install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
   install -d "$pkgdir"/usr/include
   cp -a include/tbb "$pkgdir"/usr/include
+  cmake \
+-DINSTALL_DIR="$pkgdir"/usr/lib/cmake/TBB \
+-DSYSTEM_NAME=Linux 
-DTBB_VERSION_FILE="$pkgdir"/usr/include/tbb/tbb_stddef.h \
+-P cmake/tbb_config_installer.cmake
 }


  1   2   3   >