Date: Sun, 21 Jan 2018 13:12:27 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459604 - in head/dns: . py-tld Message-ID: <201801211312.w0LDCRGT034557@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801211312.w0LDCRGT034557>