From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42718) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jPmjU-0006eL-20 for guix-patches@gnu.org; Sat, 18 Apr 2020 08:38:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jPmjS-0000zV-QC for guix-patches@gnu.org; Sat, 18 Apr 2020 08:38:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58817) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jPmjR-0000yQ-Ld for guix-patches@gnu.org; Sat, 18 Apr 2020 08:38:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jPmjR-0003gP-Jb for guix-patches@gnu.org; Sat, 18 Apr 2020 08:38:01 -0400 Subject: [bug#40677] [PATCH 08/30] gnu: libupnp: Bump to 1.8.6; change the download method to git-fetch; add missing dependencies. Resent-Message-ID: From: Mathieu Othacehe References: <20200417003433.5608-1-tona_kosmicznego_smiecia@interia.pl> <20200417003433.5608-8-tona_kosmicznego_smiecia@interia.pl> Date: Sat, 18 Apr 2020 14:37:33 +0200 In-Reply-To: <20200417003433.5608-8-tona_kosmicznego_smiecia@interia.pl> (Jan Wielkiewicz's message of "Fri, 17 Apr 2020 02:34:11 +0200") Message-ID: <87tv1hhsvm.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain 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: Jan Wielkiewicz Cc: 40677@debbugs.gnu.org Do not forget to add your copyright on top of the file. > - (method url-fetch) > - (uri (string-append "mirror://sourceforge/pupnp/pupnp/libUPnP%20" > - version "/" name "-" version ".tar.bz2")) > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/mrjimenez/pupnp.git") > + (commit (string-append "release-" version)))) Seems that this url is redirected to https://github.com/pupnp/pupnp. > (sha256 > (base32 > - "0hzsd7rvfa87b4hxg9yj4xhdfxx9sp09r9sqdl3mqhvmcyw018y5")))) > + "1jlb6qh47513h2simy0zxia5q61w1c31mnwmjqpr2nf832lmnpk4")))) > + (native-inputs > + `(("autoconf" ,autoconf) > + ("automake" ,automake) > + ("libtool" ,libtool) > + ("pkg-config" ,pkg-config))) There's a mix of tab and space characters here. Thanks, Mathieu