diff options
author | Joseph Mingrone <jrm@FreeBSD.org> | 2017-07-25 20:08:07 +0000 |
---|---|---|
committer | Joseph Mingrone <jrm@FreeBSD.org> | 2017-07-25 20:08:07 +0000 |
commit | b2a52918d4dbddc10121b19b1987da619fbeab8b (patch) | |
tree | 5418bac56a15c56782e0657532e20dd10537d204 /security | |
parent | 4c0cbdf56249e866f6f847849ef204b997713e50 (diff) | |
download | freebsd-ports-b2a52918d4dbddc10121b19b1987da619fbeab8b.zip |
rubygem-webpush: Encryption utilities for Web Push payload
WWW: https://github.com/zaru/webpush
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/rubygem-webpush/Makefile | 18 | ||||
-rw-r--r-- | security/rubygem-webpush/distinfo | 3 | ||||
-rw-r--r-- | security/rubygem-webpush/pkg-descr | 6 |
4 files changed, 28 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index f82fad401e48..d7b8d9d081c9 100644 --- a/security/Makefile +++ b/security/Makefile @@ -1093,6 +1093,7 @@ SUBDIR += rubygem-sshkit SUBDIR += rubygem-timfel-krb5 SUBDIR += rubygem-twitter_oauth + SUBDIR += rubygem-webpush SUBDIR += s2n SUBDIR += safesh SUBDIR += samba-virusfilter diff --git a/security/rubygem-webpush/Makefile b/security/rubygem-webpush/Makefile new file mode 100644 index 000000000000..3843a9c550e5 --- /dev/null +++ b/security/rubygem-webpush/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= webpush +PORTVERSION= 0.3.2 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= jrm@FreeBSD.org +COMMENT= Encryption utilities for Web Push payload + +LICENSE= MIT + +USE_RUBY= yes +USES= gem + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/security/rubygem-webpush/distinfo b/security/rubygem-webpush/distinfo new file mode 100644 index 000000000000..3580fef40771 --- /dev/null +++ b/security/rubygem-webpush/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1501013068 +SHA256 (rubygem/webpush-0.3.2.gem) = 2ed7a49583eb3cc7fb869a20e3a672e55039d7db13c28cc8fbfbbcb535233822 +SIZE (rubygem/webpush-0.3.2.gem) = 13824 diff --git a/security/rubygem-webpush/pkg-descr b/security/rubygem-webpush/pkg-descr new file mode 100644 index 000000000000..a05e63b390e8 --- /dev/null +++ b/security/rubygem-webpush/pkg-descr @@ -0,0 +1,6 @@ +This gem makes it possible to send push messages to web browsers from Ruby +backends using the Web Push Protocol. It supports Message Encryption for Web +Push to send messages securely from server to user agent. Payload is supported +by Chrome50+, Firefox48+. + +WWW: https://github.com/zaru/webpush |