pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/ruby-rqrcode_core textproc/ruby-rqrcode_core:...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f739166f636e
branches:  trunk
changeset: 452411:f739166f636e
user:      taca <taca%pkgsrc.org@localhost>
date:      Sun May 09 15:12:46 2021 +0000

description:
textproc/ruby-rqrcode_core: add package version 1.0.0

RQRCodeCore

rqrcode_core is a Ruby library for encoding QR Codes.  The simple interface
(with no runtime dependencies) allows you to create QR Code data structures.
It was originally adapted in 2008 from a Javascript library by Kazuhiko
Arase: https://github.com/kazuhikoarase.

Features

* rqrcode_core is a ruby only library. It requires no native 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.
* QR code is trademarked by Denso Wave inc.

rqrcode_core is the basis of the popular rqrcode gem:
https://github.com/whomwah/rqrcode.  This gem allows you to generate
different renderings of your QR code, including png, svg and ansi.

diffstat:

 textproc/ruby-rqrcode_core/DESCR    |  19 +++++++++++++++++++
 textproc/ruby-rqrcode_core/Makefile |  14 ++++++++++++++
 textproc/ruby-rqrcode_core/PLIST    |  26 ++++++++++++++++++++++++++
 textproc/ruby-rqrcode_core/distinfo |   6 ++++++
 4 files changed, 65 insertions(+), 0 deletions(-)

diffs (81 lines):

diff -r 9de3223c5e16 -r f739166f636e textproc/ruby-rqrcode_core/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/ruby-rqrcode_core/DESCR  Sun May 09 15:12:46 2021 +0000
@@ -0,0 +1,19 @@
+RQRCodeCore
+
+rqrcode_core is a Ruby library for encoding QR Codes.  The simple interface
+(with no runtime dependencies) allows you to create QR Code data structures.
+It was originally adapted in 2008 from a Javascript library by Kazuhiko
+Arase: https://github.com/kazuhikoarase.
+
+Features
+
+* rqrcode_core is a ruby only library. It requires no native 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.
+* QR code is trademarked by Denso Wave inc.
+
+rqrcode_core is the basis of the popular rqrcode gem:
+https://github.com/whomwah/rqrcode.  This gem allows you to generate
+different renderings of your QR code, including png, svg and ansi.
diff -r 9de3223c5e16 -r f739166f636e textproc/ruby-rqrcode_core/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/ruby-rqrcode_core/Makefile       Sun May 09 15:12:46 2021 +0000
@@ -0,0 +1,14 @@
+# $NetBSD: Makefile,v 1.1 2021/05/09 15:12:46 taca Exp $
+
+DISTNAME=      rqrcode_core-1.0.0
+CATEGORIES=    textproc
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/whomwah/rqrcode_core
+COMMENT=       Ruby library to encode QR Codes
+LICENSE=       mit
+
+USE_LANGUAGES= # none
+
+.include "../../lang/ruby/gem.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 9de3223c5e16 -r f739166f636e textproc/ruby-rqrcode_core/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/ruby-rqrcode_core/PLIST  Sun May 09 15:12:46 2021 +0000
@@ -0,0 +1,26 @@
+@comment $NetBSD: PLIST,v 1.1 2021/05/09 15:12:46 taca Exp $
+${GEM_HOME}/cache/${GEM_NAME}.gem
+${GEM_LIBDIR}/.github/workflows/ruby.yml
+${GEM_LIBDIR}/.gitignore
+${GEM_LIBDIR}/CHANGELOG.md
+${GEM_LIBDIR}/Gemfile
+${GEM_LIBDIR}/Gemfile.lock
+${GEM_LIBDIR}/LICENSE.txt
+${GEM_LIBDIR}/README.md
+${GEM_LIBDIR}/Rakefile
+${GEM_LIBDIR}/bin/console
+${GEM_LIBDIR}/bin/setup
+${GEM_LIBDIR}/lib/rqrcode_core.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode/qr_8bit_byte.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode/qr_alphanumeric.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode/qr_bit_buffer.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode/qr_code.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode/qr_math.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode/qr_numeric.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode/qr_polynomial.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode/qr_rs_block.rb
+${GEM_LIBDIR}/lib/rqrcode_core/qrcode/qr_util.rb
+${GEM_LIBDIR}/lib/rqrcode_core/version.rb
+${GEM_LIBDIR}/rqrcode_core.gemspec
+${GEM_HOME}/specifications/${GEM_NAME}.gemspec
diff -r 9de3223c5e16 -r f739166f636e textproc/ruby-rqrcode_core/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/ruby-rqrcode_core/distinfo       Sun May 09 15:12:46 2021 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/05/09 15:12:46 taca Exp $
+
+SHA1 (rqrcode_core-1.0.0.gem) = d335f6afb751aa49f4c52061b41eda69a42d09e2
+RMD160 (rqrcode_core-1.0.0.gem) = a48b054d42ea0cbd4b0ca9d3f5b0919dd86544d5
+SHA512 (rqrcode_core-1.0.0.gem) = 446015d8fd2dad0a6129056de678774a653a808a9cce50edd155d65ec444d631186d178e638b92c9ea0948e5eda1dfca855d97be8ab9a7a31493a6180a606992
+Size (rqrcode_core-1.0.0.gem) = 18944 bytes



Home | Main Index | Thread Index | Old Index