Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-bootstrap-theme/
Date: Sat, 11 Sep 2021 06:50:28
Message-Id: 1631342986.9cf2f6d0caa2f1b503a5817dbc9c0817bd8edd08.arthurzam@gentoo
1 commit: 9cf2f6d0caa2f1b503a5817dbc9c0817bd8edd08
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 11 06:44:59 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 11 06:49:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf2f6d0
7
8 dev-python/sphinx-bootstrap-theme: update SRC_URI
9
10 Upstream decided to move the v0.8.0 tag to a new commit, which makes
11 our previous checksum invalid.
12 Redirect the ebuild to the exact commit by old v0.8.0 tag, as the
13 ebuild is already stable, and in new v0.8.0 tag the buildsystem
14 changed and a lot of changes were done in one commit.
15
16 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
17
18 dev-python/sphinx-bootstrap-theme/Manifest | 2 +-
19 .../sphinx-bootstrap-theme/sphinx-bootstrap-theme-0.8.0.ebuild | 9 ++++++++-
20 2 files changed, 9 insertions(+), 2 deletions(-)
21
22 diff --git a/dev-python/sphinx-bootstrap-theme/Manifest b/dev-python/sphinx-bootstrap-theme/Manifest
23 index be4a8186428..d5623c90f29 100644
24 --- a/dev-python/sphinx-bootstrap-theme/Manifest
25 +++ b/dev-python/sphinx-bootstrap-theme/Manifest
26 @@ -1 +1 @@
27 -DIST sphinx-bootstrap-theme-0.8.0.tar.gz 1225612 BLAKE2B db5e65db732163048909903c7af0eb301a81b12fbf9ce299070d55ea8f949e2094f3c5624182fd8ac625d553f982cba6ef1bc0c2680de55993d57e82a779956a SHA512 25a2d05c424c52d4571e9a50a55be0c7f3a32aa855c3fe6fb642b1afcebcabb0fa715aac48da280a556b6c8d206b7018b45d8f9bd092123a9c03940290bbfc63
28 +DIST sphinx-bootstrap-theme-a6dfc6f9054f6b4cf3eb1acadf715a679ed53a7b.tar.gz 1227985 BLAKE2B 787d5975c8585a1fc428344e2788d92c75c0ea0b91671ab57ef3d636522feee4428e79f73f150792f83557765cd1192b863d92941dbb1e1e3bca17668988ab3a SHA512 eb8dd8e11cbf6cedf9487b6ff220550a24501df134fd1f0c3b680bbf5b573beda2a3bd7e023d6faab82b55bf08a6b66855efe554a3102cf0131c4c8ab7559cf9
29
30 diff --git a/dev-python/sphinx-bootstrap-theme/sphinx-bootstrap-theme-0.8.0.ebuild b/dev-python/sphinx-bootstrap-theme/sphinx-bootstrap-theme-0.8.0.ebuild
31 index fb6ceec3834..9570c550b55 100644
32 --- a/dev-python/sphinx-bootstrap-theme/sphinx-bootstrap-theme-0.8.0.ebuild
33 +++ b/dev-python/sphinx-bootstrap-theme/sphinx-bootstrap-theme-0.8.0.ebuild
34 @@ -8,11 +8,18 @@ PYTHON_COMPAT=( pypy3 python3_{8..10} )
35
36 inherit distutils-r1
37
38 +# Upstream decided to move the v0.8.0 tag to another commit
39 +# Restore the same git commit for old v0.8.0
40 +MY_COMMIT="a6dfc6f9054f6b4cf3eb1acadf715a679ed53a7b"
41 +
42 DESCRIPTION="Sphinx theme integrates the Bootstrap CSS / JavaScript framework"
43 HOMEPAGE="https://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html"
44 # Latest version isn't on PyPI
45 # https://github.com/ryan-roemer/sphinx-bootstrap-theme/issues/210
46 -SRC_URI="https://github.com/ryan-roemer/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 +SRC_URI="
48 + https://github.com/ryan-roemer/${PN}/archive/${MY_COMMIT}.tar.gz
49 + -> ${PN}-${MY_COMMIT}.tar.gz"
50 +S="${WORKDIR}/${PN}-${MY_COMMIT}"
51
52 LICENSE="MIT"
53 SLOT="0"