diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2014-03-23 20:00:38 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2014-03-23 20:00:38 +0000 |
commit | d0b069f8ca1550d48039d891f4aaf59b2796d53b (patch) | |
tree | 69aa7bc06132c0cd8576322bc5aea63a538aad1e /sys-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-d0b069f8ca1550d48039d891f4aaf59b2796d53b.tar.gz gentoo-2-d0b069f8ca1550d48039d891f4aaf59b2796d53b.tar.bz2 gentoo-2-d0b069f8ca1550d48039d891f4aaf59b2796d53b.zip |
Version bump
(Portage version: 2.2.9-r1/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/tdb/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/tdb/tdb-1.2.13.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/sys-libs/tdb/ChangeLog b/sys-libs/tdb/ChangeLog index bd8d4c5085eb..e9801f20d3d1 100644 --- a/sys-libs/tdb/ChangeLog +++ b/sys-libs/tdb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/tdb -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.60 2013/09/06 16:04:59 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.61 2014/03/23 20:00:38 polynomial-c Exp $ + +*tdb-1.2.13 (23 Mar 2014) + + 23 Mar 2014; Lars Wendler <polynomial-c@gentoo.org> +tdb-1.2.13.ebuild: + Version bump. 06 Sep 2013; Agostino Sarubbo <ago@gentoo.org> tdb-1.2.11.ebuild: Stable for sparc, wrt bug #478260 diff --git a/sys-libs/tdb/tdb-1.2.13.ebuild b/sys-libs/tdb/tdb-1.2.13.ebuild new file mode 100644 index 000000000000..4b8a7e5b17b5 --- /dev/null +++ b/sys-libs/tdb/tdb-1.2.13.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.13.ebuild,v 1.1 2014/03/23 20:00:38 polynomial-c Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit waf-utils python-single-r1 + +DESCRIPTION="A simple database API" +HOMEPAGE="http://tdb.samba.org/" +SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" +IUSE="python" + +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND="python? ( ${PYTHON_DEPS} )" +DEPEND=" + ${RDEPEND} + app-text/docbook-xml-dtd:4.2" + +WAF_BINARY="${S}/buildtools/bin/waf" + +src_configure() { + local extra_opts="" + use python || extra_opts+=" --disable-python" + waf-utils_src_configure \ + ${extra_opts} +} + +src_test() { + # the default src_test runs 'make test' and 'make check', letting + # the tests fail occasionally (reason: unknown) + emake check +} |