pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/py-pystache



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Aug 25 15:30:10 UTC 2023

Modified Files:
        pkgsrc/www/py-pystache: Makefile PLIST distinfo

Log Message:
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]


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/py-pystache/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-pystache/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-pystache/distinfo

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

Modified files:

Index: pkgsrc/www/py-pystache/Makefile
diff -u pkgsrc/www/py-pystache/Makefile:1.6 pkgsrc/www/py-pystache/Makefile:1.7
--- pkgsrc/www/py-pystache/Makefile:1.6 Tue Nov 22 13:24:11 2022
+++ pkgsrc/www/py-pystache/Makefile     Fri Aug 25 15:30:10 2023
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile,v 1.6 2022/11/22 13:24:11 adam Exp $
+# $NetBSD: Makefile,v 1.7 2023/08/25 15:30:10 adam Exp $
 
-DISTNAME=      pystache-0.6.0
+DISTNAME=      pystache-0.6.4
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pystache/}
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/defunkt/pystache
+HOMEPAGE=      https://github.com/PennyDreadfulMTG/pystache
 COMMENT=       Mustache for Python
 LICENSE=       mit
 
@@ -17,7 +17,7 @@ USE_PKG_RESOURCES=    yes
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 do-test:
-       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} test_pystache.py
+       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest discover -v
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/www/py-pystache/PLIST
diff -u pkgsrc/www/py-pystache/PLIST:1.2 pkgsrc/www/py-pystache/PLIST:1.3
--- pkgsrc/www/py-pystache/PLIST:1.2    Tue Nov 22 13:24:11 2022
+++ pkgsrc/www/py-pystache/PLIST        Fri Aug 25 15:30:10 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2022/11/22 13:24:11 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2023/08/25 15:30:10 adam Exp $
 bin/pystache
 bin/pystache-test
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
@@ -11,6 +11,9 @@ ${PYSITELIB}/${EGG_INFODIR}/zip-safe
 ${PYSITELIB}/pystache/__init__.py
 ${PYSITELIB}/pystache/__init__.pyc
 ${PYSITELIB}/pystache/__init__.pyo
+${PYSITELIB}/pystache/_version.py
+${PYSITELIB}/pystache/_version.pyc
+${PYSITELIB}/pystache/_version.pyo
 ${PYSITELIB}/pystache/commands/__init__.py
 ${PYSITELIB}/pystache/commands/__init__.pyc
 ${PYSITELIB}/pystache/commands/__init__.pyo

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



Home | Main Index | Thread Index | Old Index