From patchwork Sun Apr 19 08:33:24 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 462439 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id CD6B7140133 for ; Sun, 19 Apr 2015 18:33:51 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 12434A341F; Sun, 19 Apr 2015 08:33:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tQ1cZP2Ie9IL; Sun, 19 Apr 2015 08:33:49 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9AFE8A341E; Sun, 19 Apr 2015 08:33:49 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 5EA5C1C22E5 for ; Sun, 19 Apr 2015 08:33:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5A1BBA3400 for ; Sun, 19 Apr 2015 08:33:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XSMprg5W4vWG for ; Sun, 19 Apr 2015 08:33:45 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout11.t-online.de (mailout11.t-online.de [194.25.134.85]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 44673A33A6 for ; Sun, 19 Apr 2015 08:33:45 +0000 (UTC) Received: from fwd13.aul.t-online.de (fwd13.aul.t-online.de [172.20.27.62]) by mailout11.t-online.de (Postfix) with SMTP id 92220A9B03 for ; Sun, 19 Apr 2015 10:33:43 +0200 (CEST) Received: from fli4l.lan.fli4l (b71bKaZfoh+Ufebkl0KOPs2xEKOBxS65uCqlI73cOJrk+y5jwtHycs2ECdZB-uGQzs@[79.247.173.74]) by fwd13.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1Yjkff-0YezD60; Sun, 19 Apr 2015 10:33:43 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:33035) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.85) (envelope-from ) id 1Yjkfe-0007ck-8n; Sun, 19 Apr 2015 10:33:42 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 19 Apr 2015 10:33:24 +0200 Message-Id: <1429432413-17038-12-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1429432413-17038-1-git-send-email-bernd.kuhls@t-online.de> References: <1429432413-17038-1-git-send-email-bernd.kuhls@t-online.de> X-ID: b71bKaZfoh+Ufebkl0KOPs2xEKOBxS65uCqlI73cOJrk+y5jwtHycs2ECdZB-uGQzs X-TOI-MSGID: c1abebcd-0e4a-4ea9-8ee0-42a4e0f46012 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 11/20] perl-uri: New package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Bernd Kuhls --- 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 e60481e..4aacdd7 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))