commit: 4957b2ff04fd716d0356263ebcdb37350f093947 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Wed Mar 19 06:24:26 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Wed Mar 19 07:32:01 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4957b2ff
dev-python/pystache: Bump to 0.6.8 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/pystache/Manifest | 1 + dev-python/pystache/pystache-0.6.8.ebuild | 41 +++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/dev-python/pystache/Manifest b/dev-python/pystache/Manifest index 76e2fe5906a5..8acbd64924a3 100644 --- a/dev-python/pystache/Manifest +++ b/dev-python/pystache/Manifest @@ -1 +1,2 @@ DIST pystache-0.6.7.gh.tar.gz 272905 BLAKE2B f99a65d4fa0fc54200a1a84735de7140f5c29bad1908b38678f3978c15ecb2a0c08f354b4148d5313ecc757355eaaecdb1a536933175ff24056664ca34b8d216 SHA512 97cbce10a38c83bdb080f44dc09c594a93c9656f779b90945a384d1c7c7252ad9dd5124ae0304b39dc3df026568121b15926e6dd53598e0cd994d15e91829ddd +DIST pystache-0.6.8.gh.tar.gz 273350 BLAKE2B 55ca9cca131dbd61cb30b3cf37d677069f721f6ff80d8452b3abc51b76e5963a0bb68c35caa3afe4ad0cb0071e91866b7342eb01c636f39689bdecb38a91e6fc SHA512 b2eecabdc39f86713b4f3387b4a80afaa0a80ecc0a34482e3d9341467660666a7bdcd83d21fc9fd3b61a764a1c840a5ba8041f9a66a3b130c849e8bd8cf1f9b5 diff --git a/dev-python/pystache/pystache-0.6.8.ebuild b/dev-python/pystache/pystache-0.6.8.ebuild new file mode 100644 index 000000000000..6e80f54476dc --- /dev/null +++ b/dev-python/pystache/pystache-0.6.8.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) + +inherit distutils-r1 + +DESCRIPTION="Updated Python implementation of Mustache templating framework" +HOMEPAGE=" + https://github.com/PennyDreadfulMTG/pystache/ + https://pypi.org/project/pystache/ +" + +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI="https://github.com/PennyDreadfulMTG/pystache.git" + EGIT_BRANCH="master" + inherit git-r3 +else + SRC_URI=" + https://github.com/PennyDreadfulMTG/pystache/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz + " + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] + test? ( + dev-python/pyyaml[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}