dev-python/mkdocs-git-revision-date-localized-plugin: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-04-05 19:25:07 +02:00
parent 4465ec7b04
commit a29dae0eec
4 changed files with 0 additions and 198 deletions

View File

@@ -1,4 +1 @@
DIST mkdocs-git-revision-date-localized-plugin-1.3.0.gh.tar.gz 378511 BLAKE2B e922d0ce5dd37f92c11a37d7c02a59fc776a1a4245823a2275c600c6348cc7f97a2a8b43919a5cdbe03e8b23623f0c7d22cf92eb728d6f11d7472db5b78e98a1 SHA512 6e6c085ae861382a932817264c00de55f94b8b09349c18206c1644487a7476d4494f0b451b31510de4ba3a5d4934514923521c8c4c5aca84a8183f5cd574177d
DIST mkdocs-git-revision-date-localized-plugin-1.4.2.gh.tar.gz 443259 BLAKE2B d174c9e7ca7edd9b8e7da798da910d4733f4c917a932f7c5040794f073ddd0c1f315f8bf5d5a6f00764c75e614c113ab047b4f01affe59068e313cc1a47449c1 SHA512 39c54938e4b3ffefa1ee302be0e9461e84b798841a4cfa5f054ec20021f9a87b47b909dab6ea5abf98c028693805057df5883bbc7aee3eef5275538b0ddd009b
DIST mkdocs-git-revision-date-localized-plugin-1.4.4.gh.tar.gz 443468 BLAKE2B 5d7c8d2b5182fd9a3cf9bd01f23d9da99e1e4c9acfaf149828562d36d90188dcb25000ce8db65caa2b2177d05e46f5d108d8cbbdeeadeca667f61ed2544da22d SHA512 915ef91fb5a72b27e721c28e6e171ead9b6a4b201f4aeea3175519ca329bc2bd11fabf93bc3811336f57bd417fe9bcfc840e9d43b8abd2546316d9033122db8f
DIST mkdocs-git-revision-date-localized-plugin-1.4.5.gh.tar.gz 443988 BLAKE2B 582f13ea5ed7dfc7fd5e8e6040ae25bad6f4a1e424f77a016a930030a16ae0970315e0d9618c982fd7131a0e448380ceccd9c8b55613b779c21936a8bb54024d SHA512 c96d179bceb3f26164bf730e6a3b590a16e8d09ca9210dc499caa71effa71a6cc814004fa88f2a6d0316ebf4bca3280ffbc40fddd8331797c7209a2a8cda8d92

View File

@@ -1,64 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517="setuptools"
PYTHON_COMPAT=( python3_{10..13} )
DOCS_BUILDER="mkdocs"
DOCS_DEPEND="
dev-python/regex
dev-python/mkdocs-static-i18n
dev-python/mkdocs-material
dev-python/mkdocs-git-authors-plugin
dev-python/mkdocs-git-revision-date-localized-plugin
"
inherit distutils-r1 docs
DESCRIPTION="Display the localized date of the last git modification of a markdown file"
HOMEPAGE="
https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/
https://pypi.org/project/mkdocs-git-revision-date-localized-plugin/
"
SRC_URI="
https://github.com/timvink/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
RDEPEND="
>=dev-python/babel-2.7.0[${PYTHON_USEDEP}]
dev-python/gitpython[${PYTHON_USEDEP}]
>=dev-python/mkdocs-1.0[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-python/click[${PYTHON_USEDEP}]
dev-python/mkdocs-material[${PYTHON_USEDEP}]
dev-python/mkdocs-static-i18n[${PYTHON_USEDEP}]
dev-vcs/git
)
doc? ( dev-vcs/git )
"
distutils_enable_tests pytest
python_prepare_all() {
# mkdocs-git-revision-date-localized-plugin's tests need git repo
if use test || use doc; then
git init -q || die
git config --global user.email "larry@gentoo.org" || die
git config --global user.name "Larry the Cow" || die
git add . || die
git commit -qm 'init' || die
fi
distutils-r1_python_prepare_all
}

View File

@@ -1,65 +0,0 @@
# 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} )
DOCS_BUILDER="mkdocs"
DOCS_DEPEND="
dev-python/regex
dev-python/mkdocs-static-i18n
dev-python/mkdocs-material
dev-python/mkdocs-git-authors-plugin
dev-python/mkdocs-git-revision-date-localized-plugin
"
inherit distutils-r1 docs
DESCRIPTION="Display the localized date of the last git modification of a markdown file"
HOMEPAGE="
https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/
https://pypi.org/project/mkdocs-git-revision-date-localized-plugin/
"
SRC_URI="
https://github.com/timvink/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
RDEPEND="
>=dev-python/babel-2.7.0[${PYTHON_USEDEP}]
dev-python/gitpython[${PYTHON_USEDEP}]
>=dev-python/mkdocs-1.0[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-python/click[${PYTHON_USEDEP}]
dev-python/mkdocs-material[${PYTHON_USEDEP}]
dev-python/mkdocs-monorepo-plugin[${PYTHON_USEDEP}]
dev-python/mkdocs-static-i18n[${PYTHON_USEDEP}]
dev-vcs/git
)
doc? ( dev-vcs/git )
"
distutils_enable_tests pytest
python_prepare_all() {
# mkdocs-git-revision-date-localized-plugin's tests need git repo
if use test || use doc; then
git init -q || die
git config --global user.email "larry@gentoo.org" || die
git config --global user.name "Larry the Cow" || die
git add . || die
git commit -qm 'init' || die
fi
distutils-r1_python_prepare_all
}

View File

@@ -1,66 +0,0 @@
# 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} )
DOCS_BUILDER="mkdocs"
DOCS_DEPEND="
dev-python/regex
dev-python/mkdocs-static-i18n
dev-python/mkdocs-material
dev-python/mkdocs-git-authors-plugin
dev-python/mkdocs-git-revision-date-localized-plugin
"
inherit distutils-r1 docs
DESCRIPTION="Display the localized date of the last git modification of a markdown file"
HOMEPAGE="
https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/
https://pypi.org/project/mkdocs-git-revision-date-localized-plugin/
"
SRC_URI="
https://github.com/timvink/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
RDEPEND="
>=dev-python/babel-2.7.0[${PYTHON_USEDEP}]
dev-python/gitpython[${PYTHON_USEDEP}]
>=dev-python/mkdocs-1.0[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-python/click[${PYTHON_USEDEP}]
dev-python/mkdocs-gen-files[${PYTHON_USEDEP}]
dev-python/mkdocs-material[${PYTHON_USEDEP}]
dev-python/mkdocs-monorepo-plugin[${PYTHON_USEDEP}]
dev-python/mkdocs-static-i18n[${PYTHON_USEDEP}]
dev-vcs/git
)
doc? ( dev-vcs/git )
"
distutils_enable_tests pytest
python_prepare_all() {
# mkdocs-git-revision-date-localized-plugin's tests need git repo
if use test || use doc; then
git init -q || die
git config --global user.email "larry@gentoo.org" || die
git config --global user.name "Larry the Cow" || die
git add . || die
git commit -qm 'init' || die
fi
distutils-r1_python_prepare_all
}