All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 00/25] Some new Perl modules
@ 2015-04-19 10:16 Bernd Kuhls
  2015-04-19 10:16 ` [Buildroot] [PATCH v2 01/25] package/perl-html-tagset: New package Bernd Kuhls
                   ` (25 more replies)
  0 siblings, 26 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:16 UTC (permalink / raw)
  To: buildroot

this patch series adds some modules to buildroot needed by Spamassassin. The
Spamassassin package itself is not yet finished yet, but these modules can be
used by other packages as well so I split them from my tree.

v2:
- added some more dependencies found by scancpan script
- removed all host-perl-package entries (Thomas)

Regards, Bernd

Bernd Kuhls (25):
  package/perl-html-tagset: New package
  package/perl-html-parser: New package
  package/perl-netaddr-ip: New package
  package/perl-net-dns: New package
  package/perl-time-hires: New package
  package/perl-encode-locale: new package
  package/perl-http-date: New package
  package/perl-file-listing: New package
  package/perl-io-html: New package
  package/perl-uri: New package
  package/perl-lwp-mediatypes: New package
  package/perl-http-message: New package
  package/perl-http-cookies: New package
  package/perl-http-daemon: New package
  package/perl-http-negotiate: New package
  package/perl-net-http: New package
  package/perl-www-robotrules: New package
  package/perl-libwww: New package
  package/perl-mime-base64: New package
  package/perl-digest-sha1: new package
  package/perl-timedate: new package
  package/perl-crypt-openssl-random: new package
  package/perl-crypt-openssl-rsa: new package
  package/perl-mailtools: new package
  package/perl-mail-dkim: new package

-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 01/25] package/perl-html-tagset: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
@ 2015-04-19 10:16 ` Bernd Kuhls
  2015-04-19 10:16 ` [Buildroot] [PATCH v2 02/25] package/perl-html-parser: " Bernd Kuhls
                   ` (24 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:16 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                              |    1 +
 package/perl-html-tagset/Config.in             |    6 ++++++
 package/perl-html-tagset/perl-html-tagset.hash |    3 +++
 package/perl-html-tagset/perl-html-tagset.mk   |   14 ++++++++++++++
 4 files changed, 24 insertions(+)
 create mode 100644 package/perl-html-tagset/Config.in
 create mode 100644 package/perl-html-tagset/perl-html-tagset.hash
 create mode 100644 package/perl-html-tagset/perl-html-tagset.mk

diff --git a/package/Config.in b/package/Config.in
index a3cd4c2..bb354ff 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -508,6 +508,7 @@ menu "Perl libraries/modules"
 	source "package/perl-gd/Config.in"
 	source "package/perl-gdgraph/Config.in"
 	source "package/perl-gdtextutil/Config.in"
+	source "package/perl-html-tagset/Config.in"
 	source "package/perl-io-socket-ssl/Config.in"
 	source "package/perl-json-tiny/Config.in"
 	source "package/perl-mojolicious/Config.in"
diff --git a/package/perl-html-tagset/Config.in b/package/perl-html-tagset/Config.in
new file mode 100644
index 0000000..a39bc65
--- /dev/null
+++ b/package/perl-html-tagset/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_HTML_TAGSET
+	bool "perl-html-tagset"
+	help
+	  HTML::Tagset - data tables useful in parsing HTML
+
+	  http://www.cpan.org/modules/by-authors/id/P/PE/PETDANCE/
diff --git a/package/perl-html-tagset/perl-html-tagset.hash b/package/perl-html-tagset/perl-html-tagset.hash
new file mode 100644
index 0000000..a4cf090
--- /dev/null
+++ b/package/perl-html-tagset/perl-html-tagset.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    d2bfa18fe1904df7f683e96611e87437 HTML-Tagset-3.20.tar.gz
+sha256 adb17dac9e36cd011f5243881c9739417fd102fce760f8de4e9be4c7131108e2 HTML-Tagset-3.20.tar.gz
diff --git a/package/perl-html-tagset/perl-html-tagset.mk b/package/perl-html-tagset/perl-html-tagset.mk
new file mode 100644
index 0000000..2629611
--- /dev/null
+++ b/package/perl-html-tagset/perl-html-tagset.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-html-tagset
+#
+################################################################################
+
+PERL_HTML_TAGSET_VERSION = 3.20
+PERL_HTML_TAGSET_SOURCE = HTML-Tagset-$(PERL_HTML_TAGSET_VERSION).tar.gz
+PERL_HTML_TAGSET_SITE = $(BR2_CPAN_MIRROR)/authors/id/P/PE/PETDANCE
+PERL_HTML_TAGSET_DEPENDENCIES = perl
+PERL_HTML_TAGSET_LICENSE = Artistic or GPLv1+
+PERL_HTML_TAGSET_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 02/25] package/perl-html-parser: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
  2015-04-19 10:16 ` [Buildroot] [PATCH v2 01/25] package/perl-html-tagset: New package Bernd Kuhls
@ 2015-04-19 10:16 ` Bernd Kuhls
  2015-04-19 10:16 ` [Buildroot] [PATCH v2 03/25] package/perl-netaddr-ip: " Bernd Kuhls
                   ` (23 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:16 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                              |    1 +
 package/perl-html-parser/Config.in             |    8 ++++++++
 package/perl-html-parser/perl-html-parser.hash |    3 +++
 package/perl-html-parser/perl-html-parser.mk   |   14 ++++++++++++++
 4 files changed, 26 insertions(+)
 create mode 100644 package/perl-html-parser/Config.in
 create mode 100644 package/perl-html-parser/perl-html-parser.hash
 create mode 100644 package/perl-html-parser/perl-html-parser.mk

diff --git a/package/Config.in b/package/Config.in
index bb354ff..386b2e8 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -508,6 +508,7 @@ menu "Perl libraries/modules"
 	source "package/perl-gd/Config.in"
 	source "package/perl-gdgraph/Config.in"
 	source "package/perl-gdtextutil/Config.in"
+	source "package/perl-html-parser/Config.in"
 	source "package/perl-html-tagset/Config.in"
 	source "package/perl-io-socket-ssl/Config.in"
 	source "package/perl-json-tiny/Config.in"
diff --git a/package/perl-html-parser/Config.in b/package/perl-html-parser/Config.in
new file mode 100644
index 0000000..afdd523
--- /dev/null
+++ b/package/perl-html-parser/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PERL_HTML_PARSER
+	bool "perl-html-parser"
+	select BR2_PACKAGE_PERL_HTML_TAGSET
+	help
+	  The HTML-Parser distribution is is a collection of modules that parse
+	  and extract information from HTML documents
+
+	  http://github.com/gisle/html-parser
diff --git a/package/perl-html-parser/perl-html-parser.hash b/package/perl-html-parser/perl-html-parser.hash
new file mode 100644
index 0000000..eed22b7
--- /dev/null
+++ b/package/perl-html-parser/perl-html-parser.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    9128a45893097dfa3bf03301b19c5efe HTML-Parser-3.71.tar.gz
+sha256 be918b3749d3ff93627f72ee4b825683332ecb4c81c67a3a8d72b0435ffbd802 HTML-Parser-3.71.tar.gz
diff --git a/package/perl-html-parser/perl-html-parser.mk b/package/perl-html-parser/perl-html-parser.mk
new file mode 100644
index 0000000..ecdd7fd
--- /dev/null
+++ b/package/perl-html-parser/perl-html-parser.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-html-parser
+#
+################################################################################
+
+PERL_HTML_PARSER_VERSION = 3.71
+PERL_HTML_PARSER_SOURCE = HTML-Parser-$(PERL_HTML_PARSER_VERSION).tar.gz
+PERL_HTML_PARSER_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_HTML_PARSER_DEPENDENCIES = perl perl-html-tagset
+PERL_HTML_PARSER_LICENSE = Artistic or GPLv1+
+PERL_HTML_PARSER_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 03/25] package/perl-netaddr-ip: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
  2015-04-19 10:16 ` [Buildroot] [PATCH v2 01/25] package/perl-html-tagset: New package Bernd Kuhls
  2015-04-19 10:16 ` [Buildroot] [PATCH v2 02/25] package/perl-html-parser: " Bernd Kuhls
@ 2015-04-19 10:16 ` Bernd Kuhls
  2015-04-19 10:16 ` [Buildroot] [PATCH v2 04/25] package/perl-net-dns: " Bernd Kuhls
                   ` (22 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:16 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                            |    1 +
 package/perl-netaddr-ip/Config.in            |   10 ++++++++++
 package/perl-netaddr-ip/perl-netaddr-ip.hash |    3 +++
 package/perl-netaddr-ip/perl-netaddr-ip.mk   |   16 ++++++++++++++++
 4 files changed, 30 insertions(+)
 create mode 100644 package/perl-netaddr-ip/Config.in
 create mode 100644 package/perl-netaddr-ip/perl-netaddr-ip.hash
 create mode 100644 package/perl-netaddr-ip/perl-netaddr-ip.mk

diff --git a/package/Config.in b/package/Config.in
index 386b2e8..07221f8 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -514,6 +514,7 @@ menu "Perl libraries/modules"
 	source "package/perl-json-tiny/Config.in"
 	source "package/perl-mojolicious/Config.in"
 	source "package/perl-net-ssleay/Config.in"
+	source "package/perl-netaddr-ip/Config.in"
 	source "package/perl-path-tiny/Config.in"
 	source "package/perl-try-tiny/Config.in"
 	source "package/perl-xml-libxml/Config.in"
diff --git a/package/perl-netaddr-ip/Config.in b/package/perl-netaddr-ip/Config.in
new file mode 100644
index 0000000..4f082f1
--- /dev/null
+++ b/package/perl-netaddr-ip/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PERL_NETADDR_IP
+	bool "perl-netaddr-ip"
+	depends on !BR2_STATIC_LIBS
+	help
+	  NetAddr::IP - Manages IPv4 and IPv6 addresses and subnets
+
+	  https://metacpan.org/release/NetAddr-IP
+
+comment "perl-netaddr-ip needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-netaddr-ip/perl-netaddr-ip.hash b/package/perl-netaddr-ip/perl-netaddr-ip.hash
new file mode 100644
index 0000000..37d17fa
--- /dev/null
+++ b/package/perl-netaddr-ip/perl-netaddr-ip.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    b72b91ebd228b096fd3b0acc87df877e NetAddr-IP-4.075.tar.gz
+sha256 ab8275bb8f306f780cd029a6dc48764461f4d1ef3a106b99fe5a90cbf2968839 NetAddr-IP-4.075.tar.gz
diff --git a/package/perl-netaddr-ip/perl-netaddr-ip.mk b/package/perl-netaddr-ip/perl-netaddr-ip.mk
new file mode 100644
index 0000000..e8ace9d
--- /dev/null
+++ b/package/perl-netaddr-ip/perl-netaddr-ip.mk
@@ -0,0 +1,16 @@
+################################################################################
+#
+# perl-netaddr-ip
+#
+################################################################################
+
+PERL_NETADDR_IP_VERSION = 4.075
+PERL_NETADDR_IP_SOURCE = NetAddr-IP-$(PERL_NETADDR_IP_VERSION).tar.gz
+PERL_NETADDR_IP_SITE = $(BR2_CPAN_MIRROR)/authors/id/M/MI/MIKER
+PERL_NETADDR_IP_DEPENDENCIES = perl
+PERL_NETADDR_IP_LICENSE = Artistic or GPLv1+
+PERL_NETADDR_IP_LICENSE_FILES = Artistic Copying
+
+PERL_NETADDR_IP_CONF_OPTS = -noxs
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 04/25] package/perl-net-dns: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (2 preceding siblings ...)
  2015-04-19 10:16 ` [Buildroot] [PATCH v2 03/25] package/perl-netaddr-ip: " Bernd Kuhls
@ 2015-04-19 10:16 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 05/25] package/perl-time-hires: " Bernd Kuhls
                   ` (21 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:16 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                      |    1 +
 package/perl-net-dns/Config.in         |   11 +++++++++++
 package/perl-net-dns/perl-net-dns.hash |    3 +++
 package/perl-net-dns/perl-net-dns.mk   |   14 ++++++++++++++
 4 files changed, 29 insertions(+)
 create mode 100644 package/perl-net-dns/Config.in
 create mode 100644 package/perl-net-dns/perl-net-dns.hash
 create mode 100644 package/perl-net-dns/perl-net-dns.mk

diff --git a/package/Config.in b/package/Config.in
index 07221f8..d6ef132 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -513,6 +513,7 @@ menu "Perl libraries/modules"
 	source "package/perl-io-socket-ssl/Config.in"
 	source "package/perl-json-tiny/Config.in"
 	source "package/perl-mojolicious/Config.in"
+	source "package/perl-net-dns/Config.in"
 	source "package/perl-net-ssleay/Config.in"
 	source "package/perl-netaddr-ip/Config.in"
 	source "package/perl-path-tiny/Config.in"
diff --git a/package/perl-net-dns/Config.in b/package/perl-net-dns/Config.in
new file mode 100644
index 0000000..52fb4d8
--- /dev/null
+++ b/package/perl-net-dns/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_PERL_NET_DNS
+	bool "perl-net-dns"
+	depends on !BR2_STATIC_LIBS
+	select BR2_PACKAGE_PERL_DIGEST_HMAC
+	help
+	  Net::DNS is a DNS resolver implemented in Perl.
+
+	  http://www.net-dns.org
+
+comment "perl-net-dns needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-net-dns/perl-net-dns.hash b/package/perl-net-dns/perl-net-dns.hash
new file mode 100644
index 0000000..01d2772
--- /dev/null
+++ b/package/perl-net-dns/perl-net-dns.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    f1d48107ff6b366479ad035783486d7a Net-DNS-0.83.tar.gz
+sha256 8e1108d1801b9695909859323e1ed2f7ffb3b03dd3d2028a19fb79fc1a1d7c39 Net-DNS-0.83.tar.gz
diff --git a/package/perl-net-dns/perl-net-dns.mk b/package/perl-net-dns/perl-net-dns.mk
new file mode 100644
index 0000000..75c0a1b
--- /dev/null
+++ b/package/perl-net-dns/perl-net-dns.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-net-dns
+#
+################################################################################
+
+PERL_NET_DNS_VERSION = 0.83
+PERL_NET_DNS_SOURCE = Net-DNS-$(PERL_NET_DNS_VERSION).tar.gz
+PERL_NET_DNS_SITE = $(BR2_CPAN_MIRROR)/authors/id/N/NL/NLNETLABS
+PERL_NET_DNS_DEPENDENCIES = perl perl-digest-hmac
+PERL_NET_DNS_LICENSE = Artistic or GPLv1+
+PERL_NET_DNS_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 05/25] package/perl-time-hires: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (3 preceding siblings ...)
  2015-04-19 10:16 ` [Buildroot] [PATCH v2 04/25] package/perl-net-dns: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 06/25] package/perl-encode-locale: new package Bernd Kuhls
                   ` (20 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                            |    1 +
 package/perl-time-hires/Config.in            |    6 ++++++
 package/perl-time-hires/perl-time-hires.hash |    3 +++
 package/perl-time-hires/perl-time-hires.mk   |   14 ++++++++++++++
 4 files changed, 24 insertions(+)
 create mode 100644 package/perl-time-hires/Config.in
 create mode 100644 package/perl-time-hires/perl-time-hires.hash
 create mode 100644 package/perl-time-hires/perl-time-hires.mk

diff --git a/package/Config.in b/package/Config.in
index d6ef132..f26305e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -517,6 +517,7 @@ menu "Perl libraries/modules"
 	source "package/perl-net-ssleay/Config.in"
 	source "package/perl-netaddr-ip/Config.in"
 	source "package/perl-path-tiny/Config.in"
+	source "package/perl-time-hires/Config.in"
 	source "package/perl-try-tiny/Config.in"
 	source "package/perl-xml-libxml/Config.in"
 	source "package/perl-xml-namespacesupport/Config.in"
diff --git a/package/perl-time-hires/Config.in b/package/perl-time-hires/Config.in
new file mode 100644
index 0000000..e10c18a
--- /dev/null
+++ b/package/perl-time-hires/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_TIME_HIRES
+	bool "perl-time-hires"
+	help
+	  High resolution alarm, sleep, gettimeofday, interval timers
+
+	  http://search.cpan.org/dist/Time-HiRes/HiRes.pm
diff --git a/package/perl-time-hires/perl-time-hires.hash b/package/perl-time-hires/perl-time-hires.hash
new file mode 100644
index 0000000..1852340
--- /dev/null
+++ b/package/perl-time-hires/perl-time-hires.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    077e5d7eda1349f98c564026603f8a0a Time-HiRes-1.9726.tar.gz
+sha256 ff662ad9b1f6c75a149db7fa1bfc7a161ac8b271e5f3980345e08b734769109e Time-HiRes-1.9726.tar.gz
diff --git a/package/perl-time-hires/perl-time-hires.mk b/package/perl-time-hires/perl-time-hires.mk
new file mode 100644
index 0000000..79207c9
--- /dev/null
+++ b/package/perl-time-hires/perl-time-hires.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-time-hires
+#
+################################################################################
+
+PERL_TIME_HIRES_VERSION = 1.9726
+PERL_TIME_HIRES_SOURCE = Time-HiRes-$(PERL_TIME_HIRES_VERSION).tar.gz
+PERL_TIME_HIRES_SITE = $(BR2_CPAN_MIRROR)/authors/id/Z/ZE/ZEFRAM
+PERL_TIME_HIRES_DEPENDENCIES = perl
+PERL_TIME_HIRES_LICENSE = Artistic or GPLv1+
+PERL_TIME_HIRES_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 06/25] package/perl-encode-locale: new package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (4 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 05/25] package/perl-time-hires: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 07/25] package/perl-http-date: New package Bernd Kuhls
                   ` (19 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                                  |    1 +
 package/perl-encode-locale/Config.in               |    6 ++++++
 package/perl-encode-locale/perl-encode-locale.hash |    3 +++
 package/perl-encode-locale/perl-encode-locale.mk   |   14 ++++++++++++++
 4 files changed, 24 insertions(+)
 create mode 100644 package/perl-encode-locale/Config.in
 create mode 100644 package/perl-encode-locale/perl-encode-locale.hash
 create mode 100644 package/perl-encode-locale/perl-encode-locale.mk

diff --git a/package/Config.in b/package/Config.in
index f26305e..e04f804 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -504,6 +504,7 @@ if BR2_PACKAGE_PERL
 menu "Perl libraries/modules"
 	source "package/perl-datetime-tiny/Config.in"
 	source "package/perl-digest-hmac/Config.in"
+	source "package/perl-encode-locale/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-encode-locale/Config.in b/package/perl-encode-locale/Config.in
new file mode 100644
index 0000000..d15aecb
--- /dev/null
+++ b/package/perl-encode-locale/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_ENCODE_LOCALE
+	bool "perl-encode-locale"
+	help
+	  Determine the locale encoding
+
+	  https://github.com/gisle/encode-locale
diff --git a/package/perl-encode-locale/perl-encode-locale.hash b/package/perl-encode-locale/perl-encode-locale.hash
new file mode 100644
index 0000000..d1abef5
--- /dev/null
+++ b/package/perl-encode-locale/perl-encode-locale.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    0565984b048732e4fd1315212f21d462 Encode-Locale-1.04.tar.gz
+sha256 33aca4aa35829bd5c8c5e64ebfde86d0a2e8cd59dac2c4de707ffe9dc10bfbd4 Encode-Locale-1.04.tar.gz
diff --git a/package/perl-encode-locale/perl-encode-locale.mk b/package/perl-encode-locale/perl-encode-locale.mk
new file mode 100644
index 0000000..fd7148e
--- /dev/null
+++ b/package/perl-encode-locale/perl-encode-locale.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-encode-locale
+#
+################################################################################
+
+PERL_ENCODE_LOCALE_VERSION = 1.04
+PERL_ENCODE_LOCALE_SOURCE = Encode-Locale-$(PERL_ENCODE_LOCALE_VERSION).tar.gz
+PERL_ENCODE_LOCALE_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_ENCODE_LOCALE_DEPENDENCIES = perl
+PERL_ENCODE_LOCALE_LICENSE = Artistic or GPLv1+
+PERL_ENCODE_LOCALE_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 07/25] package/perl-http-date: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (5 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 06/25] package/perl-encode-locale: new package Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 08/25] package/perl-file-listing: " Bernd Kuhls
                   ` (18 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                          |    1 +
 package/perl-http-date/Config.in           |    7 +++++++
 package/perl-http-date/perl-http-date.hash |    3 +++
 package/perl-http-date/perl-http-date.mk   |   14 ++++++++++++++
 4 files changed, 25 insertions(+)
 create mode 100644 package/perl-http-date/Config.in
 create mode 100644 package/perl-http-date/perl-http-date.hash
 create mode 100644 package/perl-http-date/perl-http-date.mk

diff --git a/package/Config.in b/package/Config.in
index e04f804..10c5974 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -511,6 +511,7 @@ menu "Perl libraries/modules"
 	source "package/perl-gdtextutil/Config.in"
 	source "package/perl-html-parser/Config.in"
 	source "package/perl-html-tagset/Config.in"
+	source "package/perl-http-date/Config.in"
 	source "package/perl-io-socket-ssl/Config.in"
 	source "package/perl-json-tiny/Config.in"
 	source "package/perl-mojolicious/Config.in"
diff --git a/package/perl-http-date/Config.in b/package/perl-http-date/Config.in
new file mode 100644
index 0000000..c45335f
--- /dev/null
+++ b/package/perl-http-date/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PERL_HTTP_DATE
+	bool "perl-http-date"
+	help
+	  This module provides functions that deal the date formats used by the
+	  HTTP protocol (and then some more)
+
+	  https://github.com/gisle/http-date
diff --git a/package/perl-http-date/perl-http-date.hash b/package/perl-http-date/perl-http-date.hash
new file mode 100644
index 0000000..db85cd0
--- /dev/null
+++ b/package/perl-http-date/perl-http-date.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    52b7a0d5982d61be1edb217751d7daba HTTP-Date-6.02.tar.gz
+sha256 e8b9941da0f9f0c9c01068401a5e81341f0e3707d1c754f8e11f42a7e629e333 HTTP-Date-6.02.tar.gz
diff --git a/package/perl-http-date/perl-http-date.mk b/package/perl-http-date/perl-http-date.mk
new file mode 100644
index 0000000..6de95b6
--- /dev/null
+++ b/package/perl-http-date/perl-http-date.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-http-date
+#
+################################################################################
+
+PERL_HTTP_DATE_VERSION = 6.02
+PERL_HTTP_DATE_SOURCE = HTTP-Date-$(PERL_HTTP_DATE_VERSION).tar.gz
+PERL_HTTP_DATE_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_HTTP_DATE_DEPENDENCIES = perl
+PERL_HTTP_DATE_LICENSE = Artistic or GPLv1+
+PERL_HTTP_DATE_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 08/25] package/perl-file-listing: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (6 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 07/25] package/perl-http-date: New package Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 09/25] package/perl-io-html: " Bernd Kuhls
                   ` (17 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                                |    1 +
 package/perl-file-listing/Config.in              |    7 +++++++
 package/perl-file-listing/perl-file-listing.hash |    3 +++
 package/perl-file-listing/perl-file-listing.mk   |   14 ++++++++++++++
 4 files changed, 25 insertions(+)
 create mode 100644 package/perl-file-listing/Config.in
 create mode 100644 package/perl-file-listing/perl-file-listing.hash
 create mode 100644 package/perl-file-listing/perl-file-listing.mk

diff --git a/package/Config.in b/package/Config.in
index 10c5974..d453595 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -505,6 +505,7 @@ menu "Perl libraries/modules"
 	source "package/perl-datetime-tiny/Config.in"
 	source "package/perl-digest-hmac/Config.in"
 	source "package/perl-encode-locale/Config.in"
+	source "package/perl-file-listing/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-listing/Config.in b/package/perl-file-listing/Config.in
new file mode 100644
index 0000000..85f8e2e
--- /dev/null
+++ b/package/perl-file-listing/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PERL_FILE_LISTING
+	bool "perl-file-listing"
+	select BR2_PACKAGE_PERL_HTTP_DATE
+	help
+	  Module to parse directoy listings
+
+	  https://github.com/gisle/file-listing
diff --git a/package/perl-file-listing/perl-file-listing.hash b/package/perl-file-listing/perl-file-listing.hash
new file mode 100644
index 0000000..1549c5a
--- /dev/null
+++ b/package/perl-file-listing/perl-file-listing.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    83f636b477741f3a014585bb9cc079a6 File-Listing-6.04.tar.gz
+sha256 1e0050fcd6789a2179ec0db282bf1e90fb92be35d1171588bd9c47d52d959cf5 File-Listing-6.04.tar.gz
diff --git a/package/perl-file-listing/perl-file-listing.mk b/package/perl-file-listing/perl-file-listing.mk
new file mode 100644
index 0000000..a9d8ced
--- /dev/null
+++ b/package/perl-file-listing/perl-file-listing.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-file-listing
+#
+################################################################################
+
+PERL_FILE_LISTING_VERSION = 6.04
+PERL_FILE_LISTING_SOURCE = File-Listing-$(PERL_FILE_LISTING_VERSION).tar.gz
+PERL_FILE_LISTING_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_FILE_LISTING_DEPENDENCIES = perl-http-date
+PERL_FILE_LISTING_LICENSE = Artistic or GPLv1+
+PERL_FILE_LISTING_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 09/25] package/perl-io-html: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (7 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 08/25] package/perl-file-listing: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 10/25] package/perl-uri: " Bernd Kuhls
                   ` (16 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                      |    1 +
 package/perl-io-html/Config.in         |    6 ++++++
 package/perl-io-html/perl-io-html.hash |    3 +++
 package/perl-io-html/perl-io-html.mk   |   14 ++++++++++++++
 4 files changed, 24 insertions(+)
 create mode 100644 package/perl-io-html/Config.in
 create mode 100644 package/perl-io-html/perl-io-html.hash
 create mode 100644 package/perl-io-html/perl-io-html.mk

diff --git a/package/Config.in b/package/Config.in
index d453595..3c99f07 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -513,6 +513,7 @@ menu "Perl libraries/modules"
 	source "package/perl-html-parser/Config.in"
 	source "package/perl-html-tagset/Config.in"
 	source "package/perl-http-date/Config.in"
+	source "package/perl-io-html/Config.in"
 	source "package/perl-io-socket-ssl/Config.in"
 	source "package/perl-json-tiny/Config.in"
 	source "package/perl-mojolicious/Config.in"
diff --git a/package/perl-io-html/Config.in b/package/perl-io-html/Config.in
new file mode 100644
index 0000000..6977022
--- /dev/null
+++ b/package/perl-io-html/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_IO_HTML
+	bool "perl-io-html"
+	help
+	  Perl module that opens a file and performs automatic charset detection
+
+	  https://github.com/madsen/io-html
diff --git a/package/perl-io-html/perl-io-html.hash b/package/perl-io-html/perl-io-html.hash
new file mode 100644
index 0000000..8d8c48d
--- /dev/null
+++ b/package/perl-io-html/perl-io-html.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    3f8958718844dc96b9f6946f21d70d22 IO-HTML-1.001.tar.gz
+sha256 ea78d2d743794adc028bc9589538eb867174b4e165d7d8b5f63486e6b828e7e0 IO-HTML-1.001.tar.gz
diff --git a/package/perl-io-html/perl-io-html.mk b/package/perl-io-html/perl-io-html.mk
new file mode 100644
index 0000000..3926d44
--- /dev/null
+++ b/package/perl-io-html/perl-io-html.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-io-html
+#
+################################################################################
+
+PERL_IO_HTML_VERSION = 1.001
+PERL_IO_HTML_SOURCE = IO-HTML-$(PERL_IO_HTML_VERSION).tar.gz
+PERL_IO_HTML_SITE = $(BR2_CPAN_MIRROR)/authors/id/C/CJ/CJM
+PERL_IO_HTML_DEPENDENCIES = perl
+PERL_IO_HTML_LICENSE = Artistic or GPLv1+
+PERL_IO_HTML_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 10/25] package/perl-uri: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (8 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 09/25] package/perl-io-html: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 11/25] package/perl-lwp-mediatypes: " Bernd Kuhls
                   ` (15 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in              |    1 +
 package/perl-uri/Config.in     |    8 ++++++++
 package/perl-uri/perl-uri.hash |    3 +++
 package/perl-uri/perl-uri.mk   |   14 ++++++++++++++
 4 files changed, 26 insertions(+)
 create mode 100644 package/perl-uri/Config.in
 create mode 100644 package/perl-uri/perl-uri.hash
 create mode 100644 package/perl-uri/perl-uri.mk

diff --git a/package/Config.in b/package/Config.in
index 3c99f07..794aa7a 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -523,6 +523,7 @@ menu "Perl libraries/modules"
 	source "package/perl-path-tiny/Config.in"
 	source "package/perl-time-hires/Config.in"
 	source "package/perl-try-tiny/Config.in"
+	source "package/perl-uri/Config.in"
 	source "package/perl-xml-libxml/Config.in"
 	source "package/perl-xml-namespacesupport/Config.in"
 	source "package/perl-xml-sax/Config.in"
diff --git a/package/perl-uri/Config.in b/package/perl-uri/Config.in
new file mode 100644
index 0000000..62a53f2
--- /dev/null
+++ b/package/perl-uri/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PERL_URI
+	bool "perl-uri"
+	help
+	  The module implements the URI class. Objects of this class represent
+	  Uniform Resource Identifier references as specified in RFC 2396 and
+	  updated by RFC 2732.
+
+	  https://github.com/libwww-perl/uri
diff --git a/package/perl-uri/perl-uri.hash b/package/perl-uri/perl-uri.hash
new file mode 100644
index 0000000..da33416
--- /dev/null
+++ b/package/perl-uri/perl-uri.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    d0ef53b6c63bcc02ba55f405c30741e3 URI-1.67.tar.gz
+sha256 7088d43d5f4902becfa5e0627751f5e6d0e0bdd1637b2d39e70ce807068a274e URI-1.67.tar.gz
diff --git a/package/perl-uri/perl-uri.mk b/package/perl-uri/perl-uri.mk
new file mode 100644
index 0000000..421a89f
--- /dev/null
+++ b/package/perl-uri/perl-uri.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-uri
+#
+################################################################################
+
+PERL_URI_VERSION = 1.67
+PERL_URI_SOURCE = URI-$(PERL_URI_VERSION).tar.gz
+PERL_URI_SITE = $(BR2_CPAN_MIRROR)/authors/id/E/ET/ETHER
+PERL_URI_DEPENDENCIES = perl
+PERL_URI_LICENSE = Artistic or GPLv1+
+PERL_URI_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 11/25] package/perl-lwp-mediatypes: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (9 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 10/25] package/perl-uri: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 12/25] package/perl-http-message: " Bernd Kuhls
                   ` (14 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                                    |    1 +
 package/perl-lwp-mediatypes/Config.in                |    7 +++++++
 package/perl-lwp-mediatypes/perl-lwp-mediatypes.hash |    3 +++
 package/perl-lwp-mediatypes/perl-lwp-mediatypes.mk   |   14 ++++++++++++++
 4 files changed, 25 insertions(+)
 create mode 100644 package/perl-lwp-mediatypes/Config.in
 create mode 100644 package/perl-lwp-mediatypes/perl-lwp-mediatypes.hash
 create mode 100644 package/perl-lwp-mediatypes/perl-lwp-mediatypes.mk

diff --git a/package/Config.in b/package/Config.in
index 794aa7a..501f767 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -516,6 +516,7 @@ menu "Perl libraries/modules"
 	source "package/perl-io-html/Config.in"
 	source "package/perl-io-socket-ssl/Config.in"
 	source "package/perl-json-tiny/Config.in"
+	source "package/perl-lwp-mediatypes/Config.in"
 	source "package/perl-mojolicious/Config.in"
 	source "package/perl-net-dns/Config.in"
 	source "package/perl-net-ssleay/Config.in"
diff --git a/package/perl-lwp-mediatypes/Config.in b/package/perl-lwp-mediatypes/Config.in
new file mode 100644
index 0000000..b362e9c
--- /dev/null
+++ b/package/perl-lwp-mediatypes/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PERL_LWP_MEDIATYPES
+	bool "perl-lwp-mediatypes"
+	help
+	  This module provides functions for handling media (also known as MIME)
+	  types and encodings.
+
+	  https://github.com/gisle/lwp-mediatypes
diff --git a/package/perl-lwp-mediatypes/perl-lwp-mediatypes.hash b/package/perl-lwp-mediatypes/perl-lwp-mediatypes.hash
new file mode 100644
index 0000000..0f6fee9
--- /dev/null
+++ b/package/perl-lwp-mediatypes/perl-lwp-mediatypes.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    8c5f25fb64b974d22aff424476ba13c9 LWP-MediaTypes-6.02.tar.gz
+sha256 18790b0cc5f0a51468495c3847b16738f785a2d460403595001e0b932e5db676 LWP-MediaTypes-6.02.tar.gz
diff --git a/package/perl-lwp-mediatypes/perl-lwp-mediatypes.mk b/package/perl-lwp-mediatypes/perl-lwp-mediatypes.mk
new file mode 100644
index 0000000..2442d41
--- /dev/null
+++ b/package/perl-lwp-mediatypes/perl-lwp-mediatypes.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-lwp-mediatypes
+#
+################################################################################
+
+PERL_LWP_MEDIATYPES_VERSION = 6.02
+PERL_LWP_MEDIATYPES_SOURCE = LWP-MediaTypes-$(PERL_LWP_MEDIATYPES_VERSION).tar.gz
+PERL_LWP_MEDIATYPES_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_LWP_MEDIATYPES_DEPENDENCIES = perl
+PERL_LWP_MEDIATYPES_LICENSE = Artistic or GPLv1+
+PERL_LWP_MEDIATYPES_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 12/25] package/perl-http-message: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (10 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 11/25] package/perl-lwp-mediatypes: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 13/25] package/perl-http-cookies: " Bernd Kuhls
                   ` (13 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                                |    1 +
 package/perl-http-message/Config.in              |   12 ++++++++++++
 package/perl-http-message/perl-http-message.hash |    3 +++
 package/perl-http-message/perl-http-message.mk   |   19 +++++++++++++++++++
 4 files changed, 35 insertions(+)
 create mode 100644 package/perl-http-message/Config.in
 create mode 100644 package/perl-http-message/perl-http-message.hash
 create mode 100644 package/perl-http-message/perl-http-message.mk

diff --git a/package/Config.in b/package/Config.in
index 501f767..f19c451 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -513,6 +513,7 @@ menu "Perl libraries/modules"
 	source "package/perl-html-parser/Config.in"
 	source "package/perl-html-tagset/Config.in"
 	source "package/perl-http-date/Config.in"
+	source "package/perl-http-message/Config.in"
 	source "package/perl-io-html/Config.in"
 	source "package/perl-io-socket-ssl/Config.in"
 	source "package/perl-json-tiny/Config.in"
diff --git a/package/perl-http-message/Config.in b/package/perl-http-message/Config.in
new file mode 100644
index 0000000..9dda1ee
--- /dev/null
+++ b/package/perl-http-message/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_PERL_HTTP_MESSAGE
+	bool "perl-http-message"
+	select BR2_PACKAGE_PERL_ENCODE_LOCALE
+	select BR2_PACKAGE_PERL_HTTP_DATE
+	select BR2_PACKAGE_PERL_IO_HTML
+	select BR2_PACKAGE_PERL_LWP_MEDIATYPES
+	select BR2_PACKAGE_PERL_URI
+	help
+	  The HTTP-Message distribution contains classes useful for representing
+	  the messages passed in HTTP style communication.
+
+	  https://github.com/libwww-perl/http-message
diff --git a/package/perl-http-message/perl-http-message.hash b/package/perl-http-message/perl-http-message.hash
new file mode 100644
index 0000000..ff6268d
--- /dev/null
+++ b/package/perl-http-message/perl-http-message.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    e563ac516e28d33f65bc0f295f625f85 HTTP-Message-6.06.tar.gz
+sha256 087e97009c5239dca4631cf433d836771b3fc5ba5685eef1965f9d3415cbad63 HTTP-Message-6.06.tar.gz
diff --git a/package/perl-http-message/perl-http-message.mk b/package/perl-http-message/perl-http-message.mk
new file mode 100644
index 0000000..12eda90
--- /dev/null
+++ b/package/perl-http-message/perl-http-message.mk
@@ -0,0 +1,19 @@
+################################################################################
+#
+# perl-http-message
+#
+################################################################################
+
+PERL_HTTP_MESSAGE_VERSION = 6.06
+PERL_HTTP_MESSAGE_SOURCE = HTTP-Message-$(PERL_HTTP_MESSAGE_VERSION).tar.gz
+PERL_HTTP_MESSAGE_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_HTTP_MESSAGE_LICENSE = Artistic or GPLv1+
+PERL_HTTP_MESSAGE_LICENSE_FILES = README
+PERL_HTTP_MESSAGE_DEPENDENCIES = \
+	perl-encode-locale \
+	perl-http-date \
+	perl-io-html \
+	perl-lwp-mediatypes \
+	perl-uri
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 13/25] package/perl-http-cookies: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (11 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 12/25] package/perl-http-message: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 14/25] package/perl-http-daemon: " Bernd Kuhls
                   ` (12 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                                |    1 +
 package/perl-http-cookies/Config.in              |    7 +++++++
 package/perl-http-cookies/perl-http-cookies.hash |    3 +++
 package/perl-http-cookies/perl-http-cookies.mk   |   14 ++++++++++++++
 4 files changed, 25 insertions(+)
 create mode 100644 package/perl-http-cookies/Config.in
 create mode 100644 package/perl-http-cookies/perl-http-cookies.hash
 create mode 100644 package/perl-http-cookies/perl-http-cookies.mk

diff --git a/package/Config.in b/package/Config.in
index f19c451..184c926 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -512,6 +512,7 @@ menu "Perl libraries/modules"
 	source "package/perl-gdtextutil/Config.in"
 	source "package/perl-html-parser/Config.in"
 	source "package/perl-html-tagset/Config.in"
+	source "package/perl-http-cookies/Config.in"
 	source "package/perl-http-date/Config.in"
 	source "package/perl-http-message/Config.in"
 	source "package/perl-io-html/Config.in"
diff --git a/package/perl-http-cookies/Config.in b/package/perl-http-cookies/Config.in
new file mode 100644
index 0000000..4dd2fd9
--- /dev/null
+++ b/package/perl-http-cookies/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PERL_HTTP_COOKIES
+	bool "perl-http-cookies"
+	select BR2_PACKAGE_PERL_HTTP_MESSAGE
+	help
+	  Objects that represent a "cookie jar"
+
+	  http://github.com/gisle/http-cookies
diff --git a/package/perl-http-cookies/perl-http-cookies.hash b/package/perl-http-cookies/perl-http-cookies.hash
new file mode 100644
index 0000000..94e5f31
--- /dev/null
+++ b/package/perl-http-cookies/perl-http-cookies.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    ecfd0eeb88512033352c2f13c9580f03 HTTP-Cookies-6.01.tar.gz
+sha256 f5d3ade383ce6389d80cb0d0356b643af80435bb036afd8edce335215ec5eb20 HTTP-Cookies-6.01.tar.gz
diff --git a/package/perl-http-cookies/perl-http-cookies.mk b/package/perl-http-cookies/perl-http-cookies.mk
new file mode 100644
index 0000000..b3bfa2c
--- /dev/null
+++ b/package/perl-http-cookies/perl-http-cookies.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-http-cookies
+#
+################################################################################
+
+PERL_HTTP_COOKIES_VERSION = 6.01
+PERL_HTTP_COOKIES_SOURCE = HTTP-Cookies-$(PERL_HTTP_COOKIES_VERSION).tar.gz
+PERL_HTTP_COOKIES_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_HTTP_COOKIES_DEPENDENCIES = perl-http-message
+PERL_HTTP_COOKIES_LICENSE = Artistic or GPLv1+
+PERL_HTTP_COOKIES_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 14/25] package/perl-http-daemon: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (12 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 13/25] package/perl-http-cookies: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 15/25] package/perl-http-negotiate: " Bernd Kuhls
                   ` (11 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                              |    1 +
 package/perl-http-daemon/Config.in             |    8 ++++++++
 package/perl-http-daemon/perl-http-daemon.hash |    3 +++
 package/perl-http-daemon/perl-http-daemon.mk   |   14 ++++++++++++++
 4 files changed, 26 insertions(+)
 create mode 100644 package/perl-http-daemon/Config.in
 create mode 100644 package/perl-http-daemon/perl-http-daemon.hash
 create mode 100644 package/perl-http-daemon/perl-http-daemon.mk

diff --git a/package/Config.in b/package/Config.in
index 184c926..c74d848 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -513,6 +513,7 @@ menu "Perl libraries/modules"
 	source "package/perl-html-parser/Config.in"
 	source "package/perl-html-tagset/Config.in"
 	source "package/perl-http-cookies/Config.in"
+	source "package/perl-http-daemon/Config.in"
 	source "package/perl-http-date/Config.in"
 	source "package/perl-http-message/Config.in"
 	source "package/perl-io-html/Config.in"
diff --git a/package/perl-http-daemon/Config.in b/package/perl-http-daemon/Config.in
new file mode 100644
index 0000000..3d69b88
--- /dev/null
+++ b/package/perl-http-daemon/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PERL_HTTP_DAEMON
+	bool "perl-http-daemon"
+	select BR2_PACKAGE_PERL_HTTP_MESSAGE
+	help
+	  Instances of the `HTTP::Daemon' class are HTTP/1.1 servers that listen
+	  on a socket for incoming requests.
+
+	  http://github.com/gisle/http-daemon
diff --git a/package/perl-http-daemon/perl-http-daemon.hash b/package/perl-http-daemon/perl-http-daemon.hash
new file mode 100644
index 0000000..f4f6023
--- /dev/null
+++ b/package/perl-http-daemon/perl-http-daemon.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    ed0ae02d25d7f1e89456d4d69732adc2 HTTP-Daemon-6.01.tar.gz
+sha256 43fd867742701a3f9fcc7bd59838ab72c6490c0ebaf66901068ec6997514adc2 HTTP-Daemon-6.01.tar.gz
diff --git a/package/perl-http-daemon/perl-http-daemon.mk b/package/perl-http-daemon/perl-http-daemon.mk
new file mode 100644
index 0000000..42d2873
--- /dev/null
+++ b/package/perl-http-daemon/perl-http-daemon.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-http-daemon
+#
+################################################################################
+
+PERL_HTTP_DAEMON_VERSION = 6.01
+PERL_HTTP_DAEMON_SOURCE = HTTP-Daemon-$(PERL_HTTP_DAEMON_VERSION).tar.gz
+PERL_HTTP_DAEMON_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_HTTP_DAEMON_DEPENDENCIES = perl-http-message
+PERL_HTTP_DAEMON_LICENSE = Artistic or GPLv1+
+PERL_HTTP_DAEMON_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 15/25] package/perl-http-negotiate: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (13 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 14/25] package/perl-http-daemon: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 16/25] package/perl-net-http: " Bernd Kuhls
                   ` (10 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                                    |    1 +
 package/perl-http-negotiate/Config.in                |    9 +++++++++
 package/perl-http-negotiate/perl-http-negotiate.hash |    3 +++
 package/perl-http-negotiate/perl-http-negotiate.mk   |   14 ++++++++++++++
 4 files changed, 27 insertions(+)
 create mode 100644 package/perl-http-negotiate/Config.in
 create mode 100644 package/perl-http-negotiate/perl-http-negotiate.hash
 create mode 100644 package/perl-http-negotiate/perl-http-negotiate.mk

diff --git a/package/Config.in b/package/Config.in
index c74d848..e09beaa 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -516,6 +516,7 @@ menu "Perl libraries/modules"
 	source "package/perl-http-daemon/Config.in"
 	source "package/perl-http-date/Config.in"
 	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-socket-ssl/Config.in"
 	source "package/perl-json-tiny/Config.in"
diff --git a/package/perl-http-negotiate/Config.in b/package/perl-http-negotiate/Config.in
new file mode 100644
index 0000000..2b7f7b9
--- /dev/null
+++ b/package/perl-http-negotiate/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_PERL_HTTP_NEGOTIATE
+	bool "perl-http-negotiate"
+	select BR2_PACKAGE_PERL_HTTP_MESSAGE
+	help
+	  This module provides a complete implementation of the HTTP content
+	  negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps
+	  chapter 12.
+
+	  http://github.com/gisle/http-negotiate
diff --git a/package/perl-http-negotiate/perl-http-negotiate.hash b/package/perl-http-negotiate/perl-http-negotiate.hash
new file mode 100644
index 0000000..f1db2ff
--- /dev/null
+++ b/package/perl-http-negotiate/perl-http-negotiate.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    1236195250e264d7436e7bb02031671b HTTP-Negotiate-6.01.tar.gz
+sha256 1c729c1ea63100e878405cda7d66f9adfd3ed4f1d6cacaca0ee9152df728e016 HTTP-Negotiate-6.01.tar.gz
diff --git a/package/perl-http-negotiate/perl-http-negotiate.mk b/package/perl-http-negotiate/perl-http-negotiate.mk
new file mode 100644
index 0000000..569ed2b
--- /dev/null
+++ b/package/perl-http-negotiate/perl-http-negotiate.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-http-negotiate
+#
+################################################################################
+
+PERL_HTTP_NEGOTIATE_VERSION = 6.01
+PERL_HTTP_NEGOTIATE_SOURCE = HTTP-Negotiate-$(PERL_HTTP_NEGOTIATE_VERSION).tar.gz
+PERL_HTTP_NEGOTIATE_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_HTTP_NEGOTIATE_DEPENDENCIES = perl-http-message
+PERL_HTTP_NEGOTIATE_LICENSE = Artistic or GPLv1+
+PERL_HTTP_NEGOTIATE_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 16/25] package/perl-net-http: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (14 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 15/25] package/perl-http-negotiate: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 17/25] package/perl-www-robotrules: " Bernd Kuhls
                   ` (9 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                        |    1 +
 package/perl-net-http/Config.in          |    7 +++++++
 package/perl-net-http/perl-net-http.hash |    3 +++
 package/perl-net-http/perl-net-http.mk   |   14 ++++++++++++++
 4 files changed, 25 insertions(+)
 create mode 100644 package/perl-net-http/Config.in
 create mode 100644 package/perl-net-http/perl-net-http.hash
 create mode 100644 package/perl-net-http/perl-net-http.mk

diff --git a/package/Config.in b/package/Config.in
index e09beaa..4d8f98d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -523,6 +523,7 @@ menu "Perl libraries/modules"
 	source "package/perl-lwp-mediatypes/Config.in"
 	source "package/perl-mojolicious/Config.in"
 	source "package/perl-net-dns/Config.in"
+	source "package/perl-net-http/Config.in"
 	source "package/perl-net-ssleay/Config.in"
 	source "package/perl-netaddr-ip/Config.in"
 	source "package/perl-path-tiny/Config.in"
diff --git a/package/perl-net-http/Config.in b/package/perl-net-http/Config.in
new file mode 100644
index 0000000..6f18dd5
--- /dev/null
+++ b/package/perl-net-http/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PERL_NET_HTTP
+	bool "perl-net-http"
+	select BR2_PACKAGE_PERL_URI
+	help
+	  The `Net::HTTP' class is a low-level HTTP client.
+
+	  http://github.com/libwww-perl/net-http
diff --git a/package/perl-net-http/perl-net-http.hash b/package/perl-net-http/perl-net-http.hash
new file mode 100644
index 0000000..9f5f11b
--- /dev/null
+++ b/package/perl-net-http/perl-net-http.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    b6da691523456089d7a812ac398bc77e Net-HTTP-6.07.tar.gz
+sha256 9f31e0325a5a0930ad309fa019da9d208e57e236fb0598675ed883c820240364 Net-HTTP-6.07.tar.gz
diff --git a/package/perl-net-http/perl-net-http.mk b/package/perl-net-http/perl-net-http.mk
new file mode 100644
index 0000000..a73dfec
--- /dev/null
+++ b/package/perl-net-http/perl-net-http.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-net-http
+#
+################################################################################
+
+PERL_NET_HTTP_VERSION = 6.07
+PERL_NET_HTTP_SOURCE = Net-HTTP-$(PERL_NET_HTTP_VERSION).tar.gz
+PERL_NET_HTTP_SITE = $(BR2_CPAN_MIRROR)/authors/id/M/MS/MSCHILLI
+PERL_NET_HTTP_DEPENDENCIES = perl-uri
+PERL_NET_HTTP_LICENSE = Artistic or GPLv1+
+PERL_NET_HTTP_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 17/25] package/perl-www-robotrules: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (15 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 16/25] package/perl-net-http: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 18/25] package/perl-libwww: " Bernd Kuhls
                   ` (8 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                                    |    1 +
 package/perl-www-robotrules/Config.in                |    8 ++++++++
 package/perl-www-robotrules/perl-www-robotrules.hash |    3 +++
 package/perl-www-robotrules/perl-www-robotrules.mk   |   14 ++++++++++++++
 4 files changed, 26 insertions(+)
 create mode 100644 package/perl-www-robotrules/Config.in
 create mode 100644 package/perl-www-robotrules/perl-www-robotrules.hash
 create mode 100644 package/perl-www-robotrules/perl-www-robotrules.mk

diff --git a/package/Config.in b/package/Config.in
index 4d8f98d..4e6e8c8 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -530,6 +530,7 @@ menu "Perl libraries/modules"
 	source "package/perl-time-hires/Config.in"
 	source "package/perl-try-tiny/Config.in"
 	source "package/perl-uri/Config.in"
+	source "package/perl-www-robotrules/Config.in"
 	source "package/perl-xml-libxml/Config.in"
 	source "package/perl-xml-namespacesupport/Config.in"
 	source "package/perl-xml-sax/Config.in"
diff --git a/package/perl-www-robotrules/Config.in b/package/perl-www-robotrules/Config.in
new file mode 100644
index 0000000..83dbcfb
--- /dev/null
+++ b/package/perl-www-robotrules/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PERL_WWW_ROBOTRULES
+	bool "perl-www-robotrules"
+	select PERL_URI
+	help
+	  This module provides functions that deal the date formats used by the
+	  HTTP protocol (and then some more)
+
+	  http://github.com/gisle/www-robotrules
diff --git a/package/perl-www-robotrules/perl-www-robotrules.hash b/package/perl-www-robotrules/perl-www-robotrules.hash
new file mode 100644
index 0000000..9091a29
--- /dev/null
+++ b/package/perl-www-robotrules/perl-www-robotrules.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    b7186e8b8b3701e70c22abf430742403 WWW-RobotRules-6.02.tar.gz
+sha256 46b502e7a288d559429891eeb5d979461dd3ecc6a5c491ead85d165b6e03a51e WWW-RobotRules-6.02.tar.gz
diff --git a/package/perl-www-robotrules/perl-www-robotrules.mk b/package/perl-www-robotrules/perl-www-robotrules.mk
new file mode 100644
index 0000000..0c68b98
--- /dev/null
+++ b/package/perl-www-robotrules/perl-www-robotrules.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-www-robotrules
+#
+################################################################################
+
+PERL_WWW_ROBOTRULES_VERSION = 6.02
+PERL_WWW_ROBOTRULES_SOURCE = WWW-RobotRules-$(PERL_WWW_ROBOTRULES_VERSION).tar.gz
+PERL_WWW_ROBOTRULES_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_WWW_ROBOTRULES_DEPENDENCIES = perl-uri
+PERL_WWW_ROBOTRULES_LICENSE = Artistic or GPLv1+
+PERL_WWW_ROBOTRULES_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 18/25] package/perl-libwww: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (16 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 17/25] package/perl-www-robotrules: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-21 19:02   ` François Perrad
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 19/25] package/perl-mime-base64: " Bernd Kuhls
                   ` (7 subsequent siblings)
  25 siblings, 1 reply; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                    |    1 +
 package/perl-libwww/Config.in        |   16 ++++++++++++++++
 package/perl-libwww/perl-libwww.hash |    3 +++
 package/perl-libwww/perl-libwww.mk   |   23 +++++++++++++++++++++++
 4 files changed, 43 insertions(+)
 create mode 100644 package/perl-libwww/Config.in
 create mode 100644 package/perl-libwww/perl-libwww.hash
 create mode 100644 package/perl-libwww/perl-libwww.mk

diff --git a/package/Config.in b/package/Config.in
index 4e6e8c8..08e44bf 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -520,6 +520,7 @@ menu "Perl libraries/modules"
 	source "package/perl-io-html/Config.in"
 	source "package/perl-io-socket-ssl/Config.in"
 	source "package/perl-json-tiny/Config.in"
+	source "package/perl-libwww/Config.in"
 	source "package/perl-lwp-mediatypes/Config.in"
 	source "package/perl-mojolicious/Config.in"
 	source "package/perl-net-dns/Config.in"
diff --git a/package/perl-libwww/Config.in b/package/perl-libwww/Config.in
new file mode 100644
index 0000000..523371f
--- /dev/null
+++ b/package/perl-libwww/Config.in
@@ -0,0 +1,16 @@
+config BR2_PACKAGE_PERL_LIBWWW
+	bool "perl-libwww"
+	select BR2_PACKAGE_PERL_ENCODE_LOCALE
+	select BR2_PACKAGE_PERL_FILE_LISTING
+	select BR2_PACKAGE_PERL_HTML_PARSER
+	select BR2_PACKAGE_PERL_HTTP_COOKIES
+	select BR2_PACKAGE_PERL_HTTP_DAEMON
+	select BR2_PACKAGE_PERL_HTTP_NEGOTIATE
+	select BR2_PACKAGE_PERL_LWP_MEDIATYPES
+	select BR2_PACKAGE_PERL_NET_HTTP
+	select BR2_PACKAGE_PERL_URI
+	select BR2_PACKAGE_PERL_WWW_ROBOTRULES
+	help
+	  The World-Wide Web library for Perl
+
+	  https://github.com/libwww-perl/libwww-perl
diff --git a/package/perl-libwww/perl-libwww.hash b/package/perl-libwww/perl-libwww.hash
new file mode 100644
index 0000000..1ef5ccf
--- /dev/null
+++ b/package/perl-libwww/perl-libwww.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    85b36bcd2fd2450718ee14f894f0d3d1 libwww-perl-6.13.tar.gz
+sha256 5fbd13eebd1933e5a203fceb2c1629efbccff3efc8fab6ec0285c79d0a95f8b2 libwww-perl-6.13.tar.gz
diff --git a/package/perl-libwww/perl-libwww.mk b/package/perl-libwww/perl-libwww.mk
new file mode 100644
index 0000000..0ee1e04
--- /dev/null
+++ b/package/perl-libwww/perl-libwww.mk
@@ -0,0 +1,23 @@
+################################################################################
+#
+# perl-libwww
+#
+################################################################################
+
+PERL_LIBWWW_VERSION = 6.13
+PERL_LIBWWW_SITE = $(call github,libwww-perl,libwww-perl,$(PERL_LIBWWW_VERSION))
+PERL_LIBWWW_LICENSE = Artistic or GPLv1+
+PERL_LIBWWW_LICENSE_FILES = LICENSE
+PERL_LIBWWW_DEPENDENCIES = \
+	perl-encode-locale \
+	perl-file-listing \
+	perl-html-parser \
+	perl-http-cookies \
+	perl-http-daemon \
+	perl-http-date \
+	perl-http-negotiate \
+	perl-net-http \
+	perl-uri \
+	perl-www-robotrules
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 19/25] package/perl-mime-base64: New package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (17 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 18/25] package/perl-libwww: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 20/25] package/perl-digest-sha1: new package Bernd Kuhls
                   ` (6 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                              |    1 +
 package/perl-mime-base64/Config.in             |    7 +++++++
 package/perl-mime-base64/perl-mime-base64.hash |    3 +++
 package/perl-mime-base64/perl-mime-base64.mk   |   14 ++++++++++++++
 4 files changed, 25 insertions(+)
 create mode 100644 package/perl-mime-base64/Config.in
 create mode 100644 package/perl-mime-base64/perl-mime-base64.hash
 create mode 100644 package/perl-mime-base64/perl-mime-base64.mk

diff --git a/package/Config.in b/package/Config.in
index 08e44bf..f15614e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -522,6 +522,7 @@ menu "Perl libraries/modules"
 	source "package/perl-json-tiny/Config.in"
 	source "package/perl-libwww/Config.in"
 	source "package/perl-lwp-mediatypes/Config.in"
+	source "package/perl-mime-base64/Config.in"
 	source "package/perl-mojolicious/Config.in"
 	source "package/perl-net-dns/Config.in"
 	source "package/perl-net-http/Config.in"
diff --git a/package/perl-mime-base64/Config.in b/package/perl-mime-base64/Config.in
new file mode 100644
index 0000000..7e4858f
--- /dev/null
+++ b/package/perl-mime-base64/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PERL_MIME_BASE64
+	bool "perl-mime-base64"
+	help
+	  This package contains a base64 encoder/decoder and a quoted-printable
+	  encoder/decoder.
+
+	  http://github.com/gisle/mime-base64
diff --git a/package/perl-mime-base64/perl-mime-base64.hash b/package/perl-mime-base64/perl-mime-base64.hash
new file mode 100644
index 0000000..0cfe598
--- /dev/null
+++ b/package/perl-mime-base64/perl-mime-base64.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    ef958dc2bf96be5f759391c6ac1debd4 MIME-Base64-3.15.tar.gz
+sha256 7f863566a6a9cb93eda93beadb77d9aa04b9304d769cea3bb921b9a91b3a1eb9 MIME-Base64-3.15.tar.gz
diff --git a/package/perl-mime-base64/perl-mime-base64.mk b/package/perl-mime-base64/perl-mime-base64.mk
new file mode 100644
index 0000000..abb2704
--- /dev/null
+++ b/package/perl-mime-base64/perl-mime-base64.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-mime-base64
+#
+################################################################################
+
+PERL_MIME_BASE64_VERSION = 3.15
+PERL_MIME_BASE64_SOURCE = MIME-Base64-$(PERL_MIME_BASE64_VERSION).tar.gz
+PERL_MIME_BASE64_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_MIME_BASE64_DEPENDENCIES = perl
+PERL_MIME_BASE64_LICENSE = Artistic or GPLv1+
+PERL_MIME_BASE64_LICENSE_FILES = README
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 20/25] package/perl-digest-sha1: new package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (18 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 19/25] package/perl-mime-base64: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 21/25] package/perl-timedate: " Bernd Kuhls
                   ` (5 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                              |    1 +
 package/perl-digest-sha1/Config.in             |   10 ++++++++++
 package/perl-digest-sha1/perl-digest-sha1.hash |    3 +++
 package/perl-digest-sha1/perl-digest-sha1.mk   |   13 +++++++++++++
 4 files changed, 27 insertions(+)
 create mode 100644 package/perl-digest-sha1/Config.in
 create mode 100644 package/perl-digest-sha1/perl-digest-sha1.hash
 create mode 100644 package/perl-digest-sha1/perl-digest-sha1.mk

diff --git a/package/Config.in b/package/Config.in
index f15614e..ad699ad 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -504,6 +504,7 @@ if BR2_PACKAGE_PERL
 menu "Perl libraries/modules"
 	source "package/perl-datetime-tiny/Config.in"
 	source "package/perl-digest-hmac/Config.in"
+	source "package/perl-digest-sha1/Config.in"
 	source "package/perl-encode-locale/Config.in"
 	source "package/perl-file-listing/Config.in"
 	source "package/perl-file-util/Config.in"
diff --git a/package/perl-digest-sha1/Config.in b/package/perl-digest-sha1/Config.in
new file mode 100644
index 0000000..b72a4ae
--- /dev/null
+++ b/package/perl-digest-sha1/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PERL_DIGEST_SHA1
+	bool "perl-digest-sha1"
+	depends on !BR2_STATIC_LIBS
+	help
+	  Perl interface to the SHA-1 algorithm
+
+	  https://metacpan.org/release/Digest-SHA1
+
+comment "perl-digest-sha1 needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-digest-sha1/perl-digest-sha1.hash b/package/perl-digest-sha1/perl-digest-sha1.hash
new file mode 100644
index 0000000..d24d5ab
--- /dev/null
+++ b/package/perl-digest-sha1/perl-digest-sha1.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    bd22388f268434f2b24f64e28bf1aa35 Digest-SHA1-2.13.tar.gz
+sha256 68c1dac2187421f0eb7abf71452a06f190181b8fc4b28ededf5b90296fb943cc Digest-SHA1-2.13.tar.gz
diff --git a/package/perl-digest-sha1/perl-digest-sha1.mk b/package/perl-digest-sha1/perl-digest-sha1.mk
new file mode 100644
index 0000000..d3224e1
--- /dev/null
+++ b/package/perl-digest-sha1/perl-digest-sha1.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-digest-sha1
+#
+################################################################################
+
+PERL_DIGEST_SHA1_VERSION = 2.13
+PERL_DIGEST_SHA1_SOURCE = Digest-SHA1-$(PERL_DIGEST_SHA1_VERSION).tar.gz
+PERL_DIGEST_SHA1_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
+PERL_DIGEST_SHA1_DEPENDENCIES = perl
+PERL_DIGEST_SHA1_LICENSE = Artistic or GPLv1+
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 21/25] package/perl-timedate: new package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (19 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 20/25] package/perl-digest-sha1: new package Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 22/25] package/perl-crypt-openssl-random: " Bernd Kuhls
                   ` (4 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                        |    1 +
 package/perl-timedate/Config.in          |    6 ++++++
 package/perl-timedate/perl-timedate.hash |    3 +++
 package/perl-timedate/perl-timedate.mk   |   13 +++++++++++++
 4 files changed, 23 insertions(+)
 create mode 100644 package/perl-timedate/Config.in
 create mode 100644 package/perl-timedate/perl-timedate.hash
 create mode 100644 package/perl-timedate/perl-timedate.mk

diff --git a/package/Config.in b/package/Config.in
index ad699ad..dd2fedb 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -531,6 +531,7 @@ menu "Perl libraries/modules"
 	source "package/perl-netaddr-ip/Config.in"
 	source "package/perl-path-tiny/Config.in"
 	source "package/perl-time-hires/Config.in"
+	source "package/perl-timedate/Config.in"
 	source "package/perl-try-tiny/Config.in"
 	source "package/perl-uri/Config.in"
 	source "package/perl-www-robotrules/Config.in"
diff --git a/package/perl-timedate/Config.in b/package/perl-timedate/Config.in
new file mode 100644
index 0000000..7ce9de1
--- /dev/null
+++ b/package/perl-timedate/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_TIMEDATE
+	bool "perl-timedate"
+	help
+	  Date formating subroutines
+
+	  https://metacpan.org/release/TimeDate
diff --git a/package/perl-timedate/perl-timedate.hash b/package/perl-timedate/perl-timedate.hash
new file mode 100644
index 0000000..28a9f07
--- /dev/null
+++ b/package/perl-timedate/perl-timedate.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    b1d91153ac971347aee84292ed886c1c TimeDate-2.30.tar.gz
+sha256 75bd254871cb5853a6aa0403ac0be270cdd75c9d1b6639f18ecba63c15298e86 TimeDate-2.30.tar.gz
diff --git a/package/perl-timedate/perl-timedate.mk b/package/perl-timedate/perl-timedate.mk
new file mode 100644
index 0000000..f0c6714
--- /dev/null
+++ b/package/perl-timedate/perl-timedate.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-timedate
+#
+################################################################################
+
+PERL_TIMEDATE_VERSION = 2.30
+PERL_TIMEDATE_SOURCE = TimeDate-$(PERL_TIMEDATE_VERSION).tar.gz
+PERL_TIMEDATE_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GB/GBARR
+PERL_TIMEDATE_DEPENDENCIES = perl
+PERL_TIMEDATE_LICENSE = Artistic or GPLv1+
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 22/25] package/perl-crypt-openssl-random: new package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (20 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 21/25] package/perl-timedate: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 23/25] package/perl-crypt-openssl-rsa: " Bernd Kuhls
                   ` (3 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                                        |    1 +
 package/perl-crypt-openssl-random/Config.in              |   12 ++++++++++++
 .../perl-crypt-openssl-random.hash                       |    3 +++
 .../perl-crypt-openssl-random.mk                         |   14 ++++++++++++++
 4 files changed, 30 insertions(+)
 create mode 100644 package/perl-crypt-openssl-random/Config.in
 create mode 100644 package/perl-crypt-openssl-random/perl-crypt-openssl-random.hash
 create mode 100644 package/perl-crypt-openssl-random/perl-crypt-openssl-random.mk

diff --git a/package/Config.in b/package/Config.in
index dd2fedb..2a536a2 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -502,6 +502,7 @@ endif
 	source "package/perl/Config.in"
 if BR2_PACKAGE_PERL
 menu "Perl libraries/modules"
+	source "package/perl-crypt-openssl-random/Config.in"
 	source "package/perl-datetime-tiny/Config.in"
 	source "package/perl-digest-hmac/Config.in"
 	source "package/perl-digest-sha1/Config.in"
diff --git a/package/perl-crypt-openssl-random/Config.in b/package/perl-crypt-openssl-random/Config.in
new file mode 100644
index 0000000..2095cac
--- /dev/null
+++ b/package/perl-crypt-openssl-random/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_PERL_CRYPT_OPENSSL_RANDOM
+	bool "perl-crypt-openssl-random"
+	depends on !BR2_STATIC_LIBS
+	select BR2_PACKAGE_OPENSSL
+	help
+	  Routines for accessing the OpenSSL pseudo-random number generator
+	  using the openSSL libraries
+
+	  http://sourceforge.net/projects/perl-openssl/
+
+comment "perl-crypt-openssl-random needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-crypt-openssl-random/perl-crypt-openssl-random.hash b/package/perl-crypt-openssl-random/perl-crypt-openssl-random.hash
new file mode 100644
index 0000000..2de6547
--- /dev/null
+++ b/package/perl-crypt-openssl-random/perl-crypt-openssl-random.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    b89ca9314c3a066b440a7bb3cb8d725d Crypt-OpenSSL-Random-0.10.tar.gz
+sha256 ae65d0ab6907edd1d67f87fdf0923ecae4d54c4c2e0ac9d9df97227903ccf18a Crypt-OpenSSL-Random-0.10.tar.gz
diff --git a/package/perl-crypt-openssl-random/perl-crypt-openssl-random.mk b/package/perl-crypt-openssl-random/perl-crypt-openssl-random.mk
new file mode 100644
index 0000000..2692236
--- /dev/null
+++ b/package/perl-crypt-openssl-random/perl-crypt-openssl-random.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-crypt-openssl-random
+#
+################################################################################
+
+PERL_CRYPT_OPENSSL_RANDOM_VERSION = 0.10
+PERL_CRYPT_OPENSSL_RANDOM_SOURCE = Crypt-OpenSSL-Random-$(PERL_CRYPT_OPENSSL_RANDOM_VERSION).tar.gz
+PERL_CRYPT_OPENSSL_RANDOM_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RU/RURBAN
+PERL_CRYPT_OPENSSL_RANDOM_DEPENDENCIES = openssl perl
+PERL_CRYPT_OPENSSL_RANDOM_LICENSE = Artistic or GPLv1+
+PERL_CRYPT_OPENSSL_RANDOM_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 23/25] package/perl-crypt-openssl-rsa: new package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (21 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 22/25] package/perl-crypt-openssl-random: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 24/25] package/perl-mailtools: " Bernd Kuhls
                   ` (2 subsequent siblings)
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                                        |    1 +
 package/perl-crypt-openssl-rsa/Config.in                 |   11 +++++++++++
 .../perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.hash   |    3 +++
 package/perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.mk |   14 ++++++++++++++
 4 files changed, 29 insertions(+)
 create mode 100644 package/perl-crypt-openssl-rsa/Config.in
 create mode 100644 package/perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.hash
 create mode 100644 package/perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.mk

diff --git a/package/Config.in b/package/Config.in
index 2a536a2..eef9f48 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -503,6 +503,7 @@ endif
 if BR2_PACKAGE_PERL
 menu "Perl libraries/modules"
 	source "package/perl-crypt-openssl-random/Config.in"
+	source "package/perl-crypt-openssl-rsa/Config.in"
 	source "package/perl-datetime-tiny/Config.in"
 	source "package/perl-digest-hmac/Config.in"
 	source "package/perl-digest-sha1/Config.in"
diff --git a/package/perl-crypt-openssl-rsa/Config.in b/package/perl-crypt-openssl-rsa/Config.in
new file mode 100644
index 0000000..1fa1fd9
--- /dev/null
+++ b/package/perl-crypt-openssl-rsa/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_PERL_CRYPT_OPENSSL_RSA
+	bool "perl-crypt-openssl-rsa"
+	depends on !BR2_STATIC_LIBS
+	select BR2_PACKAGE_PERL_CRYPT_OPENSSL_RANDOM
+	help
+	  RSA encoding and decoding, using the openSSL libraries
+
+	  https://metacpan.org/release/Crypt-OpenSSL-RSA
+
+comment "perl-crypt-openssl-rsa needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.hash b/package/perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.hash
new file mode 100644
index 0000000..6e060ce
--- /dev/null
+++ b/package/perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    86217a5036fc63779c30420b5fd84129 Crypt-OpenSSL-RSA-0.28.tar.gz
+sha256 5357f977464bb3a8184cf2d3341851a10d5515b4b2b0dfb88bf78995c0ded7be Crypt-OpenSSL-RSA-0.28.tar.gz
diff --git a/package/perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.mk b/package/perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.mk
new file mode 100644
index 0000000..30d7303
--- /dev/null
+++ b/package/perl-crypt-openssl-rsa/perl-crypt-openssl-rsa.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-crypt-openssl-rsa
+#
+################################################################################
+
+PERL_CRYPT_OPENSSL_RSA_VERSION = 0.28
+PERL_CRYPT_OPENSSL_RSA_SOURCE = Crypt-OpenSSL-RSA-$(PERL_CRYPT_OPENSSL_RSA_VERSION).tar.gz
+PERL_CRYPT_OPENSSL_RSA_SITE = $(BR2_CPAN_MIRROR)/authors/id/P/PE/PERLER
+PERL_CRYPT_OPENSSL_RSA_DEPENDENCIES = perl perl-crypt-openssl-random
+PERL_CRYPT_OPENSSL_RSA_LICENSE = Artistic or GPLv1+
+PERL_CRYPT_OPENSSL_RSA_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 24/25] package/perl-mailtools: new package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (22 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 23/25] package/perl-crypt-openssl-rsa: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 25/25] package/perl-mail-dkim: " Bernd Kuhls
  2015-04-19 11:54 ` [Buildroot] [PATCH v2 00/25] Some new Perl modules Thomas Petazzoni
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                          |    1 +
 package/perl-mailtools/Config.in           |    7 +++++++
 package/perl-mailtools/perl-mailtools.hash |    3 +++
 package/perl-mailtools/perl-mailtools.mk   |   13 +++++++++++++
 4 files changed, 24 insertions(+)
 create mode 100644 package/perl-mailtools/Config.in
 create mode 100644 package/perl-mailtools/perl-mailtools.hash
 create mode 100644 package/perl-mailtools/perl-mailtools.mk

diff --git a/package/Config.in b/package/Config.in
index eef9f48..c8e57f3 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -525,6 +525,7 @@ menu "Perl libraries/modules"
 	source "package/perl-json-tiny/Config.in"
 	source "package/perl-libwww/Config.in"
 	source "package/perl-lwp-mediatypes/Config.in"
+	source "package/perl-mailtools/Config.in"
 	source "package/perl-mime-base64/Config.in"
 	source "package/perl-mojolicious/Config.in"
 	source "package/perl-net-dns/Config.in"
diff --git a/package/perl-mailtools/Config.in b/package/perl-mailtools/Config.in
new file mode 100644
index 0000000..e02d3cb
--- /dev/null
+++ b/package/perl-mailtools/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PERL_MAILTOOLS
+	bool "perl-mailtools"
+	select BR2_PACKAGE_PERL_TIMEDATE
+	help
+	  Various e-mail related modules
+
+	  https://metacpan.org/release/MailTools
diff --git a/package/perl-mailtools/perl-mailtools.hash b/package/perl-mailtools/perl-mailtools.hash
new file mode 100644
index 0000000..b67867a
--- /dev/null
+++ b/package/perl-mailtools/perl-mailtools.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    813ae849683367bb75e6be89e4e8cc46 MailTools-2.14.tar.gz
+sha256 4b7c7ef674b2ef75ea793f053cd067c6a4b33e58e3adf08a89c8ea4c56b3dff8 MailTools-2.14.tar.gz
diff --git a/package/perl-mailtools/perl-mailtools.mk b/package/perl-mailtools/perl-mailtools.mk
new file mode 100644
index 0000000..5b11625
--- /dev/null
+++ b/package/perl-mailtools/perl-mailtools.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-mailtools
+#
+################################################################################
+
+PERL_MAILTOOLS_VERSION = 2.14
+PERL_MAILTOOLS_SOURCE = MailTools-$(PERL_MAILTOOLS_VERSION).tar.gz
+PERL_MAILTOOLS_SITE = $(BR2_CPAN_MIRROR)/authors/id/M/MA/MARKOV
+PERL_MAILTOOLS_DEPENDENCIES = perl perl-timedate
+PERL_MAILTOOLS_LICENSE = Artistic or GPLv1+
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 25/25] package/perl-mail-dkim: new package
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (23 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 24/25] package/perl-mailtools: " Bernd Kuhls
@ 2015-04-19 10:17 ` Bernd Kuhls
  2015-04-19 11:54 ` [Buildroot] [PATCH v2 00/25] Some new Perl modules Thomas Petazzoni
  25 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-19 10:17 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/Config.in                          |    1 +
 package/perl-mail-dkim/Config.in           |   13 +++++++++++++
 package/perl-mail-dkim/perl-mail-dkim.hash |    3 +++
 package/perl-mail-dkim/perl-mail-dkim.mk   |   12 ++++++++++++
 4 files changed, 29 insertions(+)
 create mode 100644 package/perl-mail-dkim/Config.in
 create mode 100644 package/perl-mail-dkim/perl-mail-dkim.hash
 create mode 100644 package/perl-mail-dkim/perl-mail-dkim.mk

diff --git a/package/Config.in b/package/Config.in
index c8e57f3..42852be 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -525,6 +525,7 @@ menu "Perl libraries/modules"
 	source "package/perl-json-tiny/Config.in"
 	source "package/perl-libwww/Config.in"
 	source "package/perl-lwp-mediatypes/Config.in"
+	source "package/perl-mail-dkim/Config.in"
 	source "package/perl-mailtools/Config.in"
 	source "package/perl-mime-base64/Config.in"
 	source "package/perl-mojolicious/Config.in"
diff --git a/package/perl-mail-dkim/Config.in b/package/perl-mail-dkim/Config.in
new file mode 100644
index 0000000..3db54f3
--- /dev/null
+++ b/package/perl-mail-dkim/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_PERL_MAIL_DKIM
+	bool "perl-mail-dkim"
+	depends on !BR2_STATIC_LIBS
+	select BR2_PACKAGE_PERL_CRYPT_OPENSSL_RSA
+	select BR2_PACKAGE_PERL_MAILTOOLS
+	select BR2_PACKAGE_PERL_NET_DNS
+	help
+	  Signs/verifies Internet mail with DKIM/DomainKey signatures
+
+	  https://metacpan.org/release/Mail-DKIM
+
+comment "perl-mail-dkim needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-mail-dkim/perl-mail-dkim.hash b/package/perl-mail-dkim/perl-mail-dkim.hash
new file mode 100644
index 0000000..b6bb545
--- /dev/null
+++ b/package/perl-mail-dkim/perl-mail-dkim.hash
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    9ceb8a0397aff83928e7a9760b1b190f Mail-DKIM-0.40.tar.gz
+sha256 3c5ea0c3a2028a5a2c3b64bbcd6bd9de6a5fa5ee4e16046dd8875c4796aaa6f1 Mail-DKIM-0.40.tar.gz
diff --git a/package/perl-mail-dkim/perl-mail-dkim.mk b/package/perl-mail-dkim/perl-mail-dkim.mk
new file mode 100644
index 0000000..7f00299
--- /dev/null
+++ b/package/perl-mail-dkim/perl-mail-dkim.mk
@@ -0,0 +1,12 @@
+################################################################################
+#
+# perl-mail-dkim
+#
+################################################################################
+
+PERL_MAIL_DKIM_VERSION = 0.40
+PERL_MAIL_DKIM_SOURCE = Mail-DKIM-$(PERL_MAIL_DKIM_VERSION).tar.gz
+PERL_MAIL_DKIM_SITE = $(BR2_CPAN_MIRROR)/authors/id/J/JA/JASLONG
+PERL_MAIL_DKIM_DEPENDENCIES = perl perl-crypt-openssl-rsa perl-mailtools perl-net-dns
+
+$(eval $(perl-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH v2 00/25] Some new Perl modules
  2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
                   ` (24 preceding siblings ...)
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 25/25] package/perl-mail-dkim: " Bernd Kuhls
@ 2015-04-19 11:54 ` Thomas Petazzoni
  25 siblings, 0 replies; 29+ messages in thread
From: Thomas Petazzoni @ 2015-04-19 11:54 UTC (permalink / raw)
  To: buildroot

Dear Bernd Kuhls,

On Sun, 19 Apr 2015 12:16:55 +0200, Bernd Kuhls wrote:

> Bernd Kuhls (25):
>   package/perl-html-tagset: New package
>   package/perl-html-parser: New package
>   package/perl-netaddr-ip: New package
>   package/perl-net-dns: New package
>   package/perl-time-hires: New package
>   package/perl-encode-locale: new package
>   package/perl-http-date: New package
>   package/perl-file-listing: New package
>   package/perl-io-html: New package
>   package/perl-uri: New package
>   package/perl-lwp-mediatypes: New package
>   package/perl-http-message: New package
>   package/perl-http-cookies: New package
>   package/perl-http-daemon: New package
>   package/perl-http-negotiate: New package
>   package/perl-net-http: New package
>   package/perl-www-robotrules: New package
>   package/perl-libwww: New package
>   package/perl-mime-base64: New package
>   package/perl-digest-sha1: new package
>   package/perl-timedate: new package
>   package/perl-crypt-openssl-random: new package
>   package/perl-crypt-openssl-rsa: new package
>   package/perl-mailtools: new package
>   package/perl-mail-dkim: new package

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH v2 18/25] package/perl-libwww: New package
  2015-04-19 10:17 ` [Buildroot] [PATCH v2 18/25] package/perl-libwww: " Bernd Kuhls
@ 2015-04-21 19:02   ` François Perrad
  2015-04-25 13:50     ` Bernd Kuhls
  0 siblings, 1 reply; 29+ messages in thread
From: François Perrad @ 2015-04-21 19:02 UTC (permalink / raw)
  To: buildroot

Bernd,

This Perl module has a silly name, on CPAN, you could find it as
'libwww-perl' distribution (see
http://search.cpan.org/search?query=libwww-perl&mode=dist)

If you run `support/script/scancpan -f libwww-perl`, you obtain the
correct BR package perl-libwww-perl, with these values:
PERL_LIBWWW_PERL_VERSION = 6.13
PERL_LIBWWW_PERL_SOURCE = libwww-perl-$(PERL_LIBWWW_PERL_VERSION).tar.gz
PERL_LIBWWW_PERL_SITE = $(BR2_CPAN_MIRROR)/authors/id/E/ET/ETHER
so, without github/hash problem.

Please, remove perl-libwww and replace it by perl-libwww-perl

Fran?ois

2015-04-19 12:17 GMT+02:00 Bernd Kuhls <bernd.kuhls@t-online.de>:
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/Config.in                    |    1 +
>  package/perl-libwww/Config.in        |   16 ++++++++++++++++
>  package/perl-libwww/perl-libwww.hash |    3 +++
>  package/perl-libwww/perl-libwww.mk   |   23 +++++++++++++++++++++++
>  4 files changed, 43 insertions(+)
>  create mode 100644 package/perl-libwww/Config.in
>  create mode 100644 package/perl-libwww/perl-libwww.hash
>  create mode 100644 package/perl-libwww/perl-libwww.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 4e6e8c8..08e44bf 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -520,6 +520,7 @@ menu "Perl libraries/modules"
>         source "package/perl-io-html/Config.in"
>         source "package/perl-io-socket-ssl/Config.in"
>         source "package/perl-json-tiny/Config.in"
> +       source "package/perl-libwww/Config.in"
>         source "package/perl-lwp-mediatypes/Config.in"
>         source "package/perl-mojolicious/Config.in"
>         source "package/perl-net-dns/Config.in"
> diff --git a/package/perl-libwww/Config.in b/package/perl-libwww/Config.in
> new file mode 100644
> index 0000000..523371f
> --- /dev/null
> +++ b/package/perl-libwww/Config.in
> @@ -0,0 +1,16 @@
> +config BR2_PACKAGE_PERL_LIBWWW
> +       bool "perl-libwww"
> +       select BR2_PACKAGE_PERL_ENCODE_LOCALE
> +       select BR2_PACKAGE_PERL_FILE_LISTING
> +       select BR2_PACKAGE_PERL_HTML_PARSER
> +       select BR2_PACKAGE_PERL_HTTP_COOKIES
> +       select BR2_PACKAGE_PERL_HTTP_DAEMON
> +       select BR2_PACKAGE_PERL_HTTP_NEGOTIATE
> +       select BR2_PACKAGE_PERL_LWP_MEDIATYPES
> +       select BR2_PACKAGE_PERL_NET_HTTP
> +       select BR2_PACKAGE_PERL_URI
> +       select BR2_PACKAGE_PERL_WWW_ROBOTRULES
> +       help
> +         The World-Wide Web library for Perl
> +
> +         https://github.com/libwww-perl/libwww-perl
> diff --git a/package/perl-libwww/perl-libwww.hash b/package/perl-libwww/perl-libwww.hash
> new file mode 100644
> index 0000000..1ef5ccf
> --- /dev/null
> +++ b/package/perl-libwww/perl-libwww.hash
> @@ -0,0 +1,3 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    85b36bcd2fd2450718ee14f894f0d3d1 libwww-perl-6.13.tar.gz
> +sha256 5fbd13eebd1933e5a203fceb2c1629efbccff3efc8fab6ec0285c79d0a95f8b2 libwww-perl-6.13.tar.gz
> diff --git a/package/perl-libwww/perl-libwww.mk b/package/perl-libwww/perl-libwww.mk
> new file mode 100644
> index 0000000..0ee1e04
> --- /dev/null
> +++ b/package/perl-libwww/perl-libwww.mk
> @@ -0,0 +1,23 @@
> +################################################################################
> +#
> +# perl-libwww
> +#
> +################################################################################
> +
> +PERL_LIBWWW_VERSION = 6.13
> +PERL_LIBWWW_SITE = $(call github,libwww-perl,libwww-perl,$(PERL_LIBWWW_VERSION))
> +PERL_LIBWWW_LICENSE = Artistic or GPLv1+
> +PERL_LIBWWW_LICENSE_FILES = LICENSE
> +PERL_LIBWWW_DEPENDENCIES = \
> +       perl-encode-locale \
> +       perl-file-listing \
> +       perl-html-parser \
> +       perl-http-cookies \
> +       perl-http-daemon \
> +       perl-http-date \
> +       perl-http-negotiate \
> +       perl-net-http \
> +       perl-uri \
> +       perl-www-robotrules
> +
> +$(eval $(perl-package))
> --
> 1.7.10.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v2 18/25] package/perl-libwww: New package
  2015-04-21 19:02   ` François Perrad
@ 2015-04-25 13:50     ` Bernd Kuhls
  0 siblings, 0 replies; 29+ messages in thread
From: Bernd Kuhls @ 2015-04-25 13:50 UTC (permalink / raw)
  To: buildroot

[posted and mailed]

=?UTF-8?Q?Fran=C3=A7ois_Perrad?= <francois.perrad-
jEMvHSqNoUo@public.gmane.org> wrote in 
news:CAB0FRsuSrY6A8Tfh=sJxUXwUd=Z8hONdJrPdwC28qJiVedVpcw at mail.gmail.com:

> Please, remove perl-libwww and replace it by perl-libwww-perl

Hi Francois,

done: http://patchwork.ozlabs.org/patch/464545/

Regards, Bernd

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

end of thread, other threads:[~2015-04-25 13:50 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-19 10:16 [Buildroot] [PATCH v2 00/25] Some new Perl modules Bernd Kuhls
2015-04-19 10:16 ` [Buildroot] [PATCH v2 01/25] package/perl-html-tagset: New package Bernd Kuhls
2015-04-19 10:16 ` [Buildroot] [PATCH v2 02/25] package/perl-html-parser: " Bernd Kuhls
2015-04-19 10:16 ` [Buildroot] [PATCH v2 03/25] package/perl-netaddr-ip: " Bernd Kuhls
2015-04-19 10:16 ` [Buildroot] [PATCH v2 04/25] package/perl-net-dns: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 05/25] package/perl-time-hires: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 06/25] package/perl-encode-locale: new package Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 07/25] package/perl-http-date: New package Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 08/25] package/perl-file-listing: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 09/25] package/perl-io-html: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 10/25] package/perl-uri: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 11/25] package/perl-lwp-mediatypes: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 12/25] package/perl-http-message: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 13/25] package/perl-http-cookies: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 14/25] package/perl-http-daemon: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 15/25] package/perl-http-negotiate: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 16/25] package/perl-net-http: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 17/25] package/perl-www-robotrules: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 18/25] package/perl-libwww: " Bernd Kuhls
2015-04-21 19:02   ` François Perrad
2015-04-25 13:50     ` Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 19/25] package/perl-mime-base64: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 20/25] package/perl-digest-sha1: new package Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 21/25] package/perl-timedate: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 22/25] package/perl-crypt-openssl-random: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 23/25] package/perl-crypt-openssl-rsa: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 24/25] package/perl-mailtools: " Bernd Kuhls
2015-04-19 10:17 ` [Buildroot] [PATCH v2 25/25] package/perl-mail-dkim: " Bernd Kuhls
2015-04-19 11:54 ` [Buildroot] [PATCH v2 00/25] Some new 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.