Date: Wed, 30 Aug 2017 00:11:10 +0000 (UTC) From: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448946 - in head/devel: . py-flufl.i18n Message-ID: <201708300011.v7U0BAah009981@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: acm Date: Wed Aug 30 00:11:10 2017 New Revision: 448946 URL: https://svnweb.freebsd.org/changeset/ports/448946 Log: - New port : devel/py-flufl.i18n This package provides a high level, convenient API for managing internationalization translation contexts in Python application. There is a simple API for single-context applications, such as command line scripts which only need to translate into one language during the entire course of their execution. There is a more flexible, but still convenient API for multi-context applications, such as servers, which may need to switch language contexts for different tasks. WWW: https://flufli18n.readthedocs.io Added: head/devel/py-flufl.i18n/ head/devel/py-flufl.i18n/Makefile (contents, props changed) head/devel/py-flufl.i18n/distinfo (contents, props changed) head/devel/py-flufl.i18n/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Aug 30 00:10:12 2017 (r448945) +++ head/devel/Makefile Wed Aug 30 00:11:10 2017 (r448946) @@ -4379,6 +4379,7 @@ SUBDIR += py-flake8-quotes SUBDIR += py-flask-babel SUBDIR += py-flexmock + SUBDIR += py-flufl.i18n SUBDIR += py-foolscap SUBDIR += py-fortran SUBDIR += py-freebsd Added: head/devel/py-flufl.i18n/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flufl.i18n/Makefile Wed Aug 30 00:11:10 2017 (r448946) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= flufl.i18n +PORTVERSION= 2.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= acm@FreeBSD.org +COMMENT= A high level API for Python internationalization + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}atpublic>=0:devel/py-atpublic + +USES= python:3 +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/devel/py-flufl.i18n/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flufl.i18n/distinfo Wed Aug 30 00:11:10 2017 (r448946) @@ -0,0 +1,3 @@ +TIMESTAMP = 1503368093 +SHA256 (flufl.i18n-2.0.tar.gz) = 6f1050aeba079c5984e46e93938870e348311fa6f8d19c2ea84d674244863ed0 +SIZE (flufl.i18n-2.0.tar.gz) = 18660 Added: head/devel/py-flufl.i18n/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-flufl.i18n/pkg-descr Wed Aug 30 00:11:10 2017 (r448946) @@ -0,0 +1,9 @@ +This package provides a high level, convenient API for managing +internationalization translation contexts in Python application. There is a +simple API for single-context applications, such as command line scripts which +only need to translate into one language during the entire course of their +execution. There is a more flexible, but still convenient API for multi-context +applications, such as servers, which may need to switch language contexts for +different tasks. + +WWW: https://flufli18n.readthedocs.io
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708300011.v7U0BAah009981>