[arch-commits] Commit in haskell-process-extras/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:59:07 Author: felixonmars Revision: 979228 archrelease: copy trunk to community-staging-x86_64 Added: haskell-process-extras/repos/community-staging-x86_64/ haskell-process-extras/repos/community-staging-x86_64/PKGBUILD (from rev 979227, haskell-process-extras/trunk/PKGBUILD) --+ PKGBUILD | 39 +++ 1 file changed, 39 insertions(+) Copied: haskell-process-extras/repos/community-staging-x86_64/PKGBUILD (from rev 979227, haskell-process-extras/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:59:07 UTC (rev 979228) @@ -0,0 +1,39 @@ +# Maintainer: Felix Yan +# Contributor: Thomas Dziedzic + +_hkgname=process-extras +pkgname=haskell-process-extras +pkgver=0.7.4 +pkgrel=193 +pkgdesc="Process extras" +url="https://github.com/seereason/process-extras"; +license=('MIT') +arch=('x86_64') +depends=('ghc-libs' 'haskell-data-default' 'haskell-generic-deriving' 'haskell-listlike' +) +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('4747b4bd920796b7b4ddf32d0e72a3af556c9db66c828b725ac7a7467442dad2b0dc85aa66e03d7a8c5afdb02658611e64d390b6c71219b380a986e245495536') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-process-extras/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:58:54 Author: felixonmars Revision: 979227 upgpkg: haskell-process-extras 0.7.4-193: rebuild with regex-posix 0.96.0.1 Modified: haskell-process-extras/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:58:20 UTC (rev 979226) +++ PKGBUILD2021-07-20 06:58:54 UTC (rev 979227) @@ -4,7 +4,7 @@ _hkgname=process-extras pkgname=haskell-process-extras pkgver=0.7.4 -pkgrel=192 +pkgrel=193 pkgdesc="Process extras" url="https://github.com/seereason/process-extras"; license=('MIT')
[arch-commits] Commit in haskell-listlike/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:58:20 Author: felixonmars Revision: 979226 archrelease: copy trunk to community-staging-x86_64 Added: haskell-listlike/repos/community-staging-x86_64/ haskell-listlike/repos/community-staging-x86_64/PKGBUILD (from rev 979225, haskell-listlike/trunk/PKGBUILD) --+ PKGBUILD | 42 ++ 1 file changed, 42 insertions(+) Copied: haskell-listlike/repos/community-staging-x86_64/PKGBUILD (from rev 979225, haskell-listlike/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:58:20 UTC (rev 979226) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan + +_hkgname=ListLike +pkgname=haskell-listlike +pkgver=4.7.4 +pkgrel=44 +pkgdesc="Generic support for list-like structures" +url="https://github.com/ddssff/listlike"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-dlist' 'haskell-fmlist' 'haskell-utf8-string' 'haskell-vector') +makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-random') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('5cefcb70faed3fc87908470bd279f7e63a06694172f8ee3b9cb7d9a1668822c968394ca5a5e1646cd2afb5feee8897e63a7842633446d8eb312dc1136a2a1d54') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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 "COPYRIGHT" "${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYRIGHT" +}
[arch-commits] Commit in haskell-listlike/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:58:06 Author: felixonmars Revision: 979225 upgpkg: haskell-listlike 4.7.4-44: rebuild with regex-posix 0.96.0.1 Modified: haskell-listlike/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:56:50 UTC (rev 979224) +++ PKGBUILD2021-07-20 06:58:06 UTC (rev 979225) @@ -3,7 +3,7 @@ _hkgname=ListLike pkgname=haskell-listlike pkgver=4.7.4 -pkgrel=43 +pkgrel=44 pkgdesc="Generic support for list-like structures" url="https://github.com/ddssff/listlike"; license=('BSD')
[arch-commits] Commit in haskell-url/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:56:50 Author: felixonmars Revision: 979224 archrelease: copy trunk to community-staging-x86_64 Added: haskell-url/repos/community-staging-x86_64/ haskell-url/repos/community-staging-x86_64/PKGBUILD (from rev 979223, haskell-url/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-url/repos/community-staging-x86_64/PKGBUILD (from rev 979223, haskell-url/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:56:50 UTC (rev 979224) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=url +pkgname=haskell-url +pkgver=2.1.3 +pkgrel=62 +pkgdesc="A library for working with URLs" +url="https://www.haskell.org/haskellwiki/Url"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-utf8-string') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('53ee2aabc877c91d06c7e029ff807057f88bb4ce712ad02d47655d43869ad83af9032eea85d0ecddf3cad19839827bb723c9bf0a17b580ee7018f4b08c691cd8') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-url/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:56:36 Author: felixonmars Revision: 979223 upgpkg: haskell-url 2.1.3-62: rebuild with regex-posix 0.96.0.1 Modified: haskell-url/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:56:08 UTC (rev 979222) +++ PKGBUILD2021-07-20 06:56:36 UTC (rev 979223) @@ -4,7 +4,7 @@ _hkgname=url pkgname=haskell-url pkgver=2.1.3 -pkgrel=61 +pkgrel=62 pkgdesc="A library for working with URLs" url="https://www.haskell.org/haskellwiki/Url"; license=("BSD")
[arch-commits] Commit in pantheon-files/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:56:02 Author: alucryd Revision: 979221 upgpkg: pantheon-files 6.0.0-1 Modified: pantheon-files/trunk/PKGBUILD --+ PKGBUILD |9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:55:53 UTC (rev 979220) +++ PKGBUILD2021-07-20 06:56:02 UTC (rev 979221) @@ -1,8 +1,8 @@ # Maintainer: Maxime Gauduin pkgname=pantheon-files -pkgver=4.5.0 -pkgrel=2 +pkgver=6.0.0 +pkgrel=1 pkgdesc='The Pantheon File Browser' arch=(x86_64) url=https://github.com/elementary/files @@ -19,12 +19,15 @@ libgee libgit2-glib libgranite.so + libhandy-1.so libnotify pango + plank sqlite zeitgeist ) makedepends=( + flatpak-builder git gnome-common meson @@ -35,7 +38,7 @@ 'gvfs: Cleaner devices section' 'tumbler: Thumbnails generation' ) -_tag=57cb89b64fd2d5c08f4aaf23e8c74bfaa5d0384f +_tag=84736878e625fab0222dcb072cf5c9c5ef56af32 source=(pantheon-files::git+https://github.com/elementary/files.git#tag=${_tag}) sha256sums=(SKIP)
[arch-commits] Commit in pantheon-files/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:56:08 Author: alucryd Revision: 979222 archrelease: copy trunk to community-x86_64 Added: pantheon-files/repos/community-x86_64/PKGBUILD (from rev 979221, pantheon-files/trunk/PKGBUILD) Deleted: pantheon-files/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 119 +++-- 1 file changed, 61 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2021-07-20 06:56:02 UTC (rev 979221) +++ PKGBUILD2021-07-20 06:56:08 UTC (rev 979222) @@ -1,58 +0,0 @@ -# Maintainer: Maxime Gauduin - -pkgname=pantheon-files -pkgver=4.5.0 -pkgrel=2 -pkgdesc='The Pantheon File Browser' -arch=(x86_64) -url=https://github.com/elementary/files -license=(GPL3) -groups=(pantheon) -depends=( - atk - cairo - gdk-pixbuf2 - glib2 - gtk3 - libcanberra - libcloudproviders - libgee - libgit2-glib - libgranite.so - libnotify - pango - sqlite - zeitgeist -) -makedepends=( - git - gnome-common - meson - vala -) -optdepends=( - 'contractor: Various context menu entries' - 'gvfs: Cleaner devices section' - 'tumbler: Thumbnails generation' -) -_tag=57cb89b64fd2d5c08f4aaf23e8c74bfaa5d0384f -source=(pantheon-files::git+https://github.com/elementary/files.git#tag=${_tag}) -sha256sums=(SKIP) - -pkgver() { - cd pantheon-files - - git describe --tags -} - -build() { - arch-meson pantheon-files build \ --D with-unity=disabled - ninja -C build -} - -package() { - DESTDIR="${pkgdir}" ninja -C build install -} - -# vim: ts=2 sw=2 et: Copied: pantheon-files/repos/community-x86_64/PKGBUILD (from rev 979221, pantheon-files/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2021-07-20 06:56:08 UTC (rev 979222) @@ -0,0 +1,61 @@ +# Maintainer: Maxime Gauduin + +pkgname=pantheon-files +pkgver=6.0.0 +pkgrel=1 +pkgdesc='The Pantheon File Browser' +arch=(x86_64) +url=https://github.com/elementary/files +license=(GPL3) +groups=(pantheon) +depends=( + atk + cairo + gdk-pixbuf2 + glib2 + gtk3 + libcanberra + libcloudproviders + libgee + libgit2-glib + libgranite.so + libhandy-1.so + libnotify + pango + plank + sqlite + zeitgeist +) +makedepends=( + flatpak-builder + git + gnome-common + meson + vala +) +optdepends=( + 'contractor: Various context menu entries' + 'gvfs: Cleaner devices section' + 'tumbler: Thumbnails generation' +) +_tag=84736878e625fab0222dcb072cf5c9c5ef56af32 +source=(pantheon-files::git+https://github.com/elementary/files.git#tag=${_tag}) +sha256sums=(SKIP) + +pkgver() { + cd pantheon-files + + git describe --tags +} + +build() { + arch-meson pantheon-files build \ +-D with-unity=disabled + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in haskell-string-conversions/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:55:53 Author: felixonmars Revision: 979220 archrelease: copy trunk to community-staging-x86_64 Added: haskell-string-conversions/repos/community-staging-x86_64/ haskell-string-conversions/repos/community-staging-x86_64/PKGBUILD (from rev 979218, haskell-string-conversions/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-string-conversions/repos/community-staging-x86_64/PKGBUILD (from rev 979218, haskell-string-conversions/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:55:53 UTC (rev 979220) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=string-conversions +pkgname=haskell-string-conversions +pkgver=0.4.0.1 +pkgrel=67 +pkgdesc="Simplifies dealing with different types for strings" +url="https://github.com/soenkehahn/string-conversions"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' "haskell-utf8-string") +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('8bd015215d1a8a48f01abf95f53bd75f67c83dc48c5b4c4f0731e9da924f99c18e9c6de46fdebdd497f5dc577311db1aa31f5144dfc5b1de539e201b9fc1c9f6') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in python-boto3/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:55:42 Author: jsteel Revision: 979218 upgpkg: python-boto3 1.18.2-1 Modified: python-boto3/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:55:37 UTC (rev 979217) +++ PKGBUILD2021-07-20 06:55:42 UTC (rev 979218) @@ -3,7 +3,7 @@ pkgbase=python-boto3 pkgname=python-boto3 -pkgver=1.17.107 +pkgver=1.18.2 pkgrel=1 pkgdesc='The AWS SDK for Python' arch=('any') @@ -13,7 +13,7 @@ makedepends=('python-setuptools') # checkdepends=('python-coverage' 'python-nose' 'python-mock') source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz";) -sha512sums=('450222507aa3bae8062b788ac7f637dbe8a5e7a5baa0f45001a74a810c2579927a7400cef180b57a7d7e57c391d665930b577b39272681ca380b5e553385b1f8') +sha512sums=('287a1f24f62fa83fd944632799540257b2f8d6cf3b5d6add57be60e4f49dafd685bb4fcceef37fe907edba00a7f2285d92bd8d381b03e45ac794b22fdcfe8783') build() { cd boto3-$pkgver
[arch-commits] Commit in python-boto3/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:55:48 Author: jsteel Revision: 979219 archrelease: copy trunk to community-any Added: python-boto3/repos/community-any/PKGBUILD (from rev 979218, python-boto3/trunk/PKGBUILD) Deleted: python-boto3/repos/community-any/PKGBUILD --+ PKGBUILD | 62 ++--- 1 file changed, 31 insertions(+), 31 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2021-07-20 06:55:42 UTC (rev 979218) +++ PKGBUILD2021-07-20 06:55:48 UTC (rev 979219) @@ -1,31 +0,0 @@ -# Maintainer: Jonathan Steel -# Contributor: Felix Yan - -pkgbase=python-boto3 -pkgname=python-boto3 -pkgver=1.17.107 -pkgrel=1 -pkgdesc='The AWS SDK for Python' -arch=('any') -license=('Apache') -url='https://github.com/boto/boto3' -depends=('python-botocore' 'python-jmespath' 'python-s3transfer') -makedepends=('python-setuptools') -# checkdepends=('python-coverage' 'python-nose' 'python-mock') -source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz";) -sha512sums=('450222507aa3bae8062b788ac7f637dbe8a5e7a5baa0f45001a74a810c2579927a7400cef180b57a7d7e57c391d665930b577b39272681ca380b5e553385b1f8') - -build() { - cd boto3-$pkgver - python setup.py build -} - -check() { - cd boto3-$pkgver - # scripts/ci/run-tests -} - -package() { - cd boto3-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 -} Copied: python-boto3/repos/community-any/PKGBUILD (from rev 979218, python-boto3/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2021-07-20 06:55:48 UTC (rev 979219) @@ -0,0 +1,31 @@ +# Maintainer: Jonathan Steel +# Contributor: Felix Yan + +pkgbase=python-boto3 +pkgname=python-boto3 +pkgver=1.18.2 +pkgrel=1 +pkgdesc='The AWS SDK for Python' +arch=('any') +license=('Apache') +url='https://github.com/boto/boto3' +depends=('python-botocore' 'python-jmespath' 'python-s3transfer') +makedepends=('python-setuptools') +# checkdepends=('python-coverage' 'python-nose' 'python-mock') +source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz";) +sha512sums=('287a1f24f62fa83fd944632799540257b2f8d6cf3b5d6add57be60e4f49dafd685bb4fcceef37fe907edba00a7f2285d92bd8d381b03e45ac794b22fdcfe8783') + +build() { + cd boto3-$pkgver + python setup.py build +} + +check() { + cd boto3-$pkgver + # scripts/ci/run-tests +} + +package() { + cd boto3-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 +}
[arch-commits] Commit in aws-cli/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:55:37 Author: jsteel Revision: 979217 archrelease: copy trunk to community-any Added: aws-cli/repos/community-any/PKGBUILD (from rev 979215, aws-cli/trunk/PKGBUILD) Deleted: aws-cli/repos/community-any/PKGBUILD --+ PKGBUILD | 68 ++--- 1 file changed, 34 insertions(+), 34 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2021-07-20 06:55:37 UTC (rev 979216) +++ PKGBUILD2021-07-20 06:55:37 UTC (rev 979217) @@ -1,34 +0,0 @@ -# Maintainer: Jonathan Steel -# Contributor: Chris Severance aur.severach AatT spamgourmet.com -# Contributor: Alper KANAT - -pkgname=aws-cli -pkgver=1.19.107 -pkgrel=1 -pkgdesc='Universal Command Line Interface for Amazon Web Services' -arch=('any') -url="https://github.com/aws/aws-cli"; -license=('Apache') -depends=('python-botocore' 'python-dateutil' 'python-jmespath' - 'python-colorama' 'python-docutils' 'python-rsa' - 'python-s3transfer' 'python-yaml') -makedepends=('python-setuptools') -source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) -md5sums=('0d16d80af726e7a723f1868d67788ad3') - -build() { - cd $pkgname-$pkgver - - python setup.py build -} - -package() { - cd $pkgname-$pkgver - - python setup.py install --root="$pkgdir" --optimize=1 - - install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE - install -Dm644 bin/aws_bash_completer "$pkgdir"/usr/share/bash-completion/completions/aws - - rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer} -} Copied: aws-cli/repos/community-any/PKGBUILD (from rev 979215, aws-cli/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2021-07-20 06:55:37 UTC (rev 979217) @@ -0,0 +1,34 @@ +# Maintainer: Jonathan Steel +# Contributor: Chris Severance aur.severach AatT spamgourmet.com +# Contributor: Alper KANAT + +pkgname=aws-cli +pkgver=1.20.2 +pkgrel=1 +pkgdesc='Universal Command Line Interface for Amazon Web Services' +arch=('any') +url="https://github.com/aws/aws-cli"; +license=('Apache') +depends=('python-botocore' 'python-dateutil' 'python-jmespath' + 'python-colorama' 'python-docutils' 'python-rsa' + 'python-s3transfer' 'python-yaml') +makedepends=('python-setuptools') +source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) +md5sums=('d66724656638d90cfeb2d2b119cabdbb') + +build() { + cd $pkgname-$pkgver + + python setup.py build +} + +package() { + cd $pkgname-$pkgver + + python setup.py install --root="$pkgdir" --optimize=1 + + install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + install -Dm644 bin/aws_bash_completer "$pkgdir"/usr/share/bash-completion/completions/aws + + rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer} +}
[arch-commits] Commit in haskell-string-conversions/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:55:37 Author: felixonmars Revision: 979216 upgpkg: haskell-string-conversions 0.4.0.1-67: rebuild with regex-posix 0.96.0.1 Modified: haskell-string-conversions/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:55:31 UTC (rev 979215) +++ PKGBUILD2021-07-20 06:55:37 UTC (rev 979216) @@ -4,7 +4,7 @@ _hkgname=string-conversions pkgname=haskell-string-conversions pkgver=0.4.0.1 -pkgrel=66 +pkgrel=67 pkgdesc="Simplifies dealing with different types for strings" url="https://github.com/soenkehahn/string-conversions"; license=("BSD")
[arch-commits] Commit in aws-cli/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:55:31 Author: jsteel Revision: 979215 upgpkg: aws-cli 1.20.2-1 Modified: aws-cli/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:55:25 UTC (rev 979214) +++ PKGBUILD2021-07-20 06:55:31 UTC (rev 979215) @@ -3,7 +3,7 @@ # Contributor: Alper KANAT pkgname=aws-cli -pkgver=1.19.107 +pkgver=1.20.2 pkgrel=1 pkgdesc='Universal Command Line Interface for Amazon Web Services' arch=('any') @@ -14,7 +14,7 @@ 'python-s3transfer' 'python-yaml') makedepends=('python-setuptools') source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) -md5sums=('0d16d80af726e7a723f1868d67788ad3') +md5sums=('d66724656638d90cfeb2d2b119cabdbb') build() { cd $pkgname-$pkgver
[arch-commits] Commit in python-botocore/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:55:25 Author: jsteel Revision: 979214 archrelease: copy trunk to community-any Added: python-botocore/repos/community-any/PKGBUILD (from rev 979213, python-botocore/trunk/PKGBUILD) Deleted: python-botocore/repos/community-any/PKGBUILD --+ PKGBUILD | 54 +++--- 1 file changed, 27 insertions(+), 27 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2021-07-20 06:55:19 UTC (rev 979213) +++ PKGBUILD2021-07-20 06:55:25 UTC (rev 979214) @@ -1,27 +0,0 @@ -# Maintainer: Jonathan Steel -# Contributor: Chris Severance aur.severach AatT spamgourmet.com -# Contributor: Ainola -# Contributor: Chris Fordham - -pkgname=python-botocore -pkgver=1.20.107 -pkgrel=1 -pkgdesc='A low-level interface to a growing number of Amazon Web Services' -arch=('any') -url="https://github.com/boto/botocore"; -license=('Apache') -depends=('python-dateutil' 'python-jmespath' 'python-docutils' 'python-urllib3') -makedepends=('python-setuptools') -source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) -md5sums=('6a3cd708eeaf0c5273d52e4af5b46d80') - -build() { - cd botocore-$pkgver - python setup.py build -} - -package() { - cd botocore-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 - install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} Copied: python-botocore/repos/community-any/PKGBUILD (from rev 979213, python-botocore/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2021-07-20 06:55:25 UTC (rev 979214) @@ -0,0 +1,27 @@ +# Maintainer: Jonathan Steel +# Contributor: Chris Severance aur.severach AatT spamgourmet.com +# Contributor: Ainola +# Contributor: Chris Fordham + +pkgname=python-botocore +pkgver=1.21.2 +pkgrel=1 +pkgdesc='A low-level interface to a growing number of Amazon Web Services' +arch=('any') +url="https://github.com/boto/botocore"; +license=('Apache') +depends=('python-dateutil' 'python-jmespath' 'python-docutils' 'python-urllib3') +makedepends=('python-setuptools') +source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) +md5sums=('ae18e81b105142813f02a09f9a793ed6') + +build() { + cd botocore-$pkgver + python setup.py build +} + +package() { + cd botocore-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in python-botocore/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:55:19 Author: jsteel Revision: 979213 upgpkg: python-botocore 1.21.2-1 Modified: python-botocore/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:55:02 UTC (rev 979212) +++ PKGBUILD2021-07-20 06:55:19 UTC (rev 979213) @@ -4,7 +4,7 @@ # Contributor: Chris Fordham pkgname=python-botocore -pkgver=1.20.107 +pkgver=1.21.2 pkgrel=1 pkgdesc='A low-level interface to a growing number of Amazon Web Services' arch=('any') @@ -13,7 +13,7 @@ depends=('python-dateutil' 'python-jmespath' 'python-docutils' 'python-urllib3') makedepends=('python-setuptools') source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) -md5sums=('6a3cd708eeaf0c5273d52e4af5b46d80') +md5sums=('ae18e81b105142813f02a09f9a793ed6') build() { cd botocore-$pkgver
[arch-commits] Commit in haskell-utf8-string/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:55:02 Author: felixonmars Revision: 979212 archrelease: copy trunk to community-staging-x86_64 Added: haskell-utf8-string/repos/community-staging-x86_64/ haskell-utf8-string/repos/community-staging-x86_64/PKGBUILD (from rev 979211, haskell-utf8-string/trunk/PKGBUILD) --+ PKGBUILD | 44 1 file changed, 44 insertions(+) Copied: haskell-utf8-string/repos/community-staging-x86_64/PKGBUILD (from rev 979211, haskell-utf8-string/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:55:02 UTC (rev 979212) @@ -0,0 +1,44 @@ +# Maintainer: Vesa Kaihlavirta +# Contributor: Arch Haskell Team +# Package generated by cabal2arch 0.7.6 + +_hkgname=utf8-string +pkgname=haskell-utf8-string +pkgver=1.0.2 +pkgrel=47 +pkgdesc="Support for reading and writing UTF8 Strings" +url="https://hackage.haskell.org/package/${_hkgname}"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc' 'haskell-hunit') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('b20b61e942a77848d12f9105f88790b3f02e3e2835b87e0ce1900b5ea1e97c4b055003603e435415e7fbbc9586f9c6ca2402f86cf5d2b7b6ced2ddcae3968d24') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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-utf8-string/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:54:36 Author: felixonmars Revision: 979211 upgpkg: haskell-utf8-string 1.0.2-47: rebuild with regex-posix 0.96.0.1 Modified: haskell-utf8-string/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:53:59 UTC (rev 979210) +++ PKGBUILD2021-07-20 06:54:36 UTC (rev 979211) @@ -5,7 +5,7 @@ _hkgname=utf8-string pkgname=haskell-utf8-string pkgver=1.0.2 -pkgrel=46 +pkgrel=47 pkgdesc="Support for reading and writing UTF8 Strings" url="https://hackage.haskell.org/package/${_hkgname}"; license=('BSD')
[arch-commits] Commit in bnfc/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:53:59 Author: felixonmars Revision: 979210 archrelease: copy trunk to community-staging-x86_64 Added: bnfc/repos/community-staging-x86_64/ bnfc/repos/community-staging-x86_64/PKGBUILD (from rev 979209, bnfc/trunk/PKGBUILD) --+ PKGBUILD | 55 +++ 1 file changed, 55 insertions(+) Copied: bnfc/repos/community-staging-x86_64/PKGBUILD (from rev 979209, bnfc/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:53:59 UTC (rev 979210) @@ -0,0 +1,55 @@ +# This file was generated by arch-hs, please check it manually. +# Maintainer: Your Name + +_hkgname=BNFC +pkgname=bnfc +pkgver=2.9.2 +pkgrel=5 +pkgdesc="A compiler front-end generator." +url="http://bnfc.digitalgrammars.com/"; +license=("GPL2") +arch=('x86_64') +depends=('ghc-libs' 'haskell-string-qq') +optdepends=('ghc: for default haskell backend' +'alex: for default haskell backend' +'happy: for default haskell backend') +makedepends=('ghc' 'alex' 'happy' 'haskell-hunit' 'haskell-quickcheck' 'haskell-cabal-doctest' + 'haskell-doctest' 'haskell-hspec' 'haskell-hspec-discover' 'haskell-temporary') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";) +sha512sums=('61e21143735f21b261acdf5180c95d3b2993908da377bca2a4b3931d235ce100adadf81d18ae5d436d0ec3e719589ef6b4bda55b55794fa62488b6b01d26b326') + +prepare() { + # Use -dynamic by default + sed -i 's/ghc --make/ghc -dynamic --make/g' $_hkgname-$pkgver/src/BNFC/Backend/Haskell.hs +} + +build() { + cd $_hkgname-$pkgver + + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ +--ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS + 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 --show-details=direct +} + +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 -t "$pkgdir"/usr/share/licenses/$pkgname/ + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in bnfc/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:53:43 Author: felixonmars Revision: 979209 upgpkg: bnfc 2.9.2-5: rebuild with regex-posix 0.96.0.1 Modified: bnfc/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:52:16 UTC (rev 979208) +++ PKGBUILD2021-07-20 06:53:43 UTC (rev 979209) @@ -4,7 +4,7 @@ _hkgname=BNFC pkgname=bnfc pkgver=2.9.2 -pkgrel=4 +pkgrel=5 pkgdesc="A compiler front-end generator." url="http://bnfc.digitalgrammars.com/"; license=("GPL2")
[arch-commits] Commit in haskell-string-qq/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:52:16 Author: felixonmars Revision: 979208 archrelease: copy trunk to community-staging-x86_64 Added: haskell-string-qq/repos/community-staging-x86_64/ haskell-string-qq/repos/community-staging-x86_64/PKGBUILD (from rev 979207, haskell-string-qq/trunk/PKGBUILD) --+ PKGBUILD | 43 +++ 1 file changed, 43 insertions(+) Copied: haskell-string-qq/repos/community-staging-x86_64/PKGBUILD (from rev 979207, haskell-string-qq/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:52:16 UTC (rev 979208) @@ -0,0 +1,43 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=string-qq +pkgname=haskell-string-qq +pkgver=0.0.4 +pkgrel=107 +pkgdesc="QuasiQuoter for non-interpolated strings, texts and bytestrings." +url="https://hackage.haskell.org/package/string-qq"; +license=("custom:PublicDomain") +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc' 'haskell-hunit') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('1e533afccc4e246da8fb0d76aaa63560c4b936490c002e466bcc0d08aabc0e66f393f935e0f5d93284fcd12a590e7fbe12e88175ac3599183f633eec04bf22b4') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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-string-qq/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:52:02 Author: felixonmars Revision: 979207 upgpkg: haskell-string-qq 0.0.4-107: rebuild with regex-posix 0.96.0.1 Modified: haskell-string-qq/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:51:31 UTC (rev 979206) +++ PKGBUILD2021-07-20 06:52:02 UTC (rev 979207) @@ -4,7 +4,7 @@ _hkgname=string-qq pkgname=haskell-string-qq pkgver=0.0.4 -pkgrel=106 +pkgrel=107 pkgdesc="QuasiQuoter for non-interpolated strings, texts and bytestrings." url="https://hackage.haskell.org/package/string-qq"; license=("custom:PublicDomain")
[arch-commits] Commit in haskell-ranged-sets/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:51:31 Author: felixonmars Revision: 979206 archrelease: copy trunk to community-staging-x86_64 Added: haskell-ranged-sets/repos/community-staging-x86_64/ haskell-ranged-sets/repos/community-staging-x86_64/PKGBUILD (from rev 979205, haskell-ranged-sets/trunk/PKGBUILD) --+ PKGBUILD | 42 ++ 1 file changed, 42 insertions(+) Copied: haskell-ranged-sets/repos/community-staging-x86_64/PKGBUILD (from rev 979205, haskell-ranged-sets/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:51:31 UTC (rev 979206) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan + +_hkgname=Ranged-sets +pkgname=haskell-ranged-sets +pkgver=0.4.0 +pkgrel=125 +pkgdesc="Ranged sets for Haskell" +url="https://code.haskell.org/ranged-sets"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-hunit' 'haskell-quickcheck') +makedepends=('ghc') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('9dc63ab9f31c6233b7f663c2674d8bd95bb9ea8ab6eb6ba04a634e9596e861c003b82f1c8d04e289e64b2edf4f2b64afca36e688727edd281eb7f571fb605f92') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.txt" +}
[arch-commits] Commit in haskell-ranged-sets/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:51:14 Author: felixonmars Revision: 979205 upgpkg: haskell-ranged-sets 0.4.0-125: rebuild with regex-posix 0.96.0.1 Modified: haskell-ranged-sets/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:51:09 UTC (rev 979204) +++ PKGBUILD2021-07-20 06:51:14 UTC (rev 979205) @@ -3,7 +3,7 @@ _hkgname=Ranged-sets pkgname=haskell-ranged-sets pkgver=0.4.0 -pkgrel=124 +pkgrel=125 pkgdesc="Ranged sets for Haskell" url="https://code.haskell.org/ranged-sets"; license=('BSD')
[arch-commits] Commit in python-s3transfer/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:51:09 Author: jsteel Revision: 979204 archrelease: copy trunk to community-any Added: python-s3transfer/repos/community-any/PKGBUILD (from rev 979203, python-s3transfer/trunk/PKGBUILD) Deleted: python-s3transfer/repos/community-any/PKGBUILD --+ PKGBUILD | 50 +- 1 file changed, 25 insertions(+), 25 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2021-07-20 06:51:00 UTC (rev 979203) +++ PKGBUILD2021-07-20 06:51:09 UTC (rev 979204) @@ -1,25 +0,0 @@ -# Maintainer: Jonathan Steel -# Contributor: Chris Severance aur.severach AatT spamgourmet.com - -pkgname=python-s3transfer -pkgver=0.4.2 -pkgrel=1 -pkgdesc='Amazon S3 Transfer Manager for Python' -arch=('any') -url="https://github.com/boto/s3transfer"; -license=('Apache') -depends=('python-botocore') -makedepends=('python-setuptools') -source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) -md5sums=('7ccfaff400bcd90461a0161b59e21b24') - -build() { - cd s3transfer-$pkgver - python setup.py build -} - -package() { - cd s3transfer-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 - install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} Copied: python-s3transfer/repos/community-any/PKGBUILD (from rev 979203, python-s3transfer/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2021-07-20 06:51:09 UTC (rev 979204) @@ -0,0 +1,25 @@ +# Maintainer: Jonathan Steel +# Contributor: Chris Severance aur.severach AatT spamgourmet.com + +pkgname=python-s3transfer +pkgver=0.5.0 +pkgrel=1 +pkgdesc='Amazon S3 Transfer Manager for Python' +arch=('any') +url="https://github.com/boto/s3transfer"; +license=('Apache') +depends=('python-botocore') +makedepends=('python-setuptools') +source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) +md5sums=('08e52edfb5c55920d64fdb9aa7ec2b0a') + +build() { + cd s3transfer-$pkgver + python setup.py build +} + +package() { + cd s3transfer-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in python-s3transfer/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:51:00 Author: jsteel Revision: 979203 upgpkg: python-s3transfer 0.5.0-1 Modified: python-s3transfer/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:50:38 UTC (rev 979202) +++ PKGBUILD2021-07-20 06:51:00 UTC (rev 979203) @@ -2,7 +2,7 @@ # Contributor: Chris Severance aur.severach AatT spamgourmet.com pkgname=python-s3transfer -pkgver=0.4.2 +pkgver=0.5.0 pkgrel=1 pkgdesc='Amazon S3 Transfer Manager for Python' arch=('any') @@ -11,7 +11,7 @@ depends=('python-botocore') makedepends=('python-setuptools') source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) -md5sums=('7ccfaff400bcd90461a0161b59e21b24') +md5sums=('08e52edfb5c55920d64fdb9aa7ec2b0a') build() { cd s3transfer-$pkgver
[arch-commits] Commit in haskell-emojis/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:50:38 Author: felixonmars Revision: 979202 archrelease: copy trunk to community-staging-x86_64 Added: haskell-emojis/repos/community-staging-x86_64/ haskell-emojis/repos/community-staging-x86_64/PKGBUILD (from rev 979201, haskell-emojis/trunk/PKGBUILD) --+ PKGBUILD | 47 +++ 1 file changed, 47 insertions(+) Copied: haskell-emojis/repos/community-staging-x86_64/PKGBUILD (from rev 979201, haskell-emojis/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:50:38 UTC (rev 979202) @@ -0,0 +1,47 @@ +# Maintainer: Felix Yan + +_hkgname=emojis +pkgname=haskell-emojis +pkgver=0.1 +pkgrel=108 +pkgdesc="Conversion between emoji characters and their names" +url="https://github.com/jgm/emojis"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc' 'haskell-hunit') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('587c67bff3f77c362b16c93889762a9aad6fb5250c0bced45f5053f59dd6a11ab2886e53f286bbc4de2b8793be133708b1f9c5d4d52bcef1820f5a7c1ecfa7d2') + +prepare() { +cd $_hkgname-$pkgver +echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs +} + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +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 --show-details=direct +} + +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-emojis/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:50:23 Author: felixonmars Revision: 979201 upgpkg: haskell-emojis 0.1-108: rebuild with regex-posix 0.96.0.1 Modified: haskell-emojis/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:49:47 UTC (rev 979200) +++ PKGBUILD2021-07-20 06:50:23 UTC (rev 979201) @@ -3,7 +3,7 @@ _hkgname=emojis pkgname=haskell-emojis pkgver=0.1 -pkgrel=107 +pkgrel=108 pkgdesc="Conversion between emoji characters and their names" url="https://github.com/jgm/emojis"; license=('BSD')
[arch-commits] Commit in haskell-cmark-gfm/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:49:47 Author: felixonmars Revision: 979200 archrelease: copy trunk to community-staging-x86_64 Added: haskell-cmark-gfm/repos/community-staging-x86_64/ haskell-cmark-gfm/repos/community-staging-x86_64/PKGBUILD (from rev 979199, haskell-cmark-gfm/trunk/PKGBUILD) --+ PKGBUILD | 44 1 file changed, 44 insertions(+) Copied: haskell-cmark-gfm/repos/community-staging-x86_64/PKGBUILD (from rev 979199, haskell-cmark-gfm/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:49:47 UTC (rev 979200) @@ -0,0 +1,44 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=cmark-gfm +pkgname=haskell-cmark-gfm +pkgver=0.2.2 +pkgrel=76 +pkgdesc="Fast, accurate GitHub Flavored Markdown parser and renderer" +url="https://github.com/kivikakk/cmark-gfm-hs"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'cmark-gfm') +makedepends=('ghc' 'haskell-hunit') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('f4d5825b19beeef42402b0bed0928ebfb7923aee6c59d4937516877a89cce832667ff19fdf3a6279d484ffaad06d763e0ac4946275b1051c3cae12d7928a2567') + +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 \ +-fpkgconfig +runhaskell Setup build $MAKEFLAGS +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 --show-details=direct +} + +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-cmark-gfm/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:49:32 Author: felixonmars Revision: 979199 upgpkg: haskell-cmark-gfm 0.2.2-76: rebuild with regex-posix 0.96.0.1 Modified: haskell-cmark-gfm/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:48:50 UTC (rev 979198) +++ PKGBUILD2021-07-20 06:49:32 UTC (rev 979199) @@ -4,7 +4,7 @@ _hkgname=cmark-gfm pkgname=haskell-cmark-gfm pkgver=0.2.2 -pkgrel=75 +pkgrel=76 pkgdesc="Fast, accurate GitHub Flavored Markdown parser and renderer" url="https://github.com/kivikakk/cmark-gfm-hs"; license=("BSD")
[arch-commits] Commit in haskell-hspec-contrib/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:48:50 Author: felixonmars Revision: 979198 archrelease: copy trunk to community-staging-x86_64 Added: haskell-hspec-contrib/repos/community-staging-x86_64/ haskell-hspec-contrib/repos/community-staging-x86_64/PKGBUILD (from rev 979197, haskell-hspec-contrib/trunk/PKGBUILD) --+ PKGBUILD | 42 ++ 1 file changed, 42 insertions(+) Copied: haskell-hspec-contrib/repos/community-staging-x86_64/PKGBUILD (from rev 979197, haskell-hspec-contrib/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:48:50 UTC (rev 979198) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan + +_hkgname=hspec-contrib +pkgname=haskell-hspec-contrib +pkgver=0.5.1 +pkgrel=137 +pkgdesc="Contributed functionality for Hspec" +url="https://hspec.github.io/"; +license=('MIT') +arch=('x86_64') +depends=('ghc-libs' 'haskell-hspec-core' 'haskell-hunit') +makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('cc6ee847d7c99b2607c36b2200bf0bc05ce30437110f216f82464069ffdf80a76d836ad7aace3d69a00cf9da4b28d39491a251c6f60401009a6f9c85d20043e0') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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-hspec-contrib/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:48:37 Author: felixonmars Revision: 979197 upgpkg: haskell-hspec-contrib 0.5.1-137: rebuild with regex-posix 0.96.0.1 Modified: haskell-hspec-contrib/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:48:06 UTC (rev 979196) +++ PKGBUILD2021-07-20 06:48:37 UTC (rev 979197) @@ -3,7 +3,7 @@ _hkgname=hspec-contrib pkgname=haskell-hspec-contrib pkgver=0.5.1 -pkgrel=136 +pkgrel=137 pkgdesc="Contributed functionality for Hspec" url="https://hspec.github.io/"; license=('MIT')
[arch-commits] Commit in lightdm-pantheon-greeter/repos/community-x86_64 (4 files)
Date: Tuesday, July 20, 2021 @ 06:48:06 Author: alucryd Revision: 979195 archrelease: copy trunk to community-x86_64 Added: lightdm-pantheon-greeter/repos/community-x86_64/PKGBUILD (from rev 979194, lightdm-pantheon-greeter/trunk/PKGBUILD) lightdm-pantheon-greeter/repos/community-x86_64/lightdm-pantheon-greeter.install (from rev 979194, lightdm-pantheon-greeter/trunk/lightdm-pantheon-greeter.install) Deleted: lightdm-pantheon-greeter/repos/community-x86_64/PKGBUILD lightdm-pantheon-greeter/repos/community-x86_64/lightdm-pantheon-greeter.install --+ PKGBUILD | 113 ++--- lightdm-pantheon-greeter.install | 28 - 2 files changed, 71 insertions(+), 70 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2021-07-20 06:48:01 UTC (rev 979194) +++ PKGBUILD2021-07-20 06:48:06 UTC (rev 979195) @@ -1,56 +0,0 @@ -# Maintainer: Maxime Gauduin -# Contributor: sh4nks https://github.com/elementary/greeter -license=(GPL) -groups=(pantheon) -depends=( - accountsservice - cairo - gdk-pixbuf2 - glibc - libgdk-3.so - libgee - libgio-2.0.so - libglib-2.0.so - libgl - libgobject-2.0.so - libgranite.so - libgtk-3.so - lightdm - mutter6 -) -makedepends=( - cmake - meson - git - libglvnd - vala -) -install=lightdm-pantheon-greeter.install -_tag=fef8e3d18225799c82d76df8eccd3492f7f3817d -source=(lightdm-pantheon-greeter::git+https://github.com/elementary/greeter.git#tag=${_tag}) -sha256sums=('SKIP') - -pkgver() { - cd lightdm-pantheon-greeter - - git describe --tags -} - -build() { - arch-meson lightdm-pantheon-greeter build \ --D ubuntu-patched-gsd=false - ninja -C build -} - -package() { - DESTDIR="${pkgdir}" ninja -C build install -} - -# vim: ts=2 sw=2 et: Copied: lightdm-pantheon-greeter/repos/community-x86_64/PKGBUILD (from rev 979194, lightdm-pantheon-greeter/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2021-07-20 06:48:06 UTC (rev 979195) @@ -0,0 +1,57 @@ +# Maintainer: Maxime Gauduin +# Contributor: sh4nks https://github.com/elementary/greeter +license=(GPL) +groups=(pantheon) +depends=( + accountsservice + cairo + gdk-pixbuf2 + glibc + libgdk-3.so + libgee + libgio-2.0.so + libglib-2.0.so + libgl + libgobject-2.0.so + libgranite.so + libgtk-3.so + libhandy-1.so + lightdm + mutter6 +) +makedepends=( + cmake + meson + git + libglvnd + vala +) +install=lightdm-pantheon-greeter.install +_tag=b0f0cc4cac73f31a78886399b46ab82d442638a9 +source=(lightdm-pantheon-greeter::git+https://github.com/elementary/greeter.git#tag=${_tag}) +sha256sums=('SKIP') + +pkgver() { + cd lightdm-pantheon-greeter + + git describe --tags +} + +build() { + arch-meson lightdm-pantheon-greeter build \ +-D ubuntu-patched-gsd=false + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et: Deleted: lightdm-pantheon-greeter.install === --- lightdm-pantheon-greeter.install2021-07-20 06:48:01 UTC (rev 979194) +++ lightdm-pantheon-greeter.install2021-07-20 06:48:06 UTC (rev 979195) @@ -1,14 +0,0 @@ -post_install() { - DCONF_PROFILE='lightdm' dconf update -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install - rm -f /etc/dconf/db/lightdm -} - -# vim: ts=2 sw=2 et: Copied: lightdm-pantheon-greeter/repos/community-x86_64/lightdm-pantheon-greeter.install (from rev 979194, lightdm-pantheon-greeter/trunk/lightdm-pantheon-greeter.install) === --- lightdm-pantheon-greeter.install(rev 0) +++ lightdm-pantheon-greeter.install2021-07-20 06:48:06 UTC (rev 979195) @@ -0,0 +1,14 @@ +post_install() { + DCONF_PROFILE='lightdm' dconf update +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install + rm -f /etc/dconf/db/lightdm +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in haskell-raw-strings-qq/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:48:06 Author: felixonmars Revision: 979196 archrelease: copy trunk to community-staging-x86_64 Added: haskell-raw-strings-qq/repos/community-staging-x86_64/ haskell-raw-strings-qq/repos/community-staging-x86_64/PKGBUILD (from rev 979194, haskell-raw-strings-qq/trunk/PKGBUILD) --+ PKGBUILD | 42 ++ 1 file changed, 42 insertions(+) Copied: haskell-raw-strings-qq/repos/community-staging-x86_64/PKGBUILD (from rev 979194, haskell-raw-strings-qq/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:48:06 UTC (rev 979196) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan + +_hkgname=raw-strings-qq +pkgname=haskell-raw-strings-qq +pkgver=1.1 +pkgrel=120 +pkgdesc="Raw string literals for Haskell" +url="https://github.com/23Skidoo/raw-strings-qq"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc' 'haskell-hunit') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('9daf7acad6619c9d077b49591003f2c42baca060b20202f597c7468da765a59add2b78b90d634bbf785e299fb85d39dba242d070e15ec208391059e64850acbc') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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 lightdm-pantheon-greeter/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:48:01 Author: alucryd Revision: 979194 upgpkg: lightdm-pantheon-greeter 6.0.0-1 Modified: lightdm-pantheon-greeter/trunk/PKGBUILD --+ PKGBUILD |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:47:53 UTC (rev 979193) +++ PKGBUILD2021-07-20 06:48:01 UTC (rev 979194) @@ -2,8 +2,8 @@ # Contributor: sh4nks https://github.com/elementary/greeter @@ -22,6 +22,7 @@ libgobject-2.0.so libgranite.so libgtk-3.so + libhandy-1.so lightdm mutter6 ) @@ -33,7 +34,7 @@ vala ) install=lightdm-pantheon-greeter.install -_tag=fef8e3d18225799c82d76df8eccd3492f7f3817d +_tag=b0f0cc4cac73f31a78886399b46ab82d442638a9 source=(lightdm-pantheon-greeter::git+https://github.com/elementary/greeter.git#tag=${_tag}) sha256sums=('SKIP')
[arch-commits] Commit in haskell-raw-strings-qq/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:47:53 Author: felixonmars Revision: 979193 upgpkg: haskell-raw-strings-qq 1.1-120: rebuild with regex-posix 0.96.0.1 Modified: haskell-raw-strings-qq/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:47:25 UTC (rev 979192) +++ PKGBUILD2021-07-20 06:47:53 UTC (rev 979193) @@ -3,7 +3,7 @@ _hkgname=raw-strings-qq pkgname=haskell-raw-strings-qq pkgver=1.1 -pkgrel=119 +pkgrel=120 pkgdesc="Raw string literals for Haskell" url="https://github.com/23Skidoo/raw-strings-qq"; license=('BSD')
[arch-commits] Commit in haskell-fclabels/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:47:25 Author: felixonmars Revision: 979192 archrelease: copy trunk to community-staging-x86_64 Added: haskell-fclabels/repos/community-staging-x86_64/ haskell-fclabels/repos/community-staging-x86_64/PKGBUILD (from rev 979191, haskell-fclabels/trunk/PKGBUILD) --+ PKGBUILD | 43 +++ 1 file changed, 43 insertions(+) Copied: haskell-fclabels/repos/community-staging-x86_64/PKGBUILD (from rev 979191, haskell-fclabels/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:47:25 UTC (rev 979192) @@ -0,0 +1,43 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=fclabels +pkgname=haskell-fclabels +pkgver=2.0.5.1 +pkgrel=9 +pkgdesc="First class accessor labels implemented as lenses." +url="https://github.com/sebastiaanvisser/fclabels"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-base-orphans') +makedepends=('ghc' 'haskell-hunit') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('a5f65a821e946381769bc98df2e78625820e99acf151886b9360e2327b589ac5bb2b214dd9cb27ac8e1e7d4880947771e2f020df69f3275d0310cd5fa293aa7b') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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-fclabels/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:47:10 Author: felixonmars Revision: 979191 upgpkg: haskell-fclabels 2.0.5.1-9: rebuild with regex-posix 0.96.0.1 Modified: haskell-fclabels/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:46:28 UTC (rev 979190) +++ PKGBUILD2021-07-20 06:47:10 UTC (rev 979191) @@ -4,7 +4,7 @@ _hkgname=fclabels pkgname=haskell-fclabels pkgver=2.0.5.1 -pkgrel=8 +pkgrel=9 pkgdesc="First class accessor labels implemented as lenses." url="https://github.com/sebastiaanvisser/fclabels"; license=("BSD")
[arch-commits] Commit in pantheon-polkit-agent/repos/community-x86_64 (2 files)
Date: Tuesday, July 20, 2021 @ 06:46:19 Author: alucryd Revision: 979189 archrelease: copy trunk to community-x86_64 Added: pantheon-polkit-agent/repos/community-x86_64/PKGBUILD (from rev 979188, pantheon-polkit-agent/trunk/PKGBUILD) Deleted: pantheon-polkit-agent/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 84 ++--- 1 file changed, 42 insertions(+), 42 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2021-07-20 06:46:14 UTC (rev 979188) +++ PKGBUILD2021-07-20 06:46:19 UTC (rev 979189) @@ -1,42 +0,0 @@ -# Maintainer: Maxime Gauduin - -pkgname=pantheon-polkit-agent -pkgver=1.0.3 -pkgrel=2 -pkgdesc='Pantheon Polkit Agent' -arch=(x86_64) -url=https://github.com/elementary/pantheon-agent-polkit -license=(GPL3) -groups=(pantheon) -depends=( - glib2 - gtk3 - libgranite.so - polkit -) -makedepends=( - git - meson - intltool - vala -) -_tag=2d2a2d35c30e88a2a4b79cfda2a786c52099e460 -source=(pantheon-polkit-agent::git+https://github.com/elementary/pantheon-agent-polkit.git#tag=${_tag}) -sha256sums=(SKIP) - -pkgver() { - cd pantheon-polkit-agent - - git describe --tags -} - -build() { - arch-meson pantheon-polkit-agent build - ninja -C build -} - -package() { - DESTDIR="${pkgdir}" ninja -C build install -} - -# vim: ts=2 sw=2 et: Copied: pantheon-polkit-agent/repos/community-x86_64/PKGBUILD (from rev 979188, pantheon-polkit-agent/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2021-07-20 06:46:19 UTC (rev 979189) @@ -0,0 +1,42 @@ +# Maintainer: Maxime Gauduin + +pkgname=pantheon-polkit-agent +pkgver=1.0.4 +pkgrel=1 +pkgdesc='Pantheon Polkit Agent' +arch=(x86_64) +url=https://github.com/elementary/pantheon-agent-polkit +license=(GPL3) +groups=(pantheon) +depends=( + glib2 + gtk3 + libgranite.so + polkit +) +makedepends=( + git + meson + intltool + vala +) +_tag=180e936524614293f852e8ea0760aadc0c10bb6f +source=(pantheon-polkit-agent::git+https://github.com/elementary/pantheon-agent-polkit.git#tag=${_tag}) +sha256sums=(SKIP) + +pkgver() { + cd pantheon-polkit-agent + + git describe --tags +} + +build() { + arch-meson pantheon-polkit-agent build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in haskell-atomic-write/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:46:28 Author: felixonmars Revision: 979190 archrelease: copy trunk to community-staging-x86_64 Added: haskell-atomic-write/repos/community-staging-x86_64/ haskell-atomic-write/repos/community-staging-x86_64/PKGBUILD (from rev 979189, haskell-atomic-write/trunk/PKGBUILD) --+ PKGBUILD | 42 ++ 1 file changed, 42 insertions(+) Copied: haskell-atomic-write/repos/community-staging-x86_64/PKGBUILD (from rev 979189, haskell-atomic-write/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:46:28 UTC (rev 979190) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan + +_hkgname=atomic-write +pkgname=haskell-atomic-write +pkgver=0.2.0.7 +pkgrel=99 +pkgdesc="Atomically write to a file" +url="https://github.com/stackbuilders/atomic-write"; +license=('MIT') +arch=('x86_64') +depends=('ghc-libs' 'haskell-temporary' 'haskell-unix-compat') +makedepends=('ghc' 'haskell-hspec') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('3405437b801fbdd542c5c8a403f603ccb65ceaa63beca15062c429eaea412d7006342eb237982c9fe6751ffd160f810197b30fec3e49528e51bae1fc7f47af2e') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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 pantheon-polkit-agent/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:46:14 Author: alucryd Revision: 979188 upgpkg: pantheon-polkit-agent 1.0.4-1 Modified: pantheon-polkit-agent/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:46:12 UTC (rev 979187) +++ PKGBUILD2021-07-20 06:46:14 UTC (rev 979188) @@ -1,8 +1,8 @@ # Maintainer: Maxime Gauduin pkgname=pantheon-polkit-agent -pkgver=1.0.3 -pkgrel=2 +pkgver=1.0.4 +pkgrel=1 pkgdesc='Pantheon Polkit Agent' arch=(x86_64) url=https://github.com/elementary/pantheon-agent-polkit @@ -20,7 +20,7 @@ intltool vala ) -_tag=2d2a2d35c30e88a2a4b79cfda2a786c52099e460 +_tag=180e936524614293f852e8ea0760aadc0c10bb6f source=(pantheon-polkit-agent::git+https://github.com/elementary/pantheon-agent-polkit.git#tag=${_tag}) sha256sums=(SKIP)
[arch-commits] Commit in haskell-atomic-write/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:46:12 Author: felixonmars Revision: 979187 upgpkg: haskell-atomic-write 0.2.0.7-99: rebuild with regex-posix 0.96.0.1 Modified: haskell-atomic-write/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:45:34 UTC (rev 979186) +++ PKGBUILD2021-07-20 06:46:12 UTC (rev 979187) @@ -3,7 +3,7 @@ _hkgname=atomic-write pkgname=haskell-atomic-write pkgver=0.2.0.7 -pkgrel=98 +pkgrel=99 pkgdesc="Atomically write to a file" url="https://github.com/stackbuilders/atomic-write"; license=('MIT')
[arch-commits] Commit in pantheon-geoclue2-agent/repos/community-x86_64 (2 files)
Date: Tuesday, July 20, 2021 @ 06:45:27 Author: alucryd Revision: 979185 archrelease: copy trunk to community-x86_64 Added: pantheon-geoclue2-agent/repos/community-x86_64/PKGBUILD (from rev 979184, pantheon-geoclue2-agent/trunk/PKGBUILD) Deleted: pantheon-geoclue2-agent/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 89 ++--- 1 file changed, 45 insertions(+), 44 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2021-07-20 06:45:22 UTC (rev 979184) +++ PKGBUILD2021-07-20 06:45:27 UTC (rev 979185) @@ -1,44 +0,0 @@ -# Maintainer: Maxime Gauduin - -pkgname=pantheon-geoclue2-agent -pkgver=1.0.4 -pkgrel=1 -pkgdesc='Pantheon Geoclue2 Agent' -arch=(x86_64) -url=https://github.com/elementary/pantheon-agent-geoclue2 -license=(GPL3) -groups=(pantheon) -depends=( - geoclue2 - glibc - libgdk-3.so - libgio-2.0.so - libglib-2.0.so - libgobject-2.0.so - libgtk-3.so -) -makedepends=( - git - intltool - meson - vala -) -source=(pantheon-geoclue2-agent::git+https://github.com/elementary/pantheon-agent-geoclue2.git#tag=46d69d8d985b2e2866d265c1013d2142b3a02241) -sha256sums=(SKIP) - -pkgver() { - cd pantheon-geoclue2-agent - - git describe --tags -} - -build() { - arch-meson pantheon-geoclue2-agent build - ninja -C build -} - -package() { - DESTDIR="${pkgdir}" ninja -C build install -} - -# vim: ts=2 sw=2 et: Copied: pantheon-geoclue2-agent/repos/community-x86_64/PKGBUILD (from rev 979184, pantheon-geoclue2-agent/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2021-07-20 06:45:27 UTC (rev 979185) @@ -0,0 +1,45 @@ +# Maintainer: Maxime Gauduin + +pkgname=pantheon-geoclue2-agent +pkgver=1.0.5 +pkgrel=1 +pkgdesc='Pantheon Geoclue2 Agent' +arch=(x86_64) +url=https://github.com/elementary/pantheon-agent-geoclue2 +license=(GPL3) +groups=(pantheon) +depends=( + geoclue2 + glibc + libgdk-3.so + libgio-2.0.so + libglib-2.0.so + libgobject-2.0.so + libgtk-3.so +) +makedepends=( + git + intltool + meson + vala +) +_tag=930584360b7ef914b295fe5c5e4f2ac470ba6e68 +source=(pantheon-geoclue2-agent::git+https://github.com/elementary/pantheon-agent-geoclue2.git#tag=${_tag}) +sha256sums=(SKIP) + +pkgver() { + cd pantheon-geoclue2-agent + + git describe --tags +} + +build() { + arch-meson pantheon-geoclue2-agent build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in haskell-th-utilities/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:45:34 Author: felixonmars Revision: 979186 archrelease: copy trunk to community-staging-x86_64 Added: haskell-th-utilities/repos/community-staging-x86_64/ haskell-th-utilities/repos/community-staging-x86_64/PKGBUILD (from rev 979185, haskell-th-utilities/trunk/PKGBUILD) --+ PKGBUILD | 42 ++ 1 file changed, 42 insertions(+) Copied: haskell-th-utilities/repos/community-staging-x86_64/PKGBUILD (from rev 979185, haskell-th-utilities/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:45:34 UTC (rev 979186) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan + +_hkgname=th-utilities +pkgname=haskell-th-utilities +pkgver=0.2.4.3 +pkgrel=16 +pkgdesc="Collection of useful functions for use with Template Haskell" +url="https://github.com/fpco/th-utilities"; +license=('MIT') +arch=('x86_64') +depends=('ghc-libs' 'haskell-primitive' 'haskell-syb' 'haskell-th-abstraction' 'haskell-th-orphans') +makedepends=('ghc' 'haskell-hspec' 'haskell-vector') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('6fa1d09ca40f548b0f9c97ed623924964a8c03dfc7a4874ee1db7d854b25008299e4eb6f5cea0befaa636cdb4ebdd1ce7685a2c4ea03548c24395f48e9f88e3a') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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 pantheon-geoclue2-agent/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:45:22 Author: alucryd Revision: 979184 upgpkg: pantheon-geoclue2-agent 1.0.5-1 Modified: pantheon-geoclue2-agent/trunk/PKGBUILD --+ PKGBUILD |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:45:18 UTC (rev 979183) +++ PKGBUILD2021-07-20 06:45:22 UTC (rev 979184) @@ -1,7 +1,7 @@ # Maintainer: Maxime Gauduin pkgname=pantheon-geoclue2-agent -pkgver=1.0.4 +pkgver=1.0.5 pkgrel=1 pkgdesc='Pantheon Geoclue2 Agent' arch=(x86_64) @@ -23,7 +23,8 @@ meson vala ) -source=(pantheon-geoclue2-agent::git+https://github.com/elementary/pantheon-agent-geoclue2.git#tag=46d69d8d985b2e2866d265c1013d2142b3a02241) +_tag=930584360b7ef914b295fe5c5e4f2ac470ba6e68 +source=(pantheon-geoclue2-agent::git+https://github.com/elementary/pantheon-agent-geoclue2.git#tag=${_tag}) sha256sums=(SKIP) pkgver() {
[arch-commits] Commit in haskell-th-utilities/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:45:18 Author: felixonmars Revision: 979183 upgpkg: haskell-th-utilities 0.2.4.3-16: rebuild with regex-posix 0.96.0.1 Modified: haskell-th-utilities/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:44:37 UTC (rev 979182) +++ PKGBUILD2021-07-20 06:45:18 UTC (rev 979183) @@ -3,7 +3,7 @@ _hkgname=th-utilities pkgname=haskell-th-utilities pkgver=0.2.4.3 -pkgrel=15 +pkgrel=16 pkgdesc="Collection of useful functions for use with Template Haskell" url="https://github.com/fpco/th-utilities"; license=('MIT')
[arch-commits] Commit in haskell-th-desugar/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:44:37 Author: felixonmars Revision: 979182 archrelease: copy trunk to community-staging-x86_64 Added: haskell-th-desugar/repos/community-staging-x86_64/ haskell-th-desugar/repos/community-staging-x86_64/PKGBUILD (from rev 979181, haskell-th-desugar/trunk/PKGBUILD) --+ PKGBUILD | 43 +++ 1 file changed, 43 insertions(+) Copied: haskell-th-desugar/repos/community-staging-x86_64/PKGBUILD (from rev 979181, haskell-th-desugar/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:44:37 UTC (rev 979182) @@ -0,0 +1,43 @@ +# Maintainer: Felix Yan + +_hkgname=th-desugar +pkgname=haskell-th-desugar +pkgver=1.12 +pkgrel=23 +pkgdesc="Functions to desugar Template Haskell" +url="https://github.com/goldfirere/th-desugar"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-ordered-containers' 'haskell-syb' 'haskell-th-abstraction' + 'haskell-th-lift' 'haskell-th-orphans' 'haskell-transformers-compat') +makedepends=('ghc' 'haskell-hunit' 'haskell-hspec') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('9615de6e08992eea2449ebc366016f5c62efbef0cec744d4e5a93223a12986f069a4a7707e0fbff9754388b8547226e7c4bf91b221e1077729cde257c659e74f') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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-th-desugar/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:44:22 Author: felixonmars Revision: 979181 upgpkg: haskell-th-desugar 1.12-23: rebuild with regex-posix 0.96.0.1 Modified: haskell-th-desugar/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:43:05 UTC (rev 979180) +++ PKGBUILD2021-07-20 06:44:22 UTC (rev 979181) @@ -3,7 +3,7 @@ _hkgname=th-desugar pkgname=haskell-th-desugar pkgver=1.12 -pkgrel=22 +pkgrel=23 pkgdesc="Functions to desugar Template Haskell" url="https://github.com/goldfirere/th-desugar"; license=('BSD')
[arch-commits] Commit in haskell-th-orphans/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:43:05 Author: felixonmars Revision: 979180 archrelease: copy trunk to community-staging-x86_64 Added: haskell-th-orphans/repos/community-staging-x86_64/ haskell-th-orphans/repos/community-staging-x86_64/PKGBUILD (from rev 979178, haskell-th-orphans/trunk/PKGBUILD) --+ PKGBUILD | 43 +++ 1 file changed, 43 insertions(+) Copied: haskell-th-orphans/repos/community-staging-x86_64/PKGBUILD (from rev 979178, haskell-th-orphans/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:43:05 UTC (rev 979180) @@ -0,0 +1,43 @@ +# Maintainer: Felix Yan + +_hkgname=th-orphans +pkgname=haskell-th-orphans +pkgver=0.13.11 +pkgrel=79 +pkgdesc="Orphan instances for TH datatypes" +url="https://github.com/ekmett/th-orphans/"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-th-compat' 'haskell-th-lift' 'haskell-th-lift-instances' + 'haskell-th-reify-many') +makedepends=('ghc' 'haskell-hspec') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('ff306b6dbc1a8b123c9a9cc6c91483d845aee12dbf3e0e67d0e38429a198a004fb12067b0c9033c8707c2946f4072060929fce629c1576f66bb1130ab701d063') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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-pkgconfig/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:43:02 Author: arojas Revision: 979179 archrelease: copy trunk to community-any Added: python-pkgconfig/repos/community-any/PKGBUILD (from rev 979178, python-pkgconfig/trunk/PKGBUILD) Deleted: python-pkgconfig/repos/community-any/PKGBUILD --+ PKGBUILD | 40 1 file changed, 20 insertions(+), 20 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2021-07-20 06:42:52 UTC (rev 979178) +++ PKGBUILD2021-07-20 06:43:02 UTC (rev 979179) @@ -1,20 +0,0 @@ -# Maintainer: Antonio Rojas - -pkgname=python-pkgconfig -pkgver=1.5.4 -pkgrel=1 -pkgdesc='Python module to interface with the pkg-config command line tool' -arch=(any) -url='https://github.com/matze/pkgconfig' -license=(MIT) -depends=(python) -makedepends=(python-setuptools) -source=(https://pypi.io/packages/source/p/pkgconfig/pkgconfig-$pkgver.tar.gz) -sha256sums=('c34503829fd226822fd93c902b1cf275516908a023a24be0a02ba687f3a00399') - -package() { - cd pkgconfig-$pkgver - - python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 - install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} Copied: python-pkgconfig/repos/community-any/PKGBUILD (from rev 979178, python-pkgconfig/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2021-07-20 06:43:02 UTC (rev 979179) @@ -0,0 +1,20 @@ +# Maintainer: Antonio Rojas + +pkgname=python-pkgconfig +pkgver=1.5.5 +pkgrel=1 +pkgdesc='Python module to interface with the pkg-config command line tool' +arch=(any) +url='https://github.com/matze/pkgconfig' +license=(MIT) +depends=(python) +makedepends=(python-setuptools) +source=(https://pypi.io/packages/source/p/pkgconfig/pkgconfig-$pkgver.tar.gz) +sha256sums=('deb4163ef11f75b520d822d9505c1f462761b4309b1bb713d08689759ea8b899') + +package() { + cd pkgconfig-$pkgver + + python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-th-orphans/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:42:52 Author: felixonmars Revision: 979178 upgpkg: haskell-th-orphans 0.13.11-79: rebuild with regex-posix 0.96.0.1 Modified: haskell-th-orphans/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:42:50 UTC (rev 979177) +++ PKGBUILD2021-07-20 06:42:52 UTC (rev 979178) @@ -3,7 +3,7 @@ _hkgname=th-orphans pkgname=haskell-th-orphans pkgver=0.13.11 -pkgrel=78 +pkgrel=79 pkgdesc="Orphan instances for TH datatypes" url="https://github.com/ekmett/th-orphans/"; license=('BSD')
[arch-commits] Commit in python-pkgconfig/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:42:50 Author: arojas Revision: 979177 Update to 1.5.5 Modified: python-pkgconfig/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:42:12 UTC (rev 979176) +++ PKGBUILD2021-07-20 06:42:50 UTC (rev 979177) @@ -1,7 +1,7 @@ # Maintainer: Antonio Rojas pkgname=python-pkgconfig -pkgver=1.5.4 +pkgver=1.5.5 pkgrel=1 pkgdesc='Python module to interface with the pkg-config command line tool' arch=(any) @@ -10,7 +10,7 @@ depends=(python) makedepends=(python-setuptools) source=(https://pypi.io/packages/source/p/pkgconfig/pkgconfig-$pkgver.tar.gz) -sha256sums=('c34503829fd226822fd93c902b1cf275516908a023a24be0a02ba687f3a00399') +sha256sums=('deb4163ef11f75b520d822d9505c1f462761b4309b1bb713d08689759ea8b899') package() { cd pkgconfig-$pkgver
[arch-commits] Commit in haskell-th-reify-many/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:42:12 Author: felixonmars Revision: 979176 archrelease: copy trunk to community-staging-x86_64 Added: haskell-th-reify-many/repos/community-staging-x86_64/ haskell-th-reify-many/repos/community-staging-x86_64/PKGBUILD (from rev 979175, haskell-th-reify-many/trunk/PKGBUILD) --+ PKGBUILD | 42 ++ 1 file changed, 42 insertions(+) Copied: haskell-th-reify-many/repos/community-staging-x86_64/PKGBUILD (from rev 979175, haskell-th-reify-many/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:42:12 UTC (rev 979176) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan + +_hkgname=th-reify-many +pkgname=haskell-th-reify-many +pkgver=0.1.9 +pkgrel=57 +pkgdesc="Recurseively reify template haskell datatype info" +url="https://github.com/mgsloan/th-reify-many"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-safe' 'haskell-th-expand-syns') +makedepends=('ghc') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('6d6f3cb939c172869e88a14ee800aa7760e090df55e0105f41ddc501c0a4bb60d59a66fafd890475fc3074a4fb25d7583570e2cfe32ce69f43c8db9663b0f110') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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-th-reify-many/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:41:56 Author: felixonmars Revision: 979175 upgpkg: haskell-th-reify-many 0.1.9-57: rebuild with regex-posix 0.96.0.1 Modified: haskell-th-reify-many/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:41:24 UTC (rev 979174) +++ PKGBUILD2021-07-20 06:41:56 UTC (rev 979175) @@ -3,7 +3,7 @@ _hkgname=th-reify-many pkgname=haskell-th-reify-many pkgver=0.1.9 -pkgrel=56 +pkgrel=57 pkgdesc="Recurseively reify template haskell datatype info" url="https://github.com/mgsloan/th-reify-many"; license=('BSD')
[arch-commits] Commit in haskell-th-expand-syns/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:41:24 Author: felixonmars Revision: 979174 archrelease: copy trunk to community-staging-x86_64 Added: haskell-th-expand-syns/repos/community-staging-x86_64/ haskell-th-expand-syns/repos/community-staging-x86_64/PKGBUILD (from rev 979173, haskell-th-expand-syns/trunk/PKGBUILD) --+ PKGBUILD | 42 ++ 1 file changed, 42 insertions(+) Copied: haskell-th-expand-syns/repos/community-staging-x86_64/PKGBUILD (from rev 979173, haskell-th-expand-syns/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:41:24 UTC (rev 979174) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan + +_hkgname=th-expand-syns +pkgname=haskell-th-expand-syns +pkgver=0.4.8.0 +pkgrel=23 +pkgdesc="Expands type synonyms in Template Haskell ASTs" +url="https://hackage.haskell.org/package/th-expand-syns"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-syb' 'haskell-th-abstraction') +makedepends=('ghc') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('bc144f2ec0c72ed5aca4b1e78711a0a70b837689b1813d0db999f44e1fa7338c6c64283b92ffb795835df1740340a12204dec74c9666d7d7919fa8bbeb9afbe6') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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-th-expand-syns/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:41:08 Author: felixonmars Revision: 979173 upgpkg: haskell-th-expand-syns 0.4.8.0-23: rebuild with regex-posix 0.96.0.1 Modified: haskell-th-expand-syns/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:40:37 UTC (rev 979172) +++ PKGBUILD2021-07-20 06:41:08 UTC (rev 979173) @@ -3,7 +3,7 @@ _hkgname=th-expand-syns pkgname=haskell-th-expand-syns pkgver=0.4.8.0 -pkgrel=22 +pkgrel=23 pkgdesc="Expands type synonyms in Template Haskell ASTs" url="https://hackage.haskell.org/package/th-expand-syns"; license=('BSD')
[arch-commits] Commit in haskell-json/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:40:37 Author: felixonmars Revision: 979172 archrelease: copy trunk to community-staging-x86_64 Added: haskell-json/repos/community-staging-x86_64/ haskell-json/repos/community-staging-x86_64/PKGBUILD (from rev 979171, haskell-json/trunk/PKGBUILD) --+ PKGBUILD | 39 +++ 1 file changed, 39 insertions(+) Copied: haskell-json/repos/community-staging-x86_64/PKGBUILD (from rev 979171, haskell-json/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:40:37 UTC (rev 979172) @@ -0,0 +1,39 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=json +pkgname=haskell-json +pkgver=0.10 +pkgrel=49 +pkgdesc="Support for serialising Haskell to and from JSON" +url="https://hackage.haskell.org/package/${_hkgname}"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' "haskell-syb") +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('4015693c363810701114a07083ab9610ebd1196d24f0eb8dcad35af54e9067259ca412b131eaa986b8dbfbf0ce62058ca4c31aeeff29fdf21f17e8d86e90') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-f-mapdict -fgeneric -fpretty -f-parsec -fsplit-base +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-json/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:40:21 Author: felixonmars Revision: 979171 upgpkg: haskell-json 0.10-49: rebuild with regex-posix 0.96.0.1 Modified: haskell-json/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:39:44 UTC (rev 979170) +++ PKGBUILD2021-07-20 06:40:21 UTC (rev 979171) @@ -4,7 +4,7 @@ _hkgname=json pkgname=haskell-json pkgver=0.10 -pkgrel=48 +pkgrel=49 pkgdesc="Support for serialising Haskell to and from JSON" url="https://hackage.haskell.org/package/${_hkgname}"; license=("BSD")
[arch-commits] Commit in haskell-polysemy/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:39:44 Author: felixonmars Revision: 979170 archrelease: copy trunk to community-staging-x86_64 Added: haskell-polysemy/repos/community-staging-x86_64/ haskell-polysemy/repos/community-staging-x86_64/PKGBUILD (from rev 979169, haskell-polysemy/trunk/PKGBUILD) --+ PKGBUILD | 48 1 file changed, 48 insertions(+) Copied: haskell-polysemy/repos/community-staging-x86_64/PKGBUILD (from rev 979169, haskell-polysemy/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:39:44 UTC (rev 979170) @@ -0,0 +1,48 @@ +# Maintainer: Felix Yan + +_hkgname=polysemy +pkgname=haskell-polysemy +pkgver=1.6.0.0 +pkgrel=2 +pkgdesc="Higher-order, low-boilerplate, zero-cost free monads" +url="https://github.com/isovector/polysemy"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-quickcheck' 'haskell-async' 'haskell-first-class-families' 'haskell-syb' + 'haskell-th-abstraction' 'haskell-type-errors' 'haskell-unagi-chan') +makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-hspec-discover' 'haskell-doctest' 'haskell-hspec' + 'haskell-inspection-testing') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";) +sha512sums=('9b053ea9a06abcadacd42db8dac913e140129d9d37e93f949c4b15493b465eeb8db55a19c5c450055f5b6856cf4683d3165b74350f0e68e0d3a6e3fa1e3d9064') + +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 \ +--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ +--ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS + 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 + # https://github.com/polysemy-research/polysemy/pull/410#issuecomment-868183832 + runhaskell Setup test --show-details=direct || echo "Tests failed" +} + +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-polysemy/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:39:29 Author: felixonmars Revision: 979169 upgpkg: haskell-polysemy 1.6.0.0-2: rebuild with regex-posix 0.96.0.1 Modified: haskell-polysemy/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:38:41 UTC (rev 979168) +++ PKGBUILD2021-07-20 06:39:29 UTC (rev 979169) @@ -3,7 +3,7 @@ _hkgname=polysemy pkgname=haskell-polysemy pkgver=1.6.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Higher-order, low-boilerplate, zero-cost free monads" url="https://github.com/isovector/polysemy"; license=('BSD')
[arch-commits] Commit in haskell-type-errors/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:38:41 Author: felixonmars Revision: 979168 archrelease: copy trunk to community-staging-x86_64 Added: haskell-type-errors/repos/community-staging-x86_64/ haskell-type-errors/repos/community-staging-x86_64/PKGBUILD (from rev 979167, haskell-type-errors/trunk/PKGBUILD) --+ PKGBUILD | 47 +++ 1 file changed, 47 insertions(+) Copied: haskell-type-errors/repos/community-staging-x86_64/PKGBUILD (from rev 979167, haskell-type-errors/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:38:41 UTC (rev 979168) @@ -0,0 +1,47 @@ +# Maintainer: Felix Yan + +_hkgname=type-errors +pkgname=haskell-type-errors +pkgver=0.2.0.0 +pkgrel=118 +pkgdesc="Tools for writing better type errors" +url="https://github.com/isovector/type-errors"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-first-class-families' 'haskell-syb' 'haskell-th-abstraction') +makedepends=('ghc' 'haskell-doctest') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('694ce594462234cbef53efae630e302d3653fb8afc68f1bf6bb4f21a407a5f0637b8fab27f8f62538cadd4ff2c51049ae18d60932eaf7359cbf60ca6b959011e') + +prepare() { +cd $_hkgname-$pkgver +sed -i 's/< *0.17/<1/' $_hkgname.cabal +} + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +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 --show-details=direct +} + +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-type-errors/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:38:28 Author: felixonmars Revision: 979167 upgpkg: haskell-type-errors 0.2.0.0-118: rebuild with regex-posix 0.96.0.1 Modified: haskell-type-errors/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:37:57 UTC (rev 979166) +++ PKGBUILD2021-07-20 06:38:28 UTC (rev 979167) @@ -3,7 +3,7 @@ _hkgname=type-errors pkgname=haskell-type-errors pkgver=0.2.0.0 -pkgrel=117 +pkgrel=118 pkgdesc="Tools for writing better type errors" url="https://github.com/isovector/type-errors"; license=('BSD')
[arch-commits] Commit in haskell-show/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:37:57 Author: felixonmars Revision: 979166 archrelease: copy trunk to community-staging-x86_64 Added: haskell-show/repos/community-staging-x86_64/ haskell-show/repos/community-staging-x86_64/PKGBUILD (from rev 979165, haskell-show/trunk/PKGBUILD) --+ PKGBUILD | 39 +++ 1 file changed, 39 insertions(+) Copied: haskell-show/repos/community-staging-x86_64/PKGBUILD (from rev 979165, haskell-show/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:37:57 UTC (rev 979166) @@ -0,0 +1,39 @@ +# Maintainer: Felix Yan + +_hkgname=show +pkgname=haskell-show +pkgver=0.6 +pkgrel=44 +pkgdesc="'Show' instances for Lambdabot" +url="https://github.com/mokus0/show.git"; +license=("GPL") +arch=('x86_64') +depends=('ghc-libs' 'haskell-syb') +makedepends=('ghc' ) +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";) +sha256sums=('4f57a947a538d021406f649049dde27d4d8d0b44aac3ba38fa64806c9d737b95') + +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 \ +--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ +--ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS + runhaskell Setup register --gen-script + runhaskell Setup unregister --gen-script + sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh + sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { + cd $_hkgname-$pkgver + + install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh + install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh + runhaskell Setup copy --destdir="$pkgdir" + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-show/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:37:44 Author: felixonmars Revision: 979165 upgpkg: haskell-show 0.6-44: rebuild with regex-posix 0.96.0.1 Modified: haskell-show/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:37:02 UTC (rev 979164) +++ PKGBUILD2021-07-20 06:37:44 UTC (rev 979165) @@ -3,7 +3,7 @@ _hkgname=show pkgname=haskell-show pkgver=0.6 -pkgrel=43 +pkgrel=44 pkgdesc="'Show' instances for Lambdabot" url="https://github.com/mokus0/show.git"; license=("GPL")
[arch-commits] Commit in haskell-flexible-defaults/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:37:02 Author: felixonmars Revision: 979164 archrelease: copy trunk to community-staging-x86_64 Added: haskell-flexible-defaults/repos/community-staging-x86_64/ haskell-flexible-defaults/repos/community-staging-x86_64/PKGBUILD (from rev 979163, haskell-flexible-defaults/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-flexible-defaults/repos/community-staging-x86_64/PKGBUILD (from rev 979163, haskell-flexible-defaults/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:37:02 UTC (rev 979164) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan + +_hkgname=flexible-defaults +pkgname=haskell-flexible-defaults +pkgver=0.0.3 +pkgrel=44 +pkgdesc="Generate default function implementations for complex type classes." +url="https://github.com/peti/flexible-defaults"; +license=("custom:PublicDomain") +arch=('x86_64') +depends=('ghc-libs' 'haskell-th-extras') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";) +sha256sums=('6586f6fce40e64f95e6d3de6d0730f9fe6668825d0dfd81336842fa8c62a630b') + +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 \ +--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ +--ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS + runhaskell Setup register --gen-script + runhaskell Setup unregister --gen-script + sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh + sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { + cd $_hkgname-$pkgver + + install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh + install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh + runhaskell Setup copy --destdir="$pkgdir" +}
[arch-commits] Commit in haskell-flexible-defaults/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:36:49 Author: felixonmars Revision: 979163 upgpkg: haskell-flexible-defaults 0.0.3-44: rebuild with regex-posix 0.96.0.1 Modified: haskell-flexible-defaults/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:36:13 UTC (rev 979162) +++ PKGBUILD2021-07-20 06:36:49 UTC (rev 979163) @@ -3,7 +3,7 @@ _hkgname=flexible-defaults pkgname=haskell-flexible-defaults pkgver=0.0.3 -pkgrel=43 +pkgrel=44 pkgdesc="Generate default function implementations for complex type classes." url="https://github.com/peti/flexible-defaults"; license=("custom:PublicDomain")
[arch-commits] Commit in haskell-th-extras/repos (3 files)
Date: Tuesday, July 20, 2021 @ 06:36:13 Author: felixonmars Revision: 979162 archrelease: copy trunk to community-staging-x86_64 Added: haskell-th-extras/repos/community-staging-x86_64/ haskell-th-extras/repos/community-staging-x86_64/PKGBUILD (from rev 979161, haskell-th-extras/trunk/PKGBUILD) haskell-th-extras/repos/community-staging-x86_64/ghc9.patch (from rev 979161, haskell-th-extras/trunk/ghc9.patch) + PKGBUILD | 44 ++ ghc9.patch | 876 +++ 2 files changed, 920 insertions(+) Copied: haskell-th-extras/repos/community-staging-x86_64/PKGBUILD (from rev 979161, haskell-th-extras/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:36:13 UTC (rev 979162) @@ -0,0 +1,44 @@ +# Maintainer: Felix Yan + +_hkgname=th-extras +pkgname=haskell-th-extras +pkgver=0.0.0.4 +pkgrel=44 +pkgdesc="A grab bag of functions for use with Template Haskell" +url="https://github.com/mokus0/th-extras"; +license=("custom:PublicDomain") +arch=('x86_64') +depends=('ghc-libs' 'haskell-syb' 'haskell-th-abstraction') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz"; +ghc9.patch) +sha256sums=('8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed' +'882392e14f1badac93e3796d7c82ae6688a97ad5fdd6d914b6e4b2f070782712') + +prepare() { + patch -d $_hkgname-$pkgver -p1 < ghc9.patch +} + +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 \ +--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ +--ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS + runhaskell Setup register --gen-script + runhaskell Setup unregister --gen-script + sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh + sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { + cd $_hkgname-$pkgver + + install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh + install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh + runhaskell Setup copy --destdir="$pkgdir" +} Copied: haskell-th-extras/repos/community-staging-x86_64/ghc9.patch (from rev 979161, haskell-th-extras/trunk/ghc9.patch) === --- community-staging-x86_64/ghc9.patch (rev 0) +++ community-staging-x86_64/ghc9.patch 2021-07-20 06:36:13 UTC (rev 979162) @@ -0,0 +1,876 @@ +From 51b36f3a9cb5691a9c2cc6ed5d12d0aa65873f66 Mon Sep 17 00:00:00 2001 +From: Edward Betts +Date: Fri, 1 Sep 2017 18:39:57 +0100 +Subject: [PATCH 02/14] correct spelling mistake + +--- + src/Language/Haskell/TH/Extras.hs | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/Language/Haskell/TH/Extras.hs b/src/Language/Haskell/TH/Extras.hs +index 9da19e3..85b2229 100644 +--- a/src/Language/Haskell/TH/Extras.hs b/src/Language/Haskell/TH/Extras.hs +@@ -116,7 +116,7 @@ genericalizeDecs :: [Dec] -> [Dec] + genericalizeDecs decs = everywhere (mkT fixName) decs + where + -- get all names bound in the decs and make them generic +--- at every occurence in decs. ++-- at every occurrence in decs. + names = decs >>= namesBoundInDec + genericalizedNames = [ (n, genericalizeName n) | n <- names] + fixName = replace (`lookup` genericalizedNames) +-- +2.32.0 + + +From 798ee05249aa79e86b56c7ec33139684e6271b2b Mon Sep 17 00:00:00 2001 +From: Ali Abrar +Date: Thu, 9 May 2019 17:35:03 -0400 +Subject: [PATCH 03/14] Add a few functions for extracting information from + types and constructors (e.g., arity) + +--- + src/Language/Haskell/TH/Extras.hs | 111 +- + th-extras.cabal | 1 + + 2 files changed, 111 insertions(+), 1 deletion(-) + +diff --git a/src/Language/Haskell/TH/Extras.hs b/src/Language/Haskell/TH/Extras.hs +index 85b2229..1cd5d1f 100644 +--- a/src/Language/Haskell/TH/Extras.hs b/src/Language/Haskell/TH/Extras.hs +@@ -1,9 +1,10 @@ +-{-# LANGUAGE CPP, TemplateHaskell #-} ++{-# LANGUAGE CPP, LambdaCase, TemplateHaskell #-} + module Language.Haskell.TH.Extras where + + import Control.Monad + import Data.Generics + import Data.Maybe ++import qualified Data.Set as Set + import Language.Haskell.TH + import Language.Haskell.TH.Syntax + +@@ -154,3 +155,111 @@ occursInType var ty = case ty of + #endif + _ -> False + ++-- | Assuming that we're building an instance of the form C (T v_1 ... v_(n-1)) for some GADT T, this function ++-- takes a list of the variables v_1 ...
[arch-commits] Commit in haskell-th-extras/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:35:56 Author: felixonmars Revision: 979161 upgpkg: haskell-th-extras 0.0.0.4-44: rebuild with regex-posix 0.96.0.1 Modified: haskell-th-extras/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:35:27 UTC (rev 979160) +++ PKGBUILD2021-07-20 06:35:56 UTC (rev 979161) @@ -3,7 +3,7 @@ _hkgname=th-extras pkgname=haskell-th-extras pkgver=0.0.0.4 -pkgrel=43 +pkgrel=44 pkgdesc="A grab bag of functions for use with Template Haskell" url="https://github.com/mokus0/th-extras"; license=("custom:PublicDomain")
[arch-commits] Commit in haskell-hs-bibutils/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:35:27 Author: felixonmars Revision: 979160 archrelease: copy trunk to community-staging-x86_64 Added: haskell-hs-bibutils/repos/community-staging-x86_64/ haskell-hs-bibutils/repos/community-staging-x86_64/PKGBUILD (from rev 979159, haskell-hs-bibutils/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-hs-bibutils/repos/community-staging-x86_64/PKGBUILD (from rev 979159, haskell-hs-bibutils/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:35:27 UTC (rev 979160) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=hs-bibutils +pkgname=haskell-hs-bibutils +pkgver=6.10.0.0 +pkgrel=47 +pkgdesc="Haskell bindings to bibutils, the bibliography conversion utilities." +url="http://istitutocolli.org/repos/hs-bibutils/"; +license=("GPL") +arch=('x86_64') +depends=('ghc-libs' "haskell-syb") +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('95227225908381613cd92f92ac7e4e6a8af93b8af12a5728b5c28911ada1afd1ea545c3b3a7f34af96411f0b8e27b905b76e40ae0372ed412744d0146518efdb') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-hs-bibutils/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:35:09 Author: felixonmars Revision: 979159 upgpkg: haskell-hs-bibutils 6.10.0.0-47: rebuild with regex-posix 0.96.0.1 Modified: haskell-hs-bibutils/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:34:11 UTC (rev 979158) +++ PKGBUILD2021-07-20 06:35:09 UTC (rev 979159) @@ -4,7 +4,7 @@ _hkgname=hs-bibutils pkgname=haskell-hs-bibutils pkgver=6.10.0.0 -pkgrel=46 +pkgrel=47 pkgdesc="Haskell bindings to bibutils, the bibliography conversion utilities." url="http://istitutocolli.org/repos/hs-bibutils/"; license=("GPL")
[arch-commits] Commit in haskell-hspec-expectations-lifted/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:34:11 Author: felixonmars Revision: 979158 archrelease: copy trunk to community-staging-x86_64 Added: haskell-hspec-expectations-lifted/repos/community-staging-x86_64/ haskell-hspec-expectations-lifted/repos/community-staging-x86_64/PKGBUILD (from rev 979157, haskell-hspec-expectations-lifted/trunk/PKGBUILD) --+ PKGBUILD | 40 1 file changed, 40 insertions(+) Copied: haskell-hspec-expectations-lifted/repos/community-staging-x86_64/PKGBUILD (from rev 979157, haskell-hspec-expectations-lifted/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:34:11 UTC (rev 979158) @@ -0,0 +1,40 @@ +# Maintainer: Felix Yan + +_hkgname=hspec-expectations-lifted +pkgname=haskell-hspec-expectations-lifted +pkgver=0.10.0 +pkgrel=65 +pkgdesc="A version of hspec-expectations generalized to MonadIO" +url="https://github.com/hspec/hspec-expectations-lifted"; +license=("MIT") +arch=('x86_64') +depends=('ghc-libs' 'haskell-hspec-expectations') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";) +sha256sums=('22cdf1509b396fea2f53a0bb88dec3552f540d58cc60962a82970264c1e73828') + +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 \ +--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ +--ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS + runhaskell Setup register --gen-script + runhaskell Setup unregister --gen-script + sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh + sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { + cd $_hkgname-$pkgver + + install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh + install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh + runhaskell Setup copy --destdir="$pkgdir" + install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/ + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-hspec-expectations-lifted/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:33:45 Author: felixonmars Revision: 979157 upgpkg: haskell-hspec-expectations-lifted 0.10.0-65: rebuild with regex-posix 0.96.0.1 Modified: haskell-hspec-expectations-lifted/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:33:16 UTC (rev 979156) +++ PKGBUILD2021-07-20 06:33:45 UTC (rev 979157) @@ -3,7 +3,7 @@ _hkgname=hspec-expectations-lifted pkgname=haskell-hspec-expectations-lifted pkgver=0.10.0 -pkgrel=64 +pkgrel=65 pkgdesc="A version of hspec-expectations generalized to MonadIO" url="https://github.com/hspec/hspec-expectations-lifted"; license=("MIT")
[arch-commits] Commit in haskell-enclosed-exceptions/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:33:16 Author: felixonmars Revision: 979156 archrelease: copy trunk to community-staging-x86_64 Added: haskell-enclosed-exceptions/repos/community-staging-x86_64/ haskell-enclosed-exceptions/repos/community-staging-x86_64/PKGBUILD (from rev 979155, haskell-enclosed-exceptions/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-enclosed-exceptions/repos/community-staging-x86_64/PKGBUILD (from rev 979155, haskell-enclosed-exceptions/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:33:16 UTC (rev 979156) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=enclosed-exceptions +pkgname=haskell-enclosed-exceptions +pkgver=1.0.3 +pkgrel=147 +pkgdesc="Catching all exceptions from within an enclosed computation" +url="https://github.com/jcristovao/enclosed-exceptions"; +license=("MIT") +arch=('x86_64') +depends=('ghc-libs' "haskell-lifted-base" "haskell-monad-control" "haskell-transformers-base") +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('68edb501f42f01d8b4bbce374e49295e045650a8b19fdbf527a54458728e61f53c6c6bcfd1613a7169b013a34bd51cbd2ab2c457cf616fbc8c052b98533bde6c') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-enclosed-exceptions/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:33:01 Author: felixonmars Revision: 979155 upgpkg: haskell-enclosed-exceptions 1.0.3-147: rebuild with regex-posix 0.96.0.1 Modified: haskell-enclosed-exceptions/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:32:29 UTC (rev 979154) +++ PKGBUILD2021-07-20 06:33:01 UTC (rev 979155) @@ -4,7 +4,7 @@ _hkgname=enclosed-exceptions pkgname=haskell-enclosed-exceptions pkgver=1.0.3 -pkgrel=146 +pkgrel=147 pkgdesc="Catching all exceptions from within an enclosed computation" url="https://github.com/jcristovao/enclosed-exceptions"; license=("MIT")
[arch-commits] Commit in haskell-lifted-base/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:32:29 Author: felixonmars Revision: 979154 archrelease: copy trunk to community-staging-x86_64 Added: haskell-lifted-base/repos/community-staging-x86_64/ haskell-lifted-base/repos/community-staging-x86_64/PKGBUILD (from rev 979153, haskell-lifted-base/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-lifted-base/repos/community-staging-x86_64/PKGBUILD (from rev 979153, haskell-lifted-base/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:32:29 UTC (rev 979154) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=lifted-base +pkgname=haskell-lifted-base +pkgver=0.2.3.12 +pkgrel=161 +pkgdesc="lifted IO operations from the base library" +url="https://github.com/basvandijk/lifted-base"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' "haskell-monad-control" "haskell-transformers-base") +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('8bdd69686cdcd8841304341282f9b32a7d1c095da276bfb877017f12400f0f62018fda47fb41f36b817a91093856d8a02f0b8c7b8fe397fd9a839f20e64b8a32') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-lifted-base/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:32:11 Author: felixonmars Revision: 979153 upgpkg: haskell-lifted-base 0.2.3.12-161: rebuild with regex-posix 0.96.0.1 Modified: haskell-lifted-base/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:31:42 UTC (rev 979152) +++ PKGBUILD2021-07-20 06:32:11 UTC (rev 979153) @@ -4,7 +4,7 @@ _hkgname=lifted-base pkgname=haskell-lifted-base pkgver=0.2.3.12 -pkgrel=160 +pkgrel=161 pkgdesc="lifted IO operations from the base library" url="https://github.com/basvandijk/lifted-base"; license=("BSD")
[arch-commits] Commit in haskell-success/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:31:42 Author: felixonmars Revision: 979152 archrelease: copy trunk to community-staging-x86_64 Added: haskell-success/repos/community-staging-x86_64/ haskell-success/repos/community-staging-x86_64/PKGBUILD (from rev 979151, haskell-success/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-success/repos/community-staging-x86_64/PKGBUILD (from rev 979151, haskell-success/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:31:42 UTC (rev 979152) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=success +pkgname=haskell-success +pkgver=0.2.6 +pkgrel=170 +pkgdesc="A version of Either specialised for encoding of success or failure" +url="https://github.com/nikita-volkov/success"; +license=("MIT") +arch=('x86_64') +depends=('ghc-libs' "haskell-transformers-base" "haskell-monad-control") +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('be0fc1627fb65e7607cf7753594a0db86ab3feaf4df241808231bd3d3ed1f4be7db14579395f594d4c7cbc46eae5e846d4e32d6ffaf260dfb73b794a5743a87e') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-success/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:31:24 Author: felixonmars Revision: 979151 upgpkg: haskell-success 0.2.6-170: rebuild with regex-posix 0.96.0.1 Modified: haskell-success/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:30:51 UTC (rev 979150) +++ PKGBUILD2021-07-20 06:31:24 UTC (rev 979151) @@ -4,7 +4,7 @@ _hkgname=success pkgname=haskell-success pkgver=0.2.6 -pkgrel=169 +pkgrel=170 pkgdesc="A version of Either specialised for encoding of success or failure" url="https://github.com/nikita-volkov/success"; license=("MIT")
[arch-commits] Commit in haskell-multistate/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:30:51 Author: felixonmars Revision: 979150 archrelease: copy trunk to community-staging-x86_64 Added: haskell-multistate/repos/community-staging-x86_64/ haskell-multistate/repos/community-staging-x86_64/PKGBUILD (from rev 979149, haskell-multistate/trunk/PKGBUILD) --+ PKGBUILD | 50 ++ 1 file changed, 50 insertions(+) Copied: haskell-multistate/repos/community-staging-x86_64/PKGBUILD (from rev 979149, haskell-multistate/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:30:51 UTC (rev 979150) @@ -0,0 +1,50 @@ +# Maintainer: Felix Yan + +_hkgname=multistate +pkgname=haskell-multistate +pkgver=0.8.0.3 +pkgrel=72 +pkgdesc="Like mtl's ReaderT / WriterT / StateT, but more than one contained value/type" +url="https://github.com/lspitzner/multistate"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-monad-control' 'haskell-tagged' 'haskell-transformers-base') +makedepends=('ghc' 'uusi' 'haskell-hspec') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";) +sha256sums=('0f597aee4fdd243751a9f2d935156960c437252527818bec7d98709991a87969') + +prepare() { + cd $_hkgname-$pkgver + uusi -u base -u hspec $_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 \ +--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ +--ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS + 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 --show-details=direct +} + +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 -t "$pkgdir"/usr/share/licenses/$pkgname/ + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-multistate/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:30:35 Author: felixonmars Revision: 979149 upgpkg: haskell-multistate 0.8.0.3-72: rebuild with regex-posix 0.96.0.1 Modified: haskell-multistate/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:30:01 UTC (rev 979148) +++ PKGBUILD2021-07-20 06:30:35 UTC (rev 979149) @@ -3,7 +3,7 @@ _hkgname=multistate pkgname=haskell-multistate pkgver=0.8.0.3 -pkgrel=71 +pkgrel=72 pkgdesc="Like mtl's ReaderT / WriterT / StateT, but more than one contained value/type" url="https://github.com/lspitzner/multistate"; license=("BSD")
[arch-commits] Commit in haskell-monad-journal/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:30:01 Author: felixonmars Revision: 979148 archrelease: copy trunk to community-staging-x86_64 Added: haskell-monad-journal/repos/community-staging-x86_64/ haskell-monad-journal/repos/community-staging-x86_64/PKGBUILD (from rev 979147, haskell-monad-journal/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-monad-journal/repos/community-staging-x86_64/PKGBUILD (from rev 979147, haskell-monad-journal/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:30:01 UTC (rev 979148) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=monad-journal +pkgname=haskell-monad-journal +pkgver=0.8.1 +pkgrel=163 +pkgdesc="Pure logger typeclass and monad transformer" +url="https://github.com/phaazon/monad-journal"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-monad-control' 'haskell-transformers-base') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('3fbc984b3f74d24fca71bc2530832f3748a64e636adfd504fe48e86fefabe53b0911e5b173b6acbbd85128c11f5bd2a7079d6c3fd622148aee7b56f26173379d') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-monad-journal/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:29:44 Author: felixonmars Revision: 979147 upgpkg: haskell-monad-journal 0.8.1-163: rebuild with regex-posix 0.96.0.1 Modified: haskell-monad-journal/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:29:12 UTC (rev 979146) +++ PKGBUILD2021-07-20 06:29:44 UTC (rev 979147) @@ -4,7 +4,7 @@ _hkgname=monad-journal pkgname=haskell-monad-journal pkgver=0.8.1 -pkgrel=162 +pkgrel=163 pkgdesc="Pure logger typeclass and monad transformer" url="https://github.com/phaazon/monad-journal"; license=("BSD")
[arch-commits] Commit in haskell-resource-pool/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:29:12 Author: felixonmars Revision: 979146 archrelease: copy trunk to community-staging-x86_64 Added: haskell-resource-pool/repos/community-staging-x86_64/ haskell-resource-pool/repos/community-staging-x86_64/PKGBUILD (from rev 979145, haskell-resource-pool/trunk/PKGBUILD) --+ PKGBUILD | 40 1 file changed, 40 insertions(+) Copied: haskell-resource-pool/repos/community-staging-x86_64/PKGBUILD (from rev 979145, haskell-resource-pool/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:29:12 UTC (rev 979146) @@ -0,0 +1,40 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=resource-pool +pkgname=haskell-resource-pool +pkgver=0.2.3.2 +pkgrel=190 +pkgdesc="A high-performance striped resource pooling implementation" +url="https://github.com/bos/pool"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' "haskell-hashable" "haskell-monad-control" + "haskell-transformers-base" "haskell-vector") +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('42b0bb6dea35c08884f65604acc0dd93707b8d4de780c584877e92fbfe534d4f754282e9c9f7257c203f1152d85ac8170f84ee9a95573343d02a774006c4118b') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-f-developer +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-resource-pool/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:28:59 Author: felixonmars Revision: 979145 upgpkg: haskell-resource-pool 0.2.3.2-190: rebuild with regex-posix 0.96.0.1 Modified: haskell-resource-pool/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:28:28 UTC (rev 979144) +++ PKGBUILD2021-07-20 06:28:59 UTC (rev 979145) @@ -4,7 +4,7 @@ _hkgname=resource-pool pkgname=haskell-resource-pool pkgver=0.2.3.2 -pkgrel=189 +pkgrel=190 pkgdesc="A high-performance striped resource pooling implementation" url="https://github.com/bos/pool"; license=("BSD")
[arch-commits] Commit in haskell-monad-control/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:28:28 Author: felixonmars Revision: 979144 archrelease: copy trunk to community-staging-x86_64 Added: haskell-monad-control/repos/community-staging-x86_64/ haskell-monad-control/repos/community-staging-x86_64/PKGBUILD (from rev 979143, haskell-monad-control/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-monad-control/repos/community-staging-x86_64/PKGBUILD (from rev 979143, haskell-monad-control/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:28:28 UTC (rev 979144) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=monad-control +pkgname=haskell-monad-control +pkgver=1.0.2.3 +pkgrel=161 +pkgdesc="Lift control operations, like exception catching, through monad transformers" +url="https://github.com/basvandijk/monad-control"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' "haskell-transformers-base" "haskell-transformers-compat") +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('59837326ec9f25220cb6c7329c91a5806b0ec7412d6af24c0f0d52c4fd93b084e92edd4f5f61a4f9c4248034fa540c23b65d2aacdfca737ece98bb132b8f08d4') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-monad-control/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:28:14 Author: felixonmars Revision: 979143 upgpkg: haskell-monad-control 1.0.2.3-161: rebuild with regex-posix 0.96.0.1 Modified: haskell-monad-control/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:27:44 UTC (rev 979142) +++ PKGBUILD2021-07-20 06:28:14 UTC (rev 979143) @@ -4,7 +4,7 @@ _hkgname=monad-control pkgname=haskell-monad-control pkgver=1.0.2.3 -pkgrel=160 +pkgrel=161 pkgdesc="Lift control operations, like exception catching, through monad transformers" url="https://github.com/basvandijk/monad-control"; license=("BSD")
[arch-commits] Commit in haskell-transformers-base/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:27:44 Author: felixonmars Revision: 979142 archrelease: copy trunk to community-staging-x86_64 Added: haskell-transformers-base/repos/community-staging-x86_64/ haskell-transformers-base/repos/community-staging-x86_64/PKGBUILD (from rev 979141, haskell-transformers-base/trunk/PKGBUILD) --+ PKGBUILD | 39 +++ 1 file changed, 39 insertions(+) Copied: haskell-transformers-base/repos/community-staging-x86_64/PKGBUILD (from rev 979141, haskell-transformers-base/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:27:44 UTC (rev 979142) @@ -0,0 +1,39 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=transformers-base +pkgname=haskell-transformers-base +pkgver=0.4.5.2 +pkgrel=159 +pkgdesc="Lift computations from the bottom of a transformer stack" +url="https://github.com/mvv/transformers-base"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-base-orphans' 'haskell-transformers-compat') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('5953d99fee3a02f825c096cf035a5ee825da17e154ca9847ddb215dee54a96a8b28af2b4adb639ef3548ea9aa8a2cb781563c7ffbb399bed5a35c056d03bcbd4') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-forphaninstances +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-transformers-base/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:27:31 Author: felixonmars Revision: 979141 upgpkg: haskell-transformers-base 0.4.5.2-159: rebuild with regex-posix 0.96.0.1 Modified: haskell-transformers-base/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:27:02 UTC (rev 979140) +++ PKGBUILD2021-07-20 06:27:31 UTC (rev 979141) @@ -4,7 +4,7 @@ _hkgname=transformers-base pkgname=haskell-transformers-base pkgver=0.4.5.2 -pkgrel=158 +pkgrel=159 pkgdesc="Lift computations from the bottom of a transformer stack" url="https://github.com/mvv/transformers-base"; license=("BSD")
[arch-commits] Commit in haskell-getopt-generics/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:27:02 Author: felixonmars Revision: 979140 archrelease: copy trunk to community-staging-x86_64 Added: haskell-getopt-generics/repos/community-staging-x86_64/ haskell-getopt-generics/repos/community-staging-x86_64/PKGBUILD (from rev 979139, haskell-getopt-generics/trunk/PKGBUILD) --+ PKGBUILD | 43 +++ 1 file changed, 43 insertions(+) Copied: haskell-getopt-generics/repos/community-staging-x86_64/PKGBUILD (from rev 979139, haskell-getopt-generics/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:27:02 UTC (rev 979140) @@ -0,0 +1,43 @@ +# Maintainer: Felix Yan + +_hkgname=getopt-generics +pkgname=haskell-getopt-generics +pkgver=0.13.0.4 +pkgrel=85 +pkgdesc="Create command line interfaces with ease" +url="https://github.com/soenkehahn/getopt-generics"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-base-compat' 'haskell-base-orphans' 'haskell-generics-sop' + 'haskell-tagged') +makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck' 'haskell-safe' 'haskell-silently') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('f053dcd59126932745a98c955eca70dc3f50eda7e5a390bf7e5d7c639d89df9d714a6b449166a5b288a77e69f203207e8d8480ad86484b68c7a609e5f1a03fca') + +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 $MAKEFLAGS +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 --show-details=direct +} + +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-getopt-generics/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:26:49 Author: felixonmars Revision: 979139 upgpkg: haskell-getopt-generics 0.13.0.4-85: rebuild with regex-posix 0.96.0.1 Modified: haskell-getopt-generics/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:26:12 UTC (rev 979138) +++ PKGBUILD2021-07-20 06:26:49 UTC (rev 979139) @@ -3,7 +3,7 @@ _hkgname=getopt-generics pkgname=haskell-getopt-generics pkgver=0.13.0.4 -pkgrel=84 +pkgrel=85 pkgdesc="Create command line interfaces with ease" url="https://github.com/soenkehahn/getopt-generics"; license=('BSD')
[arch-commits] Commit in haskell-storable-complex/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:26:12 Author: felixonmars Revision: 979138 archrelease: copy trunk to community-staging-x86_64 Added: haskell-storable-complex/repos/community-staging-x86_64/ haskell-storable-complex/repos/community-staging-x86_64/PKGBUILD (from rev 979137, haskell-storable-complex/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: haskell-storable-complex/repos/community-staging-x86_64/PKGBUILD (from rev 979137, haskell-storable-complex/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:26:12 UTC (rev 979138) @@ -0,0 +1,38 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=storable-complex +pkgname=haskell-storable-complex +pkgver=0.2.3.0 +pkgrel=138 +pkgdesc="Storable instance for Complex" +url="https://github.com/cartazio/storable-complex"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-base-orphans') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('26e2dec12e84bdd1ce1eeb6662577179e203e2af12e8f04f5c2fd323a5474645232cf06744af9ed3252d8d36320b88c63023b1ff12bbfb9a95a48ed70d352c77') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-storable-complex/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:25:56 Author: felixonmars Revision: 979137 upgpkg: haskell-storable-complex 0.2.3.0-138: rebuild with regex-posix 0.96.0.1 Modified: haskell-storable-complex/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:25:24 UTC (rev 979136) +++ PKGBUILD2021-07-20 06:25:56 UTC (rev 979137) @@ -4,7 +4,7 @@ _hkgname=storable-complex pkgname=haskell-storable-complex pkgver=0.2.3.0 -pkgrel=137 +pkgrel=138 pkgdesc="Storable instance for Complex" url="https://github.com/cartazio/storable-complex"; license=("BSD")
[arch-commits] Commit in haskell-hxt/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:25:24 Author: felixonmars Revision: 979136 archrelease: copy trunk to community-staging-x86_64 Added: haskell-hxt/repos/community-staging-x86_64/ haskell-hxt/repos/community-staging-x86_64/PKGBUILD (from rev 979135, haskell-hxt/trunk/PKGBUILD) --+ PKGBUILD | 39 +++ 1 file changed, 39 insertions(+) Copied: haskell-hxt/repos/community-staging-x86_64/PKGBUILD (from rev 979135, haskell-hxt/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:25:24 UTC (rev 979136) @@ -0,0 +1,39 @@ +# Maintainer: Felix Yan + +_hkgname=hxt +pkgname=haskell-hxt +pkgver=9.3.1.22 +pkgrel=21 +pkgdesc="A collection of tools for processing XML with Haskell." +url="https://github.com/UweSchmidt/hxt"; +license=('MIT') +arch=('x86_64') +depends=('ghc-libs' 'haskell-hxt-charproperties' 'haskell-hxt-regex-xmlschema' 'haskell-hxt-unicode' + 'haskell-network-uri') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('ac7720a01a7769bfb528aa5de29fff9a993c430af75d1326bd50e845c3b7378be09bdda8c99bdd7e45fc5c09fac10c6fc318ff77cf65b2ad7ea2709aff2c1af8') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-fnetwork-uri +runhaskell Setup build $MAKEFLAGS +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh +install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh +runhaskell Setup copy --destdir="$pkgdir" +install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-hxt/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:25:11 Author: felixonmars Revision: 979135 upgpkg: haskell-hxt 9.3.1.22-21: rebuild with regex-posix 0.96.0.1 Modified: haskell-hxt/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:24:04 UTC (rev 979134) +++ PKGBUILD2021-07-20 06:25:11 UTC (rev 979135) @@ -3,7 +3,7 @@ _hkgname=hxt pkgname=haskell-hxt pkgver=9.3.1.22 -pkgrel=20 +pkgrel=21 pkgdesc="A collection of tools for processing XML with Haskell." url="https://github.com/UweSchmidt/hxt"; license=('MIT')
[arch-commits] Commit in haskell-network-uri/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:24:04 Author: felixonmars Revision: 979134 archrelease: copy trunk to community-staging-x86_64 Added: haskell-network-uri/repos/community-staging-x86_64/ haskell-network-uri/repos/community-staging-x86_64/PKGBUILD (from rev 979133, haskell-network-uri/trunk/PKGBUILD) --+ PKGBUILD | 49 + 1 file changed, 49 insertions(+) Copied: haskell-network-uri/repos/community-staging-x86_64/PKGBUILD (from rev 979133, haskell-network-uri/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:24:04 UTC (rev 979134) @@ -0,0 +1,49 @@ +# Maintainer: Jelle van der Waa + +_hkgname=network-uri +pkgname=haskell-network-uri +pkgver=2.6.4.1 +pkgrel=31 +pkgdesc="A library for client-side HTTP" +url="https://hackage.haskell.org/package/${_hkgname}"; +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-th-compat') +makedepends=('ghc' 'haskell-quickcheck' 'haskell-hunit' 'haskell-tasty' 'haskell-tasty-hunit' + 'haskell-tasty-quickcheck') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('8e5b01fd11197ac36de9b804d37256662f904f2b94a997a2e262439bb1706d1c460db368e935bf3971fd1581162abbc07439a0bae391e1e616264bd00fe7104e') + +build() { +cd $_hkgname-$pkgver + +if (( CHECKFUNC )); then +_opts=('--enable-tests') +else +_opts=('--disable-tests') +fi + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build $MAKEFLAGS +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 --show-details=direct +} + +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-network-uri/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:23:50 Author: felixonmars Revision: 979133 upgpkg: haskell-network-uri 2.6.4.1-31: rebuild with regex-posix 0.96.0.1 Modified: haskell-network-uri/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:23:09 UTC (rev 979132) +++ PKGBUILD2021-07-20 06:23:50 UTC (rev 979133) @@ -3,7 +3,7 @@ _hkgname=network-uri pkgname=haskell-network-uri pkgver=2.6.4.1 -pkgrel=30 +pkgrel=31 pkgdesc="A library for client-side HTTP" url="https://hackage.haskell.org/package/${_hkgname}"; license=('BSD')
[arch-commits] Commit in haskell-th-compat/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:23:09 Author: felixonmars Revision: 979132 archrelease: copy trunk to community-staging-x86_64 Added: haskell-th-compat/repos/community-staging-x86_64/ haskell-th-compat/repos/community-staging-x86_64/PKGBUILD (from rev 979131, haskell-th-compat/trunk/PKGBUILD) --+ PKGBUILD | 45 + 1 file changed, 45 insertions(+) Copied: haskell-th-compat/repos/community-staging-x86_64/PKGBUILD (from rev 979131, haskell-th-compat/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:23:09 UTC (rev 979132) @@ -0,0 +1,45 @@ +# Maintainer: Felix Yan + +_hkgname=th-compat +pkgname=haskell-th-compat +pkgver=0.1.2 +pkgrel=23 +pkgdesc="Backward- (and forward-)compatible Quote and Code types" +url="https://github.com/haskell-compat/th-compat"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc' 'haskell-base-compat' 'haskell-hspec' 'haskell-hspec-discover') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";) +sha512sums=('4910a8fdbd4ec9658205f78be0e5c832deaffe77c51695776563758de9b28e190c6134101c0467a7abc96a51a6ddf02c77943c252d2f3e41f0c4bc1fcb461073') + +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 \ +--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ +--ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS + 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 --show-details=direct +} + +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 -t "$pkgdir"/usr/share/licenses/$pkgname/ + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-th-compat/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:22:55 Author: felixonmars Revision: 979131 upgpkg: haskell-th-compat 0.1.2-23: rebuild with regex-posix 0.96.0.1 Modified: haskell-th-compat/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:22:24 UTC (rev 979130) +++ PKGBUILD2021-07-20 06:22:55 UTC (rev 979131) @@ -3,7 +3,7 @@ _hkgname=th-compat pkgname=haskell-th-compat pkgver=0.1.2 -pkgrel=22 +pkgrel=23 pkgdesc="Backward- (and forward-)compatible Quote and Code types" url="https://github.com/haskell-compat/th-compat"; license=("BSD")
[arch-commits] Commit in haskell-unicode-show/repos (2 files)
Date: Tuesday, July 20, 2021 @ 06:22:24 Author: felixonmars Revision: 979130 archrelease: copy trunk to community-staging-x86_64 Added: haskell-unicode-show/repos/community-staging-x86_64/ haskell-unicode-show/repos/community-staging-x86_64/PKGBUILD (from rev 979129, haskell-unicode-show/trunk/PKGBUILD) --+ PKGBUILD | 44 1 file changed, 44 insertions(+) Copied: haskell-unicode-show/repos/community-staging-x86_64/PKGBUILD (from rev 979129, haskell-unicode-show/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-20 06:22:24 UTC (rev 979130) @@ -0,0 +1,44 @@ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=unicode-show +pkgname=haskell-unicode-show +pkgver=0.1.0.4 +pkgrel=112 +pkgdesc="Print and show in unicode" +url="https://github.com/nushio3/unicode-show#readme"; +license=("BSD") +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('25019cfc9d4c8eff6ef2ab772cec8a810e22ad1fd35f4119a53a9f2bbeb50c9e742a508815813134d8d5fa13dee3f1ddcc9f183b4a6958c748d6d82f35b98147') + +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 $MAKEFLAGS +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 +# https://github.com/nushio3/unicode-show/issues/2 +runhaskell Setup test || echo "Tests failed" +} + +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-unicode-show/trunk (PKGBUILD)
Date: Tuesday, July 20, 2021 @ 06:22:10 Author: felixonmars Revision: 979129 upgpkg: haskell-unicode-show 0.1.0.4-112: rebuild with regex-posix 0.96.0.1 Modified: haskell-unicode-show/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2021-07-20 06:21:37 UTC (rev 979128) +++ PKGBUILD2021-07-20 06:22:10 UTC (rev 979129) @@ -4,7 +4,7 @@ _hkgname=unicode-show pkgname=haskell-unicode-show pkgver=0.1.0.4 -pkgrel=111 +pkgrel=112 pkgdesc="Print and show in unicode" url="https://github.com/nushio3/unicode-show#readme"; license=("BSD")