pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/misc/py-tqdm
Module Name: pkgsrc
Committed By: adam
Date: Mon Jan 28 14:13:50 UTC 2019
Modified Files:
pkgsrc/misc/py-tqdm: ALTERNATIVES Makefile PLIST distinfo
Log Message:
py-tqdm: updated to 4.30.0
tqdm v4.30.0 stable
avoid moving when leave=False
generalise nested bar tests
add display() helper function
add and expose format_dict
- allow arbitrary keyword arguments for format_meter
- document format_dict overriding
- add tests for overriding
- add and tidy developer documentation
fix py3 CLI pipe decoding error
framework overhaul (developing, testing, Travis CI updates)
tidy code and style (flake8)
setup.py refactor
- setup.py make
. add support for multi-line commands
. tidy and efficiency
- replace setup.py's built-in make -> py-make>=0.1.9
- add requirements-dev.txt and extras_require[dev]
add, update and tidy tests
include interactive Jupyter demonstration
update documentation
- add FAQ about py2 pipes
- add badges
- update examples
- update authors
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/misc/py-tqdm/ALTERNATIVES \
pkgsrc/misc/py-tqdm/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/misc/py-tqdm/PLIST \
pkgsrc/misc/py-tqdm/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/misc/py-tqdm/ALTERNATIVES
diff -u pkgsrc/misc/py-tqdm/ALTERNATIVES:1.2 pkgsrc/misc/py-tqdm/ALTERNATIVES:1.3
--- pkgsrc/misc/py-tqdm/ALTERNATIVES:1.2 Sat Dec 22 17:24:20 2018
+++ pkgsrc/misc/py-tqdm/ALTERNATIVES Mon Jan 28 14:13:50 2019
@@ -1 +1,2 @@
-bin/tqdm @PREFIX@/bin/tqdm@PYVERSSUFFIX@
+bin/tqdm @PREFIX@/bin/tqdm-@PYVERSSUFFIX@
+man/man1/tqdm.1 @PREFIX@/man/man1/tqdm-@PYVERSSUFFIX@.1
Index: pkgsrc/misc/py-tqdm/Makefile
diff -u pkgsrc/misc/py-tqdm/Makefile:1.2 pkgsrc/misc/py-tqdm/Makefile:1.3
--- pkgsrc/misc/py-tqdm/Makefile:1.2 Sat Dec 22 17:24:20 2018
+++ pkgsrc/misc/py-tqdm/Makefile Mon Jan 28 14:13:50 2019
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2018/12/22 17:24:20 taca Exp $
+# $NetBSD: Makefile,v 1.3 2019/01/28 14:13:50 adam Exp $
-DISTNAME= tqdm-4.23.3
+DISTNAME= tqdm-4.30.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= misc python
MASTER_SITES= ${MASTER_SITE_PYPI:=t/tqdm/}
@@ -11,21 +10,22 @@ HOMEPAGE= https://github.com/tqdm/tqdm
COMMENT= Fast, extensible progress bar for Python
LICENSE= mit
-BUILD_DEPENDS+= ${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage
-BUILD_DEPENDS+= ${PYPKGPREFIX}-flake8-[0-9]*:../../devel/py-flake8
-BUILD_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
-BUILD_DEPENDS+= ${PYPKGPREFIX}-mccabe-[0-9]*:../../devel/py-mccabe
+TEST_DEPENDS+= ${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage
+TEST_DEPENDS+= ${PYPKGPREFIX}-flake8-[0-9]*:../../devel/py-flake8
+TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
USE_LANGUAGES= # none
# for UTF-8 in README.md
-ALL_ENV+= LC_CTYPE=en_US.UTF-8
-ALL_ENV+= LC_ALL=en_US.UTF-8
+#ALL_ENV+= LC_CTYPE=en_US.UTF-8
+#ALL_ENV+= LC_ALL=en_US.UTF-8
-.include "../../lang/python/egg.mk"
+INSTALLATION_DIRS+= ${PKGMANDIR}/man1
post-install:
- ${MV} ${DESTDIR}${PREFIX}/bin/tqdm \
- ${DESTDIR}${PREFIX}/bin/tqdm${PYVERSSUFFIX}
+ cd ${DESTDIR}${PREFIX} && \
+ ${MV} bin/tqdm bin/tqdm-${PYVERSSUFFIX} && \
+ ${MV} ${PYSITELIB}/tqdm/tqdm.1 ${PKGMANDIR}/man1/tqdm-${PYVERSSUFFIX}.1 || ${TRUE}
+.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/misc/py-tqdm/PLIST
diff -u pkgsrc/misc/py-tqdm/PLIST:1.1 pkgsrc/misc/py-tqdm/PLIST:1.2
--- pkgsrc/misc/py-tqdm/PLIST:1.1 Mon May 21 23:45:59 2018
+++ pkgsrc/misc/py-tqdm/PLIST Mon Jan 28 14:13:50 2019
@@ -1,9 +1,10 @@
-@comment $NetBSD: PLIST,v 1.1 2018/05/21 23:45:59 minskim Exp $
-bin/tqdm${PYVERSSUFFIX}
+@comment $NetBSD: PLIST,v 1.2 2019/01/28 14:13:50 adam Exp $
+bin/tqdm-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/tqdm/__init__.py
${PYSITELIB}/tqdm/__init__.pyc
@@ -35,4 +36,10 @@ ${PYSITELIB}/tqdm/_utils.pyo
${PYSITELIB}/tqdm/_version.py
${PYSITELIB}/tqdm/_version.pyc
${PYSITELIB}/tqdm/_version.pyo
-man/man1/tqdm.1
+${PYSITELIB}/tqdm/auto/__init__.py
+${PYSITELIB}/tqdm/auto/__init__.pyc
+${PYSITELIB}/tqdm/auto/__init__.pyo
+${PYSITELIB}/tqdm/autonotebook/__init__.py
+${PYSITELIB}/tqdm/autonotebook/__init__.pyc
+${PYSITELIB}/tqdm/autonotebook/__init__.pyo
+man/man1/tqdm-${PYVERSSUFFIX}.1
Index: pkgsrc/misc/py-tqdm/distinfo
diff -u pkgsrc/misc/py-tqdm/distinfo:1.1 pkgsrc/misc/py-tqdm/distinfo:1.2
--- pkgsrc/misc/py-tqdm/distinfo:1.1 Mon May 21 23:45:59 2018
+++ pkgsrc/misc/py-tqdm/distinfo Mon Jan 28 14:13:50 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2018/05/21 23:45:59 minskim Exp $
+$NetBSD: distinfo,v 1.2 2019/01/28 14:13:50 adam Exp $
-SHA1 (tqdm-4.23.3.tar.gz) = 29ca054d5dd327fca24f557c7236c94fe72ad391
-RMD160 (tqdm-4.23.3.tar.gz) = 545355150050b315462fccf9c41373c2b2664969
-SHA512 (tqdm-4.23.3.tar.gz) = 8cb5dab262d5f5569fe307553b339f1b6d5ce61dd30cfbc1f8d72177773b80d9a10a48004a62507f9369a7eae8330ed83afbc2d9a12def9f8601d626a806bdaf
-Size (tqdm-4.23.3.tar.gz) = 99299 bytes
+SHA1 (tqdm-4.30.0.tar.gz) = 6fc043eac1b0f3e664af2e821f2dca9b9b6b6186
+RMD160 (tqdm-4.30.0.tar.gz) = 424c0cabb4ce9cf20fbd487b2658e019163f7138
+SHA512 (tqdm-4.30.0.tar.gz) = 0ab0cba796d449d6a4a8237d52516d3d35bdc7c249c544c79bb11b2b29da5007861946866cf540a507e319eea715a5549429394dd98608ac2b36312ed48b0266
+Size (tqdm-4.30.0.tar.gz) = 120513 bytes
Home |
Main Index |
Thread Index |
Old Index