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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9F462158091 for ; Sun, 15 May 2022 10:41:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5839E0940; Sun, 15 May 2022 10:41:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BDEC4E0940 for ; Sun, 15 May 2022 10:41:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 07F3C340CDE for ; Sun, 15 May 2022 10:41:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 329E7480 for ; Sun, 15 May 2022 10:41:15 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1652611260.6e58f45b0120771f9c90684c09782fcc0332f9ed.mgorny@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-r2.ebuild X-VCS-Directories: dev-python/pmw/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6e58f45b0120771f9c90684c09782fcc0332f9ed X-VCS-Branch: master Date: Sun, 15 May 2022 10:41:15 +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: 5fb013b3-0eff-4a95-be02-ecdc29e1de68 X-Archives-Hash: 124ce3aa571d4ce9108cd5e2cd2072da commit: 6e58f45b0120771f9c90684c09782fcc0332f9ed Author: Michał Górny gentoo org> AuthorDate: Sun May 15 10:25:55 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 15 10:41:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e58f45b dev-python/pmw: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pmw/pmw-2.0.1-r2.ebuild | 47 -------------------------------------- 1 file changed, 47 deletions(-) diff --git a/dev-python/pmw/pmw-2.0.1-r2.ebuild b/dev-python/pmw/pmw-2.0.1-r2.ebuild deleted file mode 100644 index 8469d86b5509..000000000000 --- a/dev-python/pmw/pmw-2.0.1-r2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{7..10} ) -PYTHON_REQ_USE="tk" - -inherit distutils-r1 virtualx - -MY_PN="Pmw" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Toolkit for building high-level compound Python widgets 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" -IUSE="doc test" - -DEPEND="!dev-python/pmw:0" -RDEPEND="${DEPEND}" -# https://sourceforge.net/p/pmw/bugs/39/ -RESTRICT="test" - -S="${WORKDIR}/${MY_P}" - -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:../../ virtx emake -j1 $test || die - done -} - -python_install_all() { - local DIR="Pmw/Pmw_${PV//./_}" - - use doc && HTML_DOCS=( "${DIR}"/doc/. ) - - distutils-r1_python_install_all -}