From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9D012138350 for ; Thu, 19 Mar 2020 22:13:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3896E0E76; Thu, 19 Mar 2020 22:13:00 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8ACBAE0E76 for ; Thu, 19 Mar 2020 22:13:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7524434F27C for ; Thu, 19 Mar 2020 22:12:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7237718E for ; Thu, 19 Mar 2020 22:12:57 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1584655952.477341d3c6d318b5e291f1a209e5d37abfbb9f3d.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pmw/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pmw/pmw-2.0.1.ebuild X-VCS-Directories: dev-python/pmw/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 477341d3c6d318b5e291f1a209e5d37abfbb9f3d X-VCS-Branch: master Date: Thu, 19 Mar 2020 22:12:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2f4f8e8f-30aa-488c-9b90-66315cd5702a X-Archives-Hash: ba0fa45f51b5589473e794b8dd708a30 commit: 477341d3c6d318b5e291f1a209e5d37abfbb9f3d Author: David Seifert gentoo org> AuthorDate: Thu Mar 19 22:12:32 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Mar 19 22:12:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=477341d3 dev-python/pmw: Remove old Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/pmw/pmw-2.0.1.ebuild | 51 ----------------------------------------- 1 file changed, 51 deletions(-) diff --git a/dev-python/pmw/pmw-2.0.1.ebuild b/dev-python/pmw/pmw-2.0.1.ebuild deleted file mode 100644 index c369639f7ab..00000000000 --- a/dev-python/pmw/pmw-2.0.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python3_6 ) -PYTHON_REQ_USE="tk" - -inherit distutils-r1 virtualx - -MY_PN="Pmw" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Toolkit for building high-level compound widgets in Python using the Tkinter module" -HOMEPAGE="http://pmw.sourceforge.net/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_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}/${MY_P}" - -python_prepare() { - 2to3 Pmw || die -} - -python_test() { - VIRTUALX_COMMAND="${PYTHON}" - cd "${BUILD_DIR}/lib/Pmw/Pmw_${PV//./_}/" || die - cp tests/{flagup.bmp,earthris.gif} . || die - for test in tests/*_test.py; do - echo "running test "$test - PYTHONPATH=tests:../../ virtualmake $test || die - done -} - -python_install_all() { - local DIR="Pmw/Pmw_${PV//./_}" - - use doc && HTML_DOCS=( "${DIR}"/doc/. ) - use examples && EXAMPLES=( "${DIR}"/demos/. ) - - distutils-r1_python_install_all -}