pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Initial import of fplll version 5.2.0.



Module Name:	pkgsrc-wip
Committed By:	Alexander Nasonov <alnsn%yandex.ru@localhost>
Pushed By:	alnsn
Date:		Sat May 5 10:02:04 2018 +0100
Changeset:	966b0d8817fc104ad9efaf0173fa7b72f0e30c3a

Added Files:
	fplll/DESCR
	fplll/Makefile
	fplll/PLIST
	fplll/buildlink3.mk
	fplll/distinfo

Log Message:
Initial import of fplll version 5.2.0.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=966b0d8817fc104ad9efaf0173fa7b72f0e30c3a

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 fplll/DESCR         | 10 ++++++++++
 fplll/Makefile      | 25 +++++++++++++++++++++++++
 fplll/PLIST         | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 fplll/buildlink3.mk | 16 ++++++++++++++++
 fplll/distinfo      |  6 ++++++
 5 files changed, 105 insertions(+)

diffs:
diff --git a/fplll/DESCR b/fplll/DESCR
new file mode 100644
index 0000000000..92cc048023
--- /dev/null
+++ b/fplll/DESCR
@@ -0,0 +1,10 @@
+The library contains implementations of several lattice algorithms.
+The implementation relies of floating-point orthogonalization, and
+LLL is central to the code, hence the name.
+
+Other algorithms provided by the library include
+
+ - BKZ/BKZ-2.0 with support of slide reduction and self dual BKZ.
+ - Kannan-Fincke-Pohst algorithm that finds the shortest non-zero
+   lattic vector.
+ - GaussSieve algorithm for the same problem as above.
diff --git a/fplll/Makefile b/fplll/Makefile
new file mode 100644
index 0000000000..77ab3e72f6
--- /dev/null
+++ b/fplll/Makefile
@@ -0,0 +1,25 @@
+# $NetBSD$
+#
+
+DISTNAME=	fplll-5.2.0
+CATEGORIES=	math
+MASTER_SITES=	${MASTER_SITE_GITHUB:=fplll/}
+GITHUB_PROJECT=	${DISTNAME:S/-${PKGVERSION}//}
+
+MAINTAINER=	alnsn%NetBSD.org@localhost
+HOMEPAGE=	http://perso.ens-lyon.fr/damien.stehle/#software
+COMMENT=	Lattice algorithms using floating-point arithmetic
+LICENSE=	gnu-lgpl-v2.1
+
+GNU_CONFIGURE=	yes
+USE_LIBTOOL=	yes
+USE_TOOLS+=	gmake autoconf automake
+USE_LANGUAGES=	c c++
+
+pre-configure:
+	cd ${WRKSRC} && ./autogen.sh
+
+.include "../../devel/gmp/buildlink3.mk"
+BUILDLINK_API_DEPENDS.mpfr+=	mpfr>=2.0.3
+.include "../../math/mpfr/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/fplll/PLIST b/fplll/PLIST
new file mode 100644
index 0000000000..50dc259be5
--- /dev/null
+++ b/fplll/PLIST
@@ -0,0 +1,48 @@
+@comment $NetBSD$
+bin/fplll
+bin/latsieve
+bin/latticegen
+include/fplll.h
+include/fplll/bkz.h
+include/fplll/bkz_param.h
+include/fplll/defs.h
+include/fplll/enum/enumerate.h
+include/fplll/enum/enumerate_base.h
+include/fplll/enum/enumerate_ext.h
+include/fplll/enum/evaluator.h
+include/fplll/fplll.h
+include/fplll/fplll_config.h
+include/fplll/gso.h
+include/fplll/gso_gram.h
+include/fplll/gso_interface.h
+include/fplll/lll.h
+include/fplll/nr/dpe.h
+include/fplll/nr/matrix.cpp
+include/fplll/nr/matrix.h
+include/fplll/nr/nr.h
+include/fplll/nr/nr_FP.inl
+include/fplll/nr/nr_FP_d.inl
+include/fplll/nr/nr_FP_dd.inl
+include/fplll/nr/nr_FP_dpe.inl
+include/fplll/nr/nr_FP_ld.inl
+include/fplll/nr/nr_FP_misc.inl
+include/fplll/nr/nr_FP_mpfr.inl
+include/fplll/nr/nr_FP_qd.inl
+include/fplll/nr/nr_Z.inl
+include/fplll/nr/nr_Z_d.inl
+include/fplll/nr/nr_Z_l.inl
+include/fplll/nr/nr_Z_misc.inl
+include/fplll/nr/nr_Z_mpz.inl
+include/fplll/nr/nr_rand.inl
+include/fplll/nr/numvect.h
+include/fplll/pruner.h
+include/fplll/sieve/sampler_basic.h
+include/fplll/sieve/sieve_common.h
+include/fplll/sieve/sieve_gauss.h
+include/fplll/sieve/sieve_gauss_str.h
+include/fplll/svpcvp.h
+include/fplll/util.h
+include/fplll/wrapper.h
+lib/libfplll.la
+lib/pkgconfig/fplll.pc
+share/fplll/strategies/default.json
diff --git a/fplll/buildlink3.mk b/fplll/buildlink3.mk
new file mode 100644
index 0000000000..839b717c5a
--- /dev/null
+++ b/fplll/buildlink3.mk
@@ -0,0 +1,16 @@
+# $NetBSD$
+
+BUILDLINK_TREE+=	fplll
+
+.if !defined(FPLLL_BUILDLINK3_MK)
+FPLLL_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.fplll+=	fplll>=5.2.0
+BUILDLINK_PKGSRCDIR.fplll?=	../../wip/fplll
+
+
+.include "../../devel/gmp/buildlink3.mk"
+.include "../../math/mpfr/buildlink3.mk"
+.endif	# FPLLL_BUILDLINK3_MK
+
+BUILDLINK_TREE+=	-fplll
diff --git a/fplll/distinfo b/fplll/distinfo
new file mode 100644
index 0000000000..cddf4dc03e
--- /dev/null
+++ b/fplll/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (fplll-5.2.0.tar.gz) = d3e5558dc8b7e7b978bff1428620186f33993152
+RMD160 (fplll-5.2.0.tar.gz) = c2311650853d637763308d23e208f0531b9a1a0f
+SHA512 (fplll-5.2.0.tar.gz) = 1f511a91be5816aa374fa2bee2d46816ee4241ad5a50167483cd6b2193de04f4fb7f6b65733774c0feec16191384a9a7c6f3efc6e2b870173f0a6470bb5c4037
+Size (fplll-5.2.0.tar.gz) = 969112 bytes


Home | Main Index | Thread Index | Old Index