summaryrefslogtreecommitdiff
path: root/dev-python/munkres
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/munkres
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/munkres')
-rw-r--r--dev-python/munkres/Manifest1
-rw-r--r--dev-python/munkres/files/munkres-1.1.4-test-32bit.patch34
-rw-r--r--dev-python/munkres/metadata.xml18
-rw-r--r--dev-python/munkres/munkres-1.1.4-r1.ebuild32
4 files changed, 0 insertions, 85 deletions
diff --git a/dev-python/munkres/Manifest b/dev-python/munkres/Manifest
deleted file mode 100644
index 445fc315c4da..000000000000
--- a/dev-python/munkres/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST munkres-release-1.1.4.gh.tar.gz 13777 BLAKE2B d783ac7a4fd55826ef3ddddd2ba82cf0499727e605a2414491af7dd9080193c53f1e48ed17dba9a462578bc958d3d9e2e1e413408143b4cfd0305f9cb3b6c517 SHA512 24ae7d04f4a6fe52f7bb9dc79bbee3e33425b85813382e2634e106a5d26d2d728ba8d34fab9390b7c3d651bc0e95214dcf9c94ac436636cd5b487a054b5a2c54
diff --git a/dev-python/munkres/files/munkres-1.1.4-test-32bit.patch b/dev-python/munkres/files/munkres-1.1.4-test-32bit.patch
deleted file mode 100644
index 86159299eed5..000000000000
--- a/dev-python/munkres/files/munkres-1.1.4-test-32bit.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 380a0d593a0569a761c4a035edaa4414c3b4b31d Mon Sep 17 00:00:00 2001
-From: Stefano Rivera <stefano@rivera.za.net>
-Date: Sat, 17 Oct 2020 11:15:04 -0700
-Subject: [PATCH] Use a constant cost calculation in test_profit_float()
-
-Rather than an architecture-specific calculation, when our variable
-precision does not differ across architectures.
-
-Fixes: #40
----
- test/test_munkres.py | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/test/test_munkres.py b/test/test_munkres.py
-index 23796dd..3cc65d9 100644
---- a/test/test_munkres.py
-+++ b/test/test_munkres.py
-@@ -162,13 +162,13 @@ def test_profit_float():
- [37.11, 53.12, 57.13, 78.14, 28.15],
- [59.16, 43.17, 97.18, 88.19, 48.2],
- [52.21, 19.22, 89.23, 60.24, 60.25]]
-- import sys
-+ max_ = 2**32
- cost_matrix = munkres.make_cost_matrix(
-- profit_matrix, lambda cost: sys.maxsize - cost
-+ profit_matrix, lambda cost: max_ - cost
- )
- indices = m.compute(cost_matrix)
- profit = sum([profit_matrix[row][column] for row, column in indices])
-- assert profit == pytest.approx(362.65)
-+ assert profit == pytest.approx(392.65)
-
- def test_irregular():
- matrix = [[12, 26, 17],
diff --git a/dev-python/munkres/metadata.xml b/dev-python/munkres/metadata.xml
deleted file mode 100644
index ae06eec1a671..000000000000
--- a/dev-python/munkres/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <email>joshua.downer@gmail.com</email>
- <name>Joshua Downer</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <longdescription lang="en">The Munkres module provides an implementation of the Munkres algorithm (also called the Hungarian algorithm or the Kuhn-Munkres algorithm), useful for solving the Assignment Problem.
- </longdescription>
- <upstream>
- <remote-id type="pypi">munkres</remote-id>
- <remote-id type="github">bmc/munkres</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/munkres/munkres-1.1.4-r1.ebuild b/dev-python/munkres/munkres-1.1.4-r1.ebuild
deleted file mode 100644
index a738df71d86d..000000000000
--- a/dev-python/munkres/munkres-1.1.4-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-MY_P=munkres-release-${PV}
-DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem"
-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"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
-
-distutils_enable_tests pytest
-
-PATCHES=(
- # https://github.com/bmc/munkres/pull/41
- "${FILESDIR}/${P}-test-32bit.patch"
-)