aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2022-05-22 04:09:04 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2022-05-22 04:09:04 +0000
commit6ff52480d3338eead75d86e64c776e44fe464728 (patch)
tree5376411eb1b2bdd98c9d7bf96c0dae73df82564b
parent4906a2aa9954a6a68a520cef517f8ecf498fb2d5 (diff)
downloadports-6ff5248.tar.gz
ports-6ff5248.zip
devel/py-smmap2: Remove obsoleted port
Use devel/py-smmap instead.
-rw-r--r--MOVED1
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-smmap2/Makefile24
-rw-r--r--devel/py-smmap2/distinfo3
-rw-r--r--devel/py-smmap2/pkg-descr12
5 files changed, 1 insertions, 40 deletions
diff --git a/MOVED b/MOVED
index d1c6b42f1706..1ced76769ed9 100644
--- a/MOVED
+++ b/MOVED
@@ -17159,3 +17159,4 @@ mail/gmime2-sharp|mail/gmime26-sharp|2022-05-19|Depends on long deprecated gmime
mail/gmime2|mail/gmime26|2022-05-19|Not used anymore overcome by gnime26
graphics/p5-Geo-GDAL||2022-05-22|Remove obsoleted port. GDAL removed deprecated SWIG Perl bindings since 3.5.0
devel/py-gitdb2|devel/py-gitdb|2022-05-22|Remove obsoleted port. Use devel/py-gitdb instead
+devel/py-smmap2|devel/py-smmap|2022-05-22|Remove obsoleted port. Use devel/py-smmap instead
diff --git a/devel/Makefile b/devel/Makefile
index c18ebad9b300..7da88a2c2805 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5298,7 +5298,6 @@
SUBDIR += py-sip4
SUBDIR += py-six
SUBDIR += py-smmap
- SUBDIR += py-smmap2
SUBDIR += py-snakeviz
SUBDIR += py-sniffio
SUBDIR += py-sortedcontainers
diff --git a/devel/py-smmap2/Makefile b/devel/py-smmap2/Makefile
deleted file mode 100644
index 76fd9736d627..000000000000
--- a/devel/py-smmap2/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
-
-PORTNAME= smmap2
-PORTVERSION= 2.0.5
-CATEGORIES= devel python
-MASTER_SITES= CHEESESHOP
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= sunpoet@FreeBSD.org
-COMMENT= Sliding-window memory map manager
-
-LICENSE= BSD3CLAUSE
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR}
-
-USES= python:3.6+
-USE_PYTHON= autoplist concurrent distutils
-
-NO_ARCH= yes
-
-CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}smmap
-
-.include <bsd.port.mk>
diff --git a/devel/py-smmap2/distinfo b/devel/py-smmap2/distinfo
deleted file mode 100644
index 16722c9dd673..000000000000
--- a/devel/py-smmap2/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1539625054
-SHA256 (smmap2-2.0.5.tar.gz) = 29a9ffa0497e7f2be94ca0ed1ca1aa3cd4cf25a1f6b4f5f87f74b46ed91d609a
-SIZE (smmap2-2.0.5.tar.gz) = 22635
diff --git a/devel/py-smmap2/pkg-descr b/devel/py-smmap2/pkg-descr
deleted file mode 100644
index b99bb94a65b5..000000000000
--- a/devel/py-smmap2/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-Smmap wraps an interface around mmap and tracks the mapped files as well as the
-amount of clients who use it. If the system runs out of resources, or if a
-memory limit is reached, it will automatically unload unused maps to allow
-continued operation.
-
-To allow processing large files even on 32 bit systems, it allows only portions
-of the file to be mapped. Once the user reads beyond the mapped region, smmap
-will automatically map the next required region, unloading unused regions using
-a LRU algorithm.
-
-WWW: https://pypi.org/project/smmap2/
-WWW: https://github.com/gitpython-developers/smmap