Date: Saturday, March 11, 2023 @ 02:17:21
Author: felixonmars
Revision: 1418014
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-aeson-compat/repos/community-staging-x86_64/
haskell-aeson-compat/repos/community-staging-x86_64/PKGBUILD
(from rev 1418012, haskell-aeson-compat/trunk/PKGBUILD)
haskell-aeson-compat/repos/community-staging-x86_64/aeson-2.1.2.patch
(from rev 1418012, haskell-aeson-compat/trunk/aeson-2.1.2.patch)
-------------------+
PKGBUILD | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++
aeson-2.1.2.patch | 18 +++++++++++++++++
2 files changed, 73 insertions(+)
Copied: haskell-aeson-compat/repos/community-staging-x86_64/PKGBUILD (from rev
1418012, haskell-aeson-compat/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-03-11 02:17:21 UTC (rev 1418014)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Arch Haskell Team <[email protected]>
+
+_hkgname=aeson-compat
+pkgname=haskell-aeson-compat
+pkgver=0.3.10
+pkgrel=95
+pkgdesc="Compatibility layer for aeson"
+url="https://hackage.haskell.org/package/${_hkgname}"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec'
'haskell-attoparsec-iso8601'
+ 'haskell-base-compat' 'haskell-hashable' 'haskell-scientific'
+ 'haskell-tagged' 'haskell-time-locale-compat'
'haskell-unordered-containers'
+ 'haskell-vector')
+makedepends=('ghc' 'uusi' 'haskell-base-orphans' 'haskell-quickcheck'
'haskell-quickcheck-instances'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz"
+ aeson-2.1.2.patch)
+sha512sums=('5e44568c29e9886cdfa10dfa9e7f9ce93b0927a2317fdfc9427378867d6b5cf95d1cea12a7e28ff6f7f9cb6eca4b4eb4d9d0dce3353af5b390f06ea691243557'
+
'dbc85760b4d431319670cdf394fbe6eb1bce7a82e8351ad9e746bbd9dc3bcc3b1a3d3e9b18da0eedaf68ce41a9784bf9bc7298dbf6ea8a2c32543f0cae4ff565')
+
+prepare() {
+ cd $_hkgname-$pkgver
+ patch -p1 -i ../aeson-2.1.2.patch
+ uusi -u aeson -u attoparsec-iso8601 -u hashable -u vector $_hkgname.cabal
+}
+
+build() {
+ cd $_hkgname-$pkgver
+
+ runhaskell Setup configure -O --enable-shared --enable-executable-dynamic
--disable-library-vanilla \
+ --prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname
--enable-tests \
+ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
--ghc-option=-fllvm
+ 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
+}
Copied: haskell-aeson-compat/repos/community-staging-x86_64/aeson-2.1.2.patch
(from rev 1418012, haskell-aeson-compat/trunk/aeson-2.1.2.patch)
===================================================================
--- community-staging-x86_64/aeson-2.1.2.patch (rev 0)
+++ community-staging-x86_64/aeson-2.1.2.patch 2023-03-11 02:17:21 UTC (rev
1418014)
@@ -0,0 +1,18 @@
+diff --git a/src/Data/Aeson/Compat.hs b/src/Data/Aeson/Compat.hs
+index eeb583a..c80fd64 100644
+--- a/src/Data/Aeson/Compat.hs
++++ b/src/Data/Aeson/Compat.hs
+@@ -167,11 +167,13 @@ import qualified Data.Aeson.KeyMap as KM
+
+ import Data.Attoparsec.Number (Number (..))
+
++#if !MIN_VERSION_aeson(2,1,2)
+ -- | Exception thrown by 'decode' - family of functions in this module.
+ newtype AesonException = AesonException String
+ deriving (Show, Typeable)
+
+ instance Exception AesonException
++#endif
+
+ eitherAesonExc :: (MonadThrow m) => Either String a -> m a
+ eitherAesonExc (Left err) = throwM (AesonException err)