From owner-svn-ports-head@freebsd.org Sun Aug 23 22:18:34 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A1FA9BF735; Sun, 23 Aug 2015 22:18:34 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E5D9314; Sun, 23 Aug 2015 22:18:34 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7NMIY0i046911; Sun, 23 Aug 2015 22:18:34 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7NMIWS8046906; Sun, 23 Aug 2015 22:18:32 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201508232218.t7NMIWS8046906@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Sun, 23 Aug 2015 22:18:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395135 - in head/www: . p5-HTTP-CookieMonster X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Aug 2015 22:18:34 -0000 Author: kuriyama Date: Sun Aug 23 22:18:32 2015 New Revision: 395135 URL: https://svnweb.freebsd.org/changeset/ports/395135 Log: This module was created because messing around with HTTP::Cookies is non-trivial. HTTP::Cookies a very useful module, but using it is not always as easy and clean as it could be. WWW: http://search.cpan.org/dist/HTTP-CookieMonster/ Added: head/www/p5-HTTP-CookieMonster/ head/www/p5-HTTP-CookieMonster/Makefile (contents, props changed) head/www/p5-HTTP-CookieMonster/distinfo (contents, props changed) head/www/p5-HTTP-CookieMonster/pkg-descr (contents, props changed) head/www/p5-HTTP-CookieMonster/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Aug 23 21:58:21 2015 (r395134) +++ head/www/Makefile Sun Aug 23 22:18:32 2015 (r395135) @@ -987,6 +987,7 @@ SUBDIR += p5-HTTP-BrowserDetect SUBDIR += p5-HTTP-Cache-Transparent SUBDIR += p5-HTTP-CookieJar + SUBDIR += p5-HTTP-CookieMonster SUBDIR += p5-HTTP-Cookies SUBDIR += p5-HTTP-Cookies-Mozilla SUBDIR += p5-HTTP-Cookies-iCab Added: head/www/p5-HTTP-CookieMonster/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-HTTP-CookieMonster/Makefile Sun Aug 23 22:18:32 2015 (r395135) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= HTTP-CookieMonster +PORTVERSION= 0.09 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension to read/write access to HTTP::Cookies jar + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= \ + p5-HTTP-Cookies>0:${PORTSDIR}/www/p5-HTTP-Cookies \ + p5-Moo>=1.000003:${PORTSDIR}/devel/p5-Moo \ + p5-Safe-Isa>0:${PORTSDIR}/devel/p5-Safe-Isa \ + p5-Sub-Exporter>0:${PORTSDIR}/devel/p5-Sub-Exporter \ + p5-URI>0:${PORTSDIR}/net/p5-Net +BUILD_DEPENDS= ${RUN_DEPENDS} + +USES= perl5 +USE_PERL5= configure +NO_ARCH= YES + +.include Added: head/www/p5-HTTP-CookieMonster/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-HTTP-CookieMonster/distinfo Sun Aug 23 22:18:32 2015 (r395135) @@ -0,0 +1,2 @@ +SHA256 (HTTP-CookieMonster-0.09.tar.gz) = d987b69133dbba219cf9dd3590f4e188b581277cc235ccf58333d0dbb25dc2b3 +SIZE (HTTP-CookieMonster-0.09.tar.gz) = 16315 Added: head/www/p5-HTTP-CookieMonster/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-HTTP-CookieMonster/pkg-descr Sun Aug 23 22:18:32 2015 (r395135) @@ -0,0 +1,5 @@ +This module was created because messing around with HTTP::Cookies is +non-trivial. HTTP::Cookies a very useful module, but using it is not +always as easy and clean as it could be. + +WWW: http://search.cpan.org/dist/HTTP-CookieMonster/ Added: head/www/p5-HTTP-CookieMonster/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-HTTP-CookieMonster/pkg-plist Sun Aug 23 22:18:32 2015 (r395135) @@ -0,0 +1,4 @@ +%%PERL5_MAN3%%/HTTP::CookieMonster.3.gz +%%PERL5_MAN3%%/HTTP::CookieMonster::Cookie.3.gz +%%SITE_PERL%%/HTTP/CookieMonster.pm +%%SITE_PERL%%/HTTP/CookieMonster/Cookie.pm