aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-08-26 09:25:31 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-08-26 09:25:31 +0000
commit07aadecce77fb82782c96c525891f2c64fdc5e5b (patch)
tree92c189101f807d6fc7be5aa27b31e634d2ccf0b1
parent09947d1e77210c81f85a16bd94419b21922021f3 (diff)
downloadports-07aadec.tar.gz
ports-07aadec.zip
devel/py-gpep517: Remove obsoleted port
It is no longer needed after Python 3.7 removal.
-rw-r--r--MOVED1
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-gpep517/Makefile52
-rw-r--r--devel/py-gpep517/distinfo3
-rw-r--r--devel/py-gpep517/pkg-descr7
5 files changed, 1 insertions, 63 deletions
diff --git a/MOVED b/MOVED
index 56dfe9fc94bf..7788ac2f9073 100644
--- a/MOVED
+++ b/MOVED
@@ -7799,3 +7799,4 @@ mail/vmailmgr||2023-08-22|Has expired: Last upstream release was in 2005 and ups
irc/komanda-cli||2023-08-25|Has expired: Upstream no longer maintained
irc/birch||2023-08-25|Has expired: Upstream no longer maintained
net-im/6cord||2023-08-25|Has expired: Upstream no longer maintained
+devel/py-gpep517||2023-08-26|Remove obsoleted port. It is no longer needed after Python 3.7 removal
diff --git a/devel/Makefile b/devel/Makefile
index 2bba6d667e7a..6d034820db84 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4737,7 +4737,6 @@
SUBDIR += py-google-pasta
SUBDIR += py-google-re2
SUBDIR += py-googleapis-common-protos
- SUBDIR += py-gpep517
SUBDIR += py-gpxpy
SUBDIR += py-grab
SUBDIR += py-graphene
diff --git a/devel/py-gpep517/Makefile b/devel/py-gpep517/Makefile
deleted file mode 100644
index 2b445b4631b8..000000000000
--- a/devel/py-gpep517/Makefile
+++ /dev/null
@@ -1,52 +0,0 @@
-PORTNAME= gpep517
-DISTVERSION= 13
-PORTREVISION= 1
-CATEGORIES= devel python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= python@FreeBSD.org
-COMMENT= Python package builder and installer for non-pip-centric world
-WWW= https://github.com/projg2/gpep517
-
-LICENSE= MIT
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}installer>=0.5:devel/py-installer@${PY_FLAVOR}
-TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>=3.2:devel/py-flit-core@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pdm-pep517>0:devel/py-pdm-pep517@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}poetry-core>0:devel/py-poetry-core@${PY_FLAVOR} \
- ${PY_SETUPTOOLS} \
- ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= allflavors autoplist concurrent pep517 pytest
-
-PEP517_BUILD_DEPEND= ${PYTHON_PKGNAMEPREFIX}flit-core>=3.2:devel/py-flit-core@${PY_FLAVOR}
-PEP517_BUILD_CMD= ${PYTHON_CMD} -m flit_core.wheel
-
-NO_ARCH= yes
-
-.include <bsd.port.pre.mk>
-
-.if ${PYTHON_REL} < 31100
-BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}tomli>=1.2.3:textproc/py-tomli@${PY_FLAVOR}
-RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}tomli>=1.2.3:textproc/py-tomli@${PY_FLAVOR}
-.endif
-
-post-patch:
- @${REINPLACE_CMD} '/requires-python/d' ${WRKSRC}/pyproject.toml
-
-pre-test:
-.for i in flit_core hatchling pdm.pep517 poetry.core setuptools-legacy setuptools
- @${LN} -s ${TEST_WRKSRC}/test/test-pkg/testpkg \
- ${TEST_WRKSRC}/test/integration/${i}/testpkg
-.endfor
-
-post-test:
-.for i in flit_core hatchling pdm.pep517 poetry.core setuptools-legacy setuptools
- @${RM} ${TEST_WRKSRC}/test/integration/${i}/testpkg
-.endfor
-
-.include <bsd.port.post.mk>
diff --git a/devel/py-gpep517/distinfo b/devel/py-gpep517/distinfo
deleted file mode 100644
index 1d31ee42593f..000000000000
--- a/devel/py-gpep517/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1679878249
-SHA256 (gpep517-13.tar.gz) = 4ba0d7f0c943e599ebf3df77d43147313d80cdffa75aacc46beef72f7af44c89
-SIZE (gpep517-13.tar.gz) = 19244
diff --git a/devel/py-gpep517/pkg-descr b/devel/py-gpep517/pkg-descr
deleted file mode 100644
index a58f3d4388e4..000000000000
--- a/devel/py-gpep517/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-gpep517 is a minimal tool to aid building wheels for Python packages
-through PEP 517-compliant build systems and installing them. The
-tool originated from Gentoo with its primary goals being absolutely
-minimal dependency footprint to ease clean bootstrap without bundling
-dependencies, and clean separation of functions to aid external
-package managers. It is the tool of choice for a world that does
-not revolve around pip and venvs.