Date: Tue, 27 Nov 2018 02:45:40 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485980 - in head/devel: . py-num2words Message-ID: <201811270245.wAR2jeCw003126@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Tue Nov 27 02:45:40 2018 New Revision: 485980 URL: https://svnweb.freebsd.org/changeset/ports/485980 Log: num2words is a library that converts numbers like 42 to words like forty-two. It supports multiple languages and can even generate ordinal numbers like forty-second (although this last feature is a bit buggy for some languages at the moment) WWW: https://github.com/savoirfairelinux/num2words PR: 232700 Submitted by: jonaspalm@posteo.de Added: head/devel/py-num2words/ head/devel/py-num2words/Makefile (contents, props changed) head/devel/py-num2words/distinfo (contents, props changed) head/devel/py-num2words/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Nov 27 02:42:24 2018 (r485979) +++ head/devel/Makefile Tue Nov 27 02:45:40 2018 (r485980) @@ -4802,6 +4802,7 @@ SUBDIR += py-notifier SUBDIR += py-notify SUBDIR += py-notify2 + SUBDIR += py-num2words SUBDIR += py-numba SUBDIR += py-ocempgui SUBDIR += py-odfpy Added: head/devel/py-num2words/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-num2words/Makefile Tue Nov 27 02:45:40 2018 (r485980) @@ -0,0 +1,18 @@ +# Created by: Jonas Palm <jonaspalm@posteo.de> +# $FreeBSD$ + +PORTNAME= num2words +PORTVERSION= 0.5.8 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jonaspalm@posteo.de +COMMENT= Library to convert numbers to words in multiple languages + +LICENSE= LGPL21 + +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> Added: head/devel/py-num2words/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-num2words/distinfo Tue Nov 27 02:45:40 2018 (r485980) @@ -0,0 +1,3 @@ +TIMESTAMP = 1543286159 +SHA256 (num2words-0.5.8.tar.gz) = 60ba89db4913820885e6974cf329d9a02846f3b612c383fbbb2b66997cc1f6e1 +SIZE (num2words-0.5.8.tar.gz) = 111500 Added: head/devel/py-num2words/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-num2words/pkg-descr Tue Nov 27 02:45:40 2018 (r485980) @@ -0,0 +1,6 @@ +num2words is a library that converts numbers like 42 to words like +forty-two. It supports multiple languages and can even generate ordinal +numbers like forty-second (although this last feature is a bit buggy +for some languages at the moment) + +WWW: https://github.com/savoirfairelinux/num2words
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811270245.wAR2jeCw003126>