From: Christopher McCrory <chrismcc@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 07/18] perl-dist-checkconflicts: new package
Date: Mon, 20 Aug 2018 04:55:08 -0700 [thread overview]
Message-ID: <20180820115519.24046-8-chrismcc@gmail.com> (raw)
In-Reply-To: <20180820115519.24046-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/perl-dist-checkconflicts.hash | 6 ++++++
.../perl-dist-checkconflicts/perl-dist-checkconflicts.mk | 14 ++++++++++++++
5 files changed, 29 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 70879360f2..0d20a77c6b 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -493,6 +493,7 @@ F: package/perl-date-manip/
F: package/perl-dbd-mysql/
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-io-socket-multicast/
diff --git a/package/Config.in b/package/Config.in
index fcb67b7617..966748fc95 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -685,6 +685,7 @@ menu "Perl libraries/modules"
source "package/perl-digest-hmac/Config.in"
source "package/perl-digest-md5/Config.in"
source "package/perl-digest-sha1/Config.in"
+ source "package/perl-dist-checkconflicts/Config.in"
source "package/perl-encode-detect/Config.in"
source "package/perl-encode-locale/Config.in"
source "package/perl-file-listing/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..4242b50ab2
--- /dev/null
+++ b/package/perl-dist-checkconflicts/perl-dist-checkconflicts.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# 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
+PERL_DIST_CHECKCONFLICTS_LICENSE = Artistic or GPL-1.0+
+PERL_DIST_CHECKCONFLICTS_LICENSE_FILES = LICENSE
+
+$(eval $(perl-package))
--
2.14.4
next prev parent reply other threads:[~2018-08-20 11:55 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-20 11:55 [Buildroot] [PATCH 00/13] perl modules again Christopher McCrory
2018-08-20 11:55 ` [Buildroot] [PATCH 01/18] perl-dbi: add host package Christopher McCrory
2018-08-21 13:16 ` François Perrad
2018-09-11 13:40 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 02/18] perl-dbd-mysql: new package Christopher McCrory
2018-08-21 13:16 ` François Perrad
2018-09-11 13:42 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 03/18] perl-data-dump: " Christopher McCrory
2018-08-21 6:19 ` François Perrad
2018-09-12 19:43 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 04/18] perl-time-parsedate: " Christopher McCrory
2018-08-20 11:59 ` Thomas Petazzoni
2018-08-20 12:12 ` Christopher McCrory
2018-08-20 12:27 ` Thomas Petazzoni
2018-08-20 12:41 ` Christopher McCrory
2018-09-12 20:26 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 05/18] perl-x10: " Christopher McCrory
2018-08-21 6:23 ` François Perrad
2018-09-12 20:44 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 06/18] perl-sys-cpu: " Christopher McCrory
2018-08-21 6:35 ` François Perrad
2018-09-12 20:53 ` Thomas Petazzoni
2018-08-20 11:55 ` Christopher McCrory [this message]
2018-08-21 6:40 ` [Buildroot] [PATCH 07/18] perl-dist-checkconflicts: " François Perrad
2018-09-12 20:55 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 08/18] perl-package-stash: " Christopher McCrory
2018-08-21 6:42 ` François Perrad
2018-09-12 21:02 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 09/18] perl-class-load: " Christopher McCrory
2018-08-21 6:43 ` François Perrad
2018-09-12 21:06 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 10/18] perl-template-toolkit: " Christopher McCrory
2018-08-20 11:55 ` [Buildroot] [PATCH 11/18] perl-xml-parser: " Christopher McCrory
2018-08-20 11:55 ` [Buildroot] [PATCH 12/18] perl-soap-wsdl: " Christopher McCrory
2018-09-12 21:35 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 13/18] perl-time-parsedate: add license Christopher McCrory
2018-08-20 11:55 ` [Buildroot] [PATCH 14/18] perl-termreadkey: new package Christopher McCrory
2018-08-22 17:00 ` Christopher McCrory
2018-08-20 11:55 ` [Buildroot] [PATCH 15/18] pkg-utils.mk: patch_sub_makefile Christopher McCrory
2018-09-12 21:15 ` Thomas Petazzoni
2018-09-12 21:33 ` Thomas Petazzoni
2018-08-20 11:55 ` [Buildroot] [PATCH 16/18] perl-template-toolkit: use new patch_sub_makefile Christopher McCrory
2018-08-20 11:55 ` [Buildroot] [PATCH 17/18] perl-xml-parser: " Christopher McCrory
2018-08-20 11:55 ` [Buildroot] [PATCH 18/18] perl-soap-wsdl: add dependancy on perl-termreadkey Christopher McCrory
2018-08-22 17:01 ` Christopher McCrory
2018-08-20 12:10 ` [Buildroot] [PATCH 00/13] perl modules again Thomas Petazzoni
2018-08-20 12:15 ` Christopher McCrory
2018-08-20 12:28 ` Thomas Petazzoni
2018-08-20 12:47 ` Christopher McCrory
2018-09-12 21:42 ` Thomas Petazzoni
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=20180820115519.24046-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