From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: bug#24026: librecad and dealii depend on relocated muparser source code repo Date: Wed, 20 Jul 2016 02:26:14 -0400 Message-ID: <20160720062614.GA17614@jasmine> References: <87poq9a8a6.fsf@netris.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="W/nzBZO5zC0uMSeA" Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54768) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bPkyJ-0000Bw-Fe for bug-guix@gnu.org; Wed, 20 Jul 2016 02:27:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bPkyG-0003c7-6B for bug-guix@gnu.org; Wed, 20 Jul 2016 02:27:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45505) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bPkyD-0003c1-SI for bug-guix@gnu.org; Wed, 20 Jul 2016 02:27:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1bPkyD-0001mX-NP for bug-guix@gnu.org; Wed, 20 Jul 2016 02:27:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Content-Disposition: inline In-Reply-To: <87poq9a8a6.fsf@netris.org> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Mark H Weaver Cc: 24026@debbugs.gnu.org --W/nzBZO5zC0uMSeA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Jul 19, 2016 at 12:42:57PM -0400, Mark H Weaver wrote: > The dealii, dealii-openmpi, and librecad packages are now failing > due to a missing dependency: > > svn: E160013: Unable to connect to a repository at URL 'http://muparser.googlecode.com/svn/trunk' > svn: E160013: '/svn/trunk' path not found > > It seems that the muparser developers have switched to github. Dealii, dealii-openmpi, and librecad build successfully using the 2.2.5 tarball from the new github repo. The hash of the source has changed, but the version has not. Do you think this will be a problem? I think that `guix package -u` won't work correctly. --W/nzBZO5zC0uMSeA Content-Type: text/x-diff; charset=iso-8859-1 Content-Disposition: attachment; filename="0001-gnu-muparser-Update-source-URL.patch" Content-Transfer-Encoding: 8bit >From bac851145afdf5e76ccf2e246d0ee745901e5e8f Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 20 Jul 2016 02:17:30 -0400 Subject: [PATCH] gnu: muparser: Update source URL. * gnu/packages/maths.scm (muparser)[source]: Update source URL to new location. Use URL-FETCH instead of SVN-FETCH. Update hash. --- gnu/packages/maths.scm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index b8ec213..c55354a 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2016 Roel Janssen ;;; Copyright © 2016 Kei Kebreau ;;; Copyright © 2016 Ludovic Courtès +;;; Copyright © 2016 Leo Famulari ;;; ;;; This file is part of GNU Guix. ;;; @@ -35,7 +36,6 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) - #:use-module (guix svn-download) #:use-module (guix utils) #:use-module (guix build utils) #:use-module (guix build-system cmake) @@ -1796,13 +1796,12 @@ associated functions (eg. contiguous and non-contiguous submatrix views).") (version "2.2.5") (source (origin - (method svn-fetch) - (uri (svn-reference - (url "http://muparser.googlecode.com/svn/trunk/") - (revision 34))) + (method url-fetch) + (uri (string-append "https://github.com/beltoforion/muparser/archive/v" + version ".tar.gz")) (sha256 (base32 - "1d6bdbhx9zj3srwj3m7c9hvr18gnx1fx43h6d25my7q85gicpcwn")))) + "0277qsi5l23jsck1vhn383bmvc2n9l4a1dl5r9bf7hvjv9ayyrh6")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--enable-samples=no") -- 2.9.1 --W/nzBZO5zC0uMSeA--