summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-01-05 18:21:03 +0100
committerMichał Górny <mgorny@gentoo.org>2018-01-06 00:18:52 +0100
commit28a69220d603d965020844a4e514373514efa3bb (patch)
tree8c6196a7e81329d152bf84b943074dac28e67a01 /dev-python/pmw
parentdev-python/plumbum: Clean old up (diff)
downloadgentoo-28a69220d603d965020844a4e514373514efa3bb.tar.gz
gentoo-28a69220d603d965020844a4e514373514efa3bb.tar.bz2
gentoo-28a69220d603d965020844a4e514373514efa3bb.zip
dev-python/pmw: Clean old up
Diffstat (limited to 'dev-python/pmw')
-rw-r--r--dev-python/pmw/Manifest1
-rw-r--r--dev-python/pmw/pmw-2.0.0-r2.ebuild59
2 files changed, 0 insertions, 60 deletions
diff --git a/dev-python/pmw/Manifest b/dev-python/pmw/Manifest
index edb4c1217680..8965646b1334 100644
--- a/dev-python/pmw/Manifest
+++ b/dev-python/pmw/Manifest
@@ -1,3 +1,2 @@
DIST Pmw-2.0.1.tar.gz 830448 BLAKE2B c78fef1570a34b9784f936f16856c4450164d8a232770e59cc084c1113888af8ee002cd1c7ddeadcddaacb5eae9ff58fcbfc270fc066875523e31a9d26770cd3 SHA512 99654e961aa40a64eebc08fe473e94da0ce431e6465255c68c251dfd544a51edef1a5d97dfd89ce756eb5f7fcf917dbef27f646ba9451ab72f3d460daa09a556
DIST Pmw.1.3.3.tar.gz 451232 BLAKE2B 2ea74cf010b094539b1e052850b358e05a561aee1990de7184244b77a4133c1259ff54fa6e47c5368dac4bf81bf23e9217742ef1327ab7e20b8dca27ebf5f333 SHA512 d63fad8f8c5bb9b8cb940b10bdf9e3bc1dabe714e10f32c587d5e1097ef0767492602984089172d85cf57c8ebf34acf555b8fe73a2157c6f734ee36042803668
-DIST Pmw.2.0.0.tar.gz 422125 BLAKE2B 7c8caf727a0385689ab387a62b73ebc325a1bc9c3302934a8175869a1c2b142fc1e0d214efc0c5ae1bcf1197b61aa2865374412958d8efa93c4e0aae334ca487 SHA512 409b5ccdc8397b48c4d339e297c9729a1bc3f33c2b256d29b99c4c0e2e013d7aeae4b3089b22112b0d8d43dd8cd5208306afbcc4e9f6ab98005c16773aed7117
diff --git a/dev-python/pmw/pmw-2.0.0-r2.ebuild b/dev-python/pmw/pmw-2.0.0-r2.ebuild
deleted file mode 100644
index 5c71bc92c986..000000000000
--- a/dev-python/pmw/pmw-2.0.0-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python3_4 )
-PYTHON_REQ_USE="tk"
-
-inherit distutils-r1
-
-MY_P="Pmw.${PV}"
-
-DESCRIPTION="Toolkit for building high-level compound widgets in Python using the Tkinter module"
-HOMEPAGE="http://pmw.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="py3"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE="doc examples test"
-
-DEPEND="!dev-python/pmw:0"
-RDEPEND="${DEPEND}"
-# https://sourceforge.net/p/pmw/bugs/39/
-RESTRICT="test"
-
-S="${WORKDIR}/src"
-
-DOCS="Pmw/README"
-
-python_prepare() {
- distutils-r1_python_prepare
- 2to3 Pmw
-}
-
-python_test() {
- cd "${BUILD_DIR}/lib/Pmw/Pmw_2_0_0/" || die
- PYTHONPATH=PYTHONPATH=tests:../../
- cp tests/{flagup.bmp,earthris.gif} . || die
- for test in tests/*_test.py; do
- echo "running test "$test
- PYTHONPATH=tests:../../ "${PYTHON}" $test || die
- done
-}
-
-python_install_all() {
- local DIR="Pmw/Pmw_2_0_0"
-
- if use doc; then
- dohtml -a html,gif,py "${DIR}"/doc/*
- fi
-
- if use examples; then
- insinto "/usr/share/doc/${PF}/examples"
- doins "${DIR}"/demos/*
- fi
-
- distutils-r1_python_install_all
-}