From patchwork Thu Jan 25 02:04:35 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 25507 Received: (qmail 65357 invoked by alias); 25 Jan 2018 02:04:43 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 62557 invoked by uid 89); 25 Jan 2018 02:04:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_NEUTRAL, URIBL_RED autolearn=ham version=3.3.2 spammy=Hx-languages-length:1174 X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault Subject: [hurd,commited] build-many-glibcs.py: Add hurd vcs support Date: Thu, 25 Jan 2018 03:04:35 +0100 Message-Id: <20180125020435.27720-1-samuel.thibault@ens-lyon.org> * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository URL. --- ChangeLog | 4 ++++ scripts/build-many-glibcs.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 428e6e8f1d..6bc5717fcc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2018-01-25 Samuel Thibault + + * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository URL. + 2018-01-24 Joseph Myers * scripts/build-many-glibcs.py (Context.add_all_configs): Add diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 28c04e66fd..aeeccb32a4 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -786,6 +786,10 @@ class Context(object): r = self.git_checkout(component, git_url, git_branch, update) self.fix_glibc_timestamps() return r + elif component == 'hurd': + git_url = 'git://git.savannah.gnu.org/hurd/hurd.git' + git_branch = 'master' + return self.git_checkout(component, git_url, git_branch, update) else: print('error: component %s coming from VCS' % component) exit(1)