From patchwork Tue Dec 17 09:40:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre Belloni X-Patchwork-Id: 302067 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id C07602C0085 for ; Tue, 17 Dec 2013 20:40:54 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id E09B78816D; Tue, 17 Dec 2013 09:40:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ak2Q24MRNwRm; Tue, 17 Dec 2013 09:40:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id B59CC873C7; Tue, 17 Dec 2013 09:40:52 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 41D7C1BF963 for ; Tue, 17 Dec 2013 09:40:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3AC5888737 for ; Tue, 17 Dec 2013 09:40:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id p7wCOJgr2kAa for ; Tue, 17 Dec 2013 09:40:51 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by whitealder.osuosl.org (Postfix) with ESMTP id EC8738987F for ; Tue, 17 Dec 2013 09:40:50 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id B8710837; Tue, 17 Dec 2013 10:40:55 +0100 (CET) Received: from localhost (128-79-216-6.hfc.dyn.abo.bbox.fr [128.79.216.6]) by mail.free-electrons.com (Postfix) with ESMTPSA id 6264F7C6; Tue, 17 Dec 2013 10:40:55 +0100 (CET) From: Alexandre Belloni To: buildroot@busybox.net Date: Tue, 17 Dec 2013 10:40:43 +0100 Message-Id: <1387273243-7509-1-git-send-email-alexandre.belloni@free-electrons.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] Packages: use https to clone gitorious repositories X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net It often happen that company networks have the git port blocked. Use https to clone the gitorious repositories to work around that. Signed-off-by: Alexandre Belloni --- boot/xloader/xloader.mk | 2 +- package/can-utils/can-utils.mk | 2 +- package/lpc3250loader/lpc3250loader.mk | 2 +- package/ti-uim/ti-uim.mk | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/boot/xloader/xloader.mk b/boot/xloader/xloader.mk index 00c63b1efb91..c52b213308f4 100644 --- a/boot/xloader/xloader.mk +++ b/boot/xloader/xloader.mk @@ -5,7 +5,7 @@ ################################################################################ XLOADER_VERSION = 6f3a26101303051e0f91b6213735b68ce804e94e -XLOADER_SITE = git://gitorious.org/x-loader/x-loader.git +XLOADER_SITE = https://gitorious.org/x-loader/x-loader.git XLOADER_BOARD_NAME = $(call qstrip,$(BR2_TARGET_XLOADER_BOARDNAME)) XLOADER_LICENSE = GPLv2+ diff --git a/package/can-utils/can-utils.mk b/package/can-utils/can-utils.mk index 743fe7ce0b2b..ddf75d0db6e5 100644 --- a/package/can-utils/can-utils.mk +++ b/package/can-utils/can-utils.mk @@ -5,7 +5,7 @@ ################################################################################ CAN_UTILS_VERSION = 16c970d40e6c19dde705bad4751bab1a3a4f3a0d -CAN_UTILS_SITE = git://gitorious.org/linux-can/can-utils.git +CAN_UTILS_SITE = https://gitorious.org/linux-can/can-utils.git CAN_UTILS_AUTORECONF = YES $(eval $(autotools-package)) diff --git a/package/lpc3250loader/lpc3250loader.mk b/package/lpc3250loader/lpc3250loader.mk index 42beb7bc84b4..bcb7c7070e32 100644 --- a/package/lpc3250loader/lpc3250loader.mk +++ b/package/lpc3250loader/lpc3250loader.mk @@ -4,7 +4,7 @@ # ################################################################################ -HOST_LPC3250LOADER_SITE = git://gitorious.org/lpc3250loader/lpc3250loader.git +HOST_LPC3250LOADER_SITE = https://gitorious.org/lpc3250loader/lpc3250loader.git HOST_LPC3250LOADER_VERSION = 1.0 define HOST_LPC3250LOADER_INSTALL_CMDS diff --git a/package/ti-uim/ti-uim.mk b/package/ti-uim/ti-uim.mk index b49818004989..fd92497609b5 100644 --- a/package/ti-uim/ti-uim.mk +++ b/package/ti-uim/ti-uim.mk @@ -5,7 +5,7 @@ ################################################################################ TI_UIM_VERSION = c73894456df5def97111cb33d2106b684b8b7959 -TI_UIM_SITE = git://gitorious.org/uim/uim.git +TI_UIM_SITE = https://gitorious.org/uim/uim.git TI_UIM_LICENSE = GPLv2+ define TI_UIM_BUILD_CMDS