pkgsrc-Changes archive

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

CVS commit: pkgsrc/graphics/py-graphviz



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun May 17 18:32:42 UTC 2020

Modified Files:
        pkgsrc/graphics/py-graphviz: Makefile distinfo

Log Message:
py-graphviz: updated to 0.14

Version 0.14
------------

Improve handling of escaped quotes (``\"``). Different from other layout engine
escapes sequences such as ``\l`` and ``\N`` (which are passed on as is by
default), there is no use case for backslash-escaping a literal quote character
because escaping of quotes is done by this library. Therefore, a
backslash-escaped quote (e.g. in ``label='\\"'``) is now treated the same as a
plain unescaped quote, i.e. both ``label='"'`` and ``label='\\"'`` produce
the same DOT source ``[label="\""]`` (a label that renders as a literal quote).
Before this change, use of ``'\\"'`` could break the quoting mechanism creating
invalid or unintended DOT, possibly leading to syntax errors from the rendering
process.

Add notebook section to documentation.

Add ``sphinx.ext.viewcode`` to docs (note that this currently lacks links for
methods, so that not all of the code is linked; use the source repo for reading
on).

Improve test and doc building config.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/graphics/py-graphviz/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/graphics/py-graphviz/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/graphics/py-graphviz/Makefile
diff -u pkgsrc/graphics/py-graphviz/Makefile:1.12 pkgsrc/graphics/py-graphviz/Makefile:1.13
--- pkgsrc/graphics/py-graphviz/Makefile:1.12   Fri Nov  8 09:24:05 2019
+++ pkgsrc/graphics/py-graphviz/Makefile        Sun May 17 18:32:42 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2019/11/08 09:24:05 adam Exp $
+# $NetBSD: Makefile,v 1.13 2020/05/17 18:32:42 adam Exp $
 
-DISTNAME=      graphviz-0.13.2
+DISTNAME=      graphviz-0.14
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    graphics python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=g/graphviz/}
@@ -12,14 +12,13 @@ COMMENT=    Create and render graph descrip
 LICENSE=       mit
 
 DEPENDS+=      graphviz-[0-9]*:../../graphics/graphviz
-TEST_DEPENDS+= ${PYPKGPREFIX}-test>=3.4:../../devel/py-test
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-mock>=1.8:../../devel/py-test-mock
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
 
 USE_LANGUAGES= # none
 
-do-test:
-       cd ${WRKSRC}/tests && pytest-${PYVERSSUFFIX}
+PYSETUPTESTTARGET=     pytest
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/graphics/py-graphviz/distinfo
diff -u pkgsrc/graphics/py-graphviz/distinfo:1.11 pkgsrc/graphics/py-graphviz/distinfo:1.12
--- pkgsrc/graphics/py-graphviz/distinfo:1.11   Fri Nov  8 09:24:05 2019
+++ pkgsrc/graphics/py-graphviz/distinfo        Sun May 17 18:32:42 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.11 2019/11/08 09:24:05 adam Exp $
+$NetBSD: distinfo,v 1.12 2020/05/17 18:32:42 adam Exp $
 
-SHA1 (graphviz-0.13.2.zip) = 49ac902dbf6600714d79ea0d79bf24e2f9030c5b
-RMD160 (graphviz-0.13.2.zip) = 42cb0e19798cb408bafb1e27e43224f6440f9571
-SHA512 (graphviz-0.13.2.zip) = 81aa8a4afa6a1895b7f933a4a591fedb58f364cc77b0cd65707ec980efb7fadc8f4b8aeab2eba53d64e21209b236d5bae4d8b38f5256cfb26276c6e56145ee94
-Size (graphviz-0.13.2.zip) = 181657 bytes
+SHA1 (graphviz-0.14.zip) = b5d85a0919d2e5d5f5d160c98b1ff034bc1aef97
+RMD160 (graphviz-0.14.zip) = e4f40d7fec7276fc8ab2af44885637c79a8ee152
+SHA512 (graphviz-0.14.zip) = 4f1b50e1756e1c0c5c9c80d2e5c4a900bce7b6c825fe541b19d4fc19f3cab3e2921bc0f4398b3c0ed2f1326b4c4b65f178b6bf0aadc6086dccb780cf969fbf32
+Size (graphviz-0.14.zip) = 183001 bytes



Home | Main Index | Thread Index | Old Index