GNU bug report logs -
#54539
[PATCH 0/6] Start breaking up import cycles
Previous Next
Reported by: Maxime Devos <maximedevos <at> telenet.be>
Date: Wed, 23 Mar 2022 18:48:01 UTC
Severity: normal
Tags: patch
Done: Andreas Enge <andreas <at> enge.fr>
Bug is archived. No further changes may be made.
Full log
Message #176 received at 54539 <at> debbugs.gnu.org (full text, mbox):
See first commit in the series for the procedure.
---
gnu/packages/hurd.scm | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm
index 1dcec3ea3c..2735babc4b 100644
--- a/gnu/packages/hurd.scm
+++ b/gnu/packages/hurd.scm
@@ -31,21 +31,21 @@ (define-module (gnu packages hurd)
#:use-module (guix utils)
#:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
- #:use-module (gnu packages autotools)
- #:use-module (gnu packages compression)
- #:use-module (gnu packages flex)
- #:use-module (gnu packages gawk)
- #:use-module (gnu packages gnupg)
- #:use-module (gnu packages bison)
- #:use-module (gnu packages libdaemon)
- #:use-module (gnu packages linux)
- #:use-module (gnu packages perl)
- #:use-module (gnu packages pkg-config)
- #:use-module (gnu packages base)
- #:use-module (gnu packages bash)
- #:use-module (gnu packages texinfo)
- #:use-module (gnu packages onc-rpc)
- #:use-module (gnu packages xorg) ; libpciaccess
+ #:use-module (gnu packages autotools) ; required by "guix build -d guix --system=i586-gnu"
+ #:autoload (gnu packages compression) (zlib)
+ #:use-module (gnu packages flex) ; required by "guix build -d guix --system=i586-gnu"
+ #:autoload (gnu packages gawk) (gawk)
+ #:autoload (gnu packages gnupg) (libgcrypt)
+ #:use-module (gnu packages bison) ; required by "guix build -d guix --system=i586-gnu"
+ #:autoload (gnu packages libdaemon) (libdaemon)
+ #:autoload (gnu packages linux) (util-linux)
+ #:use-module (gnu packages perl) ; required by "guix build -d guix --system=i586-gnu"
+ #:autoload (gnu packages pkg-config) (pkg-config)
+ #:use-module (gnu packages base) ; required by "guix build -d guix --system=i586-gnu"
+ #:autoload (gnu packages bash) (bash-minimal)
+ #:use-module (gnu packages texinfo) ; required by "guix build -d guix --system=i586-gnu"
+ #:autoload (gnu packages onc-rpc) (libtirpc/hurd)
+ #:autoload (gnu packages xorg) (libpciaccess)
#:use-module (guix git-download)
#:export (hurd-system?
hurd-target?))
--
2.37.2
This bug report was last modified 22 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.