From owner-svn-ports-head@FreeBSD.ORG Sat Jun 29 02:22:52 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8C807BCC; Sat, 29 Jun 2013 02:22:52 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 63C35110A; Sat, 29 Jun 2013 02:22:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5T2MpqB090606; Sat, 29 Jun 2013 02:22:51 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5T2Mpfk090602; Sat, 29 Jun 2013 02:22:51 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201306290222.r5T2Mpfk090602@svn.freebsd.org> From: Steve Wills Date: Sat, 29 Jun 2013 02:22:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322020 - in head/dns: . rubygem-public_suffix 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.14 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: Sat, 29 Jun 2013 02:22:52 -0000 Author: swills Date: Sat Jun 29 02:22:50 2013 New Revision: 322020 URL: http://svnweb.freebsd.org/changeset/ports/322020 Log: PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains. WWW: http://www.simonecarletti.com/code/publicsuffix Added: head/dns/rubygem-public_suffix/ head/dns/rubygem-public_suffix/Makefile (contents, props changed) head/dns/rubygem-public_suffix/distinfo (contents, props changed) head/dns/rubygem-public_suffix/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Sat Jun 29 01:46:36 2013 (r322019) +++ head/dns/Makefile Sat Jun 29 02:22:50 2013 (r322020) @@ -146,6 +146,7 @@ SUBDIR += rbllookup-ng SUBDIR += rubygem-dnsruby SUBDIR += rubygem-net-dns + SUBDIR += rubygem-public_suffix SUBDIR += rubygem-public_suffix_service SUBDIR += samba-nsupdate SUBDIR += scavenge Added: head/dns/rubygem-public_suffix/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/rubygem-public_suffix/Makefile Sat Jun 29 02:22:50 2013 (r322020) @@ -0,0 +1,16 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= public_suffix +PORTVERSION= 1.3.0 +CATEGORIES= dns rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Parse and decompose a domain name into top level domain, domain and subdomains + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/dns/rubygem-public_suffix/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/rubygem-public_suffix/distinfo Sat Jun 29 02:22:50 2013 (r322020) @@ -0,0 +1,2 @@ +SHA256 (rubygem/public_suffix-1.3.0.gem) = da94da1785f5ffa29bbb52de7dbe488d109c403f5db525846f157261a9d07c69 +SIZE (rubygem/public_suffix-1.3.0.gem) = 55296 Added: head/dns/rubygem-public_suffix/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/rubygem-public_suffix/pkg-descr Sat Jun 29 02:22:50 2013 (r322020) @@ -0,0 +1,4 @@ +PublicSuffix can parse and decompose a domain name into top level domain, +domain and subdomains. + +WWW: http://www.simonecarletti.com/code/publicsuffix