All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christopher McCrory <chrismcc@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 10/17] perl-module-implementation: new package
Date: Sat, 11 Aug 2018 11:27:42 -0700	[thread overview]
Message-ID: <20180811182749.20924-11-chrismcc@gmail.com> (raw)
In-Reply-To: <20180811182749.20924-1-chrismcc@gmail.com>

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

diff --git a/DEVELOPERS b/DEVELOPERS
index 2bc890e744..9d7d38ea75 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -496,6 +496,7 @@ F:	package/perl-io-interface
 F:	package/perl-io-socket-multicast
 F:	package/perl-json-maybexs
 F:	package/perl-mime-tools
+F:	package/perl-module-implementation
 F:	package/perl-module-runtime
 F:	package/perl-number-bytes-human
 F:	package/perl-params-util
diff --git a/package/Config.in b/package/Config.in
index 6124a7197a..1008a651ec 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -713,6 +713,7 @@ menu "Perl libraries/modules"
 	source "package/perl-mime-base64-urlsafe/Config.in"
 	source "package/perl-mime-base64/Config.in"
 	source "package/perl-mime-tools/Config.in"
+	source "package/perl-module-implementation/Config.in"
 	source "package/perl-module-runtime/Config.in"
 	source "package/perl-mojolicious-plugin-authentication/Config.in"
 	source "package/perl-mojolicious/Config.in"
diff --git a/package/perl-module-implementation/Config.in b/package/perl-module-implementation/Config.in
new file mode 100644
index 0000000000..aa07cacd11
--- /dev/null
+++ b/package/perl-module-implementation/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PERL_MODULE_IMPLEMENTATION
+	bool "perl-module-implementation"
+	select BR2_PACKAGE_PERL_MODULE_RUNTIME
+	select BR2_PACKAGE_PERL_TRY_TINY
+	help
+	  Loads one of several alternate underlying implementations for a module
+
+	  http://metacpan.org/release/Module-Implementation
diff --git a/package/perl-module-implementation/perl-module-implementation.hash b/package/perl-module-implementation/perl-module-implementation.hash
new file mode 100644
index 0000000000..caf365c024
--- /dev/null
+++ b/package/perl-module-implementation/perl-module-implementation.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    52e3fe0ca6b1eff0488d59b7aacc0667 Module-Implementation-0.09.tar.gz
+sha256 c15f1a12f0c2130c9efff3c2e1afe5887b08ccd033bd132186d1e7d5087fd66d Module-Implementation-0.09.tar.gz
+
+# computed by scancpan
+sha256 dd34e4dbcadfaa3db992201873e1cbb4b4f4c18e9bf000821d5c768e66d7ff0b LICENSE
diff --git a/package/perl-module-implementation/perl-module-implementation.mk b/package/perl-module-implementation/perl-module-implementation.mk
new file mode 100644
index 0000000000..50ee8610a5
--- /dev/null
+++ b/package/perl-module-implementation/perl-module-implementation.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-module-implementation
+#
+################################################################################
+
+PERL_MODULE_IMPLEMENTATION_VERSION = 0.09
+PERL_MODULE_IMPLEMENTATION_SOURCE = Module-Implementation-$(PERL_MODULE_IMPLEMENTATION_VERSION).tar.gz
+PERL_MODULE_IMPLEMENTATION_SITE = $(BR2_CPAN_MIRROR)/authors/id/D/DR/DROLSKY
+PERL_MODULE_IMPLEMENTATION_DEPENDENCIES = perl-module-runtime perl-try-tiny
+PERL_MODULE_IMPLEMENTATION_LICENSE = Artistic-2.0
+PERL_MODULE_IMPLEMENTATION_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
-- 
2.14.4

  parent reply	other threads:[~2018-08-11 18:27 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-11 18:27 [Buildroot] [PATCH 00/17] even more perl modules Christopher McCrory
2018-08-11 18:27 ` [Buildroot] [PATCH 01/17] perl-cgi: add host Christopher McCrory
2018-08-12 12:11   ` Thomas Petazzoni
2018-08-13 13:23     ` Christopher McCrory
2018-08-11 18:27 ` [Buildroot] [PATCH 02/17] perl-html-parser: " Christopher McCrory
2018-08-11 18:27 ` [Buildroot] [PATCH 03/17] perl-html-tagset: " Christopher McCrory
2018-08-11 18:27 ` [Buildroot] [PATCH 04/17] perl-class-std-fast: new package Christopher McCrory
2018-08-12 16:45   ` François Perrad
2018-08-12 21:17   ` Thomas Petazzoni
2018-08-12 21:18     ` Thomas Petazzoni
2018-08-13 11:21   ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 05/17] perl-data-optlist: " Christopher McCrory
2018-08-12 16:46   ` François Perrad
2018-08-13 11:21   ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 06/17] perl-module-runtime: add host Christopher McCrory
2018-08-12  9:21   ` François Perrad
2018-08-12 12:13     ` Thomas Petazzoni
2018-08-13 21:59       ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 07/17] perl-dist-checkconflicts: new package Christopher McCrory
2018-08-14  3:59   ` François Perrad
2018-08-11 18:27 ` [Buildroot] [PATCH 08/17] perl-io-socket-multicast: " Christopher McCrory
2018-08-12 16:48   ` François Perrad
2018-08-13 12:16   ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 09/17] perl-mime-tools: " Christopher McCrory
2018-08-12 16:49   ` François Perrad
2018-08-13 12:16   ` Thomas Petazzoni
2018-08-11 18:27 ` Christopher McCrory [this message]
2018-08-12 16:50   ` [Buildroot] [PATCH 10/17] perl-module-implementation: " François Perrad
2018-08-13 21:31   ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 11/17] perl-package-stash: " Christopher McCrory
2018-08-11 19:37   ` François Perrad
2018-08-11 21:31     ` Christopher McCrory
2018-08-13 21:31       ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 12/17] perl-template-toolkit: " Christopher McCrory
2018-08-12  8:04   ` François Perrad
2018-08-13 21:33     ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 13/17] perl-time-parsedate: " Christopher McCrory
2018-08-12 16:51   ` François Perrad
2018-08-13 21:46   ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 14/17] perl-x10: " Christopher McCrory
2018-08-12 16:52   ` François Perrad
2018-08-13 21:49   ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 15/17] perl-module-build: add target Christopher McCrory
2018-08-12  8:07   ` François Perrad
2018-08-13 21:34     ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 16/17] perl-class-load: new package Christopher McCrory
2018-08-12 16:57   ` François Perrad
2018-08-13 21:35     ` Thomas Petazzoni
2018-08-11 18:27 ` [Buildroot] [PATCH 17/17] perl-termreadkey: " Christopher McCrory
2018-08-12 16:55   ` François Perrad
2018-08-13 21:57   ` Thomas Petazzoni
2018-08-13 22:40     ` Arnout Vandecappelle
2018-08-14 15:53     ` Yann E. MORIN
2018-08-15 11:24       ` Christopher McCrory
2018-08-15 16:23         ` Yann E. MORIN

Reply instructions:

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

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

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

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

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

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

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is 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.