From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A6166158041 for ; Fri, 12 Apr 2024 12:22:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85AFEE2A01; Fri, 12 Apr 2024 12:22:39 +0000 (UTC) Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34E7BE29F3 for ; Fri, 12 Apr 2024 12:22:39 +0000 (UTC) Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id B822B24002F for ; Fri, 12 Apr 2024 14:22:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1712924557; bh=zkamtM/tI4sVUDPXf2XAOGR76lKe0A8u+LYFEPoQFVE=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version: Content-Transfer-Encoding:From; b=iLEPLjLNxnk+Ae7gTTev9bmQg3CXABfdgbp3BqFq3ApxdeBbW+FTw3xXcaEjG6UKd v8MKfdhIVAMn446NTgtw3Tf9YAvOriKl8gNZlxzuxGYpuHz1uJ0ajnomSgMsnzJwzh YSqvh9+eOl55fJoR/XNz+vYEzGoHJkQl7FmVBFOCX4BRdsnuXcLonSn99bsmUzpfla X93KmAczASC5DStJxtaB7/ka3GQnFC6VRUAWSvmTF8bqmWnCXIVI7F1BdwMPDNcVkE WZp8cdsUY8vyCWR3kflaWeiHDNIdfSGl22UPJajiMqt7ck2wk53T3wwa3wZKmWefCP h2oZZnNmc3Kmg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4VGG0k6nJXz6tmv; Fri, 12 Apr 2024 14:22:30 +0200 (CEST) From: Lucio Sauer To: gentoo-dev@lists.gentoo.org Cc: Lucio Sauer Subject: [gentoo-dev] [PATCH 2/2] stardict.eclass: inline mirror://sourceforge Date: Fri, 12 Apr 2024 12:17:01 +0000 Message-ID: <20240412121656.19039-7-watermanpaint@posteo.net> In-Reply-To: <20240412121656.19039-5-watermanpaint@posteo.net> References: <20240412121656.19039-5-watermanpaint@posteo.net> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 0aded660-4c8c-40e5-9ff3-92e9dc52c41f X-Archives-Hash: bb491b61755a360f6af47c3b71a77027 the following patch is part of a tree-wide effort to inline mirror://sourceforge (https://github.com/gentoo/gentoo/pull/36198). The entry in thirdpartymirrors adds a pointless level of indirection, since sourceforge provides a bouncer service already. Signed-off-by: Lucio Sauer --- eclass/stardict.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/stardict.eclass b/eclass/stardict.eclass index 080c01f92470..b69310c7cb18 100644 --- a/eclass/stardict.eclass +++ b/eclass/stardict.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: stardict.eclass @@ -48,7 +48,7 @@ if [[ -n ${FROM_LANG} && -n ${TO_LANG} ]]; then fi HOMEPAGE="http://stardict.sourceforge.net/" -SRC_URI="mirror://sourceforge/stardict/${DICT_P}.tar.bz2" +SRC_URI="https://downloads.sourceforge.net/stardict/${DICT_P}.tar.bz2" S="${WORKDIR}/${DICT_P}" LICENSE="GPL-2" -- 2.43.2