mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
utils: Don’t re-export ‘call-with-temporary-output-file’.
* guix/utils.scm: Remove re-export of ‘call-with-temporary-output-file’. Autoload a number of modules. * guix/download.scm, guix/import/hackage.scm, guix/import/hexpm.scm, guix/import/opam.scm, guix/import/pypi.scm, tests/cpio.scm, tests/egg.scm, tests/opam.scm, tests/publish.scm, tests/store-database.scm, tests/utils.scm: Adjust imports accordingly. Change-Id: I3f5e94631397996a30be2ea4ff8b50a3371e8ee7
This commit is contained in:
parent
6dc238f261
commit
54be7795b5
12 changed files with 39 additions and 33 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2012-2022 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2012-2022, 2024 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2013, 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
|
||||
|
@ -47,11 +47,12 @@
|
|||
#:use-module (rnrs io ports) ;need 'port-position' etc.
|
||||
#:use-module ((rnrs bytevectors) #:select (bytevector-u8-set!))
|
||||
#:use-module (guix memoization)
|
||||
#:use-module ((guix build utils)
|
||||
#:select (dump-port mkdir-p delete-file-recursively
|
||||
call-with-temporary-output-file %xz-parallel-args))
|
||||
#:use-module ((guix build syscalls) #:select (mkdtemp! fdatasync))
|
||||
#:use-module ((guix combinators) #:select (fold2))
|
||||
#:autoload (guix build utils) (dump-port
|
||||
mkdir-p
|
||||
delete-file-recursively
|
||||
%xz-parallel-args)
|
||||
#:autoload (guix build syscalls) (mkdtemp! fdatasync)
|
||||
#:autoload (guix combinators) (fold2)
|
||||
#:use-module (guix diagnostics) ;<location>, &error-location, etc.
|
||||
#:use-module (ice-9 format)
|
||||
#:use-module ((ice-9 iconv) #:prefix iconv:)
|
||||
|
@ -76,9 +77,7 @@
|
|||
|
||||
&fix-hint
|
||||
fix-hint?
|
||||
condition-fix-hint
|
||||
|
||||
call-with-temporary-output-file)
|
||||
condition-fix-hint)
|
||||
#:export (strip-keyword-arguments
|
||||
default-keyword-arguments
|
||||
substitute-keyword-arguments
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue