From owner-svn-ports-all@freebsd.org Sat Aug 18 00:13:41 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D5B6107F754; Sat, 18 Aug 2018 00:13:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B7F5578709; Sat, 18 Aug 2018 00:13:40 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 991667EC3; Sat, 18 Aug 2018 00:13:40 +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 w7I0DexD062344; Sat, 18 Aug 2018 00:13:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7I0Ddkm062341; Sat, 18 Aug 2018 00:13:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201808180013.w7I0Ddkm062341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 18 Aug 2018 00:13:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477456 - in head/dns: . py-publicsuffixlist X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/dns: . py-publicsuffixlist X-SVN-Commit-Revision: 477456 X-SVN-Commit-Repository: ports 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.27 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: Sat, 18 Aug 2018 00:13:41 -0000 Author: sunpoet Date: Sat Aug 18 00:13:39 2018 New Revision: 477456 URL: https://svnweb.freebsd.org/changeset/ports/477456 Log: Add py-publicsuffixlist 0.6.2 Public Suffix List parser implementation for Python. - Compliant with TEST DATA - Support IDN (unicode or punycoded). - Support Python 2.5+ and Python 3.x - Shipped with built-in PSL and the updater script. - Written in Pure Python. No library dependencies. WWW: https://github.com/ko-zu/psl Added: head/dns/py-publicsuffixlist/ head/dns/py-publicsuffixlist/Makefile (contents, props changed) head/dns/py-publicsuffixlist/distinfo (contents, props changed) head/dns/py-publicsuffixlist/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Fri Aug 17 23:01:59 2018 (r477455) +++ head/dns/Makefile Sat Aug 18 00:13:39 2018 (r477456) @@ -196,6 +196,7 @@ SUBDIR += py-ldns SUBDIR += py-namebench SUBDIR += py-publicsuffix + SUBDIR += py-publicsuffixlist SUBDIR += py-py3dns SUBDIR += py-pycares SUBDIR += py-pydnstable Added: head/dns/py-publicsuffixlist/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-publicsuffixlist/Makefile Sat Aug 18 00:13:39 2018 (r477456) @@ -0,0 +1,27 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= publicsuffixlist +PORTVERSION= 0.6.2 +CATEGORIES= dns python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Publicsuffixlist implementation + +LICENSE= MPL20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +PATCH_DEPENDS= public_suffix_list>=0:dns/public_suffix_list + +USE_PYTHON= autoplist concurrent distutils +USES= python + +NO_ARCH= yes + +post-patch: + @${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/publicsuffixlist/public_suffix_list.dat + @${CP} ${LOCALBASE}/share/public_suffix_list/test_psl.txt ${WRKSRC}/publicsuffixlist/test_psl.txt + +.include Added: head/dns/py-publicsuffixlist/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-publicsuffixlist/distinfo Sat Aug 18 00:13:39 2018 (r477456) @@ -0,0 +1,3 @@ +TIMESTAMP = 1533662410 +SHA256 (publicsuffixlist-0.6.2.tar.gz) = bbcfca8f251afdf38ce8c4f98b6f53fe9b214f09686095e4817776e31c60813a +SIZE (publicsuffixlist-0.6.2.tar.gz) = 81153 Added: head/dns/py-publicsuffixlist/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-publicsuffixlist/pkg-descr Sat Aug 18 00:13:39 2018 (r477456) @@ -0,0 +1,8 @@ +Public Suffix List parser implementation for Python. +- Compliant with TEST DATA +- Support IDN (unicode or punycoded). +- Support Python 2.5+ and Python 3.x +- Shipped with built-in PSL and the updater script. +- Written in Pure Python. No library dependencies. + +WWW: https://github.com/ko-zu/psl