diff options
author | 2012-12-24 20:45:35 +0000 | |
---|---|---|
committer | 2012-12-24 20:45:35 +0000 | |
commit | d61f5aa9cac97d60a9c9568b9d698e5fafac8654 (patch) | |
tree | 784188b465005dcffb62347b96cf23d6ab43cf56 /dev-libs/btparser | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-d61f5aa9cac97d60a9c9568b9d698e5fafac8654.tar.gz gentoo-2-d61f5aa9cac97d60a9c9568b9d698e5fafac8654.tar.bz2 gentoo-2-d61f5aa9cac97d60a9c9568b9d698e5fafac8654.zip |
Version bump, drop old
(Portage version: 2.1.11.37/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-libs/btparser')
-rw-r--r-- | dev-libs/btparser/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/btparser/btparser-0.16.ebuild | 55 | ||||
-rw-r--r-- | dev-libs/btparser/btparser-0.24.ebuild (renamed from dev-libs/btparser/btparser-0.18.ebuild) | 29 |
3 files changed, 13 insertions, 79 deletions
diff --git a/dev-libs/btparser/ChangeLog b/dev-libs/btparser/ChangeLog index da58b47ba0a9..2d9ed2ab14e2 100644 --- a/dev-libs/btparser/ChangeLog +++ b/dev-libs/btparser/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/btparser # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/btparser/ChangeLog,v 1.11 2012/10/04 14:47:35 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/btparser/ChangeLog,v 1.12 2012/12/24 20:45:35 pacho Exp $ + +*btparser-0.24 (24 Dec 2012) + + 24 Dec 2012; Pacho Ramos <pacho@gentoo.org> +btparser-0.24.ebuild, + -btparser-0.16.ebuild, -btparser-0.18.ebuild: + Version bump, drop old 04 Oct 2012; Agostino Sarubbo <ago@gentoo.org> btparser-0.17.ebuild: Stable for amd64, wrt bug #427544 diff --git a/dev-libs/btparser/btparser-0.16.ebuild b/dev-libs/btparser/btparser-0.16.ebuild deleted file mode 100644 index 4edc90cd80e0..000000000000 --- a/dev-libs/btparser/btparser-0.16.ebuild +++ /dev/null @@ -1,55 +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/btparser/btparser-0.16.ebuild,v 1.3 2012/03/15 18:09:33 phajdan.jr Exp $ - -EAPI="4" - -PYTHON_DEPEND="2:2.6" - -inherit python - -DESCRIPTION="Parser and analyzer for backtraces produced by gdb" -HOMEPAGE="https://fedorahosted.org/btparser/" -SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="static-libs" - -RDEPEND="" -DEPEND="${RDEPEND} - app-arch/xz-utils" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - python_clean_py-compile_files -} - -src_configure() { - # Configure checks for python.pc; our python-2.7 installs python-2.7.pc, - # while python-2.6 does not install any pkgconfig file. - export PYTHON_CFLAGS=$(python-config --includes) - export PYTHON_LIBS=$(python-config --libs) - - econf \ - $(use_enable static-libs static) \ - --disable-maintainer-mode -} - -src_install() { - default - find "${D}" -name '*.la' -exec rm -f {} + -} - -pkg_postinst() { - python_mod_optimize btparser -} - -pkg_postrm() { - python_mod_cleanup btparser -} diff --git a/dev-libs/btparser/btparser-0.18.ebuild b/dev-libs/btparser/btparser-0.24.ebuild index 90653841dd36..77552eac0131 100644 --- a/dev-libs/btparser/btparser-0.18.ebuild +++ b/dev-libs/btparser/btparser-0.24.ebuild @@ -1,18 +1,18 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/btparser/btparser-0.18.ebuild,v 1.1 2012/09/15 11:34:02 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/btparser/btparser-0.24.ebuild,v 1.1 2012/12/24 20:45:35 pacho Exp $ -EAPI="4" -PYTHON_DEPEND="2:2.6" +EAPI="5" +PYTHON_COMPAT=( python{2_6,2_7} ) -inherit python +inherit eutils python-single-r1 DESCRIPTION="Parser and analyzer for backtraces produced by gdb" HOMEPAGE="https://fedorahosted.org/btparser/" SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.xz" LICENSE="GPL-2" -SLOT="0" +SLOT="0/2" KEYWORDS="~amd64 ~x86" IUSE="static-libs" @@ -20,15 +20,6 @@ RDEPEND=">=dev-libs/glib-2.21:2" DEPEND="${RDEPEND} app-arch/xz-utils" -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - python_clean_py-compile_files -} - src_configure() { # Configure checks for python.pc; our python-2.7 installs python-2.7.pc, # while python-2.6 does not install any pkgconfig file. @@ -42,13 +33,5 @@ src_configure() { src_install() { default - find "${D}" -name '*.la' -exec rm -f {} + -} - -pkg_postinst() { - python_mod_optimize btparser -} - -pkg_postrm() { - python_mod_cleanup btparser + prune_libtool_files --modules } |