diff options
author | 2013-04-14 11:55:07 +0000 | |
---|---|---|
committer | 2013-04-14 11:55:07 +0000 | |
commit | d44bebb973437111e03e73992d9ad13b53db40a0 (patch) | |
tree | 30edd83d3cc18c1f8c9384e64245142d031872ff /dev-libs | |
parent | Drop old revision (diff) | |
download | gentoo-2-d44bebb973437111e03e73992d9ad13b53db40a0.tar.gz gentoo-2-d44bebb973437111e03e73992d9ad13b53db40a0.tar.bz2 gentoo-2-d44bebb973437111e03e73992d9ad13b53db40a0.zip |
Drop old versions
(Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/bitset/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/bitset/bitset-2.8.1.ebuild | 37 | ||||
-rw-r--r-- | dev-libs/bitset/bitset-2.8.2.ebuild | 33 |
3 files changed, 5 insertions, 71 deletions
diff --git a/dev-libs/bitset/ChangeLog b/dev-libs/bitset/ChangeLog index 27773cb5b05a..321a7ef279cf 100644 --- a/dev-libs/bitset/ChangeLog +++ b/dev-libs/bitset/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/bitset # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/bitset/ChangeLog,v 1.4 2013/04/13 10:47:06 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/bitset/ChangeLog,v 1.5 2013/04/14 11:55:06 pinkbyte Exp $ + + 14 Apr 2013; Sergey Popov <pinkbyte@gentoo.org> -bitset-2.8.1.ebuild, + -bitset-2.8.2.ebuild: + Drop old versions 13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> bitset-2.8.3.ebuild: Stable for amd64, wrt bug #465674 diff --git a/dev-libs/bitset/bitset-2.8.1.ebuild b/dev-libs/bitset/bitset-2.8.1.ebuild deleted file mode 100644 index cda522f28676..000000000000 --- a/dev-libs/bitset/bitset-2.8.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/bitset/bitset-2.8.1.ebuild,v 1.1 2012/12/05 03:58:24 pinkbyte Exp $ - -EAPI="5" - -inherit eutils - -DESCRIPTION="A compressed bitset with supporting data structures and algorithms" -HOMEPAGE="http://github.com/chriso/bitset" -SRC_URI="mirror://github/chriso/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="jemalloc static-libs tcmalloc" -KEYWORDS="~amd64 ~x86" - -RDEPEND="tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="${RDEPEND}" - -REQUIRED_USE="tcmalloc? ( !jemalloc ) - jemalloc? ( !tcmalloc )" - -DOCS=( README.md ) - -src_configure() { - econf \ - $(use_with jemalloc) \ - $(use_with tcmalloc) \ - $(use_enable static-libs static) -} - -src_install() { - default - use static-libs || prune_libtool_files -} diff --git a/dev-libs/bitset/bitset-2.8.2.ebuild b/dev-libs/bitset/bitset-2.8.2.ebuild deleted file mode 100644 index 25ca1f97e1b3..000000000000 --- a/dev-libs/bitset/bitset-2.8.2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/bitset/bitset-2.8.2.ebuild,v 1.1 2013/02/14 14:27:31 pinkbyte Exp $ - -EAPI="5" - -AUTOTOOLS_AUTORECONF=1 -inherit autotools-utils - -DESCRIPTION="A compressed bitset with supporting data structures and algorithms" -HOMEPAGE="http://github.com/chriso/bitset" -SRC_URI="https://github.com/chriso/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="jemalloc static-libs tcmalloc" -KEYWORDS="~amd64 ~x86" - -RDEPEND="tcmalloc? ( dev-util/google-perftools ) - jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND="${RDEPEND}" - -REQUIRED_USE="?? ( jemalloc tcmalloc )" - -DOCS=( README.md ) - -src_configure() { - local myeconfargs=( - $(use_with jemalloc) \ - $(use_with tcmalloc) - ) - autotools-utils_src_configure -} |