pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-flufl.i18n devel/py-flufl.i18n: ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7a664ec087e9
branches:  trunk
changeset: 308215:7a664ec087e9
user:      fhajny <fhajny%pkgsrc.org@localhost>
date:      Fri May 18 13:07:38 2018 +0000

description:
devel/py-flufl.i18n: Update to 2.0.1.

2.0.1 (2017-11-14)
- Restore Python 3.4 support.

2.0 (2017-07-24)
- Add _.defer_translation() context manager for marking, but not
  translating a string at the point of use.
- Drop Python 2, 3.3, and 3.4 compatibility; add Python 3.5 and 3.6.
- Switch to the Apache License Version 2.0
- Use flufl.testing for nose2 and flake8 plugins.

diffstat:

 devel/py-flufl.i18n/Makefile |  10 +++++++---
 devel/py-flufl.i18n/PLIST    |  18 ++++++++++++++----
 devel/py-flufl.i18n/distinfo |  10 +++++-----
 3 files changed, 26 insertions(+), 12 deletions(-)

diffs (85 lines):

diff -r c6a45946a1e4 -r 7a664ec087e9 devel/py-flufl.i18n/Makefile
--- a/devel/py-flufl.i18n/Makefile      Fri May 18 12:52:54 2018 +0000
+++ b/devel/py-flufl.i18n/Makefile      Fri May 18 13:07:38 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2017/04/25 20:19:28 fhajny Exp $
+# $NetBSD: Makefile,v 1.2 2018/05/18 13:07:38 fhajny Exp $
 
-DISTNAME=      flufl.i18n-1.1.3
+DISTNAME=      flufl.i18n-2.0.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_PYPI:=f/flufl.i18n/}
@@ -8,7 +8,11 @@
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      https://launchpad.net/flufl.i18n/
 COMMENT=       High level API for Python internationalization
-LICENSE=       gnu-lgpl-v3
+LICENSE=       apache-2.0
+
+DEPENDS+=      ${PYPKGPREFIX}-atpublic-[0-9]*:../../devel/py-atpublic
+
+PYTHON_VERSIONS_ACCEPTED=      36 35 34
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r c6a45946a1e4 -r 7a664ec087e9 devel/py-flufl.i18n/PLIST
--- a/devel/py-flufl.i18n/PLIST Fri May 18 12:52:54 2018 +0000
+++ b/devel/py-flufl.i18n/PLIST Fri May 18 13:07:38 2018 +0000
@@ -1,10 +1,11 @@
-@comment $NetBSD: PLIST,v 1.1 2017/04/25 20:19:28 fhajny Exp $
+@comment $NetBSD: PLIST,v 1.2 2018/05/18 13:07:38 fhajny Exp $
 ${PYSITELIB}/${EGG_NAME}-nspkg.pth
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
 ${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt
 ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/flufl/i18n/NEWS.rst
 ${PYSITELIB}/flufl/i18n/README.rst
@@ -41,6 +42,9 @@
 ${PYSITELIB}/flufl/i18n/testing/__init__.py
 ${PYSITELIB}/flufl/i18n/testing/__init__.pyo
 ${PYSITELIB}/flufl/i18n/testing/__init__.pyc
+${PYSITELIB}/flufl/i18n/testing/helpers.pyo
+${PYSITELIB}/flufl/i18n/testing/helpers.pyc
+${PYSITELIB}/flufl/i18n/testing/helpers.py
 ${PYSITELIB}/flufl/i18n/testing/messages/__init__.py
 ${PYSITELIB}/flufl/i18n/testing/messages/__init__.pyo
 ${PYSITELIB}/flufl/i18n/testing/messages/__init__.pyc
@@ -51,9 +55,15 @@
 ${PYSITELIB}/flufl/i18n/tests/__init__.py
 ${PYSITELIB}/flufl/i18n/tests/__init__.pyo
 ${PYSITELIB}/flufl/i18n/tests/__init__.pyc
-${PYSITELIB}/flufl/i18n/tests/test_documentation.pyo
-${PYSITELIB}/flufl/i18n/tests/test_documentation.pyc
+${PYSITELIB}/flufl/i18n/tests/test_application.pyo
+${PYSITELIB}/flufl/i18n/tests/test_application.pyc
+${PYSITELIB}/flufl/i18n/tests/test_expand.pyo
+${PYSITELIB}/flufl/i18n/tests/test_expand.pyc
+${PYSITELIB}/flufl/i18n/tests/test_substitute.pyo
+${PYSITELIB}/flufl/i18n/tests/test_substitute.pyc
 ${PYSITELIB}/flufl/i18n/tests/test_translator.pyo
 ${PYSITELIB}/flufl/i18n/tests/test_translator.pyc
-${PYSITELIB}/flufl/i18n/tests/test_documentation.py
+${PYSITELIB}/flufl/i18n/tests/test_application.py
+${PYSITELIB}/flufl/i18n/tests/test_expand.py
+${PYSITELIB}/flufl/i18n/tests/test_substitute.py
 ${PYSITELIB}/flufl/i18n/tests/test_translator.py
diff -r c6a45946a1e4 -r 7a664ec087e9 devel/py-flufl.i18n/distinfo
--- a/devel/py-flufl.i18n/distinfo      Fri May 18 12:52:54 2018 +0000
+++ b/devel/py-flufl.i18n/distinfo      Fri May 18 13:07:38 2018 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2017/04/25 20:19:28 fhajny Exp $
+$NetBSD: distinfo,v 1.2 2018/05/18 13:07:38 fhajny Exp $
 
-SHA1 (flufl.i18n-1.1.3.tar.gz) = 68b44643935ccefbeda4be86e8c0246894394888
-RMD160 (flufl.i18n-1.1.3.tar.gz) = f43cb77311c860c9d33db0bcfd73e7446780ec67
-SHA512 (flufl.i18n-1.1.3.tar.gz) = f141d87eb8dabae6d707f242866b543aa3f7d11af32e6e6831ae4004a77ef99b4acd8bc780d5e5ec9bb3d7fe05dc9ac7a735a05055dd31d70e3a0191cb247dff
-Size (flufl.i18n-1.1.3.tar.gz) = 21881 bytes
+SHA1 (flufl.i18n-2.0.1.tar.gz) = 59903b552bca68419e6cbfdfbeb0e4402a531c61
+RMD160 (flufl.i18n-2.0.1.tar.gz) = c0b340dd05fb5c840d0f9b800940f57cf4f9b6fc
+SHA512 (flufl.i18n-2.0.1.tar.gz) = 372a27c81c0c58994b7b4b9ddb177f6acd3106536391c82c61cf1ba1b8b2e920be559720d98046ee9aa977a9119f231f7bbe71535cfb538d8563fff1da737ee1
+Size (flufl.i18n-2.0.1.tar.gz) = 18572 bytes



Home | Main Index | Thread Index | Old Index