diff options
author | tz <tz@FreeBSD.org> | 2017-06-12 18:20:17 +0800 |
---|---|---|
committer | tz <tz@FreeBSD.org> | 2017-06-12 18:20:17 +0800 |
commit | 0d152617b0a704500b2d3a36278b96a10dc49085 (patch) | |
tree | eed80c0d42832791edbd6cf69edeacf57fc01f90 /converters | |
parent | eec42dd40fb98dc1d8009e90560d9756b1de5097 (diff) | |
download | freebsd-ports-gnome-0d152617b0a704500b2d3a36278b96a10dc49085.tar.gz freebsd-ports-gnome-0d152617b0a704500b2d3a36278b96a10dc49085.tar.zst freebsd-ports-gnome-0d152617b0a704500b2d3a36278b96a10dc49085.zip |
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
Diffstat (limited to 'converters')
-rw-r--r-- | converters/Makefile | 1 | ||||
-rw-r--r-- | converters/rubygem-url_safe_base64/Makefile | 18 | ||||
-rw-r--r-- | converters/rubygem-url_safe_base64/distinfo | 3 | ||||
-rw-r--r-- | converters/rubygem-url_safe_base64/pkg-descr | 4 |
4 files changed, 26 insertions, 0 deletions
diff --git a/converters/Makefile b/converters/Makefile index 2233821c6d70..ec1358d6cb27 100644 --- a/converters/Makefile +++ b/converters/Makefile @@ -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 diff --git a/converters/rubygem-url_safe_base64/Makefile b/converters/rubygem-url_safe_base64/Makefile new file mode 100644 index 000000000000..a6dceb92055e --- /dev/null +++ b/converters/rubygem-url_safe_base64/Makefile @@ -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> diff --git a/converters/rubygem-url_safe_base64/distinfo b/converters/rubygem-url_safe_base64/distinfo new file mode 100644 index 000000000000..1a563567b255 --- /dev/null +++ b/converters/rubygem-url_safe_base64/distinfo @@ -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 diff --git a/converters/rubygem-url_safe_base64/pkg-descr b/converters/rubygem-url_safe_base64/pkg-descr new file mode 100644 index 000000000000..6748b922b2be --- /dev/null +++ b/converters/rubygem-url_safe_base64/pkg-descr @@ -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 |