svn commit: r553936 - in head/net: . py-whois

Danilo G. Baio dbaio at FreeBSD.org
Tue Nov 3 00:41:00 UTC 2020


Author: dbaio
Date: Tue Nov  3 00:40:58 2020
New Revision: 553936
URL: https://svnweb.freebsd.org/changeset/ports/553936

Log:
  Add net/py-whois
  
  Python package for retrieving WHOIS information of domains
  
  Features
   - Python wrapper for Linux "whois" command
   - simple interface to access parsed WHOIS data for a given domain
   - able to extract data for all the popular TLDs (com, org, net, biz, info, pl,
     jp, uk, nz, ...)
   - query a WHOIS server directly instead of going through an intermediate web
     service like many others do
   - works with Python 2.4+ and Python 3.x
   - all dates as datetime objects
   - possibility to cache results
  
  WWW: https://pypi.org/project/whois/
  
  PR:		250810
  Submitted by:	Gabriel Dutra <0xdutra at gmail.com>

Added:
  head/net/py-whois/
  head/net/py-whois/Makefile   (contents, props changed)
  head/net/py-whois/distinfo   (contents, props changed)
  head/net/py-whois/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Tue Nov  3 00:11:50 2020	(r553935)
+++ head/net/Makefile	Tue Nov  3 00:40:58 2020	(r553936)
@@ -1118,6 +1118,7 @@
     SUBDIR += py-uritools
     SUBDIR += py-urlextract
     SUBDIR += py-urllib3
+    SUBDIR += py-whois
     SUBDIR += py-wmi-query
     SUBDIR += py-wsdd
     SUBDIR += py-wsproto

Added: head/net/py-whois/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-whois/Makefile	Tue Nov  3 00:40:58 2020	(r553936)
@@ -0,0 +1,21 @@
+# Created by: Gabriel Dutra <0xdutra at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	whois
+PORTVERSION=	0.9.7
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	0xdutra at gmail.com
+COMMENT=	Python package for retrieving WHOIS information of domains
+
+LICENSE=	WTFPL
+LICENSE_FILE=	${WRKSRC}/license
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/net/py-whois/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-whois/distinfo	Tue Nov  3 00:40:58 2020	(r553936)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1604328773
+SHA256 (whois-0.9.7.tar.gz) = 1e0348c6cc763e1a7c87d32ce877e2531096928e477fdb2e100aa3783e2b4279
+SIZE (whois-0.9.7.tar.gz) = 8207

Added: head/net/py-whois/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-whois/pkg-descr	Tue Nov  3 00:40:58 2020	(r553936)
@@ -0,0 +1,14 @@
+A Python package for retrieving WHOIS information of domains.
+
+Features
+ - Python wrapper for Linux "whois" command
+ - simple interface to access parsed WHOIS data for a given domain
+ - able to extract data for all the popular TLDs (com, org, net, biz, info, pl,
+   jp, uk, nz, ...)
+ - query a WHOIS server directly instead of going through an intermediate web
+   service like many others do
+ - works with Python 2.4+ and Python 3.x
+ - all dates as datetime objects
+ - possibility to cache results
+
+WWW: https://pypi.org/project/whois/


More information about the svn-ports-head mailing list