[PATCH] subprojects: Use the correct .git suffix in the repository URLs

Thomas Huth posted 1 patch 7 months, 2 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230912130237.300014-1-thuth@redhat.com
subprojects/berkeley-softfloat-3.wrap | 2 +-
subprojects/berkeley-testfloat-3.wrap | 2 +-
subprojects/slirp.wrap                | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
[PATCH] subprojects: Use the correct .git suffix in the repository URLs
Posted by Thomas Huth 7 months, 2 weeks ago
This avoids the warnings à la:
"warning: redirecting to https://gitlab.com/qemu-project/xyz.git/"

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 subprojects/berkeley-softfloat-3.wrap | 2 +-
 subprojects/berkeley-testfloat-3.wrap | 2 +-
 subprojects/slirp.wrap                | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/subprojects/berkeley-softfloat-3.wrap b/subprojects/berkeley-softfloat-3.wrap
index a8fd87740b..c3e356d42f 100644
--- a/subprojects/berkeley-softfloat-3.wrap
+++ b/subprojects/berkeley-softfloat-3.wrap
@@ -1,5 +1,5 @@
 [wrap-git]
-url = https://gitlab.com/qemu-project/berkeley-softfloat-3
+url = https://gitlab.com/qemu-project/berkeley-softfloat-3.git
 revision = b64af41c3276f97f0e181920400ee056b9c88037
 patch_directory = berkeley-softfloat-3
 depth = 1
diff --git a/subprojects/berkeley-testfloat-3.wrap b/subprojects/berkeley-testfloat-3.wrap
index c86dc078a8..b8b12e7629 100644
--- a/subprojects/berkeley-testfloat-3.wrap
+++ b/subprojects/berkeley-testfloat-3.wrap
@@ -1,5 +1,5 @@
 [wrap-git]
-url = https://gitlab.com/qemu-project/berkeley-testfloat-3
+url = https://gitlab.com/qemu-project/berkeley-testfloat-3.git
 revision = e7af9751d9f9fd3b47911f51a5cfd08af256a9ab
 patch_directory = berkeley-testfloat-3
 depth = 1
diff --git a/subprojects/slirp.wrap b/subprojects/slirp.wrap
index 08291a4cf9..a93b048962 100644
--- a/subprojects/slirp.wrap
+++ b/subprojects/slirp.wrap
@@ -1,5 +1,5 @@
 [wrap-git]
-url = https://gitlab.freedesktop.org/slirp/libslirp
+url = https://gitlab.freedesktop.org/slirp/libslirp.git
 revision = 26be815b86e8d49add8c9a8b320239b9594ff03d
 
 [provide]
-- 
2.41.0


Re: [PATCH] subprojects: Use the correct .git suffix in the repository URLs
Posted by Michael Tokarev 7 months, 2 weeks ago
12.09.2023 16:02, Thomas Huth wrote:
> This avoids the warnings à la:
> "warning: redirecting to https://gitlab.com/qemu-project/xyz.git/"
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>

I wanted to do that for quite some time.. :)

Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>

Applied to my trivial-patches tree, thanks!

/mjt


Re: [PATCH] subprojects: Use the correct .git suffix in the repository URLs
Posted by Philippe Mathieu-Daudé 7 months, 2 weeks ago
On 12/9/23 15:02, Thomas Huth wrote:
> This avoids the warnings à la:
> "warning: redirecting to https://gitlab.com/qemu-project/xyz.git/"
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   subprojects/berkeley-softfloat-3.wrap | 2 +-
>   subprojects/berkeley-testfloat-3.wrap | 2 +-
>   subprojects/slirp.wrap                | 2 +-
>   3 files changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>