From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:50825) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hT0UH-0007su-KP for guix-patches@gnu.org; Tue, 21 May 2019 04:51:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hT0UG-0007dQ-Ix for guix-patches@gnu.org; Tue, 21 May 2019 04:51:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53299) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hT0UE-0007bj-6g for guix-patches@gnu.org; Tue, 21 May 2019 04:51:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hT0UE-0006Uy-4W for guix-patches@gnu.org; Tue, 21 May 2019 04:51:06 -0400 Subject: [bug#35822] [PATCH 05/31] gnu: libmateweather: Use mirror://mate/ in source URI. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:50201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hT0TM-00077d-1M for guix-patches@gnu.org; Tue, 21 May 2019 04:50:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hT0TL-0006zg-1v for guix-patches@gnu.org; Tue, 21 May 2019 04:50:11 -0400 Received: from mail-wr1-x441.google.com ([2a00:1450:4864:20::441]:44835) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hT0TK-0006wv-5p for guix-patches@gnu.org; Tue, 21 May 2019 04:50:10 -0400 Received: by mail-wr1-x441.google.com with SMTP id w13so6821180wru.11 for ; Tue, 21 May 2019 01:50:10 -0700 (PDT) From: guy fleury iteriteka Date: Tue, 21 May 2019 10:50:46 +0200 Message-Id: <20190521085112.1985-5-hoonandon@gmail.com> In-Reply-To: <20190521085112.1985-1-hoonandon@gmail.com> References: <20190521085112.1985-1-hoonandon@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35822@debbugs.gnu.org * gnu/packages/mate.scm(libmateweather)[source](uri): Use "mirror://mate/" instead of "https://pub.mate-desktop.org/releases/" directly. --- gnu/packages/mate.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index 1c20fd5..53ef2d8 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -258,14 +258,14 @@ desktop and the mate-about program.") (package (name "libmateweather") (version "1.22.0") - (source (origin - (method url-fetch) - (uri (string-append "https://pub.mate-desktop.org/releases/" - (version-major+minor version) "/" - name "-" version ".tar.xz")) - (sha256 - (base32 - "1ribgcwl4ncfbcf9bkcbxrgc7yzajdnxg12837psngymkqswlp6a")))) + (source + (origin + (method url-fetch) + (uri (string-append "mirror://mate/" (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1ribgcwl4ncfbcf9bkcbxrgc7yzajdnxg12837psngymkqswlp6a")))) (build-system gnu-build-system) (arguments '(#:configure-flags -- 2.21.0