svn commit: r560057 - in head/converters: . rubygem-base64

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Jan 3 19:58:36 UTC 2021


Author: sunpoet
Date: Sun Jan  3 19:58:29 2021
New Revision: 560057
URL: https://svnweb.freebsd.org/changeset/ports/560057

Log:
  Add rubygem-base64 0.1.0
  
  The Base64 module provides for the encoding (#encode64, #strict_encode64,
  #urlsafe_encode64) and decoding (#decode64, #strict_decode64, #urlsafe_decode64)
  of binary data using a Base64 representation.
  
  WWW: https://github.com/ruby/base64

Added:
  head/converters/rubygem-base64/
  head/converters/rubygem-base64/Makefile   (contents, props changed)
  head/converters/rubygem-base64/distinfo   (contents, props changed)
  head/converters/rubygem-base64/pkg-descr   (contents, props changed)
Modified:
  head/converters/Makefile

Modified: head/converters/Makefile
==============================================================================
--- head/converters/Makefile	Sun Jan  3 19:58:24 2021	(r560056)
+++ head/converters/Makefile	Sun Jan  3 19:58:29 2021	(r560057)
@@ -157,6 +157,7 @@
     SUBDIR += rcctools
     SUBDIR += recode
     SUBDIR += rubygem-base32
+    SUBDIR += rubygem-base64
     SUBDIR += rubygem-json-ld
     SUBDIR += rubygem-json-ld-preloaded
     SUBDIR += rubygem-po_to_json

Added: head/converters/rubygem-base64/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/rubygem-base64/Makefile	Sun Jan  3 19:58:29 2021	(r560057)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	base64
+PORTVERSION=	0.1.0
+CATEGORIES=	converters rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Encode and decode binary data using a Base64 representation
+
+LICENSE=	BSD2CLAUSE RUBY
+LICENSE_COMB=	dual
+LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt
+
+USES=		gem
+USE_RUBY=	yes
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/converters/rubygem-base64/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/rubygem-base64/distinfo	Sun Jan  3 19:58:29 2021	(r560057)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609598769
+SHA256 (rubygem/base64-0.1.0.gem) = 1ca71300b558526985142329759b79f03fecaf7c0f7cf8b2c7721c6f2c30105e
+SIZE (rubygem/base64-0.1.0.gem) = 8192

Added: head/converters/rubygem-base64/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/rubygem-base64/pkg-descr	Sun Jan  3 19:58:29 2021	(r560057)
@@ -0,0 +1,5 @@
+The Base64 module provides for the encoding (#encode64, #strict_encode64,
+#urlsafe_encode64) and decoding (#decode64, #strict_decode64, #urlsafe_decode64)
+of binary data using a Base64 representation.
+
+WWW: https://github.com/ruby/base64


More information about the svn-ports-head mailing list