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 92A9A158087 for ; Sun, 17 Oct 2021 09:07:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2BEEE0934; Sun, 17 Oct 2021 09:07:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94947E0942 for ; Sun, 17 Oct 2021 09:07:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD6293433AA for ; Sun, 17 Oct 2021 09:07:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 027C4164 for ; Sun, 17 Oct 2021 09:07:21 +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: <1634461478.4c7eb3603259f0d8de325827062a8710a8795e5e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/munkres/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/munkres/Manifest dev-python/munkres/munkres-1.1.2.ebuild X-VCS-Directories: dev-python/munkres/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4c7eb3603259f0d8de325827062a8710a8795e5e X-VCS-Branch: master Date: Sun, 17 Oct 2021 09:07:21 +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: 2a01f334-9453-43a5-b65b-efd08557f652 X-Archives-Hash: de64226963800dac44c56f6df7995a08 commit: 4c7eb3603259f0d8de325827062a8710a8795e5e Author: Michał Górny gentoo org> AuthorDate: Sun Oct 17 09:04:38 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 17 09:04:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c7eb360 dev-python/munkres: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/munkres/Manifest | 1 - dev-python/munkres/munkres-1.1.2.ebuild | 22 ---------------------- 2 files changed, 23 deletions(-) diff --git a/dev-python/munkres/Manifest b/dev-python/munkres/Manifest index 2953568eef9..577cb5b5278 100644 --- a/dev-python/munkres/Manifest +++ b/dev-python/munkres/Manifest @@ -1,2 +1 @@ -DIST munkres-1.1.2.tar.gz 11186 BLAKE2B 2ba5ab7ce85fdc06598829123ed334209f37c0fa4f82e863c78220db82e9b8b4c51c7369042bdac6e9b33b4d580145bdd37b5743f0b3f511141782588803cb0e SHA512 4a8b698f53812303f5020b4fc357f859a63d97370fe311d16ae959addd9cacee65667e430cd0d00496e423c1f0c7a3c8d4219ba49600a982de323fadd2c03bec DIST munkres-1.1.4.tar.gz 13777 BLAKE2B d783ac7a4fd55826ef3ddddd2ba82cf0499727e605a2414491af7dd9080193c53f1e48ed17dba9a462578bc958d3d9e2e1e413408143b4cfd0305f9cb3b6c517 SHA512 24ae7d04f4a6fe52f7bb9dc79bbee3e33425b85813382e2634e106a5d26d2d728ba8d34fab9390b7c3d651bc0e95214dcf9c94ac436636cd5b487a054b5a2c54 diff --git a/dev-python/munkres/munkres-1.1.2.ebuild b/dev-python/munkres/munkres-1.1.2.ebuild deleted file mode 100644 index f243268ad49..00000000000 --- a/dev-python/munkres/munkres-1.1.2.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 - -DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem" -HOMEPAGE="https://pypi.org/project/munkres/" -SRC_URI="https://github.com/bmc/munkres/archive/release-${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -S="${WORKDIR}/${PN}-release-${PV}" - -python_test() { - "${EPYTHON}" ${PN}.py || die -}