Fri Aug 25 15:30:10 2023 UTC ()
py-pystache: updated to 0.6.4

v0.6.4 (2023-08-13)

Other

Merge pull request 23 from PennyDreadfulMTG/more-fixes. [Thomas David Baker]
Use the content-type for RST that pypi now wants
Use the content-type for RST that pypi now wants. [Thomas David Baker]
v0.6.3 (2023-08-13)

New

Add full sphinx apidoc build, include readme/extras. [Stephen L Arnold]
add new tox commands for 'docs' and 'docs-lint'
cleanup link errors found by docs-lint
add sphinx doc build workflow, update ci workflow
remove new version var from init.py globals
Display repo state in docs build, include CHANGELOG. [Stephen L Arnold]
add sphinx_git extension to docs conf and setup deps
display branch/commit/state docs were built from
include CHANGELOG (but not HISTORY) in docs build/toc
Convert readme.md to readme.rst, move extra docs. [Stephen L Arnold]
Fixes

Fix included filename and link cleanup. [Stephen L Arnold]
Remove more py2 cruft from doctesting (py3.10 warnings) [Stephen L Arnold]
Update maintainer info and spec test cmd. [Stephen L Arnold]
update coverage value for delta/base, allow digits only
Use updated bandit action and workflow excludes (exclude test) [Stephen L Arnold]
also fix missing PR event check in coverage workflow
Use current org-level coverage workflow. [Stephen L Arnold]
increase fetch depth and update regex
updated action deps, relaxed run criteria
go back to "normal" tokens, remove permission hacks
still needs more job isolation => refactor for another day
Other

Merge pull request 21 from PennyDreadfulMTG/update-pypi. [Thomas David Baker]
Update a few small things before making a release for pypi
Update location of flake8 for pre-commit, official location has moved. [Thomas David Baker]
Correct small issue in README. [Thomas David Baker]
Specify passenv in a way that tox is happy with. [Thomas David Baker]
Ignore PyCharm dir. [Thomas David Baker]
Update TODO to remove some things that have been TODOne. [Thomas David Baker]
Merge pull request 20 from VCTLabs/new-docs-cleanup. [Katelyn Gigante]
New docs cleanup
Merge pull request 19 from VCTLabs/auto-docs. [Thomas David Baker]
New docs and automation, more modernization
Do pre-release (manual) updates for changes and conda recipe. [Stephen L Arnold]
create changes file: gitchangelog v0.6.0.. > CHANGELOG.rst
edit top line in CHANGELOG.rst using current date/new tag
edit conda/meta.yaml using new tag, then tag this commit
Merge pull request 18 from VCTLabs/mst-upstream. [Thomas David Baker]
Workflow and test driver fixes
Use buildbot account. [Katelyn Gigante]
Merge pull request 16 from PennyDreadfulMTG/fix-coverage. [Katelyn Gigante]
Use ACCESS_TOKEN secret rather than provided GITHUB_TOKEN
Use ACCESS_TOKEN secret rather than provided GITHUB_TOKEN. [Katelyn Gigante]
Should fix the coverage badge
v0.6.2 (2022-09-14)

New

Add full sphinx apidoc build, include readme/extras. [Stephen L Arnold]
add new tox commands for 'docs' and 'docs-lint'
cleanup link errors found by docs-lint
add sphinx doc build workflow, update ci workflow
remove new version var from __init__.py globals
Changes

Convert readme.md to readme.rst, move extra docs. [Stephen L Arnold]
Fixes

Fix included filename and link cleanup. [Stephen L Arnold]
Remove more py2 cruft from doctesting (py3.10 warnings) [Stephen L Arnold]
Update maintainer info and spec test cmd. [Stephen L Arnold]
update coverage value for delta/base, allow digits only
Use updated bandit action and workflow excludes (exclude test) [Stephen L Arnold]
also fix missing PR event check in coverage workflow
Use current org-level coverage workflow. [Stephen L Arnold]
increase fetch depth and update regex
updated action deps, relaxed run criteria
go back to "normal" tokens, remove permission hacks
still needs more job isolation => refactor for another day
Other

Use buildbot account. [Katelyn Gigante]

Use ACCESS_TOKEN secret rather than provided GITHUB_TOKEN. [Katelyn Gigante]

Should fix the coverage badge

v0.6.1 (2021-11-24)

Changes

Add shallow checkout for testing. [Stephen L Arnold]
Bump comment action to latest release, verify checkout depth. [Stephen L Arnold]
see: marocchino/sticky-pull-request-comment298 in upstream action repo
Fixes

Use workflow PR target and checkout params. [Stephen L Arnold]
Split coverage (checkout) job from PR comment job. [Stephen L Arnold]
Use correct tox env cmd for single platform/version. [Stephen L Arnold]


(adam)
diff -r1.6 -r1.7 pkgsrc/www/py-pystache/Makefile
diff -r1.2 -r1.3 pkgsrc/www/py-pystache/PLIST
diff -r1.5 -r1.6 pkgsrc/www/py-pystache/distinfo

cvs diff -r1.6 -r1.7 pkgsrc/www/py-pystache/Makefile (switch to unified diff)

--- pkgsrc/www/py-pystache/Makefile 2022/11/22 13:24:11 1.6
+++ pkgsrc/www/py-pystache/Makefile 2023/08/25 15:30:10 1.7
@@ -1,23 +1,23 @@ @@ -1,23 +1,23 @@
1# $NetBSD: Makefile,v 1.6 2022/11/22 13:24:11 adam Exp $ 1# $NetBSD: Makefile,v 1.7 2023/08/25 15:30:10 adam Exp $
2 2
3DISTNAME= pystache-0.6.0 3DISTNAME= pystache-0.6.4
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= www python 5CATEGORIES= www python
6MASTER_SITES= ${MASTER_SITE_PYPI:=p/pystache/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=p/pystache/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://github.com/defunkt/pystache 9HOMEPAGE= https://github.com/PennyDreadfulMTG/pystache
10COMMENT= Mustache for Python 10COMMENT= Mustache for Python
11LICENSE= mit 11LICENSE= mit
12 12
13USE_LANGUAGES= # none 13USE_LANGUAGES= # none
14 14
15USE_PKG_RESOURCES= yes 15USE_PKG_RESOURCES= yes
16 16
17PYTHON_VERSIONS_INCOMPATIBLE= 27 17PYTHON_VERSIONS_INCOMPATIBLE= 27
18 18
19do-test: 19do-test:
20 cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} test_pystache.py 20 cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest discover -v
21 21
22.include "../../lang/python/egg.mk" 22.include "../../lang/python/egg.mk"
23.include "../../mk/bsd.pkg.mk" 23.include "../../mk/bsd.pkg.mk"

cvs diff -r1.2 -r1.3 pkgsrc/www/py-pystache/PLIST (switch to unified diff)

--- pkgsrc/www/py-pystache/PLIST 2022/11/22 13:24:11 1.2
+++ pkgsrc/www/py-pystache/PLIST 2023/08/25 15:30:10 1.3
@@ -1,201 +1,204 @@ @@ -1,201 +1,204 @@
1@comment $NetBSD: PLIST,v 1.2 2022/11/22 13:24:11 adam Exp $ 1@comment $NetBSD: PLIST,v 1.3 2023/08/25 15:30:10 adam Exp $
2bin/pystache 2bin/pystache
3bin/pystache-test 3bin/pystache-test
4${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 4${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
5${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 5${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
6${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 6${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
7${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 7${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
8${PYSITELIB}/${EGG_INFODIR}/requires.txt 8${PYSITELIB}/${EGG_INFODIR}/requires.txt
9${PYSITELIB}/${EGG_INFODIR}/top_level.txt 9${PYSITELIB}/${EGG_INFODIR}/top_level.txt
10${PYSITELIB}/${EGG_INFODIR}/zip-safe 10${PYSITELIB}/${EGG_INFODIR}/zip-safe
11${PYSITELIB}/pystache/__init__.py 11${PYSITELIB}/pystache/__init__.py
12${PYSITELIB}/pystache/__init__.pyc 12${PYSITELIB}/pystache/__init__.pyc
13${PYSITELIB}/pystache/__init__.pyo 13${PYSITELIB}/pystache/__init__.pyo
 14${PYSITELIB}/pystache/_version.py
 15${PYSITELIB}/pystache/_version.pyc
 16${PYSITELIB}/pystache/_version.pyo
14${PYSITELIB}/pystache/commands/__init__.py 17${PYSITELIB}/pystache/commands/__init__.py
15${PYSITELIB}/pystache/commands/__init__.pyc 18${PYSITELIB}/pystache/commands/__init__.pyc
16${PYSITELIB}/pystache/commands/__init__.pyo 19${PYSITELIB}/pystache/commands/__init__.pyo
17${PYSITELIB}/pystache/commands/render.py 20${PYSITELIB}/pystache/commands/render.py
18${PYSITELIB}/pystache/commands/render.pyc 21${PYSITELIB}/pystache/commands/render.pyc
19${PYSITELIB}/pystache/commands/render.pyo 22${PYSITELIB}/pystache/commands/render.pyo
20${PYSITELIB}/pystache/commands/test.py 23${PYSITELIB}/pystache/commands/test.py
21${PYSITELIB}/pystache/commands/test.pyc 24${PYSITELIB}/pystache/commands/test.pyc
22${PYSITELIB}/pystache/commands/test.pyo 25${PYSITELIB}/pystache/commands/test.pyo
23${PYSITELIB}/pystache/common.py 26${PYSITELIB}/pystache/common.py
24${PYSITELIB}/pystache/common.pyc 27${PYSITELIB}/pystache/common.pyc
25${PYSITELIB}/pystache/common.pyo 28${PYSITELIB}/pystache/common.pyo
26${PYSITELIB}/pystache/context.py 29${PYSITELIB}/pystache/context.py
27${PYSITELIB}/pystache/context.pyc 30${PYSITELIB}/pystache/context.pyc
28${PYSITELIB}/pystache/context.pyo 31${PYSITELIB}/pystache/context.pyo
29${PYSITELIB}/pystache/defaults.py 32${PYSITELIB}/pystache/defaults.py
30${PYSITELIB}/pystache/defaults.pyc 33${PYSITELIB}/pystache/defaults.pyc
31${PYSITELIB}/pystache/defaults.pyo 34${PYSITELIB}/pystache/defaults.pyo
32${PYSITELIB}/pystache/init.py 35${PYSITELIB}/pystache/init.py
33${PYSITELIB}/pystache/init.pyc 36${PYSITELIB}/pystache/init.pyc
34${PYSITELIB}/pystache/init.pyo 37${PYSITELIB}/pystache/init.pyo
35${PYSITELIB}/pystache/loader.py 38${PYSITELIB}/pystache/loader.py
36${PYSITELIB}/pystache/loader.pyc 39${PYSITELIB}/pystache/loader.pyc
37${PYSITELIB}/pystache/loader.pyo 40${PYSITELIB}/pystache/loader.pyo
38${PYSITELIB}/pystache/locator.py 41${PYSITELIB}/pystache/locator.py
39${PYSITELIB}/pystache/locator.pyc 42${PYSITELIB}/pystache/locator.pyc
40${PYSITELIB}/pystache/locator.pyo 43${PYSITELIB}/pystache/locator.pyo
41${PYSITELIB}/pystache/parsed.py 44${PYSITELIB}/pystache/parsed.py
42${PYSITELIB}/pystache/parsed.pyc 45${PYSITELIB}/pystache/parsed.pyc
43${PYSITELIB}/pystache/parsed.pyo 46${PYSITELIB}/pystache/parsed.pyo
44${PYSITELIB}/pystache/parser.py 47${PYSITELIB}/pystache/parser.py
45${PYSITELIB}/pystache/parser.pyc 48${PYSITELIB}/pystache/parser.pyc
46${PYSITELIB}/pystache/parser.pyo 49${PYSITELIB}/pystache/parser.pyo
47${PYSITELIB}/pystache/renderengine.py 50${PYSITELIB}/pystache/renderengine.py
48${PYSITELIB}/pystache/renderengine.pyc 51${PYSITELIB}/pystache/renderengine.pyc
49${PYSITELIB}/pystache/renderengine.pyo 52${PYSITELIB}/pystache/renderengine.pyo
50${PYSITELIB}/pystache/renderer.py 53${PYSITELIB}/pystache/renderer.py
51${PYSITELIB}/pystache/renderer.pyc 54${PYSITELIB}/pystache/renderer.pyc
52${PYSITELIB}/pystache/renderer.pyo 55${PYSITELIB}/pystache/renderer.pyo
53${PYSITELIB}/pystache/specloader.py 56${PYSITELIB}/pystache/specloader.py
54${PYSITELIB}/pystache/specloader.pyc 57${PYSITELIB}/pystache/specloader.pyc
55${PYSITELIB}/pystache/specloader.pyo 58${PYSITELIB}/pystache/specloader.pyo
56${PYSITELIB}/pystache/template_spec.py 59${PYSITELIB}/pystache/template_spec.py
57${PYSITELIB}/pystache/template_spec.pyc 60${PYSITELIB}/pystache/template_spec.pyc
58${PYSITELIB}/pystache/template_spec.pyo 61${PYSITELIB}/pystache/template_spec.pyo
59${PYSITELIB}/pystache/tests/__init__.py 62${PYSITELIB}/pystache/tests/__init__.py
60${PYSITELIB}/pystache/tests/__init__.pyc 63${PYSITELIB}/pystache/tests/__init__.pyc
61${PYSITELIB}/pystache/tests/__init__.pyo 64${PYSITELIB}/pystache/tests/__init__.pyo
62${PYSITELIB}/pystache/tests/benchmark.py 65${PYSITELIB}/pystache/tests/benchmark.py
63${PYSITELIB}/pystache/tests/benchmark.pyc 66${PYSITELIB}/pystache/tests/benchmark.pyc
64${PYSITELIB}/pystache/tests/benchmark.pyo 67${PYSITELIB}/pystache/tests/benchmark.pyo
65${PYSITELIB}/pystache/tests/common.py 68${PYSITELIB}/pystache/tests/common.py
66${PYSITELIB}/pystache/tests/common.pyc 69${PYSITELIB}/pystache/tests/common.pyc
67${PYSITELIB}/pystache/tests/common.pyo 70${PYSITELIB}/pystache/tests/common.pyo
68${PYSITELIB}/pystache/tests/data/__init__.py 71${PYSITELIB}/pystache/tests/data/__init__.py
69${PYSITELIB}/pystache/tests/data/__init__.pyc 72${PYSITELIB}/pystache/tests/data/__init__.pyc
70${PYSITELIB}/pystache/tests/data/__init__.pyo 73${PYSITELIB}/pystache/tests/data/__init__.pyo
71${PYSITELIB}/pystache/tests/data/ascii.mustache 74${PYSITELIB}/pystache/tests/data/ascii.mustache
72${PYSITELIB}/pystache/tests/data/duplicate.mustache 75${PYSITELIB}/pystache/tests/data/duplicate.mustache
73${PYSITELIB}/pystache/tests/data/locator/__init__.py 76${PYSITELIB}/pystache/tests/data/locator/__init__.py
74${PYSITELIB}/pystache/tests/data/locator/__init__.pyc 77${PYSITELIB}/pystache/tests/data/locator/__init__.pyc
75${PYSITELIB}/pystache/tests/data/locator/__init__.pyo 78${PYSITELIB}/pystache/tests/data/locator/__init__.pyo
76${PYSITELIB}/pystache/tests/data/locator/duplicate.mustache 79${PYSITELIB}/pystache/tests/data/locator/duplicate.mustache
77${PYSITELIB}/pystache/tests/data/locator/template.txt 80${PYSITELIB}/pystache/tests/data/locator/template.txt
78${PYSITELIB}/pystache/tests/data/non_ascii.mustache 81${PYSITELIB}/pystache/tests/data/non_ascii.mustache
79${PYSITELIB}/pystache/tests/data/sample_view.mustache 82${PYSITELIB}/pystache/tests/data/sample_view.mustache
80${PYSITELIB}/pystache/tests/data/say_hello.mustache 83${PYSITELIB}/pystache/tests/data/say_hello.mustache
81${PYSITELIB}/pystache/tests/data/views.py 84${PYSITELIB}/pystache/tests/data/views.py
82${PYSITELIB}/pystache/tests/data/views.pyc 85${PYSITELIB}/pystache/tests/data/views.pyc
83${PYSITELIB}/pystache/tests/data/views.pyo 86${PYSITELIB}/pystache/tests/data/views.pyo
84${PYSITELIB}/pystache/tests/doctesting.py 87${PYSITELIB}/pystache/tests/doctesting.py
85${PYSITELIB}/pystache/tests/doctesting.pyc 88${PYSITELIB}/pystache/tests/doctesting.pyc
86${PYSITELIB}/pystache/tests/doctesting.pyo 89${PYSITELIB}/pystache/tests/doctesting.pyo
87${PYSITELIB}/pystache/tests/examples/__init__.py 90${PYSITELIB}/pystache/tests/examples/__init__.py
88${PYSITELIB}/pystache/tests/examples/__init__.pyc 91${PYSITELIB}/pystache/tests/examples/__init__.pyc
89${PYSITELIB}/pystache/tests/examples/__init__.pyo 92${PYSITELIB}/pystache/tests/examples/__init__.pyo
90${PYSITELIB}/pystache/tests/examples/comments.mustache 93${PYSITELIB}/pystache/tests/examples/comments.mustache
91${PYSITELIB}/pystache/tests/examples/comments.py 94${PYSITELIB}/pystache/tests/examples/comments.py
92${PYSITELIB}/pystache/tests/examples/comments.pyc 95${PYSITELIB}/pystache/tests/examples/comments.pyc
93${PYSITELIB}/pystache/tests/examples/comments.pyo 96${PYSITELIB}/pystache/tests/examples/comments.pyo
94${PYSITELIB}/pystache/tests/examples/complex.mustache 97${PYSITELIB}/pystache/tests/examples/complex.mustache
95${PYSITELIB}/pystache/tests/examples/complex.py 98${PYSITELIB}/pystache/tests/examples/complex.py
96${PYSITELIB}/pystache/tests/examples/complex.pyc 99${PYSITELIB}/pystache/tests/examples/complex.pyc
97${PYSITELIB}/pystache/tests/examples/complex.pyo 100${PYSITELIB}/pystache/tests/examples/complex.pyo
98${PYSITELIB}/pystache/tests/examples/delimiters.mustache 101${PYSITELIB}/pystache/tests/examples/delimiters.mustache
99${PYSITELIB}/pystache/tests/examples/delimiters.py 102${PYSITELIB}/pystache/tests/examples/delimiters.py
100${PYSITELIB}/pystache/tests/examples/delimiters.pyc 103${PYSITELIB}/pystache/tests/examples/delimiters.pyc
101${PYSITELIB}/pystache/tests/examples/delimiters.pyo 104${PYSITELIB}/pystache/tests/examples/delimiters.pyo
102${PYSITELIB}/pystache/tests/examples/double_section.mustache 105${PYSITELIB}/pystache/tests/examples/double_section.mustache
103${PYSITELIB}/pystache/tests/examples/double_section.py 106${PYSITELIB}/pystache/tests/examples/double_section.py
104${PYSITELIB}/pystache/tests/examples/double_section.pyc 107${PYSITELIB}/pystache/tests/examples/double_section.pyc
105${PYSITELIB}/pystache/tests/examples/double_section.pyo 108${PYSITELIB}/pystache/tests/examples/double_section.pyo
106${PYSITELIB}/pystache/tests/examples/escaped.mustache 109${PYSITELIB}/pystache/tests/examples/escaped.mustache
107${PYSITELIB}/pystache/tests/examples/escaped.py 110${PYSITELIB}/pystache/tests/examples/escaped.py
108${PYSITELIB}/pystache/tests/examples/escaped.pyc 111${PYSITELIB}/pystache/tests/examples/escaped.pyc
109${PYSITELIB}/pystache/tests/examples/escaped.pyo 112${PYSITELIB}/pystache/tests/examples/escaped.pyo
110${PYSITELIB}/pystache/tests/examples/inner_partial.mustache 113${PYSITELIB}/pystache/tests/examples/inner_partial.mustache
111${PYSITELIB}/pystache/tests/examples/inner_partial.txt 114${PYSITELIB}/pystache/tests/examples/inner_partial.txt
112${PYSITELIB}/pystache/tests/examples/inverted.mustache 115${PYSITELIB}/pystache/tests/examples/inverted.mustache
113${PYSITELIB}/pystache/tests/examples/inverted.py 116${PYSITELIB}/pystache/tests/examples/inverted.py
114${PYSITELIB}/pystache/tests/examples/inverted.pyc 117${PYSITELIB}/pystache/tests/examples/inverted.pyc
115${PYSITELIB}/pystache/tests/examples/inverted.pyo 118${PYSITELIB}/pystache/tests/examples/inverted.pyo
116${PYSITELIB}/pystache/tests/examples/lambdas.mustache 119${PYSITELIB}/pystache/tests/examples/lambdas.mustache
117${PYSITELIB}/pystache/tests/examples/lambdas.py 120${PYSITELIB}/pystache/tests/examples/lambdas.py
118${PYSITELIB}/pystache/tests/examples/lambdas.pyc 121${PYSITELIB}/pystache/tests/examples/lambdas.pyc
119${PYSITELIB}/pystache/tests/examples/lambdas.pyo 122${PYSITELIB}/pystache/tests/examples/lambdas.pyo
120${PYSITELIB}/pystache/tests/examples/looping_partial.mustache 123${PYSITELIB}/pystache/tests/examples/looping_partial.mustache
121${PYSITELIB}/pystache/tests/examples/nested_context.mustache 124${PYSITELIB}/pystache/tests/examples/nested_context.mustache
122${PYSITELIB}/pystache/tests/examples/nested_context.py 125${PYSITELIB}/pystache/tests/examples/nested_context.py
123${PYSITELIB}/pystache/tests/examples/nested_context.pyc 126${PYSITELIB}/pystache/tests/examples/nested_context.pyc
124${PYSITELIB}/pystache/tests/examples/nested_context.pyo 127${PYSITELIB}/pystache/tests/examples/nested_context.pyo
125${PYSITELIB}/pystache/tests/examples/partial_in_partial.mustache 128${PYSITELIB}/pystache/tests/examples/partial_in_partial.mustache
126${PYSITELIB}/pystache/tests/examples/partial_with_lambda.mustache 129${PYSITELIB}/pystache/tests/examples/partial_with_lambda.mustache
127${PYSITELIB}/pystache/tests/examples/partial_with_partial_and_lambda.mustache 130${PYSITELIB}/pystache/tests/examples/partial_with_partial_and_lambda.mustache
128${PYSITELIB}/pystache/tests/examples/partials_with_lambdas.py 131${PYSITELIB}/pystache/tests/examples/partials_with_lambdas.py
129${PYSITELIB}/pystache/tests/examples/partials_with_lambdas.pyc 132${PYSITELIB}/pystache/tests/examples/partials_with_lambdas.pyc
130${PYSITELIB}/pystache/tests/examples/partials_with_lambdas.pyo 133${PYSITELIB}/pystache/tests/examples/partials_with_lambdas.pyo
131${PYSITELIB}/pystache/tests/examples/readme.py 134${PYSITELIB}/pystache/tests/examples/readme.py
132${PYSITELIB}/pystache/tests/examples/readme.pyc 135${PYSITELIB}/pystache/tests/examples/readme.pyc
133${PYSITELIB}/pystache/tests/examples/readme.pyo 136${PYSITELIB}/pystache/tests/examples/readme.pyo
134${PYSITELIB}/pystache/tests/examples/say_hello.mustache 137${PYSITELIB}/pystache/tests/examples/say_hello.mustache
135${PYSITELIB}/pystache/tests/examples/simple.mustache 138${PYSITELIB}/pystache/tests/examples/simple.mustache
136${PYSITELIB}/pystache/tests/examples/simple.py 139${PYSITELIB}/pystache/tests/examples/simple.py
137${PYSITELIB}/pystache/tests/examples/simple.pyc 140${PYSITELIB}/pystache/tests/examples/simple.pyc
138${PYSITELIB}/pystache/tests/examples/simple.pyo 141${PYSITELIB}/pystache/tests/examples/simple.pyo
139${PYSITELIB}/pystache/tests/examples/tagless.mustache 142${PYSITELIB}/pystache/tests/examples/tagless.mustache
140${PYSITELIB}/pystache/tests/examples/template_partial.mustache 143${PYSITELIB}/pystache/tests/examples/template_partial.mustache
141${PYSITELIB}/pystache/tests/examples/template_partial.py 144${PYSITELIB}/pystache/tests/examples/template_partial.py
142${PYSITELIB}/pystache/tests/examples/template_partial.pyc 145${PYSITELIB}/pystache/tests/examples/template_partial.pyc
143${PYSITELIB}/pystache/tests/examples/template_partial.pyo 146${PYSITELIB}/pystache/tests/examples/template_partial.pyo
144${PYSITELIB}/pystache/tests/examples/template_partial.txt 147${PYSITELIB}/pystache/tests/examples/template_partial.txt
145${PYSITELIB}/pystache/tests/examples/unescaped.mustache 148${PYSITELIB}/pystache/tests/examples/unescaped.mustache
146${PYSITELIB}/pystache/tests/examples/unescaped.py 149${PYSITELIB}/pystache/tests/examples/unescaped.py
147${PYSITELIB}/pystache/tests/examples/unescaped.pyc 150${PYSITELIB}/pystache/tests/examples/unescaped.pyc
148${PYSITELIB}/pystache/tests/examples/unescaped.pyo 151${PYSITELIB}/pystache/tests/examples/unescaped.pyo
149${PYSITELIB}/pystache/tests/examples/unicode_input.mustache 152${PYSITELIB}/pystache/tests/examples/unicode_input.mustache
150${PYSITELIB}/pystache/tests/examples/unicode_input.py 153${PYSITELIB}/pystache/tests/examples/unicode_input.py
151${PYSITELIB}/pystache/tests/examples/unicode_input.pyc 154${PYSITELIB}/pystache/tests/examples/unicode_input.pyc
152${PYSITELIB}/pystache/tests/examples/unicode_input.pyo 155${PYSITELIB}/pystache/tests/examples/unicode_input.pyo
153${PYSITELIB}/pystache/tests/examples/unicode_output.mustache 156${PYSITELIB}/pystache/tests/examples/unicode_output.mustache
154${PYSITELIB}/pystache/tests/examples/unicode_output.py 157${PYSITELIB}/pystache/tests/examples/unicode_output.py
155${PYSITELIB}/pystache/tests/examples/unicode_output.pyc 158${PYSITELIB}/pystache/tests/examples/unicode_output.pyc
156${PYSITELIB}/pystache/tests/examples/unicode_output.pyo 159${PYSITELIB}/pystache/tests/examples/unicode_output.pyo
157${PYSITELIB}/pystache/tests/main.py 160${PYSITELIB}/pystache/tests/main.py
158${PYSITELIB}/pystache/tests/main.pyc 161${PYSITELIB}/pystache/tests/main.pyc
159${PYSITELIB}/pystache/tests/main.pyo 162${PYSITELIB}/pystache/tests/main.pyo
160${PYSITELIB}/pystache/tests/spectesting.py 163${PYSITELIB}/pystache/tests/spectesting.py
161${PYSITELIB}/pystache/tests/spectesting.pyc 164${PYSITELIB}/pystache/tests/spectesting.pyc
162${PYSITELIB}/pystache/tests/spectesting.pyo 165${PYSITELIB}/pystache/tests/spectesting.pyo
163${PYSITELIB}/pystache/tests/test___init__.py 166${PYSITELIB}/pystache/tests/test___init__.py
164${PYSITELIB}/pystache/tests/test___init__.pyc 167${PYSITELIB}/pystache/tests/test___init__.pyc
165${PYSITELIB}/pystache/tests/test___init__.pyo 168${PYSITELIB}/pystache/tests/test___init__.pyo
166${PYSITELIB}/pystache/tests/test_commands.py 169${PYSITELIB}/pystache/tests/test_commands.py
167${PYSITELIB}/pystache/tests/test_commands.pyc 170${PYSITELIB}/pystache/tests/test_commands.pyc
168${PYSITELIB}/pystache/tests/test_commands.pyo 171${PYSITELIB}/pystache/tests/test_commands.pyo
169${PYSITELIB}/pystache/tests/test_context.py 172${PYSITELIB}/pystache/tests/test_context.py
170${PYSITELIB}/pystache/tests/test_context.pyc 173${PYSITELIB}/pystache/tests/test_context.pyc
171${PYSITELIB}/pystache/tests/test_context.pyo 174${PYSITELIB}/pystache/tests/test_context.pyo
172${PYSITELIB}/pystache/tests/test_defaults.py 175${PYSITELIB}/pystache/tests/test_defaults.py
173${PYSITELIB}/pystache/tests/test_defaults.pyc 176${PYSITELIB}/pystache/tests/test_defaults.pyc
174${PYSITELIB}/pystache/tests/test_defaults.pyo 177${PYSITELIB}/pystache/tests/test_defaults.pyo
175${PYSITELIB}/pystache/tests/test_examples.py 178${PYSITELIB}/pystache/tests/test_examples.py
176${PYSITELIB}/pystache/tests/test_examples.pyc 179${PYSITELIB}/pystache/tests/test_examples.pyc
177${PYSITELIB}/pystache/tests/test_examples.pyo 180${PYSITELIB}/pystache/tests/test_examples.pyo
178${PYSITELIB}/pystache/tests/test_loader.py 181${PYSITELIB}/pystache/tests/test_loader.py
179${PYSITELIB}/pystache/tests/test_loader.pyc 182${PYSITELIB}/pystache/tests/test_loader.pyc
180${PYSITELIB}/pystache/tests/test_loader.pyo 183${PYSITELIB}/pystache/tests/test_loader.pyo
181${PYSITELIB}/pystache/tests/test_locator.py 184${PYSITELIB}/pystache/tests/test_locator.py
182${PYSITELIB}/pystache/tests/test_locator.pyc 185${PYSITELIB}/pystache/tests/test_locator.pyc
183${PYSITELIB}/pystache/tests/test_locator.pyo 186${PYSITELIB}/pystache/tests/test_locator.pyo
184${PYSITELIB}/pystache/tests/test_parser.py 187${PYSITELIB}/pystache/tests/test_parser.py
185${PYSITELIB}/pystache/tests/test_parser.pyc 188${PYSITELIB}/pystache/tests/test_parser.pyc
186${PYSITELIB}/pystache/tests/test_parser.pyo 189${PYSITELIB}/pystache/tests/test_parser.pyo
187${PYSITELIB}/pystache/tests/test_pystache.py 190${PYSITELIB}/pystache/tests/test_pystache.py
188${PYSITELIB}/pystache/tests/test_pystache.pyc 191${PYSITELIB}/pystache/tests/test_pystache.pyc
189${PYSITELIB}/pystache/tests/test_pystache.pyo 192${PYSITELIB}/pystache/tests/test_pystache.pyo
190${PYSITELIB}/pystache/tests/test_renderengine.py 193${PYSITELIB}/pystache/tests/test_renderengine.py
191${PYSITELIB}/pystache/tests/test_renderengine.pyc 194${PYSITELIB}/pystache/tests/test_renderengine.pyc
192${PYSITELIB}/pystache/tests/test_renderengine.pyo 195${PYSITELIB}/pystache/tests/test_renderengine.pyo
193${PYSITELIB}/pystache/tests/test_renderer.py 196${PYSITELIB}/pystache/tests/test_renderer.py
194${PYSITELIB}/pystache/tests/test_renderer.pyc 197${PYSITELIB}/pystache/tests/test_renderer.pyc
195${PYSITELIB}/pystache/tests/test_renderer.pyo 198${PYSITELIB}/pystache/tests/test_renderer.pyo
196${PYSITELIB}/pystache/tests/test_simple.py 199${PYSITELIB}/pystache/tests/test_simple.py
197${PYSITELIB}/pystache/tests/test_simple.pyc 200${PYSITELIB}/pystache/tests/test_simple.pyc
198${PYSITELIB}/pystache/tests/test_simple.pyo 201${PYSITELIB}/pystache/tests/test_simple.pyo
199${PYSITELIB}/pystache/tests/test_specloader.py 202${PYSITELIB}/pystache/tests/test_specloader.py
200${PYSITELIB}/pystache/tests/test_specloader.pyc 203${PYSITELIB}/pystache/tests/test_specloader.pyc
201${PYSITELIB}/pystache/tests/test_specloader.pyo 204${PYSITELIB}/pystache/tests/test_specloader.pyo

cvs diff -r1.5 -r1.6 pkgsrc/www/py-pystache/distinfo (switch to unified diff)

--- pkgsrc/www/py-pystache/distinfo 2022/11/22 13:24:11 1.5
+++ pkgsrc/www/py-pystache/distinfo 2023/08/25 15:30:10 1.6
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.5 2022/11/22 13:24:11 adam Exp $ 1$NetBSD: distinfo,v 1.6 2023/08/25 15:30:10 adam Exp $
2 2
3BLAKE2s (pystache-0.6.0.tar.gz) = 0c302dbf0fc82b1ec92e619e859d63d9ef580c4492c079ffa5eb8b6772638fb3 3BLAKE2s (pystache-0.6.4.tar.gz) = 86579907d197dca4918f3b496d232b7309c7411109a4e9988196d778d3ef3a2a
4SHA512 (pystache-0.6.0.tar.gz) = 802e12795c3ae08fbde37c9e266a60478d46d55a42e2fc339389b664edf3c5ebb2e34069546b820789ad48ed9921f4a2b89f82bb37e72e94846eec0a9ba1568c 4SHA512 (pystache-0.6.4.tar.gz) = 96f829cf7b8ee29f9d8fb720b283afd95e7336bb10fb6c54d7df019f2e5e397e0e8c35553b1fc935d324e5e0c5a833f15d2dd6d5fb62425115fbc41b07e0e1f8
5Size (pystache-0.6.0.tar.gz) = 78240 bytes 5Size (pystache-0.6.4.tar.gz) = 90660 bytes