All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 00/18] more perl modules
@ 2018-08-10 16:14 Christopher McCrory
  2018-08-10 16:14 ` [Buildroot] [PATCH 01/18] perl-appconfig: new package Christopher McCrory
                   ` (18 more replies)
  0 siblings, 19 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

I am working on packaging ZoneMinder into buildroot. It requires a
number of perl packages.  This first series is some of the perl bits
that do not have any dependancies, nor need any tweeks.

All were generated with the awesome scancpan script



Christopher McCrory (18):
  perl-appconfig: new package
  perl-astro-suntime: new package
  perl-cgi: new package
  perl-class-std: new package
  perl-data-uuid: new package
  perl-date-manip: new package
  perl-dbi: new package
  perl-device-serialport: new package
  perl-file-slurp: new package
  perl-io-interface: new package
  perl-json-maybexs: new package
  perl-module-runtime: new package
  perl-number-bytes-human: new package
  perl-params-util: new package
  perl-sub-install: new package
  perl-sys-meminfo: new package
  perl-sys-mmap: new package
  Add to DEVELOPERS file

 DEVELOPERS                                            | 19 +++++++++++++++++++
 package/Config.in                                     | 17 +++++++++++++++++
 package/perl-appconfig/Config.in                      |  6 ++++++
 package/perl-appconfig/perl-appconfig.hash            |  6 ++++++
 package/perl-appconfig/perl-appconfig.mk              | 13 +++++++++++++
 package/perl-astro-suntime/Config.in                  |  6 ++++++
 package/perl-astro-suntime/perl-astro-suntime.hash    |  6 ++++++
 package/perl-astro-suntime/perl-astro-suntime.mk      | 14 ++++++++++++++
 package/perl-cgi/Config.in                            | 11 +++++++++++
 package/perl-cgi/perl-cgi.hash                        |  6 ++++++
 package/perl-cgi/perl-cgi.mk                          | 14 ++++++++++++++
 package/perl-class-std/Config.in                      |  6 ++++++
 package/perl-class-std/perl-class-std.hash            |  6 ++++++
 package/perl-class-std/perl-class-std.mk              | 14 ++++++++++++++
 package/perl-data-uuid/Config.in                      | 10 ++++++++++
 package/perl-data-uuid/perl-data-uuid.hash            |  6 ++++++
 package/perl-data-uuid/perl-data-uuid.mk              | 13 +++++++++++++
 package/perl-date-manip/Config.in                     |  6 ++++++
 package/perl-date-manip/perl-date-manip.hash          |  6 ++++++
 package/perl-date-manip/perl-date-manip.mk            | 13 +++++++++++++
 package/perl-dbi/Config.in                            | 10 ++++++++++
 package/perl-dbi/perl-dbi.hash                        |  6 ++++++
 package/perl-dbi/perl-dbi.mk                          | 13 +++++++++++++
 package/perl-device-serialport/Config.in              | 10 ++++++++++
 .../perl-device-serialport.hash                       |  6 ++++++
 .../perl-device-serialport/perl-device-serialport.mk  | 12 ++++++++++++
 package/perl-file-slurp/Config.in                     |  6 ++++++
 package/perl-file-slurp/perl-file-slurp.hash          |  6 ++++++
 package/perl-file-slurp/perl-file-slurp.mk            | 13 +++++++++++++
 package/perl-io-interface/Config.in                   | 10 ++++++++++
 package/perl-io-interface/perl-io-interface.hash      |  6 ++++++
 package/perl-io-interface/perl-io-interface.mk        | 14 ++++++++++++++
 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 +++++++++++++
 package/perl-module-runtime/Config.in                 |  6 ++++++
 package/perl-module-runtime/perl-module-runtime.hash  |  6 ++++++
 package/perl-module-runtime/perl-module-runtime.mk    | 14 ++++++++++++++
 package/perl-number-bytes-human/Config.in             |  6 ++++++
 .../perl-number-bytes-human.hash                      |  6 ++++++
 .../perl-number-bytes-human.mk                        | 13 +++++++++++++
 package/perl-params-util/Config.in                    | 10 ++++++++++
 package/perl-params-util/perl-params-util.hash        |  6 ++++++
 package/perl-params-util/perl-params-util.mk          | 13 +++++++++++++
 package/perl-sub-install/Config.in                    |  6 ++++++
 package/perl-sub-install/perl-sub-install.hash        |  6 ++++++
 package/perl-sub-install/perl-sub-install.mk          | 13 +++++++++++++
 package/perl-sys-meminfo/Config.in                    | 10 ++++++++++
 package/perl-sys-meminfo/perl-sys-meminfo.hash        |  6 ++++++
 package/perl-sys-meminfo/perl-sys-meminfo.mk          | 12 ++++++++++++
 package/perl-sys-mmap/Config.in                       | 10 ++++++++++
 package/perl-sys-mmap/perl-sys-mmap.hash              |  7 +++++++
 package/perl-sys-mmap/perl-sys-mmap.mk                | 13 +++++++++++++
 53 files changed, 498 insertions(+)
 create mode 100644 package/perl-appconfig/Config.in
 create mode 100644 package/perl-appconfig/perl-appconfig.hash
 create mode 100644 package/perl-appconfig/perl-appconfig.mk
 create mode 100644 package/perl-astro-suntime/Config.in
 create mode 100644 package/perl-astro-suntime/perl-astro-suntime.hash
 create mode 100644 package/perl-astro-suntime/perl-astro-suntime.mk
 create mode 100644 package/perl-cgi/Config.in
 create mode 100644 package/perl-cgi/perl-cgi.hash
 create mode 100644 package/perl-cgi/perl-cgi.mk
 create mode 100644 package/perl-class-std/Config.in
 create mode 100644 package/perl-class-std/perl-class-std.hash
 create mode 100644 package/perl-class-std/perl-class-std.mk
 create mode 100644 package/perl-data-uuid/Config.in
 create mode 100644 package/perl-data-uuid/perl-data-uuid.hash
 create mode 100644 package/perl-data-uuid/perl-data-uuid.mk
 create mode 100644 package/perl-date-manip/Config.in
 create mode 100644 package/perl-date-manip/perl-date-manip.hash
 create mode 100644 package/perl-date-manip/perl-date-manip.mk
 create mode 100644 package/perl-dbi/Config.in
 create mode 100644 package/perl-dbi/perl-dbi.hash
 create mode 100644 package/perl-dbi/perl-dbi.mk
 create mode 100644 package/perl-device-serialport/Config.in
 create mode 100644 package/perl-device-serialport/perl-device-serialport.hash
 create mode 100644 package/perl-device-serialport/perl-device-serialport.mk
 create mode 100644 package/perl-file-slurp/Config.in
 create mode 100644 package/perl-file-slurp/perl-file-slurp.hash
 create mode 100644 package/perl-file-slurp/perl-file-slurp.mk
 create mode 100644 package/perl-io-interface/Config.in
 create mode 100644 package/perl-io-interface/perl-io-interface.hash
 create mode 100644 package/perl-io-interface/perl-io-interface.mk
 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
 create mode 100644 package/perl-module-runtime/Config.in
 create mode 100644 package/perl-module-runtime/perl-module-runtime.hash
 create mode 100644 package/perl-module-runtime/perl-module-runtime.mk
 create mode 100644 package/perl-number-bytes-human/Config.in
 create mode 100644 package/perl-number-bytes-human/perl-number-bytes-human.hash
 create mode 100644 package/perl-number-bytes-human/perl-number-bytes-human.mk
 create mode 100644 package/perl-params-util/Config.in
 create mode 100644 package/perl-params-util/perl-params-util.hash
 create mode 100644 package/perl-params-util/perl-params-util.mk
 create mode 100644 package/perl-sub-install/Config.in
 create mode 100644 package/perl-sub-install/perl-sub-install.hash
 create mode 100644 package/perl-sub-install/perl-sub-install.mk
 create mode 100644 package/perl-sys-meminfo/Config.in
 create mode 100644 package/perl-sys-meminfo/perl-sys-meminfo.hash
 create mode 100644 package/perl-sys-meminfo/perl-sys-meminfo.mk
 create mode 100644 package/perl-sys-mmap/Config.in
 create mode 100644 package/perl-sys-mmap/perl-sys-mmap.hash
 create mode 100644 package/perl-sys-mmap/perl-sys-mmap.mk

-- 
2.14.4

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 01/18] perl-appconfig: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
@ 2018-08-10 16:14 ` Christopher McCrory
  2018-08-12 16:24   ` François Perrad
                     ` (2 more replies)
  2018-08-10 16:14 ` [Buildroot] [PATCH 02/18] perl-astro-suntime: " Christopher McCrory
                   ` (17 subsequent siblings)
  18 siblings, 3 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index f5a17492c7..8b80276fb1 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -665,6 +665,7 @@ endif
 	source "package/perl/Config.in"
 if BR2_PACKAGE_PERL
 menu "Perl libraries/modules"
+	source "package/perl-appconfig/Config.in"
 	source "package/perl-convert-asn1/Config.in"
 	source "package/perl-crypt-blowfish/Config.in"
 	source "package/perl-crypt-cbc/Config.in"
diff --git a/package/perl-appconfig/Config.in b/package/perl-appconfig/Config.in
new file mode 100644
index 0000000000..ca2220f1c0
--- /dev/null
+++ b/package/perl-appconfig/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_APPCONFIG
+	bool "perl-appconfig"
+	help
+	  AppConfig is a bundle of Perl5 modules for reading configuration files and parsing command line arguments.
+
+	  https://metacpan.org/release/AppConfig
diff --git a/package/perl-appconfig/perl-appconfig.hash b/package/perl-appconfig/perl-appconfig.hash
new file mode 100644
index 0000000000..151a2e903f
--- /dev/null
+++ b/package/perl-appconfig/perl-appconfig.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    7747d9241561ed5567d5e134b8648707 AppConfig-1.71.tar.gz
+sha256 1177027025ecb09ee64d9f9f255615c04db5e14f7536c344af632032eb887b0f AppConfig-1.71.tar.gz
+
+# computed by scancpan
+sha256 0b22dd532e4123a511d14989c4169ed56b7316cf844c29c7897a1638a4616868 LICENSE
diff --git a/package/perl-appconfig/perl-appconfig.mk b/package/perl-appconfig/perl-appconfig.mk
new file mode 100644
index 0000000000..7a553e330b
--- /dev/null
+++ b/package/perl-appconfig/perl-appconfig.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-appconfig
+#
+################################################################################
+
+PERL_APPCONFIG_VERSION = 1.71
+PERL_APPCONFIG_SOURCE = AppConfig-$(PERL_APPCONFIG_VERSION).tar.gz
+PERL_APPCONFIG_SITE = $(BR2_CPAN_MIRROR)/authors/id/N/NE/NEILB
+PERL_APPCONFIG_LICENSE = Artistic or GPL-1.0+
+PERL_APPCONFIG_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 02/18] perl-astro-suntime: new package
  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-10 16:14 ` 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
                   ` (16 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index 8b80276fb1..97a108535b 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -666,6 +666,7 @@ endif
 if BR2_PACKAGE_PERL
 menu "Perl libraries/modules"
 	source "package/perl-appconfig/Config.in"
+	source "package/perl-astro-suntime/Config.in"
 	source "package/perl-convert-asn1/Config.in"
 	source "package/perl-crypt-blowfish/Config.in"
 	source "package/perl-crypt-cbc/Config.in"
diff --git a/package/perl-astro-suntime/Config.in b/package/perl-astro-suntime/Config.in
new file mode 100644
index 0000000000..22e2cb1aa2
--- /dev/null
+++ b/package/perl-astro-suntime/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_ASTRO_SUNTIME
+	bool "perl-astro-suntime"
+	help
+	  A functional module for calculating sunrise/sunset times
+
+	  https://metacpan.org/release/Astro-SunTime
diff --git a/package/perl-astro-suntime/perl-astro-suntime.hash b/package/perl-astro-suntime/perl-astro-suntime.hash
new file mode 100644
index 0000000000..e75293d4fb
--- /dev/null
+++ b/package/perl-astro-suntime/perl-astro-suntime.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    42cb8c94de8a111ed652196925c22a45 Astro-SunTime-0.06.tar.gz
+sha256 b4a44fddfc055cc42ee67bfd8939354793da7512ea04f30578d42dc6a701112a Astro-SunTime-0.06.tar.gz
+
+# computed by scancpan
+sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE
diff --git a/package/perl-astro-suntime/perl-astro-suntime.mk b/package/perl-astro-suntime/perl-astro-suntime.mk
new file mode 100644
index 0000000000..a35291b1db
--- /dev/null
+++ b/package/perl-astro-suntime/perl-astro-suntime.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-astro-suntime
+#
+################################################################################
+
+PERL_ASTRO_SUNTIME_VERSION = 0.06
+PERL_ASTRO_SUNTIME_SOURCE = Astro-SunTime-$(PERL_ASTRO_SUNTIME_VERSION).tar.gz
+PERL_ASTRO_SUNTIME_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RO/ROBF
+PERL_ASTRO_SUNTIME_DEPENDENCIES = host-perl-module-build
+PERL_ASTRO_SUNTIME_LICENSE = gpl_3
+PERL_ASTRO_SUNTIME_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 03/18] perl-cgi: new package
  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-10 16:14 ` [Buildroot] [PATCH 02/18] perl-astro-suntime: " Christopher McCrory
@ 2018-08-10 16:14 ` Christopher McCrory
  2018-08-13 10:04   ` Thomas Petazzoni
  2018-08-10 16:14 ` [Buildroot] [PATCH 04/18] perl-class-std: " Christopher McCrory
                   ` (15 subsequent siblings)
  18 siblings, 1 reply; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index 97a108535b..a05b613789 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -667,6 +667,7 @@ if BR2_PACKAGE_PERL
 menu "Perl libraries/modules"
 	source "package/perl-appconfig/Config.in"
 	source "package/perl-astro-suntime/Config.in"
+	source "package/perl-cgi/Config.in"
 	source "package/perl-convert-asn1/Config.in"
 	source "package/perl-crypt-blowfish/Config.in"
 	source "package/perl-crypt-cbc/Config.in"
diff --git a/package/perl-cgi/Config.in b/package/perl-cgi/Config.in
new file mode 100644
index 0000000000..a054ed7929
--- /dev/null
+++ b/package/perl-cgi/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_PERL_CGI
+	bool "perl-cgi"
+	depends on !BR2_STATIC_LIBS
+	select BR2_PACKAGE_PERL_HTML_PARSER
+	help
+	  Handle Common Gateway Interface requests and responses
+
+	  https://metacpan.org/module/CGI
+
+comment "perl-cgi needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-cgi/perl-cgi.hash b/package/perl-cgi/perl-cgi.hash
new file mode 100644
index 0000000000..a65b8e5446
--- /dev/null
+++ b/package/perl-cgi/perl-cgi.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    0aeb8563d533e7f83724ed068b5bfc37 CGI-4.38.tar.gz
+sha256 8c58f4a529bb92a914b22b7e64c5e31185c9854a4070a6dfad44fe5cc248e7d4 CGI-4.38.tar.gz
+
+# computed by scancpan
+sha256 c7cae89f03a970e90443b93cbf4b65d287ed20572e5d81543589c4b45c80fad8 LICENSE
diff --git a/package/perl-cgi/perl-cgi.mk b/package/perl-cgi/perl-cgi.mk
new file mode 100644
index 0000000000..b8115de6ad
--- /dev/null
+++ b/package/perl-cgi/perl-cgi.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-cgi
+#
+################################################################################
+
+PERL_CGI_VERSION = 4.38
+PERL_CGI_SOURCE = CGI-$(PERL_CGI_VERSION).tar.gz
+PERL_CGI_SITE = $(BR2_CPAN_MIRROR)/authors/id/L/LE/LEEJO
+PERL_CGI_DEPENDENCIES = perl-html-parser
+PERL_CGI_LICENSE = Artistic or GPL-1.0+
+PERL_CGI_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 04/18] perl-class-std: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (2 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 03/18] perl-cgi: " Christopher McCrory
@ 2018-08-10 16:14 ` 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
                   ` (14 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index a05b613789..d1f0947d6d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -668,6 +668,7 @@ menu "Perl libraries/modules"
 	source "package/perl-appconfig/Config.in"
 	source "package/perl-astro-suntime/Config.in"
 	source "package/perl-cgi/Config.in"
+	source "package/perl-class-std/Config.in"
 	source "package/perl-convert-asn1/Config.in"
 	source "package/perl-crypt-blowfish/Config.in"
 	source "package/perl-crypt-cbc/Config.in"
diff --git a/package/perl-class-std/Config.in b/package/perl-class-std/Config.in
new file mode 100644
index 0000000000..10734a7902
--- /dev/null
+++ b/package/perl-class-std/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_CLASS_STD
+	bool "perl-class-std"
+	help
+	  Support for creating standard "inside-out" classes
+
+	  https://metacpan.org/release/Class-Std
diff --git a/package/perl-class-std/perl-class-std.hash b/package/perl-class-std/perl-class-std.hash
new file mode 100644
index 0000000000..0cc3861416
--- /dev/null
+++ b/package/perl-class-std/perl-class-std.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    82bcc56d9769edce671b0bd0e183ec3a Class-Std-0.013.tar.gz
+sha256 bcd6d82f6c8af0fe069fced7dd165a4795b0b6e92351c7d4e5a1ab9a14fc35c6 Class-Std-0.013.tar.gz
+
+# computed by scancpan
+sha256 b8175bf3750dc54096bf1506c681b4f13262e5b82e40244e9a77730c6b72e4d6 README
diff --git a/package/perl-class-std/perl-class-std.mk b/package/perl-class-std/perl-class-std.mk
new file mode 100644
index 0000000000..2e3ba95a8b
--- /dev/null
+++ b/package/perl-class-std/perl-class-std.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-class-std
+#
+################################################################################
+
+PERL_CLASS_STD_VERSION = 0.013
+PERL_CLASS_STD_SOURCE = Class-Std-$(PERL_CLASS_STD_VERSION).tar.gz
+PERL_CLASS_STD_SITE = $(BR2_CPAN_MIRROR)/authors/id/C/CH/CHORNY
+PERL_CLASS_STD_DEPENDENCIES = host-perl-module-build
+PERL_CLASS_STD_LICENSE = Artistic or GPL-1.0+
+PERL_CLASS_STD_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 05/18] perl-data-uuid: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (3 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 04/18] perl-class-std: " Christopher McCrory
@ 2018-08-10 16:14 ` Christopher McCrory
  2018-08-12 16:29   ` François Perrad
  2018-08-12 21:27   ` Thomas Petazzoni
  2018-08-10 16:14 ` [Buildroot] [PATCH 06/18] perl-date-manip: " Christopher McCrory
                   ` (13 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index d1f0947d6d..dad6916c64 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -674,6 +674,7 @@ menu "Perl libraries/modules"
 	source "package/perl-crypt-cbc/Config.in"
 	source "package/perl-crypt-openssl-random/Config.in"
 	source "package/perl-crypt-openssl-rsa/Config.in"
+	source "package/perl-data-uuid/Config.in"
 	source "package/perl-datetime-tiny/Config.in"
 	source "package/perl-digest-hmac/Config.in"
 	source "package/perl-digest-md5/Config.in"
diff --git a/package/perl-data-uuid/Config.in b/package/perl-data-uuid/Config.in
new file mode 100644
index 0000000000..e0752c44ab
--- /dev/null
+++ b/package/perl-data-uuid/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PERL_DATA_UUID
+	bool "perl-data-uuid"
+	depends on !BR2_STATIC_LIBS
+	help
+	  Globally/Universally Unique Identifiers (GUIDs/UUIDs)
+
+	  https://metacpan.org/release/Data-UUID
+
+comment "perl-data-uuid needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-data-uuid/perl-data-uuid.hash b/package/perl-data-uuid/perl-data-uuid.hash
new file mode 100644
index 0000000000..5086936d4e
--- /dev/null
+++ b/package/perl-data-uuid/perl-data-uuid.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    7619929e8fe205a7fb83bc1c29ecbf99 Data-UUID-1.221.tar.gz
+sha256 3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667 Data-UUID-1.221.tar.gz
+
+# computed by scancpan
+sha256 0560c8eea8e1fb8173faa6c2e9b7e9f8728b8ae8250a814709a53c30b778d5fb LICENSE
diff --git a/package/perl-data-uuid/perl-data-uuid.mk b/package/perl-data-uuid/perl-data-uuid.mk
new file mode 100644
index 0000000000..24d61c6ce3
--- /dev/null
+++ b/package/perl-data-uuid/perl-data-uuid.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-data-uuid
+#
+################################################################################
+
+PERL_DATA_UUID_VERSION = 1.221
+PERL_DATA_UUID_SOURCE = Data-UUID-$(PERL_DATA_UUID_VERSION).tar.gz
+PERL_DATA_UUID_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RJ/RJBS
+PERL_DATA_UUID_LICENSE = bsd
+PERL_DATA_UUID_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 06/18] perl-date-manip: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (4 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 05/18] perl-data-uuid: " Christopher McCrory
@ 2018-08-10 16:14 ` 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
                   ` (12 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index dad6916c64..c5edc5cb76 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -675,6 +675,7 @@ menu "Perl libraries/modules"
 	source "package/perl-crypt-openssl-random/Config.in"
 	source "package/perl-crypt-openssl-rsa/Config.in"
 	source "package/perl-data-uuid/Config.in"
+	source "package/perl-date-manip/Config.in"
 	source "package/perl-datetime-tiny/Config.in"
 	source "package/perl-digest-hmac/Config.in"
 	source "package/perl-digest-md5/Config.in"
diff --git a/package/perl-date-manip/Config.in b/package/perl-date-manip/Config.in
new file mode 100644
index 0000000000..cbfb5c5b30
--- /dev/null
+++ b/package/perl-date-manip/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_DATE_MANIP
+	bool "perl-date-manip"
+	help
+	  Date manipulation routines
+
+	  https://metacpan.org/release/Date-Manip
diff --git a/package/perl-date-manip/perl-date-manip.hash b/package/perl-date-manip/perl-date-manip.hash
new file mode 100644
index 0000000000..f02f657822
--- /dev/null
+++ b/package/perl-date-manip/perl-date-manip.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    b41b0d476fd7eae3ce81324386266a85 Date-Manip-6.72.tar.gz
+sha256 38f4dd9d94b41092ca7b9da2ef72c3bb8b8c8bff6da14d785c612f3cc7a94da6 Date-Manip-6.72.tar.gz
+
+# computed by scancpan
+sha256 8ba2a138654f8b59b7e1e3ad0d4c81918b9148ff95078b172ccbb45fa241431d LICENSE
diff --git a/package/perl-date-manip/perl-date-manip.mk b/package/perl-date-manip/perl-date-manip.mk
new file mode 100644
index 0000000000..a5e1609a88
--- /dev/null
+++ b/package/perl-date-manip/perl-date-manip.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-date-manip
+#
+################################################################################
+
+PERL_DATE_MANIP_VERSION = 6.72
+PERL_DATE_MANIP_SOURCE = Date-Manip-$(PERL_DATE_MANIP_VERSION).tar.gz
+PERL_DATE_MANIP_SITE = $(BR2_CPAN_MIRROR)/authors/id/S/SB/SBECK
+PERL_DATE_MANIP_LICENSE = Artistic or GPL-1.0+
+PERL_DATE_MANIP_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 07/18] perl-dbi: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (5 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 06/18] perl-date-manip: " Christopher McCrory
@ 2018-08-10 16:14 ` 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
                   ` (11 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index c5edc5cb76..73adb62e0b 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -677,6 +677,7 @@ menu "Perl libraries/modules"
 	source "package/perl-data-uuid/Config.in"
 	source "package/perl-date-manip/Config.in"
 	source "package/perl-datetime-tiny/Config.in"
+	source "package/perl-dbi/Config.in"
 	source "package/perl-digest-hmac/Config.in"
 	source "package/perl-digest-md5/Config.in"
 	source "package/perl-digest-sha1/Config.in"
diff --git a/package/perl-dbi/Config.in b/package/perl-dbi/Config.in
new file mode 100644
index 0000000000..069669b9bc
--- /dev/null
+++ b/package/perl-dbi/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PERL_DBI
+	bool "perl-dbi"
+	depends on !BR2_STATIC_LIBS
+	help
+	  Database independent interface for Perl
+
+	  http://dbi.perl.org/
+
+comment "perl-dbi needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-dbi/perl-dbi.hash b/package/perl-dbi/perl-dbi.hash
new file mode 100644
index 0000000000..1d0b7e9ad5
--- /dev/null
+++ b/package/perl-dbi/perl-dbi.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    e77fd37fcf77fc88fde029c1b75ded54 DBI-1.641.tar.gz
+sha256 5509e532cdd0e3d91eda550578deaac29e2f008a12b64576e8c261bb92e8c2c1 DBI-1.641.tar.gz
+
+# computed by scancpan
+sha256 33453c8b0d8d474a42669ac702a13c20f39c91a34b3df4e6ca778fc2f0f711c7 LICENSE
diff --git a/package/perl-dbi/perl-dbi.mk b/package/perl-dbi/perl-dbi.mk
new file mode 100644
index 0000000000..f7ae6ca5a1
--- /dev/null
+++ b/package/perl-dbi/perl-dbi.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-dbi
+#
+################################################################################
+
+PERL_DBI_VERSION = 1.641
+PERL_DBI_SOURCE = DBI-$(PERL_DBI_VERSION).tar.gz
+PERL_DBI_SITE = $(BR2_CPAN_MIRROR)/authors/id/T/TI/TIMB
+PERL_DBI_LICENSE = Artistic or GPL-1.0+
+PERL_DBI_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 08/18] perl-device-serialport: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (6 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 07/18] perl-dbi: " Christopher McCrory
@ 2018-08-10 16:14 ` 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
                   ` (10 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
---
 package/Config.in                                          |  1 +
 package/perl-device-serialport/Config.in                   | 10 ++++++++++
 package/perl-device-serialport/perl-device-serialport.hash |  6 ++++++
 package/perl-device-serialport/perl-device-serialport.mk   | 12 ++++++++++++
 4 files changed, 29 insertions(+)
 create mode 100644 package/perl-device-serialport/Config.in
 create mode 100644 package/perl-device-serialport/perl-device-serialport.hash
 create mode 100644 package/perl-device-serialport/perl-device-serialport.mk

diff --git a/package/Config.in b/package/Config.in
index 73adb62e0b..cd01657802 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -678,6 +678,7 @@ menu "Perl libraries/modules"
 	source "package/perl-date-manip/Config.in"
 	source "package/perl-datetime-tiny/Config.in"
 	source "package/perl-dbi/Config.in"
+	source "package/perl-device-serialport/Config.in"
 	source "package/perl-digest-hmac/Config.in"
 	source "package/perl-digest-md5/Config.in"
 	source "package/perl-digest-sha1/Config.in"
diff --git a/package/perl-device-serialport/Config.in b/package/perl-device-serialport/Config.in
new file mode 100644
index 0000000000..f14e9794d0
--- /dev/null
+++ b/package/perl-device-serialport/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PERL_DEVICE_SERIALPORT
+	bool "perl-device-serialport"
+	depends on !BR2_STATIC_LIBS
+	help
+	  Linux/POSIX emulation of Win32::SerialPort functions.
+
+	  https://metacpan.org/release/Device-SerialPort
+
+comment "perl-device-serialport needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-device-serialport/perl-device-serialport.hash b/package/perl-device-serialport/perl-device-serialport.hash
new file mode 100644
index 0000000000..35ddc13d3f
--- /dev/null
+++ b/package/perl-device-serialport/perl-device-serialport.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    82c698151f934eb28c65d1838cee7d9e Device-SerialPort-1.04.tar.gz
+sha256 d392567cb39b4ea606c0e0acafd8ed72320311b995336ece5fcefcf9b150e9d7 Device-SerialPort-1.04.tar.gz
+
+# computed by scancpan
+sha256 59432e84eca65c10c4b627f8af0b00833685856b68242b816aea2a38283a124c README
diff --git a/package/perl-device-serialport/perl-device-serialport.mk b/package/perl-device-serialport/perl-device-serialport.mk
new file mode 100644
index 0000000000..635179f80a
--- /dev/null
+++ b/package/perl-device-serialport/perl-device-serialport.mk
@@ -0,0 +1,12 @@
+################################################################################
+#
+# perl-device-serialport
+#
+################################################################################
+
+PERL_DEVICE_SERIALPORT_VERSION = 1.04
+PERL_DEVICE_SERIALPORT_SOURCE = Device-SerialPort-$(PERL_DEVICE_SERIALPORT_VERSION).tar.gz
+PERL_DEVICE_SERIALPORT_SITE = $(BR2_CPAN_MIRROR)/authors/id/C/CO/COOK
+PERL_DEVICE_SERIALPORT_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 09/18] perl-file-slurp: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (7 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 08/18] perl-device-serialport: " Christopher McCrory
@ 2018-08-10 16:14 ` 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
                   ` (9 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index cd01657802..a458e56871 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -685,6 +685,7 @@ menu "Perl libraries/modules"
 	source "package/perl-encode-detect/Config.in"
 	source "package/perl-encode-locale/Config.in"
 	source "package/perl-file-listing/Config.in"
+	source "package/perl-file-slurp/Config.in"
 	source "package/perl-file-util/Config.in"
 	source "package/perl-gd/Config.in"
 	source "package/perl-gdgraph/Config.in"
diff --git a/package/perl-file-slurp/Config.in b/package/perl-file-slurp/Config.in
new file mode 100644
index 0000000000..bfd1cad186
--- /dev/null
+++ b/package/perl-file-slurp/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_FILE_SLURP
+	bool "perl-file-slurp"
+	help
+	  Simple and Efficient Reading/Writing/Modifying of Complete Files
+
+	  https://metacpan.org/release/File-Slurp
diff --git a/package/perl-file-slurp/perl-file-slurp.hash b/package/perl-file-slurp/perl-file-slurp.hash
new file mode 100644
index 0000000000..18f9e65ced
--- /dev/null
+++ b/package/perl-file-slurp/perl-file-slurp.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    7d584cd15c4f8b9547765eff8c4ef078 File-Slurp-9999.19.tar.gz
+sha256 ce29ebe995097ebd6e9bc03284714cdfa0c46dc94f6b14a56980747ea3253643 File-Slurp-9999.19.tar.gz
+
+# computed by scancpan
+sha256 17e638d011c04b1d39b300c07ccd0c57d7857b9ccdb9fe7abce1b15f0e7b0c20 README
diff --git a/package/perl-file-slurp/perl-file-slurp.mk b/package/perl-file-slurp/perl-file-slurp.mk
new file mode 100644
index 0000000000..32773ddbbc
--- /dev/null
+++ b/package/perl-file-slurp/perl-file-slurp.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-file-slurp
+#
+################################################################################
+
+PERL_FILE_SLURP_VERSION = 9999.19
+PERL_FILE_SLURP_SOURCE = File-Slurp-$(PERL_FILE_SLURP_VERSION).tar.gz
+PERL_FILE_SLURP_SITE = $(BR2_CPAN_MIRROR)/authors/id/U/UR/URI
+PERL_FILE_SLURP_LICENSE = Artistic or GPL-1.0+
+PERL_FILE_SLURP_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 10/18] perl-io-interface: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (8 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 09/18] perl-file-slurp: " Christopher McCrory
@ 2018-08-10 16:14 ` Christopher McCrory
  2018-08-12 16:33   ` François Perrad
  2018-08-12 21:44   ` Thomas Petazzoni
  2018-08-10 16:14 ` [Buildroot] [PATCH 11/18] perl-json-maybexs: " Christopher McCrory
                   ` (8 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
---
 package/Config.in                                |  1 +
 package/perl-io-interface/Config.in              | 10 ++++++++++
 package/perl-io-interface/perl-io-interface.hash |  6 ++++++
 package/perl-io-interface/perl-io-interface.mk   | 14 ++++++++++++++
 4 files changed, 31 insertions(+)
 create mode 100644 package/perl-io-interface/Config.in
 create mode 100644 package/perl-io-interface/perl-io-interface.hash
 create mode 100644 package/perl-io-interface/perl-io-interface.mk

diff --git a/package/Config.in b/package/Config.in
index a458e56871..13a1b60588 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -698,6 +698,7 @@ menu "Perl libraries/modules"
 	source "package/perl-http-message/Config.in"
 	source "package/perl-http-negotiate/Config.in"
 	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-tiny/Config.in"
 	source "package/perl-libwww-perl/Config.in"
diff --git a/package/perl-io-interface/Config.in b/package/perl-io-interface/Config.in
new file mode 100644
index 0000000000..7aa7064ec0
--- /dev/null
+++ b/package/perl-io-interface/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PERL_IO_INTERFACE
+	bool "perl-io-interface"
+	depends on !BR2_STATIC_LIBS
+	help
+	  Access and modify network interface card configuration
+
+	  https://metacpan.org/release/IO-Interface
+
+comment "perl-io-interface needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-io-interface/perl-io-interface.hash b/package/perl-io-interface/perl-io-interface.hash
new file mode 100644
index 0000000000..75e572f918
--- /dev/null
+++ b/package/perl-io-interface/perl-io-interface.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    806f97aff5a7361b6f54cd494f4cc9fd IO-Interface-1.09.tar.gz
+sha256 e63e81c52eb1e0e60ec2d983f5552d2493e117179925c96757f23c4bd9fa713a IO-Interface-1.09.tar.gz
+
+# computed by scancpan
+sha256 b5a5bf59bd1be13f7f498e5aa2ea5c0c603c04a095dcf03a06aa5b83bbccf921 LICENSE
diff --git a/package/perl-io-interface/perl-io-interface.mk b/package/perl-io-interface/perl-io-interface.mk
new file mode 100644
index 0000000000..24f4eeb0b3
--- /dev/null
+++ b/package/perl-io-interface/perl-io-interface.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-io-interface
+#
+################################################################################
+
+PERL_IO_INTERFACE_VERSION = 1.09
+PERL_IO_INTERFACE_SOURCE = IO-Interface-$(PERL_IO_INTERFACE_VERSION).tar.gz
+PERL_IO_INTERFACE_SITE = $(BR2_CPAN_MIRROR)/authors/id/L/LD/LDS
+PERL_IO_INTERFACE_DEPENDENCIES = host-perl-module-build
+PERL_IO_INTERFACE_LICENSE = Artistic or GPL-1.0+
+PERL_IO_INTERFACE_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 11/18] perl-json-maybexs: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (9 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 10/18] perl-io-interface: " Christopher McCrory
@ 2018-08-10 16:14 ` Christopher McCrory
  2018-08-12 16:34   ` François Perrad
  2018-08-12 21:46   ` Thomas Petazzoni
  2018-08-10 16:14 ` [Buildroot] [PATCH 12/18] perl-module-runtime: " Christopher McCrory
                   ` (7 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 12/18] perl-module-runtime: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (10 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 11/18] perl-json-maybexs: " Christopher McCrory
@ 2018-08-10 16:14 ` 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
                   ` (6 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index 40964d3406..a20dfe57d7 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -708,6 +708,7 @@ menu "Perl libraries/modules"
 	source "package/perl-mailtools/Config.in"
 	source "package/perl-mime-base64-urlsafe/Config.in"
 	source "package/perl-mime-base64/Config.in"
+	source "package/perl-module-runtime/Config.in"
 	source "package/perl-mojolicious-plugin-authentication/Config.in"
 	source "package/perl-mojolicious/Config.in"
 	source "package/perl-net-dns/Config.in"
diff --git a/package/perl-module-runtime/Config.in b/package/perl-module-runtime/Config.in
new file mode 100644
index 0000000000..fca29f66df
--- /dev/null
+++ b/package/perl-module-runtime/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_MODULE_RUNTIME
+	bool "perl-module-runtime"
+	help
+	  runtime module handling
+
+	  https://metacpan.org/release/Module-Runtime
diff --git a/package/perl-module-runtime/perl-module-runtime.hash b/package/perl-module-runtime/perl-module-runtime.hash
new file mode 100644
index 0000000000..c52cb75504
--- /dev/null
+++ b/package/perl-module-runtime/perl-module-runtime.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    d3d47222fa2e3dfcb4526f6cc8437b20 Module-Runtime-0.016.tar.gz
+sha256 68302ec646833547d410be28e09676db75006f4aa58a11f3bdb44ffe99f0f024 Module-Runtime-0.016.tar.gz
+
+# computed by scancpan
+sha256 ad1761020436687e8493208336ef53e84589fdba212da59b05b8111cca75ddc1 README
diff --git a/package/perl-module-runtime/perl-module-runtime.mk b/package/perl-module-runtime/perl-module-runtime.mk
new file mode 100644
index 0000000000..5ba95f7056
--- /dev/null
+++ b/package/perl-module-runtime/perl-module-runtime.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-module-runtime
+#
+################################################################################
+
+PERL_MODULE_RUNTIME_VERSION = 0.016
+PERL_MODULE_RUNTIME_SOURCE = Module-Runtime-$(PERL_MODULE_RUNTIME_VERSION).tar.gz
+PERL_MODULE_RUNTIME_SITE = $(BR2_CPAN_MIRROR)/authors/id/Z/ZE/ZEFRAM
+PERL_MODULE_RUNTIME_DEPENDENCIES = host-perl-module-build
+PERL_MODULE_RUNTIME_LICENSE = Artistic or GPL-1.0+
+PERL_MODULE_RUNTIME_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 13/18] perl-number-bytes-human: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (11 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 12/18] perl-module-runtime: " Christopher McCrory
@ 2018-08-10 16:14 ` 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
                   ` (5 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index a20dfe57d7..6410a5b233 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -719,6 +719,7 @@ menu "Perl libraries/modules"
 	source "package/perl-net-ssleay/Config.in"
 	source "package/perl-net-telnet/Config.in"
 	source "package/perl-netaddr-ip/Config.in"
+	source "package/perl-number-bytes-human/Config.in"
 	source "package/perl-path-tiny/Config.in"
 	source "package/perl-time-hires/Config.in"
 	source "package/perl-timedate/Config.in"
diff --git a/package/perl-number-bytes-human/Config.in b/package/perl-number-bytes-human/Config.in
new file mode 100644
index 0000000000..ca43873d49
--- /dev/null
+++ b/package/perl-number-bytes-human/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_NUMBER_BYTES_HUMAN
+	bool "perl-number-bytes-human"
+	help
+	  Convert byte count to human readable format
+
+	  https://metacpan.org/release/Number-Bytes-Human
diff --git a/package/perl-number-bytes-human/perl-number-bytes-human.hash b/package/perl-number-bytes-human/perl-number-bytes-human.hash
new file mode 100644
index 0000000000..af7a6b65a1
--- /dev/null
+++ b/package/perl-number-bytes-human/perl-number-bytes-human.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    43d2c86a55924aa71535a41de0311efd Number-Bytes-Human-0.11.tar.gz
+sha256 5fc79c49b0b40df780479c43696381343e2b6ad1fe52859f60bc65b66ebe6f2c Number-Bytes-Human-0.11.tar.gz
+
+# computed by scancpan
+sha256 d42143fe4b63cb5d488d65a44e6c55769b098ea447462ff33316b33a837b7cf9 README
diff --git a/package/perl-number-bytes-human/perl-number-bytes-human.mk b/package/perl-number-bytes-human/perl-number-bytes-human.mk
new file mode 100644
index 0000000000..e10c550eed
--- /dev/null
+++ b/package/perl-number-bytes-human/perl-number-bytes-human.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-number-bytes-human
+#
+################################################################################
+
+PERL_NUMBER_BYTES_HUMAN_VERSION = 0.11
+PERL_NUMBER_BYTES_HUMAN_SOURCE = Number-Bytes-Human-$(PERL_NUMBER_BYTES_HUMAN_VERSION).tar.gz
+PERL_NUMBER_BYTES_HUMAN_SITE = $(BR2_CPAN_MIRROR)/authors/id/F/FE/FERREIRA
+PERL_NUMBER_BYTES_HUMAN_LICENSE = Artistic or GPL-1.0+
+PERL_NUMBER_BYTES_HUMAN_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 14/18] perl-params-util: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (12 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 13/18] perl-number-bytes-human: " Christopher McCrory
@ 2018-08-10 16:14 ` 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
                   ` (4 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index 6410a5b233..fece804e81 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -720,6 +720,7 @@ menu "Perl libraries/modules"
 	source "package/perl-net-telnet/Config.in"
 	source "package/perl-netaddr-ip/Config.in"
 	source "package/perl-number-bytes-human/Config.in"
+	source "package/perl-params-util/Config.in"
 	source "package/perl-path-tiny/Config.in"
 	source "package/perl-time-hires/Config.in"
 	source "package/perl-timedate/Config.in"
diff --git a/package/perl-params-util/Config.in b/package/perl-params-util/Config.in
new file mode 100644
index 0000000000..b155899b06
--- /dev/null
+++ b/package/perl-params-util/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PERL_PARAMS_UTIL
+	bool "perl-params-util"
+	depends on !BR2_STATIC_LIBS
+	help
+	  Simple, compact and correct param-checking functions
+
+	  https://metacpan.org/release/Params-Util
+
+comment "perl-params-util needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-params-util/perl-params-util.hash b/package/perl-params-util/perl-params-util.hash
new file mode 100644
index 0000000000..0c247ebfe5
--- /dev/null
+++ b/package/perl-params-util/perl-params-util.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    02db120c0eef87aae1830cc62bdec37b Params-Util-1.07.tar.gz
+sha256 30f1ec3f2cf9ff66ae96f973333f23c5f558915bb6266881eac7423f52d7c76c Params-Util-1.07.tar.gz
+
+# computed by scancpan
+sha256 71b5fb95de1ba013a517c926feaa2a7d0fb0e8f132818e8529e0da5ec01187cd LICENSE
diff --git a/package/perl-params-util/perl-params-util.mk b/package/perl-params-util/perl-params-util.mk
new file mode 100644
index 0000000000..71868ddff4
--- /dev/null
+++ b/package/perl-params-util/perl-params-util.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-params-util
+#
+################################################################################
+
+PERL_PARAMS_UTIL_VERSION = 1.07
+PERL_PARAMS_UTIL_SOURCE = Params-Util-$(PERL_PARAMS_UTIL_VERSION).tar.gz
+PERL_PARAMS_UTIL_SITE = $(BR2_CPAN_MIRROR)/authors/id/A/AD/ADAMK
+PERL_PARAMS_UTIL_LICENSE = Artistic or GPL-1.0+
+PERL_PARAMS_UTIL_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 15/18] perl-sub-install: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (13 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 14/18] perl-params-util: " Christopher McCrory
@ 2018-08-10 16:14 ` 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
                   ` (3 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:14 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/Config.in b/package/Config.in
index fece804e81..4f6d6dede6 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -722,6 +722,7 @@ menu "Perl libraries/modules"
 	source "package/perl-number-bytes-human/Config.in"
 	source "package/perl-params-util/Config.in"
 	source "package/perl-path-tiny/Config.in"
+	source "package/perl-sub-install/Config.in"
 	source "package/perl-time-hires/Config.in"
 	source "package/perl-timedate/Config.in"
 	source "package/perl-try-tiny/Config.in"
diff --git a/package/perl-sub-install/Config.in b/package/perl-sub-install/Config.in
new file mode 100644
index 0000000000..41d57b237f
--- /dev/null
+++ b/package/perl-sub-install/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_SUB_INSTALL
+	bool "perl-sub-install"
+	help
+	  install subroutines into packages easily
+
+	  https://github.com/rjbs/Sub-Install
diff --git a/package/perl-sub-install/perl-sub-install.hash b/package/perl-sub-install/perl-sub-install.hash
new file mode 100644
index 0000000000..3abd9940e6
--- /dev/null
+++ b/package/perl-sub-install/perl-sub-install.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    e1ce4f9cb6b2f6b8778b036c31afa5ab Sub-Install-0.928.tar.gz
+sha256 61e567a7679588887b7b86d427bc476ea6d77fffe7e0d17d640f89007d98ef0f Sub-Install-0.928.tar.gz
+
+# computed by scancpan
+sha256 ad5fb5c05003488f924c60ead21694d629055c9db2ee2d9dd0cf0041b9fedaca LICENSE
diff --git a/package/perl-sub-install/perl-sub-install.mk b/package/perl-sub-install/perl-sub-install.mk
new file mode 100644
index 0000000000..fc7c55afb8
--- /dev/null
+++ b/package/perl-sub-install/perl-sub-install.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-sub-install
+#
+################################################################################
+
+PERL_SUB_INSTALL_VERSION = 0.928
+PERL_SUB_INSTALL_SOURCE = Sub-Install-$(PERL_SUB_INSTALL_VERSION).tar.gz
+PERL_SUB_INSTALL_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RJ/RJBS
+PERL_SUB_INSTALL_LICENSE = Artistic or GPL-1.0+
+PERL_SUB_INSTALL_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 16/18] perl-sys-meminfo: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (14 preceding siblings ...)
  2018-08-10 16:14 ` [Buildroot] [PATCH 15/18] perl-sub-install: " Christopher McCrory
@ 2018-08-10 16:15 ` 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
                   ` (2 subsequent siblings)
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
---
 package/Config.in                              |  1 +
 package/perl-sys-meminfo/Config.in             | 10 ++++++++++
 package/perl-sys-meminfo/perl-sys-meminfo.hash |  6 ++++++
 package/perl-sys-meminfo/perl-sys-meminfo.mk   | 12 ++++++++++++
 4 files changed, 29 insertions(+)
 create mode 100644 package/perl-sys-meminfo/Config.in
 create mode 100644 package/perl-sys-meminfo/perl-sys-meminfo.hash
 create mode 100644 package/perl-sys-meminfo/perl-sys-meminfo.mk

diff --git a/package/Config.in b/package/Config.in
index 4f6d6dede6..dd3da6ebe6 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -723,6 +723,7 @@ menu "Perl libraries/modules"
 	source "package/perl-params-util/Config.in"
 	source "package/perl-path-tiny/Config.in"
 	source "package/perl-sub-install/Config.in"
+	source "package/perl-sys-meminfo/Config.in"
 	source "package/perl-time-hires/Config.in"
 	source "package/perl-timedate/Config.in"
 	source "package/perl-try-tiny/Config.in"
diff --git a/package/perl-sys-meminfo/Config.in b/package/perl-sys-meminfo/Config.in
new file mode 100644
index 0000000000..3e3155d6cb
--- /dev/null
+++ b/package/perl-sys-meminfo/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PERL_SYS_MEMINFO
+	bool "perl-sys-meminfo"
+	depends on !BR2_STATIC_LIBS
+	help
+	  query the total free and used physical memory
+
+	  https://metacpan.org/release/Sys-MemInfo
+
+comment "perl-sys-meminfo needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-sys-meminfo/perl-sys-meminfo.hash b/package/perl-sys-meminfo/perl-sys-meminfo.hash
new file mode 100644
index 0000000000..207cfad2bf
--- /dev/null
+++ b/package/perl-sys-meminfo/perl-sys-meminfo.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    88f0632691d7de91cbed95ba1ff29025 Sys-MemInfo-0.99.tar.gz
+sha256 0786319d3a3a8bae5d727939244bf17e140b714f52734d5e9f627203e4cf3e3b Sys-MemInfo-0.99.tar.gz
+
+# computed by scancpan
+sha256 62854ade112a6782f476bdc7dc9603776c4e064782623d999f966dba131a15de LICENSE
diff --git a/package/perl-sys-meminfo/perl-sys-meminfo.mk b/package/perl-sys-meminfo/perl-sys-meminfo.mk
new file mode 100644
index 0000000000..ed35f411be
--- /dev/null
+++ b/package/perl-sys-meminfo/perl-sys-meminfo.mk
@@ -0,0 +1,12 @@
+################################################################################
+#
+# perl-sys-meminfo
+#
+################################################################################
+
+PERL_SYS_MEMINFO_VERSION = 0.99
+PERL_SYS_MEMINFO_SOURCE = Sys-MemInfo-$(PERL_SYS_MEMINFO_VERSION).tar.gz
+PERL_SYS_MEMINFO_SITE = $(BR2_CPAN_MIRROR)/authors/id/S/SC/SCRESTO
+PERL_SYS_MEMINFO_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 17/18] perl-sys-mmap: new package
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (15 preceding siblings ...)
  2018-08-10 16:15 ` [Buildroot] [PATCH 16/18] perl-sys-meminfo: " Christopher McCrory
@ 2018-08-10 16:15 ` 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:09 ` [Buildroot] [PATCH 00/18] more perl modules Thomas Petazzoni
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
---
 package/Config.in                        |  1 +
 package/perl-sys-mmap/Config.in          | 10 ++++++++++
 package/perl-sys-mmap/perl-sys-mmap.hash |  7 +++++++
 package/perl-sys-mmap/perl-sys-mmap.mk   | 13 +++++++++++++
 4 files changed, 31 insertions(+)
 create mode 100644 package/perl-sys-mmap/Config.in
 create mode 100644 package/perl-sys-mmap/perl-sys-mmap.hash
 create mode 100644 package/perl-sys-mmap/perl-sys-mmap.mk

diff --git a/package/Config.in b/package/Config.in
index dd3da6ebe6..5b9c47aa79 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -724,6 +724,7 @@ menu "Perl libraries/modules"
 	source "package/perl-path-tiny/Config.in"
 	source "package/perl-sub-install/Config.in"
 	source "package/perl-sys-meminfo/Config.in"
+	source "package/perl-sys-mmap/Config.in"
 	source "package/perl-time-hires/Config.in"
 	source "package/perl-timedate/Config.in"
 	source "package/perl-try-tiny/Config.in"
diff --git a/package/perl-sys-mmap/Config.in b/package/perl-sys-mmap/Config.in
new file mode 100644
index 0000000000..56725f2faa
--- /dev/null
+++ b/package/perl-sys-mmap/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PERL_SYS_MMAP
+	bool "perl-sys-mmap"
+	depends on !BR2_STATIC_LIBS
+	help
+	  uses mmap to map in a file as a Perl variable
+
+	  https://metacpan.org/release/Sys-Mmap
+
+comment "perl-sys-mmap needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-sys-mmap/perl-sys-mmap.hash b/package/perl-sys-mmap/perl-sys-mmap.hash
new file mode 100644
index 0000000000..caeea3d965
--- /dev/null
+++ b/package/perl-sys-mmap/perl-sys-mmap.hash
@@ -0,0 +1,7 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    990c9106a88dc843035f7bcb109e6c0e Sys-Mmap-0.19.tar.gz
+sha256 09295e25cc9b0599d9009d19b2be89fcecaecc62ce594f873d7f70d7c10900fa Sys-Mmap-0.19.tar.gz
+
+# computed by scancpan
+sha256 51c144e9a67644fa8eea0ea63dedb4e837587305b22f073eb5e279e39e7325a8 Copying
+sha256 4ac2afe465736476a06e52edcc78c72cfa0fa4d625916e58ab4f2af6c598709c Artistic
diff --git a/package/perl-sys-mmap/perl-sys-mmap.mk b/package/perl-sys-mmap/perl-sys-mmap.mk
new file mode 100644
index 0000000000..ed2ca79b02
--- /dev/null
+++ b/package/perl-sys-mmap/perl-sys-mmap.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-sys-mmap
+#
+################################################################################
+
+PERL_SYS_MMAP_VERSION = 0.19
+PERL_SYS_MMAP_SOURCE = Sys-Mmap-$(PERL_SYS_MMAP_VERSION).tar.gz
+PERL_SYS_MMAP_SITE = $(BR2_CPAN_MIRROR)/authors/id/S/SW/SWALTERS
+PERL_SYS_MMAP_LICENSE = Artistic or GPL-1.0+
+PERL_SYS_MMAP_LICENSE_FILES = Copying Artistic
+
+$(eval $(perl-package))
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 18/18] Add to DEVELOPERS file
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (16 preceding siblings ...)
  2018-08-10 16:15 ` [Buildroot] [PATCH 17/18] perl-sys-mmap: " Christopher McCrory
@ 2018-08-10 16:15 ` Christopher McCrory
  2018-08-10 21:10   ` Thomas Petazzoni
  2018-08-13 10:02   ` Thomas Petazzoni
  2018-08-10 21:09 ` [Buildroot] [PATCH 00/18] more perl modules Thomas Petazzoni
  18 siblings, 2 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 16:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
---
 DEVELOPERS | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/DEVELOPERS b/DEVELOPERS
index 215506c71c..c693f6765b 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -479,6 +479,25 @@ F:	package/python-rtslib-fb/
 F:	package/python-urwid/
 F:	package/targetcli-fb/
 
+N:	Christopher McCrory <chrismcc@gmail.com>
+F:	package/perl-appconfig
+F:	package/perl-astro-suntime
+F:	package/perl-cgi
+F:	package/perl-class-std
+F:	package/perl-data-uuid
+F:	package/perl-date-manip
+F:	package/perl-dbi
+F:	package/perl-device-serialport
+F:	package/perl-file-slurp
+F:	package/perl-io-interface
+F:	package/perl-json-maybexs
+F:	package/perl-module-runtime
+F:	package/perl-number-bytes-human
+F:	package/perl-params-util
+F:	package/perl-sub-install
+F:	package/perl-sys-meminfo
+F:	package/perl-sys-mmap
+
 N:	Clayton Shotwell <clayton.shotwell@rockwellcollins.com>
 F:	package/audit/
 F:	package/checkpolicy/
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 00/18] more perl modules
  2018-08-10 16:14 [Buildroot] [PATCH 00/18] more perl modules Christopher McCrory
                   ` (17 preceding siblings ...)
  2018-08-10 16:15 ` [Buildroot] [PATCH 18/18] Add to DEVELOPERS file Christopher McCrory
@ 2018-08-10 21:09 ` Thomas Petazzoni
  18 siblings, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-10 21:09 UTC (permalink / raw)
  To: buildroot

Fran?ois,

On Fri, 10 Aug 2018 09:14:44 -0700, Christopher McCrory wrote:

> Christopher McCrory (18):
>   perl-appconfig: new package
>   perl-astro-suntime: new package
>   perl-cgi: new package
>   perl-class-std: new package
>   perl-data-uuid: new package
>   perl-date-manip: new package
>   perl-dbi: new package
>   perl-device-serialport: new package
>   perl-file-slurp: new package
>   perl-io-interface: new package
>   perl-json-maybexs: new package
>   perl-module-runtime: new package
>   perl-number-bytes-human: new package
>   perl-params-util: new package
>   perl-sub-install: new package
>   perl-sys-meminfo: new package
>   perl-sys-mmap: new package
>   Add to DEVELOPERS file

Could you give a look at those patches ? Since they are generated with
scancpan, I don't expect much issues. If you don't have a look soon,
I'll apply to next, and we can fix up any issue as follow-up patches.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 18/18] Add to DEVELOPERS file
  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
  1 sibling, 1 reply; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-10 21:10 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:15:02 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  DEVELOPERS | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
> 
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 215506c71c..c693f6765b 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -479,6 +479,25 @@ F:	package/python-rtslib-fb/
>  F:	package/python-urwid/
>  F:	package/targetcli-fb/
>  
> +N:	Christopher McCrory <chrismcc@gmail.com>
> +F:	package/perl-appconfig
> +F:	package/perl-astro-suntime
> +F:	package/perl-cgi
> +F:	package/perl-class-std
> +F:	package/perl-data-uuid
> +F:	package/perl-date-manip
> +F:	package/perl-dbi
> +F:	package/perl-device-serialport
> +F:	package/perl-file-slurp
> +F:	package/perl-io-interface
> +F:	package/perl-json-maybexs
> +F:	package/perl-module-runtime
> +F:	package/perl-number-bytes-human
> +F:	package/perl-params-util
> +F:	package/perl-sub-install
> +F:	package/perl-sys-meminfo
> +F:	package/perl-sys-mmap

This should normally be done in each patch adding each individual
package. Indeed, if I partially merge your patch series (say up to
patch 10), then you won't be added to the DEVELOPERS file.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 18/18] Add to DEVELOPERS file
  2018-08-10 21:10   ` Thomas Petazzoni
@ 2018-08-10 22:12     ` Christopher McCrory
  0 siblings, 0 replies; 59+ messages in thread
From: Christopher McCrory @ 2018-08-10 22:12 UTC (permalink / raw)
  To: buildroot

On Fri, Aug 10, 2018, 2:10 PM Thomas Petazzoni <thomas.petazzoni@bootlin.com>
wrote:

> Hello,
>
> On Fri, 10 Aug 2018 09:15:02 -0700, Christopher McCrory wrote:
> > Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> > ---
> >  DEVELOPERS | 19 +++++++++++++++++++
> >  1 file changed, 19 insertions(+)
> >
> > diff --git a/DEVELOPERS b/DEVELOPERS
> > index 215506c71c..c693f6765b 100644
> > --- a/DEVELOPERS
> > +++ b/DEVELOPERS
> > @@ -479,6 +479,25 @@ F:       package/python-rtslib-fb/
> >  F:   package/python-urwid/
> >  F:   package/targetcli-fb/
> >
> > +N:   Christopher McCrory <chrismcc@gmail.com>
> > +F:   package/perl-appconfig
> > +F:   package/perl-astro-suntime
> > +F:   package/perl-cgi
> > +F:   package/perl-class-std
> > +F:   package/perl-data-uuid
> > +F:   package/perl-date-manip
> > +F:   package/perl-dbi
> > +F:   package/perl-device-serialport
> > +F:   package/perl-file-slurp
> > +F:   package/perl-io-interface
> > +F:   package/perl-json-maybexs
> > +F:   package/perl-module-runtime
> > +F:   package/perl-number-bytes-human
> > +F:   package/perl-params-util
> > +F:   package/perl-sub-install
> > +F:   package/perl-sys-meminfo
> > +F:   package/perl-sys-mmap
>
> This should normally be done in each patch adding each individual
> package. Indeed, if I partially merge your patch series (say up to
> patch 10), then you won't be added to the DEVELOPERS file.
>
>
> I wasn't sure what to do.  If you accepted all but one in the middle, then
> the ones after it would all break.  Plus the four I sent earlier might
> conflict.  So I played it safe.  I have ten ish more that either depend on
> this series or are more complicated.  I can do those adds per commit.
>

Via phone so formatting might be off.



>
> Best regards,
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
> Embedded Linux and Kernel engineering
> https://bootlin.com
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180810/475f9e96/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 01/18] perl-appconfig: new package
  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
  2 siblings, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:24 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                          |  1 +
>  package/perl-appconfig/Config.in           |  6 ++++++
>  package/perl-appconfig/perl-appconfig.hash |  6 ++++++
>  package/perl-appconfig/perl-appconfig.mk   | 13 +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-appconfig/Config.in
>  create mode 100644 package/perl-appconfig/perl-appconfig.hash
>  create mode 100644 package/perl-appconfig/perl-appconfig.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index f5a17492c7..8b80276fb1 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -665,6 +665,7 @@ endif
>         source "package/perl/Config.in"
>  if BR2_PACKAGE_PERL
>  menu "Perl libraries/modules"
> +       source "package/perl-appconfig/Config.in"
>         source "package/perl-convert-asn1/Config.in"
>         source "package/perl-crypt-blowfish/Config.in"
>         source "package/perl-crypt-cbc/Config.in"
> diff --git a/package/perl-appconfig/Config.in b/package/perl-appconfig/
> Config.in
> new file mode 100644
> index 0000000000..ca2220f1c0
> --- /dev/null
> +++ b/package/perl-appconfig/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_APPCONFIG
> +       bool "perl-appconfig"
> +       help
> +         AppConfig is a bundle of Perl5 modules for reading configuration
> files and parsing command line arguments.
> +
> +         https://metacpan.org/release/AppConfig
> diff --git a/package/perl-appconfig/perl-appconfig.hash
> b/package/perl-appconfig/perl-appconfig.hash
> new file mode 100644
> index 0000000000..151a2e903f
> --- /dev/null
> +++ b/package/perl-appconfig/perl-appconfig.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    7747d9241561ed5567d5e134b8648707 AppConfig-1.71.tar.gz
> +sha256 1177027025ecb09ee64d9f9f255615c04db5e14f7536c344af632032eb887b0f
> AppConfig-1.71.tar.gz
> +
> +# computed by scancpan
> +sha256 0b22dd532e4123a511d14989c4169ed56b7316cf844c29c7897a1638a4616868
> LICENSE
> diff --git a/package/perl-appconfig/perl-appconfig.mk
> b/package/perl-appconfig/perl-appconfig.mk
> new file mode 100644
> index 0000000000..7a553e330b
> --- /dev/null
> +++ b/package/perl-appconfig/perl-appconfig.mk
> @@ -0,0 +1,13 @@
> +###########################################################
> #####################
> +#
> +# perl-appconfig
> +#
> +###########################################################
> #####################
> +
> +PERL_APPCONFIG_VERSION = 1.71
> +PERL_APPCONFIG_SOURCE = AppConfig-$(PERL_APPCONFIG_VERSION).tar.gz
> +PERL_APPCONFIG_SITE = $(BR2_CPAN_MIRROR)/authors/id/N/NE/NEILB
> +PERL_APPCONFIG_LICENSE = Artistic or GPL-1.0+
> +PERL_APPCONFIG_LICENSE_FILES = LICENSE
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/fbc43516/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 02/18] perl-astro-suntime: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:26 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                                  |  1 +
>  package/perl-astro-suntime/Config.in               |  6 ++++++
>  package/perl-astro-suntime/perl-astro-suntime.hash |  6 ++++++
>  package/perl-astro-suntime/perl-astro-suntime.mk   | 14 ++++++++++++++
>  4 files changed, 27 insertions(+)
>  create mode 100644 package/perl-astro-suntime/Config.in
>  create mode 100644 package/perl-astro-suntime/perl-astro-suntime.hash
>  create mode 100644 package/perl-astro-suntime/perl-astro-suntime.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 8b80276fb1..97a108535b 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -666,6 +666,7 @@ endif
>  if BR2_PACKAGE_PERL
>  menu "Perl libraries/modules"
>         source "package/perl-appconfig/Config.in"
> +       source "package/perl-astro-suntime/Config.in"
>         source "package/perl-convert-asn1/Config.in"
>         source "package/perl-crypt-blowfish/Config.in"
>         source "package/perl-crypt-cbc/Config.in"
> diff --git a/package/perl-astro-suntime/Config.in
> b/package/perl-astro-suntime/Config.in
> new file mode 100644
> index 0000000000..22e2cb1aa2
> --- /dev/null
> +++ b/package/perl-astro-suntime/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_ASTRO_SUNTIME
> +       bool "perl-astro-suntime"
> +       help
> +         A functional module for calculating sunrise/sunset times
> +
> +         https://metacpan.org/release/Astro-SunTime
> diff --git a/package/perl-astro-suntime/perl-astro-suntime.hash
> b/package/perl-astro-suntime/perl-astro-suntime.hash
> new file mode 100644
> index 0000000000..e75293d4fb
> --- /dev/null
> +++ b/package/perl-astro-suntime/perl-astro-suntime.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    42cb8c94de8a111ed652196925c22a45 Astro-SunTime-0.06.tar.gz
> +sha256 b4a44fddfc055cc42ee67bfd8939354793da7512ea04f30578d42dc6a701112a
> Astro-SunTime-0.06.tar.gz
> +
> +# computed by scancpan
> +sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903
> LICENSE
> diff --git a/package/perl-astro-suntime/perl-astro-suntime.mk
> b/package/perl-astro-suntime/perl-astro-suntime.mk
> new file mode 100644
> index 0000000000..a35291b1db
> --- /dev/null
> +++ b/package/perl-astro-suntime/perl-astro-suntime.mk
> @@ -0,0 +1,14 @@
> +###########################################################
> #####################
> +#
> +# perl-astro-suntime
> +#
> +###########################################################
> #####################
> +
> +PERL_ASTRO_SUNTIME_VERSION = 0.06
> +PERL_ASTRO_SUNTIME_SOURCE = Astro-SunTime-$(PERL_ASTRO_
> SUNTIME_VERSION).tar.gz
> +PERL_ASTRO_SUNTIME_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RO/ROBF
> +PERL_ASTRO_SUNTIME_DEPENDENCIES = host-perl-module-build
> +PERL_ASTRO_SUNTIME_LICENSE = gpl_3
> +PERL_ASTRO_SUNTIME_LICENSE_FILES = LICENSE
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/8cef522a/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 04/18] perl-class-std: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:28 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                          |  1 +
>  package/perl-class-std/Config.in           |  6 ++++++
>  package/perl-class-std/perl-class-std.hash |  6 ++++++
>  package/perl-class-std/perl-class-std.mk   | 14 ++++++++++++++
>  4 files changed, 27 insertions(+)
>  create mode 100644 package/perl-class-std/Config.in
>  create mode 100644 package/perl-class-std/perl-class-std.hash
>  create mode 100644 package/perl-class-std/perl-class-std.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index a05b613789..d1f0947d6d 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -668,6 +668,7 @@ menu "Perl libraries/modules"
>         source "package/perl-appconfig/Config.in"
>         source "package/perl-astro-suntime/Config.in"
>         source "package/perl-cgi/Config.in"
> +       source "package/perl-class-std/Config.in"
>         source "package/perl-convert-asn1/Config.in"
>         source "package/perl-crypt-blowfish/Config.in"
>         source "package/perl-crypt-cbc/Config.in"
> diff --git a/package/perl-class-std/Config.in b/package/perl-class-std/
> Config.in
> new file mode 100644
> index 0000000000..10734a7902
> --- /dev/null
> +++ b/package/perl-class-std/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_CLASS_STD
> +       bool "perl-class-std"
> +       help
> +         Support for creating standard "inside-out" classes
> +
> +         https://metacpan.org/release/Class-Std
> diff --git a/package/perl-class-std/perl-class-std.hash
> b/package/perl-class-std/perl-class-std.hash
> new file mode 100644
> index 0000000000..0cc3861416
> --- /dev/null
> +++ b/package/perl-class-std/perl-class-std.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    82bcc56d9769edce671b0bd0e183ec3a Class-Std-0.013.tar.gz
> +sha256 bcd6d82f6c8af0fe069fced7dd165a4795b0b6e92351c7d4e5a1ab9a14fc35c6
> Class-Std-0.013.tar.gz
> +
> +# computed by scancpan
> +sha256 b8175bf3750dc54096bf1506c681b4f13262e5b82e40244e9a77730c6b72e4d6
> README
> diff --git a/package/perl-class-std/perl-class-std.mk
> b/package/perl-class-std/perl-class-std.mk
> new file mode 100644
> index 0000000000..2e3ba95a8b
> --- /dev/null
> +++ b/package/perl-class-std/perl-class-std.mk
> @@ -0,0 +1,14 @@
> +###########################################################
> #####################
> +#
> +# perl-class-std
> +#
> +###########################################################
> #####################
> +
> +PERL_CLASS_STD_VERSION = 0.013
> +PERL_CLASS_STD_SOURCE = Class-Std-$(PERL_CLASS_STD_VERSION).tar.gz
> +PERL_CLASS_STD_SITE = $(BR2_CPAN_MIRROR)/authors/id/C/CH/CHORNY
> +PERL_CLASS_STD_DEPENDENCIES = host-perl-module-build
> +PERL_CLASS_STD_LICENSE = Artistic or GPL-1.0+
> +PERL_CLASS_STD_LICENSE_FILES = README
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/47548410/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 05/18] perl-data-uuid: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:29 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>



> ---
>  package/Config.in                          |  1 +
>  package/perl-data-uuid/Config.in           | 10 ++++++++++
>  package/perl-data-uuid/perl-data-uuid.hash |  6 ++++++
>  package/perl-data-uuid/perl-data-uuid.mk   | 13 +++++++++++++
>  4 files changed, 30 insertions(+)
>  create mode 100644 package/perl-data-uuid/Config.in
>  create mode 100644 package/perl-data-uuid/perl-data-uuid.hash
>  create mode 100644 package/perl-data-uuid/perl-data-uuid.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index d1f0947d6d..dad6916c64 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -674,6 +674,7 @@ menu "Perl libraries/modules"
>         source "package/perl-crypt-cbc/Config.in"
>         source "package/perl-crypt-openssl-random/Config.in"
>         source "package/perl-crypt-openssl-rsa/Config.in"
> +       source "package/perl-data-uuid/Config.in"
>         source "package/perl-datetime-tiny/Config.in"
>         source "package/perl-digest-hmac/Config.in"
>         source "package/perl-digest-md5/Config.in"
> diff --git a/package/perl-data-uuid/Config.in b/package/perl-data-uuid/
> Config.in
> new file mode 100644
> index 0000000000..e0752c44ab
> --- /dev/null
> +++ b/package/perl-data-uuid/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_PERL_DATA_UUID
> +       bool "perl-data-uuid"
> +       depends on !BR2_STATIC_LIBS
> +       help
> +         Globally/Universally Unique Identifiers (GUIDs/UUIDs)
> +
> +         https://metacpan.org/release/Data-UUID
> +
> +comment "perl-data-uuid needs a toolchain w/ dynamic library"
> +       depends on BR2_STATIC_LIBS
> diff --git a/package/perl-data-uuid/perl-data-uuid.hash
> b/package/perl-data-uuid/perl-data-uuid.hash
> new file mode 100644
> index 0000000000..5086936d4e
> --- /dev/null
> +++ b/package/perl-data-uuid/perl-data-uuid.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    7619929e8fe205a7fb83bc1c29ecbf99 Data-UUID-1.221.tar.gz
> +sha256 3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667
> Data-UUID-1.221.tar.gz
> +
> +# computed by scancpan
> +sha256 0560c8eea8e1fb8173faa6c2e9b7e9f8728b8ae8250a814709a53c30b778d5fb
> LICENSE
> diff --git a/package/perl-data-uuid/perl-data-uuid.mk
> b/package/perl-data-uuid/perl-data-uuid.mk
> new file mode 100644
> index 0000000000..24d61c6ce3
> --- /dev/null
> +++ b/package/perl-data-uuid/perl-data-uuid.mk
> @@ -0,0 +1,13 @@
> +###########################################################
> #####################
> +#
> +# perl-data-uuid
> +#
> +###########################################################
> #####################
> +
> +PERL_DATA_UUID_VERSION = 1.221
> +PERL_DATA_UUID_SOURCE = Data-UUID-$(PERL_DATA_UUID_VERSION).tar.gz
> +PERL_DATA_UUID_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RJ/RJBS
> +PERL_DATA_UUID_LICENSE = bsd
> +PERL_DATA_UUID_LICENSE_FILES = LICENSE
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/1d5734ae/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 06/18] perl-date-manip: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:29 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>


> ---
>  package/Config.in                            |  1 +
>  package/perl-date-manip/Config.in            |  6 ++++++
>  package/perl-date-manip/perl-date-manip.hash |  6 ++++++
>  package/perl-date-manip/perl-date-manip.mk   | 13 +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-date-manip/Config.in
>  create mode 100644 package/perl-date-manip/perl-date-manip.hash
>  create mode 100644 package/perl-date-manip/perl-date-manip.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index dad6916c64..c5edc5cb76 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -675,6 +675,7 @@ menu "Perl libraries/modules"
>         source "package/perl-crypt-openssl-random/Config.in"
>         source "package/perl-crypt-openssl-rsa/Config.in"
>         source "package/perl-data-uuid/Config.in"
> +       source "package/perl-date-manip/Config.in"
>         source "package/perl-datetime-tiny/Config.in"
>         source "package/perl-digest-hmac/Config.in"
>         source "package/perl-digest-md5/Config.in"
> diff --git a/package/perl-date-manip/Config.in b/package/perl-date-manip/
> Config.in
> new file mode 100644
> index 0000000000..cbfb5c5b30
> --- /dev/null
> +++ b/package/perl-date-manip/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_DATE_MANIP
> +       bool "perl-date-manip"
> +       help
> +         Date manipulation routines
> +
> +         https://metacpan.org/release/Date-Manip
> diff --git a/package/perl-date-manip/perl-date-manip.hash
> b/package/perl-date-manip/perl-date-manip.hash
> new file mode 100644
> index 0000000000..f02f657822
> --- /dev/null
> +++ b/package/perl-date-manip/perl-date-manip.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    b41b0d476fd7eae3ce81324386266a85 Date-Manip-6.72.tar.gz
> +sha256 38f4dd9d94b41092ca7b9da2ef72c3bb8b8c8bff6da14d785c612f3cc7a94da6
> Date-Manip-6.72.tar.gz
> +
> +# computed by scancpan
> +sha256 8ba2a138654f8b59b7e1e3ad0d4c81918b9148ff95078b172ccbb45fa241431d
> LICENSE
> diff --git a/package/perl-date-manip/perl-date-manip.mk
> b/package/perl-date-manip/perl-date-manip.mk
> new file mode 100644
> index 0000000000..a5e1609a88
> --- /dev/null
> +++ b/package/perl-date-manip/perl-date-manip.mk
> @@ -0,0 +1,13 @@
> +###########################################################
> #####################
> +#
> +# perl-date-manip
> +#
> +###########################################################
> #####################
> +
> +PERL_DATE_MANIP_VERSION = 6.72
> +PERL_DATE_MANIP_SOURCE = Date-Manip-$(PERL_DATE_MANIP_VERSION).tar.gz
> +PERL_DATE_MANIP_SITE = $(BR2_CPAN_MIRROR)/authors/id/S/SB/SBECK
> +PERL_DATE_MANIP_LICENSE = Artistic or GPL-1.0+
> +PERL_DATE_MANIP_LICENSE_FILES = LICENSE
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/bd51107a/attachment-0001.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 07/18] perl-dbi: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:30 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in              |  1 +
>  package/perl-dbi/Config.in     | 10 ++++++++++
>  package/perl-dbi/perl-dbi.hash |  6 ++++++
>  package/perl-dbi/perl-dbi.mk   | 13 +++++++++++++
>  4 files changed, 30 insertions(+)
>  create mode 100644 package/perl-dbi/Config.in
>  create mode 100644 package/perl-dbi/perl-dbi.hash
>  create mode 100644 package/perl-dbi/perl-dbi.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index c5edc5cb76..73adb62e0b 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -677,6 +677,7 @@ menu "Perl libraries/modules"
>         source "package/perl-data-uuid/Config.in"
>         source "package/perl-date-manip/Config.in"
>         source "package/perl-datetime-tiny/Config.in"
> +       source "package/perl-dbi/Config.in"
>         source "package/perl-digest-hmac/Config.in"
>         source "package/perl-digest-md5/Config.in"
>         source "package/perl-digest-sha1/Config.in"
> diff --git a/package/perl-dbi/Config.in b/package/perl-dbi/Config.in
> new file mode 100644
> index 0000000000..069669b9bc
> --- /dev/null
> +++ b/package/perl-dbi/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_PERL_DBI
> +       bool "perl-dbi"
> +       depends on !BR2_STATIC_LIBS
> +       help
> +         Database independent interface for Perl
> +
> +         http://dbi.perl.org/
> +
> +comment "perl-dbi needs a toolchain w/ dynamic library"
> +       depends on BR2_STATIC_LIBS
> diff --git a/package/perl-dbi/perl-dbi.hash b/package/perl-dbi/perl-dbi.
> hash
> new file mode 100644
> index 0000000000..1d0b7e9ad5
> --- /dev/null
> +++ b/package/perl-dbi/perl-dbi.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    e77fd37fcf77fc88fde029c1b75ded54 DBI-1.641.tar.gz
> +sha256 5509e532cdd0e3d91eda550578deaac29e2f008a12b64576e8c261bb92e8c2c1
> DBI-1.641.tar.gz
> +
> +# computed by scancpan
> +sha256 33453c8b0d8d474a42669ac702a13c20f39c91a34b3df4e6ca778fc2f0f711c7
> LICENSE
> diff --git a/package/perl-dbi/perl-dbi.mk b/package/perl-dbi/perl-dbi.mk
> new file mode 100644
> index 0000000000..f7ae6ca5a1
> --- /dev/null
> +++ b/package/perl-dbi/perl-dbi.mk
> @@ -0,0 +1,13 @@
> +###########################################################
> #####################
> +#
> +# perl-dbi
> +#
> +###########################################################
> #####################
> +
> +PERL_DBI_VERSION = 1.641
> +PERL_DBI_SOURCE = DBI-$(PERL_DBI_VERSION).tar.gz
> +PERL_DBI_SITE = $(BR2_CPAN_MIRROR)/authors/id/T/TI/TIMB
> +PERL_DBI_LICENSE = Artistic or GPL-1.0+
> +PERL_DBI_LICENSE_FILES = LICENSE
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/8274d24d/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 08/18] perl-device-serialport: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:31 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                                          |  1 +
>  package/perl-device-serialport/Config.in                   | 10
> ++++++++++
>  package/perl-device-serialport/perl-device-serialport.hash |  6 ++++++
>  package/perl-device-serialport/perl-device-serialport.mk   | 12
> ++++++++++++
>  4 files changed, 29 insertions(+)
>  create mode 100644 package/perl-device-serialport/Config.in
>  create mode 100644 package/perl-device-serialport/perl-device-
> serialport.hash
>  create mode 100644 package/perl-device-serialport/perl-device-
> serialport.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 73adb62e0b..cd01657802 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -678,6 +678,7 @@ menu "Perl libraries/modules"
>         source "package/perl-date-manip/Config.in"
>         source "package/perl-datetime-tiny/Config.in"
>         source "package/perl-dbi/Config.in"
> +       source "package/perl-device-serialport/Config.in"
>         source "package/perl-digest-hmac/Config.in"
>         source "package/perl-digest-md5/Config.in"
>         source "package/perl-digest-sha1/Config.in"
> diff --git a/package/perl-device-serialport/Config.in
> b/package/perl-device-serialport/Config.in
> new file mode 100644
> index 0000000000..f14e9794d0
> --- /dev/null
> +++ b/package/perl-device-serialport/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_PERL_DEVICE_SERIALPORT
> +       bool "perl-device-serialport"
> +       depends on !BR2_STATIC_LIBS
> +       help
> +         Linux/POSIX emulation of Win32::SerialPort functions.
> +
> +         https://metacpan.org/release/Device-SerialPort
> +
> +comment "perl-device-serialport needs a toolchain w/ dynamic library"
> +       depends on BR2_STATIC_LIBS
> diff --git a/package/perl-device-serialport/perl-device-serialport.hash
> b/package/perl-device-serialport/perl-device-serialport.hash
> new file mode 100644
> index 0000000000..35ddc13d3f
> --- /dev/null
> +++ b/package/perl-device-serialport/perl-device-serialport.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    82c698151f934eb28c65d1838cee7d9e Device-SerialPort-1.04.tar.gz
> +sha256 d392567cb39b4ea606c0e0acafd8ed72320311b995336ece5fcefcf9b150e9d7
> Device-SerialPort-1.04.tar.gz
> +
> +# computed by scancpan
> +sha256 59432e84eca65c10c4b627f8af0b00833685856b68242b816aea2a38283a124c
> README
> diff --git a/package/perl-device-serialport/perl-device-serialport.mk
> b/package/perl-device-serialport/perl-device-serialport.mk
> new file mode 100644
> index 0000000000..635179f80a
> --- /dev/null
> +++ b/package/perl-device-serialport/perl-device-serialport.mk
> @@ -0,0 +1,12 @@
> +###########################################################
> #####################
> +#
> +# perl-device-serialport
> +#
> +###########################################################
> #####################
> +
> +PERL_DEVICE_SERIALPORT_VERSION = 1.04
> +PERL_DEVICE_SERIALPORT_SOURCE = Device-SerialPort-$(PERL_
> DEVICE_SERIALPORT_VERSION).tar.gz
> +PERL_DEVICE_SERIALPORT_SITE = $(BR2_CPAN_MIRROR)/authors/id/C/CO/COOK
> +PERL_DEVICE_SERIALPORT_LICENSE_FILES = README
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/b018b708/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 09/18] perl-file-slurp: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:32 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                            |  1 +
>  package/perl-file-slurp/Config.in            |  6 ++++++
>  package/perl-file-slurp/perl-file-slurp.hash |  6 ++++++
>  package/perl-file-slurp/perl-file-slurp.mk   | 13 +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-file-slurp/Config.in
>  create mode 100644 package/perl-file-slurp/perl-file-slurp.hash
>  create mode 100644 package/perl-file-slurp/perl-file-slurp.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index cd01657802..a458e56871 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -685,6 +685,7 @@ menu "Perl libraries/modules"
>         source "package/perl-encode-detect/Config.in"
>         source "package/perl-encode-locale/Config.in"
>         source "package/perl-file-listing/Config.in"
> +       source "package/perl-file-slurp/Config.in"
>         source "package/perl-file-util/Config.in"
>         source "package/perl-gd/Config.in"
>         source "package/perl-gdgraph/Config.in"
> diff --git a/package/perl-file-slurp/Config.in b/package/perl-file-slurp/
> Config.in
> new file mode 100644
> index 0000000000..bfd1cad186
> --- /dev/null
> +++ b/package/perl-file-slurp/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_FILE_SLURP
> +       bool "perl-file-slurp"
> +       help
> +         Simple and Efficient Reading/Writing/Modifying of Complete Files
> +
> +         https://metacpan.org/release/File-Slurp
> diff --git a/package/perl-file-slurp/perl-file-slurp.hash
> b/package/perl-file-slurp/perl-file-slurp.hash
> new file mode 100644
> index 0000000000..18f9e65ced
> --- /dev/null
> +++ b/package/perl-file-slurp/perl-file-slurp.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    7d584cd15c4f8b9547765eff8c4ef078 File-Slurp-9999.19.tar.gz
> +sha256 ce29ebe995097ebd6e9bc03284714cdfa0c46dc94f6b14a56980747ea3253643
> File-Slurp-9999.19.tar.gz
> +
> +# computed by scancpan
> +sha256 17e638d011c04b1d39b300c07ccd0c57d7857b9ccdb9fe7abce1b15f0e7b0c20
> README
> diff --git a/package/perl-file-slurp/perl-file-slurp.mk
> b/package/perl-file-slurp/perl-file-slurp.mk
> new file mode 100644
> index 0000000000..32773ddbbc
> --- /dev/null
> +++ b/package/perl-file-slurp/perl-file-slurp.mk
> @@ -0,0 +1,13 @@
> +###########################################################
> #####################
> +#
> +# perl-file-slurp
> +#
> +###########################################################
> #####################
> +
> +PERL_FILE_SLURP_VERSION = 9999.19
> +PERL_FILE_SLURP_SOURCE = File-Slurp-$(PERL_FILE_SLURP_VERSION).tar.gz
> +PERL_FILE_SLURP_SITE = $(BR2_CPAN_MIRROR)/authors/id/U/UR/URI
> +PERL_FILE_SLURP_LICENSE = Artistic or GPL-1.0+
> +PERL_FILE_SLURP_LICENSE_FILES = README
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/e12ee2bb/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 10/18] perl-io-interface: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:33 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>


> ---
>  package/Config.in                                |  1 +
>  package/perl-io-interface/Config.in              | 10 ++++++++++
>  package/perl-io-interface/perl-io-interface.hash |  6 ++++++
>  package/perl-io-interface/perl-io-interface.mk   | 14 ++++++++++++++
>  4 files changed, 31 insertions(+)
>  create mode 100644 package/perl-io-interface/Config.in
>  create mode 100644 package/perl-io-interface/perl-io-interface.hash
>  create mode 100644 package/perl-io-interface/perl-io-interface.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index a458e56871..13a1b60588 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -698,6 +698,7 @@ menu "Perl libraries/modules"
>         source "package/perl-http-message/Config.in"
>         source "package/perl-http-negotiate/Config.in"
>         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-tiny/Config.in"
>         source "package/perl-libwww-perl/Config.in"
> diff --git a/package/perl-io-interface/Config.in
> b/package/perl-io-interface/Config.in
> new file mode 100644
> index 0000000000..7aa7064ec0
> --- /dev/null
> +++ b/package/perl-io-interface/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_PERL_IO_INTERFACE
> +       bool "perl-io-interface"
> +       depends on !BR2_STATIC_LIBS
> +       help
> +         Access and modify network interface card configuration
> +
> +         https://metacpan.org/release/IO-Interface
> +
> +comment "perl-io-interface needs a toolchain w/ dynamic library"
> +       depends on BR2_STATIC_LIBS
> diff --git a/package/perl-io-interface/perl-io-interface.hash
> b/package/perl-io-interface/perl-io-interface.hash
> new file mode 100644
> index 0000000000..75e572f918
> --- /dev/null
> +++ b/package/perl-io-interface/perl-io-interface.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    806f97aff5a7361b6f54cd494f4cc9fd IO-Interface-1.09.tar.gz
> +sha256 e63e81c52eb1e0e60ec2d983f5552d2493e117179925c96757f23c4bd9fa713a
> IO-Interface-1.09.tar.gz
> +
> +# computed by scancpan
> +sha256 b5a5bf59bd1be13f7f498e5aa2ea5c0c603c04a095dcf03a06aa5b83bbccf921
> LICENSE
> diff --git a/package/perl-io-interface/perl-io-interface.mk
> b/package/perl-io-interface/perl-io-interface.mk
> new file mode 100644
> index 0000000000..24f4eeb0b3
> --- /dev/null
> +++ b/package/perl-io-interface/perl-io-interface.mk
> @@ -0,0 +1,14 @@
> +###########################################################
> #####################
> +#
> +# perl-io-interface
> +#
> +###########################################################
> #####################
> +
> +PERL_IO_INTERFACE_VERSION = 1.09
> +PERL_IO_INTERFACE_SOURCE = IO-Interface-$(PERL_IO_
> INTERFACE_VERSION).tar.gz
> +PERL_IO_INTERFACE_SITE = $(BR2_CPAN_MIRROR)/authors/id/L/LD/LDS
> +PERL_IO_INTERFACE_DEPENDENCIES = host-perl-module-build
> +PERL_IO_INTERFACE_LICENSE = Artistic or GPL-1.0+
> +PERL_IO_INTERFACE_LICENSE_FILES = LICENSE
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/d5b32fc2/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 11/18] perl-json-maybexs: new package
  2018-08-10 16:14 ` [Buildroot] [PATCH 11/18] perl-json-maybexs: " Christopher McCrory
@ 2018-08-12 16:34   ` François Perrad
  2018-08-12 21:46   ` Thomas Petazzoni
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:34 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>


> ---
>  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
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/74c55392/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 12/18] perl-module-runtime: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:34 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                                    |  1 +
>  package/perl-module-runtime/Config.in                |  6 ++++++
>  package/perl-module-runtime/perl-module-runtime.hash |  6 ++++++
>  package/perl-module-runtime/perl-module-runtime.mk   | 14 ++++++++++++++
>  4 files changed, 27 insertions(+)
>  create mode 100644 package/perl-module-runtime/Config.in
>  create mode 100644 package/perl-module-runtime/perl-module-runtime.hash
>  create mode 100644 package/perl-module-runtime/perl-module-runtime.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 40964d3406..a20dfe57d7 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -708,6 +708,7 @@ menu "Perl libraries/modules"
>         source "package/perl-mailtools/Config.in"
>         source "package/perl-mime-base64-urlsafe/Config.in"
>         source "package/perl-mime-base64/Config.in"
> +       source "package/perl-module-runtime/Config.in"
>         source "package/perl-mojolicious-plugin-authentication/Config.in"
>         source "package/perl-mojolicious/Config.in"
>         source "package/perl-net-dns/Config.in"
> diff --git a/package/perl-module-runtime/Config.in
> b/package/perl-module-runtime/Config.in
> new file mode 100644
> index 0000000000..fca29f66df
> --- /dev/null
> +++ b/package/perl-module-runtime/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_MODULE_RUNTIME
> +       bool "perl-module-runtime"
> +       help
> +         runtime module handling
> +
> +         https://metacpan.org/release/Module-Runtime
> diff --git a/package/perl-module-runtime/perl-module-runtime.hash
> b/package/perl-module-runtime/perl-module-runtime.hash
> new file mode 100644
> index 0000000000..c52cb75504
> --- /dev/null
> +++ b/package/perl-module-runtime/perl-module-runtime.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    d3d47222fa2e3dfcb4526f6cc8437b20 Module-Runtime-0.016.tar.gz
> +sha256 68302ec646833547d410be28e09676db75006f4aa58a11f3bdb44ffe99f0f024
> Module-Runtime-0.016.tar.gz
> +
> +# computed by scancpan
> +sha256 ad1761020436687e8493208336ef53e84589fdba212da59b05b8111cca75ddc1
> README
> diff --git a/package/perl-module-runtime/perl-module-runtime.mk
> b/package/perl-module-runtime/perl-module-runtime.mk
> new file mode 100644
> index 0000000000..5ba95f7056
> --- /dev/null
> +++ b/package/perl-module-runtime/perl-module-runtime.mk
> @@ -0,0 +1,14 @@
> +###########################################################
> #####################
> +#
> +# perl-module-runtime
> +#
> +###########################################################
> #####################
> +
> +PERL_MODULE_RUNTIME_VERSION = 0.016
> +PERL_MODULE_RUNTIME_SOURCE = Module-Runtime-$(PERL_MODULE_
> RUNTIME_VERSION).tar.gz
> +PERL_MODULE_RUNTIME_SITE = $(BR2_CPAN_MIRROR)/authors/id/Z/ZE/ZEFRAM
> +PERL_MODULE_RUNTIME_DEPENDENCIES = host-perl-module-build
> +PERL_MODULE_RUNTIME_LICENSE = Artistic or GPL-1.0+
> +PERL_MODULE_RUNTIME_LICENSE_FILES = README
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/557685f8/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 13/18] perl-number-bytes-human: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:35 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                                           |  1 +
>  package/perl-number-bytes-human/Config.in                   |  6 ++++++
>  .../perl-number-bytes-human/perl-number-bytes-human.hash    |  6 ++++++
>  package/perl-number-bytes-human/perl-number-bytes-human.mk  | 13
> +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-number-bytes-human/Config.in
>  create mode 100644 package/perl-number-bytes-
> human/perl-number-bytes-human.hash
>  create mode 100644 package/perl-number-bytes-human/
> perl-number-bytes-human.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index a20dfe57d7..6410a5b233 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -719,6 +719,7 @@ menu "Perl libraries/modules"
>         source "package/perl-net-ssleay/Config.in"
>         source "package/perl-net-telnet/Config.in"
>         source "package/perl-netaddr-ip/Config.in"
> +       source "package/perl-number-bytes-human/Config.in"
>         source "package/perl-path-tiny/Config.in"
>         source "package/perl-time-hires/Config.in"
>         source "package/perl-timedate/Config.in"
> diff --git a/package/perl-number-bytes-human/Config.in
> b/package/perl-number-bytes-human/Config.in
> new file mode 100644
> index 0000000000..ca43873d49
> --- /dev/null
> +++ b/package/perl-number-bytes-human/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_NUMBER_BYTES_HUMAN
> +       bool "perl-number-bytes-human"
> +       help
> +         Convert byte count to human readable format
> +
> +         https://metacpan.org/release/Number-Bytes-Human
> diff --git a/package/perl-number-bytes-human/perl-number-bytes-human.hash
> b/package/perl-number-bytes-human/perl-number-bytes-human.hash
> new file mode 100644
> index 0000000000..af7a6b65a1
> --- /dev/null
> +++ b/package/perl-number-bytes-human/perl-number-bytes-human.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    43d2c86a55924aa71535a41de0311efd Number-Bytes-Human-0.11.tar.gz
> +sha256 5fc79c49b0b40df780479c43696381343e2b6ad1fe52859f60bc65b66ebe6f2c
> Number-Bytes-Human-0.11.tar.gz
> +
> +# computed by scancpan
> +sha256 d42143fe4b63cb5d488d65a44e6c55769b098ea447462ff33316b33a837b7cf9
> README
> diff --git a/package/perl-number-bytes-human/perl-number-bytes-human.mk
> b/package/perl-number-bytes-human/perl-number-bytes-human.mk
> new file mode 100644
> index 0000000000..e10c550eed
> --- /dev/null
> +++ b/package/perl-number-bytes-human/perl-number-bytes-human.mk
> @@ -0,0 +1,13 @@
> +###########################################################
> #####################
> +#
> +# perl-number-bytes-human
> +#
> +###########################################################
> #####################
> +
> +PERL_NUMBER_BYTES_HUMAN_VERSION = 0.11
> +PERL_NUMBER_BYTES_HUMAN_SOURCE = Number-Bytes-Human-$(PERL_
> NUMBER_BYTES_HUMAN_VERSION).tar.gz
> +PERL_NUMBER_BYTES_HUMAN_SITE = $(BR2_CPAN_MIRROR)/authors/id/
> F/FE/FERREIRA
> +PERL_NUMBER_BYTES_HUMAN_LICENSE = Artistic or GPL-1.0+
> +PERL_NUMBER_BYTES_HUMAN_LICENSE_FILES = README
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/65f77dcf/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 14/18] perl-params-util: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:36 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                              |  1 +
>  package/perl-params-util/Config.in             | 10 ++++++++++
>  package/perl-params-util/perl-params-util.hash |  6 ++++++
>  package/perl-params-util/perl-params-util.mk   | 13 +++++++++++++
>  4 files changed, 30 insertions(+)
>  create mode 100644 package/perl-params-util/Config.in
>  create mode 100644 package/perl-params-util/perl-params-util.hash
>  create mode 100644 package/perl-params-util/perl-params-util.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 6410a5b233..fece804e81 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -720,6 +720,7 @@ menu "Perl libraries/modules"
>         source "package/perl-net-telnet/Config.in"
>         source "package/perl-netaddr-ip/Config.in"
>         source "package/perl-number-bytes-human/Config.in"
> +       source "package/perl-params-util/Config.in"
>         source "package/perl-path-tiny/Config.in"
>         source "package/perl-time-hires/Config.in"
>         source "package/perl-timedate/Config.in"
> diff --git a/package/perl-params-util/Config.in
> b/package/perl-params-util/Config.in
> new file mode 100644
> index 0000000000..b155899b06
> --- /dev/null
> +++ b/package/perl-params-util/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_PERL_PARAMS_UTIL
> +       bool "perl-params-util"
> +       depends on !BR2_STATIC_LIBS
> +       help
> +         Simple, compact and correct param-checking functions
> +
> +         https://metacpan.org/release/Params-Util
> +
> +comment "perl-params-util needs a toolchain w/ dynamic library"
> +       depends on BR2_STATIC_LIBS
> diff --git a/package/perl-params-util/perl-params-util.hash
> b/package/perl-params-util/perl-params-util.hash
> new file mode 100644
> index 0000000000..0c247ebfe5
> --- /dev/null
> +++ b/package/perl-params-util/perl-params-util.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    02db120c0eef87aae1830cc62bdec37b Params-Util-1.07.tar.gz
> +sha256 30f1ec3f2cf9ff66ae96f973333f23c5f558915bb6266881eac7423f52d7c76c
> Params-Util-1.07.tar.gz
> +
> +# computed by scancpan
> +sha256 71b5fb95de1ba013a517c926feaa2a7d0fb0e8f132818e8529e0da5ec01187cd
> LICENSE
> diff --git a/package/perl-params-util/perl-params-util.mk
> b/package/perl-params-util/perl-params-util.mk
> new file mode 100644
> index 0000000000..71868ddff4
> --- /dev/null
> +++ b/package/perl-params-util/perl-params-util.mk
> @@ -0,0 +1,13 @@
> +###########################################################
> #####################
> +#
> +# perl-params-util
> +#
> +###########################################################
> #####################
> +
> +PERL_PARAMS_UTIL_VERSION = 1.07
> +PERL_PARAMS_UTIL_SOURCE = Params-Util-$(PERL_PARAMS_UTIL_VERSION).tar.gz
> +PERL_PARAMS_UTIL_SITE = $(BR2_CPAN_MIRROR)/authors/id/A/AD/ADAMK
> +PERL_PARAMS_UTIL_LICENSE = Artistic or GPL-1.0+
> +PERL_PARAMS_UTIL_LICENSE_FILES = LICENSE
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/03dd655b/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 15/18] perl-sub-install: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:37 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:14 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>


> ---
>  package/Config.in                              |  1 +
>  package/perl-sub-install/Config.in             |  6 ++++++
>  package/perl-sub-install/perl-sub-install.hash |  6 ++++++
>  package/perl-sub-install/perl-sub-install.mk   | 13 +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-sub-install/Config.in
>  create mode 100644 package/perl-sub-install/perl-sub-install.hash
>  create mode 100644 package/perl-sub-install/perl-sub-install.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index fece804e81..4f6d6dede6 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -722,6 +722,7 @@ menu "Perl libraries/modules"
>         source "package/perl-number-bytes-human/Config.in"
>         source "package/perl-params-util/Config.in"
>         source "package/perl-path-tiny/Config.in"
> +       source "package/perl-sub-install/Config.in"
>         source "package/perl-time-hires/Config.in"
>         source "package/perl-timedate/Config.in"
>         source "package/perl-try-tiny/Config.in"
> diff --git a/package/perl-sub-install/Config.in
> b/package/perl-sub-install/Config.in
> new file mode 100644
> index 0000000000..41d57b237f
> --- /dev/null
> +++ b/package/perl-sub-install/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_SUB_INSTALL
> +       bool "perl-sub-install"
> +       help
> +         install subroutines into packages easily
> +
> +         https://github.com/rjbs/Sub-Install
> diff --git a/package/perl-sub-install/perl-sub-install.hash
> b/package/perl-sub-install/perl-sub-install.hash
> new file mode 100644
> index 0000000000..3abd9940e6
> --- /dev/null
> +++ b/package/perl-sub-install/perl-sub-install.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    e1ce4f9cb6b2f6b8778b036c31afa5ab Sub-Install-0.928.tar.gz
> +sha256 61e567a7679588887b7b86d427bc476ea6d77fffe7e0d17d640f89007d98ef0f
> Sub-Install-0.928.tar.gz
> +
> +# computed by scancpan
> +sha256 ad5fb5c05003488f924c60ead21694d629055c9db2ee2d9dd0cf0041b9fedaca
> LICENSE
> diff --git a/package/perl-sub-install/perl-sub-install.mk
> b/package/perl-sub-install/perl-sub-install.mk
> new file mode 100644
> index 0000000000..fc7c55afb8
> --- /dev/null
> +++ b/package/perl-sub-install/perl-sub-install.mk
> @@ -0,0 +1,13 @@
> +###########################################################
> #####################
> +#
> +# perl-sub-install
> +#
> +###########################################################
> #####################
> +
> +PERL_SUB_INSTALL_VERSION = 0.928
> +PERL_SUB_INSTALL_SOURCE = Sub-Install-$(PERL_SUB_INSTALL_VERSION).tar.gz
> +PERL_SUB_INSTALL_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RJ/RJBS
> +PERL_SUB_INSTALL_LICENSE = Artistic or GPL-1.0+
> +PERL_SUB_INSTALL_LICENSE_FILES = LICENSE
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/46d17bc6/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 16/18] perl-sys-meminfo: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:38 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:15 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                              |  1 +
>  package/perl-sys-meminfo/Config.in             | 10 ++++++++++
>  package/perl-sys-meminfo/perl-sys-meminfo.hash |  6 ++++++
>  package/perl-sys-meminfo/perl-sys-meminfo.mk   | 12 ++++++++++++
>  4 files changed, 29 insertions(+)
>  create mode 100644 package/perl-sys-meminfo/Config.in
>  create mode 100644 package/perl-sys-meminfo/perl-sys-meminfo.hash
>  create mode 100644 package/perl-sys-meminfo/perl-sys-meminfo.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 4f6d6dede6..dd3da6ebe6 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -723,6 +723,7 @@ menu "Perl libraries/modules"
>         source "package/perl-params-util/Config.in"
>         source "package/perl-path-tiny/Config.in"
>         source "package/perl-sub-install/Config.in"
> +       source "package/perl-sys-meminfo/Config.in"
>         source "package/perl-time-hires/Config.in"
>         source "package/perl-timedate/Config.in"
>         source "package/perl-try-tiny/Config.in"
> diff --git a/package/perl-sys-meminfo/Config.in
> b/package/perl-sys-meminfo/Config.in
> new file mode 100644
> index 0000000000..3e3155d6cb
> --- /dev/null
> +++ b/package/perl-sys-meminfo/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_PERL_SYS_MEMINFO
> +       bool "perl-sys-meminfo"
> +       depends on !BR2_STATIC_LIBS
> +       help
> +         query the total free and used physical memory
> +
> +         https://metacpan.org/release/Sys-MemInfo
> +
> +comment "perl-sys-meminfo needs a toolchain w/ dynamic library"
> +       depends on BR2_STATIC_LIBS
> diff --git a/package/perl-sys-meminfo/perl-sys-meminfo.hash
> b/package/perl-sys-meminfo/perl-sys-meminfo.hash
> new file mode 100644
> index 0000000000..207cfad2bf
> --- /dev/null
> +++ b/package/perl-sys-meminfo/perl-sys-meminfo.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    88f0632691d7de91cbed95ba1ff29025 Sys-MemInfo-0.99.tar.gz
> +sha256 0786319d3a3a8bae5d727939244bf17e140b714f52734d5e9f627203e4cf3e3b
> Sys-MemInfo-0.99.tar.gz
> +
> +# computed by scancpan
> +sha256 62854ade112a6782f476bdc7dc9603776c4e064782623d999f966dba131a15de
> LICENSE
> diff --git a/package/perl-sys-meminfo/perl-sys-meminfo.mk
> b/package/perl-sys-meminfo/perl-sys-meminfo.mk
> new file mode 100644
> index 0000000000..ed35f411be
> --- /dev/null
> +++ b/package/perl-sys-meminfo/perl-sys-meminfo.mk
> @@ -0,0 +1,12 @@
> +###########################################################
> #####################
> +#
> +# perl-sys-meminfo
> +#
> +###########################################################
> #####################
> +
> +PERL_SYS_MEMINFO_VERSION = 0.99
> +PERL_SYS_MEMINFO_SOURCE = Sys-MemInfo-$(PERL_SYS_MEMINFO_VERSION).tar.gz
> +PERL_SYS_MEMINFO_SITE = $(BR2_CPAN_MIRROR)/authors/id/S/SC/SCRESTO
> +PERL_SYS_MEMINFO_LICENSE_FILES = LICENSE
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/fb640551/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 17/18] perl-sys-mmap: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: François Perrad @ 2018-08-12 16:39 UTC (permalink / raw)
  To: buildroot

2018-08-10 18:15 GMT+02:00 Christopher McCrory <chrismcc@gmail.com>:

> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
>

Acked-by: Francois Perrad <francois.perrad@gadz.org>

---
>  package/Config.in                        |  1 +
>  package/perl-sys-mmap/Config.in          | 10 ++++++++++
>  package/perl-sys-mmap/perl-sys-mmap.hash |  7 +++++++
>  package/perl-sys-mmap/perl-sys-mmap.mk   | 13 +++++++++++++
>  4 files changed, 31 insertions(+)
>  create mode 100644 package/perl-sys-mmap/Config.in
>  create mode 100644 package/perl-sys-mmap/perl-sys-mmap.hash
>  create mode 100644 package/perl-sys-mmap/perl-sys-mmap.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index dd3da6ebe6..5b9c47aa79 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -724,6 +724,7 @@ menu "Perl libraries/modules"
>         source "package/perl-path-tiny/Config.in"
>         source "package/perl-sub-install/Config.in"
>         source "package/perl-sys-meminfo/Config.in"
> +       source "package/perl-sys-mmap/Config.in"
>         source "package/perl-time-hires/Config.in"
>         source "package/perl-timedate/Config.in"
>         source "package/perl-try-tiny/Config.in"
> diff --git a/package/perl-sys-mmap/Config.in b/package/perl-sys-mmap/
> Config.in
> new file mode 100644
> index 0000000000..56725f2faa
> --- /dev/null
> +++ b/package/perl-sys-mmap/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_PERL_SYS_MMAP
> +       bool "perl-sys-mmap"
> +       depends on !BR2_STATIC_LIBS
> +       help
> +         uses mmap to map in a file as a Perl variable
> +
> +         https://metacpan.org/release/Sys-Mmap
> +
> +comment "perl-sys-mmap needs a toolchain w/ dynamic library"
> +       depends on BR2_STATIC_LIBS
> diff --git a/package/perl-sys-mmap/perl-sys-mmap.hash
> b/package/perl-sys-mmap/perl-sys-mmap.hash
> new file mode 100644
> index 0000000000..caeea3d965
> --- /dev/null
> +++ b/package/perl-sys-mmap/perl-sys-mmap.hash
> @@ -0,0 +1,7 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    990c9106a88dc843035f7bcb109e6c0e Sys-Mmap-0.19.tar.gz
> +sha256 09295e25cc9b0599d9009d19b2be89fcecaecc62ce594f873d7f70d7c10900fa
> Sys-Mmap-0.19.tar.gz
> +
> +# computed by scancpan
> +sha256 51c144e9a67644fa8eea0ea63dedb4e837587305b22f073eb5e279e39e7325a8
> Copying
> +sha256 4ac2afe465736476a06e52edcc78c72cfa0fa4d625916e58ab4f2af6c598709c
> Artistic
> diff --git a/package/perl-sys-mmap/perl-sys-mmap.mk
> b/package/perl-sys-mmap/perl-sys-mmap.mk
> new file mode 100644
> index 0000000000..ed2ca79b02
> --- /dev/null
> +++ b/package/perl-sys-mmap/perl-sys-mmap.mk
> @@ -0,0 +1,13 @@
> +###########################################################
> #####################
> +#
> +# perl-sys-mmap
> +#
> +###########################################################
> #####################
> +
> +PERL_SYS_MMAP_VERSION = 0.19
> +PERL_SYS_MMAP_SOURCE = Sys-Mmap-$(PERL_SYS_MMAP_VERSION).tar.gz
> +PERL_SYS_MMAP_SITE = $(BR2_CPAN_MIRROR)/authors/id/S/SW/SWALTERS
> +PERL_SYS_MMAP_LICENSE = Artistic or GPL-1.0+
> +PERL_SYS_MMAP_LICENSE_FILES = Copying Artistic
> +
> +$(eval $(perl-package))
> --
> 2.14.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180812/114c74b9/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 01/18] perl-appconfig: new package
  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
  2 siblings, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:10 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:45 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                          |  1 +
>  package/perl-appconfig/Config.in           |  6 ++++++
>  package/perl-appconfig/perl-appconfig.hash |  6 ++++++
>  package/perl-appconfig/perl-appconfig.mk   | 13 +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-appconfig/Config.in
>  create mode 100644 package/perl-appconfig/perl-appconfig.hash
>  create mode 100644 package/perl-appconfig/perl-appconfig.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 01/18] perl-appconfig: new package
  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
  2 siblings, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:11 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:45 -0700, Christopher McCrory wrote:

> diff --git a/package/perl-appconfig/Config.in b/package/perl-appconfig/Config.in
> new file mode 100644
> index 0000000000..ca2220f1c0
> --- /dev/null
> +++ b/package/perl-appconfig/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_APPCONFIG
> +	bool "perl-appconfig"
> +	help
> +	  AppConfig is a bundle of Perl5 modules for reading configuration files and parsing command line arguments.

This line was too long, make sure to run utils/check-package on your
packages before submission.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 02/18] perl-astro-suntime: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:14 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:46 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                                  |  1 +
>  package/perl-astro-suntime/Config.in               |  6 ++++++
>  package/perl-astro-suntime/perl-astro-suntime.hash |  6 ++++++
>  package/perl-astro-suntime/perl-astro-suntime.mk   | 14 ++++++++++++++
>  4 files changed, 27 insertions(+)
>  create mode 100644 package/perl-astro-suntime/Config.in
>  create mode 100644 package/perl-astro-suntime/perl-astro-suntime.hash
>  create mode 100644 package/perl-astro-suntime/perl-astro-suntime.mk

I've applied to next. The entry in the DEVELOPERS file was missing.

> +PERL_ASTRO_SUNTIME_VERSION = 0.06
> +PERL_ASTRO_SUNTIME_SOURCE = Astro-SunTime-$(PERL_ASTRO_SUNTIME_VERSION).tar.gz
> +PERL_ASTRO_SUNTIME_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RO/ROBF
> +PERL_ASTRO_SUNTIME_DEPENDENCIES = host-perl-module-build
> +PERL_ASTRO_SUNTIME_LICENSE = gpl_3

gpl_3 is not correct, it should have been GPL-3.0.

Fran?ois, is this a bug in scancpan ?

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 04/18] perl-class-std: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:17 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:48 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                          |  1 +
>  package/perl-class-std/Config.in           |  6 ++++++
>  package/perl-class-std/perl-class-std.hash |  6 ++++++
>  package/perl-class-std/perl-class-std.mk   | 14 ++++++++++++++
>  4 files changed, 27 insertions(+)
>  create mode 100644 package/perl-class-std/Config.in
>  create mode 100644 package/perl-class-std/perl-class-std.hash
>  create mode 100644 package/perl-class-std/perl-class-std.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 05/18] perl-data-uuid: new package
  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
  1 sibling, 1 reply; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:27 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:49 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                          |  1 +
>  package/perl-data-uuid/Config.in           | 10 ++++++++++
>  package/perl-data-uuid/perl-data-uuid.hash |  6 ++++++
>  package/perl-data-uuid/perl-data-uuid.mk   | 13 +++++++++++++
>  4 files changed, 30 insertions(+)
>  create mode 100644 package/perl-data-uuid/Config.in
>  create mode 100644 package/perl-data-uuid/perl-data-uuid.hash
>  create mode 100644 package/perl-data-uuid/perl-data-uuid.mk

I've applied to next, but...


> +PERL_DATA_UUID_VERSION = 1.221
> +PERL_DATA_UUID_SOURCE = Data-UUID-$(PERL_DATA_UUID_VERSION).tar.gz
> +PERL_DATA_UUID_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RJ/RJBS
> +PERL_DATA_UUID_LICENSE = bsd

The license is not BSD. It's apparently some variant of the MIT license
that is documented as the "HP variant" in
https://fedoraproject.org/wiki/Licensing:MIT#HP_Variant. So I've used
the MIT-HP tag, even if it isn't documented officially by SPDX.

It seems like the license details on CPAN are sometimes wrong. Please
double check them manually whenever you submit a new Perl package in
Buildroot.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 06/18] perl-date-manip: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:30 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:50 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                            |  1 +
>  package/perl-date-manip/Config.in            |  6 ++++++
>  package/perl-date-manip/perl-date-manip.hash |  6 ++++++
>  package/perl-date-manip/perl-date-manip.mk   | 13 +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-date-manip/Config.in
>  create mode 100644 package/perl-date-manip/perl-date-manip.hash
>  create mode 100644 package/perl-date-manip/perl-date-manip.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 07/18] perl-dbi: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:36 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:51 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in              |  1 +
>  package/perl-dbi/Config.in     | 10 ++++++++++
>  package/perl-dbi/perl-dbi.hash |  6 ++++++
>  package/perl-dbi/perl-dbi.mk   | 13 +++++++++++++
>  4 files changed, 30 insertions(+)
>  create mode 100644 package/perl-dbi/Config.in
>  create mode 100644 package/perl-dbi/perl-dbi.hash
>  create mode 100644 package/perl-dbi/perl-dbi.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 08/18] perl-device-serialport: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:38 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:52 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                                          |  1 +
>  package/perl-device-serialport/Config.in                   | 10 ++++++++++
>  package/perl-device-serialport/perl-device-serialport.hash |  6 ++++++
>  package/perl-device-serialport/perl-device-serialport.mk   | 12 ++++++++++++
>  4 files changed, 29 insertions(+)

I've applied to next, but ...

> +PERL_DEVICE_SERIALPORT_VERSION = 1.04
> +PERL_DEVICE_SERIALPORT_SOURCE = Device-SerialPort-$(PERL_DEVICE_SERIALPORT_VERSION).tar.gz
> +PERL_DEVICE_SERIALPORT_SITE = $(BR2_CPAN_MIRROR)/authors/id/C/CO/COOK
> +PERL_DEVICE_SERIALPORT_LICENSE_FILES = README

The _LICENSE variable was missing, even though the licensing terms were
clearly specified in the README file. Once again, please double check
the output of scancpan, which may not be complete.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 09/18] perl-file-slurp: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:41 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:53 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                            |  1 +
>  package/perl-file-slurp/Config.in            |  6 ++++++
>  package/perl-file-slurp/perl-file-slurp.hash |  6 ++++++
>  package/perl-file-slurp/perl-file-slurp.mk   | 13 +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-file-slurp/Config.in
>  create mode 100644 package/perl-file-slurp/perl-file-slurp.hash
>  create mode 100644 package/perl-file-slurp/perl-file-slurp.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 10/18] perl-io-interface: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:44 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:54 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                                |  1 +
>  package/perl-io-interface/Config.in              | 10 ++++++++++
>  package/perl-io-interface/perl-io-interface.hash |  6 ++++++
>  package/perl-io-interface/perl-io-interface.mk   | 14 ++++++++++++++
>  4 files changed, 31 insertions(+)

I've applied to next, but ...

> +PERL_IO_INTERFACE_LICENSE = Artistic or GPL-1.0+

This was again wrong. The license file says:

"""
The Artistic License 2.0
"""

And I don't see where the GPL-1.0+ option is. So I've changed the
license information to:

PERL_IO_INTERFACE_LICENSE = Artistic-2.0

I already suggested to double check the result of scancpan, here is
another example why :-)

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 11/18] perl-json-maybexs: new package
  2018-08-10 16:14 ` [Buildroot] [PATCH 11/18] perl-json-maybexs: " Christopher McCrory
  2018-08-12 16:34   ` François Perrad
@ 2018-08-12 21:46   ` Thomas Petazzoni
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-12 21:46 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:55 -0700, Christopher McCrory wrote:
> 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

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 12/18] perl-module-runtime: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-13  7:39 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:56 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                                    |  1 +
>  package/perl-module-runtime/Config.in                |  6 ++++++
>  package/perl-module-runtime/perl-module-runtime.hash |  6 ++++++
>  package/perl-module-runtime/perl-module-runtime.mk   | 14 ++++++++++++++
>  4 files changed, 27 insertions(+)
>  create mode 100644 package/perl-module-runtime/Config.in
>  create mode 100644 package/perl-module-runtime/perl-module-runtime.hash
>  create mode 100644 package/perl-module-runtime/perl-module-runtime.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 13/18] perl-number-bytes-human: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-13  9:50 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:57 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                                           |  1 +
>  package/perl-number-bytes-human/Config.in                   |  6 ++++++
>  .../perl-number-bytes-human/perl-number-bytes-human.hash    |  6 ++++++
>  package/perl-number-bytes-human/perl-number-bytes-human.mk  | 13 +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-number-bytes-human/Config.in
>  create mode 100644 package/perl-number-bytes-human/perl-number-bytes-human.hash
>  create mode 100644 package/perl-number-bytes-human/perl-number-bytes-human.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 14/18] perl-params-util: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-13  9:52 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:58 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                              |  1 +
>  package/perl-params-util/Config.in             | 10 ++++++++++
>  package/perl-params-util/perl-params-util.hash |  6 ++++++
>  package/perl-params-util/perl-params-util.mk   | 13 +++++++++++++
>  4 files changed, 30 insertions(+)
>  create mode 100644 package/perl-params-util/Config.in
>  create mode 100644 package/perl-params-util/perl-params-util.hash
>  create mode 100644 package/perl-params-util/perl-params-util.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 15/18] perl-sub-install: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-13 10:00 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:14:59 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                              |  1 +
>  package/perl-sub-install/Config.in             |  6 ++++++
>  package/perl-sub-install/perl-sub-install.hash |  6 ++++++
>  package/perl-sub-install/perl-sub-install.mk   | 13 +++++++++++++
>  4 files changed, 26 insertions(+)
>  create mode 100644 package/perl-sub-install/Config.in
>  create mode 100644 package/perl-sub-install/perl-sub-install.hash
>  create mode 100644 package/perl-sub-install/perl-sub-install.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 16/18] perl-sys-meminfo: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-13 10:01 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:15:00 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                              |  1 +
>  package/perl-sys-meminfo/Config.in             | 10 ++++++++++
>  package/perl-sys-meminfo/perl-sys-meminfo.hash |  6 ++++++
>  package/perl-sys-meminfo/perl-sys-meminfo.mk   | 12 ++++++++++++
>  4 files changed, 29 insertions(+)
>  create mode 100644 package/perl-sys-meminfo/Config.in
>  create mode 100644 package/perl-sys-meminfo/perl-sys-meminfo.hash
>  create mode 100644 package/perl-sys-meminfo/perl-sys-meminfo.mk

You had a license file, but the LICENSE variable was empty, which was
not good. I added a value for the LICENSE variable, and applied to
next. Thanks!

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 17/18] perl-sys-mmap: new package
  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
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-13 10:02 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:15:01 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/Config.in                        |  1 +
>  package/perl-sys-mmap/Config.in          | 10 ++++++++++
>  package/perl-sys-mmap/perl-sys-mmap.hash |  7 +++++++
>  package/perl-sys-mmap/perl-sys-mmap.mk   | 13 +++++++++++++
>  4 files changed, 31 insertions(+)
>  create mode 100644 package/perl-sys-mmap/Config.in
>  create mode 100644 package/perl-sys-mmap/perl-sys-mmap.hash
>  create mode 100644 package/perl-sys-mmap/perl-sys-mmap.mk

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 18/18] Add to DEVELOPERS file
  2018-08-10 16:15 ` [Buildroot] [PATCH 18/18] Add to DEVELOPERS file Christopher McCrory
  2018-08-10 21:10   ` Thomas Petazzoni
@ 2018-08-13 10:02   ` Thomas Petazzoni
  1 sibling, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-13 10:02 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 10 Aug 2018 09:15:02 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>

I marked this patch as "Rejected", since I did the updates to the
DEVELOPERS file in each patch adding each individual Perl package.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 03/18] perl-cgi: new package
  2018-08-10 16:14 ` [Buildroot] [PATCH 03/18] perl-cgi: " Christopher McCrory
@ 2018-08-13 10:04   ` Thomas Petazzoni
  0 siblings, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-13 10:04 UTC (permalink / raw)
  To: buildroot

Hello Fran?ois,

On Fri, 10 Aug 2018 09:14:47 -0700, Christopher McCrory wrote:
> Signed-off-by: Christopher McCrory <chrismcc@gmail.com>

I believe this patch is the only one you didn't review in this entire
series. Any reason for that? It is not ready/correct ?

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 05/18] perl-data-uuid: new package
  2018-08-12 21:27   ` Thomas Petazzoni
@ 2018-08-13 13:46     ` Christopher McCrory
  2018-08-13 21:21       ` Thomas Petazzoni
  0 siblings, 1 reply; 59+ messages in thread
From: Christopher McCrory @ 2018-08-13 13:46 UTC (permalink / raw)
  To: buildroot

hello

On Sun, Aug 12, 2018 at 2:27 PM, Thomas Petazzoni <
thomas.petazzoni@bootlin.com> wrote:

> Hello,
>
> <snip>
>



> The license is not BSD. It's apparently some variant of the MIT license
> that is documented as the "HP variant" in
> https://fedoraproject.org/wiki/Licensing:MIT#HP_Variant. So I've used
> the MIT-HP tag, even if it isn't documented officially by SPDX.
>
> It seems like the license details on CPAN are sometimes wrong. Please
> double check them manually whenever you submit a new Perl package in
> Buildroot.
>
>
Yea, I found this:
https://github.com/rjbs/Data-UUID/issues/26

Makefile.PL declares BSD license, but LICENSE file contains MIT license
text as confirmed by Fedora legal team
https://lists.fedoraproject.org/pipermail/legal/2013-August/002226.html.
Could you please clarify this discrepancy? It would be great if you aligned
the Makefile.PL and LICENSE content.



> Thanks,
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
> Embedded Linux and Kernel engineering
> https://bootlin.com
>



-- 
Christopher McCrory
To the optimist, the glass is half full.
To the pessimist, the glass is half empty.
To the engineer, the glass is twice as big as it needs to be.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180813/ce9e9566/attachment.html>

^ permalink raw reply	[flat|nested] 59+ messages in thread

* [Buildroot] [PATCH 05/18] perl-data-uuid: new package
  2018-08-13 13:46     ` Christopher McCrory
@ 2018-08-13 21:21       ` Thomas Petazzoni
  0 siblings, 0 replies; 59+ messages in thread
From: Thomas Petazzoni @ 2018-08-13 21:21 UTC (permalink / raw)
  To: buildroot

Hello Christopher,

On Mon, 13 Aug 2018 06:46:53 -0700, Christopher McCrory wrote:

> Yea, I found this:
> https://github.com/rjbs/Data-UUID/issues/26

OK, I added a comment to "ping" on this question.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 59+ messages in thread

end of thread, other threads:[~2018-08-13 21:21 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 ` [Buildroot] [PATCH 11/18] perl-json-maybexs: " Christopher McCrory
2018-08-12 16:34   ` 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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.