summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-12-02 19:12:11 +0100
committerManuel Rüger <mrueg@gentoo.org>2014-12-02 19:12:11 +0100
commite73dec4dfadef3c9845ebb3286ce5b1510aa90bc (patch)
tree5c0711c0dcfa6d93e093d33ab8ee224ad70bf84a /dev-python
parentapp-shells/zsh-completions: Available in tree. (diff)
downloadsunrise-reviewed-e73dec4dfadef3c9845ebb3286ce5b1510aa90bc.tar.gz
sunrise-reviewed-e73dec4dfadef3c9845ebb3286ce5b1510aa90bc.tar.bz2
sunrise-reviewed-e73dec4dfadef3c9845ebb3286ce5b1510aa90bc.zip
dev-python/pycallgraph: Available in tree.
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pycallgraph/ChangeLog20
-rw-r--r--dev-python/pycallgraph/Manifest4
-rw-r--r--dev-python/pycallgraph/metadata.xml5
-rw-r--r--dev-python/pycallgraph/pycallgraph-0.5.1.ebuild30
4 files changed, 0 insertions, 59 deletions
diff --git a/dev-python/pycallgraph/ChangeLog b/dev-python/pycallgraph/ChangeLog
deleted file mode 100644
index 02193ab97..000000000
--- a/dev-python/pycallgraph/ChangeLog
+++ /dev/null
@@ -1,20 +0,0 @@
-# ChangeLog for dev-python/pycallgraph
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
- 20 Jun 2011; Johan Bergström (jbergstroem) <bugs@bergstroem.nu>
- pycallgraph-0.5.1.ebuild:
- Add EAPI
-
- 19 Nov 2009; Johan Bergström (jbergstroem) <bugs@bergstroem.nu>
- -pycallgraph-0.3.1.ebuild, +pycallgraph-0.5.1.ebuild:
- Version bump and minor fixes. Thanks to Tommy[D]
-
- 19 Jun 2007; Ali Polatel (hawking) <polatel@gmail.com>
- -pycallgraph-0.3.0.ebuild, +pycallgraph-0.3.1.ebuild:
- version bump
-
- 15 Mar 2007; Ali Polatel (hawking) <polatel@nerdshack.com>
- +pycallgraph-0.3.0.ebuild, +metadata.xml:
- New ebuild for bug 170806, thanks to Trevor Hardcastle
-
diff --git a/dev-python/pycallgraph/Manifest b/dev-python/pycallgraph/Manifest
deleted file mode 100644
index 3d1007f10..000000000
--- a/dev-python/pycallgraph/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST pycallgraph-0.5.1.tar.gz 14575 RMD160 bb46a88afa374db4552e6311f897fa50245af314 SHA1 898ead71fa2341af9c7f98ef150807ccf2dcdd8c SHA256 c84b3294b7c33dcd8148d9245e61fce7fca811bed2d357f91e98804785ffbb83
-EBUILD pycallgraph-0.5.1.ebuild 633 RMD160 72ddfa9f0b99395a52e346538ffb2f20826730df SHA1 7fe137263ef0016ac3b80efb77cd5a43f88d7edf SHA256 bbff177a7e6e90a1feaf3d684b38826e85c4db1ef9042fc4452fb5410c659993
-MISC ChangeLog 697 RMD160 5382f1c2c4d546332324178d9253166bd51c580d SHA1 c783df3acfa45ecad4ea3976c148c20fa15c972f SHA256 16ef4eafbe1af5aa6929651c588d42f6f68ccd48289ff7901e62efcd334504ff
-MISC metadata.xml 208 RMD160 c18611400760e42bdd001905be0a63c2e963bcea SHA1 595816105cac477cb85792a182e15888029118a1 SHA256 c4841c87f0c2b9b5e679a27dc72180be8d508fb3f5df0fbab2ec2c805c0a6d82
diff --git a/dev-python/pycallgraph/metadata.xml b/dev-python/pycallgraph/metadata.xml
deleted file mode 100644
index 31dc017fa..000000000
--- a/dev-python/pycallgraph/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer><email>maintainer-wanted@gentoo.org</email></maintainer>
-</pkgmetadata>
diff --git a/dev-python/pycallgraph/pycallgraph-0.5.1.ebuild b/dev-python/pycallgraph/pycallgraph-0.5.1.ebuild
deleted file mode 100644
index 40c35c46d..000000000
--- a/dev-python/pycallgraph/pycallgraph-0.5.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="3"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-DESCRIPTION="Python library that creates call graphs for Python programs"
-HOMEPAGE="http://pycallgraph.slowchop.com/"
-SRC_URI="http://${PN}.slowchop.com/files/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-
-RDEPEND="media-gfx/graphviz"
-
-RESTRICT_PYTHON_ABIS="3*"
-
-src_install() {
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins -r examples/* || die "Install failed"
- fi
-}