summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmadeusz Żołnowski <aidecoe@gentoo.org>2017-05-29 12:48:38 +0100
committerAmadeusz Żołnowski <aidecoe@gentoo.org>2017-05-29 12:49:14 +0100
commit804f657dba057b3f212a95fdb29cafb8ff37b305 (patch)
tree1ec3b18f596ef1dfbd45cd595c8d3bef6f5149b5 /dev-python/urwidtrees/urwidtrees-1.0.1.1.ebuild
parentmail-client/alot: Remove oldest version (diff)
downloadgentoo-804f657dba057b3f212a95fdb29cafb8ff37b305.tar.gz
gentoo-804f657dba057b3f212a95fdb29cafb8ff37b305.tar.bz2
gentoo-804f657dba057b3f212a95fdb29cafb8ff37b305.zip
dev-python/urwidtrees: Remove older version
Version 1.0.1.1 is not available upstream anymore. Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-python/urwidtrees/urwidtrees-1.0.1.1.ebuild')
-rw-r--r--dev-python/urwidtrees/urwidtrees-1.0.1.1.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/urwidtrees/urwidtrees-1.0.1.1.ebuild b/dev-python/urwidtrees/urwidtrees-1.0.1.1.ebuild
deleted file mode 100644
index 104b4223002a..000000000000
--- a/dev-python/urwidtrees/urwidtrees-1.0.1.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Tree widgets for urwid"
-HOMEPAGE="https://github.com/pazz/urwidtrees"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-RDEPEND=">=dev-python/urwid-1.1.0[${PYTHON_USEDEP}]"
-
-src_prepare() {
- find "${S}" -name '*.py' -print0 | xargs -0 -- sed \
- -e '1i# -*- coding: utf-8 -*-' -i || die
-
- distutils-r1_src_prepare
-
- local md
- for md in *.md; do
- mv "${md}" "${md%.md}"
- done
-}
-
-src_compile() {
- distutils-r1_src_compile
-
- if use doc; then
- pushd docs || die
- emake html
- popd || die
- fi
-}
-
-src_install() {
- distutils-r1_src_install
-
- if use doc; then
- dohtml -r docs/build/html/*
- fi
-}