GNU bug report logs -
#51441
[PATCH] substitutes: keep base's uri-path for Properly construct URL.
Previous Next
Reported by: Z572 <873216071 <at> qq.com>
Date: Wed, 27 Oct 2021 14:12:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#51441: [PATCH] substitutes: keep base's uri-path for Properly construct URL.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 51441 <at> debbugs.gnu.org.
--
51441: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=51441
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hi,
Peng Mei Yu <pengmeiyu <at> riseup.net> skribis:
> Z572 via Guix-patches via writes:
>
>> @@ -158,7 +159,8 @@ (define (narinfo-request cache-url path)
>> "Return an HTTP request for the narinfo of PATH at CACHE-URL."
>> (let* ((base (string->uri cache-url))
>> (ref (build-relative-ref
>> - #:path (string-append (store-path-hash-part path) ".narinfo")))
>> + #:path (string-append (uri-path base) "/"
>> + (store-path-hash-part path) ".narinfo")))
>> (url (resolve-uri-reference ref base))
>> (headers '((User-Agent . "GNU Guile"))))
>> (build-request url #:method 'GET #:headers headers)))
>> --
>
> It seems that the root cause for the problem is that cache-url lacks a
> trailing slash. Therefore the last path component is stripped from
> `base` when we compute (resolve-uri-reference ref base). So I think
> ensuring cache-url ends with a slash ("/") is a better approach.
Indeed. I’ve implemented your suggestion in
e68466de122d94ac3fa75aae234cd5fd89482a5a, and commit
cba0395c99005f94e4ccd6c058362af7443dab12 makes a related adjustment.
Note that we still need to update the ‘guix’ package so you can benefit
from the bug fix. In the meantime you have to pass that trailing slash.
Thank you, and sorry for the delay!
Ludo’.
[Message part 3 (message/rfc822, inline)]
[Message part 4 (text/plain, inline)]
Hello,
Sorry for my english, and i'm not sure ChangeLog is right.
https://mirror.sjtu.edu.cn/guix use customize script to mirror official
substitutes server, at /guix not in / . narinfo-request will forget add /guix to url, so i
can't use substitutes from them, this patch fix it.
[0001-substitutes-keep-base-s-uri-path-for-Properly-constr.patch (text/x-patch, inline)]
From 7fe17965d5336d55ec8b1b7471cbbb34b12e9a0b Mon Sep 17 00:00:00 2001
From: Z572 <873216071 <at> qq.com>
Date: Wed, 27 Oct 2021 21:28:24 +0800
Subject: [PATCH] substitutes: keep base's uri-path for Properly construct URL.
substitutes (narinfo-request): keep BASE's uri-path for properly construct url.
some substitutes server don't use guix publish, them use customize scripts to
mirror official server, if them look likes https://example.com/guix ,
narinfo-request will lost /guix .
---
guix/substitutes.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/guix/substitutes.scm b/guix/substitutes.scm
index a5c554acff..bfbd29623e 100644
--- a/guix/substitutes.scm
+++ b/guix/substitutes.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2014 Nikita Karetnikov <nikita <at> karetnikov.org>
;;; Copyright © 2018 Kyle Meyer <kyle <at> kyleam.com>
;;; Copyright © 2020 Christopher Baines <mail <at> cbaines.net>
+;;; Copyright © 2021 Zheng Junjie <873216071 <at> qq.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -158,7 +159,8 @@ (define (narinfo-request cache-url path)
"Return an HTTP request for the narinfo of PATH at CACHE-URL."
(let* ((base (string->uri cache-url))
(ref (build-relative-ref
- #:path (string-append (store-path-hash-part path) ".narinfo")))
+ #:path (string-append (uri-path base) "/"
+ (store-path-hash-part path) ".narinfo")))
(url (resolve-uri-reference ref base))
(headers '((User-Agent . "GNU Guile"))))
(build-request url #:method 'GET #:headers headers)))
--
2.33.1
[Message part 6 (text/plain, inline)]
--
over
This bug report was last modified 3 years and 158 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.