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 4B610158087 for ; Sat, 29 Jan 2022 11:51:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D116E2BC00B; Sat, 29 Jan 2022 11:51:15 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B005D2BC00B for ; Sat, 29 Jan 2022 11:51:15 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9E5F5343378 for ; Sat, 29 Jan 2022 11:51:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12BAA275 for ; Sat, 29 Jan 2022 11:51:11 +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: <1643457066.b68ac67182fc040652041560f042309b27734c39.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/yapf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/yapf/Manifest dev-python/yapf/yapf-0.31.0.ebuild X-VCS-Directories: dev-python/yapf/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b68ac67182fc040652041560f042309b27734c39 X-VCS-Branch: master Date: Sat, 29 Jan 2022 11:51:11 +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: 037b2dd1-0df0-4e4b-96e5-5c0029ec35d8 X-Archives-Hash: 6df6ceeb76dd79f954a28d4266ec47fe commit: b68ac67182fc040652041560f042309b27734c39 Author: Michał Górny gentoo org> AuthorDate: Sat Jan 29 11:36:58 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 29 11:51:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b68ac671 dev-python/yapf: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/yapf/Manifest | 1 - dev-python/yapf/yapf-0.31.0.ebuild | 25 ------------------------- 2 files changed, 26 deletions(-) diff --git a/dev-python/yapf/Manifest b/dev-python/yapf/Manifest index ef9dc5172a8c..9dd78a39089f 100644 --- a/dev-python/yapf/Manifest +++ b/dev-python/yapf/Manifest @@ -1,2 +1 @@ -DIST yapf-0.31.0.tar.gz 176856 BLAKE2B 080867363df59615d1df77ef51645cd68d931251807da83c5b9d8737a89b01e8dee7457a2b524a76ad2eb21b859ad78168a30f706ef70c3b07bcb94a98990752 SHA512 5f376e985e182aab289c41e4071fd98c0784e5292974e2efcc4beaaca68cb83068b297e228a46f51f0d9370634dbd32948bdbd03e6b65c76b43efba0fe0d3454 DIST yapf-0.32.0.tar.gz 178621 BLAKE2B b2132e3fffb96113700e322bba3f49ded0fe417de901522793564d5830951e9f2017c576fb89c5e423f4f547c95659040c2a4fc923887d9fb941e219b21f0cf6 SHA512 c1a05a04f7558a5b51899c29010bedc105c4a4bad4b5358a903a22a39f451e03369d2b4e670ecb44a857a8fef2bf438d9da0afcbdd3a336cf037bbf480d19878 diff --git a/dev-python/yapf/yapf-0.31.0.ebuild b/dev-python/yapf/yapf-0.31.0.ebuild deleted file mode 100644 index 75cd6c45ef31..000000000000 --- a/dev-python/yapf/yapf-0.31.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2018-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="A formatter for Python files" -HOMEPAGE="https://github.com/google/yapf" -SRC_URI="https://github.com/google/yapf/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND=" - test? ( dev-python/toml[${PYTHON_USEDEP}] )" - -python_test() { - "${EPYTHON}" -m unittest discover -v -p '*_test.py' || - die "Tests failed with ${EPYTHON}" -}