From: Christopher McCrory <chrismcc@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 07/17] perl-dist-checkconflicts: new package
Date: Sat, 11 Aug 2018 11:27:39 -0700 [thread overview]
Message-ID: <20180811182749.20924-8-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-dist-checkconflicts/Config.in | 7 +++++++
.../perl-dist-checkconflicts.hash | 6 ++++++
.../perl-dist-checkconflicts/perl-dist-checkconflicts.mk | 16 ++++++++++++++++
5 files changed, 31 insertions(+)
create mode 100644 package/perl-dist-checkconflicts/Config.in
create mode 100644 package/perl-dist-checkconflicts/perl-dist-checkconflicts.hash
create mode 100644 package/perl-dist-checkconflicts/perl-dist-checkconflicts.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index 2ecfddf9b0..78934320c6 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -490,6 +490,7 @@ F: package/perl-data-uuid
F: package/perl-date-manip
F: package/perl-dbi
F: package/perl-device-serialport
+F: package/perl-dist-checkconflicts
F: package/perl-file-slurp
F: package/perl-io-interface
F: package/perl-json-maybexs
diff --git a/package/Config.in b/package/Config.in
index 91aff2953b..1eac9b3726 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -680,6 +680,7 @@ menu "Perl libraries/modules"
source "package/perl-date-manip/Config.in"
source "package/perl-datetime-tiny/Config.in"
source "package/perl-dbi/Config.in"
+ source "package/perl-dist-checkconflicts/Config.in"
source "package/perl-device-serialport/Config.in"
source "package/perl-digest-hmac/Config.in"
source "package/perl-digest-md5/Config.in"
diff --git a/package/perl-dist-checkconflicts/Config.in b/package/perl-dist-checkconflicts/Config.in
new file mode 100644
index 0000000000..10f0944aa8
--- /dev/null
+++ b/package/perl-dist-checkconflicts/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PERL_DIST_CHECKCONFLICTS
+ bool "perl-dist-checkconflicts"
+ select BR2_PACKAGE_PERL_MODULE_RUNTIME
+ help
+ declare version conflicts for your dist
+
+ http://metacpan.org/release/Dist-CheckConflicts
diff --git a/package/perl-dist-checkconflicts/perl-dist-checkconflicts.hash b/package/perl-dist-checkconflicts/perl-dist-checkconflicts.hash
new file mode 100644
index 0000000000..5605fed4ae
--- /dev/null
+++ b/package/perl-dist-checkconflicts/perl-dist-checkconflicts.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5 c8725a92b9169708b0f63036812070f2 Dist-CheckConflicts-0.11.tar.gz
+sha256 ea844b9686c94d666d9d444321d764490b2cde2f985c4165b4c2c77665caedc4 Dist-CheckConflicts-0.11.tar.gz
+
+# computed by scancpan
+sha256 b4e0637ed96008ddcbf7e0ddeb73967df3d0b4dc62a6b7fdb86eac37018cb12e LICENSE
diff --git a/package/perl-dist-checkconflicts/perl-dist-checkconflicts.mk b/package/perl-dist-checkconflicts/perl-dist-checkconflicts.mk
new file mode 100644
index 0000000000..cbde23c2f1
--- /dev/null
+++ b/package/perl-dist-checkconflicts/perl-dist-checkconflicts.mk
@@ -0,0 +1,16 @@
+################################################################################
+#
+# perl-dist-checkconflicts
+#
+################################################################################
+
+PERL_DIST_CHECKCONFLICTS_VERSION = 0.11
+PERL_DIST_CHECKCONFLICTS_SOURCE = Dist-CheckConflicts-$(PERL_DIST_CHECKCONFLICTS_VERSION).tar.gz
+PERL_DIST_CHECKCONFLICTS_SITE = $(BR2_CPAN_MIRROR)/authors/id/D/DO/DOY
+PERL_DIST_CHECKCONFLICTS_DEPENDENCIES = perl-module-runtime
+HOST_PERL_DIST_CHECKCONFLICTS_DEPENDENCIES = host-perl-module-runtime
+PERL_DIST_CHECKCONFLICTS_LICENSE = Artistic or GPL-1.0+
+PERL_DIST_CHECKCONFLICTS_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
+$(eval $(host-perl-package))
--
2.14.4
next prev 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 ` Christopher McCrory [this message]
2018-08-14 3:59 ` [Buildroot] [PATCH 07/17] perl-dist-checkconflicts: new package 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 ` [Buildroot] [PATCH 10/17] perl-module-implementation: " Christopher McCrory
2018-08-12 16:50 ` 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-8-chrismcc@gmail.com \
--to=chrismcc@gmail.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox