From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: [PATCH] gnu: cairomm: Update to 1.15.1. Date: Fri, 02 Dec 2016 12:08:09 +0100 Message-ID: <87k2bid1wm.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37827) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cClhQ-0005B4-U0 for guix-devel@gnu.org; Fri, 02 Dec 2016 06:08:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cClhL-0002rs-Te for guix-devel@gnu.org; Fri, 02 Dec 2016 06:08:16 -0500 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:47384) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cClhL-0002rX-Nq for guix-devel@gnu.org; Fri, 02 Dec 2016 06:08:11 -0500 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 48C26207A8 for ; Fri, 2 Dec 2016 06:08:11 -0500 (EST) Received: from localhost (128.92-221-147.customer.lyse.net [92.221.147.128]) by mail.messagingengine.com (Postfix) with ESMTPA id D0EB57E050 for ; Fri, 2 Dec 2016 06:08:10 -0500 (EST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --=-=-= Content-Type: text/plain The gnome mirrors appears to have stopped updating this package at 1.12.0. This is the latest version from cairographics.org. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-cairomm-Update-to-1.15.1.patch >From ed1c762e210eb9dfe6845d751b79b234edb6183c Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 30 Nov 2016 19:08:38 +0100 Subject: [PATCH] gnu: cairomm: Update to 1.15.1. * gnu/packages/gtk.scm (cairomm): Update to 1.15.1. [source]: Download from cairographics.org. [home-page]: Use HTTPS. --- gnu/packages/gtk.scm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 8a258b54c..85a0d2318 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -921,15 +921,14 @@ guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview.") (define-public cairomm (package (name "cairomm") - (version "1.12.0") + (version "1.15.1") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/cairomm/" - (version-major+minor version) "/" - name "-" version ".tar.xz")) + (uri (string-append "https://cairographics.org/releases/cairomm-" + version ".tar.gz")) (sha256 (base32 - "1rmgs6zjj2vaxh9hsa0944m23fdn1psycqh7bi984qd8jj1xljm5")))) + "1qkw8lq3iinpcmngny54mwiqavz9ls2mmgrd2swkbn6j3xl5zvhm")))) (build-system gnu-build-system) (arguments ;; The examples lack -lcairo. @@ -940,7 +939,7 @@ guile-gnome-platform (GNOME developer libraries), and guile-gtksourceview.") ("freetype" ,freetype) ("fontconfig" ,fontconfig) ("cairo" ,cairo))) - (home-page "http://cairographics.org/") + (home-page "https://cairographics.org/") (synopsis "C++ bindings to the Cairo 2D graphics library") (description "Cairomm provides a C++ programming interface to the Cairo 2D graphics -- 2.11.0 --=-=-=--