From 154400b208954330f2a754adbd213a4df132c650 Mon Sep 17 00:00:00 2001 From: Thomas Raschbacher Date: Thu, 16 May 2013 15:12:49 +0000 Subject: version bump (bug #465944)+ cleanup (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key ) --- dev-db/libzdb/ChangeLog | 10 ++++- dev-db/libzdb/libzdb-2.10.3.ebuild | 92 -------------------------------------- dev-db/libzdb/libzdb-2.10.5.ebuild | 4 +- dev-db/libzdb/libzdb-2.11.1.ebuild | 4 +- dev-db/libzdb/libzdb-2.11.2.ebuild | 90 +++++++++++++++++++++++++++++++++++++ 5 files changed, 103 insertions(+), 97 deletions(-) delete mode 100644 dev-db/libzdb/libzdb-2.10.3.ebuild create mode 100644 dev-db/libzdb/libzdb-2.11.2.ebuild (limited to 'dev-db') diff --git a/dev-db/libzdb/ChangeLog b/dev-db/libzdb/ChangeLog index c0a93f9047a1..3aada883916b 100644 --- a/dev-db/libzdb/ChangeLog +++ b/dev-db/libzdb/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-db/libzdb # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/libzdb/ChangeLog,v 1.11 2013/05/10 08:22:14 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/libzdb/ChangeLog,v 1.12 2013/05/16 15:12:49 lordvan Exp $ + +*libzdb-2.11.2 (16 May 2013) + + 16 May 2013; -libzdb-2.10.3.ebuild, + libzdb-2.10.5.ebuild, libzdb-2.11.1.ebuild, +libzdb-2.11.2.ebuild: + removed old unstable version, fixed repoman warnings (thanks to Johan + Bergström for pointing + this out) + version bump 10 May 2013; Patrick Lauer metadata.xml: Remove unused flag from metadata diff --git a/dev-db/libzdb/libzdb-2.10.3.ebuild b/dev-db/libzdb/libzdb-2.10.3.ebuild deleted file mode 100644 index ef341034d397..000000000000 --- a/dev-db/libzdb/libzdb-2.10.3.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/libzdb/libzdb-2.10.3.ebuild,v 1.4 2013/04/02 15:03:17 floppym Exp $ - -EAPI="4" - -inherit eutils toolchain-funcs autotools-utils - -DESCRIPTION="A thread safe high level multi-database connection pool library" -HOMEPAGE="http://www.tildeslash.com/libzdb/" -SRC_URI="http://www.tildeslash.com/${PN}/dist/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="debug doc mysql postgres +sqlite ssl static-libs" -REQUIRED_USE=" || ( postgres mysql sqlite )" - -RDEPEND="mysql? ( virtual/mysql ) - postgres? ( dev-db/postgresql-base ) - sqlite? ( >=dev-db/sqlite-3.7:3[unlock-notify(+)] ) - ssl? ( dev-libs/openssl )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-doc/doxygen )" - -src_prepare() { - sed -i -e "s|&& ./pool||g" test/Makefile.in || die - if ( use sqlite); then - epatch "$FILESDIR/sqlite_configure.patch" - fi - eautoreconf -} - -src_configure() { - ## TODO: check what --enable-optimized actually does - ## TODO: find someone with oracle db to add oci8 support - myconf="" - if [[ $(gcc-version) < 4.1 ]];then - myconf="${myconf} --disable-protected" - else - myconf="${myconf} --enable-protected" - fi - - if use sqlite; then - myconf+=" --with-sqlite=${EPREFIX}/usr/ --enable-sqliteunlock" - else - myconf="${myconf} --without-sqlite" - fi - - if use mysql; then - myconf="${myconf} --with-mysql=${EPREFIX}/usr/bin/mysql_config" - else - myconf="${myconf} --without-mysql" - fi - - if use postgres; then - myconf="${myconf} --with-postgresql=${EPREFIX}/usr/bin/pg_config" - else - myconf="${myconf} --without-postgresql" - fi - - econf \ - $(use_enable debug profiling) \ - $(use_enable static-libs static) \ - $(use_enable ssl openssl) \ - --without-oci \ - ${myconf} -} - -src_compile() { - default_src_compile - if use doc; then - emake doc - fi -} - -src_install() { - emake DESTDIR="${D}" install - - # the --disable-static flag only skips .a - use static-libs || rm -f "${D}"/usr/lib*/libzdb.la - - dodoc AUTHORS CHANGES README - if use doc;then - dohtml -r "${S}/doc/api-docs"/* - fi -} - -src_test() { - emake verify -} diff --git a/dev-db/libzdb/libzdb-2.10.5.ebuild b/dev-db/libzdb/libzdb-2.10.5.ebuild index 1f71ed4cfdad..984b604c0b07 100644 --- a/dev-db/libzdb/libzdb-2.10.5.ebuild +++ b/dev-db/libzdb/libzdb-2.10.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/libzdb/libzdb-2.10.5.ebuild,v 1.6 2013/04/02 15:03:17 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/libzdb/libzdb-2.10.5.ebuild,v 1.7 2013/05/16 15:12:49 lordvan Exp $ EAPI="4" @@ -41,7 +41,7 @@ src_configure() { fi if use sqlite; then - myconf+=" --with-sqlite=${EPREFIX}/usr/ --enable-sqliteunlock" + myconf="${myconf} --with-sqlite=${EPREFIX}/usr/ --enable-sqliteunlock" else myconf="${myconf} --without-sqlite" fi diff --git a/dev-db/libzdb/libzdb-2.11.1.ebuild b/dev-db/libzdb/libzdb-2.11.1.ebuild index dbfb168dd58b..679a9aca7dd9 100644 --- a/dev-db/libzdb/libzdb-2.11.1.ebuild +++ b/dev-db/libzdb/libzdb-2.11.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/libzdb/libzdb-2.11.1.ebuild,v 1.3 2013/04/02 15:03:17 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/libzdb/libzdb-2.11.1.ebuild,v 1.4 2013/05/16 15:12:49 lordvan Exp $ EAPI="4" @@ -41,7 +41,7 @@ src_configure() { fi if use sqlite; then - myconf+=" --with-sqlite=${EPREFIX}/usr/ --enable-sqliteunlock" + myconf="${myconf} --with-sqlite=${EPREFIX}/usr/ --enable-sqliteunlock" else myconf="${myconf} --without-sqlite" fi diff --git a/dev-db/libzdb/libzdb-2.11.2.ebuild b/dev-db/libzdb/libzdb-2.11.2.ebuild new file mode 100644 index 000000000000..a729032a4828 --- /dev/null +++ b/dev-db/libzdb/libzdb-2.11.2.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/libzdb/libzdb-2.11.2.ebuild,v 1.1 2013/05/16 15:12:49 lordvan Exp $ + +EAPI="4" + +inherit eutils toolchain-funcs + +DESCRIPTION="A thread safe high level multi-database connection pool library" +HOMEPAGE="http://www.tildeslash.com/libzdb/" +SRC_URI="http://www.tildeslash.com/${PN}/dist/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="debug doc mysql postgres +sqlite ssl static-libs" +REQUIRED_USE=" || ( postgres mysql sqlite )" + +RESTRICT=test + +RDEPEND="mysql? ( virtual/mysql ) + postgres? ( dev-db/postgresql-base ) + sqlite? ( >=dev-db/sqlite-3.7:3[unlock-notify(+)] ) + ssl? ( dev-libs/openssl )" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +src_prepare() { + sed -i -e "s|&& ./pool||g" test/Makefile.in || die +} + +src_configure() { + ## TODO: check what --enable-optimized actually does + ## TODO: find someone with oracle db to add oci8 support + myconf="" + if [[ $(gcc-version) < 4.1 ]];then + myconf="${myconf} --disable-protected" + else + myconf="${myconf} --enable-protected" + fi + + if use sqlite; then + myconf="${myconf} --with-sqlite=${EPREFIX}/usr/ --enable-sqliteunlock" + else + myconf="${myconf} --without-sqlite" + fi + + if use mysql; then + myconf="${myconf} --with-mysql=${EPREFIX}/usr/bin/mysql_config" + else + myconf="${myconf} --without-mysql" + fi + + if use postgres; then + myconf="${myconf} --with-postgresql=${EPREFIX}/usr/bin/pg_config" + else + myconf="${myconf} --without-postgresql" + fi + + econf \ + $(use_enable debug profiling) \ + $(use_enable static-libs static) \ + $(use_enable ssl openssl) \ + --without-oci \ + ${myconf} +} + +src_compile() { + default_src_compile + if use doc; then + emake doc + fi +} + +src_install() { + emake DESTDIR="${D}" install + + # the --disable-static flag only skips .a + use static-libs || rm -f "${D}"/usr/lib*/libzdb.la + + dodoc AUTHORS CHANGES README + if use doc;then + dohtml -r "${S}/doc/api-docs"/* + fi +} + +src_test() { + emake verify +} -- cgit v1.2.3-65-gdbad