From owner-svn-ports-head@freebsd.org Fri Oct 9 20:57:28 2015 Return-Path: Delivered-To: svn-ports-head@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 17CEA9D14A4; Fri, 9 Oct 2015 20:57:28 +0000 (UTC) (envelope-from pawel@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 mx1.freebsd.org (Postfix) with ESMTPS id BCF4011C9; Fri, 9 Oct 2015 20:57:27 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99KvQ4g003489; Fri, 9 Oct 2015 20:57:26 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99KvQ4v003485; Fri, 9 Oct 2015 20:57:26 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510092057.t99KvQ4v003485@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 9 Oct 2015 20:57:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398958 - in head/net: . py-ntplib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 20:57:28 -0000 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 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