From owner-svn-ports-all@freebsd.org Sun Jan 21 13:12:29 2018 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 392BCECA39A; Sun, 21 Jan 2018 13:12:29 +0000 (UTC) (envelope-from antoine@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 140BA6B4CE; Sun, 21 Jan 2018 13:12:29 +0000 (UTC) (envelope-from antoine@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 5197B4335; Sun, 21 Jan 2018 13:12:28 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0LDCSL7034562; Sun, 21 Jan 2018 13:12:28 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0LDCRGT034557; Sun, 21 Jan 2018 13:12:27 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201801211312.w0LDCRGT034557@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 21 Jan 2018 13:12:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459604 - in head/dns: . py-tld X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/dns: . py-tld X-SVN-Commit-Revision: 459604 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.25 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: Sun, 21 Jan 2018 13:12:29 -0000 Author: antoine Date: Sun Jan 21 13:12:27 2018 New Revision: 459604 URL: https://svnweb.freebsd.org/changeset/ports/459604 Log: New port: dns/py-tld Extract the top level domain (TLD) from the URL given. List of TLD names is taken from Mozilla. WWW: https://github.com/barseghyanartur/tld Added: head/dns/py-tld/ head/dns/py-tld/Makefile (contents, props changed) head/dns/py-tld/distinfo (contents, props changed) head/dns/py-tld/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Sun Jan 21 12:49:52 2018 (r459603) +++ head/dns/Makefile Sun Jan 21 13:12:27 2018 (r459604) @@ -187,6 +187,7 @@ SUBDIR += py-pycares SUBDIR += py-pydnstable SUBDIR += py-pywdns + SUBDIR += py-tld SUBDIR += py-tldextract SUBDIR += radns SUBDIR += rbldnsd Added: head/dns/py-tld/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-tld/Makefile Sun Jan 21 13:12:27 2018 (r459604) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= tld +PORTVERSION= 0.7.9 +CATEGORIES= dns python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Extract the top level domain (TLD) from the URL given + +LICENSE= MPL11 GPLv2 LGPL21 +LICENSE_COMB= multi + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} + +NO_ARCH= yes +USES= python shebangfix +USE_PYTHON= autoplist concurrent distutils +SHEBANG_FILES= src/tld/bin/update-tld-names + +.include Added: head/dns/py-tld/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-tld/distinfo Sun Jan 21 13:12:27 2018 (r459604) @@ -0,0 +1,3 @@ +TIMESTAMP = 1515568446 +SHA256 (tld-0.7.9.tar.gz) = e78e31ee3d48af1c0473110f6c477c01244f2106d77186f56f027977a5b760a2 +SIZE (tld-0.7.9.tar.gz) = 147753 Added: head/dns/py-tld/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-tld/pkg-descr Sun Jan 21 13:12:27 2018 (r459604) @@ -0,0 +1,4 @@ +Extract the top level domain (TLD) from the URL given. List of TLD names is +taken from Mozilla. + +WWW: https://github.com/barseghyanartur/tld