From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#25020: guix refresh does not discover updates if URLs are "non-standard" Date: Mon, 23 Jan 2017 23:14:29 +0100 Message-ID: <87y3y1l8ze.fsf@gnu.org> References: <58372A9C.2000205@goebel-consult.de> <87d1he48so.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVmtD-0003Vm-0N for bug-guix@gnu.org; Mon, 23 Jan 2017 17:15:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVmtB-0007Ki-Pt for bug-guix@gnu.org; Mon, 23 Jan 2017 17:15:03 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:41304) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cVmtB-0007KW-MY for bug-guix@gnu.org; Mon, 23 Jan 2017 17:15:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cVmtB-0002Kk-Hl for bug-guix@gnu.org; Mon, 23 Jan 2017 17:15:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87d1he48so.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Tue, 29 Nov 2016 16:15:03 +0100") 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: h.goebel@goebel-consult.de Cc: 25020@debbugs.gnu.org Hello Hartmut, Do you still experience the problem described in this report? https://bugs.gnu.org/25020 Ludo=E2=80=99. ludo@gnu.org (Ludovic Court=C3=A8s) skribis: >> Hartmut Goebel wrote: >> >>> Hi, >>> >>> I just updated kde-frameworks to 5.28 and found that not all updates >>> have been discovered. >>> >>> Those where the URL is following the standard schema where found: >>> "mirror://kde/stable/frameworks/" (version-major+minor version) "/" name >>> "-" version ".tar.xz")) >>> >>> Those having a different name of the archive or having an additional >>> directory behind the first version-part have not been found. >>> >>> Update found for: >>> >>> (name "extra-cmake-modules") >>> (version "5.27.0") >>> (source (origin >>> (method url-fetch) >>> (uri (string-append >>> "mirror://kde/stable/frameworks/" >>> (version-major+minor version) "/" >>> name "-" version ".tar.xz")) >>> >>> Update not found for (archive-name has "5" appended): >>> >>> (name "oxygen-icons") >>> (version "5.27.0") >>> (source (origin >>> (method url-fetch) >>> (uri (string-append >>> "mirror://kde/stable/frameworks/" >>> (version-major+minor version) "/" >>> name "5" "-" version ".tar.xz")) >>> >>> Update not found for (additional directory level): >>> >>> (name "kross") >>> (version "5.27.0") >>> (source >>> (origin >>> (method url-fetch) >>> (uri (string-append >>> "mirror://kde/stable/frameworks/" >>> (version-major+minor version) "/portingAids/" >>> name "-" version ".tar.xz")) > > Fixed for oxygen-icons in commit > 683c5ab70accb909697717bb61741a7692c52c09. > > I can=E2=80=99t tell about kross because it=E2=80=99s not committed yet. = However, I can > tell the logic behind =E2=80=98latest-kde-release=E2=80=99 in (guix gnu-m= aintenance) > recurses in sub-directories, > > Ludo=E2=80=99.