www/rubygem-rqrcode_core: New port

rqrcode_core is a library for encoding QR Codes in pure Ruby. It has a
simple interface with all the standard qrcode options. It was originally
adapted in 2008 from a Javascript library by Kazuhiko Arase.

Features:
* rqrcode_core is a Ruby only library. It requires no 3rd party
  libraries. Just Ruby!
* It is an encoding library. You can't decode QR Codes with it.
* The interface is simple and assumes you just want to encode a string
  into a QR Code, but also allows for encoding multiple segments.
* QR Code is trademarked by Denso Wave inc.

rqrcode_core is the basis of the popular rqrcode gem. This gem allows
you to generate different renderings of your QR Code, including png, svg
and ansi.

Sponsored by:	Nepustil
This commit is contained in:
Muhammad Moinur Rahman 2022-11-19 12:25:39 -06:00
parent 788ac8c0a8
commit dac64a7cd8
4 changed files with 37 additions and 0 deletions

View file

@ -2123,6 +2123,7 @@
SUBDIR += rubygem-roda
SUBDIR += rubygem-rqrcode
SUBDIR += rubygem-rqrcode-rails3
SUBDIR += rubygem-rqrcode_core
SUBDIR += rubygem-rss
SUBDIR += rubygem-rtlit
SUBDIR += rubygem-ruby-oembed

View file

@ -0,0 +1,18 @@
PORTNAME= rqrcode_core
PORTVERSION= 1.2.0
CATEGORIES= www rubygems
MASTER_SITES= RG
MAINTAINER= bofh@FreeBSD.org
COMMENT= Ruby library for encoding QR Codes
WWW= https://github.com/whomwah/rqrcode_core
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= gem
USE_RUBY= yes
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1668881506
SHA256 (rubygem/rqrcode_core-1.2.0.gem) = cf4989dc82d24e2877984738c4ee569308625fed2a810960f1b02d68d0308d1a
SIZE (rubygem/rqrcode_core-1.2.0.gem) = 18944

View file

@ -0,0 +1,15 @@
rqrcode_core is a library for encoding QR Codes in pure Ruby. It has a
simple interface with all the standard qrcode options. It was originally
adapted in 2008 from a Javascript library by Kazuhiko Arase.
Features:
* rqrcode_core is a Ruby only library. It requires no 3rd party
libraries. Just Ruby!
* It is an encoding library. You can't decode QR Codes with it.
* The interface is simple and assumes you just want to encode a string
into a QR Code, but also allows for encoding multiple segments.
* QR Code is trademarked by Denso Wave inc.
rqrcode_core is the basis of the popular rqrcode gem. This gem allows
you to generate different renderings of your QR Code, including png, svg
and ansi.