aboutsummaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2021-01-03 19:58:29 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2021-01-03 19:58:29 +0000
commit30dadc0dd5e9dcb5545c56d283ca556b3b341e91 (patch)
tree53e1f325288182e59013b6f89b052e5b263795b2 /converters
parent9c6b482b20e4f96d63b9ac5afb198bfc8acf09b3 (diff)
downloadports-30dadc0dd5e9dcb5545c56d283ca556b3b341e91.tar.gz
ports-30dadc0dd5e9dcb5545c56d283ca556b3b341e91.zip
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
Notes
Notes: svn path=/head/; revision=560057
Diffstat (limited to 'converters')
-rw-r--r--converters/Makefile1
-rw-r--r--converters/rubygem-base64/Makefile21
-rw-r--r--converters/rubygem-base64/distinfo3
-rw-r--r--converters/rubygem-base64/pkg-descr5
4 files changed, 30 insertions, 0 deletions
diff --git a/converters/Makefile b/converters/Makefile
index c7c8dce63eb5..9c85cb220c75 100644
--- a/converters/Makefile
+++ b/converters/Makefile
@@ -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
diff --git a/converters/rubygem-base64/Makefile b/converters/rubygem-base64/Makefile
new file mode 100644
index 000000000000..a75445f2a6d6
--- /dev/null
+++ b/converters/rubygem-base64/Makefile
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= base64
+PORTVERSION= 0.1.0
+CATEGORIES= converters rubygems
+MASTER_SITES= RG
+
+MAINTAINER= sunpoet@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>
diff --git a/converters/rubygem-base64/distinfo b/converters/rubygem-base64/distinfo
new file mode 100644
index 000000000000..4e1c14d25952
--- /dev/null
+++ b/converters/rubygem-base64/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609598769
+SHA256 (rubygem/base64-0.1.0.gem) = 1ca71300b558526985142329759b79f03fecaf7c0f7cf8b2c7721c6f2c30105e
+SIZE (rubygem/base64-0.1.0.gem) = 8192
diff --git a/converters/rubygem-base64/pkg-descr b/converters/rubygem-base64/pkg-descr
new file mode 100644
index 000000000000..98f8b5f9c686
--- /dev/null
+++ b/converters/rubygem-base64/pkg-descr
@@ -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