summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2010-07-12 13:11:43 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2010-07-12 13:11:43 +0000
commit80781980e29f0e82205bc1f5e8bb3491ece7705c (patch)
treed21ea9ab620ed6c4dbe77eae2c4837b553bf5a16 /dev-haskell/hdbc-postgresql
parentVersion bump and old version cleanup (diff)
downloadgentoo-2-80781980e29f0e82205bc1f5e8bb3491ece7705c.tar.gz
gentoo-2-80781980e29f0e82205bc1f5e8bb3491ece7705c.tar.bz2
gentoo-2-80781980e29f0e82205bc1f5e8bb3491ece7705c.zip
Fixed bug #227513 (missing dev-haskell/parsec dep)
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-haskell/hdbc-postgresql')
-rw-r--r--dev-haskell/hdbc-postgresql/ChangeLog8
-rw-r--r--dev-haskell/hdbc-postgresql/hdbc-postgresql-1.1.3.0.ebuild7
2 files changed, 12 insertions, 3 deletions
diff --git a/dev-haskell/hdbc-postgresql/ChangeLog b/dev-haskell/hdbc-postgresql/ChangeLog
index 2f966fe19693..fc934be69392 100644
--- a/dev-haskell/hdbc-postgresql/ChangeLog
+++ b/dev-haskell/hdbc-postgresql/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-haskell/hdbc-postgresql
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-postgresql/ChangeLog,v 1.13 2010/06/17 18:19:51 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-postgresql/ChangeLog,v 1.14 2010/07/12 13:11:43 slyfox Exp $
+
+ 12 Jul 2010; Sergei Trofimovich <slyfox@gentoo.org>
+ hdbc-postgresql-1.1.3.0.ebuild:
+ Fixed bug #227513 (missing dev-haskell/parsec dep). Thanks to Evil Compile
+ Person <bugs@dev.gentooexperimental.org> for the report and thanks to
+ Sebastian Magrí <sebasmagri@gmail.com> for the fix.
17 Jun 2010; Patrick Lauer <patrick@gentoo.org>
hdbc-postgresql-1.0.0.0.ebuild, hdbc-postgresql-1.0.1.0.ebuild,
diff --git a/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.1.3.0.ebuild b/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.1.3.0.ebuild
index 7ef20d584d61..ecd3129fe3be 100644
--- a/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.1.3.0.ebuild
+++ b/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.1.3.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.1.3.0.ebuild,v 1.3 2010/06/17 18:19:51 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.1.3.0.ebuild,v 1.4 2010/07/12 13:11:43 slyfox Exp $
CABAL_FEATURES="lib profile haddock"
inherit haskell-cabal versionator
@@ -22,12 +22,15 @@ hdbc_PV=$(get_version_component_range 1-3)
DEPEND=">=dev-lang/ghc-6.4.1
dev-haskell/mtl
=dev-haskell/hdbc-${hdbc_PV}*
+ dev-haskell/parsec
>=dev-db/postgresql-base-8"
S="${WORKDIR}/${MY_P}"
+CABAL_CONFIGURE_FLAGS="--constraint=base<4"
+
src_unpack() {
- unpack "${A}"
+ unpack ${A}
cp "${FILESDIR}/hdbc-postgresql-helper.h" "${FILESDIR}/pgtypes.h" "${S}/"
sed -i -e 's/GHC-Options: -O2 -Wall/GHC-Options: -fvia-C/' \