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 8637A138350 for ; Thu, 26 Mar 2020 11:16:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D6F9E0E27; Thu, 26 Mar 2020 11:16:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 75551E0E27 for ; Thu, 26 Mar 2020 11:16:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 890E934FA8E for ; Thu, 26 Mar 2020 11:16:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 354DF1B1 for ; Thu, 26 Mar 2020 11:16:02 +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: <1585221346.aaeb9eb9e0f95b4198389f543ee90defacca227c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/appdirs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/appdirs/appdirs-1.4.3.ebuild X-VCS-Directories: dev-python/appdirs/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: aaeb9eb9e0f95b4198389f543ee90defacca227c X-VCS-Branch: master Date: Thu, 26 Mar 2020 11:16:02 +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: 530e92b6-ef6b-4eb2-9250-6c3b6d318702 X-Archives-Hash: 5dad3db485aeff0330888abdd5515545 commit: aaeb9eb9e0f95b4198389f543ee90defacca227c Author: Michał Górny gentoo org> AuthorDate: Thu Mar 26 11:12:01 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 26 11:15:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaeb9eb9 dev-python/appdirs: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/appdirs/appdirs-1.4.3.ebuild | 36 --------------------------------- 1 file changed, 36 deletions(-) diff --git a/dev-python/appdirs/appdirs-1.4.3.ebuild b/dev-python/appdirs/appdirs-1.4.3.ebuild deleted file mode 100644 index 3af7a9410b8..00000000000 --- a/dev-python/appdirs/appdirs-1.4.3.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Module for determining appropriate platform-specific dirs" -HOMEPAGE="https://github.com/ActiveState/appdirs" -SRC_URI="https://github.com/ActiveState/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -PATCHES=( "${FILESDIR}"/${PN}-1.4.3-distutils.patch ) - -python_test() { - "${PYTHON}" test/test_api.py || die "Tests fail with ${EPYTHON}" -} - -[[ ${PV} == 1.4.3 ]] || die "Please remove pkg_preinst from the ebuild" -pkg_preinst() { - _remove_egg_info() { - local pyver="$("${PYTHON}" -c 'import sys; print(sys.version[:3])')" - local egginfo="${ROOT%/}$(python_get_sitedir)/${P}-py${pyver}.egg-info" - if [[ -d ${egginfo} ]]; then - einfo "Removing ${egginfo}" - rm -r "${egginfo}" || die - fi - } - python_foreach_impl _remove_egg_info -}