Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Christopher McCrory <chrismcc@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 11/18] perl-json-maybexs: new package
Date: Fri, 10 Aug 2018 09:14:55 -0700	[thread overview]
Message-ID: <20180810161502.21598-12-chrismcc@gmail.com> (raw)
In-Reply-To: <20180810161502.21598-1-chrismcc@gmail.com>

Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
---
 package/Config.in                                |  1 +
 package/perl-json-maybexs/Config.in              |  6 ++++++
 package/perl-json-maybexs/perl-json-maybexs.hash |  6 ++++++
 package/perl-json-maybexs/perl-json-maybexs.mk   | 13 +++++++++++++
 4 files changed, 26 insertions(+)
 create mode 100644 package/perl-json-maybexs/Config.in
 create mode 100644 package/perl-json-maybexs/perl-json-maybexs.hash
 create mode 100644 package/perl-json-maybexs/perl-json-maybexs.mk

diff --git a/package/Config.in b/package/Config.in
index 13a1b60588..40964d3406 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -700,6 +700,7 @@ menu "Perl libraries/modules"
 	source "package/perl-io-html/Config.in"
 	source "package/perl-io-interface/Config.in"
 	source "package/perl-io-socket-ssl/Config.in"
+	source "package/perl-json-maybexs/Config.in"
 	source "package/perl-json-tiny/Config.in"
 	source "package/perl-libwww-perl/Config.in"
 	source "package/perl-lwp-mediatypes/Config.in"
diff --git a/package/perl-json-maybexs/Config.in b/package/perl-json-maybexs/Config.in
new file mode 100644
index 0000000000..1db82c3684
--- /dev/null
+++ b/package/perl-json-maybexs/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_JSON_MAYBEXS
+	bool "perl-json-maybexs"
+	help
+	  Use Cpanel::JSON::XS with a fallback to JSON::XS and JSON::PP
+
+	  https://metacpan.org/release/JSON-MaybeXS
diff --git a/package/perl-json-maybexs/perl-json-maybexs.hash b/package/perl-json-maybexs/perl-json-maybexs.hash
new file mode 100644
index 0000000000..c8bf172aaa
--- /dev/null
+++ b/package/perl-json-maybexs/perl-json-maybexs.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    db61fb5515f8e2f19709a317e26dde42 JSON-MaybeXS-1.004000.tar.gz
+sha256 59bda02e8f4474c73913723c608b539e2452e16c54ed7f0150c01aad06e0a126 JSON-MaybeXS-1.004000.tar.gz
+
+# computed by scancpan
+sha256 d972e00126c5337e88d81d64fc349a3f4c54841075f4180a1145441d30c86f83 README
diff --git a/package/perl-json-maybexs/perl-json-maybexs.mk b/package/perl-json-maybexs/perl-json-maybexs.mk
new file mode 100644
index 0000000000..b4eaccddcb
--- /dev/null
+++ b/package/perl-json-maybexs/perl-json-maybexs.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-json-maybexs
+#
+################################################################################
+
+PERL_JSON_MAYBEXS_VERSION = 1.004000
+PERL_JSON_MAYBEXS_SOURCE = JSON-MaybeXS-$(PERL_JSON_MAYBEXS_VERSION).tar.gz
+PERL_JSON_MAYBEXS_SITE = $(BR2_CPAN_MIRROR)/authors/id/H/HA/HAARG
+PERL_JSON_MAYBEXS_LICENSE = Artistic or GPL-1.0+
+PERL_JSON_MAYBEXS_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
2.14.4

  parent reply	other threads:[~2018-08-10 16:14 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
2018-08-10 16:14 ` [Buildroot] [PATCH 01/18] perl-appconfig: new package Christopher McCrory
2018-08-12 16:24   ` François Perrad
2018-08-12 21:10   ` Thomas Petazzoni
2018-08-12 21:11   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 02/18] perl-astro-suntime: " Christopher McCrory
2018-08-12 16:26   ` François Perrad
2018-08-12 21:14   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 03/18] perl-cgi: " Christopher McCrory
2018-08-13 10:04   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 04/18] perl-class-std: " Christopher McCrory
2018-08-12 16:28   ` François Perrad
2018-08-12 21:17   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 05/18] perl-data-uuid: " Christopher McCrory
2018-08-12 16:29   ` François Perrad
2018-08-12 21:27   ` Thomas Petazzoni
2018-08-13 13:46     ` Christopher McCrory
2018-08-13 21:21       ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 06/18] perl-date-manip: " Christopher McCrory
2018-08-12 16:29   ` François Perrad
2018-08-12 21:30   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 07/18] perl-dbi: " Christopher McCrory
2018-08-12 16:30   ` François Perrad
2018-08-12 21:36   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 08/18] perl-device-serialport: " Christopher McCrory
2018-08-12 16:31   ` François Perrad
2018-08-12 21:38   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 09/18] perl-file-slurp: " Christopher McCrory
2018-08-12 16:32   ` François Perrad
2018-08-12 21:41   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 10/18] perl-io-interface: " Christopher McCrory
2018-08-12 16:33   ` François Perrad
2018-08-12 21:44   ` Thomas Petazzoni
2018-08-10 16:14 ` Christopher McCrory [this message]
2018-08-12 16:34   ` [Buildroot] [PATCH 11/18] perl-json-maybexs: " François Perrad
2018-08-12 21:46   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 12/18] perl-module-runtime: " Christopher McCrory
2018-08-12 16:34   ` François Perrad
2018-08-13  7:39   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 13/18] perl-number-bytes-human: " Christopher McCrory
2018-08-12 16:35   ` François Perrad
2018-08-13  9:50   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 14/18] perl-params-util: " Christopher McCrory
2018-08-12 16:36   ` François Perrad
2018-08-13  9:52   ` Thomas Petazzoni
2018-08-10 16:14 ` [Buildroot] [PATCH 15/18] perl-sub-install: " Christopher McCrory
2018-08-12 16:37   ` François Perrad
2018-08-13 10:00   ` Thomas Petazzoni
2018-08-10 16:15 ` [Buildroot] [PATCH 16/18] perl-sys-meminfo: " Christopher McCrory
2018-08-12 16:38   ` François Perrad
2018-08-13 10:01   ` Thomas Petazzoni
2018-08-10 16:15 ` [Buildroot] [PATCH 17/18] perl-sys-mmap: " Christopher McCrory
2018-08-12 16:39   ` François Perrad
2018-08-13 10:02   ` Thomas Petazzoni
2018-08-10 16:15 ` [Buildroot] [PATCH 18/18] Add to DEVELOPERS file Christopher McCrory
2018-08-10 21:10   ` Thomas Petazzoni
2018-08-10 22:12     ` Christopher McCrory
2018-08-13 10:02   ` Thomas Petazzoni
2018-08-10 21:09 ` [Buildroot] [PATCH 00/18] more perl modules Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180810161502.21598-12-chrismcc@gmail.com \
    --to=chrismcc@gmail.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox