From nobody Fri Oct 29 00:58:05 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 540E51827FEE; Fri, 29 Oct 2021 00:58:05 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HgPDY1ytmz4b9f; Fri, 29 Oct 2021 00:58:05 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 19D3A5A5E; Fri, 29 Oct 2021 00:58:05 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19T0w5kY062816; Fri, 29 Oct 2021 00:58:05 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19T0w5uW062815; Fri, 29 Oct 2021 00:58:05 GMT (envelope-from git) Date: Fri, 29 Oct 2021 00:58:05 GMT Message-Id: <202110290058.19T0w5uW062815@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Wen Heping Subject: git: 6f55397bb27e - main - astro/py-extension-helpers: New port List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: wen X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 6f55397bb27ea9fb2f62f96accb0251a3e96493f Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by wen: URL: https://cgit.FreeBSD.org/ports/commit/?id=6f55397bb27ea9fb2f62f96accb0251a3e96493f commit 6f55397bb27ea9fb2f62f96accb0251a3e96493f Author: Wen Heping AuthorDate: 2021-10-29 00:56:32 +0000 Commit: Wen Heping 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 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/