From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mkdocs-git-revision-date-localized-plugin/
Date: Sat, 24 Jul 2021 17:30:11 +0000 (UTC) [thread overview]
Message-ID: <1627147807.8f66f6021ad382be201814f566fa1d48d28fca8f.mgorny@gentoo> (raw)
commit: 8f66f6021ad382be201814f566fa1d48d28fca8f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 24 15:22:28 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 24 17:30:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f66f602
dev-python/mkdocs-git-revision-date-localized-plugin: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../Manifest | 2 -
...s-git-revision-date-localized-plugin-0.8.ebuild | 45 --------------------
...s-git-revision-date-localized-plugin-0.9.ebuild | 49 ----------------------
3 files changed, 96 deletions(-)
diff --git a/dev-python/mkdocs-git-revision-date-localized-plugin/Manifest b/dev-python/mkdocs-git-revision-date-localized-plugin/Manifest
index 479cefa6b59..73361705783 100644
--- a/dev-python/mkdocs-git-revision-date-localized-plugin/Manifest
+++ b/dev-python/mkdocs-git-revision-date-localized-plugin/Manifest
@@ -1,3 +1 @@
-DIST mkdocs-git-revision-date-localized-plugin-0.8.tar.gz 364352 BLAKE2B cfd1709b5c9e1f99ca1a2d8d194634afde6d57aecaca1d2cb70edc21c28d0b210c3497a4214d6a95592bc5a7aad3b88d96b275427f3218aa198ab7b3ae8f364a SHA512 84f19aa13189b74f18f98433939935052f1d757f66972d4f1cc1bfd14b614f8fd57b0ac0dcf41fcb678eb8dddba93ddc78dc776d6a81977d096920128d31f58e
DIST mkdocs-git-revision-date-localized-plugin-0.9.2.tar.gz 367301 BLAKE2B ac4d69117dea856a209d144e452cf408ee3d111eaa8a9825602b9f8d604a79143e96a51e67b74e430eecc6ee33335161e409149220a8b216f3b47f22e7a49f12 SHA512 11714323a6e300d0d8d05198f617019158dc48ba43e8a685f52702da7f52558f1358dfce294dcd421ba9d59131c17e4d6ea6ff483397055dee62dffb76032d4c
-DIST mkdocs-git-revision-date-localized-plugin-0.9.tar.gz 367850 BLAKE2B 0bf02b9de2b9ee8c4ae36548ffab85a9c880fc89dd5a4f39961093e36fc0b87b53dce8269400c804fed67f5a3a3a2ec45e6486ec80706be0651b9ceefe7de6af SHA512 488cd20e7ce8cd8df4c277f3626b8d628ce58090791a1b7e36efbdcacf6bf434bd4bc3e73f0402fdc8cb60767e6d63fac56a56b0dfd4728d6a49438caf5ad3d2
diff --git a/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.8.ebuild b/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.8.ebuild
deleted file mode 100644
index 3deaa70facc..00000000000
--- a/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.8.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-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}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- >=dev-python/Babel-2.7.0[${PYTHON_USEDEP}]
- dev-python/GitPython[${PYTHON_USEDEP}]
- >=dev-python/mkdocs-1.0[${PYTHON_USEDEP}]
-"
-BDEPEND="test? (
- dev-python/click[${PYTHON_USEDEP}]
- dev-python/mkdocs-material[${PYTHON_USEDEP}]
- dev-vcs/git
-)"
-
-distutils_enable_tests --install pytest
-
-python_prepare_all() {
- # mkdocs-git-revision-date-localized-plugin's tests need git repo
- if use test; then
- git init || die
- git config --global user.email "you@example.com" || die
- git config --global user.name "Your Name" || die
- git add . || die
- git commit -m 'init' || die
- fi
-
- distutils-r1_python_prepare_all
-}
diff --git a/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.9.ebuild b/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.9.ebuild
deleted file mode 100644
index 6d56c59ced4..00000000000
--- a/dev-python/mkdocs-git-revision-date-localized-plugin/mkdocs-git-revision-date-localized-plugin-0.9.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="dev-python/mkdocs-material"
-
-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}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
- >=dev-python/Babel-2.7.0[${PYTHON_USEDEP}]
- dev-python/GitPython[${PYTHON_USEDEP}]
- >=dev-python/mkdocs-1.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/click[${PYTHON_USEDEP}]
- dev-python/mkdocs-material[${PYTHON_USEDEP}]
- dev-vcs/git
- )"
-
-distutils_enable_tests --install 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 "you@example.com" || die
- git config --global user.name "Your Name" || die
- git add . || die
- git commit -qm 'init' || die
- fi
-
- distutils-r1_python_prepare_all
-}
next reply other threads:[~2021-07-24 17:30 UTC|newest]
Thread overview: 83+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-24 17:30 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-15 7:45 [gentoo-commits] repo/gentoo:master commit in: dev-python/mkdocs-git-revision-date-localized-plugin/ Michał Górny
2025-03-11 16:05 Jakov Smolić
2025-03-11 9:11 Sam James
2025-03-11 8:47 Michał Górny
2025-03-11 8:47 Michał Górny
2025-03-10 6:31 Michał Górny
2025-03-06 7:27 Arthur Zamarin
2025-03-06 7:27 Arthur Zamarin
2025-03-06 3:31 Michał Górny
2024-11-09 10:22 Michał Górny
2024-11-09 10:20 Arthur Zamarin
2024-10-23 6:16 Michał Górny
2024-09-28 11:31 Michał Górny
2024-09-28 11:05 Arthur Zamarin
2024-09-13 3:12 Michał Górny
2024-09-09 2:24 Michał Górny
2024-09-07 12:15 Michał Górny
2024-09-07 11:26 Jakov Smolić
2024-08-20 1:43 Michał Górny
2024-07-07 16:17 Michał Górny
2024-06-15 9:46 Michał Górny
2024-06-15 8:47 Arthur Zamarin
2024-06-01 3:57 Michał Górny
2024-05-17 9:49 Michał Górny
2024-05-17 8:33 Arthur Zamarin
2024-05-01 4:34 Michał Górny
2024-02-20 6:58 Michał Górny
2024-02-20 6:45 Sam James
2024-02-05 15:57 Andrew Ammerlaan
2023-12-27 13:58 Andrew Ammerlaan
2023-12-03 19:56 Andrew Ammerlaan
2023-11-10 12:44 Andrew Ammerlaan
2023-10-27 7:48 Andrew Ammerlaan
2023-04-14 19:43 Sam James
2023-04-14 4:04 Sam James
2023-04-05 8:17 Michał Górny
2023-04-05 7:16 Arthur Zamarin
2023-03-03 5:53 Michał Górny
2023-02-25 5:47 Arthur Zamarin
2023-02-13 8:50 Andrew Ammerlaan
2023-01-14 10:00 Arthur Zamarin
2022-08-03 7:04 Michał Górny
2022-08-02 20:27 Sam James
2022-07-02 19:11 Arthur Zamarin
2022-06-22 7:57 Michał Górny
2022-06-22 6:53 Agostino Sarubbo
2022-05-24 13:02 Andrew Ammerlaan
2022-05-02 10:18 Andrew Ammerlaan
2022-03-27 17:17 Arthur Zamarin
2022-03-27 6:27 Agostino Sarubbo
2022-02-22 22:18 Yixun Lan
2022-02-22 19:53 Jakov Smolić
2022-02-22 9:35 Andrew Ammerlaan
2022-02-22 8:17 Andrew Ammerlaan
2022-02-21 19:31 Andrew Ammerlaan
2022-02-19 11:12 Andrew Ammerlaan
2022-01-27 12:34 Michał Górny
2022-01-27 9:21 Agostino Sarubbo
2022-01-26 20:25 Jakov Smolić
2021-12-25 19:09 Jakov Smolić
2021-12-23 13:11 Andrew Ammerlaan
2021-12-23 13:11 Andrew Ammerlaan
2021-12-10 21:46 Jakov Smolić
2021-12-08 7:07 Yixun Lan
2021-12-07 10:37 Andrew Ammerlaan
2021-11-24 22:25 Andrew Ammerlaan
2021-10-16 6:02 Michał Górny
2021-10-15 23:15 Sam James
2021-09-23 15:35 Marek Szuba
2021-09-13 7:31 Andrew Ammerlaan
2021-09-10 7:14 Michał Górny
2021-09-09 15:51 Arthur Zamarin
2021-09-05 9:54 Andrew Ammerlaan
2021-07-24 15:12 Sam James
2021-07-15 7:38 Agostino Sarubbo
2021-06-11 14:05 Andrew Ammerlaan
2021-05-19 18:42 Andrew Ammerlaan
2021-04-13 11:07 Joonas Niilola
2020-12-08 5:53 Joonas Niilola
2020-12-08 5:53 Joonas Niilola
2020-12-08 5:53 Joonas Niilola
2020-12-08 5:53 Joonas Niilola
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1627147807.8f66f6021ad382be201814f566fa1d48d28fca8f.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox