diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-03-05 13:32:44 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-03-05 13:32:44 +0000 |
commit | 1468afa4a51ce1e86c63aaddc8f55168ed8fb87a (patch) | |
tree | 9edad384eccce93663eb6e4e78628c4e1f753268 /dev-python/ply | |
parent | Remove old. (diff) | |
download | gentoo-2-1468afa4a51ce1e86c63aaddc8f55168ed8fb87a.tar.gz gentoo-2-1468afa4a51ce1e86c63aaddc8f55168ed8fb87a.tar.bz2 gentoo-2-1468afa4a51ce1e86c63aaddc8f55168ed8fb87a.zip |
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python/ply')
-rw-r--r-- | dev-python/ply/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/ply/ply-3.4.ebuild | 56 |
2 files changed, 4 insertions, 57 deletions
diff --git a/dev-python/ply/ChangeLog b/dev-python/ply/ChangeLog index 1118f6d7c27d..0c5713814f19 100644 --- a/dev-python/ply/ChangeLog +++ b/dev-python/ply/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/ply # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ChangeLog,v 1.42 2015/03/03 07:13:07 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ChangeLog,v 1.43 2015/03/05 13:32:44 mrueg Exp $ + + 05 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -ply-3.4.ebuild: + Remove old. 02 Mar 2015; Yixun Lan <dlan@gentoo.org> ply-3.4-r1.ebuild: add arm64 support, tested on A53 board diff --git a/dev-python/ply/ply-3.4.ebuild b/dev-python/ply/ply-3.4.ebuild deleted file mode 100644 index ae9b8beae13a..000000000000 --- a/dev-python/ply/ply-3.4.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ply-3.4.ebuild,v 1.10 2013/05/23 08:20:45 patrick Exp $ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils - -DESCRIPTION="Python Lex-Yacc library" -HOMEPAGE="http://www.dabeaz.com/ply/ http://pypi.python.org/pypi/ply" -SRC_URI="http://www.dabeaz.com/ply/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ~ia64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="examples" - -DEPEND="dev-python/setuptools" -RDEPEND="" - -DOCS="ANNOUNCE CHANGES README TODO" - -src_test() { - python_enable_pyc - - cd test - - testing() { - local exit_status="0" test - - for test in testlex.py testyacc.py; do - einfo "Running ${test}..." - if ! "$(PYTHON)" ${test}; then - ewarn "${test} failed with $(python_get_implementation) $(python_get_version)" - exit_status="1" - fi - done - - return "${exit_status}" - } - python_execute_function testing - - python_disable_pyc -} - -src_install() { - distutils_src_install - - dohtml doc/* || die "dohtml failed" - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r example/* || die "doins failed" - fi -} |