svn commit: r398958 - in head/net: . py-ntplib

Pawel Pekala pawel at FreeBSD.org
Fri Oct 9 20:57:28 UTC 2015


Author: pawel
Date: Fri Oct  9 20:57:26 2015
New Revision: 398958
URL: https://svnweb.freebsd.org/changeset/ports/398958

Log:
  This module offers a simple interface to query NTP
  servers from Python.
  
  It also provides utility functions to translate NTP
  fields values to text (mode, leap indicator...). Since
  it's pure Python, and only depends on core modules,
  it should work on any platform with a Python implementation.
  
  WWW: https://pypi.python.org/pypi/ntplib
  
  PR:		202525
  Submitted by:	uros at gruber.si

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

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Fri Oct  9 20:57:06 2015	(r398957)
+++ head/net/Makefile	Fri Oct  9 20:57:26 2015	(r398958)
@@ -945,6 +945,7 @@
     SUBDIR += py-netlib
     SUBDIR += py-netstring
     SUBDIR += py-novaclient
+    SUBDIR += py-ntplib
     SUBDIR += py-oauth
     SUBDIR += py-oauth2
     SUBDIR += py-paho-mqtt

Added: head/net/py-ntplib/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-ntplib/Makefile	Fri Oct  9 20:57:26 2015	(r398958)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	ntplib
+PORTVERSION=	0.3.3
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	uros at gruber.si
+COMMENT=	Python NTP library
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/net/py-ntplib/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-ntplib/distinfo	Fri Oct  9 20:57:26 2015	(r398958)
@@ -0,0 +1,2 @@
+SHA256 (ntplib-0.3.3.tar.gz) = c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede
+SIZE (ntplib-0.3.3.tar.gz) = 6808

Added: head/net/py-ntplib/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-ntplib/pkg-descr	Fri Oct  9 20:57:26 2015	(r398958)
@@ -0,0 +1,9 @@
+This module offers a simple interface to query NTP
+servers from Python.
+
+It also provides utility functions to translate NTP
+fields values to text (mode, leap indicator...). Since
+it's pure Python, and only depends on core modules, 
+it should work on any platform with a Python implementation.
+
+WWW: https://pypi.python.org/pypi/ntplib


More information about the svn-ports-all mailing list