summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2013-08-07 12:29:07 +0000
committerLars Wendler <polynomial-c@gentoo.org>2013-08-07 12:29:07 +0000
commit2bdc456e65450ecc4f89877e25066ccfc6ff1c20 (patch)
treedc67e78ada7c682cf732c7d71811b69021ee9ece /sys-libs
parentDrop systemd USE flag, use readme.gentoo. (diff)
downloadgentoo-2-2bdc456e65450ecc4f89877e25066ccfc6ff1c20.tar.gz
gentoo-2-2bdc456e65450ecc4f89877e25066ccfc6ff1c20.tar.bz2
gentoo-2-2bdc456e65450ecc4f89877e25066ccfc6ff1c20.zip
Removed old versions. Dropped KEYWORDS on remaining older versions
(Portage version: 2.2.0_alpha194/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/tdb/ChangeLog7
-rw-r--r--sys-libs/tdb/tdb-1.2.1-r1.ebuild92
-rw-r--r--sys-libs/tdb/tdb-1.2.1.ebuild82
-rw-r--r--sys-libs/tdb/tdb-1.2.10.ebuild6
-rw-r--r--sys-libs/tdb/tdb-1.2.12.ebuild42
-rw-r--r--sys-libs/tdb/tdb-1.2.7-r1.ebuild6
-rw-r--r--sys-libs/tdb/tdb-1.2.9.ebuild42
7 files changed, 12 insertions, 265 deletions
diff --git a/sys-libs/tdb/ChangeLog b/sys-libs/tdb/ChangeLog
index dc43b2e529bc..9a8167ab7ab2 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.55 2013/06/30 16:33:13 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.56 2013/08/07 12:29:07 polynomial-c Exp $
+
+ 07 Aug 2013; Lars Wendler <polynomial-c@gentoo.org> -tdb-1.2.1.ebuild,
+ -tdb-1.2.1-r1.ebuild, tdb-1.2.7-r1.ebuild, -tdb-1.2.9.ebuild,
+ tdb-1.2.10.ebuild, -tdb-1.2.12.ebuild:
+ Removed old versions. Dropped KEYWORDS on remaining older versions.
*tdb-1.2.12-r1 (30 Jun 2013)
diff --git a/sys-libs/tdb/tdb-1.2.1-r1.ebuild b/sys-libs/tdb/tdb-1.2.1-r1.ebuild
deleted file mode 100644
index 4c81f1aa6c89..000000000000
--- a/sys-libs/tdb/tdb-1.2.1-r1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.1-r1.ebuild,v 1.5 2011/04/01 15:04:52 vostorga Exp $
-
-EAPI="2"
-PYTHON_DEPEND="python? 2:2.6"
-
-inherit autotools python
-
-DESCRIPTION="Samba tdb"
-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"
-IUSE="python static-libs tools tdbtest"
-
-RDEPEND=""
-DEPEND="!<net-fs/samba-3.3
- app-text/docbook-xsl-stylesheets
- dev-libs/libxslt"
-
-pkg_setup() {
- if use python; then
- # Make sure the build system will use the right python bug #360033
- python_set_active_version 2
- python_pkg_setup
- fi
-}
-
-src_prepare() {
- eautoconf -Ilibreplace
- sed -i \
- -e 's:$(SHLD_FLAGS) :$(SHLD_FLAGS) $(LDFLAGS) :' \
- {Makefile.in,tdb.mk} || die "sed failed"
-
- # xsltproc will display a warning but we can assume the xml files are valid
- sed -i \
- -e 's|$(XSLTPROC) -o|$(XSLTPROC) --nonet -o|' \
- tdb.mk || die "sed failed"
-}
-
-src_configure() {
- local myconf=()
-
- if use python; then
- myconf+=(
- PYTHON_CONFIG="${EPREFIX}/usr/bin/python-config-$(python_get_version)"
- PYTHON="$(PYTHON -a)"
- )
- fi
-
- econf \
- --sysconfdir=/etc/samba \
- --localstatedir=/var \
- $(use_enable python) \
- "${myconf[@]}"
-}
-
-src_compile() {
- # TODO:
- # - don't build static-libs in case of USE=-static-libs
-
- # we create the directories first to avoid workaround parallel build problem
- emake dirs || die "emake dirs failed"
-
- emake shared-build || die "emake shared-build failed"
-
- if use tdbtest ; then
- emake bin/tdbtest || die "emake tdbtest failed"
- fi
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "emake install failed"
-
- # installs a necessary symlink
- dolib.so sharedbuild/lib/libtdb.so
-
- dodoc docs/README
-
- use static-libs || rm -f "${D}"/usr/lib*/*.a
- use tools || rm -rf "${D}/usr/bin" "${D}/usr/share/man"
- use tdbtest && dobin bin/tdbtest
- use python && python_need_rebuild
-}
-
-src_test() {
- # the default src_test runs 'make test' and 'make check', letting
- # the tests fail occasionally (reason: unknown)
- emake check || die "emake check failed"
-}
diff --git a/sys-libs/tdb/tdb-1.2.1.ebuild b/sys-libs/tdb/tdb-1.2.1.ebuild
deleted file mode 100644
index 29d8f3e6250c..000000000000
--- a/sys-libs/tdb/tdb-1.2.1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.1.ebuild,v 1.10 2011/04/01 20:33:03 arfrever Exp $
-
-EAPI="2"
-PYTHON_DEPEND="python? 2:2.6"
-inherit autotools python
-
-DESCRIPTION="Samba tdb"
-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 ppc ppc64 s390 sh sparc x86"
-IUSE="python static-libs tools tdbtest"
-
-RDEPEND="!!<sys-libs/tdb-1.2.1"
-DEPEND="!<net-fs/samba-libs-3.4
- !<net-fs/samba-3.3
- app-text/docbook-xsl-stylesheets
- dev-libs/libxslt"
-
-pkg_setup() {
- if use python; then
- # Make sure the build system will use the right python bug #360033
- python_set_active_version 2
- python_pkg_setup
- fi
-}
-
-src_prepare() {
- eautoconf -Ilibreplace
- sed -i \
- -e 's:$(SHLD_FLAGS) :$(SHLD_FLAGS) $(LDFLAGS) :' \
- Makefile.in || die "sed failed"
-
- # xsltproc will display a warning but we can assume the xml files are valid
- sed -i \
- -e 's|$(XSLTPROC) -o|$(XSLTPROC) --nonet -o|' \
- tdb.mk || die "sed failed"
-}
-
-src_configure() {
- econf \
- --sysconfdir=/etc/samba \
- --localstatedir=/var \
- $(use_enable python)
-}
-
-src_compile() {
- # TODO:
- # - don't build static-libs in case of USE=-static-libs
-
- # we create the directories first to avoid workaround parallel build problem
- emake dirs || die "emake dirs failed"
-
- emake shared-build || die "emake shared-build failed"
-
- if use tdbtest ; then
- emake bin/tdbtest || die "emake tdbtest failed"
- fi
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "emake install failed"
-
- # installs a necessary symlink
- dolib.so sharedbuild/lib/libtdb.so
-
- dodoc docs/README
-
- use static-libs || rm -f "${D}"/usr/lib*/*.a
- use tools || rm -rf "${D}/usr/bin"
- use tdbtest && dobin bin/tdbtest
- use python && python_need_rebuild
-}
-
-src_test() {
- # the default src_test runs 'make test' and 'make check', letting
- # the tests fail occasionally (reason: unknown)
- emake check || die "emake check failed"
-}
diff --git a/sys-libs/tdb/tdb-1.2.10.ebuild b/sys-libs/tdb/tdb-1.2.10.ebuild
index c90d5d435567..ef996a48db13 100644
--- a/sys-libs/tdb/tdb-1.2.10.ebuild
+++ b/sys-libs/tdb/tdb-1.2.10.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.10.ebuild,v 1.7 2012/11/29 15:03:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.10.ebuild,v 1.8 2013/08/07 12:29:07 polynomial-c Exp $
EAPI=3
PYTHON_DEPEND="python? 2"
@@ -14,7 +14,7 @@ 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"
+KEYWORDS="hppa ppc ppc64"
IUSE="python"
RDEPEND=""
diff --git a/sys-libs/tdb/tdb-1.2.12.ebuild b/sys-libs/tdb/tdb-1.2.12.ebuild
deleted file mode 100644
index 0439225ef2ec..000000000000
--- a/sys-libs/tdb/tdb-1.2.12.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.12.ebuild,v 1.1 2013/06/13 03:07:04 patrick Exp $
-
-EAPI=3
-PYTHON_DEPEND="python? 2"
-RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
-
-inherit waf-utils python
-
-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"
-
-RDEPEND=""
-DEPEND="|| ( dev-lang/python:2.7 dev-lang/python:2.6 )
- app-text/docbook-xml-dtd:4.2"
-
-WAF_BINARY="${S}/buildtools/bin/waf"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-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 || die "emake check failed"
-}
diff --git a/sys-libs/tdb/tdb-1.2.7-r1.ebuild b/sys-libs/tdb/tdb-1.2.7-r1.ebuild
index c8c5d383de9f..d654e14c8e2d 100644
--- a/sys-libs/tdb/tdb-1.2.7-r1.ebuild
+++ b/sys-libs/tdb/tdb-1.2.7-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.7-r1.ebuild,v 1.9 2011/07/11 00:16:00 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.7-r1.ebuild,v 1.10 2013/08/07 12:29:07 polynomial-c Exp $
EAPI="2"
PYTHON_DEPEND="python? 2"
@@ -13,7 +13,7 @@ SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz
mirror://gentoo/${P}-patches.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
+KEYWORDS="alpha arm ia64 s390 sh sparc"
IUSE="python static-libs tools tdbtest"
RDEPEND=""
diff --git a/sys-libs/tdb/tdb-1.2.9.ebuild b/sys-libs/tdb/tdb-1.2.9.ebuild
deleted file mode 100644
index de6ebcf39104..000000000000
--- a/sys-libs/tdb/tdb-1.2.9.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.2.9.ebuild,v 1.7 2012/07/06 01:58:58 jdhore Exp $
-
-EAPI=3
-PYTHON_DEPEND="python? 2"
-RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
-
-inherit waf-utils python
-
-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 ~x86-fbsd"
-IUSE="python"
-
-RDEPEND=""
-DEPEND="|| ( dev-lang/python:2.7 dev-lang/python:2.6 )
- app-text/docbook-xml-dtd:4.2"
-
-WAF_BINARY="${S}/buildtools/bin/waf"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-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 || die "emake check failed"
-}