diff options
author | Sebastian Pipping <sping@gentoo.org> | 2014-11-09 14:44:55 +0000 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2014-11-09 14:44:55 +0000 |
commit | 761083475119211f99583f96bfc6465efefb366f (patch) | |
tree | adb710c4ed0fa6c9194c2380ea12f56794e99010 /dev-util/gprof2dot | |
parent | Version bump thanks to LABBE Corentin (Montjoie) (diff) | |
download | gentoo-2-761083475119211f99583f96bfc6465efefb366f.tar.gz gentoo-2-761083475119211f99583f96bfc6465efefb366f.tar.bz2 gentoo-2-761083475119211f99583f96bfc6465efefb366f.zip |
dev-util/gprof2dot: Remove old version
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)
Diffstat (limited to 'dev-util/gprof2dot')
-rw-r--r-- | dev-util/gprof2dot/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/gprof2dot/gprof2dot-0_p20100216.ebuild | 49 |
2 files changed, 6 insertions, 51 deletions
diff --git a/dev-util/gprof2dot/ChangeLog b/dev-util/gprof2dot/ChangeLog index e63bbe0dffac..0cdb1c2cf180 100644 --- a/dev-util/gprof2dot/ChangeLog +++ b/dev-util/gprof2dot/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/gprof2dot -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.7 2013/09/05 18:40:36 mgorny Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.8 2014/11/09 14:44:55 sping Exp $ + + 09 Nov 2014; Sebastian Pipping <sping@gentoo.org> + -gprof2dot-0_p20100216.ebuild: + Remove old version 05 Sep 2013; Michał Górny <mgorny@gentoo.org> gprof2dot-0_p20130517.ebuild: Clean up PYTHON_COMPAT from old implementations. diff --git a/dev-util/gprof2dot/gprof2dot-0_p20100216.ebuild b/dev-util/gprof2dot/gprof2dot-0_p20100216.ebuild deleted file mode 100644 index 2f009ab8b3da..000000000000 --- a/dev-util/gprof2dot/gprof2dot-0_p20100216.ebuild +++ /dev/null @@ -1,49 +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/gprof2dot/gprof2dot-0_p20100216.ebuild,v 1.4 2012/03/15 20:16:55 sping Exp $ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" -PYTHON_DEPEND="*" -PYTHON_USE_WITH="xml" - -inherit eutils python - -DESCRIPTION="Converts profiling output to dot graphs" -HOMEPAGE="http://code.google.com/p/jrfonseca/wiki/Gprof2Dot" -SRC_URI="http://www.hartwork.org/public/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -src_prepare() { - epatch "${FILESDIR}"/${P}-python3.patch -} - -src_install() { - abi_specific_install() { - local code_dir="$(python_get_sitedir)"/${PN} - exeinto "${code_dir}" - doexe ${PN}.py || die "doexe failed" - - dodir /usr/bin - dosym "${code_dir}"/${PN}.py /usr/bin/${PN}-${PYTHON_ABI} \ - || die "dosym failed" - } - python_execute_function abi_specific_install - - python_generate_wrapper_scripts "${ED}usr/bin/${PN}" -} - -pkg_postinst() { - python_mod_optimize ${PN} -} - -pkg_postrm() { - python_mod_cleanup ${PN} -} |