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 E751815806E for ; Wed, 31 May 2023 19:08:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F1D9E0977; Wed, 31 May 2023 19:08:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 17FD6E0977 for ; Wed, 31 May 2023 19:08:59 +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 5EDB4340F8F for ; Wed, 31 May 2023 19:08:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCAE7A85 for ; Wed, 31 May 2023 19:08:55 +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: <1685560128.db940f0c884c9cde36c3e18b11e4392ae74f0560.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.4-r1.ebuild X-VCS-Directories: dev-python/munkres/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: db940f0c884c9cde36c3e18b11e4392ae74f0560 X-VCS-Branch: master Date: Wed, 31 May 2023 19:08:55 +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: b6e3fcab-edad-4a97-9bbb-d3bfab769f51 X-Archives-Hash: bc2cf6c3e8918f82f69636e3354b71aa commit: db940f0c884c9cde36c3e18b11e4392ae74f0560 Author: Michał Górny gentoo org> AuthorDate: Wed May 31 19:04:41 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 31 19:08:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db940f0c dev-python/munkres: Enable py3.12 Signed-off-by: Michał Górny gentoo.org> dev-python/munkres/Manifest | 2 +- dev-python/munkres/munkres-1.1.4-r1.ebuild | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/dev-python/munkres/Manifest b/dev-python/munkres/Manifest index 577cb5b5278e..445fc315c4da 100644 --- a/dev-python/munkres/Manifest +++ b/dev-python/munkres/Manifest @@ -1 +1 @@ -DIST munkres-1.1.4.tar.gz 13777 BLAKE2B d783ac7a4fd55826ef3ddddd2ba82cf0499727e605a2414491af7dd9080193c53f1e48ed17dba9a462578bc958d3d9e2e1e413408143b4cfd0305f9cb3b6c517 SHA512 24ae7d04f4a6fe52f7bb9dc79bbee3e33425b85813382e2634e106a5d26d2d728ba8d34fab9390b7c3d651bc0e95214dcf9c94ac436636cd5b487a054b5a2c54 +DIST munkres-release-1.1.4.gh.tar.gz 13777 BLAKE2B d783ac7a4fd55826ef3ddddd2ba82cf0499727e605a2414491af7dd9080193c53f1e48ed17dba9a462578bc958d3d9e2e1e413408143b4cfd0305f9cb3b6c517 SHA512 24ae7d04f4a6fe52f7bb9dc79bbee3e33425b85813382e2634e106a5d26d2d728ba8d34fab9390b7c3d651bc0e95214dcf9c94ac436636cd5b487a054b5a2c54 diff --git a/dev-python/munkres/munkres-1.1.4-r1.ebuild b/dev-python/munkres/munkres-1.1.4-r1.ebuild index f013f38b646b..00d44a124e4d 100644 --- a/dev-python/munkres/munkres-1.1.4-r1.ebuild +++ b/dev-python/munkres/munkres-1.1.4-r1.ebuild @@ -4,13 +4,21 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) + inherit distutils-r1 +MY_P=munkres-release-${PV} DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem" -HOMEPAGE="https://pypi.org/project/munkres/ https://github.com/bmc/munkres" -SRC_URI="https://github.com/bmc/munkres/archive/release-${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-release-${PV}" +HOMEPAGE=" + https://github.com/bmc/munkres/ + https://pypi.org/project/munkres/ +" +SRC_URI=" + https://github.com/bmc/munkres/archive/release-${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} LICENSE="Apache-2.0" SLOT="0"