summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-02-03 18:44:25 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-02-03 18:44:25 +0000
commitb4d51dff3018721807c927752e162600ba210a8e (patch)
treec3a5d5109c68dbc28022bee923fc697d9d5faa72 /dev-python/setproctitle
parentVersion bump. (diff)
downloadgentoo-2-b4d51dff3018721807c927752e162600ba210a8e.tar.gz
gentoo-2-b4d51dff3018721807c927752e162600ba210a8e.tar.bz2
gentoo-2-b4d51dff3018721807c927752e162600ba210a8e.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/setproctitle')
-rw-r--r--dev-python/setproctitle/setproctitle-1.1.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-python/setproctitle/setproctitle-1.1.ebuild b/dev-python/setproctitle/setproctitle-1.1.ebuild
deleted file mode 100644
index c68f0459174f..000000000000
--- a/dev-python/setproctitle/setproctitle-1.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/setproctitle/setproctitle-1.1.ebuild,v 1.4 2010/12/26 15:44:19 arfrever Exp $
-
-EAPI="3"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="*-jython"
-DISTUTILS_SRC_TEST="nosetests"
-
-inherit distutils
-
-DESCRIPTION="Allow customization of the process title."
-HOMEPAGE="http://code.google.com/p/py-setproctitle/ http://pypi.python.org/pypi/setproctitle"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1"
-DOCS="HISTORY README"
-
-src_prepare() {
- python_copy_sources
-
- conversion() {
- [[ "${PYTHON_ABI}" == 2.* ]] && return
- 2to3-${PYTHON_ABI} -w --no-diffs tests > /dev/null
- }
- python_execute_function \
- --action-message 'Applying patches for $(python_get_implementation) $(python_get_version)' \
- --failure-message 'Applying patches for $(python_get_implementation) $(python_get_version) failed' \
- -s conversion
-}