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

Felix Yan felixonmars at gemini.archlinux.org
Sat Jun 11 18:01:51 UTC 2022


    Date: Saturday, June 11, 2022 @ 18:01:50
  Author: felixonmars
Revision: 1234355

upgpkg: haskell-tasty-discover 4.2.3-1: rebuild with tasty-discover 4.2.3

Modified:
  haskell-tasty-discover/trunk/PKGBUILD
Deleted:
  haskell-tasty-discover/trunk/tasty-hspec-1.1.7.patch

-------------------------+
 PKGBUILD                |   19 ++++++------
 tasty-hspec-1.1.7.patch |   69 ----------------------------------------------
 2 files changed, 9 insertions(+), 79 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-06-11 17:36:46 UTC (rev 1234354)
+++ PKGBUILD	2022-06-11 18:01:50 UTC (rev 1234355)
@@ -2,23 +2,22 @@
 
 _hkgname=tasty-discover
 pkgname=haskell-tasty-discover
-pkgver=4.2.2
-pkgrel=165
+pkgver=4.2.3
+pkgrel=1
 pkgdesc="Test discovery for the tasty framework"
 url="https://github.com/haskell-works/tasty-discover"
 license=('MIT')
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-glob')
-makedepends=('ghc' 'haskell-hedgehog' 'haskell-hspec' 'haskell-tasty' 'haskell-tasty-hedgehog'
-             'haskell-tasty-hspec' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck'
-             'haskell-tasty-smallcheck')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz
-        tasty-hspec-1.1.7.patch)
-sha512sums=('42a0d9c79e3c80780fbf65b9069586d908eaea8cdad62b35120369cfc1fa14f7155b8aba27356d6f454c6fb292bcd3f637ce59827795bdf5cce4e9ab5f9e7792'
-            '396fec6196fabe5e12894a60e621b47eacb59d7effe7a1b4b9145be8acae4c0afc93a46d8495eea1dd8752195948c049e34d3260fedb9d10a425646a55b07acb')
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-hspec' 'haskell-hspec-core' 'haskell-tasty'
+             'haskell-tasty-hedgehog' 'haskell-tasty-hspec' 'haskell-tasty-hunit'
+             'haskell-tasty-quickcheck' 'haskell-tasty-smallcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a4f9313f0f624e6752e434edb934edec6bd6a7a241340e94679c3c8f733bebe690a99d1e8db1196c0c257c3a10f0c3605932ea6a4311c81875e7fb758fd27203')
 
 prepare() {
-    patch -d $_hkgname-$pkgver -p1 < tasty-hspec-1.1.7.patch
+    cd $_hkgname-$pkgver
+    uusi -u hspec $_hkgname.cabal
 }
 
 build() {

Deleted: tasty-hspec-1.1.7.patch
===================================================================
--- tasty-hspec-1.1.7.patch	2022-06-11 17:36:46 UTC (rev 1234354)
+++ tasty-hspec-1.1.7.patch	2022-06-11 18:01:50 UTC (rev 1234355)
@@ -1,69 +0,0 @@
-commit a7323eb6d64a7b094fb7312cf089f9b6ac6ed7f4
-Author: Felix Yan <felixonmars at archlinux.org>
-Date:   Sat May 15 07:16:31 2021 +0800
-
-    Fix compatibility with tasty-hspec 1.1.7
-    
-    tasty-hspec no longer re-exports Test.Hspec since 1.1.7. Let's import
-    it ourselves.
-
-diff --git a/tasty-discover.cabal b/tasty-discover.cabal
-index 9e4be46..d8cd477 100644
---- a/tasty-discover.cabal
-+++ b/tasty-discover.cabal
-@@ -39,6 +39,7 @@ common directory                  { build-depends: directory                  >=
- common filepath                   { build-depends: filepath                   >= 1.3      && < 2.0      }
- common Glob                       { build-depends: Glob                       >= 0.8      && < 1.0      }
- common hedgehog                   { build-depends: hedgehog                                             }
-+common hspec                      { build-depends: hspec                                                }
- common tasty                      { build-depends: tasty                                                }
- common tasty-discover             { build-depends: tasty-discover                                       }
- common tasty-hedgehog             { build-depends: tasty-hedgehog                                       }
-@@ -82,6 +83,7 @@ test-suite tasty-discover-test
-                       , directory
-                       , filepath
-                       , hedgehog
-+                      , hspec
-                       , tasty
-                       , tasty-hedgehog
-                       , tasty-hspec
-diff --git a/test/ConfigTest.hs b/test/ConfigTest.hs
-index 7a52360..3a7bbe8 100644
---- a/test/ConfigTest.hs
-+++ b/test/ConfigTest.hs
-@@ -1,3 +1,4 @@
-+{-# LANGUAGE CPP #-}
- {-# LANGUAGE TupleSections #-}
- 
- {-# OPTIONS_GHC -fno-warn-orphans #-}
-@@ -12,6 +13,10 @@ import Test.Tasty.Hspec
- import Test.Tasty.HUnit
- import Test.Tasty.QuickCheck
- 
-+#if MIN_VERSION_tasty_hspec(1,1,7)
-+import Test.Hspec
-+#endif
-+
- import qualified Data.Map.Strict as M
- 
- spec_modules :: Spec
-diff --git a/test/DiscoverTest.hs b/test/DiscoverTest.hs
-index 8e6cc55..b79b6ed 100644
---- a/test/DiscoverTest.hs
-+++ b/test/DiscoverTest.hs
-@@ -1,3 +1,4 @@
-+{-# LANGUAGE CPP #-}
- {-# LANGUAGE ScopedTypeVariables #-}
- 
- module DiscoverTest where
-@@ -8,6 +9,10 @@ import Test.Tasty.Hspec
- import Test.Tasty.HUnit
- import Test.Tasty.QuickCheck
- 
-+#if MIN_VERSION_tasty_hspec(1,1,7)
-+import Test.Hspec
-+#endif
-+
- import qualified Hedgehog       as H
- import qualified Hedgehog.Gen   as G
- import qualified Hedgehog.Range as R



More information about the arch-commits mailing list