svn commit: r319772 - in head/www: . rubygem-http-cookie

Steve Wills swills at FreeBSD.org
Mon Jun 3 11:49:09 UTC 2013


Author: swills
Date: Mon Jun  3 11:49:08 2013
New Revision: 319772
URL: http://svnweb.freebsd.org/changeset/ports/319772

Log:
  HTTP::Cookie is a Ruby library to handle HTTP Cookies based on RFC 6265. It has
  with security, standards compliance and compatibility in mind, to behave just
  the same as today's major web browsers. It has builtin support for the legacy
  cookies.txt and the latest cookies.sqlite formats of Mozilla Firefox, and its
  modular API makes it easy to add support for a new backend store.
  
  WWW: https://github.com/sparklemotion/http-cookie

Added:
  head/www/rubygem-http-cookie/
  head/www/rubygem-http-cookie/Makefile   (contents, props changed)
  head/www/rubygem-http-cookie/distinfo   (contents, props changed)
  head/www/rubygem-http-cookie/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Mon Jun  3 11:31:51 2013	(r319771)
+++ head/www/Makefile	Mon Jun  3 11:49:08 2013	(r319772)
@@ -1746,6 +1746,7 @@
     SUBDIR += rubygem-feedzirra
     SUBDIR += rubygem-haml
     SUBDIR += rubygem-hpricot
+    SUBDIR += rubygem-http-cookie
     SUBDIR += rubygem-httparty
     SUBDIR += rubygem-httpclient
     SUBDIR += rubygem-innate

Added: head/www/rubygem-http-cookie/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/rubygem-http-cookie/Makefile	Mon Jun  3 11:49:08 2013	(r319772)
@@ -0,0 +1,18 @@
+# Created by: Steve Wills <swills at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	http-cookie
+PORTVERSION=	1.0.1
+CATEGORIES=	www rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Ruby library to handle HTTP Cookies
+
+RUN_DEPENDS=	rubygem-domain_name>=0.5.1:${PORTSDIR}/net/rubygem-domain_name
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/www/rubygem-http-cookie/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/rubygem-http-cookie/distinfo	Mon Jun  3 11:49:08 2013	(r319772)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/http-cookie-1.0.1.gem) = a91daf2f18d3fe9d38f8aca291c578eea1ad621f3807f7ce3b41d4587384ef3f
+SIZE (rubygem/http-cookie-1.0.1.gem) = 37888

Added: head/www/rubygem-http-cookie/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/rubygem-http-cookie/pkg-descr	Mon Jun  3 11:49:08 2013	(r319772)
@@ -0,0 +1,7 @@
+HTTP::Cookie is a Ruby library to handle HTTP Cookies based on RFC 6265. It has
+with security, standards compliance and compatibility in mind, to behave just
+the same as today's major web browsers. It has builtin support for the legacy
+cookies.txt and the latest cookies.sqlite formats of Mozilla Firefox, and its
+modular API makes it easy to add support for a new backend store.
+
+WWW: https://github.com/sparklemotion/http-cookie


More information about the svn-ports-all mailing list