diff options
author | 2014-10-13 14:22:15 +0000 | |
---|---|---|
committer | 2014-10-13 14:22:15 +0000 | |
commit | ac49d5e0f677d2da34f880f489703d9f985eb0b4 (patch) | |
tree | 4db58e1f9cfa586c92cc2d0c399e0e66c55cb135 /dev-util | |
parent | Version bump (diff) | |
download | gentoo-2-ac49d5e0f677d2da34f880f489703d9f985eb0b4.tar.gz gentoo-2-ac49d5e0f677d2da34f880f489703d9f985eb0b4.tar.bz2 gentoo-2-ac49d5e0f677d2da34f880f489703d9f985eb0b4.zip |
Remove older unstable version
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/comparator/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/comparator/comparator-2.5.ebuild | 6 | ||||
-rw-r--r-- | dev-util/comparator/comparator-2.8.ebuild | 52 |
3 files changed, 9 insertions, 57 deletions
diff --git a/dev-util/comparator/ChangeLog b/dev-util/comparator/ChangeLog index 89f1754b1959..17dc553e851a 100644 --- a/dev-util/comparator/ChangeLog +++ b/dev-util/comparator/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/comparator -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/comparator/ChangeLog,v 1.28 2013/02/12 19:34:27 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/comparator/ChangeLog,v 1.29 2014/10/13 14:22:15 blueness Exp $ + + 13 Oct 2014; Anthony G. Basile <blueness@gentoo.org> -comparator-2.8.ebuild, + comparator-2.5.ebuild: + Remove older unstable version 12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> comparator-2.9.ebuild: Stable for arm, wrt bug #456628 diff --git a/dev-util/comparator/comparator-2.5.ebuild b/dev-util/comparator/comparator-2.5.ebuild index 8a2421ce07d1..942d1c38cf39 100644 --- a/dev-util/comparator/comparator-2.5.ebuild +++ b/dev-util/comparator/comparator-2.5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/comparator/comparator-2.5.ebuild,v 1.8 2012/12/02 21:26:09 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/comparator/comparator-2.5.ebuild,v 1.9 2014/10/13 14:22:15 blueness Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -15,7 +15,7 @@ SRC_URI="http://www.catb.org/~esr/comparator/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~mips ~ppc sparc x86" +KEYWORDS="sparc" IUSE="" RDEPEND="" diff --git a/dev-util/comparator/comparator-2.8.ebuild b/dev-util/comparator/comparator-2.8.ebuild deleted file mode 100644 index 79ffa5807914..000000000000 --- a/dev-util/comparator/comparator-2.8.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/comparator/comparator-2.8.ebuild,v 1.3 2012/12/02 21:26:09 blueness Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils toolchain-funcs - -DESCRIPTION="ESR's utility for making fast comparisons among large source trees" -HOMEPAGE="http://www.catb.org/~esr/comparator/" -SRC_URI="http://www.catb.org/~esr/comparator/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -RDEPEND="" -DEPEND="=app-text/docbook-xml-dtd-4.1.2* - app-text/xmlto" - -PYTHON_MODNAME="comparator.py" - -src_prepare() { - sed \ - -e '/install -m 755 -o 0 -g 0 filterator/d' \ - -e '/python setup.py install/d' \ - -i Makefile || die "sed failed" -} - -src_compile() { - distutils_src_compile - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die "emake failed" - emake comparator.html scf-standard.html || die "emake html failed" -} - -src_install() { - distutils_src_install - emake ROOT="${D}" install || die "emake install failed" - - install_filterator() { - newbin filterator filterator-${PYTHON_ABI} || return 1 - python_convert_shebangs ${PYTHON_ABI} "${ED}usr/bin/filterator-${PYTHON_ABI}" - } - python_execute_function -q install_filterator - python_generate_wrapper_scripts "${ED}usr/bin/filterator" - - dohtml *.html || die "dohtml failed" -} |