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 A9525138350 for ; Fri, 27 Mar 2020 10:42:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BADEE0E26; Fri, 27 Mar 2020 10:42:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 713B8E0E26 for ; Fri, 27 Mar 2020 10:42:55 +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 6959534F482 for ; Fri, 27 Mar 2020 10:42:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D2371AE for ; Fri, 27 Mar 2020 10:42:50 +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: <1585305749.f03b12e2c6bbae36daa91b3b1a2b4f16191e442f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild X-VCS-Directories: dev-python/google-apputils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f03b12e2c6bbae36daa91b3b1a2b4f16191e442f X-VCS-Branch: master Date: Fri, 27 Mar 2020 10:42:50 +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: 31de711a-32cd-4f94-9e50-0971209a6f83 X-Archives-Hash: 655c4fb87d9d10ef5ec65c353bd2857d commit: f03b12e2c6bbae36daa91b3b1a2b4f16191e442f Author: Michał Górny gentoo org> AuthorDate: Fri Mar 27 10:35:50 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 27 10:42:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f03b12e2 dev-python/google-apputils: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> .../google-apputils-0.4.2-r1.ebuild | 35 ---------------------- 1 file changed, 35 deletions(-) diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild deleted file mode 100644 index ba679b9eadf..00000000000 --- a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -# Python 3: https://github.com/google/google-apputils/issues/9 -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -DESCRIPTION="Collection of utilities for building Python applications" -HOMEPAGE="https://github.com/google/google-apputils" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/python-dateutil-1.4[${PYTHON_USEDEP}] - >=dev-python/python-gflags-1.4[${PYTHON_USEDEP}] - >=dev-python/pytz-2010[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( ${RDEPEND} dev-python/mox[${PYTHON_USEDEP}] )" - -src_unpack() { - default - chmod -R a+rX,u+w,g-w,o-w ${P} || die -} - -python_test() { - esetup.py google_test -}