From owner-dev-commits-ports-all@freebsd.org Sun Aug 22 01:04:32 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DA9CF67B6DE; Sun, 22 Aug 2021 01:04:32 +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 4GscbN5wXmz4Src; Sun, 22 Aug 2021 01:04:32 +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 B389517427; Sun, 22 Aug 2021 01:04:32 +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 17M14Wtu087291; Sun, 22 Aug 2021 01:04:32 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 17M14Wbs087290; Sun, 22 Aug 2021 01:04:32 GMT (envelope-from git) Date: Sun, 22 Aug 2021 01:04:32 GMT Message-Id: <202108220104.17M14Wbs087290@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yuri Victorovich Subject: git: ce3a02091dce - main - math/py-pynauty: New port: Isomorphism testing and automorphisms of graphs MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yuri X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: ce3a02091dceed0036d56dfddead58232c04465c Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2021 01:04:32 -0000 The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=ce3a02091dceed0036d56dfddead58232c04465c commit ce3a02091dceed0036d56dfddead58232c04465c Author: Yuri Victorovich AuthorDate: 2021-08-22 01:00:58 +0000 Commit: Yuri Victorovich CommitDate: 2021-08-22 01:04:31 +0000 math/py-pynauty: New port: Isomorphism testing and automorphisms of graphs --- math/Makefile | 1 + math/py-pynauty/Makefile | 24 ++++++++++++++++++++++++ math/py-pynauty/distinfo | 3 +++ math/py-pynauty/pkg-descr | 6 ++++++ 4 files changed, 34 insertions(+) diff --git a/math/Makefile b/math/Makefile index 14eae18d0e39..b1509694da06 100644 --- a/math/Makefile +++ b/math/Makefile @@ -873,6 +873,7 @@ SUBDIR += py-pyhull SUBDIR += py-pyipopt SUBDIR += py-pymc3 + SUBDIR += py-pynauty SUBDIR += py-pyneqsys SUBDIR += py-pynleq2 SUBDIR += py-pynndescent diff --git a/math/py-pynauty/Makefile b/math/py-pynauty/Makefile new file mode 100644 index 000000000000..d67dff7e6e9b --- /dev/null +++ b/math/py-pynauty/Makefile @@ -0,0 +1,24 @@ +PORTNAME= pynauty +DISTVERSION= 1.0.2 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Isomorphism testing and automorphisms of graphs + +LICENSE= GPLv3 + +BUILD_DEPENDS= gmake:devel/gmake + +USES= python:3.6+ shebangfix +USE_PYTHON= distutils autoplist + +SHEBANG_FILES= src/pynauty/tests/test_minimal.py + +BINARY_ALIAS= make=${GMAKE} python3=${PYTHON_CMD} + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pynauty/nautywrap*.so + +.include diff --git a/math/py-pynauty/distinfo b/math/py-pynauty/distinfo new file mode 100644 index 000000000000..fd7f06b8dc6d --- /dev/null +++ b/math/py-pynauty/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1629593014 +SHA256 (pynauty-1.0.2.tar.gz) = 771c6254fd89760ed5ad057676fbe59d9abb898352652e9774a0d43dd6c50096 +SIZE (pynauty-1.0.2.tar.gz) = 1862748 diff --git a/math/py-pynauty/pkg-descr b/math/py-pynauty/pkg-descr new file mode 100644 index 000000000000..5ad7b7a70959 --- /dev/null +++ b/math/py-pynauty/pkg-descr @@ -0,0 +1,6 @@ +Pynauty can be used to compare graphs for isomorphism and to determine their +automorphism group in a Python programming environment. Pynauty is a Python/C +extension module using library components from the Nauty package by Brendan +McKay. + +WWW: https://github.com/pdobsan/pynauty