From owner-svn-ports-head@freebsd.org Mon Mar 7 21:07:20 2016 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 BC70FAC2A1E; Mon, 7 Mar 2016 21:07:20 +0000 (UTC) (envelope-from dvl@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 7461DC6; Mon, 7 Mar 2016 21:07:20 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u27L7J1t073786; Mon, 7 Mar 2016 21:07:19 GMT (envelope-from dvl@FreeBSD.org) Received: (from dvl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u27L7JGQ073783; Mon, 7 Mar 2016 21:07:19 GMT (envelope-from dvl@FreeBSD.org) Message-Id: <201603072107.u27L7JGQ073783@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dvl set sender to dvl@FreeBSD.org using -f From: Dan Langille Date: Mon, 7 Mar 2016 21:07:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410576 - head/dns/py-tldextract 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.21 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: Mon, 07 Mar 2016 21:07:20 -0000 Author: dvl Date: Mon Mar 7 21:07:19 2016 New Revision: 410576 URL: https://svnweb.freebsd.org/changeset/ports/410576 Log: Introducing tldextract for extracting the TLD from the registered domain and subdomains of a URL. Differential Revision: D5574 Added: head/dns/py-tldextract/ head/dns/py-tldextract/Makefile (contents, props changed) head/dns/py-tldextract/distinfo (contents, props changed) head/dns/py-tldextract/pkg-descr (contents, props changed) Added: head/dns/py-tldextract/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-tldextract/Makefile Mon Mar 7 21:07:19 2016 (r410576) @@ -0,0 +1,22 @@ +# Created by: Dan Langille +# $FreeBSD$ + +PORTNAME= tldextract +PORTVERSION= 1.7.5 +CATEGORIES= dns python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dvl@FreeBSD.org +COMMENT= Separate the TLD from the registered domain and subdomains of a URL + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}idna>=2.0:${PORTSDIR}/dns/py-idna + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/dns/py-tldextract/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-tldextract/distinfo Mon Mar 7 21:07:19 2016 (r410576) @@ -0,0 +1,2 @@ +SHA256 (tldextract-1.7.5.tar.gz) = f01e6fbe872f0e9e5440a811ee33fbc562723dd1b4f239a8e9ef6f717b3392bd +SIZE (tldextract-1.7.5.tar.gz) = 63860 Added: head/dns/py-tldextract/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-tldextract/pkg-descr Mon Mar 7 21:07:19 2016 (r410576) @@ -0,0 +1,4 @@ +Python module for separating the TLD from the registered domain and subdomains +of a URL, using the Public Suffix List. + +WWW: https://github.com/john-kurkowski/tldextract