diff options
author | Duncan Coutts <dcoutts@gentoo.org> | 2007-07-11 17:42:32 +0000 |
---|---|---|
committer | Duncan Coutts <dcoutts@gentoo.org> | 2007-07-11 17:42:32 +0000 |
commit | c0c646a5352d9ee506481fde3ce7ac3ce5371bc9 (patch) | |
tree | 480ebb4ed762f9872fcdb7f4bea091427de843fa | |
parent | Add src_test as RESTRICT=test until the needed deps are keyworded. (diff) | |
download | historical-c0c646a5352d9ee506481fde3ce7ac3ce5371bc9.tar.gz historical-c0c646a5352d9ee506481fde3ce7ac3ce5371bc9.tar.bz2 historical-c0c646a5352d9ee506481fde3ce7ac3ce5371bc9.zip |
New minor version.
Package-Manager: portage-2.1.2.9
-rw-r--r-- | dev-haskell/hdbc-odbc/ChangeLog | 9 | ||||
-rw-r--r-- | dev-haskell/hdbc-odbc/files/digest-hdbc-odbc-1.0.1.1 | 3 | ||||
-rw-r--r-- | dev-haskell/hdbc-odbc/hdbc-odbc-1.0.1.1.ebuild | 23 | ||||
-rw-r--r-- | dev-haskell/hdbc-postgresql/ChangeLog | 10 | ||||
-rw-r--r-- | dev-haskell/hdbc-postgresql/files/digest-hdbc-postgresql-1.0.1.0 | 3 | ||||
-rw-r--r-- | dev-haskell/hdbc-postgresql/hdbc-postgresql-1.0.1.0.ebuild | 23 | ||||
-rw-r--r-- | dev-haskell/hdbc-sqlite/ChangeLog | 10 | ||||
-rw-r--r-- | dev-haskell/hdbc-sqlite/files/digest-hdbc-sqlite-1.0.1.0 | 3 | ||||
-rw-r--r-- | dev-haskell/hdbc-sqlite/hdbc-sqlite-1.0.1.0.ebuild | 31 | ||||
-rw-r--r-- | dev-haskell/hdbc/ChangeLog | 9 | ||||
-rw-r--r-- | dev-haskell/hdbc/files/digest-hdbc-1.0.1 | 3 | ||||
-rw-r--r-- | dev-haskell/hdbc/hdbc-1.0.1.ebuild | 24 |
12 files changed, 143 insertions, 8 deletions
diff --git a/dev-haskell/hdbc-odbc/ChangeLog b/dev-haskell/hdbc-odbc/ChangeLog index 2b1645c54771..01454c271a31 100644 --- a/dev-haskell/hdbc-odbc/ChangeLog +++ b/dev-haskell/hdbc-odbc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-haskell/hdbc-odbc -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-odbc/ChangeLog,v 1.9 2006/10/12 18:34:43 dcoutts Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-odbc/ChangeLog,v 1.10 2007/07/11 17:42:32 dcoutts Exp $ + +*hdbc-odbc-1.0.1.1 (11 Jul 2007) + + 11 Jul 2007; Duncan Coutts <dcoutts@gentoo.org> +hdbc-odbc-1.0.1.1.ebuild: + New minor version. Fixes bug #180686. 12 Oct 2006; Duncan Coutts <dcoutts@gentoo.org> -hdbc-odbc-0.99.0.0.ebuild, -hdbc-odbc-0.99.2.1.ebuild: diff --git a/dev-haskell/hdbc-odbc/files/digest-hdbc-odbc-1.0.1.1 b/dev-haskell/hdbc-odbc/files/digest-hdbc-odbc-1.0.1.1 new file mode 100644 index 000000000000..23df5065e10d --- /dev/null +++ b/dev-haskell/hdbc-odbc/files/digest-hdbc-odbc-1.0.1.1 @@ -0,0 +1,3 @@ +MD5 c87057520657ba20d374dfa749d0f3f4 hdbc-odbc_1.0.1.1.tar.gz 37075 +RMD160 669ed71a1d6fc517c1d09fd1b3d3beac46d6284d hdbc-odbc_1.0.1.1.tar.gz 37075 +SHA256 cdb84175b501e4eccfded96f930fb010504471b36724221fbbca9d06d9121e50 hdbc-odbc_1.0.1.1.tar.gz 37075 diff --git a/dev-haskell/hdbc-odbc/hdbc-odbc-1.0.1.1.ebuild b/dev-haskell/hdbc-odbc/hdbc-odbc-1.0.1.1.ebuild new file mode 100644 index 000000000000..1fd586714a49 --- /dev/null +++ b/dev-haskell/hdbc-odbc/hdbc-odbc-1.0.1.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-odbc/hdbc-odbc-1.0.1.1.ebuild,v 1.1 2007/07/11 17:42:32 dcoutts Exp $ + +CABAL_FEATURES="lib profile haddock" +inherit base haskell-cabal versionator + +DESCRIPTION="ODBC database driver for HDBC" +HOMEPAGE="http://quux.org/devel/hdbc/" +SRC_URI="http://quux.org/devel/hdbc/${PN}_${PV}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +hdbc_PV=$(get_version_component_range 1-3) + +DEPEND=">=virtual/ghc-6.4.1 + ~dev-haskell/hdbc-${hdbc_PV} + >=dev-db/unixODBC-2.2" + +S="${WORKDIR}/${PN}" diff --git a/dev-haskell/hdbc-postgresql/ChangeLog b/dev-haskell/hdbc-postgresql/ChangeLog index eb17e116239e..a850c9a25367 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-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-postgresql/ChangeLog,v 1.8 2006/10/12 18:33:55 dcoutts Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-postgresql/ChangeLog,v 1.9 2007/07/11 17:41:17 dcoutts Exp $ + +*hdbc-postgresql-1.0.1.0 (11 Jul 2007) + + 11 Jul 2007; Duncan Coutts <dcoutts@gentoo.org> + +hdbc-postgresql-1.0.1.0.ebuild: + New minor version. 12 Oct 2006; Duncan Coutts <dcoutts@gentoo.org> -hdbc-postgresql-0.99.0.0.ebuild, -hdbc-postgresql-0.99.2.1.ebuild: diff --git a/dev-haskell/hdbc-postgresql/files/digest-hdbc-postgresql-1.0.1.0 b/dev-haskell/hdbc-postgresql/files/digest-hdbc-postgresql-1.0.1.0 new file mode 100644 index 000000000000..394f0d20b504 --- /dev/null +++ b/dev-haskell/hdbc-postgresql/files/digest-hdbc-postgresql-1.0.1.0 @@ -0,0 +1,3 @@ +MD5 d9ba83a4e81857243cd7ab257ee22251 hdbc-postgresql_1.0.1.0.tar.gz 34203 +RMD160 8ef36258a96ebe4e63ef7fda45d5462835294d68 hdbc-postgresql_1.0.1.0.tar.gz 34203 +SHA256 be0d001dbe825e6d94d59b64166e167f273abd476f33b6958b67c62a098673e3 hdbc-postgresql_1.0.1.0.tar.gz 34203 diff --git a/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.0.1.0.ebuild b/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.0.1.0.ebuild new file mode 100644 index 000000000000..b3f514d61eeb --- /dev/null +++ b/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.0.1.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2007 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.0.1.0.ebuild,v 1.1 2007/07/11 17:41:17 dcoutts Exp $ + +CABAL_FEATURES="lib profile haddock" +inherit haskell-cabal versionator + +DESCRIPTION="PostgreSQL database driver for HDBC" +HOMEPAGE="http://quux.org/devel/hdbc/" +SRC_URI="http://quux.org/devel/hdbc/${PN}_${PV}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~sparc" +IUSE="" + +hdbc_PV=$(get_version_component_range 1-3) + +DEPEND=">=virtual/ghc-6.4.1 + ~dev-haskell/hdbc-${hdbc_PV} + >=dev-db/libpq-8" + +S="${WORKDIR}/${PN}" diff --git a/dev-haskell/hdbc-sqlite/ChangeLog b/dev-haskell/hdbc-sqlite/ChangeLog index c5935ac2b361..fa699b752a40 100644 --- a/dev-haskell/hdbc-sqlite/ChangeLog +++ b/dev-haskell/hdbc-sqlite/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-haskell/hdbc-sqlite -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-sqlite/ChangeLog,v 1.8 2006/10/12 18:35:44 dcoutts Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-sqlite/ChangeLog,v 1.9 2007/07/11 17:40:15 dcoutts Exp $ + +*hdbc-sqlite-1.0.1.0 (11 Jul 2007) + + 11 Jul 2007; Duncan Coutts <dcoutts@gentoo.org> + +hdbc-sqlite-1.0.1.0.ebuild: + New minor version. Fixes bug #180690. 12 Oct 2006; Duncan Coutts <dcoutts@gentoo.org> -hdbc-sqlite-0.99.0.0.ebuild, -hdbc-sqlite-0.99.2.0.ebuild: diff --git a/dev-haskell/hdbc-sqlite/files/digest-hdbc-sqlite-1.0.1.0 b/dev-haskell/hdbc-sqlite/files/digest-hdbc-sqlite-1.0.1.0 new file mode 100644 index 000000000000..140d7fcefc20 --- /dev/null +++ b/dev-haskell/hdbc-sqlite/files/digest-hdbc-sqlite-1.0.1.0 @@ -0,0 +1,3 @@ +MD5 56624f37dc86b9e690579fe015bcd4a4 hdbc-sqlite3_1.0.1.0.tar.gz 23818 +RMD160 8de873255f88348e8baa93991861c31ea0775d7d hdbc-sqlite3_1.0.1.0.tar.gz 23818 +SHA256 1d5bef4d8f6e11d493f53867e169957800689e7f54fe4e3e72e0d17b6b289509 hdbc-sqlite3_1.0.1.0.tar.gz 23818 diff --git a/dev-haskell/hdbc-sqlite/hdbc-sqlite-1.0.1.0.ebuild b/dev-haskell/hdbc-sqlite/hdbc-sqlite-1.0.1.0.ebuild new file mode 100644 index 000000000000..416b48a55be8 --- /dev/null +++ b/dev-haskell/hdbc-sqlite/hdbc-sqlite-1.0.1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 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.0.1.0.ebuild,v 1.1 2007/07/11 17:40:15 dcoutts Exp $ + +CABAL_FEATURES="lib profile haddock" +inherit base haskell-cabal versionator + +DESCRIPTION="Sqlite v3 database driver for HDBC" +HOMEPAGE="http://quux.org/devel/hdbc/" +SRC_URI="http://quux.org/devel/hdbc/${PN}3_${PV}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~sparc" +IUSE="" + +hdbc_PV=$(get_version_component_range 1-3) + +DEPEND=">=virtual/ghc-6.4.1 + ~dev-haskell/hdbc-${hdbc_PV} + >=dev-db/sqlite-3.2" + +S="${WORKDIR}/${PN}3" + +src_unpack() { + base_src_unpack + + # Fix haddock markup + sed -i -e 's|execute/fetchrow|execute\\/fetchrow|' \ + "${S}/Database/HDBC/Sqlite3/Statement.hsc" +} diff --git a/dev-haskell/hdbc/ChangeLog b/dev-haskell/hdbc/ChangeLog index 3889dc3e4e03..08b361ea8d7a 100644 --- a/dev-haskell/hdbc/ChangeLog +++ b/dev-haskell/hdbc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-haskell/hdbc -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc/ChangeLog,v 1.8 2006/10/12 18:36:46 dcoutts Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc/ChangeLog,v 1.9 2007/07/11 17:39:02 dcoutts Exp $ + +*hdbc-1.0.1 (11 Jul 2007) + + 11 Jul 2007; Duncan Coutts <dcoutts@gentoo.org> +hdbc-1.0.1.ebuild: + New minor version. 12 Oct 2006; Duncan Coutts <dcoutts@gentoo.org> -hdbc-0.99.0.ebuild, -hdbc-0.99.2.ebuild: diff --git a/dev-haskell/hdbc/files/digest-hdbc-1.0.1 b/dev-haskell/hdbc/files/digest-hdbc-1.0.1 new file mode 100644 index 000000000000..493b4159b466 --- /dev/null +++ b/dev-haskell/hdbc/files/digest-hdbc-1.0.1 @@ -0,0 +1,3 @@ +MD5 cf116a3593ff173f94d0038b9b0b97f1 hdbc_1.0.1.tar.gz 52565 +RMD160 66324cde38d2f60b6ab9e64c87ce3a3597a6afd0 hdbc_1.0.1.tar.gz 52565 +SHA256 bf4122d7482887f2c42bdab5d1af77b9393947f5d4aa2fdf3fd5078273b3b3fa hdbc_1.0.1.tar.gz 52565 diff --git a/dev-haskell/hdbc/hdbc-1.0.1.ebuild b/dev-haskell/hdbc/hdbc-1.0.1.ebuild new file mode 100644 index 000000000000..aa34a35e7984 --- /dev/null +++ b/dev-haskell/hdbc/hdbc-1.0.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc/hdbc-1.0.1.ebuild,v 1.1 2007/07/11 17:39:02 dcoutts Exp $ + +CABAL_FEATURES="lib profile haddock" +inherit haskell-cabal + +DESCRIPTION="Haskell Database Connectivity" +HOMEPAGE="http://quux.org/devel/hdbc/" +SRC_URI="http://quux.org/devel/hdbc/${PN}_${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="odbc postgres sqlite" + +DEPEND=">=virtual/ghc-6.4.1 + >=dev-haskell/mtl-1.0" + +PDEPEND="odbc? ( =dev-haskell/hdbc-odbc-${PV}* ) + postgres? ( =dev-haskell/hdbc-postgresql-${PV}* ) + sqlite? ( =dev-haskell/hdbc-sqlite-${PV}* )" + +S="${WORKDIR}/${PN}" |