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 629BD158041 for ; Fri, 12 Apr 2024 12:22:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D886E29EB; Fri, 12 Apr 2024 12:21:58 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2470E29E8 for ; Fri, 12 Apr 2024 12:21:57 +0000 (UTC) Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id C34F424002B for ; Fri, 12 Apr 2024 14:21:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1712924514; bh=oikClu9jdi2B+NBRRSS9WJ4DRzZ6Ml5s6wQNeWIVQGk=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version: Content-Transfer-Encoding:From; b=aBNPIfKPq2ZhazcGdSnpeRkv0HRN+R5qbPpr3muHiqZj/xZlYVrEQQkSsemW7C3vB Ev+HTdVZQh7BoyatVEf5CNFxWRf5HgwfK/071aQvQ+ewK4harTXiJV+Pc7uJfboDXi j7YKToHOznNqYw0Iv/sDAn6OPrZRMvhQ2ieZMufKwJxgZQwGahzM2TXOJtILGTycdD 02hnsbX4Vc7Tg43FJWUm2m2uZnIelIeuvJtxu0ENOVAc7SQ5XMxszBqjXZBUUJAGWB uYuA+bXvgp6ckd/e4+oYEVkCPi1Xisx3MHL8prVIPenKfGUmm489Ya9Lh7AdhsxGRX K2byxBjQQfqTA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4VGG010CB4z9rxD; Fri, 12 Apr 2024 14:21:52 +0200 (CEST) From: Lucio Sauer To: gentoo-dev@lists.gentoo.org Cc: Lucio Sauer Subject: [gentoo-dev] [PATCH 1/2] ruby-ng-gnome2.eclass: inline mirror://sourceforge Date: Fri, 12 Apr 2024 12:16:59 +0000 Message-ID: <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: 878568e6-5ac1-468d-8817-c1f1dd79ad29 X-Archives-Hash: 9d35e00b447b910f59aa24a12c790a0d Hi all, 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/ruby-ng-gnome2.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/ruby-ng-gnome2.eclass b/eclass/ruby-ng-gnome2.eclass index e6636811aacc..e10f1e625993 100644 --- a/eclass/ruby-ng-gnome2.eclass +++ b/eclass/ruby-ng-gnome2.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: ruby-ng-gnome2.eclass @@ -44,7 +44,7 @@ BDEPEND="virtual/pkgconfig" ruby_add_bdepend " dev-ruby/pkg-config test? ( >=dev-ruby/test-unit-2 )" -SRC_URI="mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-${PV}.tar.gz" +SRC_URI="https://downloads.sourceforge.net/ruby-gnome2/ruby-gnome2-all-${PV}.tar.gz" HOMEPAGE="https://ruby-gnome.github.io/" LICENSE="LGPL-2.1+" SLOT="0" @@ -52,7 +52,7 @@ if ver_test -ge "3.4.0"; then SRC_URI="https://github.com/ruby-gnome/ruby-gnome/archive/${PV}.tar.gz -> ruby-gnome2-${PV}.tar.gz" RUBY_S=ruby-gnome-${PV}/${RUBY_FAKEGEM_NAME} else - SRC_URI="mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-${PV}.tar.gz" + SRC_URI="https://downloads.sourceforge.net/ruby-gnome2/ruby-gnome2-all-${PV}.tar.gz" RUBY_S=ruby-gnome2-all-${PV}/${RUBY_FAKEGEM_NAME} fi -- 2.43.2