Bug 180661 - New Port: devel/libfortuna Fortuna PRNG C library
Summary: New Port: devel/libfortuna Fortuna PRNG C library
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-07-19 19:40 UTC by Waitman Gobble
Modified: 2013-07-20 05:00 UTC (History)
0 users

See Also:


Attachments
libfortuna.shar (2.04 KB, text/plain)
2013-07-19 19:40 UTC, Waitman Gobble
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Waitman Gobble 2013-07-19 19:40:00 UTC
Fortuna PRNG library for generating random numbers

libfortuna is a C library based on code extracted from BSD licensed PostgreSQL
sources. It generates numbers with decent randomness.

info, tests, examples: https://dx.burplex.com/bin/libfortuna.html

tested with base clang and gcc

Thank you.
Comment 1 dfilter service freebsd_committer freebsd_triage 2013-07-20 04:58:51 UTC
Author: vanilla
Date: Sat Jul 20 03:58:42 2013
New Revision: 323332
URL: http://svnweb.freebsd.org/changeset/ports/323332

Log:
  Add libfortuna 0.1.0, fortuna PRNG Library.
  
  PR:		ports/180661
  Submitted by:	waitman@waitman.net

Added:
  head/devel/libfortuna/
  head/devel/libfortuna/Makefile   (contents, props changed)
  head/devel/libfortuna/distinfo   (contents, props changed)
  head/devel/libfortuna/pkg-descr   (contents, props changed)
  head/devel/libfortuna/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jul 20 03:37:50 2013	(r323331)
+++ head/devel/Makefile	Sat Jul 20 03:58:42 2013	(r323332)
@@ -996,6 +996,7 @@
     SUBDIR += libexplain
     SUBDIR += libffi
     SUBDIR += libfirm
+    SUBDIR += libfortuna
     SUBDIR += libfreefare
     SUBDIR += libftdi
     SUBDIR += libg19

Added: head/devel/libfortuna/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libfortuna/Makefile	Sat Jul 20 03:58:42 2013	(r323332)
@@ -0,0 +1,21 @@
+# Created by: "Waitman Gobble" <uzimac@da3m0n8t3r.com>
+# $FreeBSD$
+
+PORTNAME=	libfortuna
+PORTVERSION=	0.1.0
+CATEGORIES=	devel
+MASTER_SITES=	GH
+
+MAINTAINER=	waitman@waitman.net
+COMMENT=	Fortuna PRNG Library
+
+LICENSE=	BSD
+LICENSE_FILE=	${WRKSRC}/COPYRIGHT
+
+USE_GITHUB=	yes
+USE_LDCONFIG=	yes
+GH_ACCOUNT=	waitman
+GH_TAGNAME=	${GH_COMMIT}
+GH_COMMIT=	4a52e16
+
+.include <bsd.port.mk>

Added: head/devel/libfortuna/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libfortuna/distinfo	Sat Jul 20 03:58:42 2013	(r323332)
@@ -0,0 +1,2 @@
+SHA256 (libfortuna-0.1.0.tar.gz) = b70c49c2f5b51e5da651291ccb3e30beadc67a860e18d38e61dbfebf5c0b11a8
+SIZE (libfortuna-0.1.0.tar.gz) = 475233

Added: head/devel/libfortuna/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libfortuna/pkg-descr	Sat Jul 20 03:58:42 2013	(r323332)
@@ -0,0 +1,6 @@
+Fortuna PRNG library for generating random numbers
+
+libfortuna is a C library based on code extracted from BSD licensed PostgreSQL 
+sources. It generates numbers with decent randomness.
+
+WWW: https://dx.burplex.com/bin/libfortuna.html

Added: head/devel/libfortuna/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libfortuna/pkg-plist	Sat Jul 20 03:58:42 2013	(r323332)
@@ -0,0 +1,12 @@
+include/fortuna/blf.h
+include/fortuna/c.h
+include/fortuna/fortuna.h
+include/fortuna/internal.h
+include/fortuna/md5.h
+include/fortuna/px.h
+include/fortuna/rijndael.h
+include/fortuna/sha1.h
+include/fortuna/sha2.h
+lib/libfortuna.a
+lib/libfortuna.so
+@dirrm include/fortuna
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 2 Vanilla I. Shu freebsd_committer freebsd_triage 2013-07-20 04:58:58 UTC
State Changed
From-To: open->closed

Committed, thanks.