diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-08-20 20:14:16 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-08-20 20:15:41 +0200 |
commit | 745227ac5428790edd88885c8eac85e77b1e2850 (patch) | |
tree | 8553aac8723df7f2f275dd9555f4a1b9cba28942 /dev-python/pystache | |
parent | dev-python/pystache: Add python@ as co-maint. (diff) | |
download | gentoo-745227ac5428790edd88885c8eac85e77b1e2850.tar.gz gentoo-745227ac5428790edd88885c8eac85e77b1e2850.tar.bz2 gentoo-745227ac5428790edd88885c8eac85e77b1e2850.zip |
dev-python/pystache: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pystache')
-rw-r--r-- | dev-python/pystache/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pystache/pystache-0.6.0.ebuild | 38 |
2 files changed, 0 insertions, 39 deletions
diff --git a/dev-python/pystache/Manifest b/dev-python/pystache/Manifest index dafd3e65121b..ba2e3a1cb113 100644 --- a/dev-python/pystache/Manifest +++ b/dev-python/pystache/Manifest @@ -1,2 +1 @@ -DIST pystache-0.6.0.tar.gz 78240 BLAKE2B b3ba14090f7969b7d3bd77f6e23bda8007fbf6f750e008585676f48bb1a4bfc520484b2205225477f2d2d625b0d6c1500d875685fa50f87c11b19589b0d45622 SHA512 802e12795c3ae08fbde37c9e266a60478d46d55a42e2fc339389b664edf3c5ebb2e34069546b820789ad48ed9921f4a2b89f82bb37e72e94846eec0a9ba1568c DIST pystache-0.6.1.gh.tar.gz 279050 BLAKE2B 2c61ba260764aa4bf62039bfe1f844d34e26adc29af2f1e1d98619892bfabd3151aa1d34c69596389a68f0d84ce994ddf7114c091d42b497a17b300a5aff36cc SHA512 516d286f84d2c77650550365f6b219acb712376f0b7302fff2aba7dee4d64e3d3fc2d781782777dd37093f6debf52f9d2a40b6ed8b65aa5f7025ff762cb5efae diff --git a/dev-python/pystache/pystache-0.6.0.ebuild b/dev-python/pystache/pystache-0.6.0.ebuild deleted file mode 100644 index df23e888f31c..000000000000 --- a/dev-python/pystache/pystache-0.6.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{7..10} ) -DISTUTILS_USE_SETUPTOOLS="pyproject.toml" - -inherit distutils-r1 - -DESCRIPTION="Updated Python implementation of Mustache templating framework" -HOMEPAGE="https://github.com/PennyDreadfulMTG/pystache" - -if [[ ${PV} = 9999* ]]; then - EGIT_REPO_URI="https://github.com/PennyDreadfulMTG/pystache.git" - EGIT_BRANCH="master" - inherit git-r3 -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="test" - -BDEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/pyyaml[${PYTHON_USEDEP}] ) -" - -RDEPEND="${PYTHON_DEPS}" - -RESTRICT="!test? ( test )" - -python_test() { - distutils_install_for_testing - pystache-test . || die "Test failed with ${EPYTHON}" -} |