unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#44256: “guix import cran -a bioconductor FOO” downloads twice
@ 2020-10-27 13:55 zimoun
  2021-02-25 15:28 ` zimoun
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: zimoun @ 2020-10-27 13:55 UTC (permalink / raw)
  To: 44256

Dear,

--8<---------------cut here---------------start------------->8---
$ guix import cran -a bioconductor CATALYST

Starting download of /tmp/guix-file.OPtOW1
From https://bioconductor.org/packages/release/bioc/src/contrib/CATALYST_1.12.2.tar.gz...
 …12.2.tar.gz  10.2MiB                567KiB/s 00:18 [##################] 100.0%

Starting download of /tmp/guix-file.V6sC1Z
From https://bioconductor.org/packages/release/bioc/src/contrib/CATALYST_1.12.2.tar.gz...
 …12.2.tar.gz  10.2MiB                565KiB/s 00:19 [##################] 100.0%
--8<---------------cut here---------------end--------------->8---

I have not investigated more, if the issue is from the importer or from
the information provided by Bioconductor.


All the best,
simon




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#44256: “guix import cran -a bioconductor FOO” downloads twice
  2020-10-27 13:55 bug#44256: “guix import cran -a bioconductor FOO” downloads twice zimoun
@ 2021-02-25 15:28 ` zimoun
  2024-11-29 18:35 ` Ricardo Wurmus
  2024-12-04 11:44 ` Ricardo Wurmus
  2 siblings, 0 replies; 6+ messages in thread
From: zimoun @ 2021-02-25 15:28 UTC (permalink / raw)
  To: 44256

Hi,

On Tue, 27 Oct 2020 at 14:55, zimoun <zimon.toutoune@gmail.com> wrote:

> $ guix import cran -a bioconductor CATALYST
>
> Starting download of /tmp/guix-file.OPtOW1
>>From https://bioconductor.org/packages/release/bioc/src/contrib/CATALYST_1.12.2.tar.gz...
>  …12.2.tar.gz  10.2MiB                567KiB/s 00:18 [##################] 100.0%
>
> Starting download of /tmp/guix-file.V6sC1Z
>>From https://bioconductor.org/packages/release/bioc/src/contrib/CATALYST_1.12.2.tar.gz...
>  …12.2.tar.gz  10.2MiB                565KiB/s 00:19 [##################] 100.0%
>
> I have not investigated more, if the issue is from the importer or from
> the information provided by Bioconductor.

It comes from ’cran->guix-package’ in (guix import cran):

--8<---------------cut here---------------start------------->8---
     (let ((description (fetch-description repo package-name)))
       (if description
           (description->package repo description)
--8<---------------cut here---------------end--------------->8---

where ’fetch-description’ effectively downloads but then
’description->package’ downloads again:

--8<---------------cut here---------------start------------->8---
         (source     (download source-url #:method (cond
                                                    (git? 'git)
                                                    (hg? 'hg)
                                                    (else #f))))
--8<---------------cut here---------------end--------------->8---

This second download is not necessary.  The fix needs some care with the
different repositories.


Cheers,
simon









^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#44256: “guix import cran -a bioconductor FOO” downloads twice
  2020-10-27 13:55 bug#44256: “guix import cran -a bioconductor FOO” downloads twice zimoun
  2021-02-25 15:28 ` zimoun
@ 2024-11-29 18:35 ` Ricardo Wurmus
  2024-12-02 15:02   ` Simon Tournier
  2024-12-04 11:44 ` Ricardo Wurmus
  2 siblings, 1 reply; 6+ messages in thread
From: Ricardo Wurmus @ 2024-11-29 18:35 UTC (permalink / raw)
  To: 44256

Fixed with commit 64d9c7ea3fec163d86dde933471594ef2fe8c356 (on r-team
branch).  This will soon be rebased on top of the master branch and
merged.

-- 
Ricardo




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#44256: “guix import cran -a bioconductor FOO” downloads twice
  2024-11-29 18:35 ` Ricardo Wurmus
@ 2024-12-02 15:02   ` Simon Tournier
  2024-12-02 20:23     ` Ricardo Wurmus
  0 siblings, 1 reply; 6+ messages in thread
From: Simon Tournier @ 2024-12-02 15:02 UTC (permalink / raw)
  To: Ricardo Wurmus, 44256

Hi Ricardo,

On Fri, 29 Nov 2024 at 19:35, Ricardo Wurmus <rekado@elephly.net> wrote:
> Fixed with commit 64d9c7ea3fec163d86dde933471594ef2fe8c356 (on r-team
> branch).  This will soon be rebased on top of the master branch and
> merged.

Cool for the fix!  Hum, I do not find this commit.  Do I miss something?

Cheers,
simon




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#44256: “guix import cran -a bioconductor FOO” downloads twice
  2024-12-02 15:02   ` Simon Tournier
@ 2024-12-02 20:23     ` Ricardo Wurmus
  0 siblings, 0 replies; 6+ messages in thread
From: Ricardo Wurmus @ 2024-12-02 20:23 UTC (permalink / raw)
  To: Simon Tournier; +Cc: 44256

Simon Tournier <zimon.toutoune@gmail.com> writes:

> Hi Ricardo,
>
> On Fri, 29 Nov 2024 at 19:35, Ricardo Wurmus <rekado@elephly.net> wrote:
>> Fixed with commit 64d9c7ea3fec163d86dde933471594ef2fe8c356 (on r-team
>> branch).  This will soon be rebased on top of the master branch and
>> merged.
>
> Cool for the fix!  Hum, I do not find this commit.  Do I miss something?

You didn't miss anything.  The r-team branch keeps getting rebased as
other branches are merged into master, so the commit hash changes.  I'll
try to remember to close this bug once the r-team branch has been
merged.

-- 
Ricardo




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#44256: “guix import cran -a bioconductor FOO” downloads twice
  2020-10-27 13:55 bug#44256: “guix import cran -a bioconductor FOO” downloads twice zimoun
  2021-02-25 15:28 ` zimoun
  2024-11-29 18:35 ` Ricardo Wurmus
@ 2024-12-04 11:44 ` Ricardo Wurmus
  2 siblings, 0 replies; 6+ messages in thread
From: Ricardo Wurmus @ 2024-12-04 11:44 UTC (permalink / raw)
  To: 44256-done

The commit fixing it is f0a93b18b4488c3bb802197aba4a31b28508c902 on the
master branch.

Since this bug was reported, there is a new extraneous download which
does not originate from the importer itself, as discussed here:
https://yhetil.org/guix-devel/87zflkctrz.fsf@elephly.net/

It may be worth opening a new bug report about this.

-- 
Ricardo




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-12-04 11:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-27 13:55 bug#44256: “guix import cran -a bioconductor FOO” downloads twice zimoun
2021-02-25 15:28 ` zimoun
2024-11-29 18:35 ` Ricardo Wurmus
2024-12-02 15:02   ` Simon Tournier
2024-12-02 20:23     ` Ricardo Wurmus
2024-12-04 11:44 ` Ricardo Wurmus

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).