From owner-svn-ports-all@FreeBSD.ORG Sun Jun 14 09:19:58 2015 Return-Path: Delivered-To: svn-ports-all@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1564F9E6; Sun, 14 Jun 2015 09:19:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 DDA0B368; Sun, 14 Jun 2015 09:19:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5E9Jv1u076233; Sun, 14 Jun 2015 09:19:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5E9Jucq076229; Sun, 14 Jun 2015 09:19:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201506140919.t5E9Jucq076229@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 14 Jun 2015 09:19:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389618 - in head/devel: . py-pyrfc3339 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 09:19:58 -0000 Author: sunpoet Date: Sun Jun 14 09:19:56 2015 New Revision: 389618 URL: https://svnweb.freebsd.org/changeset/ports/389618 Log: - Add py-pyrfc3339 0.2 pyRFC3339 parses and generates RFC 3339-compliant timestamps using Python datetime.datetime objects. WWW: https://pypi.python.org/pypi/pyRFC3339 WWW: https://github.com/kurtraschke/pyRFC3339 Added: head/devel/py-pyrfc3339/ head/devel/py-pyrfc3339/Makefile (contents, props changed) head/devel/py-pyrfc3339/distinfo (contents, props changed) head/devel/py-pyrfc3339/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 14 09:18:46 2015 (r389617) +++ head/devel/Makefile Sun Jun 14 09:19:56 2015 (r389618) @@ -4045,6 +4045,7 @@ SUBDIR += py-pympler SUBDIR += py-pymtbl SUBDIR += py-pyparsing15 + SUBDIR += py-pyrfc3339 SUBDIR += py-pyro SUBDIR += py-pyshapelib SUBDIR += py-pytemplate Added: head/devel/py-pyrfc3339/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyrfc3339/Makefile Sun Jun 14 09:19:56 2015 (r389618) @@ -0,0 +1,23 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= pyrfc3339 +PORTVERSION= 0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= pyRFC3339-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Generate and parse RFC 3339 timestamps + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=0:${PORTSDIR}/devel/py-pytz +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:${PORTSDIR}/devel/py-nose + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python + +.include Added: head/devel/py-pyrfc3339/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyrfc3339/distinfo Sun Jun 14 09:19:56 2015 (r389618) @@ -0,0 +1,2 @@ +SHA256 (pyRFC3339-0.2.tar.gz) = a504ff6bcb363fa402d393f65fe5f542475e54fbfc55817b80892ba93b22e6de +SIZE (pyRFC3339-0.2.tar.gz) = 5068 Added: head/devel/py-pyrfc3339/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyrfc3339/pkg-descr Sun Jun 14 09:19:56 2015 (r389618) @@ -0,0 +1,5 @@ +pyRFC3339 parses and generates RFC 3339-compliant timestamps using Python +datetime.datetime objects. + +WWW: https://pypi.python.org/pypi/pyRFC3339 +WWW: https://github.com/kurtraschke/pyRFC3339