From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 40A5149980 for ; Wed, 24 Apr 2024 20:54:03 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id BF85A68D374; Wed, 24 Apr 2024 23:54:00 +0300 (EEST) Received: from mout.gmx.net (mout.gmx.net [212.227.17.22]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id D09FD68D280 for ; Wed, 24 Apr 2024 23:53:53 +0300 (EEST) X-UI-Sender-Class: 724b4f7f-cbec-4199-ad4e-598c01a50d3a Received: from metallschleimette ([91.62.13.127]) by mail.gmx.net (mrgmx105 [212.227.17.168]) with ESMTPSA (Nemesis) id 1Mlf4c-1sQmyB0hzm-00imst for ; Wed, 24 Apr 2024 22:53:53 +0200 Date: Wed, 24 Apr 2024 22:53:51 +0200 To: FFmpeg development discussions and patches Message-ID: References: <20240424200117.1659-1-timo@rothenpieler.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-Provags-ID: V03:K1:NovdDPbIdOdjS7Egyfau2vfp1OzBwz/zQp7wCj+3JCspSjejNUH P/5dnehcxHkXpTgqSEUtKryjsyFqCCNeNJZOY6efwPcEEj8ZBzHgXW6GDBFT+DBKixGtDzX SmUeQjst7LkFfEJ3OR6zZMnM5k17XVtOWkGHTvbQFVRoDY4AB+P1/XlzmJbRtobTrAsus6J H8lzYeakZy54muclA59jw== X-Spam-Flag: NO UI-OutboundReport: notjunk:1;M01:P0:AaQY6XfylAw=;vHxkCCKw/x3fXEeIYyfUUA5+Jnu SnxbMmzfLwBF2mYrPTwO/Y+3FHd5jIMX+H28+SO7yd56rT9XaTDCPkL0WRnnZOmUyfdUeujWG 6xdWdWkPbtwytQ4nnw/J99rlQzlPCH5ZjMgPI3vaOvTK500Tp52+vL6pGre8e22jZT55tfQKH +T3HWvVKxM+YDmCvMXHjp0I+G2d/kztIZinjOQtKWkVhqHE2QjqQ/bCRUKLca4eUomeBLuOt/ /jUz4vywkDM7D02NhsFyf7M4ucuacvD/DFYtzkiEpPg3vUNwIJemAfzuQa47FZOj4CE7zr+iO foZpfGW4YbFteLln+Zdi8Aeqn+uid9SggwpKzqLBnpktwmedGtqWoBD1L5VA2m3n0m1PePTBC cLYoEliIF1M+Wr76/JKVnOPttTBUktstl9vXrT+JFQuokwVp7do80mCxD9fHLCu9/SPKePlgq Y2C5tAfjLOl4pRSXh9Z/qNkcGgUdcCdrLw+IsKykhLM+G8+U3SHovSaLPyu9eOMxTVCKheAym Ss27099Ljc5JSNlKQOTNJZXVy53n70UaQrLAsOUU531txSl38ZZDAH0Gv7V7LeKEbI7etFhvS 6lVxKeojPFXlaQGkD/uO8mmvMekMEqJb1uXqSX8+XPk4pkrqq9a+zsjir0vGM9ATnK0JqRSnT Pi6/I1AYfRzVBtr/dikRdYZR+8PnQg2suiGhElJt3m6kQDInCq0dAWGWpgvhu+z+Ab7zE6lsq taiuC+9rriRhM0JqFRsMh/TdKhUQG02EsuVX3/33mAcz+mkwNw45FefRkh5Wgp/6oed51/UpB O7I7Rmk7d1ibCMvLQnwQ95zcH3rXup3QokZ2lvzS0rxSw= Subject: Re: [FFmpeg-devel] [PATCH] fate: allow https for git URLs X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Alexander Strasser via ffmpeg-devel Reply-To: FFmpeg development discussions and patches Cc: Alexander Strasser Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 2024-04-24 22:26 +0200, Timo Rothenpieler wrote: > On 24.04.2024 22:12, Alexander Strasser via ffmpeg-devel wrote: > > On 2024-04-24 22:01 +0200, Timo Rothenpieler wrote: > > > --- > > > tests/fate.sh | 4 ++-- > > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > > > diff --git a/tests/fate.sh b/tests/fate.sh > > > index c5ee18de80..4081e865ae 100755 > > > --- a/tests/fate.sh > > > +++ b/tests/fate.sh > > > @@ -30,14 +30,14 @@ lock(){ > > > checkout(){ > > > case "$repo" in > > > file:*|/*) src="${repo#file:}" ;; > > > - git:*) git clone --quiet --branch "$branch" "$repo" "$src" ;; > > > + git:*|https:*) git clone --quiet --branch "$branch" "$repo" "$src" ;; > > > esac > > > } > > > > > > update()( > > > cd ${src} || return > > > case "$repo" in > > > - git:*) git fetch --quiet --force && git reset --quiet --hard "origin/$branch" ;; > > > + git:*|https:*) git fetch --quiet --force && git reset --quiet --hard "origin/$branch" ;; > > > esac > > > ) > > > > If you manually clone the repo, you can use whatever you like anyway, since Sorry my initial wording was probably ambiguous. I meant in the repo variable in a fate_config.sh > it never actually uses the URL for anything after the initial clone. The URL isn't used per se, but it's used to decide whether to git fetch or not inside the call to update, isn't it? Alexander _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".