From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54994) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gOnuy-0000pR-A4 for guix-patches@gnu.org; Mon, 19 Nov 2018 13:05:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gOnuw-0003uj-AJ for guix-patches@gnu.org; Mon, 19 Nov 2018 13:05:04 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:56939) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gOnuw-0003uW-6O for guix-patches@gnu.org; Mon, 19 Nov 2018 13:05:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gOnuv-0001n0-VK for guix-patches@gnu.org; Mon, 19 Nov 2018 13:05:02 -0500 Subject: [bug#33434] [PATCH] gnu: font-ubuntu: Update url. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54895) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gOnuW-0000Zc-GB for guix-patches@gnu.org; Mon, 19 Nov 2018 13:04:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gOnuV-0003ZA-M4 for guix-patches@gnu.org; Mon, 19 Nov 2018 13:04:36 -0500 From: Jan Nieuwenhuizen Date: Mon, 19 Nov 2018 19:04:26 +0100 Message-ID: <87sgzxeyfp.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 33434@debbugs.gnu.org --=-=-= Content-Type: text/plain I found the previous URL to no longer work. I would like to find a cleaner url. WDYT? Greetings, janneke --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-font-ubuntu-Update-url.patch >From 6d9037aa1ea239812f74b5af3a716341d3b25fa9 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 19 Nov 2018 18:57:27 +0100 Subject: [PATCH] gnu: font-ubuntu: Update url. * gnu/packages/fonts.scm (font-ubuntu): Use new url, update hash. --- gnu/packages/fonts.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 1195695d7..5f1a7585d 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -100,12 +100,15 @@ in print. With attention to detail for high resolution rendering.") (version "0.83") (source (origin (method url-fetch) - (uri (string-append - "http://font.ubuntu.com/download/ubuntu-font-family-" - version ".zip")) + (uri (string-append "https://launchpad.net/" + "ubuntu/+archive/primary/+sourcefiles/" + "ubuntu-font-family-sources/" + "0.83-0ubuntu1/" + "ubuntu-font-family-sources_0.83" + ".orig.tar.gz")) (sha256 (base32 - "0hjvq2x758dx0sfwqhzflns0ns035qm7h6ygskbx1svzg517sva5")))) + "02l31f5lip12csps7xvz77s32gac3siw694xrrw85y1blc7dz5hs")))) (build-system font-build-system) (home-page "http://font.ubuntu.com/") (synopsis "The Ubuntu Font Family") -- 2.18.0 --=-=-=--