From owner-svn-ports-all@freebsd.org Fri Dec 4 12:21:43 2015 Return-Path: Delivered-To: svn-ports-all@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 9147FA3E8BD; Fri, 4 Dec 2015 12:21:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 6FA9C1E27; Fri, 4 Dec 2015 12:21:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB4CLg5M006314; Fri, 4 Dec 2015 12:21:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB4CLgMp006310; Fri, 4 Dec 2015 12:21:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201512041221.tB4CLgMp006310@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 4 Dec 2015 12:21:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402926 - in head/dns: . public_suffix_list X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 12:21:43 -0000 Author: sunpoet Date: Fri Dec 4 12:21:42 2015 New Revision: 402926 URL: https://svnweb.freebsd.org/changeset/ports/402926 Log: - Add public_suffix_list 0.0.0.20151203 The Public Suffix List A "public suffix" is one under which Internet users can (or historically could) directly register names. Some examples of public suffixes are .com, .co.uk and pvt.k12.ma.us. The Public Suffix List is a list of all known public suffixes. WWW: https://publicsuffix.org/ WWW: https://github.com/publicsuffix/list/ Added: head/dns/public_suffix_list/ head/dns/public_suffix_list/Makefile (contents, props changed) head/dns/public_suffix_list/distinfo (contents, props changed) head/dns/public_suffix_list/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Fri Dec 4 12:21:31 2015 (r402925) +++ head/dns/Makefile Fri Dec 4 12:21:42 2015 (r402926) @@ -156,6 +156,7 @@ SUBDIR += pear-Net_DNS2 SUBDIR += powerdns SUBDIR += powerdns-recursor + SUBDIR += public_suffix_list SUBDIR += py-adns SUBDIR += py-bonjour SUBDIR += py-dns Added: head/dns/public_suffix_list/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/public_suffix_list/Makefile Fri Dec 4 12:21:42 2015 (r402926) @@ -0,0 +1,30 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= public_suffix_list +PORTVERSION= 0.0.0.20151203 +CATEGORIES= dns + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Public Suffix List by Mozilla + +LICENSE= MPL +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= %%DATADIR%%/public_suffix_list.dat \ + %%DATADIR%%/test_psl.txt + +GH_ACCOUNT= publicsuffix +GH_PROJECT= list +GH_TAGNAME= 0ee352b +USE_GITHUB= yes + +do-install: + ${MKDIR} ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/public_suffix_list.dat ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/tests/test_psl.txt ${STAGEDIR}${DATADIR}/ + +.include Added: head/dns/public_suffix_list/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/public_suffix_list/distinfo Fri Dec 4 12:21:42 2015 (r402926) @@ -0,0 +1,2 @@ +SHA256 (publicsuffix-list-0.0.0.20151203-0ee352b_GH0.tar.gz) = b472514166089f115bcecb591a8339761631180bf78227772c1cff9473e430c5 +SIZE (publicsuffix-list-0.0.0.20151203-0ee352b_GH0.tar.gz) = 72428 Added: head/dns/public_suffix_list/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/public_suffix_list/pkg-descr Fri Dec 4 12:21:42 2015 (r402926) @@ -0,0 +1,8 @@ +The Public Suffix List + +A "public suffix" is one under which Internet users can (or historically could) +directly register names. Some examples of public suffixes are .com, .co.uk and +pvt.k12.ma.us. The Public Suffix List is a list of all known public suffixes. + +WWW: https://publicsuffix.org/ +WWW: https://github.com/publicsuffix/list/