Date: Wed, 5 Dec 2018 06:04:53 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486652 - in head/math: . flintqs Message-ID: <201812050604.wB564rK3043481@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Wed Dec 5 06:04:52 2018 New Revision: 486652 URL: https://svnweb.freebsd.org/changeset/ports/486652 Log: New port: math/flintqs: Quadratic Sieve integer factorization algorithm Added: head/math/flintqs/ head/math/flintqs/Makefile (contents, props changed) head/math/flintqs/distinfo (contents, props changed) head/math/flintqs/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Dec 5 05:19:29 2018 (r486651) +++ head/math/Makefile Wed Dec 5 06:04:52 2018 (r486652) @@ -211,6 +211,7 @@ SUBDIR += fityk SUBDIR += flann SUBDIR += flint2 + SUBDIR += flintqs SUBDIR += form SUBDIR += fpc-fftw SUBDIR += fpc-gmp Added: head/math/flintqs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/flintqs/Makefile Wed Dec 5 06:04:52 2018 (r486652) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= FlintQS +DISTVERSIONPREFIX= v +DISTVERSION= 1.0 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Quadratic Sieve integer factorization algorithm + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libgmp.so:math/gmp + +USES= autoreconf gmake localbase:ldflags +GNU_CONFIGURE= yes +USE_GITHUB= yes +GH_ACCOUNT= sagemath + +PLIST_FILES= bin/QuadraticSieve + +.include <bsd.port.mk> Added: head/math/flintqs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/flintqs/distinfo Wed Dec 5 06:04:52 2018 (r486652) @@ -0,0 +1,3 @@ +TIMESTAMP = 1543985253 +SHA256 (sagemath-FlintQS-v1.0_GH0.tar.gz) = b983052f267988192c9ec59c9d2754470e5f2db74b45e364cf7ad62f349bc9eb +SIZE (sagemath-FlintQS-v1.0_GH0.tar.gz) = 43549 Added: head/math/flintqs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/flintqs/pkg-descr Wed Dec 5 06:04:52 2018 (r486652) @@ -0,0 +1,4 @@ +A fast implementation of the self initialising quadratic sieve (SIMPQS), +for factoring large integers, written by William Hart. + +WWW: http://www.friedspace.com/QS/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812050604.wB564rK3043481>