From nobody Thu Oct 28 07:18:53 2021 X-Original-To: dev-commits-ports-all@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 ADC091811B19; Thu, 28 Oct 2021 07:18:53 +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 4HfxkP3Z06z4XF1; Thu, 28 Oct 2021 07:18:53 +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 4B3AC1F1F6; Thu, 28 Oct 2021 07:18:53 +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 19S7IrpF050587; Thu, 28 Oct 2021 07:18:53 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19S7IrFr050586; Thu, 28 Oct 2021 07:18:53 GMT (envelope-from git) Date: Thu, 28 Oct 2021 07:18:53 GMT Message-Id: <202110280718.19S7IrFr050586@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yasuhiro Kimura Subject: git: 6cb28f4ba992 - main - devel/py-clang: Add new port List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yasu X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 6cb28f4ba9922703a7eb06ed9630248da69ef466 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by yasu: URL: https://cgit.FreeBSD.org/ports/commit/?id=6cb28f4ba9922703a7eb06ed9630248da69ef466 commit 6cb28f4ba9922703a7eb06ed9630248da69ef466 Author: Neal Nelson AuthorDate: 2021-10-28 00:27:49 +0000 Commit: Yasuhiro Kimura CommitDate: 2021-10-28 07:17:17 +0000 devel/py-clang: Add new port This is a stand-alone python library binding the libclang functionality. Currently each llvm port installs it's own version, but this is an option (albeit default) and it's installed in a non-standard location. This port removes the dependency on the option and the need to patch software that uses it to use the non-standard location. PR: 258199 --- devel/Makefile | 1 + devel/py-clang/Makefile | 15 +++++++++++++++ devel/py-clang/distinfo | 3 +++ devel/py-clang/pkg-descr | 3 +++ 4 files changed, 22 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index 3b1e3a5d8f8d..7071a721ef14 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4322,6 +4322,7 @@ SUBDIR += py-cheetah3 SUBDIR += py-circuits SUBDIR += py-ciso8601 + SUBDIR += py-clang SUBDIR += py-cld SUBDIR += py-cle SUBDIR += py-cleo diff --git a/devel/py-clang/Makefile b/devel/py-clang/Makefile new file mode 100644 index 000000000000..b70b04dd45f4 --- /dev/null +++ b/devel/py-clang/Makefile @@ -0,0 +1,15 @@ +PORTNAME= clang +DISTVERSION= 11.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@nicandneal.net +COMMENT= Python bindings for libclang + +LICENSE= NCSA + +USES= python +USE_PYTHON= autoplist distutils + +.include diff --git a/devel/py-clang/distinfo b/devel/py-clang/distinfo new file mode 100644 index 000000000000..707a9cce5eeb --- /dev/null +++ b/devel/py-clang/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1630510923 +SHA256 (clang-11.0.tar.gz) = f838e6475b1fe5c91efb97e80ae19420c39483fd5aa7ef10f03ffb51edc6f8c5 +SIZE (clang-11.0.tar.gz) = 30948 diff --git a/devel/py-clang/pkg-descr b/devel/py-clang/pkg-descr new file mode 100644 index 000000000000..952d8914f049 --- /dev/null +++ b/devel/py-clang/pkg-descr @@ -0,0 +1,3 @@ +This is the python bindings subdir of llvm clang repository. + +WWW: https://github.com/llvm-mirror/clang/tree/master/bindings/python