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 068C3158090 for ; Wed, 16 Mar 2022 07:56:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A96FE0844; Wed, 16 Mar 2022 07:56:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 EEE38E0844 for ; Wed, 16 Mar 2022 07:56:36 +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 97DEC3436A0 for ; Wed, 16 Mar 2022 07:56:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 535C2330 for ; Wed, 16 Mar 2022 07:56:30 +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: <1647417329.bbee4bae1c8765dab9b515dfa7012bcfcd815603.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-gflags/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-gflags/python-gflags-3.1.2-r1.ebuild X-VCS-Directories: dev-python/python-gflags/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bbee4bae1c8765dab9b515dfa7012bcfcd815603 X-VCS-Branch: master Date: Wed, 16 Mar 2022 07:56:30 +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: 12b237c0-b070-4ef4-8179-f41508617ba7 X-Archives-Hash: 016ca9e24ea1e15f583628d9f77556e7 commit: bbee4bae1c8765dab9b515dfa7012bcfcd815603 Author: Michał Górny gentoo org> AuthorDate: Wed Mar 16 07:55:29 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Mar 16 07:55:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbee4bae dev-python/python-gflags: Remove old Signed-off-by: Michał Górny gentoo.org> .../python-gflags/python-gflags-3.1.2-r1.ebuild | 27 ---------------------- 1 file changed, 27 deletions(-) diff --git a/dev-python/python-gflags/python-gflags-3.1.2-r1.ebuild b/dev-python/python-gflags/python-gflags-3.1.2-r1.ebuild deleted file mode 100644 index 6d6ad7be7ff4..000000000000 --- a/dev-python/python-gflags/python-gflags-3.1.2-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{7..10} ) -inherit distutils-r1 - -DESCRIPTION="Google's Python argument parsing library" -HOMEPAGE="https://github.com/google/python-gflags" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86" - -RDEPEND="dev-python/six[${PYTHON_USEDEP}]" - -PATCHES=( "${FILESDIR}"/${PN}-3.1.1-script-install.patch ) - -python_test() { - # note: each test needs to be run separately, otherwise they fail - "${EPYTHON}" -m gflags._helpers_test -v || die - "${EPYTHON}" -m gflags.flags_formatting_test -v || die - "${EPYTHON}" -m gflags.flags_unicode_literals_test -v || die -}