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 (expand / 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 (expand / 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,26 +1,29 @@ @@ -1,26 +1,29 @@
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

cvs diff -r1.5 -r1.6 pkgsrc/www/py-pystache/distinfo (expand / 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