Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mkdocs-git-revision-date-localized-plugin/
Date: Tue, 07 Dec 2021 10:38:02
Message-Id: 1638873444.51dbcb0c1d75e625fd705c4c602f49a536373b39.andrewammerlaan@gentoo
1 commit: 51dbcb0c1d75e625fd705c4c602f49a536373b39
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 7 10:37:24 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 7 10:37:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51dbcb0c
7
8 dev-python/mkdocs-git-revision-date-localized-plugin: add version 0.11
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 .../Manifest | 1 +
14 ...-git-revision-date-localized-plugin-0.11.ebuild | 54 ++++++++++++++++++++++
15 2 files changed, 55 insertions(+)
16
17 diff --git a/dev-python/mkdocs-git-revision-date-localized-plugin/Manifest b/dev-python/mkdocs-git-revision-date-localized-plugin/Manifest
18 index 0c8a39558497..e4a7b0c8c87d 100644
19 --- a/dev-python/mkdocs-git-revision-date-localized-plugin/Manifest
20 +++ b/dev-python/mkdocs-git-revision-date-localized-plugin/Manifest
21 @@ -1,2 +1,3 @@
22 DIST mkdocs-git-revision-date-localized-plugin-0.10.0.tar.gz 368270 BLAKE2B c00956c86394bdfc8b2fe9e51e7588362f6bd7bc3bde174c1d387377418a47f56f01137e597405146280bba195ebf7aa5cadf67e9514734e5874df69e4990857 SHA512 8ce742cd995c180372a9d76a96c19f4f7c7b9fafe5c67f13e2c1d7377dc18e071d379cd741cb5f4a84be9f275b3f3d74d23875e766a7dda86498acb0a08d4344
23 DIST mkdocs-git-revision-date-localized-plugin-0.10.3.tar.gz 368559 BLAKE2B eb0a1e7f85a99ac6f79ebe8cbb547e4b836bde22909363492b63e0bc40ff139fb1f16c9de5662cbb1ba5ab65f2bb8cd3a6f871bc81b894218c4a7d2b8a37770c SHA512 f5cd242eb48cb50c426c9dad76d36958ed31434090986ab5062d8b57ff941ec4dfd9e1cd1f50ac6713e49751afb476e9bc1d7efadf1cfca19f3de70f08320de7
24 +DIST mkdocs-git-revision-date-localized-plugin-0.11.tar.gz 369947 BLAKE2B cf0ae8d40818a234d8c974ec7fdbdae1c0a4b33c00b8421f0b6896c3593bfda3de2fb489cf8ee12875a9fa9362f92e27a2e9fb3ad29441f6cd4949dabb146fbd SHA512 c04a78f0e37f3603f0fc377d9a4f17093628c50b1c2488943f2d32fb7f996954bb482952af5311d44002c52dcc02b3f3e85fe5245bab3926118feb69f4c7ad8d
25
26 diff --git a/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.11.ebuild b/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.11.ebuild
27 new file mode 100644
28 index 000000000000..0891d6826ac6
29 --- /dev/null
30 +++ b/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.11.ebuild
31 @@ -0,0 +1,54 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +DOCS_BUILDER="mkdocs"
40 +DOCS_DEPEND="
41 + dev-python/mkdocs-material
42 + dev-python/mkdocs-git-authors-plugin
43 +"
44 +
45 +inherit distutils-r1 docs
46 +
47 +DESCRIPTION="Display the localized date of the last git modification of a markdown file"
48 +HOMEPAGE="
49 + https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/
50 + https://pypi.org/project/mkdocs-git-revision-date-localized-plugin/
51 +"
52 +SRC_URI="https://github.com/timvink/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
53 +
54 +LICENSE="MIT"
55 +SLOT="0"
56 +KEYWORDS="~amd64"
57 +
58 +RDEPEND="
59 + >=dev-python/Babel-2.7.0[${PYTHON_USEDEP}]
60 + dev-python/GitPython[${PYTHON_USEDEP}]
61 + >=dev-python/mkdocs-1.0[${PYTHON_USEDEP}]
62 +"
63 +BDEPEND="
64 + test? (
65 + dev-python/click[${PYTHON_USEDEP}]
66 + dev-python/mkdocs-material[${PYTHON_USEDEP}]
67 + dev-vcs/git
68 + )
69 + doc? ( dev-vcs/git )
70 +"
71 +
72 +distutils_enable_tests --install pytest
73 +
74 +python_prepare_all() {
75 + # mkdocs-git-revision-date-localized-plugin's tests need git repo
76 + if use test || use doc; then
77 + git init -q || die
78 + git config --global user.email "you@×××××××.com" || die
79 + git config --global user.name "Your Name" || die
80 + git add . || die
81 + git commit -qm 'init' || die
82 + fi
83 +
84 + distutils-r1_python_prepare_all
85 +}