diff mbox series

scripts/build-many-glibcs.py: Use https:// for sourceware.org Git clones

Message ID 871qsy753y.fsf@oldenburg.str.redhat.com
State New
Headers show
Series scripts/build-many-glibcs.py: Use https:// for sourceware.org Git clones | expand

Commit Message

Florian Weimer Aug. 30, 2022, 4 a.m. UTC
Tested by running a checkout with these changes.  No observed speed
difference; sourceware.org nowadays implements the Git protocol over
https://.

---
 scripts/build-many-glibcs.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


base-commit: d0e357ff45a75553dee3b17ed7d303bfa544f6fe

Comments

Adhemerval Zanella Netto Sept. 5, 2022, 1:33 p.m. UTC | #1
On 30/08/22 01:00, Florian Weimer via Libc-alpha wrote:
> Tested by running a checkout with these changes.  No observed speed
> difference; sourceware.org nowadays implements the Git protocol over
> https://.

LGTM, thanks.

Reviewd

> 
> ---
>  scripts/build-many-glibcs.py | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
> index 98f02104a2..283e6fe738 100755
> --- a/scripts/build-many-glibcs.py
> +++ b/scripts/build-many-glibcs.py
> @@ -854,7 +854,7 @@ class Context(object):
>          """Check out the given version of the given component from version
>          control.  Return a revision identifier."""
>          if component == 'binutils':
> -            git_url = 'git://sourceware.org/git/binutils-gdb.git'
> +            git_url = 'https://sourceware.org/git/binutils-gdb.git'
>              if version == 'mainline':
>                  git_branch = 'master'
>              else:
> @@ -868,7 +868,7 @@ class Context(object):
>                  branch = 'releases/gcc-%s' % version
>              return self.gcc_checkout(branch, update)
>          elif component == 'glibc':
> -            git_url = 'git://sourceware.org/git/glibc.git'
> +            git_url = 'https://sourceware.org/git/glibc.git'
>              if version == 'mainline':
>                  git_branch = 'master'
>              else:
> @@ -957,7 +957,7 @@ class Context(object):
>              shutil.rmtree(self.component_srcdir('gcc'))
>              update = False
>          if not update:
> -            self.git_checkout('gcc', 'git://gcc.gnu.org/git/gcc.git',
> +            self.git_checkout('gcc', 'https://gcc.gnu.org/git/gcc.git',
>                                branch, update)
>          subprocess.run(['contrib/gcc_update', '--silent'],
>                         cwd=self.component_srcdir('gcc'), check=True)
> 
> base-commit: d0e357ff45a75553dee3b17ed7d303bfa544f6fe
>
diff mbox series

Patch

diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 98f02104a2..283e6fe738 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -854,7 +854,7 @@  class Context(object):
         """Check out the given version of the given component from version
         control.  Return a revision identifier."""
         if component == 'binutils':
-            git_url = 'git://sourceware.org/git/binutils-gdb.git'
+            git_url = 'https://sourceware.org/git/binutils-gdb.git'
             if version == 'mainline':
                 git_branch = 'master'
             else:
@@ -868,7 +868,7 @@  class Context(object):
                 branch = 'releases/gcc-%s' % version
             return self.gcc_checkout(branch, update)
         elif component == 'glibc':
-            git_url = 'git://sourceware.org/git/glibc.git'
+            git_url = 'https://sourceware.org/git/glibc.git'
             if version == 'mainline':
                 git_branch = 'master'
             else:
@@ -957,7 +957,7 @@  class Context(object):
             shutil.rmtree(self.component_srcdir('gcc'))
             update = False
         if not update:
-            self.git_checkout('gcc', 'git://gcc.gnu.org/git/gcc.git',
+            self.git_checkout('gcc', 'https://gcc.gnu.org/git/gcc.git',
                               branch, update)
         subprocess.run(['contrib/gcc_update', '--silent'],
                        cwd=self.component_srcdir('gcc'), check=True)