git: 6f55397bb27e - main - astro/py-extension-helpers: New port

From: Wen Heping <wen_at_FreeBSD.org>
Date: Fri, 29 Oct 2021 00:58:05 UTC
The branch main has been updated by wen:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6f55397bb27ea9fb2f62f96accb0251a3e96493f

commit 6f55397bb27ea9fb2f62f96accb0251a3e96493f
Author:     Wen Heping <wen@FreeBSD.org>
AuthorDate: 2021-10-29 00:56:32 +0000
Commit:     Wen Heping <wen@FreeBSD.org>
CommitDate: 2021-10-29 00:56:32 +0000

    astro/py-extension-helpers: New port
    
    The extension-helpers package includes convenience helpers to assist
    with building Python packages with compiled C/Cython extensions. It
    is developed by the Astropy project but is intended to be general
    and usable by any Python package.
    
    WWW: https://extension-helpers.readthedocs.io/
---
 astro/Makefile                       |  1 +
 astro/py-extension-helpers/Makefile  | 16 ++++++++++++++++
 astro/py-extension-helpers/distinfo  |  3 +++
 astro/py-extension-helpers/pkg-descr |  6 ++++++
 4 files changed, 26 insertions(+)

diff --git a/astro/Makefile b/astro/Makefile
index 4c814ac5ce37..c21cedfda773 100644
--- a/astro/Makefile
+++ b/astro/Makefile
@@ -83,6 +83,7 @@
     SUBDIR += py-astropy
     SUBDIR += py-astropy-helpers
     SUBDIR += py-ephem
+    SUBDIR += py-extension-helpers
     SUBDIR += py-horoscopegenerator
     SUBDIR += py-indiweb
     SUBDIR += py-jplephem
diff --git a/astro/py-extension-helpers/Makefile b/astro/py-extension-helpers/Makefile
new file mode 100644
index 000000000000..43ee4ed2e158
--- /dev/null
+++ b/astro/py-extension-helpers/Makefile
@@ -0,0 +1,16 @@
+PORTNAME=	extension-helpers
+DISTVERSION=	0.1
+CATEGORIES=	astro
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	wen@FreeBSD.org
+COMMENT=	Building and installing packages in the Astropy ecosystem
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.rst
+
+USES=		python:3.6+
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>
diff --git a/astro/py-extension-helpers/distinfo b/astro/py-extension-helpers/distinfo
new file mode 100644
index 000000000000..47f31dd7491d
--- /dev/null
+++ b/astro/py-extension-helpers/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1635380088
+SHA256 (extension-helpers-0.1.tar.gz) = ac8a6fe91c6d98986a51a9f08ca0c7945f8fd70d95b662ced4040ae5eb973882
+SIZE (extension-helpers-0.1.tar.gz) = 24306
diff --git a/astro/py-extension-helpers/pkg-descr b/astro/py-extension-helpers/pkg-descr
new file mode 100644
index 000000000000..adf646aba76a
--- /dev/null
+++ b/astro/py-extension-helpers/pkg-descr
@@ -0,0 +1,6 @@
+The extension-helpers package includes convenience helpers to assist
+with building Python packages with compiled C/Cython extensions. It
+is developed by the Astropy project but is intended to be general
+and usable by any Python package.
+
+WWW: https://extension-helpers.readthedocs.io/