diff options
author | 2012-12-31 11:12:46 +0000 | |
---|---|---|
committer | 2012-12-31 11:12:46 +0000 | |
commit | 9598d2f07c9487e3193d273824ecf36088b42b96 (patch) | |
tree | dab11c758507938c8b70449c4e32225d90260877 /dev-python/setproctitle | |
parent | Remove old. This drops ~x64-freebsd, ~x86-freebsd, and ~x86-solaris keywords ... (diff) | |
download | gentoo-2-9598d2f07c9487e3193d273824ecf36088b42b96.tar.gz gentoo-2-9598d2f07c9487e3193d273824ecf36088b42b96.tar.bz2 gentoo-2-9598d2f07c9487e3193d273824ecf36088b42b96.zip |
Remove old version of setproctitle.
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 6B065BFB)
Diffstat (limited to 'dev-python/setproctitle')
-rw-r--r-- | dev-python/setproctitle/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/setproctitle/setproctitle-1.1.2.ebuild | 52 |
2 files changed, 4 insertions, 53 deletions
diff --git a/dev-python/setproctitle/ChangeLog b/dev-python/setproctitle/ChangeLog index 5a7d3652b537..473bce0bc898 100644 --- a/dev-python/setproctitle/ChangeLog +++ b/dev-python/setproctitle/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/setproctitle # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/setproctitle/ChangeLog,v 1.17 2012/12/12 18:07:17 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/setproctitle/ChangeLog,v 1.18 2012/12/31 11:12:46 djc Exp $ + + 31 Dec 2012; Dirkjan Ochtman <djc@gentoo.org> -setproctitle-1.1.2.ebuild: + Remove old version. 12 Dec 2012; Agostino Sarubbo <ago@gentoo.org> setproctitle-1.1.6.ebuild: Add ~ppc, wrt bug #413125 diff --git a/dev-python/setproctitle/setproctitle-1.1.2.ebuild b/dev-python/setproctitle/setproctitle-1.1.2.ebuild deleted file mode 100644 index 2d3933c602cd..000000000000 --- a/dev-python/setproctitle/setproctitle-1.1.2.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-python/setproctitle/setproctitle-1.1.2.ebuild,v 1.4 2012/04/22 17:16:43 armin76 Exp $ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="*-jython" -DISTUTILS_SRC_TEST="nosetests" - -inherit distutils toolchain-funcs - -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 ~arm ~sparc 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 -} - -distutils_src_test_pre_hook() { - ln -fs pyrun-${PYTHON_ABI} tests/pyrun -} - -src_test() { - build_pyrun() { - echo $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -I$(python_get_includedir) -o tests/pyrun-${PYTHON_ABI} tests/pyrun.c $(python_get_library -l) - $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -I$(python_get_includedir) -o tests/pyrun-${PYTHON_ABI} tests/pyrun.c $(python_get_library -l) - } - python_execute_function -q -s build_pyrun - - distutils_src_test -} |