Date: Sat, 26 Jan 2019 11:02:05 +0000 (UTC) From: Ruslan Makhmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491265 - in head/textproc: . py-precis_i18n Message-ID: <201901261102.x0QB25im067496@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rm Date: Sat Jan 26 11:02:05 2019 New Revision: 491265 URL: https://svnweb.freebsd.org/changeset/ports/491265 Log: The PRECIS framework makes internationalized user names and passwords safer for use by applications. PRECIS profiles transform unicode strings into a canonical form, suitable for comparison. WWW: https://github.com/byllyfish/precis_i18n PR: 233824 Submitted by: Goran Mekić <meka@tilda.center> Added: head/textproc/py-precis_i18n/ head/textproc/py-precis_i18n/Makefile (contents, props changed) head/textproc/py-precis_i18n/distinfo (contents, props changed) head/textproc/py-precis_i18n/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Jan 26 10:54:50 2019 (r491264) +++ head/textproc/Makefile Sat Jan 26 11:02:05 2019 (r491265) @@ -1355,6 +1355,7 @@ SUBDIR += py-pdfminer.six SUBDIR += py-pdfminer3k SUBDIR += py-pdfrw + SUBDIR += py-precis_i18n SUBDIR += py-pss SUBDIR += py-pyPEG2 SUBDIR += py-pyahocorasick Added: head/textproc/py-precis_i18n/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-precis_i18n/Makefile Sat Jan 26 11:02:05 2019 (r491265) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= precis_i18n +DISTVERSION= 1.0.0 +CATEGORIES= textproc devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= meka@tilda.center +COMMENT= Internationalized usernames and passwords + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python:3.3+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include <bsd.port.mk> Added: head/textproc/py-precis_i18n/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-precis_i18n/distinfo Sat Jan 26 11:02:05 2019 (r491265) @@ -0,0 +1,3 @@ +TIMESTAMP = 1542091331 +SHA256 (precis_i18n-1.0.0.tar.gz) = 227ac196b8a31b1209030bfbe90616dd375be946e0a9403349dd45851adf503e +SIZE (precis_i18n-1.0.0.tar.gz) = 61251 Added: head/textproc/py-precis_i18n/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-precis_i18n/pkg-descr Sat Jan 26 11:02:05 2019 (r491265) @@ -0,0 +1,5 @@ +The PRECIS framework makes internationalized user names and passwords safer +for use by applications. PRECIS profiles transform unicode strings into a +canonical form, suitable for comparison. + +WWW: https://github.com/byllyfish/precis_i18n
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901261102.x0QB25im067496>