From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53130) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gPCAs-0002ol-Cz for guix-patches@gnu.org; Tue, 20 Nov 2018 14:59:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gPCAr-0002N6-A5 for guix-patches@gnu.org; Tue, 20 Nov 2018 14:59:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33167) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gPCAp-0002Ll-2h for guix-patches@gnu.org; Tue, 20 Nov 2018 14:59:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gPCAp-00072Z-17 for guix-patches@gnu.org; Tue, 20 Nov 2018 14:59:03 -0500 Subject: [bug#33434] [PATCH] gnu: font-ubuntu: Update url. Resent-Message-ID: From: Jan Nieuwenhuizen References: <87sgzxeyfp.fsf@gnu.org> <20181120100832.GC28778@macbook41> Date: Tue, 20 Nov 2018 20:57:48 +0100 In-Reply-To: <20181120100832.GC28778@macbook41> (Efraim Flashner's message of "Tue, 20 Nov 2018 12:08:32 +0200") Message-ID: <875zwro72b.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: Efraim Flashner Cc: 33434@debbugs.gnu.org --=-=-= Content-Type: text/plain Efraim Flashner writes: > On Mon, Nov 19, 2018 at 07:04:26PM +0100, Jan Nieuwenhuizen wrote: > If Ubuntu's archives are like Debian's then when there's a new version > the 0.83.orig tarball will disapear from thier mirrors. For this reason > I've been prefering Debian's gitlab instance and git-download to make > sure the source tarballs don't disapear. > > https://salsa.debian.org/fonts-team/fonts-ubuntu > tag: upstream/0.83 > > According to the debian/watch file, the source code is at > https://assets.ubuntu.com/v1/4cd05122-ubuntu-font-family-sources_0.83.orig.tar.gz Thanks! I have updated the patch to use the git source url. I'll commit this to core-updates tomorrow. Greetings, janneke --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-font-ubuntu-Update-url.patch >From 253bcc8bb85b1c7706d7a1e1d97da067b94bc997 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, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 1195695d7..f9f842820 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -99,13 +99,14 @@ in print. With attention to detail for high resolution rendering.") (name "font-ubuntu") (version "0.83") (source (origin - (method url-fetch) - (uri (string-append - "http://font.ubuntu.com/download/ubuntu-font-family-" - version ".zip")) + (method git-fetch) + (uri (git-reference + (url "https://salsa.debian.org/fonts-team/fonts-ubuntu") + (commit (string-append "upstream/" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0hjvq2x758dx0sfwqhzflns0ns035qm7h6ygskbx1svzg517sva5")))) + "1d2xrjpxy70f3nsgqiggwv6pj06qglf5vj2847pqx60w3ygi903g")))) (build-system font-build-system) (home-page "http://font.ubuntu.com/") (synopsis "The Ubuntu Font Family") -- 2.18.0 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable --=20 Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar=C2=AE http://AvatarAcademy.com --=-=-=--