From owner-svn-ports-head@freebsd.org Sun Jul 26 18:05:59 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 3FC619AB44F; Sun, 26 Jul 2015 18:05:59 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.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 1006D15EA; Sun, 26 Jul 2015 18:05:59 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6QI5wjp076156; Sun, 26 Jul 2015 18:05:58 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6QI5v8Q076147; Sun, 26 Jul 2015 18:05:57 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201507261805.t6QI5v8Q076147@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 26 Jul 2015 18:05:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392935 - in head/devel: . py-stdnum 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: Sun, 26 Jul 2015 18:05:59 -0000 Author: pi Date: Sun Jul 26 18:05:56 2015 New Revision: 392935 URL: https://svnweb.freebsd.org/changeset/ports/392935 Log: New port: devel/py-stdnum Python module to parse, validate and reformat standard numbers and codes. This library offers functions for parsing, validating and reformatting standard numbers and codes in various formats. WWW: https://pypi.python.org/pypi/python-stdnum/ Added: head/devel/py-stdnum/ head/devel/py-stdnum/Makefile (contents, props changed) head/devel/py-stdnum/distinfo (contents, props changed) head/devel/py-stdnum/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 26 17:12:02 2015 (r392934) +++ head/devel/Makefile Sun Jul 26 18:05:56 2015 (r392935) @@ -4196,6 +4196,7 @@ SUBDIR += py-speaklater SUBDIR += py-sqlcc SUBDIR += py-statgrab + SUBDIR += py-stdnum SUBDIR += py-stevedore SUBDIR += py-stsci.distutils SUBDIR += py-subversion Added: head/devel/py-stdnum/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stdnum/Makefile Sun Jul 26 18:05:56 2015 (r392935) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= stdnum +PORTVERSION= 1.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= python-${PORTNAME}-${PORTVERSION} + +MAINTAINER= pi@FreeBSD.org +COMMENT= Python module to handle standardized numbers and codes + +LICENSE= LGPL21 + +# Python3 ready +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-stdnum/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stdnum/distinfo Sun Jul 26 18:05:56 2015 (r392935) @@ -0,0 +1,2 @@ +SHA256 (python-stdnum-1.1.tar.gz) = 66ee880bfd60cadeca667eba6f29803b6712eb554a2d19cfb8e1ea86ce42df35 +SIZE (python-stdnum-1.1.tar.gz) = 205495 Added: head/devel/py-stdnum/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stdnum/pkg-descr Sun Jul 26 18:05:56 2015 (r392935) @@ -0,0 +1,6 @@ +Python module to parse, validate and reformat standard numbers and codes. + +This library offers functions for parsing, validating and reformatting +standard numbers and codes in various formats. + +WWW: https://pypi.python.org/pypi/python-stdnum/