pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel py-clint: added version 0.5.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f6e471e87d94
branches:  trunk
changeset: 372808:f6e471e87d94
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Dec 18 08:48:26 2017 +0000

description:
py-clint: added version 0.5.1

Clint is awesome. Crazy awesome. It supports colors, but detects if the session
is a TTY, so doesn't render the colors if you're piping stuff around.
Automagically.

Current Features:
* Little Documentation (bear with me for now)
* CLI Colors and Indents
* Extremely Simple + Powerful Column Printer
* Iterator-based Progress Bar
* Implicit Argument Handling
* Simple Support for Incoming Unix Pipes
* Application Directory management

diffstat:

 devel/Makefile                    |   3 +-
 devel/py-buildbot-worker/Makefile |  15 +++++--
 devel/py-buildbot-worker/PLIST    |   6 +-
 devel/py-buildbot-worker/distinfo |  10 ++--
 devel/py-buildbot/Makefile        |  25 ++++++------
 devel/py-buildbot/distinfo        |  10 ++--
 devel/py-clint/DESCR              |  12 ++++++
 devel/py-clint/Makefile           |  18 +++++++++
 devel/py-clint/PLIST              |  76 +++++++++++++++++++++++++++++++++++++++
 devel/py-clint/distinfo           |   6 +++
 devel/py-doctor/Makefile          |   9 ++--
 devel/py-doctor/distinfo          |  10 ++--
 devel/py-stevedore/Makefile       |  14 +++++--
 devel/py-stevedore/distinfo       |  10 ++--
 devel/py-testtools/Makefile       |   4 +-
 devel/scmcvs/distinfo             |   4 +-
 devel/scmcvs/patches/patch-al     |  39 ++++++++++++++++++-
 17 files changed, 216 insertions(+), 55 deletions(-)

diffs (truncated from 436 to 300 lines):

diff -r 4bf2721d02fa -r f6e471e87d94 devel/Makefile
--- a/devel/Makefile    Mon Dec 18 07:58:25 2017 +0000
+++ b/devel/Makefile    Mon Dec 18 08:48:26 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2579 2017/12/14 21:07:14 fhajny Exp $
+# $NetBSD: Makefile,v 1.2580 2017/12/18 08:48:26 adam Exp $
 #
 
 COMMENT=       Development utilities
@@ -1873,6 +1873,7 @@
 SUBDIR+=       py-click-log
 SUBDIR+=       py-click-threading
 SUBDIR+=       py-clickclick
+SUBDIR+=       py-clint
 SUBDIR+=       py-codestyle
 SUBDIR+=       py-compizconfig
 SUBDIR+=       py-configargparse
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-buildbot-worker/Makefile
--- a/devel/py-buildbot-worker/Makefile Mon Dec 18 07:58:25 2017 +0000
+++ b/devel/py-buildbot-worker/Makefile Mon Dec 18 08:48:26 2017 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2017/10/07 20:45:31 joerg Exp $
+# $NetBSD: Makefile,v 1.3 2017/12/18 08:48:26 adam Exp $
 
-DISTNAME=      buildbot-worker-0.9.11
+DISTNAME=      buildbot-worker-0.9.12
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    devel net python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=b/buildbot-worker/}
 
@@ -12,7 +11,15 @@
 LICENSE=       gnu-gpl-v2
 
 DEPENDS+=      ${PYPKGPREFIX}-future-[0-9]*:../../devel/py-future
-DEPENDS+=      ${PYPKGPREFIX}-twisted>=14.0.1:../../net/py-twisted
+DEPENDS+=      ${PYPKGPREFIX}-twisted>=17.9.0:../../net/py-twisted
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
+
+USE_LANGUAGES= # none
+
+post-install:
+       cd ${DESTDIR}${PREFIX}/bin && \
+       ${MV} buildbot_worker buildbot_worker${PYVERSSUFFIX} && \
+       ${MV} buildbot_worker_windows_service buildbot_worker_windows_service${PYVERSSUFFIX} || ${TRUE}
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-buildbot-worker/PLIST
--- a/devel/py-buildbot-worker/PLIST    Mon Dec 18 07:58:25 2017 +0000
+++ b/devel/py-buildbot-worker/PLIST    Mon Dec 18 08:48:26 2017 +0000
@@ -1,6 +1,6 @@
-@comment $NetBSD: PLIST,v 1.1 2017/09/29 21:38:35 joerg Exp $
-bin/buildbot-worker
-bin/buildbot_worker_windows_service
+@comment $NetBSD: PLIST,v 1.2 2017/12/18 08:48:26 adam Exp $
+bin/buildbot-worker${PYVERSSUFFIX}
+bin/buildbot_worker_windows_service${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-buildbot-worker/distinfo
--- a/devel/py-buildbot-worker/distinfo Mon Dec 18 07:58:25 2017 +0000
+++ b/devel/py-buildbot-worker/distinfo Mon Dec 18 08:48:26 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2017/09/29 21:38:35 joerg Exp $
+$NetBSD: distinfo,v 1.2 2017/12/18 08:48:26 adam Exp $
 
-SHA1 (buildbot-worker-0.9.11.tar.gz) = 0145dc70c9978faf54ffaf450cf91b631c86205a
-RMD160 (buildbot-worker-0.9.11.tar.gz) = c7bb6babc6de39b792790718ade00c1c6e0ccc40
-SHA512 (buildbot-worker-0.9.11.tar.gz) = c7209c3fff8c43a23de71fa61709c9f02a5bdd9c8c8980ac5d205f720abdaa9bdb78d0d4e40fe9f915c8d5cf253b9e3c63401712ee121ac085909b0244d82897
-Size (buildbot-worker-0.9.11.tar.gz) = 100746 bytes
+SHA1 (buildbot-worker-0.9.12.tar.gz) = 6bf97039bf8c76a6d11df24fb1d8362e89b4b0cd
+RMD160 (buildbot-worker-0.9.12.tar.gz) = 599fe1cb2d53e46da99c29751b492c8662671ce7
+SHA512 (buildbot-worker-0.9.12.tar.gz) = c2e86bd8818eddc2849626a0c7642169bc91fa2cc1d531977736e53c4ad3c87c3f0cb17d7b9acd137e783ae822f558a19f4668e3cd37e90a8435157485bd1d57
+Size (buildbot-worker-0.9.12.tar.gz) = 101655 bytes
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-buildbot/Makefile
--- a/devel/py-buildbot/Makefile        Mon Dec 18 07:58:25 2017 +0000
+++ b/devel/py-buildbot/Makefile        Mon Dec 18 08:48:26 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2017/09/30 07:22:37 wiz Exp $
+# $NetBSD: Makefile,v 1.15 2017/12/18 08:48:26 adam Exp $
 
-DISTNAME=      buildbot-0.9.11
+DISTNAME=      buildbot-0.9.12
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel net python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=b/buildbot/}
@@ -10,26 +10,27 @@
 COMMENT=       Continuous integration system
 LICENSE=       gnu-gpl-v2
 
+DEPENDS+=      ${PYPKGPREFIX}-autobahn>=0.16.0:../../www/py-autobahn
+DEPENDS+=      ${PYPKGPREFIX}-JWT-[0-9]*:../../textproc/py-JWT
+DEPENDS+=      ${PYPKGPREFIX}-dateutil>=1.5:../../time/py-dateutil
+DEPENDS+=      ${PYPKGPREFIX}-future-[0-9]*:../../devel/py-future
+DEPENDS+=      ${PYPKGPREFIX}-jinja2>=2.1:../../textproc/py-jinja2
 DEPENDS+=      ${PYPKGPREFIX}-sqlalchemy>=0.8.0:../../databases/py-sqlalchemy
 DEPENDS+=      ${PYPKGPREFIX}-sqlalchemy-migrate>=0.9:../../databases/py-sqlalchemy-migrate
-DEPENDS+=      ${PYPKGPREFIX}-future-[0-9]*:../../devel/py-future
+DEPENDS+=      ${PYPKGPREFIX}-twisted>=14.0.1:../../net/py-twisted
 DEPENDS+=      ${PYPKGPREFIX}-txaio>=2.2.2:../../devel/py-txaio
-DEPENDS+=      ${PYPKGPREFIX}-twisted>=14.0.1:../../net/py-twisted
-DEPENDS+=      ${PYPKGPREFIX}-dateutil>=1.5:../../time/py-dateutil
-DEPENDS+=      ${PYPKGPREFIX}-jinja2>=2.1:../../textproc/py-jinja2
-DEPENDS+=      ${PYPKGPREFIX}-JWT-[0-9]*:../../textproc/py-JWT
-DEPENDS+=      ${PYPKGPREFIX}-autobahn>=0.16.0:../../www/py-autobahn
 
 # Self-test
+#BUILD_DEPENDS+=       ${PYPKGPREFIX}-buildbot-worker-[0-9]*:../../devel/py-buildbot-worker
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-lz4-[0-9]*:../../archivers/py-lz4
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-buildbot-worker-[0-9]*:../../devel/py-buildbot-worker
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-mock>=2.0.0:../../devel/py-mock
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-moto-[0-9]*:../../net/py-moto
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-pathlib2-[0-9]*:../../devel/py-pathlib2
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-ramlfications-[0-9]*:../../textproc/py-ramlfications
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-setuptools_trial-[0-9]*:../../devel/py-setuptools_trial
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-ramlfications-[0-9]*:../../textproc/py-ramlfications
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-treq-[0-9]*:../../devel/py-treq
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-txgithub-[0-9]*:../../devel/py-txgithub
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-txrequests-[0-9]*:../../devel/py-txrequests
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-pathlib2-[0-9]*:../../devel/py-pathlib2
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-moto-[0-9]*:../../net/py-moto
 
 .include "../../lang/python/egg.mk"
 
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-buildbot/distinfo
--- a/devel/py-buildbot/distinfo        Mon Dec 18 07:58:25 2017 +0000
+++ b/devel/py-buildbot/distinfo        Mon Dec 18 08:48:26 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2017/09/29 21:46:04 joerg Exp $
+$NetBSD: distinfo,v 1.5 2017/12/18 08:48:26 adam Exp $
 
-SHA1 (buildbot-0.9.11.tar.gz) = ddf563ced292fb2780c017256fd18eb75b9b6b99
-RMD160 (buildbot-0.9.11.tar.gz) = b76d85b38087ad1b340a0cc95da75d79f157dfcb
-SHA512 (buildbot-0.9.11.tar.gz) = c68a657213b0f878d8c2b4e6ebe18cfc9b3e19a4eecaf085fd3e5631bbb78dc9bd14e6b3d4b576e78eb1631329c86331371200a350d33696204fb76e7beae81c
-Size (buildbot-0.9.11.tar.gz) = 3096455 bytes
+SHA1 (buildbot-0.9.12.tar.gz) = 2458bc5106c27cd9de9e2a0232fd6a956d64092a
+RMD160 (buildbot-0.9.12.tar.gz) = 2c4b42a1aec164745a0816edb68ea7255a378cc7
+SHA512 (buildbot-0.9.12.tar.gz) = 62459918267297b31b2a6416f72794c7a4ebdcb60de04ece1681f6b8be9debf161716cc70ad843fd468b23e02c521c0a0783a5a1e119d75648e107691d6b908d
+Size (buildbot-0.9.12.tar.gz) = 3057832 bytes
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-clint/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-clint/DESCR      Mon Dec 18 08:48:26 2017 +0000
@@ -0,0 +1,12 @@
+Clint is awesome. Crazy awesome. It supports colors, but detects if the session
+is a TTY, so doesn't render the colors if you're piping stuff around.
+Automagically.
+
+Current Features:
+* Little Documentation (bear with me for now)
+* CLI Colors and Indents
+* Extremely Simple + Powerful Column Printer
+* Iterator-based Progress Bar
+* Implicit Argument Handling
+* Simple Support for Incoming Unix Pipes
+* Application Directory management
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-clint/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-clint/Makefile   Mon Dec 18 08:48:26 2017 +0000
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2017/12/18 08:48:26 adam Exp $
+
+DISTNAME=      clint-0.5.1
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=    devel python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=c/clint/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/kennethreitz/clint
+COMMENT=       Python Command-line Application Tools
+LICENSE=       isc
+
+DEPENDS+=      ${PYPKGPREFIX}-args-[0-9]*:../../devel/py-args
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-clint/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-clint/PLIST      Mon Dec 18 08:48:26 2017 +0000
@@ -0,0 +1,76 @@
+@comment $NetBSD: PLIST,v 1.1 2017/12/18 08:48:26 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/pbr.json
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/clint/__init__.py
+${PYSITELIB}/clint/__init__.pyc
+${PYSITELIB}/clint/__init__.pyo
+${PYSITELIB}/clint/arguments.py
+${PYSITELIB}/clint/arguments.pyc
+${PYSITELIB}/clint/arguments.pyo
+${PYSITELIB}/clint/eng.py
+${PYSITELIB}/clint/eng.pyc
+${PYSITELIB}/clint/eng.pyo
+${PYSITELIB}/clint/packages/__init__.py
+${PYSITELIB}/clint/packages/__init__.pyc
+${PYSITELIB}/clint/packages/__init__.pyo
+${PYSITELIB}/clint/packages/appdirs.py
+${PYSITELIB}/clint/packages/appdirs.pyc
+${PYSITELIB}/clint/packages/appdirs.pyo
+${PYSITELIB}/clint/packages/colorama/__init__.py
+${PYSITELIB}/clint/packages/colorama/__init__.pyc
+${PYSITELIB}/clint/packages/colorama/__init__.pyo
+${PYSITELIB}/clint/packages/colorama/ansi.py
+${PYSITELIB}/clint/packages/colorama/ansi.pyc
+${PYSITELIB}/clint/packages/colorama/ansi.pyo
+${PYSITELIB}/clint/packages/colorama/ansitowin32.py
+${PYSITELIB}/clint/packages/colorama/ansitowin32.pyc
+${PYSITELIB}/clint/packages/colorama/ansitowin32.pyo
+${PYSITELIB}/clint/packages/colorama/initialise.py
+${PYSITELIB}/clint/packages/colorama/initialise.pyc
+${PYSITELIB}/clint/packages/colorama/initialise.pyo
+${PYSITELIB}/clint/packages/colorama/win32.py
+${PYSITELIB}/clint/packages/colorama/win32.pyc
+${PYSITELIB}/clint/packages/colorama/win32.pyo
+${PYSITELIB}/clint/packages/colorama/winterm.py
+${PYSITELIB}/clint/packages/colorama/winterm.pyc
+${PYSITELIB}/clint/packages/colorama/winterm.pyo
+${PYSITELIB}/clint/packages/ordereddict.py
+${PYSITELIB}/clint/packages/ordereddict.pyc
+${PYSITELIB}/clint/packages/ordereddict.pyo
+${PYSITELIB}/clint/pipes.py
+${PYSITELIB}/clint/pipes.pyc
+${PYSITELIB}/clint/pipes.pyo
+${PYSITELIB}/clint/resources.py
+${PYSITELIB}/clint/resources.pyc
+${PYSITELIB}/clint/resources.pyo
+${PYSITELIB}/clint/textui/__init__.py
+${PYSITELIB}/clint/textui/__init__.pyc
+${PYSITELIB}/clint/textui/__init__.pyo
+${PYSITELIB}/clint/textui/colored.py
+${PYSITELIB}/clint/textui/colored.pyc
+${PYSITELIB}/clint/textui/colored.pyo
+${PYSITELIB}/clint/textui/cols.py
+${PYSITELIB}/clint/textui/cols.pyc
+${PYSITELIB}/clint/textui/cols.pyo
+${PYSITELIB}/clint/textui/core.py
+${PYSITELIB}/clint/textui/core.pyc
+${PYSITELIB}/clint/textui/core.pyo
+${PYSITELIB}/clint/textui/formatters.py
+${PYSITELIB}/clint/textui/formatters.pyc
+${PYSITELIB}/clint/textui/formatters.pyo
+${PYSITELIB}/clint/textui/progress.py
+${PYSITELIB}/clint/textui/progress.pyc
+${PYSITELIB}/clint/textui/progress.pyo
+${PYSITELIB}/clint/textui/prompt.py
+${PYSITELIB}/clint/textui/prompt.pyc
+${PYSITELIB}/clint/textui/prompt.pyo
+${PYSITELIB}/clint/textui/validators.py
+${PYSITELIB}/clint/textui/validators.pyc
+${PYSITELIB}/clint/textui/validators.pyo
+${PYSITELIB}/clint/utils.py
+${PYSITELIB}/clint/utils.pyc
+${PYSITELIB}/clint/utils.pyo
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-clint/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-clint/distinfo   Mon Dec 18 08:48:26 2017 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2017/12/18 08:48:26 adam Exp $
+
+SHA1 (clint-0.5.1.tar.gz) = 0b7fce2c68da2ac1165212d8bb9a8ad453d344c0
+RMD160 (clint-0.5.1.tar.gz) = 3d7db4ed06e1374e64db44cbaa17a51b4dd9765e
+SHA512 (clint-0.5.1.tar.gz) = 4462969afcc0c6119afdd1ddae1984d06f150dd6ec660c51b42e3120196cdd694e5050b5b8575688863431e92d8ae80e46849aa5f6dc3474eb784312f3573266
+Size (clint-0.5.1.tar.gz) = 29355 bytes
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-doctor/Makefile
--- a/devel/py-doctor/Makefile  Mon Dec 18 07:58:25 2017 +0000
+++ b/devel/py-doctor/Makefile  Mon Dec 18 08:48:26 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2017/02/14 10:26:28 wiz Exp $
+# $NetBSD: Makefile,v 1.10 2017/12/18 08:48:26 adam Exp $
 
-DISTNAME=      pydoctor-0.5
+DISTNAME=      pydoctor-16.3.0
 PKGNAME=       ${DISTNAME:S/py/${PYPKGPREFIX}-/}
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pydoctor/}
@@ -10,11 +10,10 @@
 COMMENT=       API doc generator
 LICENSE=       mit
 
-DEPENDS+=      ${PYPKGPREFIX}-nevow>=0.9.18:../../www/py-nevow
+DEPENDS+=      ${PYPKGPREFIX}-epydoc-[0-9]*:../../textproc/py-epydoc
+DEPENDS+=      ${PYPKGPREFIX}-twisted-[0-9]*:../../net/py-twisted
 
 USE_LANGUAGES= # none
 
-PYTHON_VERSIONS_INCOMPATIBLE=  34 35 36 # py-xml via py-nevow
-
 .include "../../lang/python/distutils.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 4bf2721d02fa -r f6e471e87d94 devel/py-doctor/distinfo
--- a/devel/py-doctor/distinfo  Mon Dec 18 07:58:25 2017 +0000
+++ b/devel/py-doctor/distinfo  Mon Dec 18 08:48:26 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2015/11/03 03:29:07 agc Exp $



Home | Main Index | Thread Index | Old Index