1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

New port: rubygem-url_safe_base64

Converts strings to/from a slightly modified base64 that contains only url-safe
characters

WWW: https://github.com/joenoon/url_safe_base64
This commit is contained in:
Torsten Zuehlsdorff 2017-06-12 10:20:17 +00:00
parent f928a2ba45
commit 7c1d0267c1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=443422
4 changed files with 26 additions and 0 deletions

View File

@ -160,6 +160,7 @@
SUBDIR += rubygem-base32
SUBDIR += rubygem-bsdconv
SUBDIR += rubygem-po_to_json
SUBDIR += rubygem-url_safe_base64
SUBDIR += shftool
SUBDIR += showkey
SUBDIR += ta2as

View File

@ -0,0 +1,18 @@
# $FreeBSD$
PORTNAME= url_safe_base64
PORTVERSION= 0.2.2
CATEGORIES= converters rubygems
MASTER_SITES= RG
MAINTAINER= ruby@FreeBSD.org
COMMENT= Converts strings to/from base64 that contains only url-safe characters
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
NO_ARCH= yes
USE_RUBY= yes
USES= gem
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1497262640
SHA256 (rubygem/url_safe_base64-0.2.2.gem) = ff2bb6fb63fc5fa34dbab2c2f9199e0b8edf76de6c77e30a3595f07a95a7faf1
SIZE (rubygem/url_safe_base64-0.2.2.gem) = 7168

View File

@ -0,0 +1,4 @@
Converts strings to/from a slightly modified base64 that contains only url-safe
characters
WWW: https://github.com/joenoon/url_safe_base64