Date: Fri, 9 Oct 2015 20:57:26 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398958 - in head/net: . py-ntplib Message-ID: <201510092057.t99KvQ4v003485@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510092057.t99KvQ4v003485>