diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2021-09-11 09:44:59 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2021-09-11 09:49:46 +0300 |
commit | 9cf2f6d0caa2f1b503a5817dbc9c0817bd8edd08 (patch) | |
tree | 4dcbcb948b73992e6149918e4de42f528ea208e9 /dev-python/sphinx-bootstrap-theme | |
parent | app-text/htmltidy: x86 stable wrt bug #812425 (diff) | |
download | gentoo-9cf2f6d0caa2f1b503a5817dbc9c0817bd8edd08.tar.gz gentoo-9cf2f6d0caa2f1b503a5817dbc9c0817bd8edd08.tar.bz2 gentoo-9cf2f6d0caa2f1b503a5817dbc9c0817bd8edd08.zip |
dev-python/sphinx-bootstrap-theme: update SRC_URI
Upstream decided to move the v0.8.0 tag to a new commit, which makes
our previous checksum invalid.
Redirect the ebuild to the exact commit by old v0.8.0 tag, as the
ebuild is already stable, and in new v0.8.0 tag the buildsystem
changed and a lot of changes were done in one commit.
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/sphinx-bootstrap-theme')
-rw-r--r-- | dev-python/sphinx-bootstrap-theme/Manifest | 2 | ||||
-rw-r--r-- | dev-python/sphinx-bootstrap-theme/sphinx-bootstrap-theme-0.8.0.ebuild | 9 |
2 files changed, 9 insertions, 2 deletions
diff --git a/dev-python/sphinx-bootstrap-theme/Manifest b/dev-python/sphinx-bootstrap-theme/Manifest index be4a81864289..d5623c90f29a 100644 --- a/dev-python/sphinx-bootstrap-theme/Manifest +++ b/dev-python/sphinx-bootstrap-theme/Manifest @@ -1 +1 @@ -DIST sphinx-bootstrap-theme-0.8.0.tar.gz 1225612 BLAKE2B db5e65db732163048909903c7af0eb301a81b12fbf9ce299070d55ea8f949e2094f3c5624182fd8ac625d553f982cba6ef1bc0c2680de55993d57e82a779956a SHA512 25a2d05c424c52d4571e9a50a55be0c7f3a32aa855c3fe6fb642b1afcebcabb0fa715aac48da280a556b6c8d206b7018b45d8f9bd092123a9c03940290bbfc63 +DIST sphinx-bootstrap-theme-a6dfc6f9054f6b4cf3eb1acadf715a679ed53a7b.tar.gz 1227985 BLAKE2B 787d5975c8585a1fc428344e2788d92c75c0ea0b91671ab57ef3d636522feee4428e79f73f150792f83557765cd1192b863d92941dbb1e1e3bca17668988ab3a SHA512 eb8dd8e11cbf6cedf9487b6ff220550a24501df134fd1f0c3b680bbf5b573beda2a3bd7e023d6faab82b55bf08a6b66855efe554a3102cf0131c4c8ab7559cf9 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 index fb6ceec38349..9570c550b559 100644 --- 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 @@ -8,11 +8,18 @@ PYTHON_COMPAT=( pypy3 python3_{8..10} ) inherit distutils-r1 +# Upstream decided to move the v0.8.0 tag to another commit +# Restore the same git commit for old v0.8.0 +MY_COMMIT="a6dfc6f9054f6b4cf3eb1acadf715a679ed53a7b" + DESCRIPTION="Sphinx theme integrates the Bootstrap CSS / JavaScript framework" HOMEPAGE="https://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html" # Latest version isn't on PyPI # https://github.com/ryan-roemer/sphinx-bootstrap-theme/issues/210 -SRC_URI="https://github.com/ryan-roemer/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI=" + https://github.com/ryan-roemer/${PN}/archive/${MY_COMMIT}.tar.gz + -> ${PN}-${MY_COMMIT}.tar.gz" +S="${WORKDIR}/${PN}-${MY_COMMIT}" LICENSE="MIT" SLOT="0" |