From owner-dev-commits-ports-all@freebsd.org Sun Jul 25 10:47:17 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id AF885658222; Sun, 25 Jul 2021 10:47:17 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GXfrj40Xjz4nhq; Sun, 25 Jul 2021 10:47:17 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 692562250F; Sun, 25 Jul 2021 10:47:17 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16PAlHdb042480; Sun, 25 Jul 2021 10:47:17 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16PAlHVY042479; Sun, 25 Jul 2021 10:47:17 GMT (envelope-from git) Date: Sun, 25 Jul 2021 10:47:17 GMT Message-Id: <202107251047.16PAlHVY042479@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Gleb Popov Subject: git: 1138b7cb7a81 - main - www/youtube_dl: Add Github to MASTER_SITES. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: arrowd X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 1138b7cb7a81f7a0348788a7aca8ccc85aaf1367 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jul 2021 10:47:17 -0000 The branch main has been updated by arrowd: URL: https://cgit.FreeBSD.org/ports/commit/?id=1138b7cb7a81f7a0348788a7aca8ccc85aaf1367 commit 1138b7cb7a81f7a0348788a7aca8ccc85aaf1367 Author: Evgeniy Khramtsov AuthorDate: 2021-07-25 10:44:21 +0000 Commit: Gleb Popov CommitDate: 2021-07-25 10:46:09 +0000 www/youtube_dl: Add Github to MASTER_SITES. The original site is unreachable from IPv6-only networks. While there, switch to using DISTVERSION. PR: 256432 Tested by: arrowd Approved by: multimedia (maintainer timeout) --- www/youtube_dl/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/www/youtube_dl/Makefile b/www/youtube_dl/Makefile index 708fb44b5c82..37c6ecc85b26 100644 --- a/www/youtube_dl/Makefile +++ b/www/youtube_dl/Makefile @@ -1,8 +1,9 @@ PORTNAME= youtube_dl -PORTVERSION= 2021.06.06 +DISTVERSION= 2021.06.06 CATEGORIES= www -MASTER_SITES= https://yt-dl.org/downloads/${PORTVERSION}/ -DISTNAME= youtube-dl-${PORTVERSION} +MASTER_SITES= https://github.com/ytdl-org/youtube-dl/releases/download/${DISTVERSION}/ \ + https://yt-dl.org/downloads/${DISTVERSION}/ +DISTNAME= youtube-dl-${DISTVERSION} # Implicit approval to commit trivial version updates. MAINTAINER= multimedia@FreeBSD.org