diff options
author | Peter Levine <plevine457@gmail.com> | 2023-01-20 04:10:48 -0500 |
---|---|---|
committer | Viorel Munteanu <ceamac@gentoo.org> | 2023-02-04 10:26:19 +0200 |
commit | 369dd288195c4e616b7b000d902dcdecd75f7016 (patch) | |
tree | 37f73faddbb4a8d421052a3a4407839caa6de14e /dev-cpp | |
parent | dev-cpp/gtest: disable googletest-port-test (diff) | |
download | gentoo-369dd288195c4e616b7b000d902dcdecd75f7016.tar.gz gentoo-369dd288195c4e616b7b000d902dcdecd75f7016.tar.bz2 gentoo-369dd288195c4e616b7b000d902dcdecd75f7016.zip |
dev-cpp/gtest: change the URI download naming pattern
Now using the generic github v${PV}.tar.gz naming scheme.
Signed-off-by: Peter Levine <plevine457@gmail.com>
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/gtest/gtest-9999.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-cpp/gtest/gtest-9999.ebuild b/dev-cpp/gtest/gtest-9999.ebuild index 94773948e844..b8c8b33936c4 100644 --- a/dev-cpp/gtest/gtest-9999.ebuild +++ b/dev-cpp/gtest/gtest-9999.ebuild @@ -13,9 +13,9 @@ if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="https://github.com/google/googletest" else if [[ -z ${GOOGLETEST_COMMIT} ]]; then - SRC_URI="https://github.com/google/googletest/archive/refs/tags/release-${PV}.tar.gz + SRC_URI="https://github.com/google/googletest/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}"/googletest-release-${PV} + S="${WORKDIR}"/googletest-${PV} else SRC_URI="https://github.com/google/googletest/archive/${GOOGLETEST_COMMIT}.tar.gz -> ${P}.tar.gz" |