import/cran: Fix Bioconductor updater.
* guix/import/cran.scm (latest-bioconductor-release): Use LATEST-VERSION instead of VERSION, which is always #F.
This commit is contained in:
		
							parent
							
								
									387c486591
								
							
						
					
					
						commit
						6e75790fc0
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
;;; GNU Guix --- Functional package management for GNU
 | 
					;;; GNU Guix --- Functional package management for GNU
 | 
				
			||||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
 | 
					;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Ricardo Wurmus <rekado@elephly.net>
 | 
				
			||||||
;;; Copyright © 2015, 2016, 2017, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
 | 
					;;; Copyright © 2015, 2016, 2017, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
 | 
				
			||||||
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
 | 
					;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
 | 
				
			||||||
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
 | 
					;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
 | 
				
			||||||
| 
						 | 
					@ -732,12 +732,12 @@ s-expression corresponding to that package, or #f on failure."
 | 
				
			||||||
  (define latest-version
 | 
					  (define latest-version
 | 
				
			||||||
    (latest-bioconductor-package-version upstream-name))
 | 
					    (latest-bioconductor-package-version upstream-name))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  (and version
 | 
					  (and latest-version
 | 
				
			||||||
       ;; Bioconductor does not provide signatures.
 | 
					       ;; Bioconductor does not provide signatures.
 | 
				
			||||||
       (upstream-source
 | 
					       (upstream-source
 | 
				
			||||||
        (package (package-name pkg))
 | 
					        (package (package-name pkg))
 | 
				
			||||||
        (version latest-version)
 | 
					        (version latest-version)
 | 
				
			||||||
        (urls (bioconductor-uri upstream-name version))
 | 
					        (urls (bioconductor-uri upstream-name latest-version))
 | 
				
			||||||
        (input-changes
 | 
					        (input-changes
 | 
				
			||||||
         (changed-inputs
 | 
					         (changed-inputs
 | 
				
			||||||
          pkg
 | 
					          pkg
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue