summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2010-07-11 21:36:50 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2010-07-11 21:36:50 +0000
commit0ad7ba0dd3fa95836ee0a5f3660f40b116d2b4cb (patch)
treed85439dc678d7d43bc38c70de0cd520be4d61ddb /dev-haskell/hdbc-sqlite
parentFix for #311881, actually installs xfsdump/xfsrestore now. Thanks to Yuri Kar... (diff)
downloadgentoo-2-0ad7ba0dd3fa95836ee0a5f3660f40b116d2b4cb.tar.gz
gentoo-2-0ad7ba0dd3fa95836ee0a5f3660f40b116d2b4cb.tar.bz2
gentoo-2-0ad7ba0dd3fa95836ee0a5f3660f40b116d2b4cb.zip
Fixed building on newer ghc (base==3.* dep).
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-haskell/hdbc-sqlite')
-rw-r--r--dev-haskell/hdbc-sqlite/ChangeLog9
-rw-r--r--dev-haskell/hdbc-sqlite/hdbc-sqlite-1.1.3.0.ebuild6
2 files changed, 11 insertions, 4 deletions
diff --git a/dev-haskell/hdbc-sqlite/ChangeLog b/dev-haskell/hdbc-sqlite/ChangeLog
index 16ee969e0e0e..9ed1e219eaa8 100644
--- a/dev-haskell/hdbc-sqlite/ChangeLog
+++ b/dev-haskell/hdbc-sqlite/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-haskell/hdbc-sqlite
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-sqlite/ChangeLog,v 1.11 2007/12/13 17:20:20 dcoutts Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-sqlite/ChangeLog,v 1.12 2010/07/11 21:36:50 slyfox Exp $
+
+ 11 Jul 2010; Sergei Trofimovich <slyfox@gentoo.org>
+ hdbc-sqlite-1.1.3.0.ebuild:
+ Fixed building on newer ghc. Thanks to Emil Karlson <jekarlson@gmail.com>
+ for report and proposed fix.
*hdbc-sqlite-1.1.3.0 (13 Dec 2007)
diff --git a/dev-haskell/hdbc-sqlite/hdbc-sqlite-1.1.3.0.ebuild b/dev-haskell/hdbc-sqlite/hdbc-sqlite-1.1.3.0.ebuild
index df4eb73a2f35..92c91b540db6 100644
--- a/dev-haskell/hdbc-sqlite/hdbc-sqlite-1.1.3.0.ebuild
+++ b/dev-haskell/hdbc-sqlite/hdbc-sqlite-1.1.3.0.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-sqlite/hdbc-sqlite-1.1.3.0.ebuild,v 1.1 2007/12/13 17:20:20 dcoutts Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-sqlite/hdbc-sqlite-1.1.3.0.ebuild,v 1.2 2010/07/11 21:36:50 slyfox Exp $
CABAL_FEATURES="lib profile haddock"
inherit haskell-cabal versionator
@@ -42,3 +42,5 @@ src_unpack() {
echo "GHC-Options: -XPatternSignatures" >> "${S}/${MY_PN}.cabal"
fi
}
+
+CABAL_CONFIGURE_FLAGS="--constraint=base<4"