Commit 27e4a433 authored by Bernd Kuhls's avatar Bernd Kuhls Committed by Thomas Petazzoni
Browse files

package/perl-http-message: New package

parent 2b221670
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -513,6 +513,7 @@ menu "Perl libraries/modules"
	source "package/perl-html-parser/Config.in"
	source "package/perl-html-tagset/Config.in"
	source "package/perl-http-date/Config.in"
	source "package/perl-http-message/Config.in"
	source "package/perl-io-html/Config.in"
	source "package/perl-io-socket-ssl/Config.in"
	source "package/perl-json-tiny/Config.in"
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PERL_HTTP_MESSAGE
	bool "perl-http-message"
	select BR2_PACKAGE_PERL_ENCODE_LOCALE
	select BR2_PACKAGE_PERL_HTTP_DATE
	select BR2_PACKAGE_PERL_IO_HTML
	select BR2_PACKAGE_PERL_LWP_MEDIATYPES
	select BR2_PACKAGE_PERL_URI
	help
	  The HTTP-Message distribution contains classes useful for representing
	  the messages passed in HTTP style communication.

	  https://github.com/libwww-perl/http-message
+3 −0
Original line number Diff line number Diff line
# retrieved by scancpan from http://cpan.metacpan.org/
md5    e563ac516e28d33f65bc0f295f625f85 HTTP-Message-6.06.tar.gz
sha256 087e97009c5239dca4631cf433d836771b3fc5ba5685eef1965f9d3415cbad63 HTTP-Message-6.06.tar.gz
+19 −0
Original line number Diff line number Diff line
################################################################################
#
# perl-http-message
#
################################################################################

PERL_HTTP_MESSAGE_VERSION = 6.06
PERL_HTTP_MESSAGE_SOURCE = HTTP-Message-$(PERL_HTTP_MESSAGE_VERSION).tar.gz
PERL_HTTP_MESSAGE_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS
PERL_HTTP_MESSAGE_LICENSE = Artistic or GPLv1+
PERL_HTTP_MESSAGE_LICENSE_FILES = README
PERL_HTTP_MESSAGE_DEPENDENCIES = \
	perl-encode-locale \
	perl-http-date \
	perl-io-html \
	perl-lwp-mediatypes \
	perl-uri

$(eval $(perl-package))