svn commit: r486652 - in head/math: . flintqs

Yuri Victorovich yuri at FreeBSD.org
Wed Dec 5 06:04:54 UTC 2018


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 at 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/


More information about the svn-ports-all mailing list