[arch-commits] Commit in openssh/repos (17 files)

2019-04-21 Thread Gaëtan Bisson via arch-commits
Date: Sunday, April 21, 2019 @ 07:24:35
  Author: bisson
Revision: 351846

db-move: moved openssh from [testing] to [core] (x86_64)

Added:
  openssh/repos/core-x86_64/PKGBUILD
(from rev 351845, openssh/repos/testing-x86_64/PKGBUILD)
  openssh/repos/core-x86_64/PKGBUILD.snap
(from rev 351845, openssh/repos/testing-x86_64/PKGBUILD.snap)
  openssh/repos/core-x86_64/sshd.conf
(from rev 351845, openssh/repos/testing-x86_64/sshd.conf)
  openssh/repos/core-x86_64/sshd.pam
(from rev 351845, openssh/repos/testing-x86_64/sshd.pam)
  openssh/repos/core-x86_64/sshd.service
(from rev 351845, openssh/repos/testing-x86_64/sshd.service)
  openssh/repos/core-x86_64/sshd.socket
(from rev 351845, openssh/repos/testing-x86_64/sshd.socket)
  openssh/repos/core-x86_64/sshd@.service
(from rev 351845, openssh/repos/testing-x86_64/sshd@.service)
  openssh/repos/core-x86_64/sshdgenkeys.service
(from rev 351845, openssh/repos/testing-x86_64/sshdgenkeys.service)
Deleted:
  openssh/repos/core-x86_64/PKGBUILD
  openssh/repos/core-x86_64/PKGBUILD.snap
  openssh/repos/core-x86_64/sshd.conf
  openssh/repos/core-x86_64/sshd.pam
  openssh/repos/core-x86_64/sshd.service
  openssh/repos/core-x86_64/sshd.socket
  openssh/repos/core-x86_64/sshd@.service
  openssh/repos/core-x86_64/sshdgenkeys.service
  openssh/repos/testing-x86_64/

-+
 /PKGBUILD   |   93 +++
 /PKGBUILD.snap  |   98 +
 /sshd.conf  |1 
 /sshd.pam   |6 ++
 /sshd.service   |   17 ++
 /sshd.socket|   10 +++
 /sshd@.service  |9 +++
 /sshdgenkeys.service|   15 +
 core-x86_64/PKGBUILD|   93 ---
 core-x86_64/PKGBUILD.snap   |  100 --
 core-x86_64/sshd.conf   |1 
 core-x86_64/sshd.pam|6 --
 core-x86_64/sshd.service|   17 --
 core-x86_64/sshd.socket |   10 ---
 core-x86_64/sshd@.service   |9 ---
 core-x86_64/sshdgenkeys.service |   15 -
 16 files changed, 249 insertions(+), 251 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2019-04-21 01:00:10 UTC (rev 351845)
+++ core-x86_64/PKGBUILD2019-04-21 07:24:35 UTC (rev 351846)
@@ -1,93 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=7.9p1
-pkgrel=1
-pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
-url='https://www.openssh.com/portable.html'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('linux-headers')
-depends=('krb5' 'openssl' 'libedit' 'ldns')
-optdepends=('xorg-xauth: X11 forwarding'
-'x11-ssh-askpass: input passphrase in X')
-validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
-source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'sshdgenkeys.service'
-'sshd@.service'
-'sshd.service'
-'sshd.socket'
-'sshd.conf'
-'sshd.pam')
-sha256sums=('6b4b3ba2253d84ed3771c8050728d597c91cfce898713beb7b64a305b6f11aad'
-'SKIP'
-'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
-'3a0845737207f4eda221c9c9fb64e766ade9684562d8ba4f705f7ae6826886e5'
-'c5ed9fa629f8f8dbf3bae4edbad4441c36df535088553fe82695c52d7bde30aa'
-'de14363e9d4ed92848e524036d9e6b57b2d35cc77d377b7247c38111d2a3defd'
-'4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
-'64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846')
-
-backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/ssh \
-   --sysconfdir=/etc/ssh \
-   --with-ldns \
-   --with-libedit \
-   --with-ssl-engine \
-   --with-pam \
-   --with-privsep-user=nobody \
-   --with-kerberos5=/usr \
-   --with-xauth=/usr/bin/xauth \
-   --with-md5-passwords \
-   --with-pid-dir=/run \
-   --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin' \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   # Tests require openssh to be already installed system-wide,
-   # also connectivity tests will fail under makechrootpkg since
-# it runs as nobody which has /bin/false as login shell.
-
-   if [[ -e /usr/bin/scp && ! -e /.arch-chroot ]]; then
-   make tests
-   fi
-}
-
-package

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

2019-04-21 Thread Maxim Baz via arch-commits
Date: Sunday, April 21, 2019 @ 08:34:28
  Author: maximbaz
Revision: 452586

upgpkg: browserpass-firefox 3.1.0-1

Modified:
  browserpass-firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 00:57:15 UTC (rev 452585)
+++ PKGBUILD2019-04-21 08:34:28 UTC (rev 452586)
@@ -3,7 +3,7 @@
 _id=browserp...@maximbaz.com
 _name=browserpass-extension
 pkgname=browserpass-firefox
-pkgver=3.0.15
+pkgver=3.1.0
 pkgrel=1
 pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
 arch=('any')
@@ -14,7 +14,7 @@
 
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
 noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('dbf68dc042e3361c1ca1eae3dc01ab35d1c60c55e1d4a97f19823722744a04f6'
+sha256sums=('a8002d8039266701295d6b2b1acdab1e1adf54281267af394a123ceddb37f20a'
 'SKIP'
 'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')


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

2019-04-21 Thread Maxim Baz via arch-commits
Date: Sunday, April 21, 2019 @ 08:34:34
  Author: maximbaz
Revision: 452587

archrelease: copy trunk to community-any

Added:
  browserpass-firefox/repos/community-any/PKGBUILD
(from rev 452586, browserpass-firefox/trunk/PKGBUILD)
Deleted:
  browserpass-firefox/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 08:34:28 UTC (rev 452586)
+++ PKGBUILD2019-04-21 08:34:34 UTC (rev 452587)
@@ -1,39 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=browserp...@maximbaz.com
-_name=browserpass-extension
-pkgname=browserpass-firefox
-pkgver=3.0.15
-pkgrel=1
-pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name}";
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
-
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
-noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('dbf68dc042e3361c1ca1eae3dc01ab35d1c60c55e1d4a97f19823722744a04f6'
-'SKIP'
-'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-mkdir -p "${pkgname}-${pkgver}"
-bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
-}
-
-package() {
-
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
-install -dm755 "${_dest}"
-cp -a "${pkgname}-${pkgver}"/* "${_dest}"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-firefox/repos/community-any/PKGBUILD (from rev 452586, 
browserpass-firefox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 08:34:34 UTC (rev 452587)
@@ -0,0 +1,39 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=browserp...@maximbaz.com
+_name=browserpass-extension
+pkgname=browserpass-firefox
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name}";
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
+
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
+noextract=("${pkgname}-${pkgver}.zip")
+sha256sums=('a8002d8039266701295d6b2b1acdab1e1adf54281267af394a123ceddb37f20a'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+mkdir -p "${pkgname}-${pkgver}"
+bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
+}
+
+package() {
+
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
+install -dm755 "${_dest}"
+cp -a "${pkgname}-${pkgver}"/* "${_dest}"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-04-21 Thread Maxim Baz via arch-commits
Date: Sunday, April 21, 2019 @ 08:35:49
  Author: maximbaz
Revision: 452588

upgpkg: browserpass-chromium 3.1.0-1

Modified:
  browserpass-chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 08:34:34 UTC (rev 452587)
+++ PKGBUILD2019-04-21 08:35:49 UTC (rev 452588)
@@ -3,7 +3,7 @@
 _id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
 _name=browserpass-extension
 pkgname=browserpass-chromium
-pkgver=3.0.15
+pkgver=3.1.0
 pkgrel=1
 pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
 arch=('any')
@@ -14,7 +14,7 @@
 
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
 noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('d2ce4424fe8fe0186f6ec902ad469f1d86e06bb8d6a72081cf6ae3840aadff38'
+sha256sums=('7f1df364424c3eabf5589d2adfeb715b0ccdbc4b59723ff4b44266bafd70645f'
 'SKIP'
 'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')


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

2019-04-21 Thread Maxim Baz via arch-commits
Date: Sunday, April 21, 2019 @ 08:36:41
  Author: maximbaz
Revision: 452589

archrelease: copy trunk to community-any

Added:
  browserpass-chromium/repos/community-any/PKGBUILD
(from rev 452588, browserpass-chromium/trunk/PKGBUILD)
Deleted:
  browserpass-chromium/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 08:35:49 UTC (rev 452588)
+++ PKGBUILD2019-04-21 08:36:41 UTC (rev 452589)
@@ -1,43 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
-_name=browserpass-extension
-pkgname=browserpass-chromium
-pkgver=3.0.15
-pkgrel=1
-pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name}";
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
-
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
-noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('d2ce4424fe8fe0186f6ec902ad469f1d86e06bb8d6a72081cf6ae3840aadff38'
-'SKIP'
-'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-# Create extension json
-cat << EOF > "${_id}".json
-{
-"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
-"external_version": "${pkgver}"
-}
-EOF
-}
-
-package() {
-install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
-install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-chromium/repos/community-any/PKGBUILD (from rev 452588, 
browserpass-chromium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 08:36:41 UTC (rev 452589)
@@ -0,0 +1,43 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
+_name=browserpass-extension
+pkgname=browserpass-chromium
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name}";
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
+
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
+noextract=("${pkgname}-${pkgver}.crx")
+sha256sums=('7f1df364424c3eabf5589d2adfeb715b0ccdbc4b59723ff4b44266bafd70645f'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+# Create extension json
+cat << EOF > "${_id}".json
+{
+"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
+"external_version": "${pkgver}"
+}
+EOF
+}
+
+package() {
+install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
+install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:21:36
  Author: felixonmars
Revision: 452591

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 452590, haskell-yesod-test/trunk/PKGBUILD)

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
452590, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:21:36 UTC (rev 452591)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.6
+pkgrel=51
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="http://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=('5010908c6d806d8f8e9c213275395bddc5b08541bdec464ae3dadaa45316a8bfc5c9d25f6edfa0546408dca4316e9c65939c2cd4a2329c2cc9ac164fc0e417d2')
+
+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-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:21:08
  Author: felixonmars
Revision: 452590

upgpkg: haskell-yesod-test 1.6.6-51

rebuild with integer-logarithms 1.0.3

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 08:36:41 UTC (rev 452589)
+++ PKGBUILD2019-04-21 09:21:08 UTC (rev 452590)
@@ -3,7 +3,7 @@
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
 pkgver=1.6.6
-pkgrel=50
+pkgrel=51
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="http://www.yesodweb.com";
 license=('MIT')


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:23:34
  Author: felixonmars
Revision: 452593

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 452592, haskell-yesod-static/trunk/PKGBUILD)

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
452592, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:23:34 UTC (rev 452593)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.0.1
+pkgrel=92
+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-static/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:23:07
  Author: felixonmars
Revision: 452592

upgpkg: haskell-yesod-static 1.6.0.1-92

rebuild with integer-logarithms 1.0.3

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:21:36 UTC (rev 452591)
+++ PKGBUILD2019-04-21 09:23:07 UTC (rev 452592)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0.1
-pkgrel=91
+pkgrel=92
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:31:36
  Author: felixonmars
Revision: 452594

upgpkg: git-annex 7.20190322-18

rebuild with integer-logarithms 1.0.3

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:23:34 UTC (rev 452593)
+++ PKGBUILD2019-04-21 09:31:36 UTC (rev 452594)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20190322
-pkgrel=17
+pkgrel=18
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/";
 license=("AGPL3")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:31:51
  Author: felixonmars
Revision: 452595

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 452594, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 452594, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:31:51 UTC (rev 452595)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20190322
+pkgrel=18
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://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
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" \
+-ftorrentparser -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime -f-networkbsd
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" install-desktop 
install-completions
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:33:27
  Author: felixonmars
Revision: 452596

upgpkg: hindent 5.2.7-79

rebuild with integer-logarithms 1.0.3

Modified:
  hindent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:31:51 UTC (rev 452595)
+++ PKGBUILD2019-04-21 09:33:27 UTC (rev 452596)
@@ -3,7 +3,7 @@
 
 pkgname=hindent
 pkgver=5.2.7
-pkgrel=78
+pkgrel=79
 pkgdesc="Extensible Haskell pretty printer"
 url="https://github.com/commercialhaskell/hindent";
 license=("BSD")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:33:49
  Author: felixonmars
Revision: 452597

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hindent/repos/community-staging-x86_64/PKGBUILD (from rev 452596, 
hindent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:33:49 UTC (rev 452597)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=5.2.7
+pkgrel=79
+pkgdesc="Extensible Haskell pretty printer"
+url="https://github.com/commercialhaskell/hindent";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-exceptions' 'haskell-monad-loops' 
'haskell-optparse-applicative'
+ 'haskell-path' 'haskell-path-io' 'haskell-src-exts' 
'haskell-unix-compat'
+ 'haskell-utf8-string' 'haskell-yaml')
+makedepends=('ghc' 'haskell-diff' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";
+https://github.com/chrisdone/hindent/pull/537.patch)
+sha512sums=('9538486abe1c7638710825ee903fd9f97eab3c906c30a036c396dcb3c806e1c803e9e1a408b392c98652d10d02fb1f27472ae8475a9dceae3e46cc361f237cf5'
+
'f11d905ec785aa3a4fe6ded720a665677d78a623608bde594bb0df0813503eb688a6c7b3012aea307dedbb5ccfd634048ac5d2214d11227d7523c5900371a2b8')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../537.patch
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$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
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $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.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:35:15
  Author: felixonmars
Revision: 452598

upgpkg: hledger 1.14.2-8

rebuild with integer-logarithms 1.0.3

Modified:
  hledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:33:49 UTC (rev 452597)
+++ PKGBUILD2019-04-21 09:35:15 UTC (rev 452598)
@@ -3,7 +3,7 @@
 
 pkgname=hledger
 pkgver=1.14.2
-pkgrel=7
+pkgrel=8
 pkgdesc="Command-line interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:35:32
  Author: felixonmars
Revision: 452599

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 452598, 
hledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:35:32 UTC (rev 452599)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.14.2
+pkgrel=8
+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-test-framework' 'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('87d1bc94a24d73c6da231520da6de55f1b64ace090cd9e64e264c68fefb4857d1d49c9d6c21e8cb44845f17eeed2dac96ad22cf50afded10248edad57e712cbe')
+
+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-api/repos (2 files)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:37:06
  Author: felixonmars
Revision: 452601

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 452600, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:37:06 UTC (rev 452601)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.14
+pkgrel=17
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-docopt' 'haskell-either' 
'haskell-microlens'
+ 'haskell-microlens-platform' 'haskell-safe' 'haskell-servant-server'
+ 'haskell-servant-swagger' 'haskell-swagger2' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('551ad15b39adbcd1c3548bb75acd83193f6a99d8bab15cdc7ef34aa022dfd4d19b14c105ae88e4fdef93eca5ace7791e7b19d3eff532ada7079b4e071bd4ab69')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"
+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-api/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:36:52
  Author: felixonmars
Revision: 452600

upgpkg: hledger-api 1.14-17

rebuild with integer-logarithms 1.0.3

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:35:32 UTC (rev 452599)
+++ PKGBUILD2019-04-21 09:36:52 UTC (rev 452600)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-api
 pkgver=1.14
-pkgrel=16
+pkgrel=17
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:38:16
  Author: felixonmars
Revision: 452602

upgpkg: hledger-ui 1.14.2-8

rebuild with integer-logarithms 1.0.3

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:37:06 UTC (rev 452601)
+++ PKGBUILD2019-04-21 09:38:16 UTC (rev 452602)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.14.2
-pkgrel=7
+pkgrel=8
 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-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:38:33
  Author: felixonmars
Revision: 452603

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 452602, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 452602, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:38:33 UTC (rev 452603)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.14.2
+pkgrel=8
+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=('3d47bda183ab0d4022dca579ec38b574a168d2a30c4a6ab4ac141e373d18f9ae2858f09a35bf818af98394ff66bf2b287fb828eb1dfd21da4457364bc4420b46')
+
+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-web/repos (2 files)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:40:46
  Author: felixonmars
Revision: 452605

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 452604, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 452604, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:40:46 UTC (rev 452605)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.14.1
+pkgrel=18
+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')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('3eb50a27e96b8e4590719c41fe00dbf7add431a8bbc300f1d2614c09dbae5eaa2eb43ac96c597c441a2f43bf4096fe8c450bb3bdb601cc2a06fd840768b45786')
+
+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-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:40:30
  Author: felixonmars
Revision: 452604

upgpkg: hledger-web 1.14.1-18

rebuild with integer-logarithms 1.0.3

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:38:33 UTC (rev 452603)
+++ PKGBUILD2019-04-21 09:40:30 UTC (rev 452604)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.14.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:42:09
  Author: felixonmars
Revision: 452606

upgpkg: hlint 2.1.14-16

rebuild with integer-logarithms 1.0.3

Modified:
  hlint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:40:46 UTC (rev 452605)
+++ PKGBUILD2019-04-21 09:42:09 UTC (rev 452606)
@@ -3,7 +3,7 @@
 
 pkgname=hlint
 pkgver=2.1.14
-pkgrel=15
+pkgrel=16
 pkgdesc="Source code suggestions"
 url="http://community.haskell.org/~ndm/hlint/";
 license=("BSD")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:42:24
  Author: felixonmars
Revision: 452607

archrelease: copy trunk to community-staging-x86_64

Added:
  hlint/repos/community-staging-x86_64/
  hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 452606, hlint/trunk/PKGBUILD)

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

Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 452606, 
hlint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:42:24 UTC (rev 452607)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=2.1.14
+pkgrel=16
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 
'haskell-cpphs'
+ 'haskell-data-default' 'haskell-extra' 'haskell-hscolour' 
'haskell-refact'
+ 'haskell-src-exts' 'haskell-src-exts-util' 'haskell-uniplate'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml')
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('d4c7474791252401740d121118576579dd82b2c6cd52072b28faaf39e431f0b378387675d70f122109e6dc111e9889a51310c1c8881f6e33c13b889be4f4bb41')
+
+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 \
+-fgpl -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
+}
+
+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}/COPYING.BSD3"
+}


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:44:16
  Author: felixonmars
Revision: 452608

upgpkg: haskell-aeson-diff 1.1.0.5-14

rebuild with integer-logarithms 1.0.3

Modified:
  haskell-aeson-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:42:24 UTC (rev 452607)
+++ PKGBUILD2019-04-21 09:44:16 UTC (rev 452608)
@@ -3,7 +3,7 @@
 _hkgname=aeson-diff
 pkgname=haskell-aeson-diff
 pkgver=1.1.0.5
-pkgrel=13
+pkgrel=14
 pkgdesc="Extract and apply patches to JSON documents"
 url="https://github.com/thsutton/aeson-diff";
 license=('BSD')


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:44:31
  Author: felixonmars
Revision: 452610

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-aeson-diff/repos/community-staging-x86_64/
  haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD
(from rev 452609, haskell-aeson-diff/trunk/PKGBUILD)

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

Copied: haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
452609, haskell-aeson-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:44:31 UTC (rev 452610)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=aeson-diff
+pkgname=haskell-aeson-diff
+pkgver=1.1.0.5
+pkgrel=14
+pkgdesc="Extract and apply patches to JSON documents"
+url="https://github.com/thsutton/aeson-diff";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-edit-distance-vector' 
'haskell-hashable'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-optparse-applicative')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'haskell-quickcheck'
+ 'haskell-quickcheck-instances' 'hlint')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('3ca534155bd4d5cf35e232ddf302cef21b3e9a29473d6d04cefadd0fb5ecb2954a140df3e88afe48ada67bac63224a8028c98276680045d897898af6bbb291b0')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *4.12/<5/' $_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-ipynb/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:45:40
  Author: felixonmars
Revision: 452612

upgpkg: haskell-ipynb 0.1-14

rebuild with integer-logarithms 1.0.3

Modified:
  haskell-ipynb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:45:11 UTC (rev 452611)
+++ PKGBUILD2019-04-21 09:45:40 UTC (rev 452612)
@@ -3,7 +3,7 @@
 _hkgname=ipynb
 pkgname=haskell-ipynb
 pkgver=0.1
-pkgrel=13
+pkgrel=14
 pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
 url="https://github.com/jgm/ipynb";
 license=('BSD')


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:45:56
  Author: felixonmars
Revision: 452613

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ipynb/repos/community-staging-x86_64/PKGBUILD (from rev 452612, 
haskell-ipynb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:45:56 UTC (rev 452613)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ipynb
+pkgname=haskell-ipynb
+pkgver=0.1
+pkgrel=14
+pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
+url="https://github.com/jgm/ipynb";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base64-bytestring' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-aeson-diff' 'haskell-microlens' 
'haskell-microlens-aeson'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8717dac6496905afc5e8735abc3b3a4a90b171253b035efa0751a6311b901caad563fdfeaa455987c1307d0532273ab80be37256562143db575f13c326843bf4')
+
+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 (python-gtkspellcheck)

2019-04-21 Thread Evangelos Foutras via arch-commits
Date: Sunday, April 21, 2019 @ 09:45:11
  Author: foutrelis
Revision: 452611

Remove unused package: python-gtkspellcheck

Deleted:
  python-gtkspellcheck/


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:55:44
  Author: felixonmars
Revision: 452614

upgpkg: haskell-sbv 7.13-25

rebuild with integer-logarithms 1.0.3

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:45:56 UTC (rev 452613)
+++ PKGBUILD2019-04-21 09:55:44 UTC (rev 452614)
@@ -4,7 +4,7 @@
 _hkgname=sbv
 pkgname=haskell-sbv
 pkgver=7.13
-pkgrel=24
+pkgrel=25
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="http://leventerkok.github.com/sbv";
 license=("BSD")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 09:55:59
  Author: felixonmars
Revision: 452615

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 452614, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 09:55:59 UTC (rev 452615)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=7.13
+pkgrel=25
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="http://leventerkok.github.com/sbv";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 
'haskell-async'
+ 'haskell-random' 'haskell-syb' 'haskell-generic-deriving')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('6c44083fee95a711bc0153a4f1530338f0893522b481251365f4d35e0d990ba299c55acdf404803a5d1a5a4044d97e07eac6aecba82d052586b346be16c3ce1d')
+
+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 cryptol/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:00:00
  Author: felixonmars
Revision: 452616

upgpkg: cryptol 2.6.0-93

rebuild with integer-logarithms 1.0.3

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 09:55:59 UTC (rev 452615)
+++ PKGBUILD2019-04-21 10:00:00 UTC (rev 452616)
@@ -2,7 +2,7 @@
 
 pkgname=cryptol
 pkgver=2.6.0
-pkgrel=92
+pkgrel=93
 pkgdesc="The Language of Cryptography"
 url="http://www.cryptol.net";
 license=("BSD")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:00:17
  Author: felixonmars
Revision: 452617

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 452616, cryptol/trunk/PKGBUILD)

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 452616, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 10:00:17 UTC (rev 452617)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.6.0
+pkgrel=93
+pkgdesc="The Language of Cryptography"
+url="http://www.cryptol.net";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-gitrev' 
'haskell-graphscc' 'haskell-heredoc'
+ 'haskell-monad-control' 'haskell-monadlib' 'haskell-panic' 
'haskell-random' 'haskell-sbv'
+ 'haskell-simple-smt' 'haskell-strict' 'haskell-tf-random' 
'haskell-transformers-base'
+ 'haskell-ansi-terminal' 'haskell-blaze-html')
+makedepends=('ghc' 'alex' 'happy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GaloisInc/cryptol/archive/$pkgver.tar.gz";)
+sha512sums=('445a1656ffd0d260553e041de9b15b6257a4b068b5462d996e8207671c097ea814bc5b7aaeb527b5e9579bd8a3e5e8ced0aaf57c24fbccaa7410342a109e9325')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/<.*0.10/<1/' $pkgname.cabal
+sed -i '1i{-# language NoMonadFailDesugaring #-}' 
src/Cryptol/ModuleSystem/Renamer.hs src/Cryptol/Prims/Eval.hs 
src/Cryptol/TypeCheck/Infer.hs src/Cryptol/TypeCheck/CheckModuleInstance.hs 
src/Cryptol/Transform/Specialize.hs src/Cryptol/REPL/Monad.hs 
src/Cryptol/REPL/Command.hs
+}
+
+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 \
+-f-static -f-relocatable
+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 hoogle/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:02:11
  Author: felixonmars
Revision: 452618

upgpkg: hoogle 5.0.17.6-5

rebuild with integer-logarithms 1.0.3

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 10:00:17 UTC (rev 452617)
+++ PKGBUILD2019-04-21 10:02:11 UTC (rev 452618)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.6
-pkgrel=4
+pkgrel=5
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/";
 license=("BSD")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:02:24
  Author: felixonmars
Revision: 452619

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 452618, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 10:02:24 UTC (rev 452619)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.6
+pkgrel=5
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' '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-network-uri'
+ '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=('ecae5e16a3d61d9cb9be392749840cb79064fa083983fd60f24ccc59af37b3f28ff3d4136e3a1c875f53a519272d101ae6b3628be499c21777649f4763a5e299')
+
+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
+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 hopenpgp-tools/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:04:18
  Author: felixonmars
Revision: 452620

upgpkg: hopenpgp-tools 0.21.3-27

rebuild with integer-logarithms 1.0.3

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 10:02:24 UTC (rev 452619)
+++ PKGBUILD2019-04-21 10:04:18 UTC (rev 452620)
@@ -3,7 +3,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.21.3
-pkgrel=26
+pkgrel=27
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools";
 license=("AGPL3")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:04:32
  Author: felixonmars
Revision: 452621

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
452620, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 10:04:32 UTC (rev 452621)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.21.3
+pkgrel=27
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools";
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-crypto-pubkey'
+ 'haskell-cryptohash' 'haskell-errors' 'haskell-fgl' 
'haskell-graphviz' 'haskell-hopenpgp'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-ixset-typed'
+ 'haskell-lens' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
+ 'haskell-optparse-applicative' 'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
+ 'haskell-resourcet' 'haskell-time-locale-compat' 'haskell-yaml')
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('c19c9164879df7be62e08b69ce9175834044c2d7c0c3a890340e2a10444ac43fc6d2b63fb958925921056ef1e13ec9c7cfe08f20cdc430cfa2b9584fdd625d19')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:22:54
  Author: felixonmars
Revision: 452622

upgpkg: idris 1.3.1-53

rebuild with integer-logarithms 1.0.3

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 10:04:32 UTC (rev 452621)
+++ PKGBUILD2019-04-21 10:22:54 UTC (rev 452622)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.1
-pkgrel=52
+pkgrel=53
 pkgdesc="Functional Programming Language with Dependent Types"
 url="http://www.idris-lang.org/";
 license=("BSD")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:23:09
  Author: felixonmars
Revision: 452623

archrelease: copy trunk to community-staging-x86_64

Added:
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 452622, idris/trunk/PKGBUILD)

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 452622, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 10:23:09 UTC (rev 452623)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.1
+pkgrel=53
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-base64-bytestring' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cheapskate' 'haskell-code-page' 
'haskell-fingertree'
+ 'haskell-fsnotify' 'haskell-ieee754' 'haskell-libffi' 
'haskell-megaparsec6'
+ 'haskell-network' 'haskell-optparse-applicative' 'haskell-regex-tdfa' 
'haskell-safe'
+ 'haskell-split' 'haskell-terminal-size' 'haskell-uniplate' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 
'haskell-vector-binary-instances'
+ 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-tagged' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-rerun'
+ 'nodejs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz";)
+sha512sums=('555c7fdfad7e4f69b1aa4f6237cf4432831cd74e33342bd802ff3bc763118178b742b386035f8c071820b5e2bc71c5372c4acb356835155677046d360b722746')
+
+prepare() {
+cd Idris-dev-$pkgver
+
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+sed -i -e 's/< *1.4/<2/' -e 's/< *0.6/<1/' -e 's/< *0.2/<1/' -e 's/< 
*0.4/<1/' -e 's/< *2.8/<4/' idris.cabal
+sed -i '1i{-# language NoMonadFailDesugaring #-}' 
src/Idris/Core/CaseTree.hs src/Idris/Parser/Stack.hs src/Idris/Elab/Term.hs
+}
+
+build() {
+cd Idris-dev-$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 \
+-fFFI -fGMP -f-release -f-freestanding -f-CI -f-execonly
+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 Idris-dev-$pkgver
+# TODO: figure out the tests
+PATH="$PWD/dist/build:$PATH" LD_LIBRARY_PATH="$PWD/dist/build" runhaskell 
Setup test || warning "Tests failed"
+}
+
+package() {
+cd Idris-dev-$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 pandoc/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:35:43
  Author: felixonmars
Revision: 452624

upgpkg: pandoc 2.7.2-4

rebuild with integer-logarithms 1.0.3

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 10:23:09 UTC (rev 452623)
+++ PKGBUILD2019-04-21 10:35:43 UTC (rev 452624)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.7.2
-pkgrel=3
+pkgrel=4
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:36:01
  Author: felixonmars
Revision: 452625

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 452624, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 10:36:01 UTC (rev 452625)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.7.2
+pkgrel=4
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec' 'haskell-base-compat' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-case-insensitive' 'haskell-cmark-gfm'
+ 'haskell-data-default' 'haskell-doctemplates' 'haskell-exceptions' 
'haskell-glob'
+ 'haskell-haddock-library' 'haskell-ipynb' 'haskell-skylighting' 
'haskell-hslua'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml' 'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-safe' 'haskell-split' 'haskell-texmath'
+ 'haskell-network' 'haskell-pandoc-types' 'haskell-random' 
'haskell-scientific'
+ 'haskell-tagsoup' 'haskell-temporary' 'haskell-network-uri' 
'haskell-unicode-transforms'
+ 'haskell-unordered-containers' 'haskell-zip-archive' 'haskell-vector' 
'haskell-xml'
+ 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('f0d6a700413d1a70b6ca8f69883afda27248dcf5315a1819127163ad8e239fd19d2ec8462e3a793a67d3f86d02b364fa00ac5de735a77a63e737a1a2b92ef00b')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+sed -i 's/< *0.2/<1/' $pkgname.cabal
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+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 "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:39:53
  Author: felixonmars
Revision: 452627

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
452626, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 10:39:53 UTC (rev 452627)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.1.3
+pkgrel=17
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz";)
+sha512sums=('01e32fe8d7c75878c6aa1004badc892eef946ecf0f0e5a3f76242e18188dcf3f9b555892b97ce668de7de050daf344eeff2ee9322ac5ee44a141af88e3637d91')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+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-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+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
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+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 pandoc-citeproc/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 10:39:40
  Author: felixonmars
Revision: 452626

upgpkg: pandoc-citeproc 0.16.1.3-17

rebuild with integer-logarithms 1.0.3

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 10:36:01 UTC (rev 452625)
+++ PKGBUILD2019-04-21 10:39:40 UTC (rev 452626)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.1.3
-pkgrel=16
+pkgrel=17
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname";
 license=("BSD")


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

2019-04-21 Thread Antonio Rojas via arch-commits
Date: Sunday, April 21, 2019 @ 11:55:51
  Author: arojas
Revision: 351847

Update to 1.92

Modified:
  gifsicle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 07:24:35 UTC (rev 351846)
+++ PKGBUILD2019-04-21 11:55:51 UTC (rev 351847)
@@ -1,7 +1,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=gifsicle
-pkgver=1.91
+pkgver=1.92
 pkgrel=1
 pkgdesc="A powerful command-line program for creating, editing, manipulating 
and getting information about GIF images and animations"
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=('GPL')
 depends=('libx11')
 source=(https://www.lcdf.org/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('3436caa159789334423f224426926259cae4c216')
+sha1sums=('c2dfca098ce67f22bca5e555cda9b54e8b95c816')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in gifsicle/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-04-21 Thread Antonio Rojas via arch-commits
Date: Sunday, April 21, 2019 @ 11:56:27
  Author: arojas
Revision: 351848

archrelease: copy trunk to extra-x86_64

Added:
  gifsicle/repos/extra-x86_64/PKGBUILD
(from rev 351847, gifsicle/trunk/PKGBUILD)
Deleted:
  gifsicle/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 11:55:51 UTC (rev 351847)
+++ PKGBUILD2019-04-21 11:56:27 UTC (rev 351848)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=gifsicle
-pkgver=1.91
-pkgrel=1
-pkgdesc="A powerful command-line program for creating, editing, manipulating 
and getting information about GIF images and animations"
-arch=('x86_64')
-url="http://www.lcdf.org/gifsicle/";
-license=('GPL')
-depends=('libx11')
-source=(http://www.lcdf.org/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('3436caa159789334423f224426926259cae4c216')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: gifsicle/repos/extra-x86_64/PKGBUILD (from rev 351847, 
gifsicle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 11:56:27 UTC (rev 351848)
@@ -0,0 +1,23 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=gifsicle
+pkgver=1.92
+pkgrel=1
+pkgdesc="A powerful command-line program for creating, editing, manipulating 
and getting information about GIF images and animations"
+arch=('x86_64')
+url="https://www.lcdf.org/gifsicle/";
+license=('GPL')
+depends=('libx11')
+source=(https://www.lcdf.org/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('c2dfca098ce67f22bca5e555cda9b54e8b95c816')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:05:17
  Author: felixonmars
Revision: 452629

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 452628, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
452628, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 12:05:17 UTC (rev 452629)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.1
+pkgrel=44
+pkgdesc="A static website compiler library"
+url="http://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=('bc8cc9944229c691fbec6b7e6ea52e8a65bd8cc2093d42bd577e30ded1767370b439d8dc694e9842b300f7c884f851cac6a2a9de2817a961c779b83fb0ee1718')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.7/<3/' $_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-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:04:59
  Author: felixonmars
Revision: 452628

upgpkg: haskell-hakyll 4.12.5.1-44

rebuild with integer-logarithms 1.0.3

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 10:39:53 UTC (rev 452627)
+++ PKGBUILD2019-04-21 12:04:59 UTC (rev 452628)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.1
-pkgrel=43
+pkgrel=44
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll";
 license=("BSD")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:06:54
  Author: felixonmars
Revision: 452630

upgpkg: pandoc-crossref 0.3.4.0-73

rebuild with integer-logarithms 1.0.3

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 12:05:17 UTC (rev 452629)
+++ PKGBUILD2019-04-21 12:06:54 UTC (rev 452630)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.0
-pkgrel=72
+pkgrel=73
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname}";
 license=("GPL2")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:07:10
  Author: felixonmars
Revision: 452631

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
452630, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 12:07:10 UTC (rev 452631)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.4.0
+pkgrel=73
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname}";
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz";)
+sha512sums=('d3a666880f0cad0ef7c1e784f2d52f9bb8bfde9e6be6de04c8f094e2a87e99a740f97951c5ffd74b2a1b001e8a977bc9dd3e28be84c3442d3447beadd879e82c')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/< *2.5/<3/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+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 $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 postgrest/repos (2 files)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:11:20
  Author: felixonmars
Revision: 452633

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 452632, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 452632, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 12:11:20 UTC (rev 452633)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=5.2.0
+pkgrel=38
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-auto-update' 'haskell-hasql' 'haskell-hasql-pool' 
'haskell-protolude'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-either' 'haskell-gitrev' 'haskell-hasql-transaction' 
'haskell-heredoc'
+ 'haskell-http' 'haskell-http-types' 
'haskell-insert-ordered-containers'
+ 'haskell-interpolatedstring-perl6' 'haskell-jose' 'haskell-lens' 
'haskell-lens-aeson'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 
'haskell-ranged-sets'
+ 'haskell-regex-tdfa' 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra'
+ 'haskell-wai-middleware-static' 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz";)
+sha512sums=('7c2bba89457dd8b3d681ccc032482055144b5ee17336b2e90dda6bbed6c229f36cf521cf66aafd7923ca6c147a1f2bb26567a3109079dae65d726e85f85b32ed')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e 's/==/>=/' -e 's/< *4.10/<5/' -e 's/== 0.3.0/>= 0.3.0/' 
$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}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI
+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
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+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 postgrest/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:11:05
  Author: felixonmars
Revision: 452632

upgpkg: postgrest 5.2.0-38

rebuild with integer-logarithms 1.0.3

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 12:07:10 UTC (rev 452631)
+++ PKGBUILD2019-04-21 12:11:05 UTC (rev 452632)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=5.2.0
-pkgrel=37
+pkgrel=38
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest";
 license=("MIT")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:14:58
  Author: felixonmars
Revision: 452634

upgpkg: shellcheck 0.6.0-70

rebuild with integer-logarithms 1.0.3

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 12:11:20 UTC (rev 452633)
+++ PKGBUILD2019-04-21 12:14:58 UTC (rev 452634)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.6.0
-pkgrel=69
+pkgrel=70
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net";
 license=("GPL")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:15:13
  Author: felixonmars
Revision: 452635

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 452634, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 452634, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 12:15:13 UTC (rev 452635)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.6.0
+pkgrel=70
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz";)
+sha512sums=('4e9575985fe914cb35444995212ac1afaa40b004dbbc86b5987bf8b65e20b14a0102c9c601dc061d604129a8e978021f22a11d682545cb7f07ec974495cfa387')
+
+build() {
+cd $pkgname-$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
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+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 stack/repos (3 files)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:23:52
  Author: felixonmars
Revision: 452637

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   75 
 stack.install |4 ++
 2 files changed, 79 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 452636, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 12:23:52 UTC (rev 452637)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3
+pkgrel=98
+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-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-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ '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-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver";)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i -e '/semigroups/d' -e 's/< *0.8/<1/' $pkgname.cabal
+}
+
+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/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 452636, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-04-21 12:23:52 UTC (rev 
452637)
@@ -0,0 +1,4 @@
+pos

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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:23:36
  Author: felixonmars
Revision: 452636

upgpkg: stack 1.9.3-98

rebuild with integer-logarithms 1.0.3

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 12:15:13 UTC (rev 452635)
+++ PKGBUILD2019-04-21 12:23:36 UTC (rev 452636)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3
-pkgrel=97
+pkgrel=98
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack";
 license=("BSD")


[arch-commits] Commit in stylish-haskell/repos/community-staging-x86_64 (2 files)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:25:28
  Author: felixonmars
Revision: 452639

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 12:25:12 UTC (rev 452638)
+++ PKGBUILD2019-04-21 12:25:28 UTC (rev 452639)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=stylish-haskell
-pkgver=0.9.2.1
-pkgrel=17
-pkgdesc="Haskell code prettifier"
-url="https://github.com/jaspervdj/stylish-haskell";
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 
'haskell-optparse-applicative'
- 'haskell-src-exts' 'haskell-strict' 'haskell-syb' 'haskell-yaml')
-makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit')
-source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-sha512sums=('580353475fbd400bae4d7e7e4177ce3799b657601f29ad8158959ea8a40f875a9575b8b02a1a36f4e9c364ab5e266408ef2b3a004a09db6286e139e67c954d6d')
-
-prepare() {
-cd $pkgname-$pkgver
-sed -i -e '/semigroups/d' -e 's/< *1.21/<2/' $pkgname.cabal
-}
-
-build() {
-cd $pkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--f-old_base
-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 $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"
-}

Copied: stylish-haskell/repos/community-staging-x86_64/PKGBUILD (from rev 
452638, stylish-haskell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 12:25:28 UTC (rev 452639)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.9.2.1
+pkgrel=18
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 
'haskell-optparse-applicative'
+ 'haskell-src-exts' 'haskell-strict' 'haskell-syb' 'haskell-yaml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('580353475fbd400bae4d7e7e4177ce3799b657601f29ad8158959ea8a40f875a9575b8b02a1a36f4e9c364ab5e266408ef2b3a004a09db6286e139e67c954d6d')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/< *1.21/<2/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old_base
+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 $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 stylish-haskell/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:25:12
  Author: felixonmars
Revision: 452638

upgpkg: stylish-haskell 0.9.2.1-18

rebuild with integer-logarithms 1.0.3

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 12:23:52 UTC (rev 452637)
+++ PKGBUILD2019-04-21 12:25:12 UTC (rev 452638)
@@ -3,7 +3,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.9.2.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell";
 license=("BSD")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:27:38
  Author: felixonmars
Revision: 452641

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 452640, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
452640, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 12:27:38 UTC (rev 452641)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.1
+pkgrel=50
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://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
+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 tamarin-prover/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:27:20
  Author: felixonmars
Revision: 452640

upgpkg: tamarin-prover 1.4.1-50

rebuild with integer-logarithms 1.0.3

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 12:25:28 UTC (rev 452639)
+++ PKGBUILD2019-04-21 12:27:20 UTC (rev 452640)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=49
+pkgrel=50
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io";
 license=("GPL")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:29:13
  Author: felixonmars
Revision: 452642

upgpkg: xmobar 0.29.4-43

rebuild with integer-logarithms 1.0.3

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 12:27:38 UTC (rev 452641)
+++ PKGBUILD2019-04-21 12:29:13 UTC (rev 452642)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.29.4
-pkgrel=42
+pkgrel=43
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 12:29:30
  Author: felixonmars
Revision: 452643

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 452642, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 452642, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 12:29:30 UTC (rev 452643)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.29.4
+pkgrel=43
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text' 'haskell-async' 
'haskell-extensible-exceptions')
+makedepends=('ghc')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz)
+sha512sums=('d56ce2ec6014f9bd1d224980524d91c0f72030d4559c001dfbc049902931541b9abd3c8f055cacc10fd3e7cdd067686cdc4f15fcdc37d4c50dfc59d6edcb036e')
+
+prepare() {
+  cd xmobar-$pkgver
+  sed -i -e 's/==.*0.3/== 0.4/' -e 's/< *4.12/<5/' -e 's/< *2.5/<3/' 
xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-04-21 Thread Jan Steffens via arch-commits
Date: Sunday, April 21, 2019 @ 15:04:13
  Author: heftig
Revision: 351850

1.18.0-1

Modified:
  networkmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 14:13:02 UTC (rev 351849)
+++ PKGBUILD2019-04-21 15:04:13 UTC (rev 351850)
@@ -7,7 +7,7 @@
 
 pkgbase=networkmanager
 pkgname=(networkmanager libnm libnm-glib)
-pkgver=1.16.0
+pkgver=1.18.0
 pkgrel=1
 pkgdesc="Network connection manager and user applications"
 url="https://wiki.gnome.org/Projects/NetworkManager";
@@ -19,7 +19,7 @@
  libnewt libndp libteam vala perl-yaml python-gobject git vala 
jansson bluez-libs
  glib2-docs dhcpcd iwd dnsmasq systemd-resolvconf libpsl audit 
meson)
 checkdepends=(libx11 python-dbus)
-_commit=15a6b41239e9abc44f128d2721f63c2ce09a40ec  # tags/1.16.0^0
+_commit=cb739531832730e0585a740cd389c715d072cd72  # tags/1.18.0^0
 
source=("git+https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git#commit=$_commit";)
 sha256sums=('SKIP')
 


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

2019-04-21 Thread Jan Steffens via arch-commits
Date: Sunday, April 21, 2019 @ 15:04:26
  Author: heftig
Revision: 351851

archrelease: copy trunk to testing-x86_64

Added:
  networkmanager/repos/testing-x86_64/
  networkmanager/repos/testing-x86_64/PKGBUILD
(from rev 351850, networkmanager/trunk/PKGBUILD)

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

Copied: networkmanager/repos/testing-x86_64/PKGBUILD (from rev 351850, 
networkmanager/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-21 15:04:26 UTC (rev 351851)
@@ -0,0 +1,135 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+# Contributor: Wael Nasreddine 
+# Contributor: Tor Krill 
+# Contributor: Will Rea 
+# Contributor: Valentine Sinitsyn 
+
+pkgbase=networkmanager
+pkgname=(networkmanager libnm libnm-glib)
+pkgver=1.18.0
+pkgrel=1
+pkgdesc="Network connection manager and user applications"
+url="https://wiki.gnome.org/Projects/NetworkManager";
+arch=(x86_64)
+license=(GPL2 LGPL2.1)
+_pppver=2.4.7
+makedepends=(intltool dhclient iptables gobject-introspection gtk-doc 
"ppp=$_pppver" modemmanager
+ dbus-glib iproute2 nss polkit wpa_supplicant curl systemd 
libmm-glib
+ libnewt libndp libteam vala perl-yaml python-gobject git vala 
jansson bluez-libs
+ glib2-docs dhcpcd iwd dnsmasq systemd-resolvconf libpsl audit 
meson)
+checkdepends=(libx11 python-dbus)
+_commit=cb739531832730e0585a740cd389c715d072cd72  # tags/1.18.0^0
+source=("git+https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd NetworkManager
+  git describe | sed 's/-dev/dev/;s/-rc/rc/;s/-/+/g'
+}
+
+prepare() {
+  cd NetworkManager
+}
+
+build() {
+  local meson_args=(
+-D dbus_conf_dir=/usr/share/dbus-1/system.d
+-D dist_version="$pkgver-$pkgrel"
+-D session_tracking_consolekit=false
+-D suspend_resume=systemd
+-D modify_system=true
+-D polkit_agent=true
+-D selinux=false
+-D iwd=true
+-D pppd_plugin_dir=/usr/lib/pppd/$_pppver
+-D teamdctl=true
+-D libnm_glib=true
+-D bluez5_dun=true
+-D ebpf=true
+-D config_plugins_default=keyfile,ibft
+-D ibft=true
+-D vapi=true
+-D docs=true
+-D more_asserts=no
+-D more_logging=false
+-D qt=false
+  )
+
+  arch-meson NetworkManager build "${meson_args[@]}"
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_networkmanager() {
+  depends=(libnm libnm-glib iproute2 polkit wpa_supplicant libmm-glib libnewt 
libndp libteam curl
+   bluez-libs libpsl audit)
+  optdepends=('dnsmasq: connection sharing'
+  'bluez: Bluetooth support'
+  'ppp: dialup connection support'
+  'modemmanager: cellular network support'
+  'iwd: wpa_supplicant alternative')
+  backup=(etc/NetworkManager/NetworkManager.conf)
+  groups=(gnome)
+
+  DESTDIR="$pkgdir" meson install -C build
+
+  # /etc/NetworkManager
+  install -d "$pkgdir"/etc/NetworkManager/{conf,dnsmasq}.d
+  install -dm700 "$pkgdir/etc/NetworkManager/system-connections"
+  install -m644 /dev/stdin "$pkgdir/etc/NetworkManager/NetworkManager.conf" 


[arch-commits] Commit in gitea/repos/community-x86_64 (14 files)

2019-04-21 Thread Bruno Pagani via arch-commits
Date: Sunday, April 21, 2019 @ 15:55:49
  Author: archange
Revision: 452826

archrelease: copy trunk to community-x86_64

Added:
  gitea/repos/community-x86_64/PKGBUILD
(from rev 452825, gitea/trunk/PKGBUILD)
  gitea/repos/community-x86_64/gitea-arch-defaults.patch
(from rev 452825, gitea/trunk/gitea-arch-defaults.patch)
  gitea/repos/community-x86_64/gitea-ldflags.patch
(from rev 452825, gitea/trunk/gitea-ldflags.patch)
  gitea/repos/community-x86_64/gitea.install
(from rev 452825, gitea/trunk/gitea.install)
  gitea/repos/community-x86_64/gitea.service
(from rev 452825, gitea/trunk/gitea.service)
  gitea/repos/community-x86_64/gitea.sysusers
(from rev 452825, gitea/trunk/gitea.sysusers)
  gitea/repos/community-x86_64/gitea.tmpfiles
(from rev 452825, gitea/trunk/gitea.tmpfiles)
Deleted:
  gitea/repos/community-x86_64/PKGBUILD
  gitea/repos/community-x86_64/gitea-arch-defaults.patch
  gitea/repos/community-x86_64/gitea-ldflags.patch
  gitea/repos/community-x86_64/gitea.install
  gitea/repos/community-x86_64/gitea.service
  gitea/repos/community-x86_64/gitea.sysusers
  gitea/repos/community-x86_64/gitea.tmpfiles

---+
 PKGBUILD  |  148 +---
 gitea-arch-defaults.patch |   98 ++---
 gitea-ldflags.patch   |   38 +--
 gitea.install |   60 -
 gitea.service |   80 +++
 gitea.sysusers|2 
 gitea.tmpfiles|   20 ++---
 7 files changed, 221 insertions(+), 225 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 15:55:34 UTC (rev 452825)
+++ PKGBUILD2019-04-21 15:55:49 UTC (rev 452826)
@@ -1,76 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Maxime Gauduin 
-# Contributor: Frederik Schwan 
-
-pkgname=gitea
-pkgver=1.7.6
-pkgrel=1
-pkgdesc="Painless self-hosted Git service. Community managed fork of Gogs."
-arch=(x86_64)
-url="https://gitea.io";
-license=(MIT)
-depends=(git)
-makedepends=(go-pie go-bindata dep)
-optdepends=(
-  'mariadb: MariaDB support'
-  'memcached: MemCached support'
-  'openssh: GIT over SSH support'
-  'pam: Authentication via PAM support'
-  'postgresql: PostgreSQL support'
-  'redis: Redis support'
-  'sqlite: SQLite support'
-)
-backup=('etc/gitea/app.ini')
-_tag=c09c44ae48a6b0eaca937c4888ce2bb041a8a91f # git rev-parse v${pkgver}
-source=("git+https://github.com/go-gitea/gitea.git#tag=${_tag}?signed";
-
gitea-disable-u2f.patch::"https://patch-diff.githubusercontent.com/raw/go-gitea/gitea/pull/5994.patch";
-gitea.tmpfiles
-gitea.service
-gitea.sysusers
-gitea-arch-defaults.patch
-gitea-ldflags.patch)
-sha256sums=('SKIP'
-'08915e2456d0c20bf786559ba316b49c03de11bfc4b37f8f0ad4e577baf0e3df'
-'1521fd7edc3830c695698ffe9835709f1408040b5ec989f07410972c894fa8ba'
-'7789b3f6699b9e111fa080226047cdc765e55ff49a3f72aac989c11c06c3e7e0'
-'2abc51ccd0086bb996194bb7fb241a3f26d84f518417c872b66a3db8970da7e4'
-'913a28110d2fbdabcfd2d19366aad8c645813b512f4591882efb47795ad8472f'
-'c552a5adb4058530d67176713240cc435b7b974747ec51e972c37d8834e32b3f')
-validpgpkeys=(8C4033A23895237CB27D52D9D9B5613BEB813F99  # Matti Ranta 
, retrieved from https://github.com/techknowlogick.gpg
-  ED810FD31FBE67F406ED71BDD4F1E9B6493ED946  # Jonas Franz 

-  9C5BCD799B3CDB124147A748E0DDFEC24C48784C) # Lauris 
Bukšis-Haberkorns  
-install=gitea.install
-
-prepare() {
-  mkdir -p gopath/src/code.gitea.io
-  ln -rTsf ${pkgname} gopath/src/code.gitea.io/gitea
-  export GOPATH="${srcdir}"/gopath
-
-  cd ${pkgname}
-  # Change some defaults for ArchLinux
-  patch -Np1 -i ../gitea-arch-defaults.patch
-  # Fix LDFLAGS not being respected by Go
-  patch -Np1 -i ../gitea-ldflags.patch
-  # https://github.com/go-gitea/gitea/issues/4692
-  patch -Np1 -i ../gitea-disable-u2f.patch
-
-  cd $GOPATH/src/code.gitea.io/gitea
-  dep ensure
-}
-
-build() {
-  export GOPATH="${srcdir}"/gopath
-  cd gopath/src/code.gitea.io/gitea
-  make generate
-  EXTRA_GOFLAGS="-gcflags all=-trimpath=${GOPATH} -asmflags 
all=-trimpath=${GOPATH}" \
-  make GOFLAGS="-v" TAGS="bindata sqlite pam" build
-}
-
-package() {
-  install -Dm755 ${pkgname}/${pkgname} -t "${pkgdir}"/usr/bin/
-  install -Dm644 ${pkgname}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-  install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
-  install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-  install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-  install -D ${pkgname}/custom/conf/app.ini.sample 
"${pkgdir}"/etc/gitea/app.ini
-}

Copied: gitea/repos/community-x86_64/PKGBUILD (from rev 452825, 
gitea/trunk/PKGBUILD)
=

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

2019-04-21 Thread Bruno Pagani via arch-commits
Date: Sunday, April 21, 2019 @ 15:55:34
  Author: archange
Revision: 452825

upgpkg: gitea 1.8.0-1

Modified:
  gitea/trunk/PKGBUILD
  gitea/trunk/gitea-arch-defaults.patch
  gitea/trunk/gitea-ldflags.patch

---+
 PKGBUILD  |   12 
 gitea-arch-defaults.patch |   12 ++--
 gitea-ldflags.patch   |6 +++---
 3 files changed, 13 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 13:32:52 UTC (rev 452824)
+++ PKGBUILD2019-04-21 15:55:34 UTC (rev 452825)
@@ -3,7 +3,7 @@
 # Contributor: Frederik Schwan 
 
 pkgname=gitea
-pkgver=1.7.6
+pkgver=1.8.0
 pkgrel=1
 pkgdesc="Painless self-hosted Git service. Community managed fork of Gogs."
 arch=(x86_64)
@@ -21,9 +21,8 @@
   'sqlite: SQLite support'
 )
 backup=('etc/gitea/app.ini')
-_tag=c09c44ae48a6b0eaca937c4888ce2bb041a8a91f # git rev-parse v${pkgver}
+_tag=d4da1e304c3c343df1d6dcf2bc6a5f0fb0e383bf # git rev-parse v${pkgver}
 source=("git+https://github.com/go-gitea/gitea.git#tag=${_tag}?signed";
-
gitea-disable-u2f.patch::"https://patch-diff.githubusercontent.com/raw/go-gitea/gitea/pull/5994.patch";
 gitea.tmpfiles
 gitea.service
 gitea.sysusers
@@ -30,12 +29,11 @@
 gitea-arch-defaults.patch
 gitea-ldflags.patch)
 sha256sums=('SKIP'
-'08915e2456d0c20bf786559ba316b49c03de11bfc4b37f8f0ad4e577baf0e3df'
 '1521fd7edc3830c695698ffe9835709f1408040b5ec989f07410972c894fa8ba'
 '7789b3f6699b9e111fa080226047cdc765e55ff49a3f72aac989c11c06c3e7e0'
 '2abc51ccd0086bb996194bb7fb241a3f26d84f518417c872b66a3db8970da7e4'
-'913a28110d2fbdabcfd2d19366aad8c645813b512f4591882efb47795ad8472f'
-'c552a5adb4058530d67176713240cc435b7b974747ec51e972c37d8834e32b3f')
+'ab0183aeee92d127819b033cbe0b9eab2e1072fb67a0a20e838d911138799b70'
+'2dd05c2ec8d5b17332525fe176e40df9893aa632f48525f9d5df98e05027aebf')
 validpgpkeys=(8C4033A23895237CB27D52D9D9B5613BEB813F99  # Matti Ranta 
, retrieved from https://github.com/techknowlogick.gpg
   ED810FD31FBE67F406ED71BDD4F1E9B6493ED946  # Jonas Franz 

   9C5BCD799B3CDB124147A748E0DDFEC24C48784C) # Lauris 
Bukšis-Haberkorns  
@@ -51,8 +49,6 @@
   patch -Np1 -i ../gitea-arch-defaults.patch
   # Fix LDFLAGS not being respected by Go
   patch -Np1 -i ../gitea-ldflags.patch
-  # https://github.com/go-gitea/gitea/issues/4692
-  patch -Np1 -i ../gitea-disable-u2f.patch
 
   cd $GOPATH/src/code.gitea.io/gitea
   dep ensure

Modified: gitea-arch-defaults.patch
===
--- gitea-arch-defaults.patch   2019-04-21 13:32:52 UTC (rev 452824)
+++ gitea-arch-defaults.patch   2019-04-21 15:55:34 UTC (rev 452825)
@@ -16,16 +16,16 @@
  SCRIPT_TYPE = bash
  ; Default ANSI charset
  ANSI_CHARSET =
-@@ -236,7 +236,7 @@ SQLITE_TIMEOUT = 500
+@@ -247,7 +247,7 @@ SQLITE_TIMEOUT = 500
  ; For iterate buffer, default is 50
  ITERATE_BUFFER_SIZE = 50
  ; Show the database generated SQL
 -LOG_SQL = true
 +LOG_SQL = false
- 
- [indexer]
- ISSUE_INDEXER_PATH = indexers/issues.bleve
-@@ -473,10 +473,10 @@ MAX_FILES = 5
+ ; Maximum number of DB Connect retries
+ DB_RETRIES = 10
+ ; Backoff time per DB retry (time.Duration)
+@@ -510,10 +510,10 @@ MAX_FILES = 5
  FORMAT =
  
  [log]
@@ -38,7 +38,7 @@
  ; Buffer length of the channel, keep it as it is if you don't know what it is.
  BUFFER_LEN = 1
  ; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is 
"Trace"
-@@ -484,7 +484,7 @@ LEVEL = Trace
+@@ -522,7 +522,7 @@ LEVEL = Trace
  
  ; For "console" mode only
  [log.console]

Modified: gitea-ldflags.patch
===
--- gitea-ldflags.patch 2019-04-21 13:32:52 UTC (rev 452824)
+++ gitea-ldflags.patch 2019-04-21 15:55:34 UTC (rev 452825)
@@ -1,6 +1,6 @@
 --- a/Makefile
 +++ b/Makefile
-@@ -33,6 +33,7 @@ else
+@@ -36,6 +36,7 @@ else
GITEA_VERSION := $(shell git describe --tags --always | sed 's/-/+/' | 
sed 's/^v//')
  endif
  
@@ -7,8 +7,8 @@
 +EXTLDFLAGS := ${LDFLAGS}
  LDFLAGS := -X "main.Version=$(GITEA_VERSION)" -X "main.Tags=$(TAGS)"
  
- PACKAGES ?= $(filter-out code.gitea.io/gitea/integrations,$(shell $(GO) list 
./... | grep -v /vendor/))
-@@ -263,7 +264,7 @@ install: $(wildcard *.go)
+ PACKAGES ?= $(filter-out 
code.gitea.io/gitea/integrations/migration-test,$(filter-out 
code.gitea.io/gitea/integrations,$(shell $(GO) list ./... | grep -v /vendor/)))
+@@ -312,7 +313,7 @@ install: $(wildcard *.go)
  build: $(EXECUTABLE)
  
  $(EXECUTABLE): $(SOURCES)


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 16:15:03
  Author: felixonmars
Revision: 452827

upgpkg: python-wand 0.5.3-1

Modified:
  python-wand/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 15:55:49 UTC (rev 452826)
+++ PKGBUILD2019-04-21 16:15:03 UTC (rev 452827)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-wand
-pkgver=0.5.2
+pkgver=0.5.3
 pkgrel=1
 pkgdesc="Ctypes-based simple MagickWand API binding for Python"
 url="https://github.com/emcconville/wand";
@@ -12,7 +12,7 @@
 checkdepends=('python-pytest-runner' 'python-pytest-xdist' 
'python-memory-profiler' 'python-psutil'
   'ghostscript' 'librsvg')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/emcconville/wand/archive/$pkgver.tar.gz";)
-sha512sums=('a4a81f25ed77ab5d96073cec9ec07d53c942e2e302dcd6a4b957ab8406f321095976d57ecd2569cc51203ce99608684fcf9036de512fa7e533357ae6023ab25b')
+sha512sums=('2d7886082b6b8bc6065fae65ee58e393e8e7d9f45c7f7f0f10e53870b8d929fe3483954702aaafb17bc3d593eedb58a1e91c8a474bcf41a81758e4127599dd94')
 
 build() {
   cd wand-$pkgver


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 16:15:20
  Author: felixonmars
Revision: 452828

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 16:15:03 UTC (rev 452827)
+++ PKGBUILD2019-04-21 16:15:20 UTC (rev 452828)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-wand
-pkgver=0.5.2
-pkgrel=1
-pkgdesc="Ctypes-based simple MagickWand API binding for Python"
-url="https://github.com/emcconville/wand";
-license=('MIT')
-arch=('any')
-depends=('imagemagick' 'libxml2' 'python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-pytest-xdist' 
'python-memory-profiler' 'python-psutil'
-  'ghostscript' 'librsvg')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/emcconville/wand/archive/$pkgver.tar.gz";)
-sha512sums=('a4a81f25ed77ab5d96073cec9ec07d53c942e2e302dcd6a4b957ab8406f321095976d57ecd2569cc51203ce99608684fcf9036de512fa7e533357ae6023ab25b')
-
-build() {
-  cd wand-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd wand-$pkgver
-  python setup.py pytest || warning "Tests failed"
-}
-
-package() {
-  cd wand-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  rm "$pkgdir"/usr/README.rst
-}

Copied: python-wand/repos/community-any/PKGBUILD (from rev 452827, 
python-wand/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 16:15:20 UTC (rev 452828)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-wand
+pkgver=0.5.3
+pkgrel=1
+pkgdesc="Ctypes-based simple MagickWand API binding for Python"
+url="https://github.com/emcconville/wand";
+license=('MIT')
+arch=('any')
+depends=('imagemagick' 'libxml2' 'python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-pytest-xdist' 
'python-memory-profiler' 'python-psutil'
+  'ghostscript' 'librsvg')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/emcconville/wand/archive/$pkgver.tar.gz";)
+sha512sums=('2d7886082b6b8bc6065fae65ee58e393e8e7d9f45c7f7f0f10e53870b8d929fe3483954702aaafb17bc3d593eedb58a1e91c8a474bcf41a81758e4127599dd94')
+
+build() {
+  cd wand-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd wand-$pkgver
+  python setup.py pytest || warning "Tests failed"
+}
+
+package() {
+  cd wand-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  rm "$pkgdir"/usr/README.rst
+}


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

2019-04-21 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, April 21, 2019 @ 16:34:58
  Author: sangy
Revision: 452829

upgpkg: python-breathe 4.13.0-1

Drop py2 support

Modified:
  python-breathe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 16:15:20 UTC (rev 452828)
+++ PKGBUILD2019-04-21 16:34:58 UTC (rev 452829)
@@ -3,8 +3,8 @@
 # Contributor: Simon Boulay 
 
 pkgbase=python-breathe
-pkgname=('python-breathe' 'python2-breathe')
-pkgver=4.11.1
+pkgname='python-breathe'
+pkgver=4.13.0
 pkgrel=1
 pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output."
 arch=('any')
@@ -16,29 +16,17 @@
 sha256sums=('SKIP')
 validpgpkeys=('79DC0FAF18C31807E82E1A6B9EF1DC92B5F301BD') # Melvin Vermeeren 

 
-prepare() {
-  cp -a "breathe" "breathe2"
-}
-
 # FIXME: tests are disabled for now, as sphinx 1.8.1+ break them.
 # See upstream bug: https://github.com/michaeljones/breathe/issues/394
-# check() {
-#   cd breathe
-# 
-#   PYTHONPATH=$PWD make test
-# 
-#   cd "${srcdir}/breathe2"
-# 
-#   PYTHONPATH=$PWD make test
-# 
-# }
+check() {
+  cd breathe
 
+  PYTHONPATH=$PWD make test
+}
+
 build() {
   cd breathe
   python setup.py build
-
-  cd "${srcdir}/breathe2"
-  python setup.py build
 }
 
 package_python-breathe() {
@@ -49,17 +37,3 @@
 
   install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
-
-
-package_python2-breathe() {
-  pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output (python2)"
-  depends=('python2' 'python2-setuptools' 'python2-sphinx' 'python2-docutils' 
'python2-six')
-
-  cd "breathe2"
-  python2 setup.py install --root="${pkgdir}" --skip-build --optimize=1
-
-  # To avoid file conflict with the python3 version
-  mv "$pkgdir"/usr/bin/breathe-apidoc{,2}
-
-  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}


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

2019-04-21 Thread Santiago Torres-Arias via arch-commits
Date: Sunday, April 21, 2019 @ 16:35:16
  Author: sangy
Revision: 452830

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 16:34:58 UTC (rev 452829)
+++ PKGBUILD2019-04-21 16:35:16 UTC (rev 452830)
@@ -1,65 +0,0 @@
-# Maintainer : Daniel Bermond < archlinux-org: dbermond >
-# Maintainer : Santiago Torres-Arias 
-# Contributor: Simon Boulay 
-
-pkgbase=python-breathe
-pkgname=('python-breathe' 'python2-breathe')
-pkgver=4.11.1
-pkgrel=1
-pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output."
-arch=('any')
-url="https://breathe.readthedocs.org/en/latest/";
-license=('BSD')
-makedepends=('python' 'git' 'python-setuptools' 'python2' 'python2-setuptools')
-source=("git+https://github.com/michaeljones/breathe#tag=v${pkgver}?signed";)
-checkdepends=('python-nose' 'python2-nose' 'python-sphinx' 'python2-sphinx')
-sha256sums=('SKIP')
-validpgpkeys=('79DC0FAF18C31807E82E1A6B9EF1DC92B5F301BD') # Melvin Vermeeren 

-
-prepare() {
-  cp -a "breathe" "breathe2"
-}
-
-# FIXME: tests are disabled for now, as sphinx 1.8.1+ break them.
-# See upstream bug: https://github.com/michaeljones/breathe/issues/394
-# check() {
-#   cd breathe
-# 
-#   PYTHONPATH=$PWD make test
-# 
-#   cd "${srcdir}/breathe2"
-# 
-#   PYTHONPATH=$PWD make test
-# 
-# }
-
-build() {
-  cd breathe
-  python setup.py build
-
-  cd "${srcdir}/breathe2"
-  python setup.py build
-}
-
-package_python-breathe() {
-  depends=('python' 'python-setuptools' 'python-sphinx' 'python-docutils' 
'python-six')
-
-  cd "breathe"
-  python setup.py install --root="${pkgdir}" --skip-build --optimize=1
-
-  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-
-package_python2-breathe() {
-  pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output (python2)"
-  depends=('python2' 'python2-setuptools' 'python2-sphinx' 'python2-docutils' 
'python2-six')
-
-  cd "breathe2"
-  python2 setup.py install --root="${pkgdir}" --skip-build --optimize=1
-
-  # To avoid file conflict with the python3 version
-  mv "$pkgdir"/usr/bin/breathe-apidoc{,2}
-
-  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-breathe/repos/community-any/PKGBUILD (from rev 452829, 
python-breathe/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 16:35:16 UTC (rev 452830)
@@ -0,0 +1,39 @@
+# Maintainer : Daniel Bermond < archlinux-org: dbermond >
+# Maintainer : Santiago Torres-Arias 
+# Contributor: Simon Boulay 
+
+pkgbase=python-breathe
+pkgname='python-breathe'
+pkgver=4.13.0
+pkgrel=1
+pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output."
+arch=('any')
+url="https://breathe.readthedocs.org/en/latest/";
+license=('BSD')
+makedepends=('python' 'git' 'python-setuptools' 'python2' 'python2-setuptools')
+source=("git+https://github.com/michaeljones/breathe#tag=v${pkgver}?signed";)
+checkdepends=('python-nose' 'python2-nose' 'python-sphinx' 'python2-sphinx')
+sha256sums=('SKIP')
+validpgpkeys=('79DC0FAF18C31807E82E1A6B9EF1DC92B5F301BD') # Melvin Vermeeren 

+
+# FIXME: tests are disabled for now, as sphinx 1.8.1+ break them.
+# See upstream bug: https://github.com/michaeljones/breathe/issues/394
+check() {
+  cd breathe
+
+  PYTHONPATH=$PWD make test
+}
+
+build() {
+  cd breathe
+  python setup.py build
+}
+
+package_python-breathe() {
+  depends=('python' 'python-setuptools' 'python-sphinx' 'python-docutils' 
'python-six')
+
+  cd "breathe"
+  python setup.py install --root="${pkgdir}" --skip-build --optimize=1
+
+  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2019-04-21 Thread Christian Hesse via arch-commits
Date: Sunday, April 21, 2019 @ 17:30:15
  Author: eworm
Revision: 452831

upgpkg: virtualbox 6.0.6-2

rebuilt with old acpica 20190215-1 for fix guest ACPI breakage (FS#62381)

Modified:
  virtualbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 16:35:16 UTC (rev 452830)
+++ PKGBUILD2019-04-21 17:30:15 UTC (rev 452831)
@@ -10,8 +10,8 @@
  'virtualbox-guest-utils-nox'
  'virtualbox-ext-vnc')
 pkgver=6.0.6
-pkgrel=1
-_vboxsf_commit='8dd4b8bd5cfe6ddae8fe7056dff790013b985d22'
+pkgrel=2
+_vboxsf_commit='87b9015c57dd7f226c768131bf8b4c0249de9835'
 arch=('x86_64')
 url='https://virtualbox.org/'
 license=('GPL' 'custom')


[arch-commits] Commit in virtualbox/repos/community-x86_64 (54 files)

2019-04-21 Thread Christian Hesse via arch-commits
Date: Sunday, April 21, 2019 @ 17:30:32
  Author: eworm
Revision: 452832

archrelease: copy trunk to community-x86_64

Added:
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
(from rev 452831, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
(from rev 452831, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 452831, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-x86_64/008-no-vboxvideo.patch
(from rev 452831, virtualbox/trunk/008-no-vboxvideo.patch)
  virtualbox/repos/community-x86_64/009-include-path.patch
(from rev 452831, virtualbox/trunk/009-include-path.patch)
  virtualbox/repos/community-x86_64/011-python-3-7.patch
(from rev 452831, virtualbox/trunk/011-python-3-7.patch)
  
virtualbox/repos/community-x86_64/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch
(from rev 452831, 
virtualbox/trunk/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch)
  virtualbox/repos/community-x86_64/101-vboxsf-automount.patch
(from rev 452831, virtualbox/trunk/101-vboxsf-automount.patch)
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
(from rev 452831, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-x86_64/60-vboxguest.rules
(from rev 452831, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-x86_64/LocalConfig.kmk
(from rev 452831, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-x86_64/PKGBUILD
(from rev 452831, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-x86_64/build.sh
(from rev 452831, virtualbox/trunk/build.sh)
  virtualbox/repos/community-x86_64/mount.vboxsf
(from rev 452831, virtualbox/trunk/mount.vboxsf)
  virtualbox/repos/community-x86_64/vboxreload
(from rev 452831, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-x86_64/vboxservice-nox.service
(from rev 452831, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-x86_64/vboxservice.service
(from rev 452831, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-x86_64/vboxweb.service
(from rev 452831, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
(from rev 452831, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.conf
(from rev 452831, virtualbox/trunk/virtualbox-guest-dkms.conf)
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.install
(from rev 452831, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.sysusers
(from rev 452831, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-x86_64/virtualbox-host-dkms.conf
(from rev 452831, virtualbox/trunk/virtualbox-host-dkms.conf)
  virtualbox/repos/community-x86_64/virtualbox-host-dkms.install
(from rev 452831, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-x86_64/virtualbox-vboxsf-dkms.conf
(from rev 452831, virtualbox/trunk/virtualbox-vboxsf-dkms.conf)
  virtualbox/repos/community-x86_64/virtualbox.install
(from rev 452831, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-x86_64/virtualbox.sysusers
(from rev 452831, virtualbox/trunk/virtualbox.sysusers)
Deleted:
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
  virtualbox/repos/community-x86_64/008-no-vboxvideo.patch
  virtualbox/repos/community-x86_64/009-include-path.patch
  virtualbox/repos/community-x86_64/011-python-3-7.patch
  
virtualbox/repos/community-x86_64/012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch
  virtualbox/repos/community-x86_64/101-vboxsf-automount.patch
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
  virtualbox/repos/community-x86_64/60-vboxguest.rules
  virtualbox/repos/community-x86_64/LocalConfig.kmk
  virtualbox/repos/community-x86_64/PKGBUILD
  virtualbox/repos/community-x86_64/build.sh
  virtualbox/repos/community-x86_64/mount.vboxsf
  virtualbox/repos/community-x86_64/vboxreload
  virtualbox/repos/community-x86_64/vboxservice-nox.service
  virtualbox/repos/community-x86_64/vboxservice.service
  virtualbox/repos/community-x86_64/vboxweb.service
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.conf
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.install
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.sysusers
  virtualbox/repos/community-x86_64/virtualbox-host-dkms.conf
  virtualbox/repos/community-x86_64/virtualbox-host-dkms.install
  virtualbox/repos/community-x86_64/virtualbox-vboxsf-dkms.conf
  virtualbox/repos/community-x86_64/virtualbox.install
  virtualbox/repos/comm

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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:19:38
  Author: felixonmars
Revision: 452833

upgpkg: python-rfc3986 1.3.0-1

Modified:
  python-rfc3986/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 17:30:32 UTC (rev 452832)
+++ PKGBUILD2019-04-21 18:19:38 UTC (rev 452833)
@@ -3,7 +3,7 @@
 
 pkgbase=python-rfc3986
 pkgname=(python-rfc3986 python2-rfc3986)
-pkgver=1.2.0
+pkgver=1.3.0
 pkgrel=1
 pkgdesc="Validating URI References per RFC 3986"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
 source=("https://pypi.io/packages/source/r/rfc3986/rfc3986-$pkgver.tar.gz";)
-sha512sums=('b88bdc47fa2daa6a9ffc339b1b997a85d0c8b3bf3ab271554e2a1a684c0394370e9cba07a82a542f39533a4c8cae69414234545db6caa2508e0ee7e7f8bdff3d')
+sha512sums=('cc5eb21797e4d6499ac59bb7225efec8043f4a42946b783c288ee4fa1f2a0835bf8ab44e6290d7652891eeac3a27d9c93ba1d73ab4d83bd01b1dccb48c8e90e5')
 
 prepare() {
   cp -a rfc3986-$pkgver{,-py2}


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:20:12
  Author: felixonmars
Revision: 452834

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 18:19:38 UTC (rev 452833)
+++ PKGBUILD2019-04-21 18:20:12 UTC (rev 452834)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgbase=python-rfc3986
-pkgname=(python-rfc3986 python2-rfc3986)
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="Validating URI References per RFC 3986"
-arch=('any')
-license=('Apache')
-url="https://rfc3986.readthedocs.org/";
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("https://pypi.io/packages/source/r/rfc3986/rfc3986-$pkgver.tar.gz";)
-sha512sums=('b88bdc47fa2daa6a9ffc339b1b997a85d0c8b3bf3ab271554e2a1a684c0394370e9cba07a82a542f39533a4c8cae69414234545db6caa2508e0ee7e7f8bdff3d')
-
-prepare() {
-  cp -a rfc3986-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/rfc3986-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/rfc3986-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/rfc3986-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/rfc3986-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-rfc3986() {
-  depends=('python')
-
-  cd rfc3986-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-rfc3986() {
-  depends=('python2')
-
-  cd rfc3986-$pkgver-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}

Copied: python-rfc3986/repos/community-any/PKGBUILD (from rev 452833, 
python-rfc3986/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 18:20:12 UTC (rev 452834)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgbase=python-rfc3986
+pkgname=(python-rfc3986 python2-rfc3986)
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="Validating URI References per RFC 3986"
+arch=('any')
+license=('Apache')
+url="https://rfc3986.readthedocs.org/";
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("https://pypi.io/packages/source/r/rfc3986/rfc3986-$pkgver.tar.gz";)
+sha512sums=('cc5eb21797e4d6499ac59bb7225efec8043f4a42946b783c288ee4fa1f2a0835bf8ab44e6290d7652891eeac3a27d9c93ba1d73ab4d83bd01b1dccb48c8e90e5')
+
+prepare() {
+  cp -a rfc3986-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/rfc3986-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/rfc3986-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/rfc3986-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/rfc3986-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-rfc3986() {
+  depends=('python')
+
+  cd rfc3986-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-rfc3986() {
+  depends=('python2')
+
+  cd rfc3986-$pkgver-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:23:58
  Author: felixonmars
Revision: 452835

upgpkg: uglify-js 3.5.6-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 18:20:12 UTC (rev 452834)
+++ PKGBUILD2019-04-21 18:23:58 UTC (rev 452835)
@@ -2,7 +2,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=3.5.5
+pkgver=3.5.6
 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=('7b9f05a99ccfc1a2ce0d07ad0d02a5bc4ad9686921d549b33fc630534686eb934ba2eaca36dc15c831bcb64232514d2fa96cf16a2912bd36b1ac24ac726beabd')
+sha512sums=('6032915fc17463e26becb868564d27e06ee5b51dd8eea1408fe0ed541b6194e8027088f58723228027e8bac55f9fd1ca9af27eaa21652c3c1a1f1e38fdee592b')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:25:10
  Author: felixonmars
Revision: 452836

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 18:23:58 UTC (rev 452835)
+++ PKGBUILD2019-04-21 18:25:10 UTC (rev 452836)
@@ -1,27 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=3.5.5
-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=('7b9f05a99ccfc1a2ce0d07ad0d02a5bc4ad9686921d549b33fc630534686eb934ba2eaca36dc15c831bcb64232514d2fa96cf16a2912bd36b1ac24ac726beabd')
-
-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/"
-
-  # Fix npm derp
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 452835, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 18:25:10 UTC (rev 452836)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=3.5.6
+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=('6032915fc17463e26becb868564d27e06ee5b51dd8eea1408fe0ed541b6194e8027088f58723228027e8bac55f9fd1ca9af27eaa21652c3c1a1f1e38fdee592b')
+
+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/"
+
+  # Fix npm derp
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: uglify-js.install
===
--- uglify-js.install   2019-04-21 18:23:58 UTC (rev 452835)
+++ uglify-js.install   2019-04-21 18:25:10 UTC (rev 452836)
@@ -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 452835, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2019-04-21 18:25:10 UTC (rev 452836)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


[arch-commits] Commit in perl-async-interrupt/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:31:36
  Author: felixonmars
Revision: 351852

upgpkg: perl-async-interrupt 1.25-1

Modified:
  perl-async-interrupt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 15:04:26 UTC (rev 351851)
+++ PKGBUILD2019-04-21 18:31:36 UTC (rev 351852)
@@ -2,8 +2,8 @@
 # Contributor: Justin Davis (juster) 
 
 pkgname=perl-async-interrupt
-pkgver=1.24
-pkgrel=2
+pkgver=1.25
+pkgrel=1
 pkgdesc='allow C/XS libraries to interrupt perl asynchronously'
 arch=(x86_64)
 license=(PerlArtistic GPL)
@@ -11,7 +11,7 @@
 depends=('perl-canary-stability' 'perl-common-sense')
 url=https://metacpan.org/release/Async-Interrupt
 
source=("http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Async-Interrupt-$pkgver.tar.gz";)
-sha512sums=('7632d0537e2f7dd6fb406333ced170261eb5de2b5db86f066fac61ba37a6d7995a72de4cb9c329e2d93369dc591cce5e1b8baef5976e13b58c42411e930ac246')
+sha512sums=('095fde4dbf8fb9a25cbc9e07d4793f08cab7275148e53293ed3c2849c569e6ed0587ca3c4f7eeeca394f56416bb1303d90607454115792eb9e564d86be89639a')
 
 build() {
   cd Async-Interrupt-$pkgver


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:31:35
  Author: felixonmars
Revision: 452837

upgpkg: python-ruamel-yaml 0.15.93-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 18:25:10 UTC (rev 452836)
+++ PKGBUILD2019-04-21 18:31:35 UTC (rev 452837)
@@ -3,7 +3,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.15.92
+pkgver=0.15.93
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=("MIT")
 makedepends=('python-pip' 'python-wheel')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz";)
-sha512sums=('81034a9907cd1a872949ac4ec9bb65b25e5cb06c222048c4f783c57c208066d5db3d3836f6a0b56754667016d0db93b3905734df798389623a4308d772e4bf62')
+sha512sums=('a5fd3a6ec0956ec3b95bd5c68a3eec43e7ba62b3972741664362d2ea709ef9b46facbd9090882b5ac1eee67b319233581fc99291b8787e321c6bdf525f975e20')
 
 package() {
   depends=('python')


[arch-commits] Commit in python-ruamel-yaml/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:32:05
  Author: felixonmars
Revision: 452838

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 18:31:35 UTC (rev 452837)
+++ PKGBUILD2019-04-21 18:32:05 UTC (rev 452838)
@@ -1,22 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.15.92
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('x86_64')
-url="https://bitbucket.org/ruamel/yaml";
-license=("MIT")
-makedepends=('python-pip' 'python-wheel')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz";)
-sha512sums=('81034a9907cd1a872949ac4ec9bb65b25e5cb06c222048c4f783c57c208066d5db3d3836f6a0b56754667016d0db93b3905734df798389623a4308d772e4bf62')
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

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


[arch-commits] Commit in perl-async-interrupt/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:32:07
  Author: felixonmars
Revision: 351853

archrelease: copy trunk to extra-x86_64

Added:
  perl-async-interrupt/repos/extra-x86_64/PKGBUILD
(from rev 351852, perl-async-interrupt/trunk/PKGBUILD)
Deleted:
  perl-async-interrupt/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 18:31:36 UTC (rev 351852)
+++ PKGBUILD2019-04-21 18:32:07 UTC (rev 351853)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Justin Davis (juster) 
-
-pkgname=perl-async-interrupt
-pkgver=1.24
-pkgrel=2
-pkgdesc='allow C/XS libraries to interrupt perl asynchronously'
-arch=(x86_64)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=('perl-canary-stability' 'perl-common-sense')
-url=https://metacpan.org/release/Async-Interrupt
-source=("http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Async-Interrupt-$pkgver.tar.gz";)
-sha512sums=('7632d0537e2f7dd6fb406333ced170261eb5de2b5db86f066fac61ba37a6d7995a72de4cb9c329e2d93369dc591cce5e1b8baef5976e13b58c42411e930ac246')
-
-build() {
-  cd Async-Interrupt-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL
-  make
-}
-
-check() {
-  cd Async-Interrupt-$pkgver
-  make test
-}
-
-package() {
-  cd Async-Interrupt-$pkgver
-  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-async-interrupt/repos/extra-x86_64/PKGBUILD (from rev 351852, 
perl-async-interrupt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 18:32:07 UTC (rev 351853)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Justin Davis (juster) 
+
+pkgname=perl-async-interrupt
+pkgver=1.25
+pkgrel=1
+pkgdesc='allow C/XS libraries to interrupt perl asynchronously'
+arch=(x86_64)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=('perl-canary-stability' 'perl-common-sense')
+url=https://metacpan.org/release/Async-Interrupt
+source=("http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Async-Interrupt-$pkgver.tar.gz";)
+sha512sums=('095fde4dbf8fb9a25cbc9e07d4793f08cab7275148e53293ed3c2849c569e6ed0587ca3c4f7eeeca394f56416bb1303d90607454115792eb9e564d86be89639a')
+
+build() {
+  cd Async-Interrupt-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL
+  make
+}
+
+check() {
+  cd Async-Interrupt-$pkgver
+  make test
+}
+
+package() {
+  cd Async-Interrupt-$pkgver
+  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:33:31
  Author: felixonmars
Revision: 452840

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
452839, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 18:33:31 UTC (rev 452840)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.2
+pkgrel=1
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz";)
+sha512sums=('90c3fabe3e1478f43b0157580deb691e5be8d3064144cbf4d67ab8f15bfd99c51b3e811b47bbe4fefc76c4efe660007ab05a782e5a5df01cd42965fe22e5c664')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+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-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+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
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+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 gulp/trunk (PKGBUILD)

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:33:47
  Author: felixonmars
Revision: 452841

upgpkg: gulp 4.0.1-1

Modified:
  gulp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 18:33:31 UTC (rev 452840)
+++ PKGBUILD2019-04-21 18:33:47 UTC (rev 452841)
@@ -2,7 +2,7 @@
 # Contributor: Micha Alt 
 
 pkgname=gulp
-pkgver=4.0.0
+pkgver=4.0.1
 pkgrel=1
 pkgdesc="The streaming build system"
 arch=('any')
@@ -12,11 +12,10 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz";)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('2e7d7392cfa7745ead0ea7b67a336d436647f7749a044992b3302bb0bb929d8d3be49bbbd9208492413bcb2188c4ad3e7edd9475a6216ba69feb89a1d18bd4ac')
+sha512sums=('c8356d56e9f1ac076c93bac857f6fb95548189f3cdd44a9eeb04e3b04486ac570bf8c115cda69e35392952e193529b65a12394fbca099bf94125b80f57eb4c03')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
 
   mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
   ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:33:05
  Author: felixonmars
Revision: 452839

upgpkg: pandoc-citeproc 0.16.2-1

rebuild with pandoc-citeproc 0.16.2

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 18:32:05 UTC (rev 452838)
+++ PKGBUILD2019-04-21 18:33:05 UTC (rev 452839)
@@ -2,8 +2,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=pandoc-citeproc
-pkgver=0.16.1.3
-pkgrel=17
+pkgver=0.16.2
+pkgrel=1
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname";
 license=("BSD")
@@ -18,7 +18,7 @@
 replaces=('haskell-pandoc-citeproc')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz";)
-sha512sums=('01e32fe8d7c75878c6aa1004badc892eef946ecf0f0e5a3f76242e18188dcf3f9b555892b97ce668de7de050daf344eeff2ee9322ac5ee44a141af88e3637d91')
+sha512sums=('90c3fabe3e1478f43b0157580deb691e5be8d3064144cbf4d67ab8f15bfd99c51b3e811b47bbe4fefc76c4efe660007ab05a782e5a5df01cd42965fe22e5c664')
 
 prepare() {
 cd "${srcdir}/$pkgname-${pkgver}"


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:34:19
  Author: felixonmars
Revision: 452842

archrelease: copy trunk to community-any

Deleted:
  gulp/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 18:33:47 UTC (rev 452841)
+++ PKGBUILD2019-04-21 18:34:19 UTC (rev 452842)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Micha Alt 
-
-pkgname=gulp
-pkgver=4.0.0
-pkgrel=1
-pkgdesc="The streaming build system"
-arch=('any')
-url="http://gulpjs.com/";
-license=('MIT')
-depends=('nodejs' 'semver')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz";)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('2e7d7392cfa7745ead0ea7b67a336d436647f7749a044992b3302bb0bb929d8d3be49bbbd9208492413bcb2188c4ad3e7edd9475a6216ba69feb89a1d18bd4ac')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in semver; do
-rm -r $dep;
-  done
-}


[arch-commits] Commit in atftp/trunk (PKGBUILD atftp-0.7-cflags.patch)

2019-04-21 Thread Christian Hesse via arch-commits
Date: Sunday, April 21, 2019 @ 18:35:39
  Author: eworm
Revision: 452843

upgpkg: atftp 0.7.2-1

new upstream release

Modified:
  atftp/trunk/PKGBUILD
Deleted:
  atftp/trunk/atftp-0.7-cflags.patch

+
 PKGBUILD   |   17 +++--
 atftp-0.7-cflags.patch |   32 
 2 files changed, 3 insertions(+), 46 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 18:34:19 UTC (rev 452842)
+++ PKGBUILD2019-04-21 18:35:39 UTC (rev 452843)
@@ -2,8 +2,8 @@
 # Contributor: Johannes Löthberg 
 
 pkgname=atftp
-pkgver=0.7.1
-pkgrel=6
+pkgver=0.7.2
+pkgrel=1
 pkgdesc='Client/server implementation of the TFTP protocol that implements 
RFCs 1350, 2090, 2347, 2348, and 2349'
 arch=('x86_64')
 url='https://sourceforge.net/projects/atftp/'
@@ -11,27 +11,16 @@
 depends=('pcre' 'readline')
 backup=('etc/conf.d/atftpd')
 source=("https://downloads.sf.net/sourceforge/atftp/atftp-$pkgver.tar.gz";
-'atftp-0.7-cflags.patch'
 'atftpd.service'
 'atftpd.conf'
 'sysusers.conf'
 'tmpfiles.conf')
-sha256sums=('ae4c6f09cadb8d2150c3ce32d88f19036a54e8211f22d723e97864bb5e18f92d'
-'56a9bdf1c4f9452db041fce1bc4c994e84ce44c6093ef48588f8d8bc93adaf24'
+sha256sums=('1ad080674e9f974217b3a703e7356c6c8446dc5e7b2014d0d06e1bfaa11b5041'
 '74a030f0fb48e97470d59d767039e44d28cbd6c4722621207684220210b8fa65'
 '0b28125099ffdd6869c6fbcb3167e93ccd71a0c6e465b1b62c7dedf9f628dd4e'
 'e56f601bcdf0d64bf98813cd4a1be323541e33921c7d4f350168f62b56e66d11'
 '2096272445c736ba05529af628cc2d46d0236c8f1ecbd50bb1db6dc6c4a972c5')
 
-prepare() {
-  cd atftp-$pkgver
-
-  # Respect our CFLAGS; needed below for building with -std=gnu89
-  patch -Np1 -i ../atftp-0.7-cflags.patch
-
-  autoreconf -vi
-}
-
 build() {
   cd atftp-$pkgver
 

Deleted: atftp-0.7-cflags.patch
===
--- atftp-0.7-cflags.patch  2019-04-21 18:34:19 UTC (rev 452842)
+++ atftp-0.7-cflags.patch  2019-04-21 18:35:39 UTC (rev 452843)
@@ -1,32 +0,0 @@
 atftp-0.7/configure.ac
-+++ atftp-0.7/configure.ac
-@@ -66,29 +66,6 @@
- dnl Check for AIX
- AC_AIX
- 
--CFLAGS="-g -Wall -D_REENTRANT"
--
--if test x$debug = xtrue; then
--   CFLAGS="$CFLAGS -O0 -DDEBUG"
--else
--  if test -n "$auto_cflags"; then
--if test -n "$GCC"; then
--  CFLAGS="$CFLAGS -g -O2 -Wall -Wno-implicit"
--else
--  case "$host_os" in
--*hpux*)  CFLAGS="$CFLAGS +O3"
--;;
--*ultrix* | *osf*) CFLAGS="$CFLAGS -O -Olimit 2000"
--;;
--*)   CFLAGS="$CFLAGS -O2"
--;;
--  esac
--fi
--  else
--CFLAGS="$CFLAGS -O2"
--  fi
--fi
--
- AC_PROG_MAKE_SET
- AC_PROG_INSTALL
- 


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:35:44
  Author: felixonmars
Revision: 452845

Added:
  gulp/repos/community-any/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 18:35:44 UTC (rev 452845)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Micha Alt 
+
+pkgname=gulp
+pkgver=4.0.1
+pkgrel=1
+pkgdesc="The streaming build system"
+arch=('any')
+url="http://gulpjs.com/";
+license=('MIT')
+depends=('nodejs' 'semver')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz";)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('c8356d56e9f1ac076c93bac857f6fb95548189f3cdd44a9eeb04e3b04486ac570bf8c115cda69e35392952e193529b65a12394fbca099bf94125b80f57eb4c03')
+
+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/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in semver; do
+rm -r $dep;
+  done
+}


[arch-commits] Commit in atftp/repos/community-x86_64 (11 files)

2019-04-21 Thread Christian Hesse via arch-commits
Date: Sunday, April 21, 2019 @ 18:35:42
  Author: eworm
Revision: 452844

archrelease: copy trunk to community-x86_64

Added:
  atftp/repos/community-x86_64/PKGBUILD
(from rev 452843, atftp/trunk/PKGBUILD)
  atftp/repos/community-x86_64/atftpd.conf
(from rev 452843, atftp/trunk/atftpd.conf)
  atftp/repos/community-x86_64/atftpd.service
(from rev 452843, atftp/trunk/atftpd.service)
  atftp/repos/community-x86_64/sysusers.conf
(from rev 452843, atftp/trunk/sysusers.conf)
  atftp/repos/community-x86_64/tmpfiles.conf
(from rev 452843, atftp/trunk/tmpfiles.conf)
Deleted:
  atftp/repos/community-x86_64/PKGBUILD
  atftp/repos/community-x86_64/atftp-0.7-cflags.patch
  atftp/repos/community-x86_64/atftpd.conf
  atftp/repos/community-x86_64/atftpd.service
  atftp/repos/community-x86_64/sysusers.conf
  atftp/repos/community-x86_64/tmpfiles.conf

+
 PKGBUILD   |  113 +--
 atftp-0.7-cflags.patch |   32 -
 atftpd.conf|6 +-
 atftpd.service |   32 ++---
 sysusers.conf  |2 
 tmpfiles.conf  |2 
 6 files changed, 72 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 18:35:39 UTC (rev 452843)
+++ PKGBUILD2019-04-21 18:35:42 UTC (rev 452844)
@@ -1,62 +0,0 @@
-# Maintainer: Benjamin Bukowski 
-# Contributor: Johannes Löthberg 
-
-pkgname=atftp
-pkgver=0.7.1
-pkgrel=6
-pkgdesc='Client/server implementation of the TFTP protocol that implements 
RFCs 1350, 2090, 2347, 2348, and 2349'
-arch=('x86_64')
-url='http://sourceforge.net/projects/atftp/'
-license=('GPL')
-depends=('pcre' 'readline')
-backup=('etc/conf.d/atftpd')
-source=("https://downloads.sf.net/sourceforge/atftp/atftp-$pkgver.tar.gz";
-'atftp-0.7-cflags.patch'
-'atftpd.service'
-'atftpd.conf'
-'sysusers.conf'
-'tmpfiles.conf')
-sha256sums=('ae4c6f09cadb8d2150c3ce32d88f19036a54e8211f22d723e97864bb5e18f92d'
-'56a9bdf1c4f9452db041fce1bc4c994e84ce44c6093ef48588f8d8bc93adaf24'
-'74a030f0fb48e97470d59d767039e44d28cbd6c4722621207684220210b8fa65'
-'0b28125099ffdd6869c6fbcb3167e93ccd71a0c6e465b1b62c7dedf9f628dd4e'
-'e56f601bcdf0d64bf98813cd4a1be323541e33921c7d4f350168f62b56e66d11'
-'2096272445c736ba05529af628cc2d46d0236c8f1ecbd50bb1db6dc6c4a972c5')
-
-prepare() {
-  cd atftp-$pkgver
-
-  # Respect our CFLAGS; needed below for building with -std=gnu89
-  patch -Np1 -i ../atftp-0.7-cflags.patch
-
-  autoreconf -vi
-}
-
-build() {
-  cd atftp-$pkgver
-
-  CFLAGS+=' -std=gnu89'
-
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---sbindir=/usr/bin \
---enable-libreadline \
---disable-libwrap
-  make
-}
-
-package() {
-  cd atftp-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -D -m0644 ../atftpd.service 
"$pkgdir"/usr/lib/systemd/system/atftpd.service
-  install -D -m0644 ../atftpd.conf "$pkgdir"/etc/conf.d/atftpd
-  install -D -m0644 ../sysusers.conf "$pkgdir"/usr/lib/sysusers.d/atftp.conf
-  install -D -m0644 ../tmpfiles.conf "$pkgdir"/usr/lib/tmpfiles.d/atftp.conf
-
-  # remove in.tftpd link as it conflicts with extra/tftp-hpa
-  rm "${pkgdir}/usr/share/man/man8/in.tftpd.8"
-  rm "${pkgdir}/usr/bin/in.tftpd"
-}

Copied: atftp/repos/community-x86_64/PKGBUILD (from rev 452843, 
atftp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 18:35:42 UTC (rev 452844)
@@ -0,0 +1,51 @@
+# Maintainer: Benjamin Bukowski 
+# Contributor: Johannes Löthberg 
+
+pkgname=atftp
+pkgver=0.7.2
+pkgrel=1
+pkgdesc='Client/server implementation of the TFTP protocol that implements 
RFCs 1350, 2090, 2347, 2348, and 2349'
+arch=('x86_64')
+url='https://sourceforge.net/projects/atftp/'
+license=('GPL')
+depends=('pcre' 'readline')
+backup=('etc/conf.d/atftpd')
+source=("https://downloads.sf.net/sourceforge/atftp/atftp-$pkgver.tar.gz";
+'atftpd.service'
+'atftpd.conf'
+'sysusers.conf'
+'tmpfiles.conf')
+sha256sums=('1ad080674e9f974217b3a703e7356c6c8446dc5e7b2014d0d06e1bfaa11b5041'
+'74a030f0fb48e97470d59d767039e44d28cbd6c4722621207684220210b8fa65'
+'0b28125099ffdd6869c6fbcb3167e93ccd71a0c6e465b1b62c7dedf9f628dd4e'
+'e56f601bcdf0d64bf98813cd4a1be323541e33921c7d4f350168f62b56e66d11'
+'2096272445c736ba05529af628cc2d46d0236c8f1ecbd50bb1db6dc6c4a972c5')
+
+build() {
+  cd atftp-$pkgver
+
+  CFLAGS+=' -std=gnu89'
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sbindir=/usr/bin \
+--enable-libreadline \
+--disable-libwrap
+  make
+}
+
+package() {
+  cd atftp-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m0644 ../atftpd.service 
"$pkgdir"/usr/lib/systemd/system/atftpd.service

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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:38:10
  Author: felixonmars
Revision: 452846

upgpkg: haskell-hakyll 4.12.5.1-45

rebuild with pandoc-citeproc 0.16.2

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 18:35:44 UTC (rev 452845)
+++ PKGBUILD2019-04-21 18:38:10 UTC (rev 452846)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.1
-pkgrel=44
+pkgrel=45
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll";
 license=("BSD")


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

2019-04-21 Thread Felix Yan via arch-commits
Date: Sunday, April 21, 2019 @ 18:38:25
  Author: felixonmars
Revision: 452847

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 452846, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
452846, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-04-21 18:38:25 UTC (rev 452847)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.1
+pkgrel=45
+pkgdesc="A static website compiler library"
+url="http://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=('bc8cc9944229c691fbec6b7e6ea52e8a65bd8cc2093d42bd577e30ded1767370b439d8dc694e9842b300f7c884f851cac6a2a9de2817a961c779b83fb0ee1718')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.7/<3/' $_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 linux-hardened/trunk (PKGBUILD)

2019-04-21 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 21, 2019 @ 19:05:55
  Author: jelle
Revision: 351854

upgpkg: linux-hardened 5.0.7.a-2

- Rebuild for FS#62420
- Remove the htmldocs target to follow the linux package,
  since it does not build.

Modified:
  linux-hardened/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 18:32:07 UTC (rev 351853)
+++ PKGBUILD2019-04-21 19:05:55 UTC (rev 351854)
@@ -8,7 +8,7 @@
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
-pkgrel=1
+pkgrel=2
 url='https://github.com/anthraxx/linux-hardened'
 arch=('x86_64')
 license=('GPL2')


[arch-commits] Commit in linux-hardened/repos (7 files)

2019-04-21 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 21, 2019 @ 19:06:07
  Author: jelle
Revision: 351855

archrelease: copy trunk to community-x86_64

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

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  252 +
 config.x86_64 | 9918 
 linux.install |   13 
 linux.preset  |   14 
 6 files changed, 10220 insertions(+)

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


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

2019-04-21 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 21, 2019 @ 19:07:46
  Author: jelle
Revision: 351856

remove failed release

Deleted:
  linux-hardened/repos/community-x86_64/


[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (12 files)

2019-04-21 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 21, 2019 @ 19:08:04
  Author: jelle
Revision: 351857

archrelease: copy trunk to extra-x86_64

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

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  504 -
 config.x86_64 |19836 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10220 insertions(+), 10220 deletions(-)

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


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

2019-04-21 Thread Jan Steffens via arch-commits
Date: Sunday, April 21, 2019 @ 19:26:48
  Author: heftig
Revision: 452850

3.32.1-1

Modified:
  gtranslator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 18:39:37 UTC (rev 452849)
+++ PKGBUILD2019-04-21 19:26:48 UTC (rev 452850)
@@ -4,7 +4,7 @@
 # Contributor: Christer Solskogen (solsko...@carebears.mine.nu)
 
 pkgname=gtranslator
-pkgver=3.32.0
+pkgver=3.32.1
 pkgrel=1
 pkgdesc='An enhanced gettext po file editor for the GNOME desktop environment'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('gtksourceview4' 'gspell' 'gettext' 'libgda' 'iso-codes' 
'hicolor-icon-theme')
 makedepends=('meson' 'gobject-introspection' 'gtk-doc' 'yelp-tools')
 
source=(http://ftp.acc.umu.se/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('aa8b6ce7a6ea199a50ee8f65258e640af80407a7433359b853039a7ea07a11b7')
+sha256sums=('e1b37b0436684eb3079916eff7b6eeac2cd51ebbf8d2d6f35b5480ca0391b4da')
 
 build() {
   arch-meson $pkgname-$pkgver build -Dgtk_doc=true


[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (12 files)

2019-04-21 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 21, 2019 @ 19:27:20
  Author: jelle
Revision: 351859

archrelease: copy trunk to extra-x86_64

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

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  504 -
 config.x86_64 |19836 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10220 insertions(+), 10220 deletions(-)

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


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

2019-04-21 Thread Jan Steffens via arch-commits
Date: Sunday, April 21, 2019 @ 19:27:31
  Author: heftig
Revision: 351860

archrelease: copy trunk to extra-any

Added:
  gnome-weather/repos/extra-any/PKGBUILD
(from rev 351859, gnome-weather/trunk/PKGBUILD)
Deleted:
  gnome-weather/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 19:27:20 UTC (rev 351859)
+++ PKGBUILD2019-04-21 19:27:31 UTC (rev 351860)
@@ -1,33 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-weather
-pkgver=3.32.1
-pkgrel=1
-pkgdesc="Access current weather conditions and forecasts"
-url="https://wiki.gnome.org/Apps/Weather";
-arch=(any)
-license=(GPL)
-depends=(gtk3 gjs libgweather geoclue2 gnome-desktop)
-makedepends=(gobject-introspection appstream-glib git meson)
-groups=(gnome)
-_commit=9a35adeea3b8a9a734ca873c95f1222b23772959  # tags/3.32.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-weather.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-weather/repos/extra-any/PKGBUILD (from rev 351859, 
gnome-weather/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 19:27:31 UTC (rev 351860)
@@ -0,0 +1,33 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-weather
+pkgver=3.32.2
+pkgrel=1
+pkgdesc="Access current weather conditions and forecasts"
+url="https://wiki.gnome.org/Apps/Weather";
+arch=(any)
+license=(GPL)
+depends=(gtk3 gjs libgweather geoclue2 gnome-desktop)
+makedepends=(gobject-introspection appstream-glib git meson)
+groups=(gnome)
+_commit=7e643097f7f541755c139d64a9827400cc35cd7c  # tags/3.32.2^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-weather.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2019-04-21 Thread Jan Steffens via arch-commits
Date: Sunday, April 21, 2019 @ 19:27:30
  Author: heftig
Revision: 452851

archrelease: copy trunk to community-x86_64

Added:
  gtranslator/repos/community-x86_64/PKGBUILD
(from rev 452850, gtranslator/trunk/PKGBUILD)
  gtranslator/repos/community-x86_64/gtranslator.changelog
(from rev 452850, gtranslator/trunk/gtranslator.changelog)
Deleted:
  gtranslator/repos/community-x86_64/PKGBUILD
  gtranslator/repos/community-x86_64/gtranslator.changelog

---+
 PKGBUILD  |   58 +--
 gtranslator.changelog |  146 
 2 files changed, 102 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 19:26:48 UTC (rev 452850)
+++ PKGBUILD2019-04-21 19:27:30 UTC (rev 452851)
@@ -1,29 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Alexander Rødseth 
-# Contributor: Hugo Doria 
-# Contributor: Christer Solskogen (solsko...@carebears.mine.nu)
-
-pkgname=gtranslator
-pkgver=3.32.0
-pkgrel=1
-pkgdesc='An enhanced gettext po file editor for the GNOME desktop environment'
-arch=('x86_64')
-url='http://projects.gnome.org/gtranslator/'
-license=('GPL3')
-depends=('gtksourceview4' 'gspell' 'gettext' 'libgda' 'iso-codes' 
'hicolor-icon-theme')
-makedepends=('meson' 'gobject-introspection' 'gtk-doc' 'yelp-tools')
-source=(http://ftp.acc.umu.se/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('aa8b6ce7a6ea199a50ee8f65258e640af80407a7433359b853039a7ea07a11b7')
-
-build() {
-  arch-meson $pkgname-$pkgver build -Dgtk_doc=true
-  ninja -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="${pkgdir}" meson install -C build
-}

Copied: gtranslator/repos/community-x86_64/PKGBUILD (from rev 452850, 
gtranslator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 19:27:30 UTC (rev 452851)
@@ -0,0 +1,29 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Alexander Rødseth 
+# Contributor: Hugo Doria 
+# Contributor: Christer Solskogen (solsko...@carebears.mine.nu)
+
+pkgname=gtranslator
+pkgver=3.32.1
+pkgrel=1
+pkgdesc='An enhanced gettext po file editor for the GNOME desktop environment'
+arch=('x86_64')
+url='http://projects.gnome.org/gtranslator/'
+license=('GPL3')
+depends=('gtksourceview4' 'gspell' 'gettext' 'libgda' 'iso-codes' 
'hicolor-icon-theme')
+makedepends=('meson' 'gobject-introspection' 'gtk-doc' 'yelp-tools')
+source=(http://ftp.acc.umu.se/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e1b37b0436684eb3079916eff7b6eeac2cd51ebbf8d2d6f35b5480ca0391b4da')
+
+build() {
+  arch-meson $pkgname-$pkgver build -Dgtk_doc=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="${pkgdir}" meson install -C build
+}

Deleted: gtranslator.changelog
===
--- gtranslator.changelog   2019-04-21 19:26:48 UTC (rev 452850)
+++ gtranslator.changelog   2019-04-21 19:27:30 UTC (rev 452851)
@@ -1,73 +0,0 @@
-2019-01-30 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 3.30.1-1
-
-2018-11-07 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 3.30.0-1
-
-2016-04-29 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.7-3 pacman hooks rebuild
-
-2015-03-18 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.7-1
-
-2013-03-28 Balló György 
-   * gtranslator 2.91.6-3
-   rebuild for the new gtkspell3
-
-2013-01-18 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.6-1
-
-2012-11-05 Balló György 
-   * gtranslator 2.91.5-2
-   rebuild for gdl 3.6
-   tempolary disable dockbar, because layout loading is completely broken 
with gdl 3.6
-
-2012-07-30 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.5-1
-
-2012-05-12 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.91.4-1
-
-2012-04-23 Jan Alexander Steffens (heftig) 
-   * gtranslator 2.91.3-2
-   rebuild for gdl 3.4.2
-
-2012-04-21 Balló György 
-   * gtranslator 2.91.3-1
-
-2012-04-09 Balló György 
-   * gtranslator 2.91.2-1
-replace gtkspell dependency with gtkspell3
-remove unused libunique dependency
-remove broken dictionary plugin
-
-2012-03-18 Jaroslav Lichtblau 
-   * gtranslator 2.90.8-1
-
-2011-10-28 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.90.7-1
-
-2011-08-20 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.90.5-1
-
-2011-05-12 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator 2.90.3-1
-
-2011-01-09 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator-1.9.13-1
-
-2010-08-30 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator-1.9.11-1
-
-2010-02-23 Jaroslav Lichtblau (Dragonlord) 
-   * gtranslator-1.9.7-1
-
-2007-0

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

2019-04-21 Thread Jan Steffens via arch-commits
Date: Sunday, April 21, 2019 @ 19:27:07
  Author: heftig
Revision: 351858

3.32.2-1

Modified:
  gnome-weather/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 19:08:04 UTC (rev 351857)
+++ PKGBUILD2019-04-21 19:27:07 UTC (rev 351858)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-weather
-pkgver=3.32.1
+pkgver=3.32.2
 pkgrel=1
 pkgdesc="Access current weather conditions and forecasts"
 url="https://wiki.gnome.org/Apps/Weather";
@@ -10,7 +10,7 @@
 depends=(gtk3 gjs libgweather geoclue2 gnome-desktop)
 makedepends=(gobject-introspection appstream-glib git meson)
 groups=(gnome)
-_commit=9a35adeea3b8a9a734ca873c95f1222b23772959  # tags/3.32.1^0
+_commit=7e643097f7f541755c139d64a9827400cc35cd7c  # tags/3.32.2^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-weather.git#commit=$_commit";)
 sha256sums=('SKIP')
 


[arch-commits] Commit in kdenlive/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-04-21 Thread Antonio Rojas via arch-commits
Date: Sunday, April 21, 2019 @ 20:18:29
  Author: arojas
Revision: 351862

archrelease: copy trunk to extra-x86_64

Added:
  kdenlive/repos/extra-x86_64/PKGBUILD
(from rev 351861, kdenlive/trunk/PKGBUILD)
Deleted:
  kdenlive/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 20:18:04 UTC (rev 351861)
+++ PKGBUILD2019-04-21 20:18:29 UTC (rev 351862)
@@ -1,47 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: Zuf 
-# Contributor: Darwin Bautista 
-# Contributor: Gustavo Alvarez 
-
-pkgname=kdenlive
-pkgver=19.04.0
-pkgrel=1
-pkgdesc="A non-linear video editor for Linux using the MLT video framework"
-arch=(x86_64)
-url="https://www.kdenlive.org/";
-license=(GPL)
-groups=(kde-applications kdemultimedia)
-depends=(knewstuff knotifyconfig kfilemetadata purpose mlt glu 
qt5-quickcontrols rttr)
-makedepends=(extra-cmake-modules kdoctools v4l-utils)
-optdepends=('ffmpeg: for FFmpeg plugin'
-'cdrtools: for creation of DVD ISO images'
-'dvdauthor: for creation of DVD'
-'dvgrab: for firewire capture'
-'recordmydesktop: for screen capture'
-'xine-ui: for DVD preview'
-'vlc: for DVD preview'
-'plasma-desktop: theme configuration')
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('274ae17b4376258ef83d810cb33677ca3224e205ea8b69982dd0fc4e5ee5878a'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdenlive/repos/extra-x86_64/PKGBUILD (from rev 351861, 
kdenlive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 20:18:29 UTC (rev 351862)
@@ -0,0 +1,47 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Zuf 
+# Contributor: Darwin Bautista 
+# Contributor: Gustavo Alvarez 
+
+pkgname=kdenlive
+pkgver=19.04.0
+pkgrel=2
+pkgdesc="A non-linear video editor for Linux using the MLT video framework"
+arch=(x86_64)
+url="https://www.kdenlive.org/";
+license=(GPL)
+groups=(kde-applications kdemultimedia)
+depends=(knewstuff knotifyconfig kfilemetadata purpose mlt kirigami2 rttr)
+makedepends=(extra-cmake-modules kdoctools v4l-utils)
+optdepends=('ffmpeg: for FFmpeg plugin'
+'cdrtools: for creation of DVD ISO images'
+'dvdauthor: for creation of DVD'
+'dvgrab: for firewire capture'
+'recordmydesktop: for screen capture'
+'xine-ui: for DVD preview'
+'vlc: for DVD preview'
+'plasma-desktop: theme configuration')
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('274ae17b4376258ef83d810cb33677ca3224e205ea8b69982dd0fc4e5ee5878a'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-04-21 Thread Antonio Rojas via arch-commits
Date: Sunday, April 21, 2019 @ 20:18:04
  Author: arojas
Revision: 351861

Add missing kirigami2 dependency (FS#62424)

Modified:
  kdenlive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 19:27:31 UTC (rev 351860)
+++ PKGBUILD2019-04-21 20:18:04 UTC (rev 351861)
@@ -6,13 +6,13 @@
 
 pkgname=kdenlive
 pkgver=19.04.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A non-linear video editor for Linux using the MLT video framework"
 arch=(x86_64)
 url="https://www.kdenlive.org/";
 license=(GPL)
 groups=(kde-applications kdemultimedia)
-depends=(knewstuff knotifyconfig kfilemetadata purpose mlt glu 
qt5-quickcontrols rttr)
+depends=(knewstuff knotifyconfig kfilemetadata purpose mlt kirigami2 rttr)
 makedepends=(extra-cmake-modules kdoctools v4l-utils)
 optdepends=('ffmpeg: for FFmpeg plugin'
 'cdrtools: for creation of DVD ISO images'


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

2019-04-21 Thread Antonio Rojas via arch-commits
Date: Sunday, April 21, 2019 @ 20:21:58
  Author: arojas
Revision: 351863

Fix crash (FS#62421)

Modified:
  kglobalaccel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-21 20:18:29 UTC (rev 351862)
+++ PKGBUILD2019-04-21 20:21:58 UTC (rev 351863)
@@ -4,7 +4,7 @@
 
 pkgname=kglobalaccel
 pkgver=5.57.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Add support for global workspace shortcuts'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'
@@ -12,14 +12,19 @@
 depends=(kdbusaddons kconfig kcrash)
 makedepends=(extra-cmake-modules doxygen qt5-tools)
 groups=(kf5)
-source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdebug-406426.patch::"https://cgit.kde.org/kglobalaccel.git/patch/?id=78a71136";)
 sha256sums=('46370dcd4f110e6ccde3b3bf9c075deb1f22ad54016137925e4aea97b03cc2fe'
-'SKIP')
+'SKIP'
+'f7b5fec6758918c11ee5388dd8990d398f4c7ddb39843cd69e9bffd4c0fcdd9e')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB  # David Faure 

   2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell
 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-406426.patch # Fix crash
 }
 
 build() {


[arch-commits] Commit in kglobalaccel/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-04-21 Thread Antonio Rojas via arch-commits
Date: Sunday, April 21, 2019 @ 20:22:22
  Author: arojas
Revision: 351864

archrelease: copy trunk to extra-x86_64

Added:
  kglobalaccel/repos/extra-x86_64/PKGBUILD
(from rev 351863, kglobalaccel/trunk/PKGBUILD)
Deleted:
  kglobalaccel/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-21 20:21:58 UTC (rev 351863)
+++ PKGBUILD2019-04-21 20:22:22 UTC (rev 351864)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kglobalaccel
-pkgver=5.57.0
-pkgrel=1
-pkgdesc='Add support for global workspace shortcuts'
-arch=(x86_64)
-url='https://community.kde.org/Frameworks'
-license=(LGPL)
-depends=(kdbusaddons kconfig kcrash)
-makedepends=(extra-cmake-modules doxygen qt5-tools)
-groups=(kf5)
-source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('46370dcd4f110e6ccde3b3bf9c075deb1f22ad54016137925e4aea97b03cc2fe'
-'SKIP')
-validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB  # David Faure 

-  2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF \
--DBUILD_QCH=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kglobalaccel/repos/extra-x86_64/PKGBUILD (from rev 351863, 
kglobalaccel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 20:22:22 UTC (rev 351864)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kglobalaccel
+pkgver=5.57.0
+pkgrel=2
+pkgdesc='Add support for global workspace shortcuts'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kdbusaddons kconfig kcrash)
+makedepends=(extra-cmake-modules doxygen qt5-tools)
+groups=(kf5)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdebug-406426.patch::"https://cgit.kde.org/kglobalaccel.git/patch/?id=78a71136";)
+sha256sums=('46370dcd4f110e6ccde3b3bf9c075deb1f22ad54016137925e4aea97b03cc2fe'
+'SKIP'
+'f7b5fec6758918c11ee5388dd8990d398f4c7ddb39843cd69e9bffd4c0fcdd9e')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB  # David Faure 

+  2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-406426.patch # Fix crash
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


  1   2   >