svn commit: r472565 - in head/converters: . p5-Encode-Base58-GMP

Kirill Ponomarev krion at FreeBSD.org
Sat Jun 16 19:12:04 UTC 2018


Author: krion
Date: Sat Jun 16 19:12:02 2018
New Revision: 472565
URL: https://svnweb.freebsd.org/changeset/ports/472565

Log:
  Add converters/p5-Encode-Base58-GMP
  
  High speed Base58 encoding using GMP with BigInt and MD5 support
  
  PR:		229048
  Submitted by:	Tomohiro Hosaka <bokutin at bokut.in>

Added:
  head/converters/p5-Encode-Base58-GMP/
  head/converters/p5-Encode-Base58-GMP/Makefile   (contents, props changed)
  head/converters/p5-Encode-Base58-GMP/distinfo   (contents, props changed)
  head/converters/p5-Encode-Base58-GMP/pkg-descr   (contents, props changed)
  head/converters/p5-Encode-Base58-GMP/pkg-plist   (contents, props changed)
Modified:
  head/converters/Makefile

Modified: head/converters/Makefile
==============================================================================
--- head/converters/Makefile	Sat Jun 16 19:04:49 2018	(r472564)
+++ head/converters/Makefile	Sat Jun 16 19:12:02 2018	(r472565)
@@ -87,6 +87,7 @@
     SUBDIR += p5-Encode
     SUBDIR += p5-Encode-Base32-Crockford
     SUBDIR += p5-Encode-Base32-GMP
+    SUBDIR += p5-Encode-Base58-GMP
     SUBDIR += p5-Encode-Detect
     SUBDIR += p5-Encode-Detect-CJK
     SUBDIR += p5-Encode-DoubleEncodedUTF8

Added: head/converters/p5-Encode-Base58-GMP/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/p5-Encode-Base58-GMP/Makefile	Sat Jun 16 19:12:02 2018	(r472565)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	Encode-Base58-GMP
+PORTVERSION=	1.00
+CATEGORIES=	converters perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	bokutin at bokut.in
+COMMENT=	High speed Base58 encoding using GMP with BigInt and MD5 support
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	p5-Math-GMPz>=0:math/p5-Math-GMPz
+TEST_DEPENDS=	p5-Test-Base>=0:devel/p5-Test-Base
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/converters/p5-Encode-Base58-GMP/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/p5-Encode-Base58-GMP/distinfo	Sat Jun 16 19:12:02 2018	(r472565)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1506838544
+SHA256 (Encode-Base58-GMP-1.00.tar.gz) = 2c61d655864392700e1415da8a1d32ca9cdfc86e5a4acfa1cd959072dd1da55f
+SIZE (Encode-Base58-GMP-1.00.tar.gz) = 16049

Added: head/converters/p5-Encode-Base58-GMP/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/p5-Encode-Base58-GMP/pkg-descr	Sat Jun 16 19:12:02 2018	(r472565)
@@ -0,0 +1,3 @@
+High speed Base58 encoding using GMP with BigInt and MD5 support
+
+WWW: https://github.com/grokify/base58-gmp-perl

Added: head/converters/p5-Encode-Base58-GMP/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/p5-Encode-Base58-GMP/pkg-plist	Sat Jun 16 19:12:02 2018	(r472565)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Encode/Base58/GMP.pm
+%%PERL5_MAN3%%/Encode::Base58::GMP.3.gz


More information about the svn-ports-all mailing list