Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@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: Thu, 27 Jan 2022 12:34:55
Message-Id: 1643286886.de28648952f6ff1d74ba9e2a4df46389aa95a7a9.mgorny@gentoo
1 commit: de28648952f6ff1d74ba9e2a4df46389aa95a7a9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 27 11:29:16 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 27 12:34:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de286489
7
8 dev-python/mkdocs-git-revision-date-localized-plugin: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../Manifest | 2 -
13 ...it-revision-date-localized-plugin-0.10.0.ebuild | 51 ----------------------
14 ...it-revision-date-localized-plugin-0.10.3.ebuild | 51 ----------------------
15 3 files changed, 104 deletions(-)
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 73f2b4aa1acb..e5ac25e24acd 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,3 +1 @@
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.1.tar.gz 369943 BLAKE2B 261813f3d63d6b1bfb021aab3f9db96f7977ac8f6bf6239158f1d8045e1eb5b21b89f2c4eb493634944b202334f59ce589797624137bfc643cda3ef52969bd73 SHA512 fb5e1c1b65f431585dc6a6887fc079a3181e73286697c331317a69f7748453af61abfb8fc58eb55203f09c9a70c752781dd834d03e13184ddb0bb761aa10e371
25
26 diff --git a/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.10.0.ebuild b/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.10.0.ebuild
27 deleted file mode 100644
28 index 9a918d947228..000000000000
29 --- a/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.10.0.ebuild
30 +++ /dev/null
31 @@ -1,51 +0,0 @@
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..9} )
38 -
39 -DOCS_BUILDER="mkdocs"
40 -DOCS_DEPEND="dev-python/mkdocs-material"
41 -
42 -inherit distutils-r1 docs
43 -
44 -DESCRIPTION="Display the localized date of the last git modification of a markdown file"
45 -HOMEPAGE="
46 - https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/
47 - https://pypi.org/project/mkdocs-git-revision-date-localized-plugin/
48 -"
49 -SRC_URI="https://github.com/timvink/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 -
51 -LICENSE="MIT"
52 -SLOT="0"
53 -KEYWORDS="amd64 ~riscv x86"
54 -
55 -RDEPEND="
56 - >=dev-python/Babel-2.7.0[${PYTHON_USEDEP}]
57 - dev-python/GitPython[${PYTHON_USEDEP}]
58 - >=dev-python/mkdocs-1.0[${PYTHON_USEDEP}]
59 -"
60 -BDEPEND="
61 - test? (
62 - dev-python/click[${PYTHON_USEDEP}]
63 - dev-python/mkdocs-material[${PYTHON_USEDEP}]
64 - dev-vcs/git
65 - )
66 - doc? ( dev-vcs/git )
67 -"
68 -
69 -distutils_enable_tests --install pytest
70 -
71 -python_prepare_all() {
72 - # mkdocs-git-revision-date-localized-plugin's tests need git repo
73 - if use test || use doc; then
74 - git init -q || die
75 - git config --global user.email "you@×××××××.com" || die
76 - git config --global user.name "Your Name" || die
77 - git add . || die
78 - git commit -qm 'init' || die
79 - fi
80 -
81 - distutils-r1_python_prepare_all
82 -}
83
84 diff --git a/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.10.3.ebuild b/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.10.3.ebuild
85 deleted file mode 100644
86 index 9a918d947228..000000000000
87 --- a/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.10.3.ebuild
88 +++ /dev/null
89 @@ -1,51 +0,0 @@
90 -# Copyright 1999-2021 Gentoo Authors
91 -# Distributed under the terms of the GNU General Public License v2
92 -
93 -EAPI=8
94 -
95 -PYTHON_COMPAT=( python3_{8..9} )
96 -
97 -DOCS_BUILDER="mkdocs"
98 -DOCS_DEPEND="dev-python/mkdocs-material"
99 -
100 -inherit distutils-r1 docs
101 -
102 -DESCRIPTION="Display the localized date of the last git modification of a markdown file"
103 -HOMEPAGE="
104 - https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/
105 - https://pypi.org/project/mkdocs-git-revision-date-localized-plugin/
106 -"
107 -SRC_URI="https://github.com/timvink/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
108 -
109 -LICENSE="MIT"
110 -SLOT="0"
111 -KEYWORDS="amd64 ~riscv x86"
112 -
113 -RDEPEND="
114 - >=dev-python/Babel-2.7.0[${PYTHON_USEDEP}]
115 - dev-python/GitPython[${PYTHON_USEDEP}]
116 - >=dev-python/mkdocs-1.0[${PYTHON_USEDEP}]
117 -"
118 -BDEPEND="
119 - test? (
120 - dev-python/click[${PYTHON_USEDEP}]
121 - dev-python/mkdocs-material[${PYTHON_USEDEP}]
122 - dev-vcs/git
123 - )
124 - doc? ( dev-vcs/git )
125 -"
126 -
127 -distutils_enable_tests --install pytest
128 -
129 -python_prepare_all() {
130 - # mkdocs-git-revision-date-localized-plugin's tests need git repo
131 - if use test || use doc; then
132 - git init -q || die
133 - git config --global user.email "you@×××××××.com" || die
134 - git config --global user.name "Your Name" || die
135 - git add . || die
136 - git commit -qm 'init' || die
137 - fi
138 -
139 - distutils-r1_python_prepare_all
140 -}