From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 20 Aug 2024 11:14:17 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1sgKwT-00BXUX-0I for lore@lore.pengutronix.de; Tue, 20 Aug 2024 11:14:17 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1sgKwS-0000w7-3s; Tue, 20 Aug 2024 11:14:16 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1sgKw7-0000vS-Ms; Tue, 20 Aug 2024 11:13:55 +0200 Received: from [2a0a:edc0:0:1101:1d::ac] (helo=dude04.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sgKw7-001jjn-9I; Tue, 20 Aug 2024 11:13:55 +0200 Received: from rhi by dude04.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1sgKw7-004bRU-0k; Tue, 20 Aug 2024 11:13:55 +0200 From: Roland Hieber To: ptxdist@pengutronix.de Date: Tue, 20 Aug 2024 11:13:52 +0200 Message-Id: <20240820091352.1097228-1-rhi@pengutronix.de> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Mail-Followup-To: Roland Hieber , ptxdist@pengutronix.de Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] libcap-ng: resolve redirect; add mirror URL X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Roland Hieber Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false The server at people.redhat.com redirects from HTTP to HTTPS, but it had certificate issues in the last weeks. Although those seem to be fixed now, add a second mirror URL to prevent breakage in the future. Signed-off-by: Roland Hieber --- rules/libcap-ng.make | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rules/libcap-ng.make b/rules/libcap-ng.make index f85c96eb56a7..2a7059b7d208 100644 --- a/rules/libcap-ng.make +++ b/rules/libcap-ng.make @@ -18,7 +18,9 @@ LIBCAP_NG_VERSION := 0.8.5 LIBCAP_NG_MD5 := 3c280d902b902f28caf3990e018fcd31 LIBCAP_NG := libcap-ng-$(LIBCAP_NG_VERSION) LIBCAP_NG_SUFFIX := tar.gz -LIBCAP_NG_URL := http://people.redhat.com/sgrubb/libcap-ng/$(LIBCAP_NG).$(LIBCAP_NG_SUFFIX) +LIBCAP_NG_URL := \ + https://people.redhat.com/sgrubb/libcap-ng/$(LIBCAP_NG).$(LIBCAP_NG_SUFFIX) \ + https://sources.buildroot.net/libcap-ng/$(LIBCAP_NG).$(LIBCAP_NG_SUFFIX) LIBCAP_NG_SOURCE := $(SRCDIR)/$(LIBCAP_NG).$(LIBCAP_NG_SUFFIX) LIBCAP_NG_DIR := $(BUILDDIR)/$(LIBCAP_NG) LIBCAP_NG_LICENSE := LGPL-2.1-or-later AND GPL-2.0-or-later -- 2.39.2