svn commit: r404103 - in head/www: . p5-HTTP-Thin
Martin Wilke
miwi at FreeBSD.org
Mon Dec 21 14:14:51 UTC 2015
Author: miwi
Date: Mon Dec 21 14:14:49 2015
New Revision: 404103
URL: https://svnweb.freebsd.org/changeset/ports/404103
Log:
HTTP::Thin is a thin wrapper around HTTP::Tiny adding the ability to pass in
HTTP::Request objects and get back HTTP::Response objects. The maintainers of
HTTP::Tiny, justifiably, don't want to have to maintain compatibility but many
other projects already consume the HTTP::Message objects. This is just glue code
doing what it does best.
WWW: http://search.cpan.org/dist/HTTP-Thin/
PR: 205362
Submitted by: amontalban at gmail.com
Approved by: mat (mentor)
Differential Revision: D4633
Added:
head/www/p5-HTTP-Thin/
head/www/p5-HTTP-Thin/Makefile (contents, props changed)
head/www/p5-HTTP-Thin/distinfo (contents, props changed)
head/www/p5-HTTP-Thin/pkg-descr (contents, props changed)
head/www/p5-HTTP-Thin/pkg-plist (contents, props changed)
Modified:
head/www/Makefile
Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile Mon Dec 21 14:05:01 2015 (r404102)
+++ head/www/Makefile Mon Dec 21 14:14:49 2015 (r404103)
@@ -1033,6 +1033,7 @@
SUBDIR += p5-HTTP-Session2
SUBDIR += p5-HTTP-SimpleLinkChecker
SUBDIR += p5-HTTP-Size
+ SUBDIR += p5-HTTP-Thin
SUBDIR += p5-HTTP-Tiny
SUBDIR += p5-HTTP-Tiny-SPDY
SUBDIR += p5-HTTP-WebTest
Added: head/www/p5-HTTP-Thin/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/p5-HTTP-Thin/Makefile Mon Dec 21 14:14:49 2015 (r404103)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME= HTTP-Thin
+PORTVERSION= 0.006
+CATEGORIES= www perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= amontalban at gmail.com
+COMMENT= Thin Wrapper around HTTP::Tiny to play nice with HTTP::Message
+
+LICENSE= ART10 GPLv1
+LICENSE_COMB= dual
+
+RUN_DEPENDS= p5-Class-Method-Modifiers>0:${PORTSDIR}/devel/p5-Class-Method-Modifiers \
+ p5-HTTP-Tiny>=0.056:${PORTSDIR}/www/p5-HTTP-Tiny \
+ p5-HTTP-Message>0:${PORTSDIR}/www/p5-HTTP-Message \
+ p5-Hash-MultiValue>0:${PORTSDIR}/devel/p5-Hash-MultiValue \
+ p5-Safe-Isa>0:${PORTSDIR}/devel/p5-Safe-Isa
+BUILD_DEPENDS:= ${RUN_DEPENDS}
+
+USES= perl5
+USE_PERL5= configure
+NO_ARCH= YES
+
+.include <bsd.port.mk>
Added: head/www/p5-HTTP-Thin/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/p5-HTTP-Thin/distinfo Mon Dec 21 14:14:49 2015 (r404103)
@@ -0,0 +1,2 @@
+SHA256 (HTTP-Thin-0.006.tar.gz) = c4a78588c194603222b0a6b426e61692189def0ce4a0581791873b8720f79e9e
+SIZE (HTTP-Thin-0.006.tar.gz) = 11562
Added: head/www/p5-HTTP-Thin/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/p5-HTTP-Thin/pkg-descr Mon Dec 21 14:14:49 2015 (r404103)
@@ -0,0 +1,7 @@
+HTTP::Thin is a thin wrapper around HTTP::Tiny adding the ability to pass in
+HTTP::Request objects and get back HTTP::Response objects. The maintainers of
+HTTP::Tiny, justifiably, don't want to have to maintain compatibility but many
+other projects already consume the HTTP::Message objects. This is just glue code
+doing what it does best.
+
+WWW: http://search.cpan.org/dist/HTTP-Thin/
Added: head/www/p5-HTTP-Thin/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/p5-HTTP-Thin/pkg-plist Mon Dec 21 14:14:49 2015 (r404103)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/HTTP/Thin.pm
+%%PERL5_MAN3%%/HTTP::Thin.3.gz
More information about the svn-ports-head
mailing list