From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 21 Nov 2023 11:49:50 +0100 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 1r5OKE-002ooz-0q for lore@lore.pengutronix.de; Tue, 21 Nov 2023 11:49:50 +0100 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 1r5OKE-0005Ur-KJ; Tue, 21 Nov 2023 11:49:50 +0100 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 1r5OJv-0005Ud-O9; Tue, 21 Nov 2023 11:49:31 +0100 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 1r5OJv-00AYjj-C0; Tue, 21 Nov 2023 11:49:31 +0100 Received: from rhi by dude04.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1r5OJv-00FCCE-14; Tue, 21 Nov 2023 11:49:31 +0100 From: Roland Hieber To: ptxdist@pengutronix.de Date: Tue, 21 Nov 2023 11:49:29 +0100 Message-Id: <20231121104929.3620868-1-rhi@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: References: MIME-Version: 1.0 Mail-Followup-To: Roland Hieber , ptxdist@pengutronix.de Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH v2] rtmpdump: update 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 gitweb instance at git.ffmpeg.org no longer allows exporting snapshot archives. Switch to cloning the Git repo over HTTPS instead, and update the md5sum because newer Git versions create different path names inside the tar.gz ("rtmpdump-2021-02-19-gf1b83c10d8be/" instead of "rtmpdump-2021-02-19-gf1b83c10d8be-f1b83c1/"). Signed-off-by: Roland Hieber --- PATCH v2: - git-clone over HTTPS, adapt md5sum PATCH v1: https://lore.ptxdist.org/ptxdist/20231114095802.1858942-1-rhi@pengutronix.de --- rules/rtmpdump.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/rtmpdump.make b/rules/rtmpdump.make index 95971995d984..81127c23f61b 100644 --- a/rules/rtmpdump.make +++ b/rules/rtmpdump.make @@ -16,10 +16,10 @@ PACKAGES-$(PTXCONF_RTMPDUMP) += rtmpdump # # No tags: use a fake descriptive commit-ish to include the date RTMPDUMP_VERSION := 2021-02-19-gf1b83c10d8be -RTMPDUMP_MD5 := 33390d59c4eac5ae34ac155804d44fb6 +RTMPDUMP_MD5 := 33390d59c4eac5ae34ac155804d44fb6 b0f9380fc56d42e5a12094c467188de9 RTMPDUMP := rtmpdump-$(RTMPDUMP_VERSION) RTMPDUMP_SUFFIX := tar.gz -RTMPDUMP_URL := http://git.ffmpeg.org/gitweb/rtmpdump.git/snapshot/$(RTMPDUMP_VERSION).$(RTMPDUMP_SUFFIX) +RTMPDUMP_URL := git+https://git.ffmpeg.org/rtmpdump.git;tag=$(RTMPDUMP_VERSION) RTMPDUMP_SOURCE := $(SRCDIR)/$(RTMPDUMP).$(RTMPDUMP_SUFFIX) RTMPDUMP_DIR := $(BUILDDIR)/$(RTMPDUMP) RTMPDUMP_LICENSE := LGPL-2.1-or-later AND GPL-2.0-or-later -- 2.39.2