From owner-dev-commits-ports-main@freebsd.org Wed Sep 29 05:34:29 2021 Return-Path: Delivered-To: dev-commits-ports-main@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 E7CD066C025; Wed, 29 Sep 2021 05:34:29 +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 4HK4nK5twvz4Sc8; Wed, 29 Sep 2021 05:34:29 +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 AA09C12A0A; Wed, 29 Sep 2021 05:34:29 +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 18T5YT4B048657; Wed, 29 Sep 2021 05:34:29 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18T5YTlK048656; Wed, 29 Sep 2021 05:34:29 GMT (envelope-from git) Date: Wed, 29 Sep 2021 05:34:29 GMT Message-Id: <202109290534.18T5YTlK048656@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: 3300bf124cb2 - main - math/petanque: New port: Library that helps manipulate symbolic boolean expressions 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: 3300bf124cb2c160729141eab0d1a6e9ed23c18c Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Sep 2021 05:34:30 -0000 The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=3300bf124cb2c160729141eab0d1a6e9ed23c18c commit 3300bf124cb2c160729141eab0d1a6e9ed23c18c Author: Yuri Victorovich AuthorDate: 2021-09-29 05:30:35 +0000 Commit: Yuri Victorovich CommitDate: 2021-09-29 05:33:23 +0000 math/petanque: New port: Library that helps manipulate symbolic boolean expressions --- math/Makefile | 1 + math/petanque/Makefile | 24 ++++++++++++++++++++++++ math/petanque/distinfo | 3 +++ math/petanque/files/patch-CMakeLists.txt | 13 +++++++++++++ math/petanque/pkg-descr | 3 +++ math/petanque/pkg-plist | 13 +++++++++++++ 6 files changed, 57 insertions(+) diff --git a/math/Makefile b/math/Makefile index fcf99bcdc742..bc7e1deff7f0 100644 --- a/math/Makefile +++ b/math/Makefile @@ -752,6 +752,7 @@ SUBDIR += pecl-bitset SUBDIR += pecl-stats2 SUBDIR += permlib + SUBDIR += petanque SUBDIR += petiga SUBDIR += php73-bcmath SUBDIR += php73-gmp diff --git a/math/petanque/Makefile b/math/petanque/Makefile new file mode 100644 index 000000000000..88905189b9d8 --- /dev/null +++ b/math/petanque/Makefile @@ -0,0 +1,24 @@ +PORTNAME= petanque +DISTVERSIONPREFIX= release- +DISTVERSION= 1.1.0 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Library that helps manipulate symbolic boolean expressions + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= cmake:testing compiler:c++14-lang +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= quarkslab +GH_PROJECT= arybo + +WRKSRC_SUBDIR= ${PORTNAME} + +CMAKE_ON= BUILD_SHARED_LIBS +CMAKE_TESTING_ON= WITH_TESTS # tests fail to find TBB, see https://github.com/quarkslab/arybo/issues/29 + +.include diff --git a/math/petanque/distinfo b/math/petanque/distinfo new file mode 100644 index 000000000000..86999650e0ba --- /dev/null +++ b/math/petanque/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1632891698 +SHA256 (quarkslab-arybo-release-1.1.0_GH0.tar.gz) = 96749f152e366c16803c9239e05d15cc9d3f1c156203064519c325be66a57acb +SIZE (quarkslab-arybo-release-1.1.0_GH0.tar.gz) = 940821 diff --git a/math/petanque/files/patch-CMakeLists.txt b/math/petanque/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..1b221a8caa89 --- /dev/null +++ b/math/petanque/files/patch-CMakeLists.txt @@ -0,0 +1,13 @@ +--- CMakeLists.txt.orig 2020-03-28 18:16:21 UTC ++++ CMakeLists.txt +@@ -16,8 +16,8 @@ include_directories(${Boost_INCLUDE_DIRS}) + include_directories(${CMAKE_SOURCE_DIR}/third-party) + + add_subdirectory(src) +-add_subdirectory(bindings) +-if (NOT (DEFINED NO_TESTS OR NO_TESTS)) ++#add_subdirectory(bindings) ++if (WITH_TESTS) + add_subdirectory(tests) + endif() + if (NOT (DEFINED NO_TOOLS OR NO_TOOLS)) diff --git a/math/petanque/pkg-descr b/math/petanque/pkg-descr new file mode 100644 index 000000000000..bc9660acf4bc --- /dev/null +++ b/math/petanque/pkg-descr @@ -0,0 +1,3 @@ +petanque is a library that helps manipulate symbolic boolean expressions. + +WWW: https://github.com/quarkslab/arybo/tree/master/petanque diff --git a/math/petanque/pkg-plist b/math/petanque/pkg-plist new file mode 100644 index 000000000000..b3ac0ccda0bc --- /dev/null +++ b/math/petanque/pkg-plist @@ -0,0 +1,13 @@ +include/pa/analyses.h +include/pa/app.h +include/pa/bitfield.h +include/pa/exprs.h +include/pa/matrix.h +include/pa/prettyprinter.h +include/pa/subs.h +include/pa/symbols.h +include/pa/syms_hist.h +include/pa/syms_set.h +include/pa/traits.h +include/pa/vector.h +lib/libpetanque.so