From owner-svn-ports-head@freebsd.org Tue Apr 3 23:14:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B93F7F889AB; Tue, 3 Apr 2018 23:14:58 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6CC327AF9B; Tue, 3 Apr 2018 23:14:58 +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 4DC9B3390; Tue, 3 Apr 2018 23:14:58 +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 w33NEwsW097592; Tue, 3 Apr 2018 23:14:58 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w33NEv2A097584; Tue, 3 Apr 2018 23:14:57 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201804032314.w33NEv2A097584@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 3 Apr 2018 23:14:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466386 - in head/math: . antic X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . antic X-SVN-Commit-Revision: 466386 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.25 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: Tue, 03 Apr 2018 23:14:59 -0000 Author: yuri Date: Tue Apr 3 23:14:57 2018 New Revision: 466386 URL: https://svnweb.freebsd.org/changeset/ports/466386 Log: New port: math/antic: Algebraic Number Theory In C Added: head/math/antic/ head/math/antic/Makefile (contents, props changed) head/math/antic/distinfo (contents, props changed) head/math/antic/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Apr 3 23:14:18 2018 (r466385) +++ head/math/Makefile Tue Apr 3 23:14:57 2018 (r466386) @@ -109,6 +109,7 @@ SUBDIR += ambit SUBDIR += analitza-kde4 SUBDIR += ann + SUBDIR += antic SUBDIR += apc SUBDIR += arb SUBDIR += aribas Added: head/math/antic/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/antic/Makefile Tue Apr 3 23:14:57 2018 (r466386) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= antic +DISTVERSION= g20180325 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Algebraic Number Theory In C + +LICENSE= GPLv2 + +LIB_DEPENDS= libflint.so:math/flint2 \ + libgmp.so:math/gmp \ + libmpfr.so:math/mpfr + +USES= gmake +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static +USE_GITHUB= yes +GH_ACCOUNT= wbhart +GH_TAGNAME= 0063a41 +USE_LDCONFIG= yes + +PLIST_FILES= include/antic/nf.h \ + include/antic/nf_elem.h \ + include/antic/qfb.h \ + lib/libantic.so \ + lib/libantic.so.0 \ + lib/libantic.so.0.0.1 + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libantic.so + +.include Added: head/math/antic/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/antic/distinfo Tue Apr 3 23:14:57 2018 (r466386) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522795005 +SHA256 (wbhart-antic-g20180325-0063a41_GH0.tar.gz) = a9ace5906d90e5442f40d186f825b08f4cc433b16357ddf85011bdf886ff7445 +SIZE (wbhart-antic-g20180325-0063a41_GH0.tar.gz) = 57231 Added: head/math/antic/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/antic/pkg-descr Tue Apr 3 23:14:57 2018 (r466386) @@ -0,0 +1,5 @@ +An algebraic number theory library allowing +to perform comptations with algebraic numbers +and fields. + +WWW: https://github.com/wbhart/antic