All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] perl-datetime-tiny: new package
@ 2014-07-22 18:17 Francois Perrad
  2014-07-22 18:17 ` [Buildroot] [PATCH 2/4] perl-json-tiny: " Francois Perrad
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Francois Perrad @ 2014-07-22 18:17 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in                                |  1 +
 package/perl-datetime-tiny/Config.in             |  6 ++++++
 package/perl-datetime-tiny/perl-datetime-tiny.mk | 14 ++++++++++++++
 3 files changed, 21 insertions(+)
 create mode 100644 package/perl-datetime-tiny/Config.in
 create mode 100644 package/perl-datetime-tiny/perl-datetime-tiny.mk

diff --git a/package/Config.in b/package/Config.in
index 703fd3d..aa2f783 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -431,6 +431,7 @@ endif
 	source "package/perl/Config.in"
 if BR2_PACKAGE_PERL
 menu "Perl libraries/modules"
+	source "package/perl-datetime-tiny/Config.in"
 	source "package/perl-gd/Config.in"
 	source "package/perl-gdgraph/Config.in"
 	source "package/perl-gdtextutil/Config.in"
diff --git a/package/perl-datetime-tiny/Config.in b/package/perl-datetime-tiny/Config.in
new file mode 100644
index 0000000..e84db8b
--- /dev/null
+++ b/package/perl-datetime-tiny/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_DATETIME_TINY
+	bool "perl-datetime-tiny"
+	help
+	  A datetime object with as little code as possible
+
+	  https://metacpan.org/release/DateTime-Tiny
diff --git a/package/perl-datetime-tiny/perl-datetime-tiny.mk b/package/perl-datetime-tiny/perl-datetime-tiny.mk
new file mode 100644
index 0000000..8e691a8
--- /dev/null
+++ b/package/perl-datetime-tiny/perl-datetime-tiny.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-datetime-tiny
+#
+################################################################################
+
+PERL_DATETIME_TINY_VERSION = 1.04
+PERL_DATETIME_TINY_SOURCE = DateTime-Tiny-$(PERL_DATETIME_TINY_VERSION).tar.gz
+PERL_DATETIME_TINY_SITE = $(BR2_CPAN_MIRROR)/authors/id/A/AD/ADAMK/
+PERL_DATETIME_TINY_DEPENDENCIES = perl
+PERL_DATETIME_TINY_LICENSE = Artistic or GPLv1+
+PERL_DATETIME_TINY_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
1.9.1

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

* [Buildroot] [PATCH 2/4] perl-json-tiny: new package
  2014-07-22 18:17 [Buildroot] [PATCH 1/4] perl-datetime-tiny: new package Francois Perrad
@ 2014-07-22 18:17 ` Francois Perrad
  2014-07-22 18:17 ` [Buildroot] [PATCH 3/4] perl-path-tiny: " Francois Perrad
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Francois Perrad @ 2014-07-22 18:17 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in                        |  1 +
 package/perl-json-tiny/Config.in         |  6 ++++++
 package/perl-json-tiny/perl-json-tiny.mk | 14 ++++++++++++++
 3 files changed, 21 insertions(+)
 create mode 100644 package/perl-json-tiny/Config.in
 create mode 100644 package/perl-json-tiny/perl-json-tiny.mk

diff --git a/package/Config.in b/package/Config.in
index aa2f783..b89a98e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -436,6 +436,7 @@ menu "Perl libraries/modules"
 	source "package/perl-gdgraph/Config.in"
 	source "package/perl-gdtextutil/Config.in"
 	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-ssleay/Config.in"
 	source "package/perl-xml-libxml/Config.in"
diff --git a/package/perl-json-tiny/Config.in b/package/perl-json-tiny/Config.in
new file mode 100644
index 0000000..ce943ca
--- /dev/null
+++ b/package/perl-json-tiny/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_JSON_TINY
+	bool "perl-json-tiny"
+	help
+	  Minimalistic JSON. No dependencies.
+
+	  https://metacpan.org/release/JSON-Tiny
diff --git a/package/perl-json-tiny/perl-json-tiny.mk b/package/perl-json-tiny/perl-json-tiny.mk
new file mode 100644
index 0000000..fd99ee7
--- /dev/null
+++ b/package/perl-json-tiny/perl-json-tiny.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-json-tiny
+#
+################################################################################
+
+PERL_JSON_TINY_VERSION = 0.49
+PERL_JSON_TINY_SOURCE = JSON-Tiny-$(PERL_JSON_TINY_VERSION).tar.gz
+PERL_JSON_TINY_SITE = $(BR2_CPAN_MIRROR)/authors/id/D/DA/DAVIDO/
+PERL_JSON_TINY_DEPENDENCIES = perl
+PERL_JSON_TINY_LICENSE = Artistic-2.0
+PERL_JSON_TINY_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
1.9.1

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

* [Buildroot] [PATCH 3/4] perl-path-tiny: new package
  2014-07-22 18:17 [Buildroot] [PATCH 1/4] perl-datetime-tiny: new package Francois Perrad
  2014-07-22 18:17 ` [Buildroot] [PATCH 2/4] perl-json-tiny: " Francois Perrad
@ 2014-07-22 18:17 ` Francois Perrad
  2014-07-22 18:17 ` [Buildroot] [PATCH 4/4] perl-try-tiny: " Francois Perrad
  2014-07-23 19:49 ` [Buildroot] [PATCH 1/4] perl-datetime-tiny: " Thomas Petazzoni
  3 siblings, 0 replies; 5+ messages in thread
From: Francois Perrad @ 2014-07-22 18:17 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in                        |  1 +
 package/perl-path-tiny/Config.in         |  6 ++++++
 package/perl-path-tiny/perl-path-tiny.mk | 14 ++++++++++++++
 3 files changed, 21 insertions(+)
 create mode 100644 package/perl-path-tiny/Config.in
 create mode 100644 package/perl-path-tiny/perl-path-tiny.mk

diff --git a/package/Config.in b/package/Config.in
index b89a98e..40d8ba9 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -439,6 +439,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-path-tiny/Config.in"
 	source "package/perl-xml-libxml/Config.in"
 	source "package/perl-xml-namespacesupport/Config.in"
 	source "package/perl-xml-sax-base/Config.in"
diff --git a/package/perl-path-tiny/Config.in b/package/perl-path-tiny/Config.in
new file mode 100644
index 0000000..f85e792
--- /dev/null
+++ b/package/perl-path-tiny/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_PATH_TINY
+	bool "perl-path-tiny"
+	help
+	  File path utility
+
+	  https://github.com/dagolden/Path-Tiny
diff --git a/package/perl-path-tiny/perl-path-tiny.mk b/package/perl-path-tiny/perl-path-tiny.mk
new file mode 100644
index 0000000..7da112d
--- /dev/null
+++ b/package/perl-path-tiny/perl-path-tiny.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-path-tiny
+#
+################################################################################
+
+PERL_PATH_TINY_VERSION = 0.055
+PERL_PATH_TINY_SOURCE = Path-Tiny-$(PERL_PATH_TINY_VERSION).tar.gz
+PERL_PATH_TINY_SITE = $(BR2_CPAN_MIRROR)/authors/id/D/DA/DAGOLDEN/
+PERL_PATH_TINY_DEPENDENCIES = perl
+PERL_PATH_TINY_LICENSE = apache_2_0
+PERL_PATH_TINY_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
1.9.1

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

* [Buildroot] [PATCH 4/4] perl-try-tiny: new package
  2014-07-22 18:17 [Buildroot] [PATCH 1/4] perl-datetime-tiny: new package Francois Perrad
  2014-07-22 18:17 ` [Buildroot] [PATCH 2/4] perl-json-tiny: " Francois Perrad
  2014-07-22 18:17 ` [Buildroot] [PATCH 3/4] perl-path-tiny: " Francois Perrad
@ 2014-07-22 18:17 ` Francois Perrad
  2014-07-23 19:49 ` [Buildroot] [PATCH 1/4] perl-datetime-tiny: " Thomas Petazzoni
  3 siblings, 0 replies; 5+ messages in thread
From: Francois Perrad @ 2014-07-22 18:17 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/Config.in                      |  1 +
 package/perl-try-tiny/Config.in        |  6 ++++++
 package/perl-try-tiny/perl-try-tiny.mk | 14 ++++++++++++++
 3 files changed, 21 insertions(+)
 create mode 100644 package/perl-try-tiny/Config.in
 create mode 100644 package/perl-try-tiny/perl-try-tiny.mk

diff --git a/package/Config.in b/package/Config.in
index 40d8ba9..7c9f3ad 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -440,6 +440,7 @@ menu "Perl libraries/modules"
 	source "package/perl-mojolicious/Config.in"
 	source "package/perl-net-ssleay/Config.in"
 	source "package/perl-path-tiny/Config.in"
+	source "package/perl-try-tiny/Config.in"
 	source "package/perl-xml-libxml/Config.in"
 	source "package/perl-xml-namespacesupport/Config.in"
 	source "package/perl-xml-sax-base/Config.in"
diff --git a/package/perl-try-tiny/Config.in b/package/perl-try-tiny/Config.in
new file mode 100644
index 0000000..7bd5396
--- /dev/null
+++ b/package/perl-try-tiny/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_TRY_TINY
+	bool "perl-try-tiny"
+	help
+	  minimal try/catch with proper preservation of $@
+
+	  http://metacpan.org/release/Try-Tiny
diff --git a/package/perl-try-tiny/perl-try-tiny.mk b/package/perl-try-tiny/perl-try-tiny.mk
new file mode 100644
index 0000000..2446cbd
--- /dev/null
+++ b/package/perl-try-tiny/perl-try-tiny.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-try-tiny
+#
+################################################################################
+
+PERL_TRY_TINY_VERSION = 0.22
+PERL_TRY_TINY_SOURCE = Try-Tiny-$(PERL_TRY_TINY_VERSION).tar.gz
+PERL_TRY_TINY_SITE = $(BR2_CPAN_MIRROR)/authors/id/D/DO/DOY/
+PERL_TRY_TINY_DEPENDENCIES = perl
+PERL_TRY_TINY_LICENSE = mit
+PERL_TRY_TINY_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
1.9.1

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

* [Buildroot] [PATCH 1/4] perl-datetime-tiny: new package
  2014-07-22 18:17 [Buildroot] [PATCH 1/4] perl-datetime-tiny: new package Francois Perrad
                   ` (2 preceding siblings ...)
  2014-07-22 18:17 ` [Buildroot] [PATCH 4/4] perl-try-tiny: " Francois Perrad
@ 2014-07-23 19:49 ` Thomas Petazzoni
  3 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2014-07-23 19:49 UTC (permalink / raw)
  To: buildroot

Dear Francois Perrad,

On Tue, 22 Jul 2014 20:17:53 +0200, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  package/Config.in                                |  1 +
>  package/perl-datetime-tiny/Config.in             |  6 ++++++
>  package/perl-datetime-tiny/perl-datetime-tiny.mk | 14 ++++++++++++++
>  3 files changed, 21 insertions(+)
>  create mode 100644 package/perl-datetime-tiny/Config.in
>  create mode 100644 package/perl-datetime-tiny/perl-datetime-tiny.mk

Thanks, I've applied your four patches. However, on patches 3 and 4, I
had to change the license:

 apache_2_0 -> Apache-2.0
 mit -> MIT

See http://spdx.org/licenses/ for the list of license codes. You might
want to update you scancpan script to take this into account.

Thanks!

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

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

end of thread, other threads:[~2014-07-23 19:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-22 18:17 [Buildroot] [PATCH 1/4] perl-datetime-tiny: new package Francois Perrad
2014-07-22 18:17 ` [Buildroot] [PATCH 2/4] perl-json-tiny: " Francois Perrad
2014-07-22 18:17 ` [Buildroot] [PATCH 3/4] perl-path-tiny: " Francois Perrad
2014-07-22 18:17 ` [Buildroot] [PATCH 4/4] perl-try-tiny: " Francois Perrad
2014-07-23 19:49 ` [Buildroot] [PATCH 1/4] perl-datetime-tiny: " 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.