[arch-commits] Commit in haskell-quickcheck/trunk (2 files)

Felix Yan felixonmars at archlinux.org
Sun Sep 9 04:29:48 UTC 2018


    Date: Sunday, September 9, 2018 @ 04:29:47
  Author: felixonmars
Revision: 378857

upgpkg: haskell-quickcheck 2.12.1-1

rebuild with QuickCheck 2.12.1, hspec 2.5.6, hspec-core 2.5.6, hspec-discover 2.5.6

Modified:
  haskell-quickcheck/trunk/PKGBUILD
Deleted:
  haskell-quickcheck/trunk/0001-update-code-to-support-extensible-exceptions-no-long.patch

-----------------------------------------------------------------+
 0001-update-code-to-support-extensible-exceptions-no-long.patch |   50 ----------
 PKGBUILD                                                        |    8 -
 2 files changed, 4 insertions(+), 54 deletions(-)

Deleted: 0001-update-code-to-support-extensible-exceptions-no-long.patch
===================================================================
--- 0001-update-code-to-support-extensible-exceptions-no-long.patch	2018-09-09 04:18:45 UTC (rev 378856)
+++ 0001-update-code-to-support-extensible-exceptions-no-long.patch	2018-09-09 04:29:47 UTC (rev 378857)
@@ -1,50 +0,0 @@
-From 554b8dc1439b4dbb5bc9a853fc27efe7b1e111de Mon Sep 17 00:00:00 2001
-From: Thomas Dziedzic <gostrc at gmail.com>
-Date: Tue, 11 Sep 2012 03:59:50 -0700
-Subject: [PATCH] update code to support extensible exceptions no longer being
- a part of ghc >= 7.6.1
-
----
- QuickCheck.cabal             | 6 +++++-
- Test/QuickCheck/Exception.hs | 6 ++++++
- 2 files changed, 11 insertions(+), 1 deletion(-)
-
-diff --git a/QuickCheck.cabal b/QuickCheck.cabal
-index 1a9126e..5afd6fb 100644
---- a/QuickCheck.cabal
-+++ b/QuickCheck.cabal
-@@ -60,9 +60,13 @@ library
-       Build-depends: ghc
- 
-   -- We want to use extensible-exceptions even if linking against base-3.
--  if impl(ghc >= 6.9)
-+  if impl(ghc >= 6.9) && impl(ghc < 7.6)
-     Build-depends: extensible-exceptions
- 
-+  -- GHC >= 7.6.1 no longer provides extensible exceptions
-+  if impl(ghc >= 7.6)
-+    cpp-options: -DNEW_EXCEPTIONS
-+
-   -- Modules that are always built.
-   Exposed-Modules:
-     Test.QuickCheck,
-diff --git a/Test/QuickCheck/Exception.hs b/Test/QuickCheck/Exception.hs
-index f895351..d463195 100644
---- a/Test/QuickCheck/Exception.hs
-+++ b/Test/QuickCheck/Exception.hs
-@@ -18,6 +18,12 @@ module Test.QuickCheck.Exception where
- 
- #if defined(OLD_EXCEPTIONS)
- import Control.Exception(evaluate, try, Exception(..), throw)
-+#elif defined(NEW_EXCEPTIONS)
-+import Control.Exception(evaluate, try, SomeException(SomeException), ErrorCall(..), throw
-+#if defined(GHC_INTERRUPT)
-+  , AsyncException(UserInterrupt)
-+#endif
-+  )
- #else
- import Control.Exception.Extensible(evaluate, try, SomeException(SomeException), ErrorCall(..), throw
- #if defined(GHC_INTERRUPT)
--- 
-1.7.12
-

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2018-09-09 04:18:45 UTC (rev 378856)
+++ PKGBUILD	2018-09-09 04:29:47 UTC (rev 378857)
@@ -5,16 +5,16 @@
 
 _hkgname=QuickCheck
 pkgname=haskell-quickcheck
-pkgver=2.11.3
-pkgrel=4
+pkgver=2.12.1
+pkgrel=1
 pkgdesc='Automatic testing of Haskell programs'
 url='https://hackage.haskell.org/package/QuickCheck'
 license=('custom:BSD3')
 arch=('x86_64')
-depends=('ghc-libs' 'haskell-random' 'haskell-tf-random')
+depends=('ghc-libs' 'haskell-erf' 'haskell-random' 'haskell-tf-random')
 makedepends=('ghc')
 source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
-sha512sums=('17b3c5803cbca980375a1837b4ba931f346be8a720fcc0e37ad2c46abc8ba2073c49635bc89739d34653376c3f7fe1bd39560092c005b8dbce0a7effac25d73d')
+sha512sums=('280bc8e8b05e096629e5afdb6cd5c7f42690b8632af11ed513454ec7dbd8eff88518ae532b2055a30a57fe8bef3afa35cfe4ed981509d917b20a45c010b62629')
 
 build() {
   cd "$srcdir/$_hkgname-$pkgver"



More information about the arch-commits mailing list