commit: 0941d693b666d852901e908fe37db250ddfae2ca
Author: hololeap <hololeap <AT> protonmail <DOT> com>
AuthorDate: Fri Nov 17 23:49:59 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov 19 18:32:42 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0941d693
dev-haskell/hdbc-postgresql: Loosen constraint on 'time'
This allows hdbc-2.4.0.3 to be built on newer GHC.
Add missing flags to src_configure.
Signed-off-by: hololeap <hololeap <AT> protonmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-haskell/hdbc-postgresql/hdbc-postgresql-2.5.0.0.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-haskell/hdbc-postgresql/hdbc-postgresql-2.5.0.0.ebuild
b/dev-haskell/hdbc-postgresql/hdbc-postgresql-2.5.0.0.ebuild
index d04a9048548b..ad99cae6ccbd 100644
--- a/dev-haskell/hdbc-postgresql/hdbc-postgresql-2.5.0.0.ebuild
+++ b/dev-haskell/hdbc-postgresql/hdbc-postgresql-2.5.0.0.ebuild
@@ -4,7 +4,7 @@
EAPI=8
# ebuild generated by hackport 0.6.7.9999
-#hackport: flags: +splitbase -buildtests
+#hackport: flags: +splitbase,-buildtests,+minTime15
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
@@ -39,10 +39,12 @@ S="${WORKDIR}/${MY_P}"
CABAL_CHDEPS=(
'Cabal >= 1.8 && < 3.3' 'Cabal >= 1.8'
+ 'time >= 1.5 && < 1.10' 'time >= 1.5'
)
src_configure() {
haskell-cabal_src_configure \
--flag=-buildtests \
- --flag=splitbase
+ --flag=splitbase \
+ --flag=minTime15
}