diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-07-15 23:10:30 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-07-15 23:42:05 +0200 |
commit | 4be8c7f8153bbd6ab40304222e7a792e3722ef89 (patch) | |
tree | f04943943709374b9959778c3dd24424b21ca14b /dev-python | |
parent | dev-python/urwid: add missing die. (diff) | |
download | gentoo-4be8c7f8153bbd6ab40304222e7a792e3722ef89.tar.gz gentoo-4be8c7f8153bbd6ab40304222e7a792e3722ef89.tar.bz2 gentoo-4be8c7f8153bbd6ab40304222e7a792e3722ef89.zip |
dev-python/urwid: clean up old.
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/urwid/Manifest | 1 | ||||
-rw-r--r-- | dev-python/urwid/urwid-1.2.2.ebuild | 53 |
2 files changed, 0 insertions, 54 deletions
diff --git a/dev-python/urwid/Manifest b/dev-python/urwid/Manifest index 19ea10e34f9a..5fbdc15848cc 100644 --- a/dev-python/urwid/Manifest +++ b/dev-python/urwid/Manifest @@ -1,2 +1 @@ -DIST urwid-1.2.2.tar.gz 585025 SHA256 e122e2dee122314f5626945af4dbe15bf3de9f318c552a4c0b68c1c480852d92 SHA512 10d0271e52b28aff3350d3342cd9b1c8fab819f3619cce77286b2545b74dd967f0466e98dfbfef1189b3ab6b38392168367d75c768b0f5b8058666b0211706a5 WHIRLPOOL 69556a721d89f6a6b82664bf5eaa10a21c49d15f9b8e6e6be4ba31ce5e2317fd0ecebfa3d93b008f9bd93f10504161d93e1827d696a6c1baa09939ac628f027d DIST urwid-1.3.1.tar.gz 588549 SHA256 cfcec03e36de25a1073e2e35c2c7b0cc6969b85745715c3a025a31d9786896a1 SHA512 8b505d38f3a0c04bbf527b324dc36212f2580213dd55eca61c66705d3beaac4f074c39aaa0f4f71add1fe5f3fce4c4c6dc88dd1e981b04bac6d52195d7a3f0ed WHIRLPOOL ff908dfad8e893fd51510168433a6bd63fe1edc38dde65664994f5eb3343e8fe818c4c1b9d5c296d3f3fdc93e2df7a3809f661e52322e6e69e163484b0e38944 diff --git a/dev-python/urwid/urwid-1.2.2.ebuild b/dev-python/urwid/urwid-1.2.2.ebuild deleted file mode 100644 index 4671db6dad9f..000000000000 --- a/dev-python/urwid/urwid-1.2.2.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} ) -PYTHON_REQ_USE="ncurses" - -inherit distutils-r1 - -DESCRIPTION="Urwid is a curses-based user interface library for Python" -HOMEPAGE="http://urwid.org/ https://pypi.python.org/pypi/urwid/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc examples test" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/twisted-core )" - -PATCHES=( "${FILESDIR}"/${PN}-1.1.0-sphinx.patch ) - -python_compile_all() { - if use doc ; then - if [[ ${EPYTHON} == python3* ]] ; then - 2to3 -nw --no-diffs docs/conf.py || die - fi - cd docs - sphinx-build . _build/html || die - fi -} - -python_compile() { - if [[ ${EPYTHON} == python2* ]] ; then - local CFLAGS="${CFLAGS} -fno-strict-aliasing" - export CFLAGS - fi - - distutils-r1_python_compile -} - -python_test() { - esetup.py test -} - -python_install_all() { - use examples && local EXAMPLES=( examples/. ) - use doc && local HTML_DOCS=( docs/_build/html/. ) - - distutils-r1_python_install_all -} |