summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoonas Niilola <juippis@gentoo.org>2020-06-08 09:53:34 +0300
committerJoonas Niilola <juippis@gentoo.org>2020-06-08 10:45:19 +0300
commit244dd67b91ca754a549b5411fadeb30fe04819b7 (patch)
tree92a082a539bd797e3e490715cbf78ab3b0f5d2b5 /dev-python/pythondialog/pythondialog-3.4.0.ebuild
parentdev-python/pythondialog: vbump 3.5.1 (diff)
downloadgentoo-244dd67b91ca754a549b5411fadeb30fe04819b7.tar.gz
gentoo-244dd67b91ca754a549b5411fadeb30fe04819b7.tar.bz2
gentoo-244dd67b91ca754a549b5411fadeb30fe04819b7.zip
dev-python/pythondialog: remove old 3.4.0
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/pythondialog/pythondialog-3.4.0.ebuild')
-rw-r--r--dev-python/pythondialog/pythondialog-3.4.0.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-python/pythondialog/pythondialog-3.4.0.ebuild b/dev-python/pythondialog/pythondialog-3.4.0.ebuild
deleted file mode 100644
index 6463cb0c30b8..000000000000
--- a/dev-python/pythondialog/pythondialog-3.4.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="A Python module for making simple text/console-mode user interfaces"
-HOMEPAGE="http://pythondialog.sourceforge.net/"
-SRC_URI="mirror://sourceforge/pythondialog//${PV}/python3-${P}.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
-IUSE="doc examples"
-
-RDEPEND="dev-util/dialog"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/conf.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C doc html
-}
-
-python_install_all() {
- if use examples; then
- dodoc -r examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
- use doc && local HTML_DOCS=( doc/_build/html/. )
-
- distutils-r1_python_install_all
-}