1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

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
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2021-01-03 19:58:29 +00:00
parent 9c6b482b20
commit 30dadc0dd5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=560057
4 changed files with 30 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1609598769
SHA256 (rubygem/base64-0.1.0.gem) = 1ca71300b558526985142329759b79f03fecaf7c0f7cf8b2c7721c6f2c30105e
SIZE (rubygem/base64-0.1.0.gem) = 8192

View File

@ -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