git: dbed85c59146 - main - math/py-munkres10: Remove obsoleted port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 31 Mar 2024 20:50:37 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=dbed85c59146a8ad74fb67d1ea0d94dd9aa8226a
commit dbed85c59146a8ad74fb67d1ea0d94dd9aa8226a
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2024-03-31 20:49:00 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2024-03-31 20:49:00 +0000
math/py-munkres10: Remove obsoleted port
Use math/py-munkres instead.
---
MOVED | 1 +
math/Makefile | 1 -
math/py-munkres10/Makefile | 25 -------------------------
math/py-munkres10/distinfo | 3 ---
math/py-munkres10/pkg-descr | 6 ------
5 files changed, 1 insertion(+), 35 deletions(-)
diff --git a/MOVED b/MOVED
index 673a38a8a342..a09160f2d086 100644
--- a/MOVED
+++ b/MOVED
@@ -3066,3 +3066,4 @@ lang/ruby30||2024-03-31|Has expired: Please migrate to newer versions. Ruby 3.0
devel/py-pybind11210|devel/py-pybind11|2024-03-31|Remove obsoleted port. Use devel/py-pybind11 instead
devel/py-y-py|devel/py-pycrdt|2024-03-31|Remove obsoleted port. Use devel/py-pycrdt instead
devel/py-ypy-websocket|devel/py-pycrdt-websocket|2024-03-31|Remove obsoleted port. Use devel/py-pycrdt-websocket instead
+math/py-munkres10|math/py-munkres|2024-03-31|Remove obsoleted port. Use math/py-munkres instead
diff --git a/math/Makefile b/math/Makefile
index 22e036769902..ec8f047665b1 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -990,7 +990,6 @@
SUBDIR += py-moarchiving
SUBDIR += py-mpmath
SUBDIR += py-munkres
- SUBDIR += py-munkres10
SUBDIR += py-ndindex
SUBDIR += py-networkx
SUBDIR += py-nevergrad
diff --git a/math/py-munkres10/Makefile b/math/py-munkres10/Makefile
deleted file mode 100644
index 356c1a79c93b..000000000000
--- a/math/py-munkres10/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-PORTNAME= munkres
-PORTVERSION= 1.0.12
-DISTVERSIONPREFIX= release-
-CATEGORIES= math python
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-PKGNAMESUFFIX= 10
-
-MAINTAINER= sunpoet@FreeBSD.org
-COMMENT= Munkres implementation for Python
-WWW= https://software.clapper.org/munkres/
-
-LICENSE= APACHE20
-
-USES= python
-USE_PYTHON= autoplist concurrent distutils
-
-NO_ARCH= yes
-
-# munkres 1.1.1+ requires Python 3.5+
-PORTSCOUT= limit:^1\.0\.
-
-GH_ACCOUNT= bmc
-USE_GITHUB= yes
-
-.include <bsd.port.mk>
diff --git a/math/py-munkres10/distinfo b/math/py-munkres10/distinfo
deleted file mode 100644
index 008000e816f3..000000000000
--- a/math/py-munkres10/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1548177176
-SHA256 (bmc-munkres-release-1.0.12_GH0.tar.gz) = 70b3b32b4fed3b354e5c42e4d1273880a33a13ab8c108a4247140eb661767a0b
-SIZE (bmc-munkres-release-1.0.12_GH0.tar.gz) = 12126
diff --git a/math/py-munkres10/pkg-descr b/math/py-munkres10/pkg-descr
deleted file mode 100644
index 67c6bfb19c3c..000000000000
--- a/math/py-munkres10/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-The Munkres module provides an implementation of the Munkres algorithm (also
-called the Hungarian algorithm or the Kuhn-Munkres algorithm). The algorithm
-models an assignment problem as an NxM cost matrix, where each element
-represents the cost of assigning the ith worker to the jth job, and it figures
-out the least-cost solution, choosing a single item from each row and column in
-the matrix, such that no row and no column are used more than once.