From owner-svn-ports-head@freebsd.org Mon Mar 23 06:31:12 2020 Return-Path: Delivered-To: svn-ports-head@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 AEFB8279FA9; Mon, 23 Mar 2020 06:31:12 +0000 (UTC) (envelope-from yuri@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48m4Jw43Zpz4JFC; Mon, 23 Mar 2020 06:31:12 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1D227A2EB; Mon, 23 Mar 2020 06:31:12 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02N6VBgc010318; Mon, 23 Mar 2020 06:31:11 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02N6VBwN010315; Mon, 23 Mar 2020 06:31:11 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202003230631.02N6VBwN010315@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 23 Mar 2020 06:31:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528952 - in head/math: . cudd X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . cudd X-SVN-Commit-Revision: 528952 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Mar 2020 06:31:12 -0000 Author: yuri Date: Mon Mar 23 06:31:10 2020 New Revision: 528952 URL: https://svnweb.freebsd.org/changeset/ports/528952 Log: New port: math/cudd: Package for the manipulation of Binary Decision Diagrams (BDDs), etc Added: head/math/cudd/ head/math/cudd/Makefile (contents, props changed) head/math/cudd/distinfo (contents, props changed) head/math/cudd/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Mon Mar 23 05:24:26 2020 (r528951) +++ head/math/Makefile Mon Mar 23 06:31:10 2020 (r528952) @@ -202,6 +202,7 @@ SUBDIR += cryptominisat SUBDIR += csdp SUBDIR += ctl-sat + SUBDIR += cudd SUBDIR += curv SUBDIR += cvc3 SUBDIR += cvc4 Added: head/math/cudd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cudd/Makefile Mon Mar 23 06:31:10 2020 (r528952) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= cudd +DISTVERSION= 3.0.0 +CATEGORIES= math +MASTER_SITES= https://davidkebo.com/source/cudd_versions/ + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Package for the manipulation of Binary Decision Diagrams (BDDs), etc + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= gmake libtool +USE_LDCONFIG= yes + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-shared + +PLIST_FILES= include/cudd.h \ + lib/libcudd-3.0.0.so.0 \ + lib/libcudd-3.0.0.so.0.0.0 \ + lib/libcudd.a \ + lib/libcudd.so + +.include Added: head/math/cudd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cudd/distinfo Mon Mar 23 06:31:10 2020 (r528952) @@ -0,0 +1,3 @@ +TIMESTAMP = 1584938668 +SHA256 (cudd-3.0.0.tar.gz) = b8e966b4562c96a03e7fbea239729587d7b395d53cadcc39a7203b49cf7eeb69 +SIZE (cudd-3.0.0.tar.gz) = 1175302 Added: head/math/cudd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cudd/pkg-descr Mon Mar 23 06:31:10 2020 (r528952) @@ -0,0 +1,5 @@ +CUDD stands for Colorado University Decision Diagram. It is a package for the +manipulation of Binary Decision Diagrams (BDDs), Algebraic Decision Diagrams +(ADDs) and Zero-suppressed Binary Decision Diagrams (ZDDs). + +WWW: https://davidkebo.com/cudd