unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#52708: [BUG] Guix checkout fails `make check`
@ 2021-12-21 17:21 Christopher Rodriguez
  2021-12-21 17:58 ` Christopher Rodriguez
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Christopher Rodriguez @ 2021-12-21 17:21 UTC (permalink / raw)
  To: 52708


[-- Attachment #1.1.1: Type: text/plain, Size: 2973 bytes --]

                __________________________________________

                 [BUG] GUIX CHECKOUT FAILS `MAKE CHECK`

                                 yewscion
                __________________________________________


Table of Contents
_________________

1. Environment
2. Steps to reproduce
3. Expected Result
4. Actual Result
5. Visual Proof (screenshots, videos, text)
6. Severity/Priority


1 Environment
=============

   - *Device:* Linode Virtual Server, and Lenovo Thinkpad E14.
   - *OS:* Guix System, and a workplace-modified version of Ubuntu.
   - *Commits:* guix: `2c469f04a3bec27b1f49680c638814bc06075b9a`.
   - *Substitutes:* Enabled.
   - *Additional Channels:* None inside of `guix shell --pure -D \
     guix`.
   - *Blast Radius:* Two Failed Checks (guix-pack-relocatable.sh and
     guix-git-autenticate.sh).


2 Steps to reproduce
====================

   1. *Clone:* Run `git clone
       <https://git.savannah.gnu.org/git/guix.git>`.

   2. *Enter Dev Environment:* `cd guix && guix shell --pure -D guix`.

   3. *Bootstrap and Configure:* `./bootstrap && ./configure
       --localstatedir=/var`.

   4. *Make and Check:* `make && make check`.


3 Expected Result
=================

   All tests should pass or be skipped.


4 Actual Result
===============

   2 FAILs, and 1 XFAIL. (guix-pack-relocatable.sh and
     guix-git-autenticate.sh)


5 Visual Proof (screenshots, videos, text)
==========================================

   Attached are personally created logs of each step of the process. For
   further clarity, here is the output of `git -C ~/Downloads/guix log -n
   1` and `guix describe` on my GuixSD install. And because I discovered
   it after the fact, I've also attached the two logfiles created by the
   above process (config.log and testsuite.log).

   #+name git -C ~/Downloads/guix log -n 1
   ,----
   | commit 9834ff5d3293b2af728b41314c18ca7fb2081efe (HEAD -> master, 
origin/master, origin/HEAD)
   | Author: Efraim Flashner <efraim@flashner.co.il>
   | Date:   Tue Dec 21 16:15:03 2021 +0200
   |
   | gnu: binutils-gold: Skip gold testsuite on some architectures.
   |
   |   * gnu/packages/base.scm (binutils-gold)[arguments]: Add a phase 
on some
   |   architecturest to skip the gold testsuite.
   `----

   #+name guix describe
   ,----
   | [16.0] {12:12} ming@gorse:~/$ guix describe
   | Generation 18    Dec 20 2021 13:39:05    (current)
   | guix 84fe3a8
   |   repository URL: https://git.savannah.gnu.org/git/guix.git
   |   branch: master
   |   commit: 84fe3a88179d5a6a5c619c408a4fd4fe2a779652
   | yewscion 84d82fe
   |   repository URL: https://git.sr.ht/~yewscion/yewscion-guix-channel
   |   branch: trunk
   |   commit: 84d82fede37110a34e2df5e1712eb3bf934936cf
   `----


6 Severity/Priority
===================

   5 (Lowest Priority)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1.2: test-suite.log --]
[-- Type: text/x-log; name="test-suite.log", Size: 399008 bytes --]

========================================
   GNU Guix UNKNOWN: ./test-suite.log
========================================

# TOTAL: 2077
# PASS:  2029
# SKIP:  45
# XFAIL: 1
# FAIL:  2
# XPASS: 0
# ERROR: 0

.. contents:: :depth: 2

SKIP: tests/channels
====================

test-name: channel-instance-metadata returns default if .guix-channel does not exist
location: /home/ming/Downloads/guix/tests/channels.scm:117
source:
+ (test-equal
+   "channel-instance-metadata returns default if .guix-channel does not exist"
+   '("/" ())
+   (let ((metadata
+           (channel-instance-metadata instance--boring)))
+     (list (channel-metadata-directory metadata)
+           (channel-metadata-dependencies metadata))))
expected-value: ("/" ())
actual-value: ("/" ())
result: PASS

test-name: channel-instance-metadata and default dependencies
location: /home/ming/Downloads/guix/tests/channels.scm:123
source:
+ (test-equal
+   "channel-instance-metadata and default dependencies"
+   '()
+   (channel-metadata-dependencies
+     (channel-instance-metadata instance--no-deps)))
expected-value: ()
actual-value: ()
result: PASS

test-name: channel-instance-metadata and directory
location: /home/ming/Downloads/guix/tests/channels.scm:127
source:
+ (test-equal
+   "channel-instance-metadata and directory"
+   "/modules"
+   (channel-metadata-directory
+     (channel-instance-metadata
+       instance--sub-directory)))
expected-value: "/modules"
actual-value: "/modules"
result: PASS

test-name: channel-instance-metadata rejects unsupported version
location: /home/ming/Downloads/guix/tests/channels.scm:132
source:
+ (test-equal
+   "channel-instance-metadata rejects unsupported version"
+   1
+   (guard (c ((and (message-condition? c) (error-location? c))
+              (location-line (error-location c))))
+          (channel-instance-metadata
+            instance--unsupported-version)))
expected-value: 1
actual-value: 1
result: PASS

test-name: channel-instance-metadata returns <channel-metadata>
location: /home/ming/Downloads/guix/tests/channels.scm:138
source:
+ (test-assert
+   "channel-instance-metadata returns <channel-metadata>"
+   (every (@@ (guix channels) channel-metadata?)
+          (map channel-instance-metadata
+               (list instance--no-deps
+                     instance--simple
+                     instance--with-dupes))))
actual-value: #t
result: PASS

test-name: channel-instance-metadata dependencies are channels
location: /home/ming/Downloads/guix/tests/channels.scm:145
source:
+ (test-assert
+   "channel-instance-metadata dependencies are channels"
+   (let ((deps ((@@ (guix channels)
+                    channel-metadata-dependencies)
+                (channel-instance-metadata instance--simple))))
+     (match deps (((? channel? dep)) #t) (_ #f))))
actual-value: #t
result: PASS

test-name: latest-channel-instances includes channel dependencies
location: /home/ming/Downloads/guix/tests/channels.scm:152
source:
+ (test-assert
+   "latest-channel-instances includes channel dependencies"
+   (let* ((channel (channel (name 'test) (url "test")))
+          (test-dir
+            (channel-instance-checkout instance--simple)))
+     (mock ((guix git)
+            update-cached-checkout
+            (lambda* (url #:key ref starting-commit)
+              (match url
+                     ("test" (values test-dir "caf3cabba9e" #f))
+                     (_ (values
+                          (channel-instance-checkout instance--no-deps)
+                          "abcde1234"
+                          #f)))))
+           (with-store
+             store
+             (let ((instances
+                     (latest-channel-instances store (list channel))))
+               (and (eq? 2 (length instances))
+                    (lset= eq?
+                           '(test test-channel)
+                           (map (compose
+                                  channel-name
+                                  channel-instance-channel)
+                                instances))))))))
actual-value: #t
result: PASS

test-name: latest-channel-instances excludes duplicate channel dependencies
location: /home/ming/Downloads/guix/tests/channels.scm:171
source:
+ (test-assert
+   "latest-channel-instances excludes duplicate channel dependencies"
+   (let* ((channel (channel (name 'test) (url "test")))
+          (test-dir
+            (channel-instance-checkout instance--with-dupes)))
+     (mock ((guix git)
+            update-cached-checkout
+            (lambda* (url #:key ref starting-commit)
+              (match url
+                     ("test" (values test-dir "caf3cabba9e" #f))
+                     (_ (values
+                          (channel-instance-checkout instance--no-deps)
+                          "abcde1234"
+                          #f)))))
+           (with-store
+             store
+             (let ((instances
+                     (latest-channel-instances store (list channel))))
+               (and (= 2 (length instances))
+                    (lset= eq?
+                           '(test test-channel)
+                           (map (compose
+                                  channel-name
+                                  channel-instance-channel)
+                                instances))
+                    (find (lambda (instance)
+                            (and (eq? (channel-name
+                                        (channel-instance-channel instance))
+                                      'test-channel)
+                                 (string=?
+                                   (channel-commit
+                                     (channel-instance-channel instance))
+                                   "abc1234")))
+                          instances)))))))
actual-value: #<<channel-instance> channel: #<<channel> name: test-channel url: "https://example.com/test-channel" branch: "master" commit: "abc1234" introduction: #f location: ((filename . "guix/channels.scm") (line . 261) (column . 19))> commit: "abcde1234" checkout: "/home/ming/Downloads/guix/test-tmp/store/jd92f4bs77scjgdfip11s1p0g9m0pp60-test-channel-abcde12">
result: PASS

test-name: latest-channel-instances #:validate-pull
location: /home/ming/Downloads/guix/tests/channels.scm:201
source:
+ (test-equal
+   "latest-channel-instances #:validate-pull"
+   'descendant
+   (let/ec
+     return
+     (with-temporary-git-repository
+       directory
+       '((add "a.txt" "A")
+         (commit "first commit")
+         (add "b.scm" "#t")
+         (commit "second commit"))
+       (with-repository
+         directory
+         repository
+         (let* ((commit1 (find-commit repository "first"))
+                (commit2 (find-commit repository "second"))
+                (spec (channel
+                        (url (string-append "file://" directory))
+                        (name 'foo)))
+                (new (channel
+                       (inherit spec)
+                       (commit (oid->string (commit-id commit2)))))
+                (old (channel
+                       (inherit spec)
+                       (commit (oid->string (commit-id commit1))))))
+           (define (validate-pull channel current commit relation)
+             (return
+               (and (eq? channel old)
+                    (string=?
+                      (oid->string (commit-id commit2))
+                      current)
+                    (string=?
+                      (oid->string (commit-id commit1))
+                      commit)
+                    relation)))
+           (with-store
+             store
+             (latest-channel-instances
+               store
+               (list old)
+               #:current-channels
+               (list new)
+               #:validate-pull
+               validate-pull)))))))
result: SKIP

test-name: channel-instances->manifest
location: /home/ming/Downloads/guix/tests/channels.scm:234
source:
+ (test-assert
+   "channel-instances->manifest"
+   (let* ((spec (lambda deps
+                  `(channel
+                     (version 0)
+                     (dependencies
+                       ,@(map (lambda (dep)
+                                `(channel
+                                   (name ,dep)
+                                   (url "http://example.org")))
+                              deps)))))
+          (guix (make-instance #:name 'guix))
+          (instance0 (make-instance #:name 'a))
+          (instance1
+            (make-instance #:name 'b #:spec (spec 'a)))
+          (instance2
+            (make-instance #:name 'c #:spec (spec 'b)))
+          (instance3
+            (make-instance #:name 'd #:spec (spec 'c 'a))))
+     (%graft? #f)
+     (let ((source (channel-instance-checkout guix)))
+       (mkdir (string-append source "/build-aux"))
+       (call-with-output-file
+         (string-append
+           source
+           "/build-aux/build-self.scm")
+         (lambda (port)
+           (write '(begin
+                     (use-modules (guix) (gnu packages bootstrap))
+                     (lambda _ (package->derivation %bootstrap-guile)))
+                  port))))
+     (with-store
+       store
+       (let ()
+         (define manifest
+           (run-with-store
+             store
+             (channel-instances->manifest
+               (list guix
+                     instance0
+                     instance1
+                     instance2
+                     instance3))))
+         (define entries (manifest-entries manifest))
+         (define (depends? drv in out)
+           (let ((set (list->set
+                        (requisites
+                          store
+                          (list (derivation-file-name drv)))))
+                 (in (map derivation-file-name in))
+                 (out (map derivation-file-name out)))
+             (and (every (cut set-contains? set <>) in)
+                  (not (any (cut set-contains? set <>) out)))))
+         (define (lookup name)
+           (run-with-store
+             store
+             (lower-object
+               (manifest-entry-item
+                 (manifest-lookup
+                   manifest
+                   (manifest-pattern (name name)))))))
+         (let ((drv-guix (lookup "guix"))
+               (drv0 (lookup "a"))
+               (drv1 (lookup "b"))
+               (drv2 (lookup "c"))
+               (drv3 (lookup "d")))
+           (and (depends?
+                  drv-guix
+                  '()
+                  (list drv0 drv1 drv2 drv3))
+                (depends? drv0 (list) (list drv1 drv2 drv3))
+                (depends? drv1 (list drv0) (list drv2 drv3))
+                (depends? drv2 (list drv1) (list drv3))
+                (depends? drv3 (list drv2 drv0) (list))))))))
actual-value: #t
result: PASS

test-name: channel-news, no news
location: /home/ming/Downloads/guix/tests/channels.scm:311
source:
+ (test-equal
+   "channel-news, no news"
+   '()
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A") (commit "the commit"))
+     (with-repository
+       directory
+       repository
+       (let ((channel
+               (channel
+                 (url (string-append "file://" directory))
+                 (name 'foo)))
+             (latest (reference-name->oid repository "HEAD")))
+         (channel-news-for-commit
+           channel
+           (oid->string latest))))))
result: SKIP

test-name: channel-news, one entry
location: /home/ming/Downloads/guix/tests/channels.scm:323
source:
+ (test-assert
+   "channel-news, one entry"
+   (with-temporary-git-repository
+     directory
+     `((add ".guix-channel"
+            ,(object->string
+               '(channel (version 0) (news-file "news.scm"))))
+       (commit "first commit")
+       (add "src/a.txt" "A")
+       (commit "second commit")
+       (tag "tag-for-first-news-entry")
+       (add "news.scm"
+            ,(lambda (repository)
+               (let ((previous
+                       (reference-name->oid repository "HEAD")))
+                 (object->string
+                   `(channel-news
+                      (version 0)
+                      (entry (commit ,(oid->string previous))
+                             (title (en "New file!") (eo "Nova dosiero!"))
+                             (body (en "Yeah, a.txt."))))))))
+       (commit "third commit")
+       (add "src/b.txt" "B")
+       (commit "fourth commit")
+       (add "news.scm"
+            ,(lambda (repository)
+               (let ((second
+                       (commit-id
+                         (find-commit repository "second commit")))
+                     (previous
+                       (reference-name->oid repository "HEAD")))
+                 (object->string
+                   `(channel-news
+                      (version 0)
+                      (entry (commit ,(oid->string previous))
+                             (title (en "Another file!"))
+                             (body (en "Yeah, b.txt.")))
+                      (entry (tag "tag-for-first-news-entry")
+                             (title (en "Old news.") (eo "Malnova?oj."))
+                             (body (en "For a.txt"))))))))
+       (commit "fifth commit"))
+     (with-repository
+       directory
+       repository
+       (define (find-commit* message)
+         (oid->string
+           (commit-id (find-commit repository message))))
+       (let ((channel
+               (channel
+                 (url (string-append "file://" directory))
+                 (name 'foo)))
+             (commit1 (find-commit* "first commit"))
+             (commit2 (find-commit* "second commit"))
+             (commit3 (find-commit* "third commit"))
+             (commit4 (find-commit* "fourth commit"))
+             (commit5 (find-commit* "fifth commit")))
+         (and (null? (channel-news-for-commit channel commit2))
+              (lset= string=?
+                     (map channel-news-entry-commit
+                          (channel-news-for-commit channel commit5))
+                     (list commit2 commit4))
+              (lset= equal?
+                     (map channel-news-entry-title
+                          (channel-news-for-commit channel commit5))
+                     '((("en" . "Another file!"))
+                       (("en" . "Old news.") ("eo" . "Malnova?oj."))))
+              (lset= string=?
+                     (map channel-news-entry-commit
+                          (channel-news-for-commit channel commit3))
+                     (list commit2))
+              (lset= string=?
+                     (map channel-news-entry-commit
+                          (channel-news-for-commit channel commit3 commit1))
+                     (list commit2))
+              (lset= string=?
+                     (map channel-news-entry-commit
+                          (channel-news-for-commit channel commit5 commit3))
+                     (list commit4))
+              (lset= string=?
+                     (map channel-news-entry-commit
+                          (channel-news-for-commit channel commit5 commit1))
+                     (list commit4 commit2))
+              (lset= equal?
+                     (map channel-news-entry-tag
+                          (channel-news-for-commit channel commit5 commit1))
+                     '(#f "tag-for-first-news-entry")))))))
result: SKIP

test-name: channel-news, annotated tag
location: /home/ming/Downloads/guix/tests/channels.scm:411
source:
+ (test-assert
+   "channel-news, annotated tag"
+   (with-temporary-git-repository
+     directory
+     `((add ".guix-channel"
+            ,(object->string
+               '(channel (version 0) (news-file "news.scm"))))
+       (add "src/a.txt" "A")
+       (commit "first commit")
+       (tag "tag-for-first-news-entry"
+            "This is an annotated tag.")
+       (add "news.scm"
+            ,(lambda (repository)
+               (let ((previous
+                       (reference-name->oid repository "HEAD")))
+                 (object->string
+                   `(channel-news
+                      (version 0)
+                      (entry (tag "tag-for-first-news-entry")
+                             (title (en "New file!"))
+                             (body (en "Yeah, a.txt."))))))))
+       (commit "second commit"))
+     (with-repository
+       directory
+       repository
+       (define (find-commit* message)
+         (oid->string
+           (commit-id (find-commit repository message))))
+       (let ((channel
+               (channel
+                 (url (string-append "file://" directory))
+                 (name 'foo)))
+             (commit1 (find-commit* "first commit"))
+             (commit2 (find-commit* "second commit")))
+         (and (null? (channel-news-for-commit channel commit1))
+              (lset= equal?
+                     (map channel-news-entry-title
+                          (channel-news-for-commit channel commit2))
+                     '((("en" . "New file!"))))
+              (lset= string=?
+                     (map channel-news-entry-tag
+                          (channel-news-for-commit channel commit2))
+                     (list "tag-for-first-news-entry"))
+              (lset= string=?
+                     (map channel-news-entry-commit
+                          (channel-news-for-commit channel commit2))
+                     (list commit1)))))))
result: SKIP

test-name: latest-channel-instances, missing introduction for 'guix'
location: /home/ming/Downloads/guix/tests/channels.scm:458
source:
+ (test-assert
+   "latest-channel-instances, missing introduction for 'guix'"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "first commit")
+       (add "b.scm" "#t")
+       (commit "second commit"))
+     (with-repository
+       directory
+       repository
+       (let* ((commit1 (find-commit repository "first"))
+              (commit2 (find-commit repository "second"))
+              (channel
+                (channel
+                  (url (string-append "file://" directory))
+                  (name 'guix))))
+         (guard (c ((formatted-message? c)
+                    (->bool
+                      (string-contains
+                        (formatted-message-string c)
+                        "introduction"))))
+                (with-store
+                  store
+                  (latest-channel-instances store (list channel))
+                  #f))))))
result: SKIP

test-name: authenticate-channel, wrong first commit signer
location: /home/ming/Downloads/guix/tests/channels.scm:479
source:
+ (test-equal
+   "authenticate-channel, wrong first commit signer"
+   #t
+   (with-fresh-gnupg-setup
+     (list %ed25519-public-key-file
+           %ed25519-secret-key-file
+           %ed25519bis-public-key-file
+           %ed25519bis-secret-key-file)
+     (with-temporary-git-repository
+       directory
+       `((add ".guix-channel"
+              ,(object->string
+                 '(channel
+                    (version 0)
+                    (keyring-reference "master"))))
+         (add ".guix-authorizations"
+              ,(object->string
+                 `(authorizations
+                    (version 0)
+                    ((,(key-fingerprint %ed25519-public-key-file)
+                      (name "Charlie"))))))
+         (add "signer.key"
+              ,(call-with-input-file
+                 %ed25519-public-key-file
+                 get-string-all))
+         (commit
+           "first commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (add "random" ,(random-text))
+         (commit
+           "second commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file))))
+       (with-repository
+         directory
+         repository
+         (let* ((commit1 (find-commit repository "first"))
+                (commit2 (find-commit repository "second"))
+                (intro (make-channel-introduction
+                         (commit-id-string commit1)
+                         (openpgp-public-key-fingerprint
+                           (read-openpgp-packet
+                             %ed25519bis-public-key-file))))
+                (channel
+                  (channel
+                    (name 'example)
+                    (url (string-append "file://" directory))
+                    (introduction intro))))
+           (guard (c ((formatted-message? c)
+                      (and (string-contains
+                             (formatted-message-string c)
+                             "initial commit")
+                           (equal?
+                             (formatted-message-arguments c)
+                             (list (oid->string (commit-id commit1))
+                                   (key-fingerprint %ed25519-public-key-file)
+                                   (key-fingerprint
+                                     %ed25519bis-public-key-file))))))
+                  (authenticate-channel
+                    channel
+                    directory
+                    (commit-id-string commit2)
+                    #:keyring-reference-prefix
+                    "")
+                  'failed))))))
result: SKIP

test-name: authenticate-channel, .guix-authorizations
location: /home/ming/Downloads/guix/tests/channels.scm:529
source:
+ (test-equal
+   "authenticate-channel, .guix-authorizations"
+   #t
+   (with-fresh-gnupg-setup
+     (list %ed25519-public-key-file
+           %ed25519-secret-key-file
+           %ed25519bis-public-key-file
+           %ed25519bis-secret-key-file)
+     (with-temporary-git-repository
+       directory
+       `((add ".guix-channel"
+              ,(object->string
+                 '(channel
+                    (version 0)
+                    (keyring-reference "channel-keyring"))))
+         (add ".guix-authorizations"
+              ,(object->string
+                 `(authorizations
+                    (version 0)
+                    ((,(key-fingerprint %ed25519-public-key-file)
+                      (name "Charlie"))))))
+         (commit "zeroth commit")
+         (add "a.txt" "A")
+         (commit
+           "first commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (add "b.txt" "B")
+         (commit
+           "second commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (add "c.txt" "C")
+         (commit
+           "third commit"
+           (signer
+             ,(key-fingerprint %ed25519bis-public-key-file)))
+         (branch "channel-keyring")
+         (checkout "channel-keyring")
+         (add "signer.key"
+              ,(call-with-input-file
+                 %ed25519-public-key-file
+                 get-string-all))
+         (add "other.key"
+              ,(call-with-input-file
+                 %ed25519bis-public-key-file
+                 get-string-all))
+         (commit "keyring commit")
+         (checkout "master"))
+       (with-repository
+         directory
+         repository
+         (let* ((commit1 (find-commit repository "first"))
+                (commit2 (find-commit repository "second"))
+                (commit3 (find-commit repository "third"))
+                (intro (make-channel-introduction
+                         (commit-id-string commit1)
+                         (openpgp-public-key-fingerprint
+                           (read-openpgp-packet %ed25519-public-key-file))))
+                (channel
+                  (channel
+                    (name 'example)
+                    (url (string-append "file://" directory))
+                    (introduction intro))))
+           (and (authenticate-channel
+                  channel
+                  directory
+                  (commit-id-string commit2)
+                  #:keyring-reference-prefix
+                  "")
+                (guard (c ((unauthorized-commit-error? c)
+                           (and (oid=? (git-authentication-error-commit c)
+                                       (commit-id commit3))
+                                (bytevector=?
+                                  (openpgp-public-key-fingerprint
+                                    (unauthorized-commit-error-signing-key c))
+                                  (openpgp-public-key-fingerprint
+                                    (read-openpgp-packet
+                                      %ed25519bis-public-key-file))))))
+                       (authenticate-channel
+                         channel
+                         directory
+         Updating channel 'test' from Git repository at 'test'...
Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'...
Updating channel 'test' from Git repository at 'test'...
Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'...
Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'...
                (commit-id-string commit3)
+                         #:keyring-reference-prefix
+                         "")
+                       'failed)))))))
result: SKIP

test-name: latest-channel-instances, authenticate dependency
location: /home/ming/Downloads/guix/tests/channels.scm:598
source:
+ (test-equal
+   "latest-channel-instances, authenticate dependency"
+   #t
+   (with-fresh-gnupg-setup
+     (list %ed25519-public-key-file
+           %ed25519-secret-key-file)
+     (with-temporary-git-repository
+       dependency-directory
+       `((add ".guix-channel"
+              ,(object->string
+                 '(channel
+                    (version 0)
+                    (keyring-reference "master"))))
+         (add ".guix-authorizations"
+              ,(object->string `(authorizations (version 0) ())))
+         (add "signer.key"
+              ,(call-with-input-file
+                 %ed25519-public-key-file
+                 get-string-all))
+         (commit
+           "zeroth commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (add "foo.txt" "evil")
+         (commit "unsigned commit"))
+       (with-repository
+         dependency-directory
+         dependency
+         (let* ((commit0 (find-commit dependency "zeroth"))
+                (commit1 (find-commit dependency "unsigned"))
+                (intro `(channel-introduction
+                          (version 0)
+                          (commit ,(commit-id-string commit0))
+                          (signer
+                            ,(openpgp-format-fingerprint
+                               (openpgp-public-key-fingerprint
+                                 (read-openpgp-packet
+                                   %ed25519-public-key-file)))))))
+           (with-temporary-git-repository
+             directory
+             `((add ".guix-channel"
+                    ,(object->string
+                       `(channel
+                          (version 0)
+                          (dependencies
+                            (channel
+                              (name test-channel)
+                              (url ,dependency-directory)
+                              (introduction ,intro))))))
+               (commit "single commit"))
+             (let ((channel (channel (name 'test) (url directory))))
+               (guard (c ((unsigned-commit-error? c)
+                          (oid=? (git-authentication-error-commit c)
+                                 (commit-id commit1))))
+                      (with-store
+                        store
+                        (latest-channel-instances store (list channel))
+                        'failed)))))))))
result: SKIP


SKIP: tests/cpio
================

test-name: file->cpio-header + write-cpio-header + read-cpio-header
location: /home/ming/Downloads/guix/tests/cpio.scm:37
source:
+ (test-assert
+   "file->cpio-header + write-cpio-header + read-cpio-header"
+   (let* ((file (search-path %load-path "guix.scm"))
+          (header (file->cpio-header file)))
+     (call-with-values
+       (lambda () (open-bytevector-output-port))
+       (lambda (port get-bv)
+         (write-cpio-header header port)
+         (let ((port (open-bytevector-input-port (get-bv))))
+           (equal? header (read-cpio-header port)))))))
actual-value: #t
result: PASS

test-name: bit-identical to GNU cpio's output
location: /home/ming/Downloads/guix/tests/cpio.scm:49
source:
+ (test-assert
+   "bit-identical to GNU cpio's output"
+   (call-with-temporary-output-file
+     (lambda (link _)
+       (delete-file link)
+       (symlink "chbouib" link)
+       (let ((files (cons* "/"
+                           (canonicalize-path
+                             (dirname (search-path %load-path "guix.scm")))
+                           link
+                           (map (compose
+                                  canonicalize-path
+                                  (cut search-path %load-path <>))
+                                '("guix.scm"
+                                  "guix/build/syscalls.scm"
+                                  "guix/packages.scm")))))
+         (call-with-temporary-output-file
+           (lambda (ref-file _)
+             (let ((pipe (open-pipe*
+                           OPEN_WRITE
+                           %cpio-program
+                           "-o"
+                           "-O"
+                           ref-file
+                           "-H"
+                           "newc"
+                           "--null")))
+               (for-each
+                 (lambda (file) (format pipe "~a\x00" file))
+                 files)
+               (and (zero? (close-pipe pipe))
+                    (call-with-temporary-output-file
+                      (lambda (file port)
+                        (write-cpio-archive files port)
+                        (close-port port)
+                        (or (file=? ref-file file)
+                            (throw 'cpio-archives-differ
+                                   files
+                                   ref-file
+                                   file
+                                   (stat:size (stat ref-file))
+                                   (stat:size (stat file))))))))))))))
result: SKIP


SKIP: tests/crate
=================

test-name: guix-package->crate-name
location: /home/ming/Downloads/guix/tests/crate.scm:326
source:
+ (test-equal
+   "guix-package->crate-name"
+   "rustc-serialize"
+   (guix-package->crate-name
+     (dummy-package
+       "rust-rustc-serialize"
+       (source
+         (dummy-origin
+           (uri (crate-uri "rustc-serialize" "1.0")))))))
expected-value: "rustc-serialize"
actual-value: "rustc-serialize"
result: PASS

test-name: crate->guix-package
location: /home/ming/Downloads/guix/tests/crate.scm:335
source:
+ (test-assert
+   "crate->guix-package"
+   (mock ((guix http-client)
+          http-fetch
+          (lambda (url . rest)
+            (match url
+                   ("https://crates.io/api/v1/crates/foo"
+                    (open-input-string test-foo-crate))
+                   ("https://crates.io/api/v1/crates/foo/1.0.3/download"
+                    (set! test-source-hash
+                      (bytevector->nix-base32-string
+                        (sha256
+                          (string->bytevector "empty file\n" "utf-8"))))
+                    (open-input-string "empty file\n"))
+                   ("https://crates.io/api/v1/crates/foo/1.0.3/dependencies"
+                    (open-input-string test-foo-dependencies))
+                   ("https://crates.io/api/v1/crates/leaf-alice"
+                    (open-input-string test-leaf-alice-crate))
+                   ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/download"
+                    (set! test-source-hash
+                      (bytevector->nix-base32-string
+                        (sha256
+                          (string->bytevector "empty file\n" "utf-8"))))
+                    (open-input-string "empty file\n"))
+                   ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/dependencies"
+                    (open-input-string test-leaf-alice-dependencies))
+                   (_ (error "Unexpected URL: " url)))))
+         (match (crate->guix-package "foo")
+                ((define-public 'rust-foo-1
+                   (package
+                     (name "rust-foo")
+                     (version "1.0.3")
+                     (source
+                       (origin
+                         (method url-fetch)
+                         (uri (crate-uri "foo" 'version))
+                         (file-name
+                           (string-append name "-" version ".tar.gz"))
+                         (sha256 (base32 (? string? hash)))))
+                     (build-system 'cargo-build-system)
+                     (arguments
+                       ('quasiquote
+                        (#:skip-build?
+                         #t
+                         #:cargo-inputs
+                         (("rust-leaf-alice"
+                           ('unquote 'rust-leaf-alice-0.7))))))
+                     (home-page "http://example.com")
+                     (synopsis "summary")
+                     (description "summary")
+                     (license (list license:expat license:asl2.0))))
+                 (string=? test-source-hash hash))
+                (x (pk 'fail x #f)))))
result: SKIP

test-name: cargo-recursive-import
location: /home/ming/Downloads/guix/tests/crate.scm:388
source:
+ (test-assert
+   "cargo-recursive-import"
+   (mock ((guix http-client)
+          http-fetch
+          (lambda (url . rest)
+            (match url
+                   ("https://crates.io/api/v1/crates/root"
+                    (open-input-string test-root-crate))
+                   ("https://crates.io/api/v1/crates/root/1.0.4/download"
+                    (set! test-source-hash
+                      (bytevector->nix-base32-string
+                        (sha256
+                          (string->bytevector "empty file\n" "utf-8"))))
+                    (open-input-string "empty file\n"))
+                   ("https://crates.io/api/v1/crates/root/1.0.4/dependencies"
+                    (open-input-string test-root-dependencies))
+                   ("https://crates.io/api/v1/crates/intermediate-a"
+                    (open-input-string test-intermediate-a-crate))
+                   ("https://crates.io/api/v1/crates/intermediate-a/1.0.42/download"
+                    (set! test-source-hash
+                      (bytevector->nix-base32-string
+                        (sha256
+                          (string->bytevector "empty file\n" "utf-8"))))
+                    (open-input-string "empty file\n"))
+                   ("https://crates.io/api/v1/crates/intermediate-a/1.0.42/dependencies"
+                    (open-input-string
+                      test-intermediate-a-dependencies))
+                   ("https://crates.io/api/v1/crates/intermediate-b"
+                    (open-input-string test-intermediate-b-crate))
+                   ("https://crates.io/api/v1/crates/intermediate-b/1.2.3/download"
+                    (set! test-source-hash
+                      (bytevector->nix-base32-string
+                        (sha256
+                          (string->bytevector "empty file\n" "utf-8"))))
+                    (open-input-string "empty file\n"))
+                   ("https://crates.io/api/v1/crates/intermediate-b/1.2.3/dependencies"
+                    (open-input-string
+                      test-intermediate-b-dependencies))
+                   ("https://crates.io/api/v1/crates/leaf-alice"
+                    (open-input-string test-leaf-alice-crate))
+                   ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/download"
+                    (set! test-source-hash
+                      (bytevector->nix-base32-string
+                        (sha256
+                          (string->bytevector "empty file\n" "utf-8"))))
+                    (open-input-string "empty file\n"))
+                   ("https://crates.io/api/v1/crates/leaf-alice/0.7.5/dependencies"
+                    (open-input-string test-leaf-alice-dependencies))
+                   ("https://crates.io/api/v1/crates/leaf-bob"
+                    (open-input-string test-leaf-bob-crate))
+                   ("https://crates.io/api/v1/crates/leaf-bob/3.0.1/download"
+                    (set! test-source-hash
+                      (bytevector->nix-base32-string
+                        (sha256
+                          (string->bytevector "empty file\n" "utf-8"))))
+                    (open-input-string "empty file\n"))
+                   ("https://crates.io/api/v1/crates/leaf-bob/3.0.1/dependencies"
+                    (open-input-string test-leaf-bob-dependencies))
+                   (_ (error "Unexpected URL: " url)))))
+         (match (crate-recursive-import "root")
+                (((define-public 'rust-leaf-alice-0.7
+                    (package
+                      (name "rust-leaf-alice")
+                      (version "0.7.5")
+                      (source
+                        (origin
+                          (method url-fetch)
+                          (uri (crate-uri "leaf-alice" version))
+                          (file-name
+                            (string-append name "-" version ".tar.gz"))
+                          (sha256 (base32 (? string? hash)))))
+                      (build-system cargo-build-system)
+                      (arguments ('quasiquote (#:skip-build? #t)))
+                      (home-page "http://example.com")
+                      (synopsis "summary")
+                      (description "summary")
+                      (license (list license:expat license:asl2.0))))
+                  (define-public 'rust-leaf-bob-3
+                    (package
+                      (name "rust-leaf-bob")
+                      (version "3.0.1")
+                      (source
+                        (origin
+                          (method url-fetch)
+                          (uri (crate-uri "leaf-bob" version))
+                          (file-name
+                            (string-append name "-" version ".tar.gz"))
+                          (sha256 (base32 (? string? hash)))))
+                      (build-system cargo-build-system)
+                      (arguments ('quasiquote (#:skip-build? #t)))
+                      (home-page "http://example.com")
+                      (synopsis "summary")
+                      (description "summary")
+                      (license (list license:expat license:asl2.0))))
+                  (define-public 'rust-intermediate-b-1
+                    (package
+                      (name "rust-intermediate-b")
+                      (version "1.2.3")
+                      (source
+                        (origin
+                          (method url-fetch)
+                          (uri (crate-uri "intermediate-b" version))
+                          (file-name
+                            (string-append name "-" version ".tar.gz"))
+                          (sha256 (base32 (? string? hash)))))
+                      (build-system cargo-build-system)
+                      (arguments
+                        ('quasiquote
+                         (#:skip-build?
+                          #t
+                          #:cargo-inputs
+                          (("rust-leaf-bob" ('unquote rust-leaf-bob-3))))))
+                      (home-page "http://example.com")
+                      (synopsis "summary")
+                      (description "summary")
+                      (license (list license:expat license:asl2.0))))
+                  (define-public 'rust-intermediate-a-1
+                    (package
+                      (name "rust-intermediate-a")
+                      (version "1.0.42")
+                      (source
+                        (origin
+                          (method url-fetch)
+                          (uri (crate-uri "intermediate-a" version))
+                          (file-name
+                            (string-append name "-" version ".tar.gz"))
+                          (sha256 (base32 (? string? hash)))))
+                      (build-system cargo-build-system)
+                      (arguments
+                        ('quasiquote
+                         (#:skip-build?
+                          #t
+                          #:cargo-inputs
+                          (("rust-intermediate-b"
+                            ('unquote rust-intermediate-b-1))
+                           ("rust-leaf-alice"
+                            ('unquote 'rust-leaf-alice-0.7))
+                           ("rust-leaf-bob" ('unquote rust-leaf-bob-3))))))
+                      (home-page "http://example.com")
+                      (synopsis "summary")
+                      (description "summary")
+                      (license (list license:expat license:asl2.0))))
+                  (define-public 'rust-root-1
+                    (package
+                      (name "rust-root")
+                      (version "1.0.4")
+                      (source
+                        (origin
+                          (method url-fetch)
+                          (uri (crate-uri "root" version))
+                          (file-name
+                            (string-append name "-" version ".tar.gz"))
+                          (sha256 (base32 (? string? hash)))))
+                      (build-system cargo-build-system)
+                      (arguments
+                        ('quasiquote
+                         (#:cargo-inputs
+                          (("rust-intermediate-a"
+                            ('unquote rust-intermediate-a-1))
+                           ("rust-intermediate-b"
+                            ('unquote rust-intermediate-b-1))
+                           ("rust-leaf-alice"
+                            ('unquote 'rust-leaf-alice-0.7))
+                           ("rust-leaf-bob" ('unquote rust-leaf-bob-3))))))
+                      (home-page "http://example.com")
+                      (synopsis "summary")
+                      (description "summary")
+                      (license (list license:expat license:asl2.0)))))
+                 #t)
+                (x (pk 'fail x #f)))))
result: SKIP

test-name: licenses: MIT OR Apache-2.0
location: /home/ming/Downloads/guix/tests/crate.scm:562
source:
+ (test-equal
+   "licenses: MIT OR Apache-2.0"
+   '(license:expat license:asl2.0)
+   (string->license "MIT OR Apache-2.0"))
expected-value: (license:expat license:asl2.0)
actual-value: (license:expat license:asl2.0)
result: PASS

test-name: licenses: Apache-2.0 / MIT
location: /home/ming/Downloads/guix/tests/crate.scm:566
source:
+ (test-equal
+   "licenses: Apache-2.0 / MIT"
+   '(license:asl2.0 license:expat)
+   (string->license "Apache-2.0 / MIT"))
expected-value: (license:asl2.0 license:expat)
actual-value: (license:asl2.0 license:expat)
result: PASS

test-name: licenses: Apache-2.0 WITH LLVM-exception
location: /home/ming/Downloads/guix/tests/crate.scm:570
source:
+ (test-equal
+   "licenses: Apache-2.0 WITH LLVM-exception"
+   '(license:asl2.0 unknown-license!)
+   (string->license
+     "Apache-2.0 WITH LLVM-exception"))
expected-value: (license:asl2.0 unknown-license!)
actual-value: (license:asl2.0 unknown-license!)
result: PASS

test-name: licenses: MIT/Apache-2.0 AND BSD-2-Clause
location: /home/ming/Downloads/guix/tests/crate.scm:574
source:
+ (test-equal
+   "licenses: MIT/Apache-2.0 AND BSD-2-Clause"
+   '(license:expat license:asl2.0 unknown-license!)
+   (string->license
+     "MIT/Apache-2.0 AND BSD-2-Clause"))
expected-value: (license:expat license:asl2.0 unknown-license!)
actual-value: (license:expat license:asl2.0 unknown-license!)
result: PASS

test-name: licenses: MIT/Apache-2.0
location: /home/ming/Downloads/guix/tests/crate.scm:578
source:
+ (test-equal
+   "licenses: MIT/Apache-2.0"
+   '(license:expat license:asl2.0)
+   (string->license "MIT/Apache-2.0"))
expected-value: (license:expat license:asl2.0)
actual-value: (license:expat license:asl2.0)
result: PASS

test-name: self-test: rust-docopt 0.8.x is gone, please adjust the test case
location: /home/ming/Downloads/guix/tests/crate.scm:619
source:
+ (test-assert
+   "self-test: rust-docopt 0.8.x is gone, please adjust the test case"
+   (not (null? (find-packages-by-name "rust-docopt" "0.8"))))
actual-value: #t
result: PASS

test-name: cargo-recursive-import-hoors-existing-packages
location: /home/ming/Downloads/guix/tests/crate.scm:623
source:
+ (test-assert
+   "cargo-recursive-import-hoors-existing-packages"
+   (mock ((guix http-client)
+          http-fetch
+          (lambda (url . rest)
+            (match url
+                   ("https://crates.io/api/v1/crates/doctool"
+                    (open-input-string test-doctool-crate))
+                   ("https://crates.io/api/v1/crates/doctool/2.2.2/download"
+                    (set! test-source-hash
+                      (bytevector->nix-base32-string
+                        (sha256
+                          (string->bytevector "empty file\n" "utf-8"))))
+                    (open-input-string "empty file\n"))
+                   ("https://crates.io/api/v1/crates/doctool/2.2.2/dependencies"
+                    (open-input-string test-doctool-dependencies))
+                   (_ (error "Unexpected URL: " url)))))
+         (match (crate-recursive-import "doctool")
+                (((define-public 'rust-doctool-2
+                    (package
+                      (name "rust-doctool")
+                      (version "2.2.2")
+                      (source
+                        (origin
+                          (method url-fetch)
+                          (uri (crate-uri "doctool" version))
+                          (file-name
+                            (string-append name "-" version ".tar.gz"))
+                          (sha256 (base32 (? string? hash)))))
+                      (build-system cargo-build-system)
+                      (arguments
+                        ('quasiquote
+                         (#:cargo-inputs
+                          (("rust-docopt" ('unquote 'rust-docopt-0.8))))))
+                      (home-page "http://example.com")
+                      (synopsis "summary")
+                      (description "summary")
+                      (license (list license:expat license:asl2.0)))))
+                 #t)
+                (x (pk 'fail x #f)))))
result: SKIP


SKIP: tests/git
===============

test-name: commit-difference, linear history
location: /home/ming/Downloads/guix/tests/git.scm:34
source:
+ (test-assert
+   "commit-difference, linear history"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "first commit")
+       (add "b.txt" "B")
+       (commit "second commit")
+       (add "c.txt" "C")
+       (commit "third commit")
+       (add "d.txt" "D")
+       (commit "fourth commit"))
+     (with-repository
+       directory
+       repository
+       (let ((commit1 (find-commit repository "first"))
+             (commit2 (find-commit repository "second"))
+             (commit3 (find-commit repository "third"))
+             (commit4 (find-commit repository "fourth")))
+         (and (lset= eq?
+                     (commit-difference commit4 commit1)
+                     (list commit2 commit3 commit4))
+              (lset= eq?
+                     (commit-difference commit4 commit2)
+                     (list commit3 commit4))
+              (equal?
+                (commit-difference commit3 commit2)
+                (list commit3))
+              (null? (commit-difference commit1 commit4)))))))
result: SKIP

test-name: commit-difference, fork
location: /home/ming/Downloads/guix/tests/git.scm:61
source:
+ (test-assert
+   "commit-difference, fork"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "first commit")
+       (branch "devel")
+       (checkout "devel")
+       (add "devel/1.txt" "1")
+       (commit "first devel commit")
+       (add "devel/2.txt" "2")
+       (commit "second devel commit")
+       (checkout "master")
+       (add "b.txt" "B")
+       (commit "second commit")
+       (add "c.txt" "C")
+       (commit "third commit")
+       (merge "devel" "merge")
+       (add "d.txt" "D")
+       (commit "fourth commit"))
+     (with-repository
+       directory
+       repository
+       (let ((master1 (find-commit repository "first commit"))
+             (master2
+               (find-commit repository "second commit"))
+             (master3 (find-commit repository "third commit"))
+             (master4
+               (find-commit repository "fourth commit"))
+             (devel1 (find-commit repository "first devel"))
+             (devel2 (find-commit repository "second devel"))
+             (merge (find-commit repository "merge")))
+         (and (equal?
+                (commit-difference master4 merge)
+                (list master4))
+              (lset= eq?
+                     (commit-difference master3 master1)
+                     (list master3 master2))
+              (lset= eq?
+                     (commit-difference devel2 master1)
+                     (list devel2 devel1))
+              (lset= eq?
+                     (commit-difference master4 master2)
+                     (list master4 merge master3 devel1 devel2)))))))
result: SKIP

test-name: commit-difference, excluded commits
location: /home/ming/Downloads/guix/tests/git.scm:101
source:
+ (test-assert
+   "commit-difference, excluded commits"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "first commit")
+       (add "b.txt" "B")
+       (commit "second commit")
+       (add "c.txt" "C")
+       (commit "third commit")
+       (add "d.txt" "D")
+       (commit "fourth commit")
+       (add "e.txt" "E")
+       (commit "fifth commit"))
+     (with-repository
+       directory
+       repository
+       (let ((commit1 (find-commit repository "first"))
+             (commit2 (find-commit repository "second"))
+             (commit3 (find-commit repository "third"))
+             (commit4 (find-commit repository "fourth"))
+             (commit5 (find-commit repository "fifth")))
+         (and (lset= eq?
+                     (commit-difference
+                       commit4
+                       commit1
+                       (list commit2))
+                     (list commit3 commit4))
+              (lset= eq?
+                     (commit-difference
+                       commit4
+                       commit1
+                       (list commit3))
+                     (list commit4))
+              (null? (commit-difference
+                       commit4
+                       commit1
+                       (list commit5))))))))
result: SKIP

test-name: commit-relation
location: /home/ming/Downloads/guix/tests/git.scm:126
source:
+ (test-equal
+   "commit-relation"
+   '(self ancestor
+          descendant
+          unrelated
+          unrelated
+          ancestor
+          descendant
+          ancestor
+          descendant)
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "first commit")
+       (branch "hack")
+       (checkout "hack")
+       (add "1.txt" "1")
+       (commit "branch commit")
+       (checkout "master")
+       (add "b.txt" "B")
+       (commit "second commit")
+       (add "c.txt" "C")
+       (commit "third commit")
+       (merge "hack" "merge"))
+     (with-repository
+       directory
+       repository
+       (let ((master1 (find-commit repository "first"))
+             (master2 (find-commit repository "second"))
+             (master3 (find-commit repository "third"))
+             (branch1 (find-commit repository "branch"))
+             (merge (find-commit repository "merge")))
+         (list (commit-relation master3 master3)
+               (commit-relation master1 master3)
+               (commit-relation master3 master1)
+               (commit-relation master2 branch1)
+               (commit-relation branch1 master2)
+               (commit-relation branch1 merge)
+               (commit-relation merge branch1)
+               (commit-relation master1 merge)
+               (commit-relation merge master1))))))
result: SKIP

test-name: remote-refs
location: /home/ming/Downloads/guix/tests/git.scm:166
source:
+ (test-equal
+   "remote-refs"
+   '("refs/heads/develop"
+     "refs/heads/master"
+     "refs/tags/v1.0"
+     "refs/tags/v1.1")
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "v1.0" "release-1.0")
+       (branch "develop")
+       (checkout "develop")
+       (add "b.txt" "B")
+       (commit "Second commit")
+       (tag "v1.1" "release-1.1"))
+     (remote-refs directory)))
result: SKIP

test-name: remote-refs: only tags
location: /home/ming/Downloads/guix/tests/git.scm:181
source:
+ (test-equal
+   "remote-refs: only tags"
+   '("refs/tags/v1.0" "refs/tags/v1.1")
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "v1.0" "Release 1.0")
+       (add "b.txt" "B")
+       (commit "Second commit")
+       (tag "v1.1" "Release 1.1"))
+     (remote-refs directory #:tags? #t)))
result: SKIP


SKIP: tests/git-authenticate
============================

test-name: unsigned commits
location: /home/ming/Downloads/guix/tests/git-authenticate.scm:43
source:
+ (test-assert
+   "unsigned commits"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "first commit")
+       (add "b.txt" "B")
+       (commit "second commit"))
+     (with-repository
+       directory
+       repository
+       (let ((commit1 (find-commit repository "first"))
+             (commit2 (find-commit repository "second")))
+         (guard (c ((unsigned-commit-error? c)
+                    (oid=? (git-authentication-error-commit c)
+                           (commit-id commit1))))
+                (authenticate-commits
+                  repository
+                  (list commit1 commit2)
+                  #:keyring-reference
+                  "master")
+                'failed)))))
result: SKIP

test-name: signed commits, SHA1 signature
location: /home/ming/Downloads/guix/tests/git-authenticate.scm:60
source:
+ (test-assert
+   "signed commits, SHA1 signature"
+   (with-fresh-gnupg-setup
+     (list %ed25519-public-key-file
+           %ed25519-secret-key-file)
+     (call-with-output-file
+       (string-append (getenv "GNUPGHOME") "/gpg.conf")
+       (lambda (port) (display "digest-algo sha1" port)))
+     (with-temporary-git-repository
+       directory
+       `((add "a.txt" "A")
+         (add "signer.key"
+              ,(call-with-input-file
+                 %ed25519-public-key-file
+                 get-string-all))
+         (add ".guix-authorizations"
+              ,(object->string
+                 `(authorizations
+                    (version 0)
+                    ((,(key-fingerprint %ed25519-public-key-file)
+                      (name "Charlie"))))))
+         (commit
+           "first commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file))))
+       (with-repository
+         directory
+         repository
+         (let ((commit (find-commit repository "first")))
+           (guard (c ((unsigned-commit-error? c)
+                      (oid=? (git-authentication-error-commit c)
+                             (commit-id commit))))
+                  (authenticate-commits
+                    repository
+                    (list commit)
+                    #:keyring-reference
+                    "master")
+                  'failed))))))
result: SKIP

test-name: signed commits, default authorizations
location: /home/ming/Downloads/guix/tests/git-authenticate.scm:89
source:
+ (test-assert
+   "signed commits, default authorizations"
+   (with-fresh-gnupg-setup
+     (list %ed25519-public-key-file
+           %ed25519-secret-key-file)
+     (with-temporary-git-repository
+       directory
+       `((add "signer.key"
+              ,(call-with-input-file
+                 %ed25519-public-key-file
+                 get-string-all))
+         (commit "zeroth commit")
+         (add "a.txt" "A")
+         (commit
+           "first commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (add "b.txt" "B")
+         (commit
+           "second commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file))))
+       (with-repository
+         directory
+         repository
+         (let ((commit1 (find-commit repository "first"))
+               (commit2 (find-commit repository "second")))
+           (authenticate-commits
+             repository
+             (list commit1 commit2)
+             #:default-authorizations
+             (list (openpgp-public-key-fingerprint
+                     (read-openpgp-packet %ed25519-public-key-file)))
+             #:keyring-reference
+             "master"))))))
result: SKIP

test-name: signed commits, .guix-authorizations
location: /home/ming/Downloads/guix/tests/git-authenticate.scm:113
source:
+ (test-assert
+   "signed commits, .guix-authorizations"
+   (with-fresh-gnupg-setup
+     (list %ed25519-public-key-file
+           %ed25519-secret-key-file)
+     (with-temporary-git-repository
+       directory
+       `((add "signer.key"
+              ,(call-with-input-file
+                 %ed25519-public-key-file
+                 get-string-all))
+         (add ".guix-authorizations"
+              ,(object->string
+                 `(authorizations
+                    (version 0)
+                    ((,(key-fingerprint %ed25519-public-key-file)
+                      (name "Charlie"))))))
+         (commit "zeroth commit")
+         (add "a.txt" "A")
+         (commit
+           "first commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (add ".guix-authorizations"
+              ,(object->string `(authorizations (version 0) ())))
+         (commit
+           "second commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (add "b.txt" "B")
+         (commit
+           "third commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file))))
+       (with-repository
+         directory
+         repository
+         (let ((commit1 (find-commit repository "first"))
+               (commit2 (find-commit repository "second"))
+               (commit3 (find-commit repository "third")))
+           (and (authenticate-commits
+                  repository
+                  (list commit1 commit2)
+                  #:keyring-reference
+                  "master")
+                (guard (c ((unauthorized-commit-error? c)
+                           (and (oid=? (git-authentication-error-commit c)
+                                       (commit-id commit3))
+                                (bytevector=?
+                                  (openpgp-public-key-fingerprint
+                                    (unauthorized-commit-error-signing-key c))
+                                  (openpgp-public-key-fingerprint
+                                    (read-openpgp-packet
+                                      %ed25519-public-key-file))))))
+                       (authenticate-commits
+                         repository
+                         (list commit1 commit2 commit3)
+                         #:keyring-reference
+                         "master")
+                       'failed)))))))
result: SKIP

test-name: signed commits, .guix-authorizations, unauthorized merge
location: /home/ming/Downloads/guix/tests/git-authenticate.scm:161
source:
+ (test-assert
+   "signed commits, .guix-authorizations, unauthorized merge"
+   (with-fresh-gnupg-setup
+     (list %ed25519-public-key-file
+           %ed25519-secret-key-file
+           %ed25519bis-public-key-file
+           %ed25519bis-secret-key-file)
+     (with-temporary-git-repository
+       directory
+       `((add "signer1.key"
+              ,(call-with-input-file
+                 %ed25519-public-key-file
+                 get-string-all))
+         (add "signer2.key"
+              ,(call-with-input-file
+                 %ed25519bis-public-key-file
+                 get-string-all))
+         (add ".guix-authorizations"
+              ,(object->string
+                 `(authorizations
+                    (version 0)
+                    ((,(key-fingerprint %ed25519-public-key-file)
+                      (name "Alice"))))))
+         (commit "zeroth commit")
+         (add "a.txt" "A")
+         (commit
+           "first commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (branch "devel")
+         (checkout "devel")
+         (add "devel/1.txt" "1")
+         (commit
+           "first devel commit"
+           (signer
+             ,(key-fingerprint %ed25519bis-public-key-file)))
+         (checkout "master")
+         (add "b.txt" "B")
+         (commit
+           "second commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (merge "devel"
+                "merge"
+                (signer
+                  ,(key-fingerprint %ed25519-public-key-file))))
+       (with-repository
+         directory
+         repository
+         (let ((master1 (find-commit repository "first commit"))
+               (master2
+                 (find-commit repository "second commit"))
+               (devel1
+                 (find-commit repository "first devel commit"))
+               (merge (find-commit repository "merge")))
+           (define (correct? c commit)
+             (and (oid=? (git-authentication-error-commit c)
+                         (commit-id commit))
+                  (bytevector=?
+                    (openpgp-public-key-fingerprint
+                      (unauthorized-commit-error-signing-key c))
+                    (openpgp-public-key-fingerprint
+                      (read-openpgp-packet %ed25519bis-public-key-file)))))
+           (and (authenticate-commits
+                  repository
+                  (list master1 master2)
+                  #:keyring-reference
+                  "master")
+                (guard (c ((unauthorized-commit-error? c)
+                           (correct? c devel1)))
+                       (authenticate-commits
+                         repository
+                         (list master1 devel1)
+                         #:keyring-reference
+                         "master")
+                       #f)
+                (guard (c ((unauthorized-commit-error? c)
+                           (correct? c devel1)))
+                       (authenticate-commits
+                         repository
+                         (list master1 master2 devel1 merge)
+                         #:keyring-reference
+                         "master")
+                       #f)))))))
result: SKIP

test-name: signed commits, .guix-authorizations, authorized merge
location: /home/ming/Downloads/guix/tests/git-authenticate.scm:230
source:
+ (test-assert
+   "signed commits, .guix-authorizations, authorized merge"
+   (with-fresh-gnupg-setup
+     (list %ed25519-public-key-file
+           %ed25519-secret-key-file
+           %ed25519bis-public-key-file
+           %ed25519bis-secret-key-file)
+     (with-temporary-git-repository
+       directory
+       `((add "signer1.key"
+              ,(call-with-input-file
+                 %ed25519-public-key-file
+                 get-string-all))
+         (add "signer2.key"
+              ,(call-with-input-file
+                 %ed25519bis-public-key-file
+                 get-string-all))
+         (add ".guix-authorizations"
+              ,(object->string
+                 `(authorizations
+                    (version 0)
+                    ((,(key-fingerprint %ed25519-public-key-file)
+                      (name "Alice"))))))
+         (commit "zeroth commit")
+         (add "a.txt" "A")
+         (commit
+           "first commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (branch "devel")
+         (checkout "devel")
+         (add ".guix-authorizations"
+              ,(object->string
+                 `(authorizations
+                    (version 0)
+                    ((,(key-fingerprint %ed25519-public-key-file)
+                      (name "Alice"))
+                     (,(key-fingerprint %ed25519bis-public-key-file))))))
+         (commit
+           "first devel commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (add "devel/2.txt" "2")
+         (commit
+           "second devel commit"
+           (signer
+             ,(key-fingerprint %ed25519bis-public-key-file)))
+         (checkout "master")
+         (add "b.txt" "B")
+         (commit
+           "second commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (merge "devel"
+                "merge"
+                (signer
+                  ,(key-fingerprint %ed25519-public-key-file)))
+         (add "c.txt" "C")
+         (commit
+           "third commit"
+           (signer
+             ,(key-fingerprint %ed25519bis-public-key-file))))
+       (with-repository
+         directory
+         repository
+         (let ((master1 (find-commit repository "first commit"))
+               (master2
+                 (find-commit repository "second commit"))
+               (devel1
+                 (find-commit repository "first devel commit"))
+               (devel2
+                 (find-commit repository "second devel commit"))
+               (merge (find-commit repository "merge"))
+               (master3 (find-commit repository "third commit")))
+           (authenticate-commits
+             repository
+             (list master1
+                   master2
+                   devel1
+                   devel2
+                   merge
+                   master3)
+             #:keyring-reference
+             "master"))))))
result: SKIP

test-name: signed commits, .guix-authorizations removed
location: /home/ming/Downloads/guix/tests/git-authenticate.scm:290
source:
+ (test-assert
+   "signed commits, .guix-authorizations removed"
+   (with-fresh-gnupg-setup
+     (list %ed25519-public-key-file
+           %ed25519-secret-key-file)
+     (with-temporary-git-repository
+       directory
+       `((add "signer.key"
+              ,(call-with-input-file
+                 %ed25519-public-key-file
+                 get-string-all))
+         (add ".guix-authorizations"
+              ,(object->string
+                 `(authorizations
+                    (version 0)
+                    ((,(key-fingerprint %ed25519-public-key-file)
+                      (name "Charlie"))))))
+         (commit "zeroth commit")
+         (add "a.txt" "A")
+         (commit
+           "first commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (remove ".guix-authorizations")
+         (commit
+           "second commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file)))
+         (add "b.txt" "B")
+         (commit
+           "third commit"
+           (signer
+             ,(key-fingerprint %ed25519-public-key-file))))
+       (with-repository
+         directory
+         repository
+         (let ((commit1 (find-commit repository "first"))
+               (commit2 (find-commit repository "second"))
+               (commit3 (find-commit repository "third")))
+           (and (authenticate-commits
+                  repository
+                  (list commit1 commit2)
+                  #:keyring-reference
+                  "master")
+                (guard (c ((unauthorized-commit-error? c)
+                           (oid=? (git-authentication-error-commit c)
+                                  (commit-id commit2))))
+                       (authenticate-commits
+                         repository
+                         (list commit1 commit2 commit3)
+                         #:keyring-reference
+                         "master")
+                       'failed)))))))
result: SKIP


SKIP: tests/hackage
===================


Starting download of /tmp/guix-file.4J6vyQ
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.4J6vyQ
From https://web.archive.org/web/20211221114313/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114313/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.4J6vyQ...
could not find its Disarchive specification
failed to download "/tmp/guix-file.4J6vyQ" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"

Starting download of /tmp/guix-file.sEOu7Z
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.sEOu7Z
From https://web.archive.org/web/20211221114315/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114315/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.sEOu7Z...
could not find its Disarchive specification
failed to download "/tmp/guix-file.sEOu7Z" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"

Starting download of /tmp/guix-file.QHkq0q
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.QHkq0q
From https://web.archive.org/web/20211221114317/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114317/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.QHkq0q...
could not find its Disarchive specification
failed to download "/tmp/guix-file.QHkq0q" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"

Starting download of /tmp/guix-file.T3H4yC
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.T3H4yC
From https://web.archive.org/web/20211221114319/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114319/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.T3H4yC...
could not find its Disarchive specification
failed to download "/tmp/guix-file.T3H4yC" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"

Starting download of /tmp/guix-file.9cCBkI
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.9cCBkI
From https://web.archive.org/web/20211221114321/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114321/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.9cCBkI...
could not find its Disarchive specification
failed to download "/tmp/guix-file.9cCBkI" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"

Starting download of /tmp/guix-file.ZzqY9s
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.ZzqY9s
From https://web.archive.org/web/20211221114322/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114322/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.ZzqY9s...
could not find its Disarchive specification
failed to download "/tmp/guix-file.ZzqY9s" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"

Starting download of /tmp/guix-file.5yuboJ
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.5yuboJ
From https://web.archive.org/web/20211221114324/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114324/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.5yuboJ...
could not find its Disarchive specification
failed to download "/tmp/guix-file.5yuboJ" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"

Starting download of /tmp/guix-file.HTxINj
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.HTxINj
From https://web.archive.org/web/20211221114325/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114325/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.HTxINj...
could not find its Disarchive specification
failed to download "/tmp/guix-file.HTxINj" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"
Syntax error: unexpected token : (ghc-options (-Wall)) (at line 11, column 2)
Syntax error: unexpected end of input

Starting download of /tmp/guix-file.pNtB8Q
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.pNtB8Q
From https://web.archive.org/web/20211221114327/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114327/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.pNtB8Q...
could not find its Disarchive specification
failed to download "/tmp/guix-file.pNtB8Q" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"

Starting download of /tmp/guix-file.TYVIDF
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.TYVIDF
From https://web.archive.org/web/20211221114328/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114328/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.TYVIDF...
could not find its Disarchive specification
failed to download "/tmp/guix-file.TYVIDF" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"
test-name: hackage->guix-package test 1
location: /home/ming/Downloads/guix/tests/hackage.scm:189
source:
+ (test-assert
+   "hackage->guix-package test 1"
+   (eval-test-with-cabal test-cabal-1 match-ghc-foo))
actual-value: #t
result: PASS

test-name: hackage->guix-package test 2
location: /home/ming/Downloads/guix/tests/hackage.scm:192
source:
+ (test-assert
+   "hackage->guix-package test 2"
+   (eval-test-with-cabal test-cabal-2 match-ghc-foo))
actual-value: #t
result: PASS

test-name: hackage->guix-package test 3
location: /home/ming/Downloads/guix/tests/hackage.scm:195
source:
+ (test-assert
+   "hackage->guix-package test 3"
+   (eval-test-with-cabal
+     test-cabal-3
+     match-ghc-foo
+     #:cabal-environment
+     '(("impl" . "ghc-7.8"))))
actual-value: #t
result: PASS

test-name: hackage->guix-package test 4
location: /home/ming/Downloads/guix/tests/hackage.scm:199
source:
+ (test-assert
+   "hackage->guix-package test 4"
+   (eval-test-with-cabal
+     test-cabal-4
+     match-ghc-foo
+     #:cabal-environment
+     '(("impl" . "ghc-7.8"))))
actual-value: #t
result: PASS

test-name: hackage->guix-package test 5
location: /home/ming/Downloads/guix/tests/hackage.scm:203
source:
+ (test-assert
+   "hackage->guix-package test 5"
+   (eval-test-with-cabal
+     test-cabal-5
+     match-ghc-foo
+     #:cabal-environment
+     '(("impl" . "ghc-7.8"))))
actual-value: #t
result: PASS

test-name: hackage->guix-package test 6
location: /home/ming/Downloads/guix/tests/hackage.scm:226
source:
+ (test-assert
+   "hackage->guix-package test 6"
+   (eval-test-with-cabal
+     test-cabal-6
+     match-ghc-foo-6))
actual-value: #t
result: PASS

test-name: hackage->guix-package test multiline desc (layout)
location: /home/ming/Downloads/guix/tests/hackage.scm:244
source:
+ (test-assert
+   "hackage->guix-package test multiline desc (layout)"
+   (eval-test-with-cabal
+     test-cabal-multiline-layout
+     match-ghc-foo))
actual-value: #t
result: PASS

test-name: hackage->guix-package test multiline desc (braced)
location: /home/ming/Downloads/guix/tests/hackage.scm:264
source:
+ (test-assert
+   "hackage->guix-package test multiline desc (braced)"
+   (eval-test-with-cabal
+     test-cabal-multiline-braced
+     match-ghc-foo))
actual-value: #t
result: PASS


;;; (fail #f #f)
test-name: hackage->guix-package test mixed layout
location: /home/ming/Downloads/guix/tests/hackage.scm:284
source:
+ (test-assert
+   "hackage->guix-package test mixed layout"
+   (eval-test-with-cabal
+     test-cabal-mixed-layout
+     match-ghc-foo))
actual-value: #f
result: XFAIL

test-name: hackage->guix-package test flag executable
location: /home/ming/Downloads/guix/tests/hackage.scm:309
source:
+ (test-assert
+   "hackage->guix-package test flag executable"
+   (eval-test-with-cabal
+     test-cabal-flag-executable
+     match-ghc-foo))
actual-value: #t
result: PASS

test-name: hackage->guix-package test cabal revision
location: /home/ming/Downloads/guix/tests/hackage.scm:349
source:
+ (test-assert
+   "hackage->guix-package test cabal revision"
+   (eval-test-with-cabal
+     test-cabal-revision
+     match-ghc-foo-revision))
actual-value: #t
result: PASS

test-name: read-cabal test 1
location: /home/ming/Downloads/guix/tests/hackage.scm:352
source:
+ (test-assert
+   "read-cabal test 1"
+   (match (call-with-input-string
+            test-read-cabal-1
+            read-cabal)
+          ((("name" ("test-me"))
+            ('section
+             'library
+             (('if
+               ('flag "base4point8")
+               (("build-depends" ("base >= 4.8 && < 5")))
+               (('if
+                 ('flag "base4")
+                 (("build-depends" ("base >= 4 && < 4.8")))
+                 (('if
+                   ('flag "base3")
+                   (("build-depends" ("base >= 3 && < 4")))
+                   (("build-depends" ("base < 3"))))))))
+              ('if
+               ('or
+                ('flag "base4point8")
+                ('and ('flag "base4") ('flag "base3")))
+               (("build-depends" ("random")))

Starting download of /tmp/guix-file.0AP7tt
From https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "Not Found"

Starting download of /tmp/guix-file.0AP7tt
From https://web.archive.org/web/20211221114329/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz...
download failed "https://web.archive.org/web/20211221114329/https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz" 404 "NOT FOUND"
Trying to use Disarchive to assemble /tmp/guix-file.0AP7tt...
could not find its Disarchive specification
failed to download "/tmp/guix-file.0AP7tt" from "https://hackage.haskell.org/package/foo/foo-1.0.0.tar.gz"
+               ())
+              ("build-depends" ("containers"))
+              ("exposed-modules" ("Test.QuickCheck.Exception")))))
+           #t)
+          (x (pk 'fail x #f))))
actual-value: #t
result: PASS

test-name: hackage->guix-package test cabal import
location: /home/ming/Downloads/guix/tests/hackage.scm:406
source:
+ (test-assert
+   "hackage->guix-package test cabal import"
+   (eval-test-with-cabal
+     test-cabal-import
+     match-ghc-foo-import))
actual-value: #t
result: PASS


SKIP: tests/import-git
======================

test-name: latest-git-tag-version: no custom prefix, suffix, and delimiter
location: /home/ming/Downloads/guix/tests/import-git.scm:50
source:
+ (test-equal
+   "latest-git-tag-version: no custom prefix, suffix, and delimiter"
+   "1.0.1"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "1.0.1" "Release 1.0.1"))
+     (let ((package (make-package directory "1.0.0")))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: custom prefix, no suffix and delimiter
location: /home/ming/Downloads/guix/tests/import-git.scm:60
source:
+ (test-equal
+   "latest-git-tag-version: custom prefix, no suffix and delimiter"
+   "1.0.1"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "prefix-1.0.1" "Release 1.0.1"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((release-tag-prefix . "prefix-")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: custom suffix, no prefix and delimiter
location: /home/ming/Downloads/guix/tests/import-git.scm:71
source:
+ (test-equal
+   "latest-git-tag-version: custom suffix, no prefix and delimiter"
+   "1.0.1"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "1.0.1-suffix-123" "Release 1.0.1"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((release-tag-suffix . "-suffix-[0-9]*")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: custom delimiter, no prefix and suffix
location: /home/ming/Downloads/guix/tests/import-git.scm:82
source:
+ (test-equal
+   "latest-git-tag-version: custom delimiter, no prefix and suffix"
+   "2021.09.07"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "2021-09-07" "Release 2021-09-07"))
+     (let ((package
+             (make-package
+               directory
+               "2021-09-06"
+               '((release-tag-version-delimiter . "-")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: empty delimiter, no prefix and suffix
location: /home/ming/Downloads/guix/tests/import-git.scm:93
source:
+ (test-equal
+   "latest-git-tag-version: empty delimiter, no prefix and suffix"
+   "20210907"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "20210907" "Release 20210907"))
+     (let ((package
+             (make-package
+               directory
+               "20210906"
+               '((release-tag-version-delimiter . "")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: custom prefix and suffix, no delimiter
location: /home/ming/Downloads/guix/tests/import-git.scm:104
source:
+ (test-equal
+   "latest-git-tag-version: custom prefix and suffix, no delimiter"
+   "2.0.0"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "Release-2.0.0suffix-1" "Release 2.0.0"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((release-tag-prefix . "Release-")
+                 (release-tag-suffix . "suffix-[0-9]")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: custom prefix, suffix, and delimiter
location: /home/ming/Downloads/guix/tests/import-git.scm:116
source:
+ (test-equal
+   "latest-git-tag-version: custom prefix, suffix, and delimiter"
+   "2.0.0"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "Release-2_0_0suffix-1" "Release 2.0.0"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((release-tag-prefix . "Release-")
+                 (release-tag-suffix . "suffix-[0-9]")
+                 (release-tag-version-delimiter . "_")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: only pre-releases available
location: /home/ming/Downloads/guix/tests/import-git.scm:129
source:
+ (test-equal
+   "latest-git-tag-version: only pre-releases available"
+   #f
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "2.0.0-rc1" "Release candidate for 2.0.0"))
+     (let ((package (make-package directory "1.0.0")))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: accept pre-releases
location: /home/ming/Downloads/guix/tests/import-git.scm:139
source:
+ (test-equal
+   "latest-git-tag-version: accept pre-releases"
+   "2.0.0-rc1"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "2.0.0-rc1" "Release candidate for 2.0.0"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((accept-pre-releases? . #t)))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: accept pre-releases, and custom prefix
location: /home/ming/Downloads/guix/tests/import-git.scm:150
source:
+ (test-equal
+   "latest-git-tag-version: accept pre-releases, and custom prefix"
+   "2.0.0-rc1"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "version-2.0.0-rc1"
+            "Release candidate for 2.0.0"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((accept-pre-releases? . #t)
+                 (release-tag-prefix . "version-")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: accept pre-releases, and custom suffix
location: /home/ming/Downloads/guix/tests/import-git.scm:162
source:
+ (test-equal
+   "latest-git-tag-version: accept pre-releases, and custom suffix"
+   "2.0.0-rc1"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "2.0.0-rc1-suffix"
+            "Release candidate for 2.0.0"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((accept-pre-releases? . #t)
+                 (release-tag-suffix . "-suffix")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: accept pre-releases, delimiter conflicts with pre-release part
location: /home/ming/Downloads/guix/tests/import-git.scm:174
source:
+ (test-equal
+   "latest-git-tag-version: accept pre-releases, delimiter conflicts with pre-release part"
+   "2.0.0_alpha"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "2_0_0_alpha" "Alpha release for 2.0.0"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((accept-pre-releases? . #t)
+                 (release-tag-version-delimiter . "_")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: accept pre-releases, and custom suffix and prefix
location: /home/ming/Downloads/guix/tests/import-git.scm:186
source:
+ (test-equal
+   "latest-git-tag-version: accept pre-releases, and custom suffix and prefix"
+   "2.0.0-alpha"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "prefix123-2.0.0-alpha-suffix"
+            "Alpha release for 2.0.0"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((accept-pre-releases? . #t)
+                 (release-tag-prefix . "prefix[0-9]{3}-")
+                 (release-tag-suffix . "-suffix")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: accept pre-releases, and custom suffix, prefix, and delimiter
location: /home/ming/Downloads/guix/tests/import-git.scm:199
source:
+ (test-equal
+   "latest-git-tag-version: accept pre-releases, and custom suffix, prefix, and delimiter"
+   "2.0.0-alpha"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "prefix123-2-0-0-alpha-suffix"
+            "Alpha release for 2.0.0"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((accept-pre-releases? . #t)
+                 (release-tag-prefix . "prefix[0-9]{3}-")
+                 (release-tag-suffix . "-suffix")
+                 (release-tag-version-delimiter . "-")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: accept pre-releases, no delimiter, and custom suffix, prefix
location: /home/ming/Downloads/guix/tests/import-git.scm:213
source:
+ (test-equal
+   "latest-git-tag-version: accept pre-releases, no delimiter, and custom suffix, prefix"
+   "2alpha"
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "prefix123-2alpha-suffix"
+            "Alpha release for version 2"))
+     (let ((package
+             (make-package
+               directory
+               "1.0.0"
+               '((accept-pre-releases? . #t)
+                 (release-tag-prefix . "prefix[0-9]{3}-")
+                 (release-tag-suffix . "-suffix")
+                 (release-tag-version-delimiter . "")))))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: no tags found
location: /home/ming/Downloads/guix/tests/import-git.scm:227
source:
+ (test-equal
+   "latest-git-tag-version: no tags found"
+   #f
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A") (commit "First commit"))
+     (let ((package (make-package directory "1.0.0")))
+       (latest-git-tag-version package))))
result: SKIP

test-name: latest-git-tag-version: no valid tags found
location: /home/ming/Downloads/guix/tests/import-git.scm:236
source:
+ (test-equal
+   "latest-git-tag-version: no valid tags found"
+   #f
+   (with-temporary-git-repository
+     directory
+     '((add "a.txt" "A")
+       (commit "First commit")
+       (tag "Test" "Test tag"))
+     (let ((package (make-package directory "1.0.0")))
+       (latest-git-tag-version package))))
result: SKIP


SKIP: tests/inferior
====================

test-name: open-inferior
location: /home/ming/Downloads/guix/tests/inferior.scm:54
source:
+ (test-equal
+   "open-inferior"
+   '(42 #t)
+   (let ((inferior
+           (open-inferior
+             %top-builddir
+             #:command
+             "scripts/guix")))
+     (and (inferior? inferior)
+          (let ((a (inferior-eval '(apply * '(6 7)) inferior))
+                (b (inferior-eval
+                     '(@ (gnu packages base) coreutils)
+                     inferior)))
+            (close-inferior inferior)
+            (list a (inferior-object? b))))))
expected-value: (42 #t)
actual-value: (42 #t)
result: PASS

test-name: &inferior-exception
location: /home/ming/Downloads/guix/tests/inferior.scm:65
source:
+ (test-equal
+   "&inferior-exception"
+   '(a b c d)
+   (let ((inferior
+           (open-inferior
+             %top-builddir
+             #:command
+             "scripts/guix")))
+     (guard (c ((inferior-exception? c)
+                (close-inferior inferior)
+                (and (eq? inferior (inferior-exception-inferior c))
+                     (match (inferior-exception-stack c)
+                            (((_ (files lines columns)) ..1)
+                             (member "guix/repl.scm" files)))
+                     (inferior-exception-arguments c))))
+            (inferior-eval '(throw 'a 'b 'c 'd) inferior)
+            'badness)))
expected-value: (a b c d)
actual-value: (a b c d)
result: PASS

test-name: &inferior-exception, legacy mode
location: /home/ming/Downloads/guix/tests/inferior.scm:79
source:
+ (test-equal
+   "&inferior-exception, legacy mode"
+   '(a b c d)
+   (let ((inferior (open-inferior %top-builddir)))
+     (guard (c ((inferior-exception? c)
+                (close-inferior inferior)
+                (and (eq? inferior (inferior-exception-inferior c))
+                     (inferior-exception-arguments c))))
+            (inferior-eval '(throw 'a 'b 'c 'd) inferior)
+            'badness)))
expected-value: (a b c d)
actual-value: (a b c d)
result: PASS

test-name: inferior-packages
location: /home/ming/Downloads/guix/tests/inferior.scm:91
source:
+ (test-equal
+   "inferior-packages"
+   (take (sort (fold-packages
+                 (lambda (package lst)
+                   (cons (list (package-name package)
+                               (package-version package)
+                               (package-home-page package)
+                               (package-location package))
+                         lst))
+                 '())
+               (lambda (x y) (string<? (car x) (car y))))
+         10)
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (packages (inferior-packages inferior)))
+     (and (every string?
+                 (map inferior-package-synopsis packages))
+          (let ()
+            (define result
+              (take (sort (map (lambda (package)
+                                 (list (inferior-package-name package)
+                                       (inferior-package-version package)
+                                       (inferior-package-home-page package)
+                                       (inferior-package-location package)))
+                               packages)
+                          (lambda (x y) (string<? (car x) (car y))))
+                    10))
+            (close-inferior inferior)
+            result))))
expected-value: (("0ad" "0.0.25b-alpha" "https://play0ad.com" #<<location> file: "gnu/packages/games.scm" line: 6592 column: 2>) ("0ad-data" "0.0.25b-alpha" "https://play0ad.com" #<<location> file: "gnu/packages/games.scm" line: 6545 column: 2>) ("0xffff" "0.9" "https://github.com/pali/0xFFFF" #<<location> file: "gnu/packages/flashing-tools.scm" line: 106 column: 2>) ("389-ds-base" "1.4.4.17" "https://directory.fedoraproject.org" #<<location> file: "gnu/packages/openldap.scm" line: 204 column: 2>) ("4dtris" "0.4.3" "https://launchpad.net/4dtris/" #<<location> file: "gnu/packages/games.scm" line: 8622 column: 2>) ("4store" "1.1.6" "https://github.com/4store/4store" #<<location> file: "gnu/packages/databases.scm" line: 175 column: 2>) ("4ti2" "1.6.9" "http://www.4ti2.de/" #<<location> file: "gnu/packages/maths.scm" line: 675 column: 2>) ("7kaa" "2.15.4p1" "https://7kfans.com/" #<<location> file: "gnu/packages/games.scm" line: 11988 column: 2>) ("a2jmidid" "9" "https://github.com/jackaudio/a2jmidid" #<<location> file: "gnu/packages/music.scm" line: 6741 column: 2>) ("a2ps" "4.14" "https://www.gnu.org/software/a2ps/" #<<location> file: "gnu/packages/pretty-print.scm" line: 51 column: 2>))
actual-value: (("0ad" "0.0.25b-alpha" "https://play0ad.com" #<<location> file: "gnu/packages/games.scm" line: 6592 column: 2>) ("0ad-data" "0.0.25b-alpha" "https://play0ad.com" #<<location> file: "gnu/packages/games.scm" line: 6545 column: 2>) ("0xffff" "0.9" "https://github.com/pali/0xFFFF" #<<location> file: "gnu/packages/flashing-tools.scm" line: 106 column: 2>) ("389-ds-base" "1.4.4.17" "https://directory.fedoraproject.org" #<<location> file: "gnu/packages/openldap.scm" line: 204 column: 2>) ("4dtris" "0.4.3" "https://launchpad.net/4dtris/" #<<location> file: "gnu/packages/games.scm" line: 8622 column: 2>) ("4store" "1.1.6" "https://github.com/4store/4store" #<<location> file: "gnu/packages/databases.scm" line: 175 column: 2>) ("4ti2" "1.6.9" "http://www.4ti2.de/" #<<location> file: "gnu/packages/maths.scm" line: 675 column: 2>) ("7kaa" "2.15.4p1" "https://7kfans.com/" #<<location> file: "gnu/packages/games.scm" line: 11988 column: 2>) ("a2jmidid" "9" "https://github.com/jackaudio/a2jmidid" #<<location> file: "gnu/packages/music.scm" line: 6741 column: 2>) ("a2ps" "4.14" "https://www.gnu.org/software/a2ps/" #<<location> file: "gnu/packages/pretty-print.scm" line: 51 column: 2>))
result: PASS

test-name: inferior-available-packages
location: /home/ming/Downloads/guix/tests/inferior.scm:120
source:
+ (test-equal
+   "inferior-available-packages"
+   (take (sort (fold-available-packages
+                 (lambda* (name
+                           version
+                           result
+                           #:key
+                           supported?
+                           deprecated?
+                           #:allow-other-keys)
+                   (if (and supported? (not deprecated?))
+                     (alist-cons name version result)
+                     result))
+                 '())
+               (lambda (x y) (string<? (car x) (car y))))
+         10)
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (packages (inferior-available-packages inferior)))
+     (close-inferior inferior)
+     (take (sort packages
+                 (lambda (x y) (string<? (car x) (car y))))
+           10)))
expected-value: (("0ad" . "0.0.25b-alpha") ("0ad-data" . "0.0.25b-alpha") ("0xffff" . "0.9") ("389-ds-base" . "1.4.4.17") ("4dtris" . "0.4.3") ("4store" . "1.1.6") ("4ti2" . "1.6.9") ("7kaa" . "2.15.4p1") ("a2jmidid" . "9") ("a2ps" . "4.14"))
actual-value: (("0ad" . "0.0.25b-alpha") ("0ad-data" . "0.0.25b-alpha") ("0xffff" . "0.9") ("389-ds-base" . "1.4.4.17") ("4dtris" . "0.4.3") ("4store" . "1.1.6") ("4ti2" . "1.6.9") ("7kaa" . "2.15.4p1") ("a2jmidid" . "9") ("a2ps" . "4.14"))
result: PASS

test-name: lookup-inferior-packages
location: /home/ming/Downloads/guix/tests/inferior.scm:140
source:
+ (test-equal
+   "lookup-inferior-packages"
+   (let ((->list
+           (lambda (package)
+             (list (package-name package)
+                   (package-version package)
+                   (package-location package)))))
+     (list (map ->list (find-packages-by-name "guile" #f))
+           (map ->list
+                (find-packages-by-name "guile" "2.2"))))
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (->list
+            (lambda (package)
+              (list (inferior-package-name package)
+                    (inferior-package-version package)
+                    (inferior-package-location package))))
+          (lst1 (map ->list
+                     (lookup-inferior-packages inferior "guile")))
+          (lst2 (map ->list
+                     (lookup-inferior-packages inferior "guile" "2.2"))))
+     (close-inferior inferior)
+     (list lst1 lst2)))
expected-value: ((("guile" "3.0.7" #<<location> file: "gnu/packages/guile.scm" line: 305 column: 2>) ("guile" "2.2.7" #<<location> file: "gnu/packages/guile.scm" line: 246 column: 2>) ("guile" "2.2.4" #<<location> file: "gnu/packages/guile.scm" line: 292 column: 2>) ("guile" "2.0.14" #<<location> file: "gnu/packages/guile.scm" line: 146 column: 2>) ("guile" "1.8.8" #<<location> file: "gnu/packages/guile.scm" line: 75 column: 2>)) (("guile" "2.2.7" #<<location> file: "gnu/packages/guile.scm" line: 246 column: 2>) ("guile" "2.2.4" #<<location> file: "gnu/packages/guile.scm" line: 292 column: 2>)))
actual-value: ((("guile" "3.0.7" #<<location> file: "gnu/packages/guile.scm" line: 305 column: 2>) ("guile" "2.2.7" #<<location> file: "gnu/packages/guile.scm" line: 246 column: 2>) ("guile" "2.2.4" #<<location> file: "gnu/packages/guile.scm" line: 292 column: 2>) ("guile" "2.0.14" #<<location> file: "gnu/packages/guile.scm" line: 146 column: 2>) ("guile" "1.8.8" #<<location> file: "gnu/packages/guile.scm" line: 75 column: 2>)) (("guile" "2.2.7" #<<location> file: "gnu/packages/guile.scm" line: 246 column: 2>) ("guile" "2.2.4" #<<location> file: "gnu/packages/guile.scm" line: 292 column: 2>)))
result: PASS

test-name: lookup-inferior-packages and eq?-ness
location: /home/ming/Downloads/guix/tests/inferior.scm:161
source:
+ (test-assert
+   "lookup-inferior-packages and eq?-ness"
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (lst1 (lookup-inferior-packages inferior "guile"))
+          (lst2 (lookup-inferior-packages inferior "guile")))
+     (close-inferior inferior)
+     (every eq? lst1 lst2)))
actual-value: #t
result: PASS

test-name: inferior-package-inputs
location: /home/ming/Downloads/guix/tests/inferior.scm:169
source:
+ (test-equal
+   "inferior-package-inputs"
+   (let ((->list
+           (match-lambda
+             ((label (? package? package) . rest)
+              `(,label
+                (package
+                  ,(package-name package)
+                  ,(package-version package)
+                  ,(package-location package))
+                ,@rest)))))
+     (list (map ->list (package-inputs guile-3.0-latest))
+           (map ->list
+                (package-native-inputs guile-3.0-latest))
+           (map ->list
+                (package-propagated-inputs guile-3.0-latest))))
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (guile (first (lookup-inferior-packages inferior "guile")))
+          (->list
+            (match-lambda
+              ((label (? inferior-package? package) . rest)
+               `(,label
+                 (package
+                   ,(inferior-package-name package)
+                   ,(inferior-package-version package)
+                   ,(inferior-package-location package))
+                 ,@rest))))
+          (result
+            (list (map ->list (inferior-package-inputs guile))
+                  (map ->list
+                       (inferior-package-native-inputs guile))
+                  (map ->list
+                       (inferior-package-propagated-inputs guile)))))
+     (close-inferior inferior)
+     result))
expected-value: ((("libffi" (package "libffi" "3.3" #<<location> file: "gnu/packages/libffi.scm" line: 44 column: 2>)) ("bash" (package "bash-minimal" "5.1.8" #<<location> file: "gnu/packages/bash.scm" line: 215 column: 2>))) (("pkgconfig" (package "pkg-config" "0.29.2" #<<location> file: "gnu/packages/pkg-config.scm" line: 36 column: 2>))) (("libunistring" (package "libunistring" "0.9.10" #<<location> file: "gnu/packages/libunistring.scm" line: 35 column: 2>)) ("bdw-gc" (package "libgc" "8.0.4" #<<location> file: "gnu/packages/bdw-gc.scm" line: 33 column: 2>))))
actual-value: ((("libffi" (package "libffi" "3.3" #<<location> file: "gnu/packages/libffi.scm" line: 44 column: 2>)) ("bash" (package "bash-minimal" "5.1.8" #<<location> file: "gnu/packages/bash.scm" line: 215 column: 2>))) (("pkgconfig" (package "pkg-config" "0.29.2" #<<location> file: "gnu/packages/pkg-config.scm" line: 36 column: 2>))) (("libunistring" (package "libunistring" "0.9.10" #<<location> file: "gnu/packages/libunistring.scm" line: 35 column: 2>)) ("bdw-gc" (package "libgc" "8.0.4" #<<location> file: "gnu/packages/bdw-gc.scm" line: 33 column: 2>))))
result: PASS

test-name: inferior-package-search-paths
location: /home/ming/Downloads/guix/tests/inferior.scm:199
source:
+ (test-equal
+   "inferior-package-search-paths"
+   (package-native-search-paths guile-3.0)
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (guile (first (lookup-inferior-packages inferior "guile")))
+          (result
+            (inferior-package-native-search-paths guile)))
+     (close-inferior inferior)
+     result))
expected-value: (#<<search-path-specification> variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #<<search-path-specification> variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>)
actual-value: (#<<search-path-specification> variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #<<search-path-specification> variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>)
result: PASS

test-name: inferior-eval-with-store
location: /home/ming/Downloads/guix/tests/inferior.scm:208
source:
+ (test-equal
+   "inferior-eval-with-store"
+   (add-text-to-store %store "foo" "Hello, world!")
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix")))
+     (inferior-eval-with-store
+       inferior
+       %store
+       '(lambda (store)
+          (add-text-to-store store "foo" "Hello, world!")))))
expected-value: "/home/ming/Downloads/guix/test-tmp/store/4fbqrqd9ghfl4gavjprsz1z4kanjcypp-foo"
actual-value: "/home/ming/Downloads/guix/test-tmp/store/4fbqrqd9ghfl4gavjprsz1z4kanjcypp-foo"
result: PASS

test-name: inferior-eval-with-store, &store-protocol-error
location: /home/ming/Downloads/guix/tests/inferior.scm:217
source:
+ (test-assert
+   "inferior-eval-with-store, &store-protocol-error"
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix")))
+     (guard (c ((store-protocol-error? c)
+                (string-contains
+                  (store-protocol-error-message c)
+                  "invalid character")))
+            (inferior-eval-with-store
+              inferior
+              %store
+              '(lambda (store)
+                 (add-text-to-store store "we|rd/?!@" "uh uh")))
+            #f)))
actual-value: 0
result: PASS

test-name: inferior-eval-with-store, exception
location: /home/ming/Downloads/guix/tests/inferior.scm:229
source:
+ (test-equal
+   "inferior-eval-with-store, exception"
+   '(the-answer = 42)
+   (let ((inferior
+           (open-inferior
+             %top-builddir
+             #:command
+             "scripts/guix")))
+     (guard (c ((inferior-exception? c)
+                (close-inferior inferior)
+                (inferior-exception-arguments c)))
+            (inferior-eval-with-store
+              inferior
+              %store
+              '(lambda (store) (throw 'the-answer '= 42))))))
expected-value: (the-answer = 42)
actual-value: (the-answer = 42)
result: PASS

test-name: inferior-eval-with-store, not a procedure
location: /home/ming/Downloads/guix/tests/inferior.scm:240
source:
+ (test-equal
+   "inferior-eval-with-store, not a procedure"
+   'wrong-type-arg
+   (let ((inferior
+           (open-inferior
+             %top-builddir
+             #:command
+             "scripts/guix")))
+     (guard (c ((inferior-exception? c)
+                (close-inferior inferior)
+                (car (inferior-exception-arguments c))))
+            (inferior-eval-with-store
+              inferior
+              %store
+              '(+ 1 2)))))
expected-value: wrong-type-arg
actual-value: wrong-type-arg
result: PASS

test-name: inferior-package-derivation
location: /home/ming/Downloads/guix/tests/inferior.scm:249
source:
+ (test-equal
+   "inferior-package-derivation"
+   (map derivation-file-name
+        (list (package-derivation
+                %store
+                %bootstrap-guile
+                "x86_64-linux")
+              (package-derivation
+                %store
+                %bootstrap-guile
+                "armhf-linux")))
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (packages (inferior-packages inferior))
+          (guile (find (lambda (package)
+                         (string=?
+                           (package-name %bootstrap-guile)
+                           (inferior-package-name package)))
+                       packages)))
+     (map derivation-file-name
+          (list (inferior-package-derivation
+                  %store
+                  guile
+                  "x86_64-linux")
+                (inferior-package-derivation
+                  %store
+                  guile
+                  "armhf-linux")))))
expected-value: ("/home/ming/Downloads/guix/test-tmp/store/dsafyxad2kmkf5vqzx6hij9041d52jwn-guile-bootstrap-2.0.drv" "/home/ming/Downloads/guix/test-tmp/store/gasfvzrhc97w25jjjqy1fz2nqyfgk6gw-guile-bootstrap-2.0.drv")
actual-value: ("/home/ming/Downloads/guix/test-tmp/store/dsafyxad2kmkf5vqzx6hij9041d52jwn-guile-bootstrap-2.0.drv" "/home/ming/Downloads/guix/test-tmp/store/gasfvzrhc97w25jjjqy1fz2nqyfgk6gw-guile-bootstrap-2.0.drv")
result: PASS

test-name: inferior-package-replacement
location: /home/ming/Downloads/guix/tests/inferior.scm:267
source:
+ (test-equal
+   "inferior-package-replacement"
+   (package-derivation
+     %store
+     (package-replacement sqlite)
+     "x86_64-linux")
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (packages (inferior-packages inferior)))
+     (match (lookup-inferior-packages
+              inferior
+              (package-name sqlite)
+              (package-version sqlite))
+            ((inferior-sqlite rest ...)
+             (inferior-package-derivation
+               %store
+               (inferior-package-replacement inferior-sqlite)
+               "x86_64-linux")))))
result: SKIP

test-name: inferior-package->manifest-entry
location: /home/ming/Downloads/guix/tests/inferior.scm:283
source:
+ (test-equal
+   "inferior-package->manifest-entry"
+   (manifest-entry->list
+     (package->manifest-entry
+       (first (find-best-packages-by-name "guile" #f))))
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (guile (first (lookup-inferior-packages inferior "guile")))
+          (entry (inferior-package->manifest-entry guile)))
+     (close-inferior inferior)
+     (manifest-entry->list entry)))
expected-value: ("guile" "3.0.7" "out" (#<<search-path-specification> variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #<<search-path-specification> variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ())))
actual-value: ("guile" "3.0.7" "out" (#<<search-path-specification> variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #<<search-path-specification> variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ())))
result: PASS

test-name: packages->manifest
location: /home/ming/Downloads/guix/tests/inferior.scm:293
source:
+ (test-equal
+   "packages->manifest"
+   (map manifest-entry->list
+        (manifest-entries
+          (packages->manifest
+            (find-best-packages-by-name "guile" #f))))
+   (let* ((inferior
+            (open-inferior
+              %top-builddir
+              #:command
+              "scripts/guix"))
+          (guile (first (lookup-inferior-packages inferior "guile")))
+          (manifest (packages->manifest (list guile))))
+     (close-inferior inferior)
+     (map manifest-entry->list
+          (manifest-entries manifest))))
expected-value: (("guile" "3.0.7" "out" (#<<search-path-specification> variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #<<search-path-specification> variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ()))))
actual-value: (("guile" "3.0.7" "out" (#<<search-path-specification> variable: "GUILE_LOAD_PATH" files: ("share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f> #<<search-path-specification> variable: "GUILE_LOAD_COMPILED_PATH" files: ("lib/guile/3.0/site-ccache" "share/guile/site/3.0") separator: ":" file-type: directory file-pattern: #f>) (("libunistring" "0.9.10" "out" () ()) ("libgc" "8.0.4" "out" () ()))))
result: PASS


SKIP: tests/pypi
================

test-name: guix-package->pypi-name, old URL style
location: /home/ming/Downloads/guix/tests/pypi.scm:154
source:
+ (test-equal
+   "guix-package->pypi-name, old URL style"
+   "psutil"
+   (guix-package->pypi-name
+     (dummy-package
+       "foo"
+       (source
+         (dummy-origin
+           (uri "https://pypi.org/packages/source/p/psutil/psutil-4.3.0.tar.gz"))))))
expected-value: "psutil"
actual-value: "psutil"
result: PASS

test-name: guix-package->pypi-name, new URL style
location: /home/ming/Downloads/guix/tests/pypi.scm:162
source:
+ (test-equal
+   "guix-package->pypi-name, new URL style"
+   "certbot"
+   (guix-package->pypi-name
+     (dummy-package
+       "foo"
+       (source
+         (dummy-origin
+           (uri "https://pypi.org/packages/a2/3b/4756e6a0ceb14e084042a2a65c615d68d25621c6fd446d0fc10d14c4ce7d/certbot-0.8.1.tar.gz"))))))
expected-value: "certbot"
actual-value: "certbot"
result: PASS

test-name: guix-package->pypi-name, several URLs
location: /home/ming/Downloads/guix/tests/pypi.scm:170
source:
+ (test-equal
+   "guix-package->pypi-name, several URLs"
+   "cram"
+   (guix-package->pypi-name
+     (dummy-package
+       "foo"
+       (source
+         (dummy-origin
+           (uri (list "https://bitheap.org/cram/cram-0.7.tar.gz"
+                      (pypi-uri "cram" "0.7"))))))))
expected-value: "cram"
actual-value: "cram"
result: PASS

test-name: guix-package->pypi-name, honor 'upstream-name'
location: /home/ming/Downloads/guix/tests/pypi.scm:179
source:
+ (test-equal
+   "guix-package->pypi-name, honor 'upstream-name'"
+   "bar-3"
+   (guix-package->pypi-name
+     (dummy-package
+       "foo"
+       (properties '((upstream-name . "bar-3"))))))
expected-value: "bar-3"
actual-value: "bar-3"
result: PASS

test-name: specification->requirement-name
location: /home/ming/Downloads/guix/tests/pypi.scm:186
source:
+ (test-equal
+   "specification->requirement-name"
+   '("Fizzy"
+     "PickyThing"
+     "SomethingWithMarker"
+     "requests"
+     "pip")
+   (map specification->requirement-name
+        test-specifications))
expected-value: ("Fizzy" "PickyThing" "SomethingWithMarker" "requests" "pip")
actual-value: ("Fizzy" "PickyThing" "SomethingWithMarker" "requests" "pip")
result: PASS

test-name: parse-requires.txt
location: /home/ming/Downloads/guix/tests/pypi.scm:190
source:
+ (test-equal
+   "parse-requires.txt"
+   (list '("foo" "bar") '("pytest"))
+   (mock ((ice-9 ports)
+          call-with-input-file
+          call-with-input-string)
+         (parse-requires.txt test-requires.txt)))
expected-value: (("foo" "bar") ("pytest"))
actual-value: (("foo" "bar") ("pytest"))
result: PASS

test-name: parse-requires.txt - Beaker
location: /home/ming/Downloads/guix/tests/pypi.scm:196
source:
+ (test-equal
+   "parse-requires.txt - Beaker"
+   (list '() '("Mock" "coverage"))
+   (mock ((ice-9 ports)
+          call-with-input-file
+          call-with-input-string)
+         (parse-requires.txt test-requires.txt-beaker)))
expected-value: (() ("Mock" "coverage"))
actual-value: (() ("Mock" "coverage"))
result: PASS

test-name: parse-wheel-metadata, with extras
location: /home/ming/Downloads/guix/tests/pypi.scm:202
source:
+ (test-equal
+   "parse-wheel-metadata, with extras"
+   (list '("wrapt" "bar") '("tox" "bumpversion"))
+   (mock ((ice-9 ports)
+          call-with-input-file
+          call-with-input-string)
+         (parse-wheel-metadata test-metadata-with-extras)))
expected-value: (("wrapt" "bar") ("tox" "bumpversion"))
actual-value: (("wrapt" "bar") ("tox" "bumpversion"))
result: PASS

test-name: parse-wheel-metadata, with extras - Jedi
location: /home/ming/Downloads/guix/tests/pypi.scm:208
source:
+ (test-equal
+   "parse-wheel-metadata, with extras - Jedi"
+   (list '("parso") '("pytest"))
+   (mock ((ice-9 ports)
+          call-with-input-file
+          call-with-input-string)
+         (parse-wheel-metadata
+           test-metadata-with-extras-jedi)))
expected-value: (("parso") ("pytest"))
actual-value: (("parso") ("pytest"))
result: PASS

test-name: pypi->guix-package, no wheel
location: /home/ming/Downloads/guix/tests/pypi.scm:214
source:
+ (test-assert
+   "pypi->guix-package, no wheel"
+   (mock ((guix import utils)
+          url-fetch
+          (lambda (url file-name)
+            (match url
+                   ("https://example.com/foo-1.0.0.tar.gz"
+                    (begin
+                      (mkdir-p "foo-1.0.0/src/bizarre.egg-info")
+                      (with-output-to-file
+                        "foo-1.0.0/src/bizarre.egg-info/requires.txt"
+                        (lambda () (display test-requires.txt)))
+                      (parameterize
+                        ((current-output-port (%make-void-port "rw+")))
+                        (system* "tar" "czvf" file-name "foo-1.0.0/"))
+                      (delete-file-recursively "foo-1.0.0")
+                      (set! test-source-hash
+                        (call-with-input-file file-name port-sha256))))
+                   ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+                    #f)
+                   (_ (error "Unexpected URL: " url)))))
+         (mock ((guix http-client)
+                http-fetch
+                (lambda (url . rest)
+                  (match url
+                         ("https://pypi.org/pypi/foo/json"
+                          (values
+                            (open-input-string test-json-1)
+                            (string-length test-json-1)))
+                         ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+                          #f)
+                         (_ (error "Unexpected URL: " url)))))
+               (match (pypi->guix-package "foo")
+                      (('package
+                        ('name "python-foo")
+                        ('version "1.0.0")
+                        ('source
+                         ('origin
+                          ('method 'url-fetch)
+                          ('uri ('pypi-uri "foo" 'version))
+                          ('sha256 ('base32 (? string? hash)))))
+                        ('build-system 'python-build-system)
+                        ('propagated-inputs
+                         ('list 'python-bar 'python-foo))
+                        ('native-inputs ('list 'python-pytest))
+                        ('home-page "http://example.com")
+                        ('synopsis "summary")
+                        ('description "summary")
+                        ('license 'license:lgpl2.0))
+                       (and (string=?
+                              (bytevector->nix-base32-string test-source-hash)
+                              hash)
+                            (equal?
+                              (pypi->guix-package "foo" #:version "1.0.0")
+                              (pypi->guix-package "foo"))
+                            (catch 'quit
+                                   (lambda ()
+                                     (pypi->guix-package
+                                       "foo"
+                                       #:version
+                                       "42"))
+                                   (const #t))))
+                      (x (pk 'fail x #f))))))
actual-value: #t
result: PASS

test-name: pypi->guix-package, wheels
location: /home/ming/Downloads/guix/tests/pypi.scm:271
source:
+ (test-assert
+   "pypi->guix-package, wheels"
+   (mock ((guix import utils)
+          url-fetch
+          (lambda (url file-name)
+            (match url
+                   ("https://example.com/foo-1.0.0.tar.gz"
+                    (begin
+                      (mkdir-p "foo-1.0.0/foo.egg-info/")
+                      (with-output-to-file
+                        "foo-1.0.0/foo.egg-info/requires.txt"
+                        (lambda ()
+                          (display
+                            "wrong data to make sure we're testing wheels ")))
+                      (parameterize
+                        ((current-output-port (%make-void-port "rw+")))
+                        (system* "tar" "czvf" file-name "foo-1.0.0/"))
+                      (delete-file-recursively "foo-1.0.0")
+                      (set! test-source-hash
+                        (call-with-input-file file-name port-sha256))))
+                   ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+                    (begin
+                      (mkdir "foo-1.0.0.dist-info")
+                      (with-output-to-file
+                        "foo-1.0.0.dist-info/METADATA"
+                        (lambda () (display test-metadata)))
+                      (let ((zip-file (string-append file-name ".zip")))
+                        (system*
+                          "zip"
+                          "-q"
+                          zip-file
+                          "foo-1.0.0.dist-info/METADATA")
+                        (rename-file zip-file file-name))
+                      (delete-file-recursively "foo-1.0.0.dist-info")))
+                   (_ (error "Unexpected URL: " url)))))
+         (mock ((guix http-client)
+                http-fetch
+                (lambda (url . rest)
+                  (match url
+                         ("https://pypi.org/pypi/foo/json"
+                          (values
+                            (open-input-string test-json-1)
+                            (string-length test-json-1)))
+                         ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+                          #f)
+                         (_ (error "Unexpected URL: " url)))))
+               (invalidate-memoization! pypi->guix-package)
+               (match (pypi->guix-package "foo")
+                      (('package
+                        ('name "python-foo")
+                        ('version "1.0.0")
+                        ('source
+                         ('origin
+                          ('method 'url-fetch)
+                          ('uri ('pypi-uri "foo" 'version))
+                          ('sha256 ('base32 (? string? hash)))))
+                        ('build-system 'python-build-system)
+                        ('propagated-inputs
+                         ('list 'python-bar 'python-baz))
+                        ('native-inputs ('list 'python-pytest))
+                        ('home-page "http://example.com")
+                        ('synopsis "summary")
+                        ('description "summary")
+                        ('license 'license:lgpl2.0))
+                       (string=?
+                         (bytevector->nix-base32-string test-source-hash)
+                         hash))
+                      (x (pk 'fail x #f))))))
result: SKIP

test-name: pypi->guix-package, no usable requirement file.
location: /home/ming/Downloads/guix/tests/pypi.scm:334
source:
+ (test-assert
+   "pypi->guix-package, no usable requirement file."
+   (mock ((guix import utils)
+          url-fetch
+          (lambda (url file-name)
+            (match url
+                   ("https://example.com/foo-1.0.0.tar.gz"
+                    (mkdir-p "foo-1.0.0/foo.egg-info/")
+                    (parameterize
+                      ((current-output-port (%make-void-port "rw+")))
+                      (system* "tar" "czvf" file-name "foo-1.0.0/"))
+                    (delete-file-recursively "foo-1.0.0")
+                    (set! test-source-hash
+                      (call-with-input-file file-name port-sha256)))
+                   ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+                    #f)
+                   (_ (error "Unexpected URL: " url)))))
+         (mock ((guix http-client)
+                http-fetch
+                (lambda (url . rest)
+                  (match url
+                         ("https://pypi.org/pypi/foo/json"
+                          (values
+                            (open-input-string test-json-1)
+                            (string-length test-json-1)))
+                         ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+                          #f)
+                         (_ (error "Unexpected URL: " url)))))
+               error: no source release for pypi package foo 42
warning: Cannot guess requirements from source archive: no requires.txt file found.
(invalidate-memoization! pypi->guix-package)
+               (match (pypi->guix-package "foo")
+                      (('package
+                        ('name "python-foo")
+                        ('version "1.0.0")
+                        ('source
+                         ('origin
+                          ('method 'url-fetch)
+                          ('uri ('pypi-uri "foo" 'version))
+                          ('sha256 ('base32 (? string? hash)))))
+                        ('build-system 'python-build-system)
+                        ('home-page "http://example.com")
+                        ('synopsis "summary")
+                        ('description "summary")
+                        ('license 'license:lgpl2.0))
+                       (string=?
+                         (bytevector->nix-base32-string test-source-hash)
+                         hash))
+                      (x (pk 'fail x #f))))))
actual-value: #t
result: PASS

test-name: pypi->guix-package, package name contains "-" followed by digits
location: /home/ming/Downloads/guix/tests/pypi.scm:380
source:
+ (test-assert
+   "pypi->guix-package, package name contains \"-\" followed by digits"
+   (mock ((guix import utils)
+          url-fetch
+          (lambda (url file-name)
+            (match url
+                   ("https://example.com/foo-99-1.0.0.tar.gz"
+                    (begin
+                      (mkdir-p "foo-99-1.0.0/src/bizarre.egg-info")
+                      (with-output-to-file
+                        "foo-99-1.0.0/src/bizarre.egg-info/requires.txt"
+                        (lambda () (display test-requires.txt)))
+                      (parameterize
+                        ((current-output-port (%make-void-port "rw+")))
+                        (system* "tar" "czvf" file-name "foo-99-1.0.0/"))
+                      (delete-file-recursively "foo-99-1.0.0")
+                      (set! test-source-hash
+                        (call-with-input-file file-name port-sha256))))
+                   ("https://example.com/foo-99-1.0.0-py2.py3-none-any.whl"
+                    #f)
+                   (_ (error "Unexpected URL: " url)))))
+         (mock ((guix http-client)
+                http-fetch
+                (lambda (url . rest)
+                  (match url
+                         ("https://pypi.org/pypi/foo-99/json"
+                          (values
+                            (open-input-string test-json-2)
+                            (string-length test-json-2)))
+                         ("https://example.com/foo-99-1.0.0-py2.py3-none-any.whl"
+                          #f)
+                         (_ (error "Unexpected URL: " url)))))
+               (match (pypi->guix-package "foo-99")
+                      (('package
+                        ('name "python-foo-99")
+                        ('version "1.0.0")
+                        ('source
+                         ('origin
+                          ('method 'url-fetch)
+                          ('uri ('pypi-uri "foo-99" 'version))
+                          ('sha256 ('base32 (? string? hash)))))
+                        ('properties
+                         ('quote (("upstream-name" . "foo-99"))))
+                        ('build-system 'python-build-system)
+                        ('propagated-inputs
+                         ('list 'python-bar 'python-foo))
+                        ('native-inputs ('list 'python-pytest))
+                        ('home-page "http://example.com")
+                        ('synopsis "summary")
+                        ('description "summary")
+                        ('license 'license:lgpl2.0))
+                       (string=?
+                         (bytevector->nix-base32-string test-source-hash)
+                         hash))
+                      (x (pk 'fail x #f))))))
actual-value: #t
result: PASS


RUN: tests/services/configuration
=================================

test-name: default value, no serialization
location: /home/ming/Downloads/guix/tests/services/configuration.scm:39
source:
+ (test-equal
+   "default value, no serialization"
+   80
+   (port-configuration-port (port-configuration)))
expected-value: 80
actual-value: 80
result: PASS

test-name: default value, custom serializer
location: /home/ming/Downloads/guix/tests/services/configuration.scm:46
source:
+ (test-equal
+   "default value, custom serializer"
+   80
+   (port-configuration-cs-port
+     (port-configuration-cs)))
expected-value: 80
actual-value: 80
result: PASS

test-name: no default value, provided
location: /home/ming/Downloads/guix/tests/services/configuration.scm:54
source:
+ (test-equal
+   "no default value, provided"
+   55
+   (port-configuration-ndv-port
+     (port-configuration-ndv (port 55))))
expected-value: 55
actual-value: 55
result: PASS

test-name: no default value, not provided
location: /home/ming/Downloads/guix/tests/services/configuration.scm:59
source:
+ (test-assert
+   "no default value, not provided"
+   (guard (c ((configuration-error? c) #t))
+          (port-configuration-ndv-port
+            (port-configuration-ndv))))
actual-value: #t
result: PASS

test-name: serialize-configuration
location: /home/ming/Downloads/guix/tests/services/configuration.scm:70
source:
+ (test-assert
+   "serialize-configuration"
+   (gexp? (let ((config (serializable-configuration)))
+            (serialize-configuration
+              config
+              serializable-configuration-fields))))
actual-value: #t
result: PASS

test-name: serialize-configuration with no-serialization
location: /home/ming/Downloads/guix/tests/services/configuration.scm:79
source:
+ (test-assert
+   "serialize-configuration with no-serialization"
+   (not (false-if-exception
+          (let ((config (serializable-configuration)))
+            (serialize-configuration
+              config
+              serializable-configuration-fields)))))
actual-value: #t
result: PASS

test-name: serialize-configuration with prefix
location: /home/ming/Downloads/guix/tests/services/configuration.scm:92
source:
+ (test-assert
+   "serialize-configuration with prefix"
+   (gexp? (let ((config (configuration-with-prefix)))
+            (serialize-configuration
+              config
+              configuration-with-prefix-fields))))
actual-value: #t
result: PASS

test-name: maybe value serialization
location: /home/ming/Downloads/guix/tests/services/configuration.scm:109
source:
+ (test-equal
+   "maybe value serialization"
+   "port=80"
+   (serialize-maybe-number "port" 80))
expected-value: "port=80"
actual-value: "port=80"
result: PASS

test-name: maybe value without serialization no procedure bound
location: /home/ming/Downloads/guix/tests/services/configuration.scm:119
source:
+ (test-assert
+   "maybe value without serialization no procedure bound"
+   (not (defined? 'serialize-maybe-string)))
actual-value: #t
result: PASS


SKIP: tests/upstream
====================

test-name: coalesce-sources same version
location: /home/ming/Downloads/guix/tests/upstream.scm:30
source:
+ (test-equal
+   "coalesce-sources same version"
+   (list (upstream-source
+           (package "foo")
+           (version "1")
+           (urls '("ftp://example.org/foo-1.tar.xz"
+                   "ftp://example.org/foo-1.tar.gz"))
+           (signature-urls
+             '("ftp://example.org/foo-1.tar.xz.sig"
+               "ftp://example.org/foo-1.tar.gz.sig"))))
+   (coalesce-sources
+     (list (upstream-source
+             (package "foo")
+             (version "1")
+             (urls '("ftp://example.org/foo-1.tar.gz"))
+             (signature-urls
+               '("ftp://example.org/foo-1.tar.gz.sig")))
+           (upstream-source
+             (package "foo")
+             (version "1")
+             (urls '("ftp://example.org/foo-1.tar.xz"))
+             (signature-urls
+               '("ftp://example.org/foo-1.tar.xz.sig"))))))
result: SKIP


RUN: tests/offload
==================

/home/ming/Downloads/guix/tests/offload.scm:41:2: warning: The 'system' field is deprecated, please use 'systems' instead.
test-name: #f
location: /home/ming/Downloads/guix/tests/offload.scm:55
source:
+ (test-assert
+   (machine-matches?
+     (deprecated-build-machine "i686-linux")
+     (build-requirements (system "i686-linux"))))
actual-value: #t
result: PASS

test-name: #f
location: /home/ming/Downloads/guix/tests/offload.scm:60
source:
+ (test-assert
+   (machine-matches?
+     (new-build-machine '("i686-linux"))
+     (build-requirements (system "i686-linux"))))
actual-value: #t
result: PASS

test-name: #f
location: /home/ming/Downloads/guix/tests/offload.scm:66
source:
+ (test-assert
+   (machine-matches?
+     (new-build-machine
+       '("armhf-linux"
+         "aarch64-linux"
+         "i686-linux"
+         "x86_64-linux"))
+     (build-requirements (system "armhf-linux"))))
actual-value: #t
result: PASS


FAIL: tests/guix-git-authenticate
=================================

+ '[' -d /home/ming/Downloads/guix/.git ']'
+ guile -c '(use-modules (git))
  (member "refs/heads/keyring" (branch-list (repository-open ".")))'
+ intro_commit=9edb3f66fd807b096b48283debdcddccfea34bad
+ intro_signer='BBB0 2DDF 2CEA F6A8 0D1D  E643 A2A0 6DF2 A33A 54FA'
+ cache_key=test-24504
+ guix git authenticate 9edb3f66fd807b096b48283debdcddccfea34bad 'BBB0 2DDF 2CEA F6A8 0D1D  E643 A2A0 6DF2 A33A 54FA' --cache-key=test-24504 --stats --end=9549f0283a78fe36f2d4ff2a04ef8ad6b0c02604
guix git: error: Git error: cannot locate remote-tracking branch 'keyring'
FAIL tests/guix-git-authenticate.sh (exit status: 1)

FAIL: tests/guix-pack-relocatable
=================================

+ guix pack --version
guix pack (GNU Guix) UNKNOWN
Copyright (C) 2021 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
++ guile -c '(use-modules (guix config))(display %storedir)'
+ storedir=/gnu/store
++ guile -c '(use-modules (guix config))(display %localstatedir)'
+ localstatedir=/var
+ NIX_STORE_DIR=/gnu/store
+ GUIX_DAEMON_SOCKET=/var/guix/daemon-socket/socket
+ export NIX_STORE_DIR GUIX_DAEMON_SOCKET
+ guile -c '(use-modules (guix)) (exit (false-if-exception (open-connection)))'
++ mktemp -d
+ test_directory=/tmp/tmp.L59DtouzZR
+ export test_directory
+ trap 'chmod -Rf +w "$test_directory"; rm -rf "$test_directory"' EXIT
+ unshare -r true
++ guix pack -R -S /Bin=bin sed
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  11.1%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  22.2%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  33.3%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  44.4%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  55.6%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  66.7%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  77.8%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  88.9%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'... 100.0%
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0%
The following derivations will be built:
   /gnu/store/7qiyq9p2spfhfapl30dlsg15nhbllk0s-sed-tarball-pack.tar.gz.drv
   /gnu/store/lib6lf999nxjq23s0d87qq7k0wbxyrw6-profile.drv

0.5 MB will be downloaded
..
..
.
.
building CA certificate bundle...
listing Emacs sub-directories...
building fonts directory...
building directory of Info manuals...
building profile with 1 package...
building /gnu/store/7qiyq9p2spfhfapl30dlsg15nhbllk0s-sed-tarball-pack.tar.gz.drv...
+ tarball=/gnu/store/d20wsmcpmkvpr0f76i992jjncgirp0dk-sed-tarball-pack.tar.gz
+ cd /tmp/tmp.L59DtouzZR
+ tar xvf /gnu/store/d20wsmcpmkvpr0f76i992jjncgirp0dk-sed-tarball-pack.tar.gz
./
./Bin
./gnu/
./gnu/store/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/catchsegv
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/gencat
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/getconf
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/getent
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/iconv
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/ldd
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/locale
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/localedef
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/makedb
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/mtrace
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/pcprofiledump
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/pldd
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/sotruss
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/sprof
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/tzselect
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/xtrace
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/bin/zdump
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/etc/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/etc/rpc
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/a.out.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/aio.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/aliases.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/alloca.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/ar.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/argp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/argz.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/arpa/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/arpa/ftp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/arpa/inet.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/arpa/nameser.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/arpa/nameser_compat.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/arpa/telnet.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/arpa/tftp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/assert.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/a.out.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/argp-ldbl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/byteswap.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/cmathcalls.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/confname.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/cpu-set.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/dirent.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/dirent_ext.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/dlfcn.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/elfclass.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/endian.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/endianness.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/environments.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/epoll.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/err-ldbl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/errno.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/error-ldbl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/error.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/eventfd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/fcntl-linux.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/fcntl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/fcntl2.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/fenv.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/floatn-common.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/floatn.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/flt-eval-method.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/fp-fast.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/fp-logb.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/getopt_core.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/getopt_ext.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/getopt_posix.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/hwcap.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/in.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/indirect-return.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/initspin.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/inotify.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/ioctl-types.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/ioctls.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/ipc-perm.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/ipc.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/ipctypes.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/iscanonical.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/libc-header-start.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/libm-simd-decl-stubs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/link.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/local_lim.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/locale.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/long-double.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/math-vector.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mathcalls-helper-functions.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mathcalls-narrow.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mathcalls.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mathdef.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mman-linux.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mman-map-flags-generic.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mman-shared.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mman.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/monetary-ldbl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mqueue.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/mqueue2.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/msq.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/netdb.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/param.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/poll.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/poll2.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/posix1_lim.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/posix2_lim.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/posix_opt.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/printf-ldbl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/procfs-extra.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/procfs-id.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/procfs-prregset.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/procfs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/pthreadtypes-arch.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/pthreadtypes.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/ptrace-shared.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/resource.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/sched.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/select.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/select2.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/sem.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/semaphore.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/setjmp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/setjmp2.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/shm.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/shmlba.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/sigaction.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/sigcontext.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/sigevent-consts.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/siginfo-arch.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/siginfo-consts-arch.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/siginfo-consts.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/signal_ext.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/signalfd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/signum-arch.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/signum-generic.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/sigstack.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/sigthread.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/sockaddr.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/socket-constants.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/socket.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/socket2.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/socket_type.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/ss_flags.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stab.def
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stat.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/statfs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/statvfs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/statx-generic.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/statx.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdint-intn.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdint-uintn.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdio-ldbl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdio.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdio2.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdio_lim.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdlib-bsearch.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdlib-float.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdlib-ldbl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/stdlib.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/string_fortified.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/strings_fortified.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/struct_mutex.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/struct_rwlock.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/struct_stat.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/syscall.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/syslog-ldbl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/syslog-path.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/syslog.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/sysmacros.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios-baud.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios-c_cc.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios-c_cflag.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios-c_iflag.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios-c_lflag.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios-c_oflag.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios-misc.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios-struct.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios-tcflow.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/termios.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/thread-shared-types.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/time.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/time64.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/timerfd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/timesize.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/timex.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/FILE.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/__FILE.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/__fpos64_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/__fpos_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/__locale_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/__mbstate_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/__sigset_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/__sigval_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/clock_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/clockid_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/cookie_io_functions_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/error_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/locale_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/mbstate_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/res_state.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/sig_atomic_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/sigevent_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/siginfo_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/sigset_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/sigval_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/stack_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_FILE.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct___jmp_buf_tag.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_iovec.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_itimerspec.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_msqid_ds.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_osockaddr.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_rusage.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_sched_param.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_semid_ds.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_shmid_ds.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_sigstack.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_statx.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_statx_timestamp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_timeb.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_timespec.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_timeval.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/struct_tm.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/time_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/timer_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types/wint_t.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/types.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/typesizes.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/uintn-identity.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/uio-ext.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/uio_lim.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/unistd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/unistd_ext.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/utmp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/utmpx.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/utsname.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/waitflags.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/waitstatus.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/wchar-ldbl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/wchar.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/wchar2.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/wctype-wchar.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/wordsize.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/bits/xopen_lim.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/byteswap.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/complex.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/cpio.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/crypt.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/ctype.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/dirent.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/dlfcn.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/elf.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/endian.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/envz.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/err.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/errno.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/error.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/execinfo.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/fcntl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/features.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/fenv.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/finclude/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/finclude/math-vector-fortran.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/fmtmsg.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/fnmatch.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/fpu_control.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/fstab.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/fts.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/ftw.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/gconv.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/getopt.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/glob.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/gnu/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/gnu/lib-names-64.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/gnu/lib-names.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/gnu/libc-version.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/gnu/stubs-64.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/gnu/stubs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/gnu-versions.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/grp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/gshadow.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/iconv.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/ieee754.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/ifaddrs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/inttypes.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/langinfo.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/lastlog.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/libgen.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/libintl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/limits.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/link.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/locale.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/malloc.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/math.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/mcheck.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/memory.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/mntent.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/monetary.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/mqueue.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/ethernet.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/if.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/if_arp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/if_packet.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/if_ppp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/if_shaper.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/if_slip.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/ppp-comp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/ppp_defs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/net/route.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netash/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netash/ash.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netatalk/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netatalk/at.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netax25/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netax25/ax25.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netdb.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/neteconet/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/neteconet/ec.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/ether.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/icmp6.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/if_ether.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/if_fddi.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/if_tr.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/igmp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/in.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/in_systm.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/ip.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/ip6.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/ip_icmp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/tcp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netinet/udp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netipx/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netipx/ipx.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netiucv/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netiucv/iucv.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netpacket/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netpacket/packet.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netrom/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netrom/netrom.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netrose/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/netrose/rose.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/nfs/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/nfs/nfs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/nl_types.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/nss.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/obstack.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/paths.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/poll.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/printf.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/proc_service.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/protocols/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/protocols/routed.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/protocols/rwhod.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/protocols/talkd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/protocols/timed.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/pthread.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/pty.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/pwd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/re_comp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/regex.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/regexp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/resolv.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/rpc/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/rpc/netdb.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sched.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/scsi/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/scsi/scsi.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/scsi/scsi_ioctl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/scsi/sg.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/search.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/semaphore.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/setjmp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sgtty.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/shadow.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/signal.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/spawn.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/stab.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/stdc-predef.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/stdint.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/stdio.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/stdio_ext.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/stdlib.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/string.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/strings.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/acct.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/auxv.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/bitypes.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/cdefs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/debugreg.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/dir.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/elf.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/epoll.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/errno.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/eventfd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/fanotify.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/fcntl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/file.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/fsuid.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/gmon.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/gmon_out.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/inotify.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/io.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/ioctl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/ipc.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/kd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/klog.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/mman.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/mount.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/msg.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/mtio.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/param.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/pci.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/perm.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/personality.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/platform/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/platform/x86.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/poll.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/prctl.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/procfs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/profil.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/ptrace.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/queue.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/quota.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/random.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/raw.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/reboot.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/reg.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/resource.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/select.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/sem.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/sendfile.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/shm.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/signal.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/signalfd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/single_threaded.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/socket.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/socketvar.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/soundcard.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/stat.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/statfs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/statvfs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/swap.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/syscall.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/sysinfo.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/syslog.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/sysmacros.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/termios.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/time.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/timeb.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/timerfd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/times.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/timex.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/ttychars.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/ttydefaults.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/types.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/ucontext.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/uio.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/un.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/unistd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/user.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/utsname.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/vfs.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/vlimit.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/vm86.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/vt.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/wait.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sys/xattr.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/syscall.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/sysexits.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/syslog.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/tar.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/termio.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/termios.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/tgmath.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/thread_db.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/threads.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/time.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/ttyent.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/uchar.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/ucontext.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/ulimit.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/unistd.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/utime.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/utmp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/utmpx.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/values.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/wait.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/wchar.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/wctype.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/include/wordexp.h
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/Mcrt1.o
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/Scrt1.o
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/audit/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/audit/sotruss-lib.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/crt1.o
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/crti.o
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/crtn.o
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ANSI_X3.110.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ARMSCII-8.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ASMO_449.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/BIG5.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/BIG5HKSCS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/BRF.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP10007.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1125.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1250.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1251.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1252.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1253.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1254.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1255.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1256.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1257.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP1258.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP737.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP770.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP771.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP772.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP773.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP774.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP775.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CP932.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CSN_369103.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/CWI.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/DEC-MCS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-AT-DE-A.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-AT-DE.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-CA-FR.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-DK-NO-A.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-DK-NO.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-ES-A.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-ES-S.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-ES.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-FI-SE-A.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-FI-SE.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-FR.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-IS-FRISS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-IT.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-PT.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-UK.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EBCDIC-US.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ECMA-CYRILLIC.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EUC-CN.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EUC-JISX0213.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EUC-JP-MS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EUC-JP.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EUC-KR.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/EUC-TW.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GB18030.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GBBIG5.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GBGBK.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GBK.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GEORGIAN-ACADEMY.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GEORGIAN-PS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GOST_19768-74.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GREEK-CCITT.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GREEK7-OLD.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/GREEK7.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/HP-GREEK8.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/HP-ROMAN8.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/HP-ROMAN9.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/HP-THAI8.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/HP-TURKISH8.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM037.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM038.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1004.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1008.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1008_420.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1025.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1026.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1046.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1047.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1097.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1112.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1122.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1123.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1124.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1129.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1130.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1132.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1133.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1137.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1140.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1141.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1142.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1143.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1144.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1145.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1146.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1147.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1148.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1149.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1153.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1154.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1155.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1156.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1157.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1158.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1160.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1161.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1162.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1163.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1164.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1166.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1167.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM12712.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1364.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1371.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1388.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1390.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM1399.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM16804.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM256.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM273.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM274.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM275.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM277.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM278.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM280.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM281.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM284.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM285.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM290.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM297.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM420.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM423.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM424.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM437.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM4517.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM4899.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM4909.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM4971.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM500.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM5347.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM803.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM850.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM851.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM852.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM855.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM856.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM857.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM858.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM860.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM861.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM862.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM863.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM864.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM865.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM866.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM866NAV.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM868.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM869.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM870.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM871.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM874.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM875.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM880.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM891.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM901.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM902.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM903.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM9030.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM904.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM905.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM9066.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM918.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM921.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM922.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM930.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM932.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM933.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM935.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM937.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM939.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM943.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IBM9448.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/IEC_P27-1.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/INIS-8.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/INIS-CYRILLIC.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/INIS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISIRI-3342.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO-2022-CN-EXT.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO-2022-CN.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO-2022-JP-3.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO-2022-JP.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO-2022-KR.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO-IR-197.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO-IR-209.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO646.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-1.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-10.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-11.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-13.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-14.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-15.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-16.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-2.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-3.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-4.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-5.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-6.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-7.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-8.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-9.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO8859-9E.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO_10367-BOX.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO_11548-1.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO_2033.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO_5427-EXT.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO_5427.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO_5428.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO_6937-2.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/ISO_6937.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/JOHAB.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/KOI-8.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/KOI8-R.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/KOI8-RU.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/KOI8-T.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/KOI8-U.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/LATIN-GREEK-1.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/LATIN-GREEK.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/MAC-CENTRALEUROPE.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/MAC-IS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/MAC-SAMI.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/MAC-UK.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/MACINTOSH.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/MIK.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/NATS-DANO.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/NATS-SEFI.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/PT154.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/RK1048.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/SAMI-WS2.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/SHIFT_JISX0213.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/SJIS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/T.61.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/TCVN5712-1.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/TIS-620.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/TSCII.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/UHC.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/UNICODE.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/UTF-16.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/UTF-32.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/UTF-7.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/VISCII.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/gconv-modules
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/libCNS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/libGB.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/libISOIR165.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/libJIS.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/libJISX0213.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gconv/libKSC.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/gcrt1.o
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/ld-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/ld-linux-x86-64.so.2
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libBrokenLocale-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libBrokenLocale.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libBrokenLocale.so.1
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libSegFault.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libanl-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libanl.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libanl.so.1
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libc-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libc.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libc.so.6
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libc_nonshared.a
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libcrypt-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libcrypt.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libcrypt.so.1
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libdl-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libdl.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libdl.so.2
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libm-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libm.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libm.so.6
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libmemusage.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libmvec-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libmvec.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libmvec.so.1
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnsl-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnsl.so.1
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_compat-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_compat.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_compat.so.2
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_db-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_db.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_db.so.2
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_dns-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_dns.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_dns.so.2
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_files-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_files.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_files.so.2
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_hesiod-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_hesiod.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libnss_hesiod.so.2
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libpcprofile.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libpthread-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libpthread.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libpthread.so.0
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libresolv-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libresolv.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libresolv.so.2
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/librt-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/librt.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/librt.so.1
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libthread_db-1.0.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libthread_db.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libthread_db.so.1
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libutil-2.33.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libutil.so
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/lib/libutil.so.1
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/libexec/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/libexec/getconf/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/libexec/getconf/POSIX_V6_LP64_OFF64
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/libexec/getconf/POSIX_V7_LP64_OFF64
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/libexec/getconf/XBS5_LP64_OFF64
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/sbin/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/sbin/iconvconfig
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/sbin/ldconfig
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/sbin/nscd
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/sbin/sln
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/sbin/zic
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/doc/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/doc/glibc-2.33/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/doc/glibc-2.33/COPYING
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/doc/glibc-2.33/COPYING.LIB
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/doc/glibc-2.33/LICENSES
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/SUPPORTED
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ANSI_X3.110-1983.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ANSI_X3.4-1968.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ARMSCII-8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ASMO_449.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/BIG5-HKSCS.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/BIG5.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/BRF.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/BS_4730.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/BS_VIEWDATA.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP10007.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1125.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1250.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1251.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1252.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1253.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1254.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1255.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1256.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1257.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP1258.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP737.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP770.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP771.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP772.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP773.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP774.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP775.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CP949.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CSA_Z243.4-1985-1.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CSA_Z243.4-1985-2.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CSA_Z243.4-1985-GR.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CSN_369103.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/CWI.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/DEC-MCS.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/DIN_66003.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/DS_2089.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-AT-DE-A.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-AT-DE.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-CA-FR.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-DK-NO-A.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-DK-NO.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-ES-A.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-ES-S.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-ES.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-FI-SE-A.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-FI-SE.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-FR.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-IS-FRISS.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-IT.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-PT.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-UK.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EBCDIC-US.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ECMA-CYRILLIC.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ES.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ES2.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EUC-JISX0213.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EUC-JP-MS.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EUC-JP.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EUC-KR.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/EUC-TW.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GB18030.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GB2312.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GBK.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GB_1988-80.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GEORGIAN-ACADEMY.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GEORGIAN-PS.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GOST_19768-74.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GREEK-CCITT.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GREEK7-OLD.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/GREEK7.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/HP-GREEK8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/HP-ROMAN8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/HP-ROMAN9.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/HP-THAI8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/HP-TURKISH8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM037.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM038.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1004.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1026.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1047.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1124.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1129.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1132.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1133.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1160.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1161.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1162.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1163.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM1164.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM256.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM273.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM274.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM275.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM277.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM278.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM280.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM281.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM284.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM285.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM290.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM297.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM420.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM423.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM424.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM437.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM500.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM850.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM851.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM852.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM855.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM856.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM857.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM858.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM860.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM861.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM862.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM863.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM864.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM865.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM866.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM866NAV.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM868.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM869.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM870.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM871.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM874.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM875.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM880.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM891.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM903.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM904.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM905.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM918.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IBM922.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IEC_P27-1.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/INIS-8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/INIS-CYRILLIC.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/INIS.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/INVARIANT.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISIRI-3342.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-1.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-10.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-11.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-13.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-14.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-15.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-16.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-2.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-3.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-4.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-5.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-6.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-7.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-9.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-8859-9E.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-IR-197.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-IR-209.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO-IR-90.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_10367-BOX.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_10646.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_11548-1.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_2033-1983.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_5427-EXT.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_5427.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_5428.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_646.BASIC.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_646.IRV.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_6937-2-25.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_6937-2-ADD.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_6937.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_8859-1,GL.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/ISO_8859-SUPP.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/IT.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JIS_C6220-1969-JP.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JIS_C6220-1969-RO.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JIS_C6229-1984-A.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JIS_C6229-1984-B-ADD.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JIS_C6229-1984-B.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JIS_C6229-1984-HAND-ADD.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JIS_C6229-1984-HAND.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JIS_C6229-1984-KANA.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JIS_X0201.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JOHAB.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JUS_I.B1.002.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JUS_I.B1.003-MAC.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/JUS_I.B1.003-SERB.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/KOI-8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/KOI8-R.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/KOI8-RU.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/KOI8-T.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/KOI8-U.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/KSC5636.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/LATIN-GREEK-1.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/LATIN-GREEK.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/MAC-CENTRALEUROPE.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/MAC-CYRILLIC.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/MAC-IS.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/MAC-SAMI.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/MAC-UK.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/MACINTOSH.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/MIK.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/MSZ_7795.3.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NATS-DANO-ADD.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NATS-DANO.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NATS-SEFI-ADD.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NATS-SEFI.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NC_NC00-10.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NEXTSTEP.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NF_Z_62-010.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NF_Z_62-010_1973.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NS_4551-1.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/NS_4551-2.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/PT.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/PT154.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/PT2.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/RK1048.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/SAMI-WS2.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/SAMI.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/SEN_850200_B.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/SEN_850200_C.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/SHIFT_JIS.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/SHIFT_JISX0213.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/T.101-G2.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/T.61-7BIT.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/T.61-8BIT.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/TCVN5712-1.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/TIS-620.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/TSCII.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/UTF-8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/VIDEOTEX-SUPPL.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/VISCII.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/charmaps/WINDOWS-31J.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/POSIX
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/aa_DJ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/aa_ER
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/aa_ER@saaho
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/aa_ET
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/af_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/agr_PE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ak_GH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/am_ET
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/an_ES
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/anp_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_AE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_BH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_DZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_EG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_IQ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_JO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_KW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_LB
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_LY
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_MA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_OM
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_QA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_SA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_SD
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_SS
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_SY
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_TN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ar_YE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/as_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ast_ES
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ayc_PE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/az_AZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/az_IR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/be_BY
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/be_BY@latin
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bem_ZM
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ber_DZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ber_MA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bg_BG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bhb_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bho_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bho_NP
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bi_VU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bn_BD
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bn_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bo_CN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bo_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/br_FR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/br_FR@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/brx_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/bs_BA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/byn_ER
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ca_AD
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ca_ES
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ca_ES@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ca_ES@valencia
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ca_FR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ca_IT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ce_RU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/chr_US
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ckb_IQ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/cmn_TW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/cns11643_stroke
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/crh_UA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/cs_CZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/csb_PL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/cv_RU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/cy_GB
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/da_DK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_AT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_AT@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_BE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_BE@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_CH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_DE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_DE@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_IT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_LI
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_LU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/de_LU@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/doi_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/dsb_DE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/dv_MV
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/dz_BT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/el_CY
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/el_GR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/el_GR@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_AG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_AU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_BW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_CA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_DK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_GB
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_HK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_IE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_IE@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_IL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_NG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_NZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_PH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_SC
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_SG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_US
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_ZM
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/en_ZW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/eo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_AR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_BO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_CL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_CO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_CR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_CU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_DO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_EC
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_ES
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_ES@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_GT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_HN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_MX
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_NI
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_PA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_PE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_PR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_PY
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_SV
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_US
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_UY
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/es_VE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/et_EE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/eu_ES
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/eu_ES@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fa_IR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ff_SN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fi_FI
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fi_FI@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fil_PH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fo_FO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fr_BE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fr_BE@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fr_CA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fr_CH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fr_FR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fr_FR@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fr_LU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fr_LU@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fur_IT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fy_DE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/fy_NL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ga_IE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ga_IE@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/gd_GB
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/gez_ER
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/gez_ER@abegede
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/gez_ET
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/gez_ET@abegede
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/gl_ES
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/gl_ES@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/gu_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/gv_GB
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ha_NG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/hak_TW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/he_IL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/hi_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/hif_FJ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/hne_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/hr_HR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/hsb_DE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ht_HT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/hu_HU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/hy_AM
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/i18n
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/i18n_ctype
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ia_FR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/id_ID
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ig_NG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ik_CA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/is_IS
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/iso14651_t1
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/iso14651_t1_common
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/iso14651_t1_pinyin
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/it_CH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/it_IT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/it_IT@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/iu_CA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ja_JP
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ka_GE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/kab_DZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/kk_KZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/kl_GL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/km_KH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/kn_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ko_KR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/kok_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ks_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ks_IN@devanagari
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ku_TR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/kw_GB
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ky_KG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/lb_LU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/lg_UG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/li_BE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/li_NL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/lij_IT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ln_CD
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/lo_LA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/lt_LT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/lv_LV
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/lzh_TW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mag_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mai_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mai_NP
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mfe_MU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mg_MG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mhr_RU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mi_NZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/miq_NI
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mjw_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mk_MK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ml_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mn_MN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mni_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mnw_MM
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mr_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ms_MY
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/mt_MT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/my_MM
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nan_TW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nan_TW@latin
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nb_NO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nds_DE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nds_NL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ne_NP
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nhn_MX
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/niu_NU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/niu_NZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nl_AW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nl_BE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nl_BE@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nl_NL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nl_NL@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nn_NO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nr_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/nso_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/oc_FR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/om_ET
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/om_KE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/or_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/os_RU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/pa_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/pa_PK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/pap_AW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/pap_CW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/pl_PL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ps_AF
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/pt_BR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/pt_PT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/pt_PT@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/quz_PE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/raj_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ro_RO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ru_RU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ru_UA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/rw_RW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sa_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sah_RU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sat_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sc_IT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sd_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sd_IN@devanagari
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/se_NO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sgs_LT
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/shn_MM
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/shs_CA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/si_LK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sid_ET
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sk_SK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sl_SI
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sm_WS
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/so_DJ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/so_ET
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/so_KE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/so_SO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sq_AL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sq_MK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sr_ME
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sr_RS
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sr_RS@latin
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ss_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/st_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sv_FI
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sv_FI@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sv_SE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sw_KE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/sw_TZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/szl_PL
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ta_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ta_LK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tcy_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/te_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tg_TJ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/th_TH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/the_NP
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ti_ER
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ti_ET
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tig_ER
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tk_TM
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tl_PH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tn_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/to_TO
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tpi_PG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tr_CY
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tr_TR
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_circle
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_cjk_compat
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_cjk_variants
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_combining
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_compat
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_font
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_fraction
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_hangul
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_narrow
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_neutral
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_small
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/translit_wide
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ts_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tt_RU
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/tt_RU@iqtelif
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ug_CN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/uk_UA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/unm_US
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ur_IN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ur_PK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/uz_UZ
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/uz_UZ@cyrillic
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/ve_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/vi_VN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/wa_BE
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/wa_BE@euro
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/wae_CH
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/wal_ET
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/wo_SN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/xh_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/yi_US
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/yo_NG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/yue_HK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/yuw_PG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/zh_CN
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/zh_HK
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/zh_SG
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/zh_TW
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/i18n/locales/zu_ZA
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-1.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-10.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-11.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-12.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-13.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-14.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-15.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-16.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-17.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-2.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-3.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-4.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-5.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-6.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-7.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-8.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info-9.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/info/libc.info.gz
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/be/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/be/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/be/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/bg/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/bg/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/bg/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ca/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ca/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ca/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/cs/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/cs/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/cs/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/da/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/da/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/da/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/de/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/de/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/de/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/el/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/el/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/el/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/en_GB/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/en_GB/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/en_GB/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/eo/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/eo/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/eo/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/es/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/es/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/es/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/fi/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/fi/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/fi/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/fr/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/fr/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/fr/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/gl/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/gl/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/gl/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/hr/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/hr/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/hr/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/hu/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/hu/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/hu/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ia/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ia/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ia/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/id/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/id/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/id/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/it/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/it/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/it/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ja/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ja/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ja/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ko/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ko/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ko/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/locale.alias
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/lt/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/lt/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/lt/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/nb/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/nb/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/nb/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/nl/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/nl/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/nl/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/pl/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/pl/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/pl/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/pt/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/pt/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/pt/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/pt_BR/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/pt_BR/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/pt_BR/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ru/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ru/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/ru/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/rw/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/rw/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/rw/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sk/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sk/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sk/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sl/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sl/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sl/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sr/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sr/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sr/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sv/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sv/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/sv/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/tr/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/tr/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/tr/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/uk/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/uk/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/uk/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/vi/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/vi/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/vi/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/zh_CN/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/zh_CN/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/zh_CN/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/zh_TW/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/zh_TW/LC_MESSAGES/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/share/locale/zh_TW/LC_MESSAGES/libc.mo
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/var/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/var/db/
./gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33/var/db/Makefile
./gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/include/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/crtbegin.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/crtbeginS.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/crtbeginT.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/crtend.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/crtendS.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/crtfastmath.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/crtprec32.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/crtprec64.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/crtprec80.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/acc_prof.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/adxintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/ammintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx2intrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx5124fmapsintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx5124vnniwintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512bf16intrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512bf16vlintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512bitalgintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512bwintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512cdintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512dqintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512erintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512fintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512ifmaintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512ifmavlintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512pfintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vbmi2intrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vbmi2vlintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vbmiintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vbmivlintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vlbwintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vldqintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vlintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vnniintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vnnivlintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vp2intersectintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vp2intersectvlintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vpopcntdqintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avx512vpopcntdqvlintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/avxintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/bmi2intrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/bmiintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/bmmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/cet.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/cetintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/cldemoteintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/clflushoptintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/clwbintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/clzerointrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/cpuid.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/cross-stdarg.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/emmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/enqcmdintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/f16cintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/float.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/fma4intrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/fmaintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/fxsrintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/gcov.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/gfniintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/ia32intrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/immintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/iso646.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/lwpintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/lzcntintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/mm3dnow.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/mm_malloc.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/mmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/movdirintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/mwaitxintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/nmmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/omp.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/openacc.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/pconfigintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/pkuintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/pmmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/popcntintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/prfchwintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/quadmath.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/quadmath_weak.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/rdseedintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/rtmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/sanitizer/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/sanitizer/asan_interface.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/sanitizer/common_interface_defs.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/sanitizer/lsan_interface.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/sanitizer/tsan_interface.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/sgxintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/shaintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/smmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/ssp/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/ssp/ssp.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/ssp/stdio.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/ssp/string.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/ssp/unistd.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/stdalign.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/stdarg.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/stdatomic.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/stdbool.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/stddef.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/stdfix.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/stdint-gcc.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/stdint.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/stdnoreturn.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/tbmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/tmmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/unwind.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/vaesintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/varargs.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/vpclmulqdqintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/waitpkgintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/wbnoinvdintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/wmmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/x86intrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/xmmintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/xopintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/xsavecintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/xsaveintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/xsaveoptintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/xsavesintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include/xtestintrin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed/README
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed/bits/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed/bits/statx.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed/limits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed/pthread.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/include-fixed/syslimits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/install-tools/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/install-tools/fixinc_list
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/install-tools/gsyslimits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/install-tools/include/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/install-tools/include/README
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/install-tools/include/limits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/install-tools/macro_list
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/install-tools/mkheaders.conf
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/libgcc.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/libgcc_eh.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/libgcov.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/gtype.state
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ada/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ada/gcc-interface/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ada/gcc-interface/ada-tree.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/addresses.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/alias.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/align.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/all-tree.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/alloc-pool.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ansidecl.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/array-traits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/asan.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/attribs.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/auto-host.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/auto-profile.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/b-header-vars
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/backend.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/basic-block.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/bb-reorder.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/bitmap.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/brig-builtins.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/builtin-attrs.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/builtin-types.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/builtins.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/builtins.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/bversion.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/c-family/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/c-family/c-common.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/c-family/c-common.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/c-family/c-objc.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/c-family/c-pragma.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/c-family/c-pretty-print.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/c-tree.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/calls.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ccmp.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfg-flags.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfg.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfganal.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfgbuild.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfgcleanup.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfgexpand.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfghooks.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfgloop.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfgloopmanip.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cfgrtl.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cgraph.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cif-code.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/collect-utils.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/collect2-aix.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/collect2.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/color-macros.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/common/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/common/config/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/common/config/i386/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/common/config/i386/i386-cpuinfo.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/conditions.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/dbxelf.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/elfos.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/glibc-stdint.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/gnu-user.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/att.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/biarch64.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/gnu-user-common.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/gnu-user64.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/i386-opts.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/i386-protos.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/i386.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/linux-common.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/linux64.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/stringop.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/unix.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/x86-64.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/i386/x86-tune.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/initfini-array.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/linux-android.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/linux-protos.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/linux.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config/vxworks-dummy.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/config.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/configargs.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/context.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/convert.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/coretypes.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/coroutine-builtins.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/coverage.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cp/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cp/cp-tree.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cp/cp-tree.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cp/cxx-pretty-print.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cp/name-lookup.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cp/operators.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cp/type-utils.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cppbuiltin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cppdefault.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cpplib.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/cselib.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/d/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/d/d-tree.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/data-streamer.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dbgcnt.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dbgcnt.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dbxout.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dce.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ddg.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/debug.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/defaults.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/df.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dfp.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/diagnostic-color.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/diagnostic-core.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/diagnostic-event-id.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/diagnostic-metadata.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/diagnostic-path.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/diagnostic-url.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/diagnostic.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/diagnostic.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/digraph.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dojump.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dominance.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/domwalk.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/double-int.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dump-context.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dumpfile.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dwarf2asm.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/dwarf2out.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/edit-context.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/emit-rtl.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/errors.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/escaped_string.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/et-forest.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/except.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/explow.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/expmed.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/expr.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/fibonacci_heap.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/file-find.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/file-prefix-map.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/filenames.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/fixed-value.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/flag-types.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/flags.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/fold-const-call.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/fold-const.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/function-abi.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/function.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gcc-plugin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gcc-rich-location.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gcc-symtab.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gcc.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gcov-counter.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gcov-io.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gcse-common.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gcse.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/generic-match.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gengtype.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/genrtl.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gensupport.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ggc-internal.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ggc.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-builder.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-expr.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-fold.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-iterator.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-low.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-match.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-predict.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-pretty-print.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-ssa-evrp-analyze.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-ssa-warn-restrict.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-ssa.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-streamer.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple-walk.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimple.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimplify-me.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gimplify.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/glimits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gomp-constants.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/graph.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/graphds.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/graphite.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/graphviz.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gsstruct.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gstab.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gsyms.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gsyslimits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gtm-builtins.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/gtype-desc.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hard-reg-set.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hash-map-traits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hash-map.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hash-set.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hash-table.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hash-traits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hashtab.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/highlev-plugin-common.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hooks.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hosthooks-def.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hosthooks.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hsa-brig-format.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hsa-builtins.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hsa-common.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hw-doloop.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/hwint.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ifcvt.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/inchash.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/incpath.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/input.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-addr.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-attr-common.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-attr.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-codes.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-config.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-constants.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-flags.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-modes-inline.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-modes.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/insn-notes.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/int-vector-builder.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/internal-fn.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/internal-fn.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/intl.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-fnsummary.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-icf-gimple.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-icf.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-inline.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-param-manipulation.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-predicate.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-prop.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-ref.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-reference.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ipa-utils.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ira-int.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ira.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/is-a.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/json.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/langhooks-def.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/langhooks.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/lcm.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/libfuncs.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/libiberty.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/limitx.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/limity.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/line-map.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/loop-unroll.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/lower-subreg.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/lra-int.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/lra.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/lto-compress.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/lto-section-names.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/lto-streamer.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/machmode.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/machmode.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/md5.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/mem-stats-traits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/mem-stats.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/memmodel.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/memory-block.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/mode-classes.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/objc/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/objc/objc-tree.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/obstack.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/omp-builtins.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/omp-expand.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/omp-general.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/omp-grid.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/omp-low.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/omp-offload.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/omp-simd-clone.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/opt-problem.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/opt-suggestions.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/optabs-libfuncs.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/optabs-query.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/optabs-tree.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/optabs.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/optabs.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/optinfo-emit-json.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/optinfo.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/options.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/opts-diagnostic.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/opts.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ordered-hash-map.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/output.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/pass-instances.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/pass_manager.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/passes.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/plugin-api.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/plugin-version.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/plugin.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/plugin.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/poly-int-types.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/poly-int.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/predict.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/predict.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/prefix.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/pretty-print.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/print-rtl.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/print-tree.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/profile-count.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/profile.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/range-op.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/range.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/read-md.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/read-rtl-function.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/real.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/realmpfr.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/recog.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/reg-notes.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/regcprop.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/regrename.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/regs.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/regset.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/reload.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/resource.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/rtl-error.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/rtl-iter.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/rtl.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/rtl.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/rtlhash.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/rtlhooks-def.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/rtx-vector-builder.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/run-rtl-passes.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/safe-ctype.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sanitizer.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sbitmap.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sched-int.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sel-sched-dump.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sel-sched-ir.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sel-sched.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/selftest-diagnostic.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/selftest-rtl.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/selftest.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sese.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/shortest-paths.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/shrink-wrap.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/signop.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sparseset.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/spellcheck-tree.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/spellcheck.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/splay-tree.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sreal.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ssa-iterators.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ssa.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/stab.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/statistics.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/stmt.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/stor-layout.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/streamer-hooks.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/stringpool.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/substring-locations.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/symbol-summary.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/symtab.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/sync-builtins.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/system.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/target-def.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/target-globals.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/target-hooks-macros.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/target-insns.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/target.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/target.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/targhooks.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/timevar.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/timevar.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tm-preds.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tm.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tm_p.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/toplev.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tracer.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/trans-mem.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-affine.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-cfg.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-cfgcleanup.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-check.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-chrec.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-core.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-data-ref.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-dfa.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-diagnostic.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-dump.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-eh.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-hash-traits.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-hasher.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-if-conv.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-inline.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-into-ssa.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-iterator.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-nested.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-object-size.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-outof-ssa.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-parloops.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-pass.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-phinodes.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-pretty-print.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-scalar-evolution.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-sra.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-address.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-alias.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-ccp.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-coalesce.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-dce.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-dom.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-dse.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-live.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-loop-ivopts.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-loop-manip.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-loop-niter.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-loop.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-operands.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-propagate.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-sccvn.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-scopedtables.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-strlen.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-ter.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-threadedge.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa-threadupdate.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssa.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-ssanames.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-stdarg.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-streamer.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-switch-conversion.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-vector-builder.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-vectorizer.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree-vrp.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tree.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/treestruct.def
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tristate.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tsan.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/tsystem.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/typeclass.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/typed-splay-tree.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/ubsan.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/valtrack.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/value-prof.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/value-range.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/varasm.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/vec-perm-indices.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/vec.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/vector-builder.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/version.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/vmsdbg.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/vr-values.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/vtable-verify.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/wide-int-bitmask.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/wide-int-print.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/wide-int.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/xcoff.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/include/xcoffout.h
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/libcc1plugin.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/libcc1plugin.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/libcc1plugin.so.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/libcc1plugin.so.0.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/libcp1plugin.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/libcp1plugin.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/libcp1plugin.so.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/gcc/x86_64-unknown-linux-gnu/10.3.0/plugin/libcp1plugin.so.0.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libasan.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libasan.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libasan.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libasan.so.6
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libasan.so.6.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libasan_preinit.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libatomic.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libatomic.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libatomic.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libatomic.so.1
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libatomic.so.1.2.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libcc1.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libcc1.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libcc1.so.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libcc1.so.0.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libgcc_s.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libgcc_s.so.1
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libgomp.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libgomp.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libgomp.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libgomp.so.1
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libgomp.so.1.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libgomp.spec
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libitm.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libitm.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libitm.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libitm.so.1
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libitm.so.1.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libitm.spec
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/liblsan.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/liblsan.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/liblsan.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/liblsan.so.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/liblsan.so.0.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/liblsan_preinit.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libquadmath.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libquadmath.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libquadmath.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libquadmath.so.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libquadmath.so.0.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libsanitizer.spec
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libssp.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libssp.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libssp.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libssp.so.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libssp.so.0.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libssp_nonshared.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libssp_nonshared.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libstdc++.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libstdc++.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libstdc++.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libstdc++.so.6
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libstdc++.so.6.0.28
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libstdc++.so.6.0.28-gdb.py
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libstdc++fs.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libstdc++fs.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libsupc++.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libsupc++.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libtsan.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libtsan.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libtsan.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libtsan.so.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libtsan.so.0.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libtsan_preinit.o
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libubsan.a
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libubsan.la
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libubsan.so
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libubsan.so.1
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/lib/libubsan.so.1.0.0
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/doc/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/doc/gcc-10.3.0/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/doc/gcc-10.3.0/COPYING
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/doc/gcc-10.3.0/COPYING.LIB
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/doc/gcc-10.3.0/COPYING.RUNTIME
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/doc/gcc-10.3.0/COPYING3
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/doc/gcc-10.3.0/COPYING3.LIB
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/gcc-10.3.0/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/gcc-10.3.0/python/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/gcc-10.3.0/python/libstdcxx/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/gcc-10.3.0/python/libstdcxx/__init__.py
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/gcc-10.3.0/python/libstdcxx/v6/
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/gcc-10.3.0/python/libstdcxx/v6/__init__.py
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/gcc-10.3.0/python/libstdcxx/v6/printers.py
./gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib/share/gcc-10.3.0/python/libstdcxx/v6/xmethods.py
./gnu/store/bhib1d5n4ib8laxi29an15njb7dxy42p-emacs-subdirs/
./gnu/store/bhib1d5n4ib8laxi29an15njb7dxy42p-emacs-subdirs/share/
./gnu/store/bhib1d5n4ib8laxi29an15njb7dxy42p-emacs-subdirs/share/emacs/
./gnu/store/bhib1d5n4ib8laxi29an15njb7dxy42p-emacs-subdirs/share/emacs/site-lisp/
./gnu/store/bhib1d5n4ib8laxi29an15njb7dxy42p-emacs-subdirs/share/emacs/site-lisp/subdirs.el
./gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so
./gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8/
./gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8/bin/
./gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8/bin/bash
./gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8/bin/sh
./gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8/share/
./gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8/share/doc/
./gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8/share/doc/bash-static-5.1.8/
./gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8/share/doc/bash-static-5.1.8/COPYING
./gnu/store/gsp9ka5dqwqm09m4wvxj8hivg8c23z65-sed-4.8R/
./gnu/store/gsp9ka5dqwqm09m4wvxj8hivg8c23z65-sed-4.8R/bin/
./gnu/store/gsp9ka5dqwqm09m4wvxj8hivg8c23z65-sed-4.8R/bin/sed
./gnu/store/gsp9ka5dqwqm09m4wvxj8hivg8c23z65-sed-4.8R/etc
./gnu/store/gsp9ka5dqwqm09m4wvxj8hivg8c23z65-sed-4.8R/share
./gnu/store/happ2mjadkk5583azarvxx1shby1pzb5-info-dir/
./gnu/store/happ2mjadkk5583azarvxx1shby1pzb5-info-dir/share/
./gnu/store/happ2mjadkk5583azarvxx1shby1pzb5-info-dir/share/info/
./gnu/store/happ2mjadkk5583azarvxx1shby1pzb5-info-dir/share/info/dir
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/bin
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/etc/
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/etc/ld.so.cache
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/etc/profile
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/manifest
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/share/
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/share/doc
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/share/emacs
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/share/info/
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/share/info/dir
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/share/info/sed.info.gz
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/share/locale
./gnu/store/r4nfajkcxbmvbsn9ds92zilm12q4isw8-profile/share/man
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/bin/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/bin/sed
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/etc/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/etc/ld.so.cache
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/doc/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/doc/sed-4.8/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/doc/sed-4.8/COPYING
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/info/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/info/sed.info.gz
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/af/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/af/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/af/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ast/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ast/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ast/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/bg/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/bg/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/bg/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ca/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ca/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ca/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/cs/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/cs/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/cs/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/da/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/da/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/da/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/de/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/de/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/de/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/el/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/el/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/el/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/eo/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/eo/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/eo/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/es/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/es/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/es/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/et/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/et/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/et/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/eu/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/eu/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/eu/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/fi/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/fi/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/fi/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/fr/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/fr/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/fr/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ga/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ga/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ga/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/gl/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/gl/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/gl/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/he/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/he/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/he/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/hr/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/hr/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/hr/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/hu/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/hu/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/hu/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/id/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/id/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/id/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/it/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/it/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/it/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ja/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ja/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ja/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ko/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ko/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ko/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/nb/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/nb/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/nb/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/nl/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/nl/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/nl/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/pl/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/pl/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/pl/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/pt/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/pt/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/pt/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/pt_BR/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/pt_BR/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/pt_BR/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ro/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ro/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ro/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ru/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ru/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/ru/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sk/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sk/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sk/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sl/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sl/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sl/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sr/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sr/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sr/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sv/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sv/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/sv/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/tr/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/tr/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/tr/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/uk/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/uk/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/uk/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/vi/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/vi/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/vi/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/zh_CN/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/zh_CN/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/zh_CN/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/zh_TW/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/zh_TW/LC_MESSAGES/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/locale/zh_TW/LC_MESSAGES/sed.mo
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/man/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/man/man1/
./gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/share/man/man1/sed.1.gz
+ run_without_store /tmp/tmp.L59DtouzZR/Bin/sed --version
+ unshare -r true
+ unshare -mrf sh -c 'mount -t tmpfs -o ro none "$NIX_STORE_DIR"; /tmp/tmp.L59DtouzZR/Bin/sed --version'
+ grep 'GNU sed' /tmp/tmp.L59DtouzZR/output
/tmp/tmp.L59DtouzZR/Bin/sed (GNU sed) 4.8
GNU sed home page: <https://www.gnu.org/software/sed/>.
+ run_without_store GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/Bin/sed --version
+ unshare -r true
+ unshare -mrf sh -c 'mount -t tmpfs -o ro none "$NIX_STORE_DIR"; GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/Bin/sed --version'
+ grep 'GNU sed' /tmp/tmp.L59DtouzZR/output
/tmp/tmp.L59DtouzZR/Bin/sed (GNU sed) 4.8
GNU sed home page: <https://www.gnu.org/software/sed/>.
+ run_without_store /tmp/tmp.L59DtouzZR/Bin/sed --does-not-exist
+ unshare -r true
+ unshare -mrf sh -c 'mount -t tmpfs -o ro none "$NIX_STORE_DIR"; /tmp/tmp.L59DtouzZR/Bin/sed --does-not-exist'
/tmp/tmp.L59DtouzZR/Bin/sed: unrecognized option '--does-not-exist'
Usage: /tmp/tmp.L59DtouzZR/Bin/sed [OPTION]... {script-only-if-no-other-script} [input-file]...

  -n, --quiet, --silent
                 suppress automatic printing of pattern space
      --debug
                 annotate program execution
  -e script, --expression=script
                 add the script to the commands to be executed
  -f script-file, --file=script-file
                 add the contents of script-file to the commands to be executed
  --follow-symlinks
                 follow symlinks when processing in place
  -i[SUFFIX], --in-place[=SUFFIX]
                 edit files in place (makes backup if SUFFIX supplied)
  -l N, --line-length=N
                 specify the desired line-wrap length for the `l' command
  --posix
                 disable all GNU extensions.
  -E, -r, --regexp-extended
                 use extended regular expressions in the script
                 (for portability use POSIX -E).
  -s, --separate
                 consider files as separate rather than as a single,
                 continuous long stream.
      --sandbox
                 operate in sandbox mode (disable e/r/w commands).
  -u, --unbuffered
                 load minimal amounts of data from the input files and flush
                 the output buffers more often
  -z, --null-data
                 separate lines by NUL characters
      --help     display this help and exit
      --version  output version information and exit

If no -e, --expression, -f, or --file option is given, then the first
non-option argument is taken as the sed script to interpret.  All
remaining arguments are names of input files; if no input files are
specified, then the standard input is read.

GNU sed home page: <https://www.gnu.org/software/sed/>.
General help using GNU software: <https://www.gnu.org/gethelp/>.
+ chmod -Rf +w /tmp/tmp.L59DtouzZR
+ rm -rf /tmp/tmp.L59DtouzZR/Bin /tmp/tmp.L59DtouzZR/gnu /tmp/tmp.L59DtouzZR/output
+ case "`uname -m`" in
++ uname -m
++ guix pack -RR -S /Bin=bin sed
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  14.3%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  28.6%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  42.9%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  57.1%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  71.4%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  85.7%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'... 100.0%
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0%
The following derivations will be built:
   /gnu/store/3wkncr3nk00g5biycajv5kf88awi6ls1-sed-tarball-pack.tar.gz.drv
   /gnu/store/d2akyyxkc9zhgqq5jkxgrr3fmr8wsxhv-profile.drv

0.6 MB will be downloaded
.
.
building CA certificate bundle...
listing Emacs sub-directories...
building fonts directory...
building directory of Info manuals...
building profile with 1 package...
building /gnu/store/3wkncr3nk00g5biycajv5kf88awi6ls1-sed-tarball-pack.tar.gz.drv...
+ tarball=/gnu/store/fskclcqd0ay1bvhdi9nn0q2g6mnk993r-sed-tarball-pack.tar.gz
+ grep /bin/proot
+ tar tvf /gnu/store/fskclcqd0ay1bvhdi9nn0q2g6mnk993r-sed-tarball-pack.tar.gz
-r-xr-xr-x root/root   1089920 1969-12-31 19:00 ./gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a/bin/proot
+ cd /tmp/tmp.L59DtouzZR
+ tar xf /gnu/store/fskclcqd0ay1bvhdi9nn0q2g6mnk993r-sed-tarball-pack.tar.gz
+ run_without_store GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/Bin/sed --version
+ unshare -r true
+ unshare -mrf sh -c 'mount -t tmpfs -o ro none "$NIX_STORE_DIR"; GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/Bin/sed --version'
+ grep 'GNU sed' /tmp/tmp.L59DtouzZR/output
/gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/bin//sed (GNU sed) 4.8
GNU sed home page: <https://www.gnu.org/software/sed/>.
+ run_without_store GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/Bin/sed --version
+ unshare -r true
+ unshare -mrf sh -c 'mount -t tmpfs -o ro none "$NIX_STORE_DIR"; GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/Bin/sed --version'
+ grep 'GNU sed' /tmp/tmp.L59DtouzZR/output
/tmp/tmp.L59DtouzZR/gnu/store/wdr544wn79vn0qa8jp2lh9ryzbg2vmgh-sed-4.8/bin//sed (GNU sed) 4.8
GNU sed home page: <https://www.gnu.org/software/sed/>.
+ unset GUIX_EXECUTION_ENGINE
+ chmod -Rf +w /tmp/tmp.L59DtouzZR
+ rm -rf /tmp/tmp.L59DtouzZR/Bin /tmp/tmp.L59DtouzZR/gnu /tmp/tmp.L59DtouzZR/output
+ unshare -r true
++ guix pack -RR -S /bin=bin bash-minimal
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'... 100.0%
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0%
The following derivations will be built:
   /gnu/store/qiaq32d8bxz14kmysai3mz48i3s0k3bc-bash-minimal-tarball-pack.tar.gz.drv
   /gnu/store/xk4jiicn5bp8z8ardijxjc0p4x7v5wh5-profile.drv

0.3 MB will be downloaded
.
building CA certificate bundle...
listing Emacs sub-directories...
building fonts directory...
building directory of Info manuals...
building profile with 1 package...
building /gnu/store/qiaq32d8bxz14kmysai3mz48i3s0k3bc-bash-minimal-tarball-pack.tar.gz.drv...
+ tarball=/gnu/store/nl9l7rjrwgqw9niiq1g56f6jf2ljbcqv-bash-minimal-tarball-pack.tar.gz
+ cd /tmp/tmp.L59DtouzZR
+ tar xf /gnu/store/nl9l7rjrwgqw9niiq1g56f6jf2ljbcqv-bash-minimal-tarball-pack.tar.gz
++ dirname /gnu/store
+ STORE_PARENT=/gnu
+ export STORE_PARENT
+ for engine in userns proot fakechroot
+++ grep -v -e '-doc$'
+++ guix build bash-minimal
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'... 100.0%
0.9 MB will be downloaded:
   /gnu/store/87545yzdzsfgrn61c7dd8bwish0byqrp-bash-minimal-5.1.8-doc
   /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
substituting /gnu/store/87545yzdzsfgrn61c7dd8bwish0byqrp-bash-minimal-5.1.8-doc...
downloading from https://ci.guix.gnu.org/nar/lzip/87545yzdzsfgrn61c7dd8bwish0byqrp-bash-minimal-5.1.8-doc ...
.

++ guix gc -R /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
+ grep ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
+ grep ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
+ grep 90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
+ grep 90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
+ grep 2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
+ grep 2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
+ grep frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=userns /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
+ grep frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for engine in userns proot fakechroot
+++ grep -v -e '-doc$'
+++ guix build bash-minimal
++ guix gc -R /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
+ grep ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
+ grep ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
+ grep 90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
+ grep 90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
+ grep 2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
+ grep 2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
+ grep frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=proot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
+ grep frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for engine in userns proot fakechroot
+++ grep -v -e '-doc$'
+++ guix build bash-minimal
++ guix gc -R /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
+ grep ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
+ grep ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
+ grep 90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
+ grep 90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
+ grep 2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
+ grep 2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu/store"; GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
+ grep frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ unshare -mrf sh -c 'mount -t tmpfs none "/gnu";  GUIX_EXECUTION_ENGINE=fakechroot /tmp/tmp.L59DtouzZR/bin/sh -c '\''echo /gnu/store/*'\'''
++ basename /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
+ grep frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8
/gnu/store/2fk1gz2s7ppdicynscra9b19byrrr866-glibc-2.33 /gnu/store/363ynghnnyg3snfl6zmr3h076dvd8mgp-bash-minimal-5.1.8R /gnu/store/3jfz8zrks65gc9bw8v5vsr0xbr1mqrwp-pack-audit.so /gnu/store/90lbavffg0csrf208nw0ayj1bz5knl47-gcc-10.3.0-lib /gnu/store/fh4pzdqq23nh2xa46029abgpcggiq3k5-libfakechroot.so /gnu/store/frs0cv3f6r8frqan91wlm05hm6iwlyn1-bash-minimal-5.1.8 /gnu/store/gbsqqwkzqg3mgf2d5nmxr31k07x1kmnn-emacs-subdirs /gnu/store/ggrih6fgnflxs6k87m8q2l9ky0za8y1z-bash-static-5.1.8 /gnu/store/iz6sv5zgdr5367hqff69grc662lgdr2z-info-dir /gnu/store/jp1p15rak7a3ygf8lb2q6mh7a63cgx5k-profile /gnu/store/m22pfybbwx2s1mx50mngai9ik516v3fd-proot-static-5.2.0-alpha-0.a70023a
+ chmod -Rf +w /tmp/tmp.L59DtouzZR
+ rm -rf /tmp/tmp.L59DtouzZR/bin /tmp/tmp.L59DtouzZR/gnu
+ unshare -r true
+ cat
++ guix pack -S /bin=bin -R -m /tmp/tmp.L59DtouzZR/manifest.scm
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  33.3%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  66.7%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'... 100.0%
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0%
The following derivations will be built:
   /gnu/store/6mlxlmavbh8zyqhjk773wasxxg3frd83-daemon-tarball-pack.tar.gz.drv
   /gnu/store/s17iqr8y474hpj3pjah4jr13b2hvygi5-profile.drv
   /gnu/store/9n1jc2qmq8hj3z58q7bnc11m77rf75qj-daemon.drv

0.2 MB will be downloaded
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'... 100.0%
..
..
.
building CA certificate bundle...
listing Emacs sub-directories...
building fonts directory...
building directory of Info manuals...
building profile with 1 package...
building /gnu/store/6mlxlmavbh8zyqhjk773wasxxg3frd83-daemon-tarball-pack.tar.gz.drv...
+ tarball=/gnu/store/2llhimyxzch6g6x39hw7jnxavqqwsgxk-daemon-tarball-pack.tar.gz
+ cd /tmp/tmp.L59DtouzZR
+ tar xf /gnu/store/2llhimyxzch6g6x39hw7jnxavqqwsgxk-daemon-tarball-pack.tar.gz
+ cd /tmp/tmp.L59DtouzZR
+ run_without_store ./bin/daemon
+ unshare -r true
+ unshare -mrf sh -c 'mount -t tmpfs -o ro none "$NIX_STORE_DIR"; ./bin/daemon'
+ wait_for_file /tmp/tmp.L59DtouzZR/pid
+ i=0
+ test -f /tmp/tmp.L59DtouzZR/pid
+ test 0 -lt 20
+ sleep 0.3
++ expr 0 + 1
+ i=1
+ test -f /tmp/tmp.L59DtouzZR/pid
+ test -f /tmp/tmp.L59DtouzZR/pid
++ cat /tmp/tmp.L59DtouzZR/pid
+ kill -HUP 25365
+ wait_for_file /tmp/tmp.L59DtouzZR/child-store
+ i=0
+ test -f /tmp/tmp.L59DtouzZR/child-store
+ test 0 -lt 20
+ sleep 0.3
++ expr 0 + 1
+ i=1
+ test -f /tmp/tmp.L59DtouzZR/child-store
+ test -f /tmp/tmp.L59DtouzZR/child-store
+ diff -u /tmp/tmp.L59DtouzZR/parent-store /tmp/tmp.L59DtouzZR/child-store
+ chmod -Rf +w /tmp/tmp.L59DtouzZR
+ rm -rf /tmp/tmp.L59DtouzZR/bin /tmp/tmp.L59DtouzZR/child-store /tmp/tmp.L59DtouzZR/gnu /tmp/tmp.L59DtouzZR/manifest.scm /tmp/tmp.L59DtouzZR/parent-store /tmp/tmp.L59DtouzZR/pid
++ guix pack -R -S /share=share groff:doc
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  33.3%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'...  66.7%\rsubstitute: ^[[Kupdating substitutes from 'https://ci.guix.gnu.org'... 100.0%
substitute: \rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'...   0.0%\rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'...  50.0%\rsubstitute: ^[[Kupdating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0%
The following derivations will be built:
   /gnu/store/8bwp1b62dcyzpkj4h19wrk7aiv9azazg-groff-tarball-pack.tar.gz.drv
   /gnu/store/s9sn4z66j7cy3dcd2gdhml5b98mva5s5-profile.drv
   /gnu/store/gcd09yhshc0fssiix1ivhsn28rfxda7c-groff-1.22.4R.drv
   /gnu/store/ip2f7igq1ggf191qf2bixv8gwymwmfag-c-compiler.drv

1.7 MB will be downloaded
.
..
.
.
building /gnu/store/ip2f7igq1ggf191qf2bixv8gwymwmfag-c-compiler.drv...
..
building /gnu/store/gcd09yhshc0fssiix1ivhsn28rfxda7c-groff-1.22.4R.drv...
building CA certificate bundle...
listing Emacs sub-directories...
building fonts directory...
building directory of Info manuals...
building profile with 1 package...
building /gnu/store/8bwp1b62dcyzpkj4h19wrk7aiv9azazg-groff-tarball-pack.tar.gz.drv...
+ tarball=/gnu/store/xymsbxzcdsx9i74myj7lj4fjacj5igsm-groff-tarball-pack.tar.gz
+ cd /tmp/tmp.L59DtouzZR
+ tar xf /gnu/store/xymsbxzcdsx9i74myj7lj4fjacj5igsm-groff-tarball-pack.tar.gz
+ test -d /tmp/tmp.L59DtouzZR/share/doc/groff/html
+ chmod -Rf +w /tmp/tmp.L59DtouzZR
+ rm -rf /tmp/tmp.L59DtouzZR/gnu /tmp/tmp.L59DtouzZR/share
+ guix pack -RR python-numpy python-scipy --no-grafts -n
guix pack: error: profile contains conflicting entries for python-numpy
guix pack: error:   first entry: python-numpy@1.21.3 /gnu/store/9dd0zkkwl45rmsa7b6vjb1747l57aw4y-python-numpy-1.21.3R
guix pack: error:   second entry: python-numpy@1.20.3 /gnu/store/mlccgh05bf8cdinq0ilpvpdmsspq36pv-python-numpy-1.20.3R
guix pack: error:    ... propagated from python-matplotlib@3.4.3
guix pack: error:    ... propagated from python-scipy@1.6.0
hint: Backtrace:
In guix/gexp.scm:
   1180:2 19 (_ _)
   1046:2 18 (_ _)
    892:4 17 (_ _)
In guix/store.scm:
  2008:12 16 (_ #<store-connection 256.99 7f5cb06845f0>)
   1385:9 15 (map/accumulate-builds #<store-connection 256.99 7f5cb?> ?)
   1320:8 14 (call-with-build-handler #<procedure 7f5ca4e50f00 at g?> ?)
  2123:24 13 (run-with-store #<store-connection 256.99 7f5cb06845f0> ?)
In guix/gexp.scm:
   897:13 12 (_ _)
In guix/store.scm:
   1960:8 11 (_ _)
In guix/gexp.scm:
   296:22 10 (_ _)
In guix/profiles.scm:
   1878:2  9 (_ _)
    358:4  8 (_ _)
In guix/store.scm:
   1869:0  7 (loop _ _)
In ice-9/boot-9.scm:
  1685:16  6 (raise-exception _ #:continuable? _)
  1685:16  5 (raise-exception _ #:continuable? _)
In guix/ui.scm:
   761:16  4 (_ _)
   314:42  3 (display-hint "Try upgrading both @code{python-numpy} ?" ?)
In ice-9/boot-9.scm:
  1747:15  2 (with-exception-handler #<procedure 7f5c9becbb10 at ic?> ?)
In guix/build/syscalls.scm:
  2282:35  1 (_)
   2271:8  0 (terminal-window-size _)

guix/build/syscalls.scm:2271:8: In procedure terminal-window-size:
In procedure terminal-window-size: Inappropriate ioctl for device
+ chmod -Rf +w /tmp/tmp.L59DtouzZR
+ rm -rf /tmp/tmp.L59DtouzZR
FAIL tests/guix-pack-relocatable.sh (exit status: 1)


[-- Attachment #1.1.3: config.log --]
[-- Type: text/x-log, Size: 49497 bytes --]

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by GNU Guix configure UNKNOWN, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure --localstatedir=/var

## --------- ##
## Platform. ##
## --------- ##

hostname = gorse
uname -m = x86_64
uname -r = 5.14.17-gnu
uname -s = Linux
uname -v = #1 SMP 1

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin
PATH: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/sbin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2585: checking for a BSD-compatible install
configure:2653: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/install -c
configure:2664: checking whether build environment is sane
configure:2719: result: yes
configure:2863: checking for a thread-safe mkdir -p
configure:2902: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/mkdir -p
configure:2909: checking for gawk
configure:2925: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/gawk
configure:2936: result: gawk
configure:2947: checking whether make sets $(MAKE)
configure:2969: result: yes
configure:2998: checking whether make supports nested variables
configure:3015: result: yes
configure:3104: checking whether UID '1000' is supported by ustar format
configure:3107: result: yes
configure:3114: checking whether GID '998' is supported by ustar format
configure:3117: result: yes
configure:3125: checking how to create a ustar tar archive
configure:3136: tar --version
tar (GNU tar) 1.34
Copyright (C) 2021 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by John Gilmore and Jay Fenlason.
configure:3139: $? = 0
configure:3179: tardir=conftest.dir && eval tar --format=ustar -chf - "$tardir" >conftest.tar
configure:3182: $? = 0
configure:3186: tar -xf - <conftest.tar
configure:3189: $? = 0
configure:3191: cat conftest.dir/file
GrepMe
configure:3194: $? = 0
configure:3207: result: gnutar
configure:3270: checking whether make supports nested variables
configure:3287: result: yes
configure:3306: checking whether make supports the include directive
configure:3321: make -f confmf.GNU && cat confinc.out
this is the am__doit target
configure:3324: $? = 0
configure:3343: result: yes (GNU style)
configure:3413: checking for gcc
configure:3429: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/gcc
configure:3440: result: gcc
configure:3669: checking for C compiler version
configure:3678: gcc --version >&5
gcc (GCC) 10.3.0
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:3689: $? = 0
configure:3678: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/gnu/store/vakvgvrb839igv16jkif4lmx11d25jqb-gcc-10.3.0/libexec/gcc/x86_64-unknown-linux-gnu/10.3.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: 
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 10.3.0 (GCC) 
configure:3689: $? = 0
configure:3678: gcc -V >&5
gcc: error: unrecognized command-line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3689: $? = 1
configure:3678: gcc -qversion >&5
gcc: error: unrecognized command-line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
configure:3689: $? = 1
configure:3709: checking whether the C compiler works
configure:3731: gcc    conftest.c  >&5
configure:3735: $? = 0
configure:3783: result: yes
configure:3786: checking for C compiler default output file name
configure:3788: result: a.out
configure:3794: checking for suffix of executables
configure:3801: gcc -o conftest    conftest.c  >&5
configure:3805: $? = 0
configure:3827: result: 
configure:3849: checking whether we are cross compiling
configure:3857: gcc -o conftest    conftest.c  >&5
configure:3861: $? = 0
configure:3868: ./conftest
configure:3872: $? = 0
configure:3860: result: no
configure:3865: checking for suffix of object files
configure:3887: gcc -c   conftest.c >&5
configure:3891: $? = 0
configure:3912: result: o
configure:3916: checking whether we are using the GNU C compiler
configure:3935: gcc -c   conftest.c >&5
configure:3935: $? = 0
configure:3944: result: yes
configure:3953: checking whether gcc accepts -g
configure:3973: gcc -c -g  conftest.c >&5
configure:3973: $? = 0
configure:4014: result: yes
configure:4031: checking for gcc option to accept ISO C89
configure:4094: gcc  -c -g -O2  conftest.c >&5
configure:4094: $? = 0
configure:4107: result: none needed
configure:4132: checking whether gcc understands -c and -o together
configure:4154: gcc -c conftest.c -o conftest2.o
configure:4157: $? = 0
configure:4154: gcc -c conftest.c -o conftest2.o
configure:4157: $? = 0
configure:4169: result: yes
configure:4188: checking dependency style of gcc
configure:4299: result: gcc3
configure:4320: checking how to run the C preprocessor
configure:4351: gcc -E  conftest.c
configure:4351: $? = 0
configure:4365: gcc -E  conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
   11 | #include <ac_nonexistent.h>
      |          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4365: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Guix"
| #define PACKAGE_TARNAME "guix"
| #define PACKAGE_VERSION "UNKNOWN"
| #define PACKAGE_STRING "GNU Guix UNKNOWN"
| #define PACKAGE_BUGREPORT "bug-guix@gnu.org"
| #define PACKAGE_URL "https://www.gnu.org/software/guix/"
| #define PACKAGE "guix"
| #define VERSION "UNKNOWN"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4390: result: gcc -E
configure:4410: gcc -E  conftest.c
configure:4410: $? = 0
configure:4424: gcc -E  conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
   11 | #include <ac_nonexistent.h>
      |          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4424: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Guix"
| #define PACKAGE_TARNAME "guix"
| #define PACKAGE_VERSION "UNKNOWN"
| #define PACKAGE_STRING "GNU Guix UNKNOWN"
| #define PACKAGE_BUGREPORT "bug-guix@gnu.org"
| #define PACKAGE_URL "https://www.gnu.org/software/guix/"
| #define PACKAGE "guix"
| #define VERSION "UNKNOWN"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4453: checking for grep that handles long lines and -e
configure:4511: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/grep
configure:4516: checking for egrep
configure:4578: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/grep -E
configure:4583: checking for ANSI C header files
configure:4603: gcc -c -g -O2  conftest.c >&5
configure:4603: $? = 0
configure:4676: gcc -o conftest -g -O2   conftest.c  >&5
configure:4676: $? = 0
configure:4676: ./conftest
configure:4676: $? = 0
configure:4687: result: yes
configure:4700: checking for sys/types.h
configure:4700: gcc -c -g -O2  conftest.c >&5
configure:4700: $? = 0
configure:4700: result: yes
configure:4700: checking for sys/stat.h
configure:4700: gcc -c -g -O2  conftest.c >&5
configure:4700: $? = 0
configure:4700: result: yes
configure:4700: checking for stdlib.h
configure:4700: gcc -c -g -O2  conftest.c >&5
configure:4700: $? = 0
configure:4700: result: yes
configure:4700: checking for string.h
configure:4700: gcc -c -g -O2  conftest.c >&5
configure:4700: $? = 0
configure:4700: result: yes
configure:4700: checking for memory.h
configure:4700: gcc -c -g -O2  conftest.c >&5
configure:4700: $? = 0
configure:4700: result: yes
configure:4700: checking for strings.h
configure:4700: gcc -c -g -O2  conftest.c >&5
configure:4700: $? = 0
configure:4700: result: yes
configure:4700: checking for inttypes.h
configure:4700: gcc -c -g -O2  conftest.c >&5
configure:4700: $? = 0
configure:4700: result: yes
configure:4700: checking for stdint.h
configure:4700: gcc -c -g -O2  conftest.c >&5
configure:4700: $? = 0
configure:4700: result: yes
configure:4700: checking for unistd.h
configure:4700: gcc -c -g -O2  conftest.c >&5
configure:4700: $? = 0
configure:4700: result: yes
configure:4713: checking minix/config.h usability
configure:4713: gcc -c -g -O2  conftest.c >&5
conftest.c:54:10: fatal error: minix/config.h: No such file or directory
   54 | #include <minix/config.h>
      |          ^~~~~~~~~~~~~~~~
compilation terminated.
configure:4713: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Guix"
| #define PACKAGE_TARNAME "guix"
| #define PACKAGE_VERSION "UNKNOWN"
| #define PACKAGE_STRING "GNU Guix UNKNOWN"
| #define PACKAGE_BUGREPORT "bug-guix@gnu.org"
| #define PACKAGE_URL "https://www.gnu.org/software/guix/"
| #define PACKAGE "guix"
| #define VERSION "UNKNOWN"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:4713: result: no
configure:4713: checking minix/config.h presence
configure:4713: gcc -E  conftest.c
conftest.c:21:10: fatal error: minix/config.h: No such file or directory
   21 | #include <minix/config.h>
      |          ^~~~~~~~~~~~~~~~
compilation terminated.
configure:4713: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Guix"
| #define PACKAGE_TARNAME "guix"
| #define PACKAGE_VERSION "UNKNOWN"
| #define PACKAGE_STRING "GNU Guix UNKNOWN"
| #define PACKAGE_BUGREPORT "bug-guix@gnu.org"
| #define PACKAGE_URL "https://www.gnu.org/software/guix/"
| #define PACKAGE "guix"
| #define VERSION "UNKNOWN"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:4713: result: no
configure:4713: checking for minix/config.h
configure:4713: result: no
configure:4734: checking whether it is safe to define __EXTENSIONS__
configure:4752: gcc -c -g -O2  conftest.c >&5
configure:4752: $? = 0
configure:4759: result: yes
configure:4774: checking for a sed that does not truncate output
configure:4838: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/sed
configure:4844: checking whether NLS is requested
configure:4853: result: yes
configure:4893: checking for msgfmt
configure: trying /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt...
0 translated messages.
configure:4925: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt
configure:4934: checking for gmsgfmt
configure:4965: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt
configure:5015: checking for xgettext
configure: trying /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xgettext...
/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C
configure:5047: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xgettext
configure:5092: checking for msgmerge
configure: trying /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgmerge...
configure:5123: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgmerge
configure:5160: checking build system type
configure:5174: result: x86_64-pc-linux-gnu
configure:5194: checking host system type
configure:5207: result: x86_64-pc-linux-gnu
configure:5252: checking for ld used by gcc
configure:5319: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/ld
configure:5326: checking if the linker (/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/ld) is GNU ld
configure:5341: result: yes
configure:5348: checking for shared library run path origin
configure:5361: result: done
configure:5933: checking for CFPreferencesCopyAppValue
configure:5951: gcc -o conftest -g -O2   conftest.c  -Wl,-framework -Wl,CoreFoundation >&5
conftest.c:26:10: fatal error: CoreFoundation/CFPreferences.h: No such file or directory
   26 | #include <CoreFoundation/CFPreferences.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
configure:5951: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Guix"
| #define PACKAGE_TARNAME "guix"
| #define PACKAGE_VERSION "UNKNOWN"
| #define PACKAGE_STRING "GNU Guix UNKNOWN"
| #define PACKAGE_BUGREPORT "bug-guix@gnu.org"
| #define PACKAGE_URL "https://www.gnu.org/software/guix/"
| #define PACKAGE "guix"
| #define VERSION "UNKNOWN"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| #include <CoreFoundation/CFPreferences.h>
| int
| main ()
| {
| CFPreferencesCopyAppValue(NULL, NULL)
|   ;
|   return 0;
| }
configure:5960: result: no
configure:5967: checking for CFLocaleCopyCurrent
configure:5985: gcc -o conftest -g -O2   conftest.c  -Wl,-framework -Wl,CoreFoundation >&5
conftest.c:26:10: fatal error: CoreFoundation/CFLocale.h: No such file or directory
   26 | #include <CoreFoundation/CFLocale.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
configure:5985: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Guix"
| #define PACKAGE_TARNAME "guix"
| #define PACKAGE_VERSION "UNKNOWN"
| #define PACKAGE_STRING "GNU Guix UNKNOWN"
| #define PACKAGE_BUGREPORT "bug-guix@gnu.org"
| #define PACKAGE_URL "https://www.gnu.org/software/guix/"
| #define PACKAGE "guix"
| #define VERSION "UNKNOWN"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| /* end confdefs.h.  */
| #include <CoreFoundation/CFLocale.h>
| int
| main ()
| {
| CFLocaleCopyCurrent();
|   ;
|   return 0;
| }
configure:5994: result: no
configure:6043: checking for GNU gettext in libc
configure:6067: gcc -o conftest -g -O2   conftest.c  >&5
configure:6067: $? = 0
configure:6076: result: yes
configure:6904: checking whether to use NLS
configure:6906: result: yes
configure:6909: checking where the gettext function comes from
configure:6920: result: libc
configure:6983: checking for sed
configure:7013: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/sed
configure:7066: checking for the Guix system type
configure:7068: result: x86_64-linux
configure:7199: checking for the store directory
configure:7201: result: /gnu/store
configure:7223: checking the length of the installed socket file name
configure:7230: result: 30
configure:7234: checking for unit test root directory
configure:7241: result: /home/ming/Downloads/guix/test-tmp
configure:7246: checking the length of the socket file name used in tests
configure:7253: result: 66
configure:7257: checking the length of a typical hash bang line
configure:7264: result: 73
configure:7269: checking the length of a hash bang line used in tests
configure:7276: result: 103
configure:7373: checking for pkg-config
configure:7391: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/pkg-config
configure:7403: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/pkg-config
configure:7428: checking pkg-config is at least version 0.9.0
configure:7431: result: yes
configure:7463: checking for guile 3.0
configure:7466: $PKG_CONFIG --exists --print-errors "guile-$v"
configure:7469: $? = 0
configure:7486: found guile 3.0
configure:7507: checking for guile-3.0
configure:7540: result: no
configure:7507: checking for guile3.0
configure:7540: result: no
configure:7507: checking for guile-3
configure:7540: result: no
configure:7507: checking for guile3
configure:7540: result: no
configure:7507: checking for guile
configure:7525: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile
configure:7537: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile
configure:7565: checking for Guile version >= 3.0
configure:7593: result: 3.0.7
configure:7598: checking for guild
configure:7616: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guild
configure:7628: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guild
configure:7640: checking for guile-config
configure:7658: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile-config
configure:7670: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile-config
configure:7732: checking for guile-3.0
configure:7739: $PKG_CONFIG --exists --print-errors "guile-$GUILE_EFFECTIVE_VERSION"
configure:7742: $? = 0
configure:7756: $PKG_CONFIG --exists --print-errors "guile-$GUILE_EFFECTIVE_VERSION"
configure:7759: $? = 0
configure:7817: result: yes
configure:7960: checking if (gnutls) is available
configure:7967: result: yes
configure:7975: checking if (git) is available
configure:7982: result: yes
configure:7991: checking whether Guile-JSON is available and recent enough
configure:8017: result: yes
configure:8025: checking whether Guile-Sqlite3 is available and recent enough
configure:8040: result: yes
configure:8048: checking whether Guile-Gcrypt is available and recent enough
configure:8065: result: yes
configure:8073: checking whether Guile-Git is available and recent enough
configure:8093: result: yes
configure:8100: checking if (htmlprag) exports `%strict-tokenizer?'
configure:8107: result: yes
configure:8128: checking whether Guile-zlib is available and recent enough
configure:8144: result: yes
configure:8151: checking if (lzlib) is available
configure:8158: result: yes
configure:8166: checking if (avahi) is available
configure:8173: result: yes
configure:8186: checking if (newt) is available
configure:8193: result: no
configure:8224: checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'regex'
configure:8228: result: yes
configure:8224: checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'posix'
configure:8228: result: yes
configure:8224: checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'socket'
configure:8228: result: yes
configure:8224: checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'net-db'
configure:8228: result: yes
configure:8224: checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'threads'
configure:8228: result: yes
configure:8238: checking for a sed that does not truncate output
configure:8302: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/sed
configure:8310: checking for gzip
configure:8328: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/gzip
configure:8340: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/gzip
configure:8350: checking for bzip2
configure:8368: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/bzip2
configure:8380: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/bzip2
configure:8390: checking for xz
configure:8408: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xz
configure:8420: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xz
configure:8468: checking for libgcrypt-config
configure:8486: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/libgcrypt-config
configure:8498: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/libgcrypt-config
configure:8506: checking libgcrypt's library directory
configure:8517: result: /gnu/store/5z3gh8yq8a8dzlhm7llx50cjf1vj1r2w-libgcrypt-1.8.8/lib
configure:8528: checking whether Guile-SSH is available and recent enough
configure:8547: result: yes
configure:8638: checking whether to build daemon
configure:8640: result: yes
configure:8701: checking for g++
configure:8717: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/g++
configure:8728: result: g++
configure:8755: checking for C++ compiler version
configure:8764: g++ --version >&5
g++ (GCC) 10.3.0
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:8775: $? = 0
configure:8764: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/gnu/store/vakvgvrb839igv16jkif4lmx11d25jqb-gcc-10.3.0/libexec/gcc/x86_64-unknown-linux-gnu/10.3.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: 
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 10.3.0 (GCC) 
configure:8775: $? = 0
configure:8764: g++ -V >&5
g++: error: unrecognized command-line option '-V'
g++: fatal error: no input files
compilation terminated.
configure:8775: $? = 1
configure:8764: g++ -qversion >&5
g++: error: unrecognized command-line option '-qversion'; did you mean '--version'?
g++: fatal error: no input files
compilation terminated.
configure:8775: $? = 1
configure:8779: checking whether we are using the GNU C++ compiler
configure:8798: g++ -c   conftest.cpp >&5
configure:8798: $? = 0
configure:8807: result: yes
configure:8816: checking whether g++ accepts -g
configure:8836: g++ -c -g  conftest.cpp >&5
configure:8836: $? = 0
configure:8877: result: yes
configure:8902: checking dependency style of g++
configure:9013: result: gcc3
configure:9077: checking for ar
configure:9093: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/ar
configure:9104: result: ar
configure:9130: checking the archiver (ar) interface
configure:9146: gcc -c -g -O2  conftest.c >&5
configure:9146: $? = 0
configure:9148: ar cru libconftest.a conftest.o >&5
ar: `u' modifier ignored since `D' is the default (see `U')
configure:9151: $? = 0
configure:9150: result: ar
configure:9183: checking whether g++ supports C++11
configure:9207: g++ -c -std=c++11 -g -O2  conftest.cpp >&5
configure:9207: $? = 0
configure:9216: result: yes
configure:9267: checking for ranlib
configure:9283: found /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/ranlib
configure:9294: result: ranlib
configure:9326: checking for special C compiler options needed for large files
configure:9371: result: no
configure:9377: checking for _FILE_OFFSET_BITS value needed for large files
configure:9402: g++ -c -g -O2  conftest.cpp >&5
configure:9402: $? = 0
configure:9434: result: no
configure:9520: checking for gzdopen in -lz
configure:9545: g++ -o conftest -g -O2   conftest.cpp -lz   >&5
configure:9545: $? = 0
configure:9554: result: yes
configure:9567: checking how to run the C++ preprocessor
configure:9594: g++ -E  conftest.cpp
configure:9594: $? = 0
configure:9608: g++ -E  conftest.cpp
conftest.cpp:29:10: fatal error: ac_nonexistent.h: No such file or directory
   29 | #include <ac_nonexistent.h>
      |          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:9608: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Guix"
| #define PACKAGE_TARNAME "guix"
| #define PACKAGE_VERSION "UNKNOWN"
| #define PACKAGE_STRING "GNU Guix UNKNOWN"
| #define PACKAGE_BUGREPORT "bug-guix@gnu.org"
| #define PACKAGE_URL "https://www.gnu.org/software/guix/"
| #define PACKAGE "guix"
| #define VERSION "UNKNOWN"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:9633: result: g++ -E
configure:9653: g++ -E  conftest.cpp
configure:9653: $? = 0
configure:9667: g++ -E  conftest.cpp
conftest.cpp:29:10: fatal error: ac_nonexistent.h: No such file or directory
   29 | #include <ac_nonexistent.h>
      |          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:9667: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Guix"
| #define PACKAGE_TARNAME "guix"
| #define PACKAGE_VERSION "UNKNOWN"
| #define PACKAGE_STRING "GNU Guix UNKNOWN"
| #define PACKAGE_BUGREPORT "bug-guix@gnu.org"
| #define PACKAGE_URL "https://www.gnu.org/software/guix/"
| #define PACKAGE "guix"
| #define VERSION "UNKNOWN"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:9698: checking zlib.h usability
configure:9698: g++ -c -g -O2  conftest.cpp >&5
configure:9698: $? = 0
configure:9698: result: yes
configure:9698: checking zlib.h presence
configure:9698: g++ -E  conftest.cpp
configure:9698: $? = 0
configure:9698: result: yes
configure:9698: checking for zlib.h
configure:9698: result: yes
configure:9711: checking for BZ2_bzWriteOpen in -lbz2
configure:9736: g++ -o conftest -g -O2   conftest.cpp -lbz2   >&5
configure:9736: $? = 0
configure:9745: result: yes
configure:9756: checking bzlib.h usability
configure:9756: g++ -c -g -O2  conftest.cpp >&5
configure:9756: $? = 0
configure:9756: result: yes
configure:9756: checking bzlib.h presence
configure:9756: g++ -E  conftest.cpp
configure:9756: $? = 0
configure:9756: result: yes
configure:9756: checking for bzlib.h
configure:9756: result: yes
configure:9771: checking for sqlite3 >= 3.6.19
configure:9778: $PKG_CONFIG --exists --print-errors "sqlite3 >= 3.6.19"
configure:9781: $? = 0
configure:9795: $PKG_CONFIG --exists --print-errors "sqlite3 >= 3.6.19"
configure:9798: $? = 0
configure:9856: result: yes
configure:9894: checking for gcry_md_open in -lgcrypt
configure:9919: g++ -o conftest -g -O2    conftest.cpp -lgcrypt   >&5
configure:9919: $? = 0
configure:9928: result: yes
configure:9936: checking gcrypt.h usability
configure:9936: g++ -c -g -O2  conftest.cpp >&5
configure:9936: $? = 0
configure:9936: result: yes
configure:9936: checking gcrypt.h presence
configure:9936: g++ -E  conftest.cpp
configure:9936: $? = 0
configure:9936: result: yes
configure:9936: checking for gcrypt.h
configure:9936: result: yes
configure:9954: checking for chroot
configure:9954: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9954: $? = 0
configure:9954: result: yes
configure:9954: checking for unshare
configure:9954: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9954: $? = 0
configure:9954: result: yes
configure:9966: checking sched.h usability
configure:9966: g++ -c -g -O2  conftest.cpp >&5
configure:9966: $? = 0
configure:9966: result: yes
configure:9966: checking sched.h presence
configure:9966: g++ -E  conftest.cpp
configure:9966: $? = 0
configure:9966: result: yes
configure:9966: checking for sched.h
configure:9966: result: yes
configure:9966: checking sys/param.h usability
configure:9966: g++ -c -g -O2  conftest.cpp >&5
configure:9966: $? = 0
configure:9966: result: yes
configure:9966: checking sys/param.h presence
configure:9966: g++ -E  conftest.cpp
configure:9966: $? = 0
configure:9966: result: yes
configure:9966: checking for sys/param.h
configure:9966: result: yes
configure:9966: checking sys/mount.h usability
configure:9966: g++ -c -g -O2  conftest.cpp >&5
configure:9966: $? = 0
configure:9966: result: yes
configure:9966: checking sys/mount.h presence
configure:9966: g++ -E  conftest.cpp
configure:9966: $? = 0
configure:9966: result: yes
configure:9966: checking for sys/mount.h
configure:9966: result: yes
configure:9966: checking sys/syscall.h usability
configure:9966: g++ -c -g -O2  conftest.cpp >&5
configure:9966: $? = 0
configure:9966: result: yes
configure:9966: checking sys/syscall.h presence
configure:9966: g++ -E  conftest.cpp
configure:9966: $? = 0
configure:9966: result: yes
configure:9966: checking for sys/syscall.h
configure:9966: result: yes
configure:9985: checking for lutimes
configure:9985: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9985: $? = 0
configure:9985: result: yes
configure:9985: checking for lchown
configure:9985: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9985: $? = 0
configure:9985: result: yes
configure:9985: checking for posix_fallocate
configure:9985: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9985: $? = 0
configure:9985: result: yes
configure:9985: checking for sched_setaffinity
configure:9985: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9985: $? = 0
configure:9985: result: yes
configure:9985: checking for statvfs
configure:9985: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9985: $? = 0
configure:9985: result: yes
configure:9985: checking for nanosleep
configure:9985: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9985: $? = 0
configure:9985: result: yes
configure:9985: checking for strsignal
configure:9985: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9985: $? = 0
configure:9985: result: yes
configure:9985: checking for statx
configure:9985: g++ -o conftest -g -O2   conftest.cpp  >&5
configure:9985: $? = 0
configure:9985: result: yes
configure:10003: checking locale usability
configure:10003: g++ -c -g -O2  conftest.cpp >&5
configure:10003: $? = 0
configure:10003: result: yes
configure:10003: checking locale presence
configure:10003: g++ -E  conftest.cpp
configure:10003: $? = 0
configure:10003: result: yes
configure:10003: checking for locale
configure:10003: result: yes
configure:10023: checking sys/personality.h usability
configure:10023: g++ -c -g -O2  conftest.cpp >&5
configure:10023: $? = 0
configure:10023: result: yes
configure:10023: checking sys/personality.h presence
configure:10023: g++ -E  conftest.cpp
configure:10023: $? = 0
configure:10023: result: yes
configure:10023: checking for sys/personality.h
configure:10023: result: yes
configure:10036: checking for default substitute URLs
configure:10038: result: https://ci.guix.gnu.org https://bordeaux.guix.gnu.org
configure:10048: checking whether Guile-SSH is available and recent enough
configure:10067: result: yes
configure:10084: checking for unit test root directory
configure:10091: result: /home/ming/Downloads/guix/test-tmp
configure:10100: checking for guile
configure:10130: result: /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile
configure:10138: checking the current installation's localstatedir
configure:10152: result: none
configure:10346: checking that generated files are newer than configure
configure:10352: result: done
configure:10415: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by GNU Guix config.status UNKNOWN, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on gorse

config.status:991: creating Makefile
config.status:991: creating po/guix/Makefile.in
config.status:991: creating po/packages/Makefile.in
config.status:991: creating etc/guix-daemon.cil
config.status:991: creating guix/config.scm
config.status:991: creating etc/committer.scm
config.status:991: creating test-env
config.status:991: creating pre-inst-env
config.status:991: creating nix/config.h
config.status:1172: nix/config.h is unchanged
config.status:1220: executing depfiles commands
config.status:1297: cd .       && sed -e '/# am--include-marker/d' Makefile         | make -f - am--depfiles
make: Nothing to be done for 'am--depfiles'.
config.status:1302: $? = 0
config.status:1220: executing po-directories commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_GUILE_CFLAGS_set=
ac_cv_env_GUILE_CFLAGS_value=
ac_cv_env_GUILE_LIBS_set=
ac_cv_env_GUILE_LIBS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=set
ac_cv_env_PKG_CONFIG_PATH_value=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/lib/pkgconfig
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_SQLITE3_CFLAGS_set=
ac_cv_env_SQLITE3_CFLAGS_value=
ac_cv_env_SQLITE3_LIBS_set=
ac_cv_env_SQLITE3_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_chroot=yes
ac_cv_func_lchown=yes
ac_cv_func_lutimes=yes
ac_cv_func_nanosleep=yes
ac_cv_func_posix_fallocate=yes
ac_cv_func_sched_setaffinity=yes
ac_cv_func_statvfs=yes
ac_cv_func_statx=yes
ac_cv_func_strsignal=yes
ac_cv_func_unshare=yes
ac_cv_guix_cxx11_support=yes
ac_cv_guix_hash_bang_length=73
ac_cv_guix_socket_file_name_length=30
ac_cv_guix_test_hash_bang_length=103
ac_cv_guix_test_root=/home/ming/Downloads/guix/test-tmp
ac_cv_guix_test_socket_file_name_length=66
ac_cv_header_bzlib_h=yes
ac_cv_header_gcrypt_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_locale=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_sched_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_mount_h=yes
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_personality_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_syscall_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_zlib_h=yes
ac_cv_host=x86_64-pc-linux-gnu
ac_cv_lib_bz2_BZ2_bzWriteOpen=yes
ac_cv_lib_gcrypt_gcry_md_open=yes
ac_cv_lib_z_gzdopen=yes
ac_cv_objext=o
ac_cv_path_BZIP2=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/bzip2
ac_cv_path_EGREP='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/grep -E'
ac_cv_path_GMSGFMT=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt
ac_cv_path_GREP=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/grep
ac_cv_path_GUILD=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guild
ac_cv_path_GUILE=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile
ac_cv_path_GUILE_CONFIG=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile-config
ac_cv_path_GZIP=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/gzip
ac_cv_path_LIBGCRYPT_CONFIG=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/libgcrypt-config
ac_cv_path_MSGFMT=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt
ac_cv_path_MSGMERGE=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgmerge
ac_cv_path_SED=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/sed
ac_cv_path_XGETTEXT=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xgettext
ac_cv_path_XZ=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xz
ac_cv_path_ac_pt_PKG_CONFIG=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/pkg-config
ac_cv_path_install='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/install -c'
ac_cv_path_mkdir=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_safe_to_define___extensions__=yes
ac_cv_sys_file_offset_bits=no
ac_cv_sys_largefile_CC=no
acl_cv_hardcode_direct=no
acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
acl_cv_hardcode_libdir_separator=
acl_cv_hardcode_minus_L=no
acl_cv_libext=a
acl_cv_libname_spec='lib$name'
acl_cv_library_names_spec='$libname$shrext'
acl_cv_path_LD=/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/ld
acl_cv_prog_gnu_ld=yes
acl_cv_rpath=done
acl_cv_shlibext=so
acl_cv_wl=-Wl,
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
am_cv_ar_interface=ar
am_cv_make_support_nested_variables=yes
am_cv_prog_cc_c_o=yes
am_cv_prog_tar_ustar=gnutar
gt_cv_func_CFLocaleCopyCurrent=no
gt_cv_func_CFPreferencesCopyAppValue=no
gt_cv_func_gnugettext1_libc=yes
guix_cv_current_localstatedir=none
guix_cv_have_recent_guile_gcrypt=yes
guix_cv_have_recent_guile_git=yes
guix_cv_have_recent_guile_json=yes
guix_cv_have_recent_guile_sqlite3=yes
guix_cv_have_recent_guile_ssh=yes
guix_cv_have_recent_guile_zlib=yes
guix_cv_libgcrypt_libdir=/gnu/store/5z3gh8yq8a8dzlhm7llx50cjf1vj1r2w-libgcrypt-1.8.8/lib
pkg_cv_GUILE_CFLAGS='-pthread -I/gnu/store/3h3jn0745ngd87zp83k5smwhykxvdfgf-guile-3.0.7/include/guile/3.0'
pkg_cv_GUILE_LIBS='-L/gnu/store/3h3jn0745ngd87zp83k5smwhykxvdfgf-guile-3.0.7/lib -L/gnu/store/j0xha8g8i9390nwi1mzx8rjpdisg25ja-libgc-8.0.4/lib -lguile-3.0 -lgc'
pkg_cv_SQLITE3_CFLAGS=-I/gnu/store/wdh9qz8skc8r0zj1hgnc0sfjlczy2kjj-sqlite-3.36.0/include
pkg_cv_SQLITE3_LIBS='-L/gnu/store/wdh9qz8skc8r0zj1hgnc0sfjlczy2kjj-sqlite-3.36.0/lib -lsqlite3'

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} '\''/home/ming/Downloads/guix/build-aux/missing'\'' aclocal-1.16'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='0'
AM_V='$(V)'
AR='ar'
AUTOCONF='${SHELL} '\''/home/ming/Downloads/guix/build-aux/missing'\'' autoconf'
AUTOHEADER='${SHELL} '\''/home/ming/Downloads/guix/build-aux/missing'\'' autoheader'
AUTOMAKE='${SHELL} '\''/home/ming/Downloads/guix/build-aux/missing'\'' automake-1.16'
AWK='gawk'
BUILD_DAEMON_FALSE='#'
BUILD_DAEMON_OFFLOAD_FALSE='#'
BUILD_DAEMON_OFFLOAD_TRUE=''
BUILD_DAEMON_TRUE=''
BZIP2='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/bzip2'
CAN_RUN_TESTS_FALSE='#'
CAN_RUN_TESTS_TRUE=''
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
CROSS_COMPILING_FALSE=''
CROSS_COMPILING_TRUE='#'
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DOT='${SHELL} '\''/home/ming/Downloads/guix/build-aux/missing'\'' dot'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/grep -E'
ENABLE_INSTALLER_FALSE=''
ENABLE_INSTALLER_TRUE='#'
EXEEXT=''
GETTEXT_MACRO_VERSION='0.19'
GMSGFMT='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt'
GMSGFMT_015='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt'
GREP='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/grep'
GUILD='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guild'
GUILE='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile'
GUILE_CFLAGS='-pthread -I/gnu/store/3h3jn0745ngd87zp83k5smwhykxvdfgf-guile-3.0.7/include/guile/3.0'
GUILE_CONFIG='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile-config'
GUILE_EFFECTIVE_VERSION='3.0'
GUILE_LDFLAGS='-L/gnu/store/3h3jn0745ngd87zp83k5smwhykxvdfgf-guile-3.0.7/lib -L/gnu/store/j0xha8g8i9390nwi1mzx8rjpdisg25ja-libgc-8.0.4/lib -lguile-3.0 -lgc'
GUILE_LIBS='-L/gnu/store/3h3jn0745ngd87zp83k5smwhykxvdfgf-guile-3.0.7/lib -L/gnu/store/j0xha8g8i9390nwi1mzx8rjpdisg25ja-libgc-8.0.4/lib -lguile-3.0 -lgc -Wl,-rpath -Wl,/gnu/store/3h3jn0745ngd87zp83k5smwhykxvdfgf-guile-3.0.7/lib -Wl,-rpath -Wl,/gnu/store/j0xha8g8i9390nwi1mzx8rjpdisg25ja-libgc-8.0.4/lib'
GUILE_LTLIBS='-L/gnu/store/3h3jn0745ngd87zp83k5smwhykxvdfgf-guile-3.0.7/lib -L/gnu/store/j0xha8g8i9390nwi1mzx8rjpdisg25ja-libgc-8.0.4/lib -lguile-3.0 -lgc -R/gnu/store/3h3jn0745ngd87zp83k5smwhykxvdfgf-guile-3.0.7/lib -R/gnu/store/j0xha8g8i9390nwi1mzx8rjpdisg25ja-libgc-8.0.4/lib'
GUILE_TOOLS='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guild'
GUIX_CHANNEL_COMMIT='#f'
GUIX_CHANNEL_INTRODUCTION=''\''("9edb3f66fd807b096b48283debdcddccfea34bad" . "BBB0 2DDF 2CEA F6A8 0D1D  E643 A2A0 6DF2 A33A 54FA")'
GUIX_CHANNEL_URL='"https://git.savannah.gnu.org/git/guix.git"'
GUIX_TEST_ROOT='/home/ming/Downloads/guix/test-tmp'
GZIP='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/gzip'
HAVE_GUILE_AVAHI_FALSE='#'
HAVE_GUILE_AVAHI_TRUE=''
HAVE_GUILE_LIB_FALSE='#'
HAVE_GUILE_LIB_TRUE=''
HAVE_GUILE_SSH_FALSE='#'
HAVE_GUILE_SSH_TRUE=''
HAVE_LIBBZ2_FALSE='#'
HAVE_LIBBZ2_TRUE=''
HELP2MAN='${SHELL} '\''/home/ming/Downloads/guix/build-aux/missing'\'' help2man'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
INTLLIBS=''
INTL_MACOSX_LIBS=''
LDFLAGS=''
LIBGCRYPT_CFLAGS=''
LIBGCRYPT_CONFIG='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/libgcrypt-config'
LIBGCRYPT_LIBDIR='/gnu/store/5z3gh8yq8a8dzlhm7llx50cjf1vj1r2w-libgcrypt-1.8.8/lib'
LIBGCRYPT_LIBS='-L/gnu/store/5z3gh8yq8a8dzlhm7llx50cjf1vj1r2w-libgcrypt-1.8.8/lib -lgcrypt'
LIBGCRYPT_PREFIX='no'
LIBICONV='-liconv'
LIBINTL=''
LIBOBJS=''
LIBS=''
LTLIBICONV='-liconv'
LTLIBINTL=''
LTLIBOBJS=''
MAKEINFO='${SHELL} '\''/home/ming/Downloads/guix/build-aux/missing'\'' makeinfo'
MKDIR_P='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/mkdir -p'
MSGFMT='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt'
MSGFMT_015='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt'
MSGMERGE='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgmerge'
OBJEXT='o'
PACKAGE='guix'
PACKAGE_BUGREPORT='bug-guix@gnu.org'
PACKAGE_NAME='GNU Guix'
PACKAGE_STRING='GNU Guix UNKNOWN'
PACKAGE_TARNAME='guix'
PACKAGE_URL='https://www.gnu.org/software/guix/'
PACKAGE_VERSION='UNKNOWN'
PATH_SEPARATOR=':'
PKG_CONFIG='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/lib/pkgconfig'
PO4A_TRANSLATE='${SHELL} '\''/home/ming/Downloads/guix/build-aux/missing'\'' po4a-translate'
PO4A_UPDATEPO='${SHELL} '\''/home/ming/Downloads/guix/build-aux/missing'\'' po4a-updatepo'
POSUB='po'
RANLIB='ranlib'
SED='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/sed'
SET_MAKE=''
SHELL='/bin/sh'
SQLITE3_CFLAGS='-I/gnu/store/wdh9qz8skc8r0zj1hgnc0sfjlczy2kjj-sqlite-3.36.0/include'
SQLITE3_LIBS='-L/gnu/store/wdh9qz8skc8r0zj1hgnc0sfjlczy2kjj-sqlite-3.36.0/lib -lsqlite3'
STRIP=''
USE_NLS='yes'
VERSION='UNKNOWN'
XGETTEXT='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xgettext'
XGETTEXT_015='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xgettext'
XGETTEXT_EXTRA_OPTIONS=''
XZ='/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xz'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='tar --format=ustar -chf - "$$tardir"'
am__untar='tar -xf -'
bashcompletiondir='${sysconfdir}/bash_completion.d'
bindir='${exec_prefix}/bin'
build='x86_64-pc-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
fishcompletiondir='${datadir}/fish/vendor_completions.d'
guilemoduledir='${prefix}/share/guile/site/3.0'
guileobjectdir='${exec_prefix}/lib/guile/3.0/site-ccache'
guix_localstatedir='/var'
guix_sbindir='/usr/local/sbin'
guix_sysconfdir='/usr/local/etc'
guix_system='x86_64-linux'
host='x86_64-pc-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/ming/Downloads/guix/build-aux/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
selinux_policydir='${datadir}/selinux/'
sharedstatedir='${prefix}/com'
storedir='/gnu/store'
sysconfdir='${prefix}/etc'
target_alias=''
zshcompletiondir='${datadir}/zsh/site-functions'

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "GNU Guix"
#define PACKAGE_TARNAME "guix"
#define PACKAGE_VERSION "UNKNOWN"
#define PACKAGE_STRING "GNU Guix UNKNOWN"
#define PACKAGE_BUGREPORT "bug-guix@gnu.org"
#define PACKAGE_URL "https://www.gnu.org/software/guix/"
#define PACKAGE "guix"
#define VERSION "UNKNOWN"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define ENABLE_NLS 1
#define HAVE_GETTEXT 1
#define HAVE_DCGETTEXT 1
#define HAVE_ZLIB_H 1
#define HAVE_BZLIB_H 1
#define SYSTEM "x86_64-linux"
#define HAVE_CHROOT 1
#define HAVE_UNSHARE 1
#define HAVE_SCHED_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_SYSCALL_H 1
#define HAVE_LUTIMES 1
#define HAVE_LCHOWN 1
#define HAVE_POSIX_FALLOCATE 1
#define HAVE_SCHED_SETAFFINITY 1
#define HAVE_STATVFS 1
#define HAVE_NANOSLEEP 1
#define HAVE_STRSIGNAL 1
#define HAVE_STATX 1
#define HAVE_LOCALE 1
#define HAVE_SYS_PERSONALITY_H 1
#define GUIX_SUBSTITUTE_URLS "https://ci.guix.gnu.org https://bordeaux.guix.gnu.org"
#define HAVE_DAEMON_OFFLOAD_HOOK 1

configure: exit 0

[-- Attachment #1.1.4: 2021-12-21-guix-make.log --]
[-- Type: text/x-log, Size: 122668 bytes --]

  PO4A doc/contributing.de.texi
Your input po file po/doc/guix-manual.de.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.de.texi
translated 74 cross-references in 'doc/contributing.de.texi.tmp'
mv "doc/contributing.de.texi.tmp" "doc/contributing.de.texi"
  PO4A doc/guix.de.texi
Your input po file po/doc/guix-manual.de.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.de.texi" | sed 's|texi$|info|')|" "doc/guix.de.texi.tmp"
  POXREF doc/guix.de.texi
translated 941 cross-references in 'doc/guix.de.texi.tmp'
mv "doc/guix.de.texi.tmp" "doc/guix.de.texi"
  PO4A doc/contributing.es.texi
Your input po file po/doc/guix-manual.es.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.es.texi
translated 73 cross-references in 'doc/contributing.es.texi.tmp'
mv "doc/contributing.es.texi.tmp" "doc/contributing.es.texi"
  PO4A doc/guix.es.texi
Your input po file po/doc/guix-manual.es.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.es.texi" | sed 's|texi$|info|')|" "doc/guix.es.texi.tmp"
  POXREF doc/guix.es.texi
translated 942 cross-references in 'doc/guix.es.texi.tmp'
mv "doc/guix.es.texi.tmp" "doc/guix.es.texi"
  PO4A doc/contributing.fa.texi
Your input po file po/doc/guix-manual.fa.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.fa.texi
translated 74 cross-references in 'doc/contributing.fa.texi.tmp'
mv "doc/contributing.fa.texi.tmp" "doc/contributing.fa.texi"
  PO4A doc/guix.fa.texi
Your input po file po/doc/guix-manual.fa.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.fa.texi" | sed 's|texi$|info|')|" "doc/guix.fa.texi.tmp"
  POXREF doc/guix.fa.texi
translated 944 cross-references in 'doc/guix.fa.texi.tmp'
mv "doc/guix.fa.texi.tmp" "doc/guix.fa.texi"
  PO4A doc/contributing.fr.texi
Your input po file po/doc/guix-manual.fr.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.fr.texi
translated 73 cross-references in 'doc/contributing.fr.texi.tmp'
mv "doc/contributing.fr.texi.tmp" "doc/contributing.fr.texi"
  PO4A doc/guix.fr.texi
Your input po file po/doc/guix-manual.fr.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.fr.texi" | sed 's|texi$|info|')|" "doc/guix.fr.texi.tmp"
  POXREF doc/guix.fr.texi
translated 941 cross-references in 'doc/guix.fr.texi.tmp'
mv "doc/guix.fr.texi.tmp" "doc/guix.fr.texi"
  PO4A doc/contributing.it.texi
Your input po file po/doc/guix-manual.it.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.it.texi
translated 74 cross-references in 'doc/contributing.it.texi.tmp'
mv "doc/contributing.it.texi.tmp" "doc/contributing.it.texi"
  PO4A doc/guix.it.texi
Your input po file po/doc/guix-manual.it.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.it.texi" | sed 's|texi$|info|')|" "doc/guix.it.texi.tmp"
  POXREF doc/guix.it.texi
translated 944 cross-references in 'doc/guix.it.texi.tmp'
mv "doc/guix.it.texi.tmp" "doc/guix.it.texi"
  PO4A doc/contributing.ko.texi
Your input po file po/doc/guix-manual.ko.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.ko.texi
translated 74 cross-references in 'doc/contributing.ko.texi.tmp'
mv "doc/contributing.ko.texi.tmp" "doc/contributing.ko.texi"
  PO4A doc/guix.ko.texi
Your input po file po/doc/guix-manual.ko.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.ko.texi" | sed 's|texi$|info|')|" "doc/guix.ko.texi.tmp"
  POXREF doc/guix.ko.texi
translated 944 cross-references in 'doc/guix.ko.texi.tmp'
mv "doc/guix.ko.texi.tmp" "doc/guix.ko.texi"
  PO4A doc/contributing.pt_BR.texi
Your input po file po/doc/guix-manual.pt_BR.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.pt_BR.texi
translated 74 cross-references in 'doc/contributing.pt_BR.texi.tmp'
mv "doc/contributing.pt_BR.texi.tmp" "doc/contributing.pt_BR.texi"
  PO4A doc/guix.pt_BR.texi
Your input po file po/doc/guix-manual.pt_BR.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.pt_BR.texi" | sed 's|texi$|info|')|" "doc/guix.pt_BR.texi.tmp"
  POXREF doc/guix.pt_BR.texi
translated 944 cross-references in 'doc/guix.pt_BR.texi.tmp'
mv "doc/guix.pt_BR.texi.tmp" "doc/guix.pt_BR.texi"
  PO4A doc/contributing.ru.texi
Your input po file po/doc/guix-manual.ru.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.ru.texi
translated 73 cross-references in 'doc/contributing.ru.texi.tmp'
mv "doc/contributing.ru.texi.tmp" "doc/contributing.ru.texi"
  PO4A doc/guix.ru.texi
Your input po file po/doc/guix-manual.ru.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.ru.texi" | sed 's|texi$|info|')|" "doc/guix.ru.texi.tmp"
  POXREF doc/guix.ru.texi
translated 938 cross-references in 'doc/guix.ru.texi.tmp'
mv "doc/guix.ru.texi.tmp" "doc/guix.ru.texi"
  PO4A doc/contributing.sk.texi
Your input po file po/doc/guix-manual.sk.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.sk.texi
translated 74 cross-references in 'doc/contributing.sk.texi.tmp'
mv "doc/contributing.sk.texi.tmp" "doc/contributing.sk.texi"
  PO4A doc/guix.sk.texi
Your input po file po/doc/guix-manual.sk.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.sk.texi" | sed 's|texi$|info|')|" "doc/guix.sk.texi.tmp"
  POXREF doc/guix.sk.texi
translated 944 cross-references in 'doc/guix.sk.texi.tmp'
mv "doc/guix.sk.texi.tmp" "doc/guix.sk.texi"
  PO4A doc/contributing.zh_CN.texi
Your input po file po/doc/guix-manual.zh_CN.po seems outdated (The amount of entries differ between files: 11330 is not 463
). Please consider running po4a-updatepo to refresh it.
  POXREF doc/contributing.zh_CN.texi
translated 74 cross-references in 'doc/contributing.zh_CN.texi.tmp'
mv "doc/contributing.zh_CN.texi.tmp" "doc/contributing.zh_CN.texi"
  PO4A doc/guix.zh_CN.texi
Your input po file po/doc/guix-manual.zh_CN.po seems outdated (The amount of entries differ between files: 11330 is not 11009
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix\.info|$(basename "doc/guix.zh_CN.texi" | sed 's|texi$|info|')|" "doc/guix.zh_CN.texi.tmp"
  POXREF doc/guix.zh_CN.texi
translated 944 cross-references in 'doc/guix.zh_CN.texi.tmp'
mv "doc/guix.zh_CN.texi.tmp" "doc/guix.zh_CN.texi"
  PO4A doc/guix-cookbook.de.texi
Your input po file po/doc/guix-cookbook.de.po seems outdated (The amount of entries differ between files: 665 is not 663
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.de.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.de.texi.tmp"
  POXREF doc/guix-cookbook.de.texi
translated 36 cross-references in 'doc/guix-cookbook.de.texi.tmp'
mv "doc/guix-cookbook.de.texi.tmp" "doc/guix-cookbook.de.texi"
  PO4A doc/guix-cookbook.es.texi
Your input po file po/doc/guix-cookbook.es.po seems outdated (The amount of entries differ between files: 665 is not 663
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.es.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.es.texi.tmp"
  POXREF doc/guix-cookbook.es.texi
translated 37 cross-references in 'doc/guix-cookbook.es.texi.tmp'
mv "doc/guix-cookbook.es.texi.tmp" "doc/guix-cookbook.es.texi"
  PO4A doc/guix-cookbook.fa.texi
Your input po file po/doc/guix-cookbook.fa.po seems outdated (The amount of entries differ between files: 665 is not 663
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.fa.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.fa.texi.tmp"
  POXREF doc/guix-cookbook.fa.texi
translated 37 cross-references in 'doc/guix-cookbook.fa.texi.tmp'
mv "doc/guix-cookbook.fa.texi.tmp" "doc/guix-cookbook.fa.texi"
  PO4A doc/guix-cookbook.fr.texi
Your input po file po/doc/guix-cookbook.fr.po seems outdated (The amount of entries differ between files: 665 is not 663
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.fr.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.fr.texi.tmp"
  POXREF doc/guix-cookbook.fr.texi
translated 37 cross-references in 'doc/guix-cookbook.fr.texi.tmp'
mv "doc/guix-cookbook.fr.texi.tmp" "doc/guix-cookbook.fr.texi"
  PO4A doc/guix-cookbook.ko.texi
Your input po file po/doc/guix-cookbook.ko.po seems outdated (The amount of entries differ between files: 665 is not 663
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.ko.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.ko.texi.tmp"
  POXREF doc/guix-cookbook.ko.texi
translated 37 cross-references in 'doc/guix-cookbook.ko.texi.tmp'
mv "doc/guix-cookbook.ko.texi.tmp" "doc/guix-cookbook.ko.texi"
  PO4A doc/guix-cookbook.ru.texi
Your input po file po/doc/guix-cookbook.ru.po seems outdated (The amount of entries differ between files: 665 is not 663
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.ru.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.ru.texi.tmp"
  POXREF doc/guix-cookbook.ru.texi
translated 37 cross-references in 'doc/guix-cookbook.ru.texi.tmp'
mv "doc/guix-cookbook.ru.texi.tmp" "doc/guix-cookbook.ru.texi"
  PO4A doc/guix-cookbook.sk.texi
Your input po file po/doc/guix-cookbook.sk.po seems outdated (The amount of entries differ between files: 665 is not 663
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.sk.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.sk.texi.tmp"
  POXREF doc/guix-cookbook.sk.texi
translated 37 cross-references in 'doc/guix-cookbook.sk.texi.tmp'
mv "doc/guix-cookbook.sk.texi.tmp" "doc/guix-cookbook.sk.texi"
  PO4A doc/guix-cookbook.zh_Hans.texi
Your input po file po/doc/guix-cookbook.zh_Hans.po seems outdated (The amount of entries differ between files: 665 is not 663
). Please consider running po4a-updatepo to refresh it.
sed -i "s|guix-cookbook\.info|$(basename "doc/guix-cookbook.zh_Hans.texi" | sed 's|texi$|info|')|" "doc/guix-cookbook.zh_Hans.texi.tmp"
  POXREF doc/guix-cookbook.zh_Hans.texi
translated 37 cross-references in 'doc/guix-cookbook.zh_Hans.texi.tmp'
mv "doc/guix-cookbook.zh_Hans.texi.tmp" "doc/guix-cookbook.zh_Hans.texi"
  GEN      .version
make  all-recursive
make[1]: Entering directory '/home/ming/Downloads/guix'
Making all in po/guix
make[2]: Entering directory '/home/ming/Downloads/guix/po/guix'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/ming/Downloads/guix/po/guix'
Making all in po/packages
make[2]: Entering directory '/home/ming/Downloads/guix/po/packages'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/ming/Downloads/guix/po/packages'
make[2]: Entering directory '/home/ming/Downloads/guix'
  MAKEINFO doc/guix.de.info
  MAKEINFO doc/guix.es.info
./doc/guix.es.texi: warning: document without Top node
./doc/guix.es.texi:17273: warning: `.' or `,' must follow @xref, not p
./doc/guix.es.texi:38548: warning: `.' or `,' must follow @xref, not p
  MAKEINFO doc/guix.fa.info
  MAKEINFO doc/guix.fr.info
./doc/guix.fr.texi:13164: warning: `.' or `,' must follow @xref, not p
  MAKEINFO doc/guix.it.info
  MAKEINFO doc/guix.ko.info
  MAKEINFO doc/guix.pt_BR.info
  MAKEINFO doc/guix.ru.info
Wide character in warn at /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/makeinfo line 632.
./doc/guix.ru.texi:11167: warning: `.' or `,' must follow @xref, not д
  MAKEINFO doc/guix.sk.info
  MAKEINFO doc/guix.zh_CN.info
  MAKEINFO doc/guix-cookbook.de.info
  MAKEINFO doc/guix-cookbook.es.info
./doc/guix-cookbook.es.texi: warning: document without Top node
  MAKEINFO doc/guix-cookbook.fa.info
  MAKEINFO doc/guix-cookbook.fr.info
  MAKEINFO doc/guix-cookbook.ko.info
  MAKEINFO doc/guix-cookbook.ru.info
  MAKEINFO doc/guix-cookbook.sk.info
  MAKEINFO doc/guix-cookbook.zh_Hans.info
  CXX      nix/libstore/libstore_a-optimise-store.o
  CXX      nix/libstore/libstore_a-local-store.o
  CXX      nix/libstore/libstore_a-build.o
  CXX      nix/libstore/libstore_a-pathlocks.o
  CXX      nix/libstore/libstore_a-derivations.o
  CXX      nix/libstore/libstore_a-builtins.o
  CXX      nix/libstore/libstore_a-sqlite.o
  AR       libstore.a
ar: `u' modifier ignored since `D' is the default (see `U')
  CXX      nix/libutil/libutil_a-archive.o
  CXX      nix/libutil/libutil_a-affinity.o
  CXX      nix/libutil/libutil_a-serialise.o
  CXX      nix/libutil/libutil_a-util.o
  CXX      nix/libutil/libutil_a-hash.o
  AR       libutil.a
ar: `u' modifier ignored since `D' is the default (see `U')
  CXX      nix/boost/format/libformat_a-free_funcs.o
  CXX      nix/boost/format/libformat_a-parsing.o
  CXX      nix/boost/format/libformat_a-format_implementation.o
  AR       libformat.a
ar: `u' modifier ignored since `D' is the default (see `U')
  CXXLD    guix-daemon
  CC       gnu/packages/aux-files/guile-guile-launcher.o
  CCLD     guile
  GEN      scripts/guix
Compiling Scheme modules...
[  0%] LOAD     guix.scm
[  0%] LOAD     guix/base16.scm
[  0%] LOAD     guix/base32.scm
[  0%] LOAD     guix/base64.scm
[  0%] LOAD     guix/ci.scm
[  0%] LOAD     guix/cpio.scm
[  0%] LOAD     guix/deprecation.scm
[  0%] LOAD     guix/docker.scm
[  0%] LOAD     guix/records.scm
[  1%] LOAD     guix/openpgp.scm
[  1%] LOAD     guix/pki.scm
[  1%] LOAD     guix/progress.scm
[  1%] LOAD     guix/combinators.scm
[  1%] LOAD     guix/memoization.scm
[  1%] LOAD     guix/utils.scm
[  1%] LOAD     guix/sets.scm
[  1%] LOAD     guix/modules.scm
[  1%] LOAD     guix/download.scm
[  1%] LOAD     guix/discovery.scm
[  1%] LOAD     guix/android-repo-download.scm
[  1%] LOAD     guix/bzr-download.scm
[  1%] LOAD     guix/extracting-download.scm
[  1%] LOAD     guix/git-download.scm
[  1%] LOAD     guix/hg-download.scm
[  1%] LOAD     guix/swh.scm
[  1%] LOAD     guix/monads.scm
[  1%] LOAD     guix/monad-repl.scm
[  1%] LOAD     guix/gexp.scm
[  2%] LOAD     guix/profiles.scm
[  2%] LOAD     guix/serialization.scm
[  2%] LOAD     guix/nar.scm
[  2%] LOAD     guix/narinfo.scm
[  2%] LOAD     guix/derivations.scm
[  2%] LOAD     guix/grafts.scm
[  2%] LOAD     guix/repl.scm
[  2%] LOAD     guix/transformations.scm
[  2%] LOAD     guix/inferior.scm
[  2%] LOAD     guix/describe.scm
[  2%] LOAD     guix/quirks.scm
[  2%] LOAD     guix/channels.scm
[  2%] LOAD     guix/gnu-maintenance.scm
[  2%] LOAD     guix/self.scm
[  2%] LOAD     guix/substitutes.scm
[  2%] LOAD     guix/upstream.scm
[  2%] LOAD     guix/licenses.scm
[  2%] LOAD     guix/lint.scm
[  2%] LOAD     guix/glob.scm
[  3%] LOAD     guix/git.scm
[  3%] LOAD     guix/git-authenticate.scm
[  3%] LOAD     guix/graph.scm
[  3%] LOAD     guix/cache.scm
[  3%] LOAD     guix/cve.scm
[  3%] LOAD     guix/workers.scm
[  3%] LOAD     guix/ipfs.scm
[  3%] LOAD     guix/build-system.scm
[  3%] LOAD     guix/build-system/android-ndk.scm
[  3%] LOAD     guix/build-system/ant.scm
[  3%] LOAD     guix/build-system/cargo.scm
[  3%] LOAD     guix/build-system/chicken.scm
[  3%] LOAD     guix/build-system/clojure.scm
[  3%] LOAD     guix/build-system/cmake.scm
[  3%] LOAD     guix/build-system/dub.scm
[  3%] LOAD     guix/build-system/dune.scm
[  3%] LOAD     guix/build-system/emacs.scm
[  3%] LOAD     guix/build-system/font.scm
[  4%] LOAD     guix/build-system/go.scm
[  4%] LOAD     guix/build-system/meson.scm
[  4%] LOAD     guix/build-system/minify.scm
[  4%] LOAD     guix/build-system/minetest.scm
[  4%] LOAD     guix/build-system/asdf.scm
[  4%] LOAD     guix/build-system/copy.scm
[  4%] LOAD     guix/build-system/glib-or-gtk.scm
[  4%] LOAD     guix/build-system/gnu.scm
[  4%] LOAD     guix/build-system/guile.scm
[  4%] LOAD     guix/build-system/haskell.scm
[  4%] LOAD     guix/build-system/julia.scm
[  4%] LOAD     guix/build-system/linux-module.scm
[  4%] LOAD     guix/build-system/maven.scm
[  4%] LOAD     guix/build-system/node.scm
[  4%] LOAD     guix/build-system/perl.scm
[  4%] LOAD     guix/build-system/python.scm
[  4%] LOAD     guix/build-system/renpy.scm
[  4%] LOAD     guix/build-system/ocaml.scm
[  4%] LOAD     guix/build-system/qt.scm
[  5%] LOAD     guix/build-system/waf.scm
[  5%] LOAD     guix/build-system/r.scm
[  5%] LOAD     guix/build-system/rakudo.scm
[  5%] LOAD     guix/build-system/ruby.scm
[  5%] LOAD     guix/build-system/scons.scm
[  5%] LOAD     guix/build-system/texlive.scm
[  5%] LOAD     guix/build-system/trivial.scm
[  5%] LOAD     guix/ftp-client.scm
[  5%] LOAD     guix/http-client.scm
[  5%] LOAD     guix/gnupg.scm
[  5%] LOAD     guix/elf.scm
[  5%] LOAD     guix/profiling.scm
[  5%] LOAD     guix/store.scm
[  5%] LOAD     guix/cvs-download.scm
[  5%] LOAD     guix/svn-download.scm
[  5%] LOAD     guix/colors.scm
[  5%] LOAD     guix/i18n.scm
[  5%] LOAD     guix/diagnostics.scm
[  5%] LOAD     guix/ui.scm
[  6%] LOAD     guix/status.scm
[  6%] LOAD     guix/build/android-ndk-build-system.scm
[  6%] LOAD     guix/build/ant-build-system.scm
[  6%] LOAD     guix/build/download.scm
[  6%] LOAD     guix/build/download-nar.scm
[  6%] LOAD     guix/build/cargo-build-system.scm
[  6%] LOAD     guix/build/cargo-utils.scm
[  6%] LOAD     guix/build/chicken-build-system.scm
[  6%] LOAD     guix/build/cmake-build-system.scm
[  6%] LOAD     guix/build/dub-build-system.scm
[  6%] LOAD     guix/build/dune-build-system.scm
[  6%] LOAD     guix/build/emacs-build-system.scm
[  6%] LOAD     guix/build/meson-build-system.scm
[  6%] LOAD     guix/build/minify-build-system.scm
[  6%] LOAD     guix/build/font-build-system.scm
[  6%] LOAD     guix/build/go-build-system.scm
[  6%] LOAD     guix/build/android-repo.scm
[  6%] LOAD     guix/build/asdf-build-system.scm
[  6%] LOAD     guix/build/bzr.scm
[  7%] LOAD     guix/build/copy-build-system.scm
[  7%] LOAD     guix/build/git.scm
[  7%] LOAD     guix/build/hg.scm
[  7%] LOAD     guix/build/glib-or-gtk-build-system.scm
[  7%] LOAD     guix/build/gnu-bootstrap.scm
[  7%] LOAD     guix/build/gnu-build-system.scm
[  7%] LOAD     guix/build/gnu-dist.scm
[  7%] LOAD     guix/build/guile-build-system.scm
[  7%] LOAD     guix/build/maven-build-system.scm
[  7%] LOAD     guix/build/minetest-build-system.scm
[  7%] LOAD     guix/build/node-build-system.scm
[  7%] LOAD     guix/build/perl-build-system.scm
[  7%] LOAD     guix/build/python-build-system.scm
[  7%] LOAD     guix/build/ocaml-build-system.scm
[  7%] LOAD     guix/build/qt-build-system.scm
[  7%] LOAD     guix/build/r-build-system.scm
[  7%] LOAD     guix/build/renpy-build-system.scm
[  7%] LOAD     guix/build/rakudo-build-system.scm
[  7%] LOAD     guix/build/ruby-build-system.scm
[  8%] LOAD     guix/build/scons-build-system.scm
[  8%] LOAD     guix/build/texlive-build-system.scm
[  8%] LOAD     guix/build/waf-build-system.scm
[  8%] LOAD     guix/build/haskell-build-system.scm
[  8%] LOAD     guix/build/julia-build-system.scm
[  8%] LOAD     guix/build/linux-module-build-system.scm
[  8%] LOAD     guix/build/store-copy.scm
[  8%] LOAD     guix/build/json.scm
[  8%] LOAD     guix/build/pack.scm
[  8%] LOAD     guix/build/utils.scm
[  8%] LOAD     guix/build/union.scm
[  8%] LOAD     guix/build/profiles.scm
[  8%] LOAD     guix/build/compile.scm
[  8%] LOAD     guix/build/cvs.scm
[  8%] LOAD     guix/build/svn.scm
[  8%] LOAD     guix/build/syscalls.scm
[  8%] LOAD     guix/build/gremlin.scm
[  8%] LOAD     guix/build/debug-link.scm
[  8%] LOAD     guix/build/clojure-build-system.scm
[  9%] LOAD     guix/build/clojure-utils.scm
[  9%] LOAD     guix/build/emacs-utils.scm
[  9%] LOAD     guix/build/java-utils.scm
[  9%] LOAD     guix/build/lisp-utils.scm
[  9%] LOAD     guix/build/meson-configuration.scm
[  9%] LOAD     guix/build/maven/java.scm
[  9%] LOAD     guix/build/maven/plugin.scm
[  9%] LOAD     guix/build/maven/pom.scm
[  9%] LOAD     guix/build/graft.scm
[  9%] LOAD     guix/build/bournish.scm
[  9%] LOAD     guix/build/qt-utils.scm
[  9%] LOAD     guix/build/make-bootstrap.scm
[  9%] LOAD     guix/search-paths.scm
[  9%] LOAD     guix/packages.scm
[  9%] LOAD     guix/import/cabal.scm
[  9%] LOAD     guix/import/cpan.scm
[  9%] LOAD     guix/import/cran.scm
[  9%] LOAD     guix/import/crate.scm
guix/grafts.scm:137:7: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead
WARNING: Use of `load' in declarative module (guix ui).  Add #:declarative? #f to your define-module invocation.
WARNING: (guix build ant-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build cargo-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build chicken-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build cmake-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build dub-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build ocaml-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build dune-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build meson-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build minify-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build font-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build go-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build asdf-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build copy-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build gnu-dist): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build guile-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build maven-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build minetest-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build perl-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build python-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build r-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build renpy-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build rakudo-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build ruby-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build scons-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build texlive-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build waf-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build haskell-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build julia-build-system): imported module (guix build utils) overrides core binding `delete'
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; [ 10%] LOAD     guix/import/egg.scm
[ 10%] LOAD     guix/import/elpa.scm
[ 10%] LOAD     guix/import/gem.scm
[ 10%] LOAD     guix/import/git.scm
[ 10%] LOAD     guix/import/github.scm
[ 10%] LOAD     guix/import/gnome.scm
[ 10%] LOAD     guix/import/gnu.scm
[ 10%] LOAD     guix/import/go.scm
[ 10%] LOAD     guix/import/hackage.scm
[ 10%] LOAD     guix/import/json.scm
[ 10%] LOAD     guix/import/kde.scm
[ 10%] LOAD     guix/import/launchpad.scm
[ 10%] LOAD     guix/import/minetest.scm
[ 10%] LOAD     guix/import/opam.scm
[ 10%] LOAD     guix/import/print.scm
[ 10%] LOAD     guix/import/pypi.scm
[ 10%] LOAD     guix/import/stackage.scm
[ 10%] LOAD     guix/import/texlive.scm
[ 10%] LOAD     guix/import/utils.scm
[ 11%] LOAD     guix/scripts.scm
[ 11%] LOAD     guix/ssh.scm
[ 11%] LOAD     guix/remote.scm
[ 11%] LOAD     guix/store/ssh.scm
[ 11%] LOAD     guix/avahi.scm
[ 11%] LOAD     guix/store/database.scm
[ 11%] LOAD     guix/store/deduplication.scm
[ 11%] LOAD     guix/store/roots.scm
[ 11%] LOAD     guix/config.scm
[ 11%] LOAD     guix/tests.scm
[ 11%] LOAD     guix/tests/http.scm
[ 11%] LOAD     guix/tests/git.scm
[ 11%] LOAD     guix/tests/gnupg.scm
[ 11%] GUILEC   guix.go
[ 11%] GUILEC   guix/base16.go
[ 11%] GUILEC   guix/base32.go
[ 11%] GUILEC   guix/base64.go
[ 11%] GUILEC   guix/ci.go
[ 11%] GUILEC   guix/cpio.go
[ 12%] GUILEC   guix/deprecation.go
[ 12%] GUILEC   guix/docker.go
[ 12%] GUILEC   guix/records.go
[ 12%] GUILEC   guix/openpgp.go
[ 12%] GUILEC   guix/pki.go
[ 12%] GUILEC   guix/progress.go
[ 12%] GUILEC   guix/combinators.go
[ 12%] GUILEC   guix/memoization.go
[ 12%] GUILEC   guix/utils.go
[ 12%] GUILEC   guix/sets.go
[ 12%] GUILEC   guix/modules.go
[ 12%] GUILEC   guix/download.go
[ 12%] GUILEC   guix/discovery.go
[ 12%] GUILEC   guix/android-repo-download.go
[ 12%] GUILEC   guix/bzr-download.go
[ 12%] GUILEC   guix/extracting-download.go
[ 12%] GUILEC   guix/git-download.go
[ 12%] GUILEC   guix/hg-download.go
[ 12%] GUILEC   guix/swh.go
[ 13%] GUILEC   guix/monads.go
[ 13%] GUILEC   guix/monad-repl.go
[ 13%] GUILEC   guix/gexp.go
[ 13%] GUILEC   guix/profiles.go
[ 13%] GUILEC   guix/serialization.go
[ 13%] GUILEC   guix/nar.go
[ 13%] GUILEC   guix/narinfo.go
[ 13%] GUILEC   guix/derivations.go
[ 13%] GUILEC   guix/grafts.go
[ 13%] GUILEC   guix/repl.go
[ 13%] GUILEC   guix/transformations.go
[ 13%] GUILEC   guix/inferior.go
[ 13%] GUILEC   guix/describe.go
[ 13%] GUILEC   guix/quirks.go
[ 13%] GUILEC   guix/channels.go
[ 13%] GUILEC   guix/gnu-maintenance.go
[ 13%] GUILEC   guix/self.go
[ 13%] GUILEC   guix/substitutes.go
[ 13%] GUILEC   guix/upstream.go
[ 14%] GUILEC   guix/licenses.go
[ 14%] GUILEC   guix/lint.go
[ 14%] GUILEC   guix/glob.go
[ 14%] GUILEC   guix/git.go
[ 14%] GUILEC   guix/git-authenticate.go
[ 14%] GUILEC   guix/graph.go
[ 14%] GUILEC   guix/cache.go
[ 14%] GUILEC   guix/cve.go
[ 14%] GUILEC   guix/workers.go
[ 14%] GUILEC   guix/ipfs.go
[ 14%] GUILEC   guix/build-system.go
[ 14%] GUILEC   guix/build-system/android-ndk.go
[ 14%] GUILEC   guix/build-system/ant.go
[ 14%] GUILEC   guix/build-system/cargo.go
[ 14%] GUILEC   guix/build-system/chicken.go
[ 14%] GUILEC   guix/build-system/clojure.go
[ 14%] GUILEC   guix/build-system/cmake.go
[ 14%] GUILEC   guix/build-system/dub.go
[ 14%] GUILEC   guix/build-system/dune.go
[ 15%] GUILEC   guix/build-system/emacs.go
[ 15%] GUILEC   guix/build-system/font.go
[ 15%] GUILEC   guix/build-system/go.go
[ 15%] GUILEC   guix/build-system/meson.go
[ 15%] GUILEC   guix/build-system/minify.go
[ 15%] GUILEC   guix/build-system/minetest.go
[ 15%] GUILEC   guix/build-system/asdf.go
[ 15%] GUILEC   guix/build-system/copy.go
[ 15%] GUILEC   guix/build-system/glib-or-gtk.go
[ 15%] GUILEC   guix/build-system/gnu.go
[ 15%] GUILEC   guix/build-system/guile.go
[ 15%] GUILEC   guix/build-system/haskell.go
[ 15%] GUILEC   guix/build-system/julia.go
[ 15%] GUILEC   guix/build-system/linux-module.go
[ 15%] GUILEC   guix/build-system/maven.go
[ 15%] GUILEC   guix/build-system/node.go
[ 15%] GUILEC   guix/build-system/perl.go
[ 15%] GUILEC   guix/build-system/python.go
[ 15%] GUILEC   guix/build-system/renpy.go
[ 16%] GUILEC   guix/build-system/ocaml.go
[ 16%] GUILEC   guix/build-system/qt.go
[ 16%] GUILEC   guix/build-system/waf.go
[ 16%] GUILEC   guix/build-system/r.go
[ 16%] GUILEC   guix/build-system/rakudo.go
[ 16%] GUILEC   guix/build-system/ruby.go
[ 16%] GUILEC   guix/build-system/scons.go
[ 16%] GUILEC   guix/build-system/texlive.go
[ 16%] GUILEC   guix/build-system/trivial.go
[ 16%] GUILEC   guix/ftp-client.go
[ 16%] GUILEC   guix/http-client.go
[ 16%] GUILEC   guix/gnupg.go
[ 16%] GUILEC   guix/elf.go
[ 16%] GUILEC   guix/profiling.go
[ 16%] GUILEC   guix/store.go
Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver->string in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
WARNING: (gnu packages linux): `build' imported from both (gnu packages build-tools) and (guix store)
guix/monads.scm:529:0: warning: shadows previous definition of `#{ anym %identity-monad instance}#' at guix/monads.scm:529:0
guix/monads.scm:529:0: warning: shadows previous definition of `#{ mapm %identity-monad instance}#' at guix/monads.scm:529:0
guix/monads.scm:529:0: warning: shadows previous definition of `#{ mapm %identity-monad instance}#' at guix/monads.scm:529:0
guix/monads.scm:529:0: warning: shadows previous definition of `#{ foldm %identity-monad instance}#' at guix/monads.scm:529:0
guix/monads.scm:529:0: warning: shadows previous definition of `#{ sequence %identity-monad instance}#' at guix/monads.scm:529:0
guix/monads.scm:529:0: warning: shadows previous definition of `#{ sequence %identity-monad instance}#' at guix/monads.scm:529:0
guix/monads.scm:529:0: warning: shadows previous definition of `#{ anym %identity-monad instance}#' at guix/monads.scm:529:0
guix/monads.scm:529:0: warning: shadows previous definition of `#{ foldm %identity-monad instance}#' at guix/monads.scm:529:0
guix/monads.scm:553:0: warning: shadows previous definition of `#{ anym %state-monad instance}#' at guix/monads.scm:553:0
guix/monads.scm:553:0: warning: shadows previous definition of `#{ mapm %state-monad instance}#' at guix/monads.scm:553:0
guix/monads.scm:553:0: warning: shadows previous definition of `#{ mapm %state-monad instance}#' at guix/monads.scm:553:0
guix/monads.scm:553:0: warning: shadows previous definition of `#{ foldm %state-monad instance}#' at guix/monads.scm:553:0
guix/monads.scm:553:0: warning: shadows previous definition of `#{ sequence %state-monad instance}#' at guix/monads.scm:553:0
guix/monads.scm:553:0: warning: shadows previous definition of `#{ sequence %state-monad instance}#' at guix/monads.scm:553:0
guix/monads.scm:553:0: warning: shadows previous definition of `#{ anym %state-monad instance}#' at guix/monads.scm:553:0
guix/monads.scm:553:0: warning: shadows previous definition of `#{ foldm %state-monad instance}#' at guix/monads.scm:553:0
guix/derivations.scm:1221:4: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead
guix/derivations.scm:1260:2: warning: possibly unbound variable `gexp->derivation'
guix/grafts.scm:137:7: warning: 'build-expression->derivation' is deprecated, use 'gexp->derivation' instead
guix/store.scm:1869:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at guix/store.scm:1869:0
guix/store.scm:1869:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at guix/store.scm:1869:0
guix/store.scm:1869:0: warning: shadows previous definition of `#{ mapm %store-monad instance}#' at guix/store.scm:1869:0
guix/store.scm:1869:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at guix/store.scm:1869:0
guix/store.scm:1869:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at guix/store.scm:1869:0
guix/store.scm:1869:0: warning: shadows previous definition of `#{ sequence %store-monad instance}#' at guix/store.scm:1869:0
guix/store.scm:1869:0: warning: shadows previous definition of `#{ anym %store-monad instance}#' at guix/store.scm:1869:0
guix/store.scm:1869:0: warning: shadows previous definition of `#{ foldm %store-monad instance}#' at [ 16%] GUILEC   guix/cvs-download.go
[ 16%] GUILEC   guix/svn-download.go
[ 16%] GUILEC   guix/colors.go
[ 17%] GUILEC   guix/i18n.go
[ 17%] GUILEC   guix/diagnostics.go
[ 17%] GUILEC   guix/ui.go
[ 17%] GUILEC   guix/status.go
[ 17%] GUILEC   guix/build/android-ndk-build-system.go
[ 17%] GUILEC   guix/build/ant-build-system.go
[ 17%] GUILEC   guix/build/download.go
[ 17%] GUILEC   guix/build/download-nar.go
[ 17%] GUILEC   guix/build/cargo-build-system.go
[ 17%] GUILEC   guix/build/cargo-utils.go
[ 17%] GUILEC   guix/build/chicken-build-system.go
guix/store.scm:1869:0
guix/diagnostics.scm:310:9: warning: non-literal format string
WARNING: Use of `load' in declarative module (guix ui).  Add #:declarative? #f to your define-module invocation.
guix/ui.scm:1071:21: warning: non-literal format string
guix/ui.scm:1076:21: warning: non-literal format string
guix/ui.scm:1122:21: warning: non-literal format string
guix/ui.scm:1127:21: warning: non-literal format string
guix/ui.scm:1882:19: warning: non-literal format string
guix/status.scm:583:5: warning: non-literal format string
guix/status.scm:576:5: warning: non-literal format string
guix/status.scm:578:5: warning: non-literal format string
guix/status.scm:571:5: warning: non-literal format string
guix/status.scm:563:9: warning: non-literal format string
guix/status.scm:537:7: warning: non-literal format string
guix/status.scm:532:7: warning: non-literal format string
guix/status.scm:520:5: warning: non-literal format string
guix/status.scm:527:8: warning: non-literal format string
guix/status.scm:524:8: warning: non-literal format string
guix/status.scm:508:7: warning: non-literal format string
guix/status.scm:503:10: warning: non-literal format string
guix/status.scm:499:25: warning: non-literal format string
guix/status.scm:500:16: warning: non-literal format string
guix/status.scm:491:12: warning: non-literal format string
guix/status.scm:483:13: warning: non-literal format string
WARNING: (guix build ant-build-system): imported module (guix build utils) overrides core binding `delete'
guix/build/download.scm:178:5: warning: possibly unbound variable `set-certificate-credentials-x509-trust-data!'
guix/build/download.scm:184:16: warning: possibly unbound variable `make-certificate-credentials'
guix/build/download.scm:198:21: warning: possibly unbound variable `x509-certificate-format/pem'
guix/build/download.scm:204:10: warning: possibly unbound variable `session-peer-certificate-chain'
guix/build/download.scm:206:6: warning: possibly unbound variable `import-x509-certificate'
guix/build/download.scm:206:36: warning: possibly unbound variable `x509-certificate-format/der'
guix/build/download.scm:215:11: warning: possibly unbound variable `x509-certificate-matches-hostname?'
guix/build/download.scm:220:10: warning: possibly unbound variable `peer-certificate-status'
guix/build/download.scm:239:18: warning: possibly unbound variable `certificate-status->string'
guix/build/download.scm:234:21: warning: possibly unbound variable `x509-certificate-dn'
guix/build/download.scm:252:19: warning: possibly unbound variable `make-session'
guix/build/download.scm:252:32: warning: possibly unbound variable `connection-end/client'
guix/build/download.scm:261:9: warning: possibly unbound variable `set-session-server-name!'
guix/build/download.scm:261:42: warning: possibly unbound variable `server-name-type/dns'
guix/build/download.scm:265:5: warning: possibly unbound variable `set-session-transport-fd!'
guix/build/download.scm:266:5: warning: possibly unbound variable `set-session-default-priority!'
guix/build/download.scm:272:5: warning: possibly unbound variable `set-session-priorities!'
guix/build/download.scm:274:5: warning: possibly unbound variable `set-session-credentials!'
guix/build/download.scm:287:11: warning: possibly unbound variable `handshake'
guix/build/download.scm:289:26: warning: possibly unbound variable `error/warning-alert-received'
guix/build/download.scm:294:26: warning: possibly unbound variable `alert-description->string'
guix/build/download.scm:294:53: warning: possibly unbound variable `alert-get'
guix/build/download.scm:297:26: warning: possibly unbound variable `fatal-error?'
guix/build/download.scm:303:32: warning: possibly unbound variable `error->string'
guix/build/download.scm:315:19: warning: possibly unbound variable `session-record-port'
guix/build/download.scm:326:27: warning: possibly unbound variable `error/premature-termination'
WARNING: (guix build cargo-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build chicken-build-system)[ 17%] GUILEC   guix/build/cmake-build-system.go
[ 17%] GUILEC   guix/build/dub-build-system.go
[ 17%] GUILEC   guix/build/dune-build-system.go
[ 17%] GUILEC   guix/build/emacs-build-system.go
[ 17%] GUILEC   guix/build/meson-build-system.go
[ 17%] GUILEC   guix/build/minify-build-system.go
[ 17%] GUILEC   guix/build/font-build-system.go
[ 17%] GUILEC   guix/build/go-build-system.go
[ 18%] GUILEC   guix/build/android-repo.go
[ 18%] GUILEC   guix/build/asdf-build-system.go
[ 18%] GUILEC   guix/build/bzr.go
[ 18%] GUILEC   guix/build/copy-build-system.go
[ 18%] GUILEC   guix/build/git.go
[ 18%] GUILEC   guix/build/hg.go
[ 18%] GUILEC   guix/build/glib-or-gtk-build-system.go
[ 18%] GUILEC   guix/build/gnu-bootstrap.go
[ 18%] GUILEC   guix/build/gnu-build-system.go
[ 18%] GUILEC   guix/build/gnu-dist.go
[ 18%] GUILEC   guix/build/guile-build-system.go
[ 18%] GUILEC   guix/build/maven-build-system.go
[ 18%] GUILEC   guix/build/minetest-build-system.go
[ 18%] GUILEC   guix/build/node-build-system.go
[ 18%] GUILEC   guix/build/perl-build-system.go
[ 18%] GUILEC   guix/build/python-build-system.go
[ 18%] GUILEC   guix/build/ocaml-build-system.go
[ 18%] GUILEC   guix/build/qt-build-system.go
[ 18%] GUILEC   guix/build/r-build-system.go
[ 19%] GUILEC   guix/build/renpy-build-system.go
[ 19%] GUILEC   guix/build/rakudo-build-system.go
[ 19%] GUILEC   guix/build/ruby-build-system.go
[ 19%] GUILEC   guix/build/scons-build-system.go
[ 19%] GUILEC   guix/build/texlive-build-system.go
[ 19%] GUILEC   guix/build/waf-build-system.go
[ 19%] GUILEC   guix/build/haskell-build-system.go
[ 19%] GUILEC   guix/build/julia-build-system.go
[ 19%] GUILEC   guix/build/linux-module-build-system.go
[ 19%] GUILEC   guix/build/store-copy.go
[ 19%] GUILEC   guix/build/json.go
[ 19%] GUILEC   guix/build/pack.go
[ 19%] GUILEC   guix/build/utils.go
[ 19%] GUILEC   guix/build/union.go
[ 19%] GUILEC   guix/build/profiles.go
[ 19%] GUILEC   guix/build/compile.go
[ 19%] GUILEC   guix/build/cvs.go
[ 19%] GUILEC   guix/build/svn.go
[ 19%] GUILEC   guix/build/syscalls.go
[ 20%] GUILEC   guix/build/gremlin.go
[ 20%] GUILEC   guix/build/debug-link.go
[ 20%] GUILEC   guix/build/clojure-build-system.go
[ 20%] GUILEC   guix/build/clojure-utils.go
[ 20%] GUILEC   guix/build/emacs-utils.go
[ 20%] GUILEC   guix/build/java-utils.go
[ 20%] GUILEC   guix/build/lisp-utils.go
[ 20%] GUILEC   guix/build/meson-configuration.go
[ 20%] GUILEC   guix/build/maven/java.go
[ 20%] GUILEC   guix/build/maven/plugin.go
[ 20%] GUILEC   guix/build/maven/pom.go
[ 20%] GUILEC   guix/build/graft.go
[ 20%] GUILEC   guix/build/bournish.go
[ 20%] GUILEC   guix/build/qt-utils.go
[ 20%] GUILEC   guix/build/make-bootstrap.go
[ 20%] GUILEC   guix/search-paths.go
[ 20%] GUILEC   guix/packages.go
[ 20%] GUILEC   guix/import/cabal.go
[ 20%] GUILEC   guix/import/cpan.go
[ 21%] GUILEC   guix/import/cran.go
[ 21%] GUILEC   guix/import/crate.go
: imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build cmake-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build dub-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build dune-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build meson-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build minify-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build font-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build go-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build asdf-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build copy-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build gnu-dist): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build guile-build-system): imported module (guix build utils) overrides core binding `delete'
guix/build/guile-build-system.scm:72:44: warning: possibly unbound variable `current-processor-count'
WARNING: (guix build maven-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build minetest-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build perl-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build python-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build ocaml-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build r-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build renpy-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build rakudo-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build ruby-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build scons-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build texlive-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build waf-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build haskell-build-system): imported module (guix build utils) overrides core binding `delete'
WARNING: (guix build julia-build-system): imported module (guix build utils) overrides core binding `delete'
guix/build/compile.scm:48:19: warning: possibly unbound variable `tree-il-default-optimization-options'
guix/build/compile.scm:49:19: warning: possibly unbound variable `cps-default-optimization-options'
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver->string in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver->string in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver->string in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver->string in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
guix/import/crate.scm:228:5: warning: possibly unbound variable `semver-range-contains?'
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
guix/import/crate.scm:228:29: warning: possibly unbound variable `string->semver-range'
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
guix/import/crate.scm:229:29: warning: possibly unbound variable `string->semver'
;;; [ 21%] GUILEC   guix/import/egg.go
[ 21%] GUILEC   guix/import/elpa.go
[ 21%] GUILEC   guix/import/gem.go
[ 21%] GUILEC   guix/import/git.go
[ 21%] GUILEC   guix/import/github.go
[ 21%] GUILEC   guix/import/gnome.go
[ 21%] GUILEC   guix/import/gnu.go
[ 21%] GUILEC   guix/import/go.go
[ 21%] GUILEC   guix/import/hackage.go
[ 21%] GUILEC   guix/import/json.go
[ 21%] GUILEC   guix/import/kde.go
[ 21%] GUILEC   guix/import/launchpad.go
[ 21%] GUILEC   guix/import/minetest.go
[ 21%] GUILEC   guix/import/opam.go
[ 21%] GUILEC   guix/import/print.go
[ 21%] GUILEC   guix/import/pypi.go
[ 21%] GUILEC   guix/import/stackage.go
[ 22%] GUILEC   guix/import/texlive.go
[ 22%] GUILEC   guix/import/utils.go
[ 22%] GUILEC   guix/scripts.go
[ 22%] GUILEC   guix/ssh.go
[ 22%] GUILEC   guix/remote.go
[ 22%] GUILEC   guix/store/ssh.go
[ 22%] GUILEC   guix/avahi.go
[ 22%] GUILEC   guix/store/database.go
[ 22%] GUILEC   guix/store/deduplication.go
[ 22%] GUILEC   guix/store/roots.go
[ 22%] GUILEC   guix/config.go
[ 22%] GUILEC   guix/tests.go
[ 22%] GUILEC   guix/tests/http.go
[ 22%] GUILEC   guix/tests/git.go
[ 22%] GUILEC   guix/tests/gnupg.go
Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
guix/import/crate.scm:254:13: warning: possibly unbound variable `semver<?'
;;; Failed to autoload semver->string in (semver):
;;; no code for module (semver)
guix/import/crate.scm:256:12: warning: possibly unbound variable `semver->string'
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver->string in (semver):
;;; no code for module (semver)
;;; Failed to autoload string->semver-range in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload semver-range-contains? in (semver ranges):
;;; no code for module (semver ranges)
;;; Failed to autoload string->semver in (semver):
;;; no code for module (semver)
;;; Failed to autoload semver<? in (semver):
;;; no code for module (semver)
Compiling Scheme modules...
[ 22%] LOAD     gnu/packages/abduco.scm
[ 22%] LOAD     gnu/packages/abiword.scm
[ 22%] LOAD     gnu/packages/accessibility.scm
[ 22%] LOAD     gnu/packages/acct.scm
[ 22%] LOAD     gnu/packages/acl.scm
[ 22%] LOAD     gnu/packages/ada.scm
[ 22%] LOAD     gnu/packages/admin.scm
[ 22%] LOAD     gnu/packages/adns.scm
[ 22%] LOAD     gnu/packages/agda.scm
[ 22%] LOAD     gnu/packages/algebra.scm
[ 22%] LOAD     gnu/packages/aidc.scm
[ 22%] LOAD     gnu/packages/android.scm
[ 22%] LOAD     gnu/packages/animation.scm
[ 23%] LOAD     gnu/packages/anthy.scm
[ 23%] LOAD     gnu/packages/antivirus.scm
[ 23%] LOAD     gnu/packages/apl.scm
[ 23%] LOAD     gnu/packages/apr.scm
[ 23%] LOAD     gnu/packages/arcan.scm
[ 23%] LOAD     gnu/packages/aspell.scm
[ 23%] LOAD     gnu/packages/assembly.scm
[ 23%] LOAD     gnu/packages/astronomy.scm
[ 23%] LOAD     gnu/packages/attr.scm
[ 23%] LOAD     gnu/packages/audio.scm
[ 23%] LOAD     gnu/packages/augeas.scm
[ 23%] LOAD     gnu/packages/authentication.scm
[ 23%] LOAD     gnu/packages/autogen.scm
[ 23%] LOAD     gnu/packages/autotools.scm
[ 23%] LOAD     gnu/packages/avahi.scm
[ 23%] LOAD     gnu/packages/avr.scm
[ 23%] LOAD     gnu/packages/axoloti.scm
[ 23%] LOAD     gnu/packages/backup.scm
[ 23%] LOAD     gnu/packages/base.scm
[ 24%] LOAD     gnu/packages/bash.scm
[ 24%] LOAD     gnu/packages/batik.scm
[ 24%] LOAD     gnu/packages/bdw-gc.scm
[ 24%] LOAD     gnu/packages/benchmark.scm
[ 24%] LOAD     gnu/packages/bioconductor.scm
[ 24%] LOAD     gnu/packages/bioinformatics.scm
[ 24%] LOAD     gnu/packages/bittorrent.scm
[ 24%] LOAD     gnu/packages/bison.scm
[ 24%] LOAD     gnu/packages/boost.scm
[ 24%] LOAD     gnu/packages/bootloaders.scm
[ 24%] LOAD     gnu/packages/bootstrap.scm
[ 24%] LOAD     gnu/packages/browser-extensions.scm
[ 24%] LOAD     gnu/packages/build-tools.scm
[ 24%] LOAD     gnu/packages/busybox.scm
[ 24%] LOAD     gnu/packages/c.scm
[ 24%] LOAD     gnu/packages/calcurse.scm
[ 24%] LOAD     gnu/packages/ccache.scm
[ 24%] LOAD     gnu/packages/cdrom.scm
[ 24%] LOAD     gnu/packages/cedille.scm
[ 25%] LOAD     gnu/packages/certs.scm
[ 25%] LOAD     gnu/packages/check.scm
[ 25%] LOAD     gnu/packages/chemistry.scm
[ 25%] LOAD     gnu/packages/chez.scm
[ 25%] LOAD     gnu/packages/chicken.scm
[ 25%] LOAD     gnu/packages/chromium.scm
[ 25%] LOAD     gnu/packages/ci.scm
[ 25%] LOAD     gnu/packages/cinnamon.scm
[ 25%] LOAD     gnu/packages/clojure.scm
[ 25%] LOAD     gnu/packages/cluster.scm
[ 25%] LOAD     gnu/packages/cmake.scm
[ 25%] LOAD     gnu/packages/cobol.scm
[ 25%] LOAD     gnu/packages/code.scm
[ 25%] LOAD     gnu/packages/commencement.scm
[ 25%] LOAD     gnu/packages/compression.scm
[ 25%] LOAD     gnu/packages/compton.scm
[ 25%] LOAD     gnu/packages/configuration-management.scm
[ 25%] LOAD     gnu/packages/conky.scm
[ 25%] LOAD     gnu/packages/connman.scm
[ 26%] LOAD     gnu/packages/convmv.scm
[ 26%] LOAD     gnu/packages/cook.scm
[ 26%] LOAD     gnu/packages/coq.scm
[ 26%] LOAD     gnu/packages/cpio.scm
[ 26%] LOAD     gnu/packages/cpp.scm
[ 26%] LOAD     gnu/packages/cppi.scm
[ 26%] LOAD     gnu/packages/cran.scm
[ 26%] LOAD     gnu/packages/crates-io.scm
[ 26%] LOAD     gnu/packages/crates-graphics.scm
[ 26%] LOAD     gnu/packages/crates-gtk.scm
[ 26%] LOAD     gnu/packages/cross-base.scm
[ 26%] LOAD     gnu/packages/crypto.scm
[ 26%] LOAD     gnu/packages/cryptsetup.scm
[ 26%] LOAD     gnu/packages/cups.scm
[ 26%] LOAD     gnu/packages/curl.scm
[ 26%] LOAD     gnu/packages/cvassistant.scm
[ 26%] LOAD     gnu/packages/cybersecurity.scm
[ 26%] LOAD     gnu/packages/cyrus-sasl.scm
[ 26%] LOAD     gnu/packages/databases.scm
[ 27%] LOAD     gnu/packages/datamash.scm
[ 27%] LOAD     gnu/packages/datastructures.scm
[ 27%] LOAD     gnu/packages/dav.scm
[ 27%] LOAD     gnu/packages/dbm.scm
[ 27%] LOAD     gnu/packages/dc.scm
[ 27%] LOAD     gnu/packages/debian.scm
[ 27%] LOAD     gnu/packages/debug.scm
[ 27%] LOAD     gnu/packages/dejagnu.scm
[ 27%] LOAD     gnu/packages/dhall.scm
[ 27%] LOAD     gnu/packages/dico.scm
[ 27%] LOAD     gnu/packages/dictionaries.scm
[ 27%] LOAD     gnu/packages/diffoscope.scm
[ 27%] LOAD     gnu/packages/digest.scm
[ 27%] LOAD     gnu/packages/direct-connect.scm
[ 27%] LOAD     gnu/packages/disk.scm
[ 27%] LOAD     gnu/packages/distributed.scm
[ 27%] LOAD     gnu/packages/display-managers.scm
[ 27%] LOAD     gnu/packages/django.scm
[ 27%] LOAD     gnu/packages/djvu.scm
[ 28%] LOAD     gnu/packages/dlang.scm
[ 28%] LOAD     gnu/packages/dns.scm
[ 28%] LOAD     gnu/packages/docbook.scm
[ 28%] LOAD     gnu/packages/docker.scm
[ 28%] LOAD     gnu/packages/documentation.scm
[ 28%] LOAD     gnu/packages/dunst.scm
[ 28%] LOAD     gnu/packages/dvtm.scm
[ 28%] LOAD     gnu/packages/easyrpg.scm
[ 28%] LOAD     gnu/packages/ebook.scm
[ 28%] LOAD     gnu/packages/ed.scm
[ 28%] LOAD     gnu/packages/education.scm
[ 28%] LOAD     gnu/packages/efi.scm
[ 28%] LOAD     gnu/packages/electronics.scm
[ 28%] LOAD     gnu/packages/elf.scm
[ 28%] LOAD     gnu/packages/elixir.scm
[ 28%] LOAD     gnu/packages/elm.scm
[ 28%] LOAD     gnu/packages/embedded.scm
[ 28%] LOAD     gnu/packages/emacs.scm
[ 29%] LOAD     gnu/packages/emacs-xyz.scm
[ 29%] LOAD     gnu/packages/emulators.scm
[ 29%] LOAD     gnu/packages/enchant.scm
[ 29%] LOAD     gnu/packages/engineering.scm
[ 29%] LOAD     gnu/packages/enlightenment.scm
[ 29%] LOAD     gnu/packages/entr.scm
[ 29%] LOAD     gnu/packages/erlang.scm
[ 29%] LOAD     gnu/packages/esolangs.scm
[ 29%] LOAD     gnu/packages/fabric-management.scm
[ 29%] LOAD     gnu/packages/fcitx.scm
[ 29%] LOAD     gnu/packages/fcitx5.scm
[ 29%] LOAD     gnu/packages/figlet.scm
[ 29%] LOAD     gnu/packages/file.scm
[ 29%] LOAD     gnu/packages/file-systems.scm
[ 29%] LOAD     gnu/packages/finance.scm
[ 29%] LOAD     gnu/packages/firmware.scm
[ 29%] LOAD     gnu/packages/flashing-tools.scm
[ 29%] LOAD     gnu/packages/flex.scm
[ 29%] LOAD     gnu/packages/fltk.scm
[ 30%] LOAD     gnu/packages/fonts.scm
[ 30%] LOAD     gnu/packages/fontutils.scm
[ 30%] LOAD     gnu/packages/fpga.scm
[ 30%] LOAD     gnu/packages/forth.scm
[ 30%] LOAD     gnu/packages/freedesktop.scm
[ 30%] LOAD     gnu/packages/freeipmi.scm
[ 30%] LOAD     gnu/packages/ftp.scm
[ 30%] LOAD     gnu/packages/fribidi.scm
[ 30%] LOAD     gnu/packages/fvwm.scm
[ 30%] LOAD     gnu/packages/game-development.scm
[ 30%] LOAD     gnu/packages/games.scm
[ 30%] LOAD     gnu/packages/gawk.scm
[ 30%] LOAD     gnu/packages/gcal.scm
[ 30%] LOAD     gnu/packages/gcc.scm
[ 30%] LOAD     gnu/packages/gd.scm
[ 30%] LOAD     gnu/packages/gdb.scm
[ 30%] LOAD     gnu/packages/genealogy.scm
[ 30%] LOAD     gnu/packages/genimage.scm
[ 30%] LOAD     gnu/packages/geo.scm
[ 31%] LOAD     gnu/packages/gettext.scm
[ 31%] LOAD     gnu/packages/ghostscript.scm
[ 31%] LOAD     gnu/packages/gimp.scm
[ 31%] LOAD     gnu/packages/gkrellm.scm
[ 31%] LOAD     gnu/packages/gl.scm
[ 31%] LOAD     gnu/packages/glib.scm
[ 31%] LOAD     gnu/packages/gnome.scm
[ 31%] LOAD     gnu/packages/gnome-xyz.scm
[ 31%] LOAD     gnu/packages/gnu-doc.scm
[ 31%] LOAD     gnu/packages/gnucash.scm
[ 31%] LOAD     gnu/packages/gnunet.scm
[ 31%] LOAD     gnu/packages/gnupg.scm
[ 31%] LOAD     gnu/packages/gnustep.scm
[ 31%] LOAD     gnu/packages/gnuzilla.scm
[ 31%] LOAD     gnu/packages/gnu-pw-mgr.scm
[ 31%] LOAD     gnu/packages/gobby.scm
[ 31%] LOAD     gnu/packages/golang.scm
[ 31%] LOAD     gnu/packages/gperf.scm
[ 31%] LOAD     gnu/packages/gpodder.scm
[ 32%] LOAD     gnu/packages/gps.scm
[ 32%] LOAD     gnu/packages/graph.scm
[ 32%] LOAD     gnu/packages/graphics.scm
[ 32%] LOAD     gnu/packages/graphviz.scm
[ 32%] LOAD     gnu/packages/groff.scm
[ 32%] LOAD     gnu/packages/groovy.scm
[ 32%] LOAD     gnu/packages/gsasl.scm
[ 32%] LOAD     gnu/packages/gstreamer.scm
[ 32%] LOAD     gnu/packages/gtk.scm
[ 32%] LOAD     gnu/packages/guile.scm
[ 32%] LOAD     gnu/packages/guile-wm.scm
[ 32%] LOAD     gnu/packages/guile-xyz.scm
[ 32%] LOAD     gnu/packages/gv.scm
[ 32%] LOAD     gnu/packages/gxmessage.scm
[ 32%] LOAD     gnu/packages/hardware.scm
[ 32%] LOAD     gnu/packages/haskell.scm
[ 32%] LOAD     gnu/packages/haskell-apps.scm
[ 32%] LOAD     gnu/packages/haskell-check.scm
[ 32%] LOAD     gnu/packages/haskell-crypto.scm
[ 33%] LOAD     gnu/packages/haskell-web.scm
[ 33%] LOAD     gnu/packages/haskell-xyz.scm
[ 33%] LOAD     gnu/packages/heads.scm
[ 33%] LOAD     gnu/packages/hexedit.scm
[ 33%] LOAD     gnu/packages/hugs.scm
[ 33%] LOAD     gnu/packages/hunspell.scm
[ 33%] LOAD     gnu/packages/hurd.scm
[ 33%] LOAD     gnu/packages/hyperledger.scm
[ 33%] LOAD     gnu/packages/i2p.scm
[ 33%] LOAD     gnu/packages/ibus.scm
[ 33%] LOAD     gnu/packages/icu4c.scm
[ 33%] LOAD     gnu/packages/idris.scm
[ 33%] LOAD     gnu/packages/idutils.scm
[ 33%] LOAD     gnu/packages/image.scm
[ 33%] LOAD     gnu/packages/image-processing.scm
[ 33%] LOAD     gnu/packages/image-viewers.scm
[ 33%] LOAD     gnu/packages/imagemagick.scm
[ 33%] LOAD     gnu/packages/inklingreader.scm
[ 33%] LOAD     gnu/packages/inkscape.scm
[ 34%] LOAD     gnu/packages/installers.scm
[ 34%] LOAD     gnu/packages/instrumentation.scm
[ 34%] LOAD     gnu/packages/ipfs.scm
[ 34%] LOAD     gnu/packages/irc.scm
[ 34%] LOAD     gnu/packages/irods.scm
[ 34%] LOAD     gnu/packages/iso-codes.scm
[ 34%] LOAD     gnu/packages/jami.scm
[ 34%] LOAD     gnu/packages/java.scm
[ 34%] LOAD     gnu/packages/java-compression.scm
[ 34%] LOAD     gnu/packages/java-graphics.scm
[ 34%] LOAD     gnu/packages/java-maths.scm
[ 34%] LOAD     gnu/packages/javascript.scm
[ 34%] LOAD     gnu/packages/jemalloc.scm
[ 34%] LOAD     gnu/packages/jrnl.scm
[ 34%] LOAD     gnu/packages/jose.scm
[ 34%] LOAD     gnu/packages/julia.scm
[ 34%] LOAD     gnu/packages/julia-jll.scm
[ 34%] LOAD     gnu/packages/julia-xyz.scm
[ 35%] LOAD     gnu/packages/jupyter.scm
[ 35%] LOAD     gnu/packages/kawa.scm
[ 35%] LOAD     gnu/packages/kde.scm
[ 35%] LOAD     gnu/packages/kde-frameworks.scm
[ 35%] LOAD     gnu/packages/kde-internet.scm
[ 35%] LOAD     gnu/packages/kde-multimedia.scm
[ 35%] LOAD     gnu/packages/kde-pim.scm
[ 35%] LOAD     gnu/packages/kde-plasma.scm
[ 35%] LOAD     gnu/packages/kde-systemtools.scm
[ 35%] LOAD     gnu/packages/kde-utils.scm
[ 35%] LOAD     gnu/packages/kerberos.scm
[ 35%] LOAD     gnu/packages/key-mon.scm
[ 35%] LOAD     gnu/packages/kodi.scm
[ 35%] LOAD     gnu/packages/language.scm
[ 35%] LOAD     gnu/packages/lean.scm
[ 35%] LOAD     gnu/packages/lego.scm
[ 35%] LOAD     gnu/packages/less.scm
[ 35%] LOAD     gnu/packages/lesstif.scm
[ 35%] LOAD     gnu/packages/libbsd.scm
[ 36%] LOAD     gnu/packages/libcanberra.scm
[ 36%] LOAD     gnu/packages/libdaemon.scm
[ 36%] LOAD     gnu/packages/libedit.scm
[ 36%] LOAD     gnu/packages/libevent.scm
[ 36%] LOAD     gnu/packages/libffcall.scm
[ 36%] LOAD     gnu/packages/libffi.scm
[ 36%] LOAD     gnu/packages/libftdi.scm
[ 36%] LOAD     gnu/packages/license.scm
[ 36%] LOAD     gnu/packages/calendar.scm
[ 36%] LOAD     gnu/packages/libidn.scm
[ 36%] LOAD     gnu/packages/libphidget.scm
[ 36%] LOAD     gnu/packages/libreoffice.scm
[ 36%] LOAD     gnu/packages/libsigsegv.scm
[ 36%] LOAD     gnu/packages/libunistring.scm
[ 36%] LOAD     gnu/packages/libusb.scm
[ 36%] LOAD     gnu/packages/libunwind.scm
[ 36%] LOAD     gnu/packages/lighting.scm
[ 36%] LOAD     gnu/packages/linphone.scm
[ 36%] LOAD     gnu/packages/linux.scm
[ 37%] LOAD     gnu/packages/lirc.scm
[ 37%] LOAD     gnu/packages/lisp.scm
[ 37%] LOAD     gnu/packages/lisp-check.scm
[ 37%] LOAD     gnu/packages/lisp-xyz.scm
[ 37%] LOAD     gnu/packages/llvm.scm
[ 37%] LOAD     gnu/packages/lout.scm
[ 37%] LOAD     gnu/packages/logging.scm
[ 37%] LOAD     gnu/packages/logo.scm
[ 37%] LOAD     gnu/packages/loko.scm
[ 37%] LOAD     gnu/packages/lsof.scm
[ 37%] LOAD     gnu/packages/lua.scm
[ 37%] LOAD     gnu/packages/lxde.scm
[ 37%] LOAD     gnu/packages/lxqt.scm
[ 37%] LOAD     gnu/packages/m4.scm
[ 37%] LOAD     gnu/packages/machine-learning.scm
[ 37%] LOAD     gnu/packages/magic-wormhole.scm
[ 37%] LOAD     gnu/packages/man.scm
[ 37%] LOAD     gnu/packages/mastodon.scm
[ 37%] LOAD     gnu/packages/mail.scm
[ 38%] LOAD     gnu/packages/make-bootstrap.scm
[ 38%] LOAD     gnu/packages/markup.scm
[ 38%] LOAD     gnu/packages/marst.scm
[ 38%] LOAD     gnu/packages/mate.scm
[ 38%] LOAD     gnu/packages/maths.scm
[ 38%] LOAD     gnu/packages/matrix.scm
[ 38%] LOAD     gnu/packages/maven.scm
[ 38%] LOAD     gnu/packages/maven-parent-pom.scm
[ 38%] LOAD     gnu/packages/mc.scm
[ 38%] LOAD     gnu/packages/mcrypt.scm
[ 38%] LOAD     gnu/packages/medical.scm
[ 38%] LOAD     gnu/packages/mercury.scm
[ 38%] LOAD     gnu/packages/mes.scm
[ 38%] LOAD     gnu/packages/messaging.scm
[ 38%] LOAD     gnu/packages/minetest.scm
[ 38%] LOAD     gnu/packages/mingw.scm
[ 38%] LOAD     gnu/packages/microcom.scm
[ 38%] LOAD     gnu/packages/moe.scm
[ 38%] LOAD     gnu/packages/motti.scm
[ 39%] LOAD     gnu/packages/monitoring.scm
[ 39%] LOAD     gnu/packages/mono.scm
[ 39%] LOAD     gnu/packages/moreutils.scm
[ 39%] LOAD     gnu/packages/mpd.scm
[ 39%] LOAD     gnu/packages/mp3.scm
[ 39%] LOAD     gnu/packages/mpi.scm
[ 39%] LOAD     gnu/packages/multiprecision.scm
[ 39%] LOAD     gnu/packages/music.scm
[ 39%] LOAD     gnu/packages/musl.scm
[ 39%] LOAD     gnu/packages/mtools.scm
[ 39%] LOAD     gnu/packages/nano.scm
[ 39%] LOAD     gnu/packages/ncdu.scm
[ 39%] LOAD     gnu/packages/ncurses.scm
[ 39%] LOAD     gnu/packages/netpbm.scm
[ 39%] LOAD     gnu/packages/nettle.scm
[ 39%] LOAD     gnu/packages/networking.scm
[ 39%] LOAD     gnu/packages/nfs.scm
[ 39%] LOAD     gnu/packages/nickle.scm
[ 39%] LOAD     gnu/packages/nicotine.scm
[ 40%] LOAD     gnu/packages/nim.scm
[ 40%] LOAD     gnu/packages/ninja.scm
[ 40%] LOAD     gnu/packages/node.scm
[ 40%] LOAD     gnu/packages/node-xyz.scm
[ 40%] LOAD     gnu/packages/noweb.scm
[ 40%] LOAD     gnu/packages/nss.scm
[ 40%] LOAD     gnu/packages/ntp.scm
[ 40%] LOAD     gnu/packages/nutrition.scm
[ 40%] LOAD     gnu/packages/nvi.scm
[ 40%] LOAD     gnu/packages/ocaml.scm
[ 40%] LOAD     gnu/packages/ocr.scm
[ 40%] LOAD     gnu/packages/openkinect.scm
[ 40%] LOAD     gnu/packages/onc-rpc.scm
[ 40%] LOAD     gnu/packages/opencl.scm
[ 40%] LOAD     gnu/packages/openbox.scm
[ 40%] LOAD     gnu/packages/opencog.scm
[ 40%] LOAD     gnu/packages/openldap.scm
[ 40%] LOAD     gnu/packages/openpgp.scm
[ 40%] LOAD     gnu/packages/openstack.scm
[ 41%] LOAD     gnu/packages/orange.scm
[ 41%] LOAD     gnu/packages/orpheus.scm
[ 41%] LOAD     gnu/packages/ots.scm
[ 41%] LOAD     gnu/packages/package-management.scm
[ 41%] LOAD     gnu/packages/pantheon.scm
[ 41%] LOAD     gnu/packages/parallel.scm
[ 41%] LOAD     gnu/packages/pascal.scm
[ 41%] LOAD     gnu/packages/password-utils.scm
[ 41%] LOAD     gnu/packages/patool.scm
[ 41%] LOAD     gnu/packages/patchutils.scm
[ 41%] LOAD     gnu/packages/pciutils.scm
[ 41%] LOAD     gnu/packages/pcre.scm
[ 41%] LOAD     gnu/packages/pdf.scm
[ 41%] LOAD     gnu/packages/pem.scm
[ 41%] LOAD     gnu/packages/pep.scm
[ 41%] LOAD     gnu/packages/perl.scm
[ 41%] LOAD     gnu/packages/perl-check.scm
[ 41%] LOAD     gnu/packages/perl-compression.scm
[ 42%] LOAD     gnu/packages/perl-maths.scm
[ 42%] LOAD     gnu/packages/perl-web.scm
[ 42%] LOAD     gnu/packages/perl6.scm
[ 42%] LOAD     gnu/packages/photo.scm
[ 42%] LOAD     gnu/packages/phabricator.scm
[ 42%] LOAD     gnu/packages/php.scm
[ 42%] LOAD     gnu/packages/piet.scm
[ 42%] LOAD     gnu/packages/pkg-config.scm
[ 42%] LOAD     gnu/packages/plan9.scm
[ 42%] LOAD     gnu/packages/plotutils.scm
[ 42%] LOAD     gnu/packages/poedit.scm
[ 42%] LOAD     gnu/packages/polkit.scm
[ 42%] LOAD     gnu/packages/popt.scm
[ 42%] LOAD     gnu/packages/printers.scm
[ 42%] LOAD     gnu/packages/profiling.scm
[ 42%] LOAD     gnu/packages/prolog.scm
[ 42%] LOAD     gnu/packages/pth.scm
[ 42%] LOAD     gnu/packages/pulseaudio.scm
[ 42%] LOAD     gnu/packages/pumpio.scm
[ 43%] LOAD     gnu/packages/presentation.scm
[ 43%] LOAD     gnu/packages/pretty-print.scm
[ 43%] LOAD     gnu/packages/protobuf.scm
[ 43%] LOAD     gnu/packages/pure.scm
[ 43%] LOAD     gnu/packages/purescript.scm
[ 43%] LOAD     gnu/packages/pv.scm
[ 43%] LOAD     gnu/packages/python.scm
[ 43%] LOAD     gnu/packages/python-build.scm
[ 43%] LOAD     gnu/packages/python-check.scm
[ 43%] LOAD     gnu/packages/python-compression.scm
[ 43%] LOAD     gnu/packages/python-crypto.scm
[ 43%] LOAD     gnu/packages/python-science.scm
[ 43%] LOAD     gnu/packages/python-web.scm
[ 43%] LOAD     gnu/packages/python-xyz.scm
[ 43%] LOAD     gnu/packages/toys.scm
[ 43%] LOAD     gnu/packages/tryton.scm
[ 43%] LOAD     gnu/packages/qt.scm
[ 43%] LOAD     gnu/packages/racket.scm
[ 43%] LOAD     gnu/packages/radio.scm
[ 44%] LOAD     gnu/packages/ragel.scm
[ 44%] LOAD     gnu/packages/rails.scm
[ 44%] LOAD     gnu/packages/raspberry-pi.scm
[ 44%] LOAD     gnu/packages/ratpoison.scm
[ 44%] LOAD     gnu/packages/rcm.scm
[ 44%] LOAD     gnu/packages/rdesktop.scm
[ 44%] LOAD     gnu/packages/rdf.scm
[ 44%] LOAD     gnu/packages/re2c.scm
[ 44%] LOAD     gnu/packages/readline.scm
[ 44%] LOAD     gnu/packages/rednotebook.scm
[ 44%] LOAD     gnu/packages/regex.scm
[ 44%] LOAD     gnu/packages/robotics.scm
[ 44%] LOAD     gnu/packages/rocm.scm
[ 44%] LOAD     gnu/packages/rpc.scm
[ 44%] LOAD     gnu/packages/rpm.scm
[ 44%] LOAD     gnu/packages/rrdtool.scm
[ 44%] LOAD     gnu/packages/rsync.scm
[ 44%] LOAD     gnu/packages/ruby.scm
[ 44%] LOAD     gnu/packages/rush.scm
[ 45%] LOAD     gnu/packages/rust.scm
[ 45%] LOAD     gnu/packages/rust-apps.scm
[ 45%] LOAD     gnu/packages/samba.scm
[ 45%] LOAD     gnu/packages/sagemath.scm
[ 45%] LOAD     gnu/packages/sawfish.scm
[ 45%] LOAD     gnu/packages/scanner.scm
[ 45%] LOAD     gnu/packages/scheme.scm
[ 45%] LOAD     gnu/packages/spreadsheet.scm
[ 45%] LOAD     gnu/packages/screen.scm
[ 45%] LOAD     gnu/packages/scribus.scm
[ 45%] LOAD     gnu/packages/scsi.scm
[ 45%] LOAD     gnu/packages/sdl.scm
[ 45%] LOAD     gnu/packages/search.scm
[ 45%] LOAD     gnu/packages/security-token.scm
[ 45%] LOAD     gnu/packages/selinux.scm
[ 45%] LOAD     gnu/packages/sequoia.scm
[ 45%] LOAD     gnu/packages/serialization.scm
[ 45%] LOAD     gnu/packages/serveez.scm
[ 45%] LOAD     gnu/packages/shells.scm
[ 46%] LOAD     gnu/packages/shellutils.scm
[ 46%] LOAD     gnu/packages/simh.scm
[ 46%] LOAD     gnu/packages/simulation.scm
[ 46%] LOAD     gnu/packages/skarnet.scm
[ 46%] LOAD     gnu/packages/skribilo.scm
[ 46%] LOAD     gnu/packages/slang.scm
[ 46%] LOAD     gnu/packages/smalltalk.scm
[ 46%] LOAD     gnu/packages/sml.scm
[ 46%] LOAD     gnu/packages/solidity.scm
[ 46%] LOAD     gnu/packages/speech.scm
[ 46%] LOAD     gnu/packages/sphinx.scm
[ 46%] LOAD     gnu/packages/spice.scm
[ 46%] LOAD     gnu/packages/sqlite.scm
[ 46%] LOAD     gnu/packages/squirrel.scm
[ 46%] LOAD     gnu/packages/ssh.scm
[ 46%] LOAD     gnu/packages/sssd.scm
[ 46%] LOAD     gnu/packages/stalonetray.scm
[ 46%] LOAD     gnu/packages/statistics.scm
[ 46%] LOAD     gnu/packages/stb.scm
[ 47%] LOAD     gnu/packages/stenography.scm
[ 47%] LOAD     gnu/packages/storage.scm
[ 47%] LOAD     gnu/packages/suckless.scm
[ 47%] LOAD     gnu/packages/swig.scm
[ 47%] LOAD     gnu/packages/sync.scm
[ 47%] LOAD     gnu/packages/syncthing.scm
[ 47%] LOAD     gnu/packages/synergy.scm
[ 47%] LOAD     gnu/packages/syndication.scm
[ 47%] LOAD     gnu/packages/task-management.scm
[ 47%] LOAD     gnu/packages/task-runners.scm
[ 47%] LOAD     gnu/packages/tbb.scm
[ 47%] LOAD     gnu/packages/tcl.scm
[ 47%] LOAD     gnu/packages/telegram.scm
[ 47%] LOAD     gnu/packages/telephony.scm
[ 47%] LOAD     gnu/packages/terminals.scm
[ 47%] LOAD     gnu/packages/terraform.scm
[ 47%] LOAD     gnu/packages/texinfo.scm
[ 47%] LOAD     gnu/packages/tex.scm
[ 48%] LOAD     gnu/packages/textutils.scm
[ 48%] LOAD     gnu/packages/text-editors.scm
[ 48%] LOAD     gnu/packages/time.scm
[ 48%] LOAD     gnu/packages/tls.scm
[ 48%] LOAD     gnu/packages/tmux.scm
[ 48%] LOAD     gnu/packages/tor.scm
[ 48%] LOAD     gnu/packages/tv.scm
[ 48%] LOAD     gnu/packages/uglifyjs.scm
[ 48%] LOAD     gnu/packages/uml.scm
[ 48%] LOAD     gnu/packages/unicode.scm
[ 48%] LOAD     gnu/packages/unrtf.scm
[ 48%] LOAD     gnu/packages/upnp.scm
[ 48%] LOAD     gnu/packages/usb-modeswitch.scm
[ 48%] LOAD     gnu/packages/uucp.scm
[ 48%] LOAD     gnu/packages/valgrind.scm
[ 48%] LOAD     gnu/packages/version-control.scm
[ 48%] LOAD     gnu/packages/video.scm
[ 48%] LOAD     gnu/packages/vim.scm
[ 48%] LOAD     gnu/packages/virtualization.scm
[ 49%] LOAD     gnu/packages/vlang.scm
[ 49%] LOAD     gnu/packages/vnc.scm
[ 49%] LOAD     gnu/packages/vpn.scm
[ 49%] LOAD     gnu/packages/vulkan.scm
[ 49%] LOAD     gnu/packages/w3m.scm
[ 49%] LOAD     gnu/packages/wdiff.scm
[ 49%] LOAD     gnu/packages/web.scm
[ 49%] LOAD     gnu/packages/web-browsers.scm
[ 49%] LOAD     gnu/packages/webkit.scm
[ 49%] LOAD     gnu/packages/wget.scm
[ 49%] LOAD     gnu/packages/wicd.scm
[ 49%] LOAD     gnu/packages/wine.scm
[ 49%] LOAD     gnu/packages/wireservice.scm
[ 49%] LOAD     gnu/packages/wm.scm
[ 49%] LOAD     gnu/packages/wordnet.scm
[ 49%] LOAD     gnu/packages/wv.scm
[ 49%] LOAD     gnu/packages/wxwidgets.scm
[ 49%] LOAD     gnu/packages/xfig.scm
[ 49%] LOAD     gnu/packages/xiph.scm
[ 50%] LOAD     gnu/packages/xml.scm
[ 50%] LOAD     gnu/packages/xnee.scm
[ 50%] LOAD     gnu/packages/xdisorg.scm
[ 50%] LOAD     gnu/packages/xorg.scm
[ 50%] LOAD     gnu/packages/xfce.scm
[ 50%] LOAD     gnu/packages/zig.scm
[ 50%] LOAD     gnu/packages/zile.scm
[ 50%] LOAD     gnu/packages/zwave.scm
[ 50%] GUILEC   gnu/packages/abduco.go
[ 50%] GUILEC   gnu/packages/abiword.go
[ 50%] GUILEC   gnu/packages/accessibility.go
[ 50%] GUILEC   gnu/packages/acct.go
[ 50%] GUILEC   gnu/packages/acl.go
[ 50%] GUILEC   gnu/packages/ada.go
[ 50%] GUILEC   gnu/packages/admin.go
[ 50%] GUILEC   gnu/packages/adns.go
[ 50%] GUILEC   gnu/packages/agda.go
[ 50%] GUILEC   gnu/packages/algebra.go
[ 50%] GUILEC   gnu/packages/aidc.go
[ 51%] GUILEC   gnu/packages/android.go
[ 51%] GUILEC   gnu/packages/animation.go
[ 51%] GUILEC   gnu/packages/anthy.go
[ 51%] GUILEC   gnu/packages/antivirus.go
[ 51%] GUILEC   gnu/packages/apl.go
[ 51%] GUILEC   gnu/packages/apr.go
[ 51%] GUILEC   gnu/packages/arcan.go
[ 51%] GUILEC   gnu/packages/aspell.go
[ 51%] GUILEC   gnu/packages/assembly.go
[ 51%] GUILEC   gnu/packages/astronomy.go
[ 51%] GUILEC   gnu/packages/attr.go
[ 51%] GUILEC   gnu/packages/audio.go
[ 51%] GUILEC   gnu/packages/augeas.go
[ 51%] GUILEC   gnu/packages/authentication.go
[ 51%] GUILEC   gnu/packages/autogen.go
[ 51%] GUILEC   gnu/packages/autotools.go
[ 51%] GUILEC   gnu/packages/avahi.go
[ 51%] GUILEC   gnu/packages/avr.go
[ 51%] GUILEC   gnu/packages/axoloti.go
[ 52%] GUILEC   gnu/packages/backup.go
[ 52%] GUILEC   gnu/packages/base.go
[ 52%] GUILEC   gnu/packages/bash.go
[ 52%] GUILEC   gnu/packages/batik.go
[ 52%] GUILEC   gnu/packages/bdw-gc.go
[ 52%] GUILEC   gnu/packages/benchmark.go
[ 52%] GUILEC   gnu/packages/bioconductor.go
[ 52%] GUILEC   gnu/packages/bioinformatics.go
[ 52%] GUILEC   gnu/packages/bittorrent.go
[ 52%] GUILEC   gnu/packages/bison.go
[ 52%] GUILEC   gnu/packages/boost.go
[ 52%] GUILEC   gnu/packages/bootloaders.go
[ 52%] GUILEC   gnu/packages/bootstrap.go
[ 52%] GUILEC   gnu/packages/browser-extensions.go
[ 52%] GUILEC   gnu/packages/build-tools.go
[ 52%] GUILEC   gnu/packages/busybox.go
[ 52%] GUILEC   gnu/packages/c.go
[ 52%] GUILEC   gnu/packages/calcurse.go
[ 52%] GUILEC   gnu/packages/ccache.go
[ 53%] GUILEC   gnu/packages/cdrom.go
[ 53%] GUILEC   gnu/packages/cedille.go
[ 53%] GUILEC   gnu/packages/certs.go
[ 53%] GUILEC   gnu/packages/check.go
[ 53%] GUILEC   gnu/packages/chemistry.go
[ 53%] GUILEC   gnu/packages/chez.go
[ 53%] GUILEC   gnu/packages/chicken.go
[ 53%] GUILEC   gnu/packages/chromium.go
[ 53%] GUILEC   gnu/packages/ci.go
[ 53%] GUILEC   gnu/packages/cinnamon.go
[ 53%] GUILEC   gnu/packages/clojure.go
[ 53%] GUILEC   gnu/packages/cluster.go
[ 53%] GUILEC   gnu/packages/cmake.go
[ 53%] GUILEC   gnu/packages/cobol.go
[ 53%] GUILEC   gnu/packages/code.go
[ 53%] GUILEC   gnu/packages/commencement.go
[ 53%] GUILEC   gnu/packages/compression.go
[ 53%] GUILEC   gnu/packages/compton.go
[ 54%] GUILEC   gnu/packages/configuration-management.go
[ 54%] GUILEC   gnu/packages/conky.go
[ 54%] GUILEC   gnu/packages/connman.go
[ 54%] GUILEC   gnu/packages/convmv.go
[ 54%] GUILEC   gnu/packages/cook.go
[ 54%] GUILEC   gnu/packages/coq.go
[ 54%] GUILEC   gnu/packages/cpio.go
[ 54%] GUILEC   gnu/packages/cpp.go
[ 54%] GUILEC   gnu/packages/cppi.go
[ 54%] GUILEC   gnu/packages/cran.go
[ 54%] GUILEC   gnu/packages/crates-io.go
[ 54%] GUILEC   gnu/packages/crates-graphics.go
[ 54%] GUILEC   gnu/packages/crates-gtk.go
[ 54%] GUILEC   gnu/packages/cross-base.go
[ 54%] GUILEC   gnu/packages/crypto.go
[ 54%] GUILEC   gnu/packages/cryptsetup.go
[ 54%] GUILEC   gnu/packages/cups.go
[ 54%] GUILEC   gnu/packages/curl.go
[ 54%] GUILEC   gnu/packages/cvassistant.go
[ 55%] GUILEC   gnu/packages/cybersecurity.go
[ 55%] GUILEC   gnu/packages/cyrus-sasl.go
[ 55%] GUILEC   gnu/packages/databases.go
[ 55%] GUILEC   gnu/packages/datamash.go
[ 55%] GUILEC   gnu/packages/datastructures.go
[ 55%] GUILEC   gnu/packages/dav.go
[ 55%] GUILEC   gnu/packages/dbm.go
[ 55%] GUILEC   gnu/packages/dc.go
[ 55%] GUILEC   gnu/packages/debian.go
[ 55%] GUILEC   gnu/packages/debug.go
[ 55%] GUILEC   gnu/packages/dejagnu.go
[ 55%] GUILEC   gnu/packages/dhall.go
[ 55%] GUILEC   gnu/packages/dico.go
[ 55%] GUILEC   gnu/packages/dictionaries.go
[ 55%] GUILEC   gnu/packages/diffoscope.go
[ 55%] GUILEC   gnu/packages/digest.go
[ 55%] GUILEC   gnu/packages/direct-connect.go
[ 55%] GUILEC   gnu/packages/disk.go
[ 55%] GUILEC   gnu/packages/distributed.go
[ 56%] GUILEC   gnu/packages/display-managers.go
[ 56%] GUILEC   gnu/packages/django.go
[ 56%] GUILEC   gnu/packages/djvu.go
[ 56%] GUILEC   gnu/packages/dlang.go
[ 56%] GUILEC   gnu/packages/dns.go
[ 56%] GUILEC   gnu/packages/docbook.go
[ 56%] GUILEC   gnu/packages/docker.go
[ 56%] GUILEC   gnu/packages/documentation.go
[ 56%] GUILEC   gnu/packages/dunst.go
[ 56%] GUILEC   gnu/packages/dvtm.go
[ 56%] GUILEC   gnu/packages/easyrpg.go
[ 56%] GUILEC   gnu/packages/ebook.go
[ 56%] GUILEC   gnu/packages/ed.go
[ 56%] GUILEC   gnu/packages/education.go
[ 56%] GUILEC   gnu/packages/efi.go
[ 56%] GUILEC   gnu/packages/electronics.go
[ 56%] GUILEC   gnu/packages/elf.go
[ 56%] GUILEC   gnu/packages/elixir.go
[ 56%] GUILEC   gnu/packages/elm.go
[ 57%] GUILEC   gnu/packages/embedded.go
[ 57%] GUILEC   gnu/packages/emacs.go
[ 57%] GUILEC   gnu/packages/emacs-xyz.go
[ 57%] GUILEC   gnu/packages/emulators.go
[ 57%] GUILEC   gnu/packages/enchant.go
[ 57%] GUILEC   gnu/packages/engineering.go
[ 57%] GUILEC   gnu/packages/enlightenment.go
[ 57%] GUILEC   gnu/packages/entr.go
[ 57%] GUILEC   gnu/packages/erlang.go
[ 57%] GUILEC   gnu/packages/esolangs.go
[ 57%] GUILEC   gnu/packages/fabric-management.go
[ 57%] GUILEC   gnu/packages/fcitx.go
[ 57%] GUILEC   gnu/packages/fcitx5.go
[ 57%] GUILEC   gnu/packages/figlet.go
[ 57%] GUILEC   gnu/packages/file.go
[ 57%] GUILEC   gnu/packages/file-systems.go
[ 57%] GUILEC   gnu/packages/finance.go
[ 57%] GUILEC   gnu/packages/firmware.go
[ 57%] GUILEC   gnu/packages/flashing-tools.go
[ 58%] GUILEC   gnu/packages/flex.go
[ 58%] GUILEC   gnu/packages/fltk.go
[ 58%] GUILEC   gnu/packages/fonts.go
[ 58%] GUILEC   gnu/packages/fontutils.go
[ 58%] GUILEC   gnu/packages/fpga.go
[ 58%] GUILEC   gnu/packages/forth.go
[ 58%] GUILEC   gnu/packages/freedesktop.go
[ 58%] GUILEC   gnu/packages/freeipmi.go
[ 58%] GUILEC   gnu/packages/ftp.go
[ 58%] GUILEC   gnu/packages/fribidi.go
[ 58%] GUILEC   gnu/packages/fvwm.go
[ 58%] GUILEC   gnu/packages/game-development.go
[ 58%] GUILEC   gnu/packages/games.go
[ 58%] GUILEC   gnu/packages/gawk.go
[ 58%] GUILEC   gnu/packages/gcal.go
[ 58%] GUILEC   gnu/packages/gcc.go
[ 58%] GUILEC   gnu/packages/gd.go
[ 58%] GUILEC   gnu/packages/gdb.go
[ 58%] GUILEC   gnu/packages/genealogy.go
[ 59%] GUILEC   gnu/packages/genimage.go
[ 59%] GUILEC   gnu/packages/geo.go
[ 59%] GUILEC   gnu/packages/gettext.go
[ 59%] GUILEC   gnu/packages/ghostscript.go
[ 59%] GUILEC   gnu/packages/gimp.go
[ 59%] GUILEC   gnu/packages/gkrellm.go
[ 59%] GUILEC   gnu/packages/gl.go
[ 59%] GUILEC   gnu/packages/glib.go
[ 59%] GUILEC   gnu/packages/gnome.go
[ 59%] GUILEC   gnu/packages/gnome-xyz.go
[ 59%] GUILEC   gnu/packages/gnu-doc.go
[ 59%] GUILEC   gnu/packages/gnucash.go
[ 59%] GUILEC   gnu/packages/gnunet.go
[ 59%] GUILEC   gnu/packages/gnupg.go
[ 59%] GUILEC   gnu/packages/gnustep.go
[ 59%] GUILEC   gnu/packages/gnuzilla.go
[ 59%] GUILEC   gnu/packages/gnu-pw-mgr.go
[ 59%] GUILEC   gnu/packages/gobby.go
[ 60%] GUILEC   gnu/packages/golang.go
[ 60%] GUILEC   gnu/packages/gperf.go
[ 60%] GUILEC   gnu/packages/gpodder.go
[ 60%] GUILEC   gnu/packages/gps.go
[ 60%] GUILEC   gnu/packages/graph.go
[ 60%] GUILEC   gnu/packages/graphics.go
[ 60%] GUILEC   gnu/packages/graphviz.go
[ 60%] GUILEC   gnu/packages/groff.go
[ 60%] GUILEC   gnu/packages/groovy.go
[ 60%] GUILEC   gnu/packages/gsasl.go
[ 60%] GUILEC   gnu/packages/gstreamer.go
[ 60%] GUILEC   gnu/packages/gtk.go
[ 60%] GUILEC   gnu/packages/guile.go
[ 60%] GUILEC   gnu/packages/guile-wm.go
[ 60%] GUILEC   gnu/packages/guile-xyz.go
[ 60%] GUILEC   gnu/packages/gv.go
[ 60%] GUILEC   gnu/packages/gxmessage.go
[ 60%] GUILEC   gnu/packages/hardware.go
[ 60%] GUILEC   gnu/packages/haskell.go
[ 61%] GUILEC   gnu/packages/haskell-apps.go
[ 61%] GUILEC   gnu/packages/haskell-check.go
[ 61%] GUILEC   gnu/packages/haskell-crypto.go
[ 61%] GUILEC   gnu/packages/haskell-web.go
[ 61%] GUILEC   gnu/packages/haskell-xyz.go
[ 61%] GUILEC   gnu/packages/heads.go
[ 61%] GUILEC   gnu/packages/hexedit.go
[ 61%] GUILEC   gnu/packages/hugs.go
[ 61%] GUILEC   gnu/packages/hunspell.go
[ 61%] GUILEC   gnu/packages/hurd.go
[ 61%] GUILEC   gnu/packages/hyperledger.go
[ 61%] GUILEC   gnu/packages/i2p.go
[ 61%] GUILEC   gnu/packages/ibus.go
[ 61%] GUILEC   gnu/packages/icu4c.go
[ 61%] GUILEC   gnu/packages/idris.go
[ 61%] GUILEC   gnu/packages/idutils.go
[ 61%] GUILEC   gnu/packages/image.go
[ 61%] GUILEC   gnu/packages/image-processing.go
[ 61%] GUILEC   gnu/packages/image-viewers.go
[ 62%] GUILEC   gnu/packages/imagemagick.go
[ 62%] GUILEC   gnu/packages/inklingreader.go
[ 62%] GUILEC   gnu/packages/inkscape.go
[ 62%] GUILEC   gnu/packages/installers.go
[ 62%] GUILEC   gnu/packages/instrumentation.go
[ 62%] GUILEC   gnu/packages/ipfs.go
[ 62%] GUILEC   gnu/packages/irc.go
[ 62%] GUILEC   gnu/packages/irods.go
[ 62%] GUILEC   gnu/packages/iso-codes.go
[ 62%] GUILEC   gnu/packages/jami.go
[ 62%] GUILEC   gnu/packages/java.go
[ 62%] GUILEC   gnu/packages/java-compression.go
[ 62%] GUILEC   gnu/packages/java-graphics.go
[ 62%] GUILEC   gnu/packages/java-maths.go
[ 62%] GUILEC   gnu/packages/javascript.go
[ 62%] GUILEC   gnu/packages/jemalloc.go
[ 62%] GUILEC   gnu/packages/jrnl.go
[ 62%] GUILEC   gnu/packages/jose.go
[ 62%] GUILEC   gnu/packages/julia.go
[ 63%] GUILEC   gnu/packages/julia-jll.go
[ 63%] GUILEC   gnu/packages/julia-xyz.go
[ 63%] GUILEC   gnu/packages/jupyter.go
[ 63%] GUILEC   gnu/packages/kawa.go
[ 63%] GUILEC   gnu/packages/kde.go
[ 63%] GUILEC   gnu/packages/kde-frameworks.go
[ 63%] GUILEC   gnu/packages/kde-internet.go
[ 63%] GUILEC   gnu/packages/kde-multimedia.go
[ 63%] GUILEC   gnu/packages/kde-pim.go
[ 63%] GUILEC   gnu/packages/kde-plasma.go
[ 63%] GUILEC   gnu/packages/kde-systemtools.go
[ 63%] GUILEC   gnu/packages/kde-utils.go
[ 63%] GUILEC   gnu/packages/kerberos.go
[ 63%] GUILEC   gnu/packages/key-mon.go
[ 63%] GUILEC   gnu/packages/kodi.go
[ 63%] GUILEC   gnu/packages/language.go
[ 63%] GUILEC   gnu/packages/lean.go
[ 63%] GUILEC   gnu/packages/lego.go
[ 63%] GUILEC   gnu/packages/less.go
[ 64%] GUILEC   gnu/packages/lesstif.go
[ 64%] GUILEC   gnu/packages/libbsd.go
[ 64%] GUILEC   gnu/packages/libcanberra.go
[ 64%] GUILEC   gnu/packages/libdaemon.go
[ 64%] GUILEC   gnu/packages/libedit.go
[ 64%] GUILEC   gnu/packages/libevent.go
[ 64%] GUILEC   gnu/packages/libffcall.go
[ 64%] GUILEC   gnu/packages/libffi.go
[ 64%] GUILEC   gnu/packages/libftdi.go
[ 64%] GUILEC   gnu/packages/license.go
[ 64%] GUILEC   gnu/packages/calendar.go
[ 64%] GUILEC   gnu/packages/libidn.go
[ 64%] GUILEC   gnu/packages/libphidget.go
[ 64%] GUILEC   gnu/packages/libreoffice.go
[ 64%] GUILEC   gnu/packages/libsigsegv.go
[ 64%] GUILEC   gnu/packages/libunistring.go
[ 64%] GUILEC   gnu/packages/libusb.go
[ 64%] GUILEC   gnu/packages/libunwind.go
[ 64%] GUILEC   gnu/packages/lighting.go
[ 65%] GUILEC   gnu/packages/linphone.go
[ 65%] GUILEC   gnu/packages/linux.go
[ 65%] GUILEC   gnu/packages/lirc.go
[ 65%] GUILEC   gnu/packages/lisp.go
[ 65%] GUILEC   gnu/packages/lisp-check.go
[ 65%] GUILEC   gnu/packages/lisp-xyz.go
[ 65%] GUILEC   gnu/packages/llvm.go
[ 65%] GUILEC   gnu/packages/lout.go
[ 65%] GUILEC   gnu/packages/logging.go
[ 65%] GUILEC   gnu/packages/logo.go
[ 65%] GUILEC   gnu/packages/loko.go
[ 65%] GUILEC   gnu/packages/lsof.go
[ 65%] GUILEC   gnu/packages/lua.go
[ 65%] GUILEC   gnu/packages/lxde.go
[ 65%] GUILEC   gnu/packages/lxqt.go
[ 65%] GUILEC   gnu/packages/m4.go
[ 65%] GUILEC   gnu/packages/machine-learning.go
[ 65%] GUILEC   gnu/packages/magic-wormhole.go
[ 65%] GUILEC   gnu/packages/man.go
[ 66%] GUILEC   gnu/packages/mastodon.go
[ 66%] GUILEC   gnu/packages/mail.go
[ 66%] GUILEC   gnu/packages/make-bootstrap.go
[ 66%] GUILEC   gnu/packages/markup.go
[ 66%] GUILEC   gnu/packages/marst.go
[ 66%] GUILEC   gnu/packages/mate.go
[ 66%] GUILEC   gnu/packages/maths.go
[ 66%] GUILEC   gnu/packages/matrix.go
[ 66%] GUILEC   gnu/packages/maven.go
[ 66%] GUILEC   gnu/packages/maven-parent-pom.go
[ 66%] GUILEC   gnu/packages/mc.go
[ 66%] GUILEC   gnu/packages/mcrypt.go
[ 66%] GUILEC   gnu/packages/medical.go
[ 66%] GUILEC   gnu/packages/mercury.go
[ 66%] GUILEC   gnu/packages/mes.go
[ 66%] GUILEC   gnu/packages/messaging.go
[ 66%] GUILEC   gnu/packages/minetest.go
[ 66%] GUILEC   gnu/packages/mingw.go
[ 67%] GUILEC   gnu/packages/microcom.go
[ 67%] GUILEC   gnu/packages/moe.go
[ 67%] GUILEC   gnu/packages/motti.go
[ 67%] GUILEC   gnu/packages/monitoring.go
[ 67%] GUILEC   gnu/packages/mono.go
[ 67%] GUILEC   gnu/packages/moreutils.go
[ 67%] GUILEC   gnu/packages/mpd.go
[ 67%] GUILEC   gnu/packages/mp3.go
[ 67%] GUILEC   gnu/packages/mpi.go
[ 67%] GUILEC   gnu/packages/multiprecision.go
[ 67%] GUILEC   gnu/packages/music.go
[ 67%] GUILEC   gnu/packages/musl.go
[ 67%] GUILEC   gnu/packages/mtools.go
[ 67%] GUILEC   gnu/packages/nano.go
[ 67%] GUILEC   gnu/packages/ncdu.go
[ 67%] GUILEC   gnu/packages/ncurses.go
[ 67%] GUILEC   gnu/packages/netpbm.go
[ 67%] GUILEC   gnu/packages/nettle.go
[ 67%] GUILEC   gnu/packages/networking.go
[ 68%] GUILEC   gnu/packages/nfs.go
[ 68%] GUILEC   gnu/packages/nickle.go
[ 68%] GUILEC   gnu/packages/nicotine.go
[ 68%] GUILEC   gnu/packages/nim.go
[ 68%] GUILEC   gnu/packages/ninja.go
[ 68%] GUILEC   gnu/packages/node.go
[ 68%] GUILEC   gnu/packages/node-xyz.go
[ 68%] GUILEC   gnu/packages/noweb.go
[ 68%] GUILEC   gnu/packages/nss.go
[ 68%] GUILEC   gnu/packages/ntp.go
[ 68%] GUILEC   gnu/packages/nutrition.go
[ 68%] GUILEC   gnu/packages/nvi.go
[ 68%] GUILEC   gnu/packages/ocaml.go
[ 68%] GUILEC   gnu/packages/ocr.go
[ 68%] GUILEC   gnu/packages/openkinect.go
[ 68%] GUILEC   gnu/packages/onc-rpc.go
[ 68%] GUILEC   gnu/packages/opencl.go
[ 68%] GUILEC   gnu/packages/openbox.go
[ 68%] GUILEC   gnu/packages/opencog.go
[ 69%] GUILEC   gnu/packages/openldap.go
[ 69%] GUILEC   gnu/packages/openpgp.go
[ 69%] GUILEC   gnu/packages/openstack.go
[ 69%] GUILEC   gnu/packages/orange.go
[ 69%] GUILEC   gnu/packages/orpheus.go
[ 69%] GUILEC   gnu/packages/ots.go
[ 69%] GUILEC   gnu/packages/package-management.go
[ 69%] GUILEC   gnu/packages/pantheon.go
[ 69%] GUILEC   gnu/packages/parallel.go
[ 69%] GUILEC   gnu/packages/pascal.go
[ 69%] GUILEC   gnu/packages/password-utils.go
[ 69%] GUILEC   gnu/packages/patool.go
[ 69%] GUILEC   gnu/packages/patchutils.go
[ 69%] GUILEC   gnu/packages/pciutils.go
[ 69%] GUILEC   gnu/packages/pcre.go
[ 69%] GUILEC   gnu/packages/pdf.go
[ 69%] GUILEC   gnu/packages/pem.go
[ 69%] GUILEC   gnu/packages/pep.go
[ 69%] GUILEC   gnu/packages/perl.go
[ 70%] GUILEC   gnu/packages/perl-check.go
[ 70%] GUILEC   gnu/packages/perl-compression.go
[ 70%] GUILEC   gnu/packages/perl-maths.go
[ 70%] GUILEC   gnu/packages/perl-web.go
[ 70%] GUILEC   gnu/packages/perl6.go
[ 70%] GUILEC   gnu/packages/photo.go
[ 70%] GUILEC   gnu/packages/phabricator.go
[ 70%] GUILEC   gnu/packages/php.go
[ 70%] GUILEC   gnu/packages/piet.go
[ 70%] GUILEC   gnu/packages/pkg-config.go
[ 70%] GUILEC   gnu/packages/plan9.go
[ 70%] GUILEC   gnu/packages/plotutils.go
[ 70%] GUILEC   gnu/packages/poedit.go
[ 70%] GUILEC   gnu/packages/polkit.go
[ 70%] GUILEC   gnu/packages/popt.go
[ 70%] GUILEC   gnu/packages/printers.go
[ 70%] GUILEC   gnu/packages/profiling.go
[ 70%] GUILEC   gnu/packages/prolog.go
[ 70%] GUILEC   gnu/packages/pth.go
[ 71%] GUILEC   gnu/packages/pulseaudio.go
[ 71%] GUILEC   gnu/packages/pumpio.go
[ 71%] GUILEC   gnu/packages/presentation.go
[ 71%] GUILEC   gnu/packages/pretty-print.go
[ 71%] GUILEC   gnu/packages/protobuf.go
[ 71%] GUILEC   gnu/packages/pure.go
[ 71%] GUILEC   gnu/packages/purescript.go
[ 71%] GUILEC   gnu/packages/pv.go
[ 71%] GUILEC   gnu/packages/python.go
[ 71%] GUILEC   gnu/packages/python-build.go
[ 71%] GUILEC   gnu/packages/python-check.go
[ 71%] GUILEC   gnu/packages/python-compression.go
[ 71%] GUILEC   gnu/packages/python-crypto.go
[ 71%] GUILEC   gnu/packages/python-science.go
[ 71%] GUILEC   gnu/packages/python-web.go
[ 71%] GUILEC   gnu/packages/python-xyz.go
[ 71%] GUILEC   gnu/packages/toys.go
[ 71%] GUILEC   gnu/packages/tryton.go
[ 71%] GUILEC   gnu/packages/qt.go
[ 72%] GUILEC   gnu/packages/racket.go
[ 72%] GUILEC   gnu/packages/radio.go
[ 72%] GUILEC   gnu/packages/ragel.go
[ 72%] GUILEC   gnu/packages/rails.go
[ 72%] GUILEC   gnu/packages/raspberry-pi.go
[ 72%] GUILEC   gnu/packages/ratpoison.go
[ 72%] GUILEC   gnu/packages/rcm.go
[ 72%] GUILEC   gnu/packages/rdesktop.go
[ 72%] GUILEC   gnu/packages/rdf.go
[ 72%] GUILEC   gnu/packages/re2c.go
[ 72%] GUILEC   gnu/packages/readline.go
[ 72%] GUILEC   gnu/packages/rednotebook.go
[ 72%] GUILEC   gnu/packages/regex.go
[ 72%] GUILEC   gnu/packages/robotics.go
[ 72%] GUILEC   gnu/packages/rocm.go
[ 72%] GUILEC   gnu/packages/rpc.go
[ 72%] GUILEC   gnu/packages/rpm.go
[ 72%] GUILEC   gnu/packages/rrdtool.go
[ 73%] GUILEC   gnu/packages/rsync.go
[ 73%] GUILEC   gnu/packages/ruby.go
[ 73%] GUILEC   gnu/packages/rush.go
[ 73%] GUILEC   gnu/packages/rust.go
[ 73%] GUILEC   gnu/packages/rust-apps.go
[ 73%] GUILEC   gnu/packages/samba.go
[ 73%] GUILEC   gnu/packages/sagemath.go
[ 73%] GUILEC   gnu/packages/sawfish.go
[ 73%] GUILEC   gnu/packages/scanner.go
[ 73%] GUILEC   gnu/packages/scheme.go
[ 73%] GUILEC   gnu/packages/spreadsheet.go
[ 73%] GUILEC   gnu/packages/screen.go
[ 73%] GUILEC   gnu/packages/scribus.go
[ 73%] GUILEC   gnu/packages/scsi.go
[ 73%] GUILEC   gnu/packages/sdl.go
[ 73%] GUILEC   gnu/packages/search.go
[ 73%] GUILEC   gnu/packages/security-token.go
[ 73%] GUILEC   gnu/packages/selinux.go
[ 73%] GUILEC   gnu/packages/sequoia.go
[ 74%] GUILEC   gnu/packages/serialization.go
[ 74%] GUILEC   gnu/packages/serveez.go
[ 74%] GUILEC   gnu/packages/shells.go
[ 74%] GUILEC   gnu/packages/shellutils.go
[ 74%] GUILEC   gnu/packages/simh.go
[ 74%] GUILEC   gnu/packages/simulation.go
[ 74%] GUILEC   gnu/packages/skarnet.go
[ 74%] GUILEC   gnu/packages/skribilo.go
[ 74%] GUILEC   gnu/packages/slang.go
[ 74%] GUILEC   gnu/packages/smalltalk.go
[ 74%] GUILEC   gnu/packages/sml.go
[ 74%] GUILEC   gnu/packages/solidity.go
[ 74%] GUILEC   gnu/packages/speech.go
[ 74%] GUILEC   gnu/packages/sphinx.go
[ 74%] GUILEC   gnu/packages/spice.go
[ 74%] GUILEC   gnu/packages/sqlite.go
[ 74%] GUILEC   gnu/packages/squirrel.go
[ 74%] GUILEC   gnu/packages/ssh.go
[ 74%] GUILEC   gnu/packages/sssd.go
[ 75%] GUILEC   gnu/packages/stalonetray.go
[ 75%] GUILEC   gnu/packages/statistics.go
[ 75%] GUILEC   gnu/packages/stb.go
[ 75%] GUILEC   gnu/packages/stenography.go
[ 75%] GUILEC   gnu/packages/storage.go
[ 75%] GUILEC   gnu/packages/suckless.go
[ 75%] GUILEC   gnu/packages/swig.go
[ 75%] GUILEC   gnu/packages/sync.go
[ 75%] GUILEC   gnu/packages/syncthing.go
[ 75%] GUILEC   gnu/packages/synergy.go
[ 75%] GUILEC   gnu/packages/syndication.go
[ 75%] GUILEC   gnu/packages/task-management.go
[ 75%] GUILEC   gnu/packages/task-runners.go
[ 75%] GUILEC   gnu/packages/tbb.go
[ 75%] GUILEC   gnu/packages/tcl.go
[ 75%] GUILEC   gnu/packages/telegram.go
[ 75%] GUILEC   gnu/packages/telephony.go
[ 75%] GUILEC   gnu/packages/terminals.go
[ 75%] GUILEC   gnu/packages/terraform.go
[ 76%] GUILEC   gnu/packages/texinfo.go
[ 76%] GUILEC   gnu/packages/tex.go
[ 76%] GUILEC   gnu/packages/textutils.go
[ 76%] GUILEC   gnu/packages/text-editors.go
[ 76%] GUILEC   gnu/packages/time.go
[ 76%] GUILEC   gnu/packages/tls.go
[ 76%] GUILEC   gnu/packages/tmux.go
[ 76%] GUILEC   gnu/packages/tor.go
[ 76%] GUILEC   gnu/packages/tv.go
[ 76%] GUILEC   gnu/packages/uglifyjs.go
[ 76%] GUILEC   gnu/packages/uml.go
[ 76%] GUILEC   gnu/packages/unicode.go
[ 76%] GUILEC   gnu/packages/unrtf.go
[ 76%] GUILEC   gnu/packages/upnp.go
[ 76%] GUILEC   gnu/packages/usb-modeswitch.go
[ 76%] GUILEC   gnu/packages/uucp.go
[ 76%] GUILEC   gnu/packages/valgrind.go
[ 76%] GUILEC   gnu/packages/version-control.go
[ 76%] GUILEC   gnu/packages/video.go
[ 77%] GUILEC   gnu/packages/vim.go
[ 77%] GUILEC   gnu/packages/virtualization.go
[ 77%] GUILEC   gnu/packages/vlang.go
[ 77%] GUILEC   gnu/packages/vnc.go
[ 77%] GUILEC   gnu/packages/vpn.go
[ 77%] GUILEC   gnu/packages/vulkan.go
[ 77%] GUILEC   gnu/packages/w3m.go
[ 77%] GUILEC   gnu/packages/wdiff.go
[ 77%] GUILEC   gnu/packages/web.go
[ 77%] GUILEC   gnu/packages/web-browsers.go
[ 77%] GUILEC   gnu/packages/webkit.go
[ 77%] GUILEC   gnu/packages/wget.go
[ 77%] GUILEC   gnu/packages/wicd.go
[ 77%] GUILEC   gnu/packages/wine.go
[ 77%] GUILEC   gnu/packages/wireservice.go
[ 77%] GUILEC   gnu/packages/wm.go
[ 77%] GUILEC   gnu/packages/wordnet.go
[ 77%] GUILEC   gnu/packages/wv.go
[ 77%] GUILEC   gnu/packages/wxwidgets.go
[ 78%] GUILEC   gnu/packages/xfig.go
[ 78%] GUILEC   gnu/packages/xiph.go
[ 78%] GUILEC   gnu/packages/xml.go
[ 78%] GUILEC   gnu/packages/xnee.go
[ 78%] GUILEC   gnu/packages/xdisorg.go
[ 78%] GUILEC   gnu/packages/xorg.go
[ 78%] GUILEC   gnu/packages/xfce.go
[ 78%] GUILEC   gnu/packages/zig.go
[ 78%] GUILEC   gnu/packages/zile.go
[ 78%] GUILEC   gnu/packages/zwave.go
gnu/packages/base.scm:1170:9: warning: non-literal format string
WARNING: (gnu packages linux): `build' imported from both (gnu packages build-tools) and (guix store)
Compiling Scheme modules...
[ 78%] LOAD     gnu.scm
[ 78%] LOAD     gnu/artwork.scm
[ 78%] LOAD     gnu/bootloader.scm
[ 78%] LOAD     gnu/bootloader/grub.scm
[ 78%] LOAD     gnu/bootloader/extlinux.scm
[ 78%] LOAD     gnu/bootloader/u-boot.scm
[ 78%] LOAD     gnu/bootloader/depthcharge.scm
[ 78%] LOAD     gnu/ci.scm
[ 79%] LOAD     gnu/home.scm
[ 79%] LOAD     gnu/home/services.scm
[ 79%] LOAD     gnu/home/services/symlink-manager.scm
[ 79%] LOAD     gnu/home/services/fontutils.scm
[ 79%] LOAD     gnu/home/services/shells.scm
[ 79%] LOAD     gnu/home/services/shepherd.scm
[ 79%] LOAD     gnu/home/services/mcron.scm
[ 79%] LOAD     gnu/home/services/utils.scm
[ 79%] LOAD     gnu/home/services/xdg.scm
[ 79%] LOAD     gnu/image.scm
[ 79%] LOAD     gnu/platform.scm
[ 79%] LOAD     gnu/packages.scm
[ 79%] LOAD     gnu/platforms/arm.scm
[ 79%] LOAD     gnu/platforms/hurd.scm
[ 79%] LOAD     gnu/services.scm
[ 79%] LOAD     gnu/services/admin.scm
[ 79%] LOAD     gnu/services/audio.scm
[ 79%] LOAD     gnu/services/auditd.scm
[ 79%] LOAD     gnu/services/avahi.scm
[ 80%] LOAD     gnu/services/base.scm
[ 80%] LOAD     gnu/services/certbot.scm
[ 80%] LOAD     gnu/services/cgit.scm
[ 80%] LOAD     gnu/services/ci.scm
[ 80%] LOAD     gnu/services/configuration.scm
[ 80%] LOAD     gnu/services/cuirass.scm
[ 80%] LOAD     gnu/services/cups.scm
[ 80%] LOAD     gnu/services/databases.scm
[ 80%] LOAD     gnu/services/dbus.scm
[ 80%] LOAD     gnu/services/desktop.scm
[ 80%] LOAD     gnu/services/dict.scm
[ 80%] LOAD     gnu/services/dns.scm
[ 80%] LOAD     gnu/services/docker.scm
[ 80%] LOAD     gnu/services/authentication.scm
[ 80%] LOAD     gnu/services/file-sharing.scm
[ 80%] LOAD     gnu/services/games.scm
[ 80%] LOAD     gnu/services/ganeti.scm
[ 80%] LOAD     gnu/services/getmail.scm
[ 80%] LOAD     gnu/services/guix.scm
[ 81%] LOAD     gnu/services/hurd.scm
[ 81%] LOAD     gnu/services/kerberos.scm
[ 81%] LOAD     gnu/services/linux.scm
[ 81%] LOAD     gnu/services/lirc.scm
[ 81%] LOAD     gnu/services/virtualization.scm
[ 81%] LOAD     gnu/services/mail.scm
[ 81%] LOAD     gnu/services/mcron.scm
[ 81%] LOAD     gnu/services/messaging.scm
[ 81%] LOAD     gnu/services/monitoring.scm
[ 81%] LOAD     gnu/services/networking.scm
[ 81%] LOAD     gnu/services/nix.scm
[ 81%] LOAD     gnu/services/nfs.scm
[ 81%] LOAD     gnu/services/pam-mount.scm
[ 81%] LOAD     gnu/services/science.scm
[ 81%] LOAD     gnu/services/security-token.scm
[ 81%] LOAD     gnu/services/shepherd.scm
[ 81%] LOAD     gnu/services/sound.scm
[ 81%] LOAD     gnu/services/herd.scm
[ 81%] LOAD     gnu/services/pm.scm
[ 82%] LOAD     gnu/services/rsync.scm
[ 82%] LOAD     gnu/services/sddm.scm
[ 82%] LOAD     gnu/services/spice.scm
[ 82%] LOAD     gnu/services/ssh.scm
[ 82%] LOAD     gnu/services/syncthing.scm
[ 82%] LOAD     gnu/services/sysctl.scm
[ 82%] LOAD     gnu/services/telephony.scm
[ 82%] LOAD     gnu/services/version-control.scm
[ 82%] LOAD     gnu/services/vpn.scm
[ 82%] LOAD     gnu/services/web.scm
[ 82%] LOAD     gnu/services/xorg.scm
[ 82%] LOAD     gnu/system.scm
[ 82%] LOAD     gnu/system/accounts.scm
[ 82%] LOAD     gnu/system/file-systems.scm
[ 82%] LOAD     gnu/system/hurd.scm
[ 82%] LOAD     gnu/system/image.scm
[ 82%] LOAD     gnu/system/install.scm
[ 82%] LOAD     gnu/system/keyboard.scm
[ 82%] LOAD     gnu/system/linux-container.scm
[ 83%] LOAD     gnu/system/linux-initrd.scm
[ 83%] LOAD     gnu/system/locale.scm
[ 83%] LOAD     gnu/system/mapped-devices.scm
[ 83%] LOAD     gnu/system/nss.scm
[ 83%] LOAD     gnu/system/pam.scm
[ 83%] LOAD     gnu/system/setuid.scm
[ 83%] LOAD     gnu/system/shadow.scm
[ 83%] LOAD     gnu/system/uuid.scm
[ 83%] LOAD     gnu/system/vm.scm
[ 83%] LOAD     gnu/system/images/hurd.scm
[ 83%] LOAD     gnu/system/images/novena.scm
[ 83%] LOAD     gnu/system/images/pine64.scm
[ 83%] LOAD     gnu/system/images/pinebook-pro.scm
[ 83%] LOAD     gnu/system/images/rock64.scm
[ 83%] LOAD     gnu/machine.scm
[ 83%] LOAD     gnu/build/accounts.scm
[ 83%] LOAD     gnu/build/activation.scm
[ 83%] LOAD     gnu/build/bootloader.scm
[ 83%] LOAD     gnu/build/chromium-extension.scm
[ 84%] LOAD     gnu/build/cross-toolchain.scm
[ 84%] LOAD     gnu/build/image.scm
[ 84%] LOAD     gnu/build/jami-service.scm
[ 84%] LOAD     gnu/build/file-systems.scm
[ 84%] LOAD     gnu/build/hurd-boot.scm
[ 84%] LOAD     gnu/build/install.scm
[ 84%] LOAD     gnu/build/linux-boot.scm
[ 84%] LOAD     gnu/build/linux-container.scm
[ 84%] LOAD     gnu/build/linux-initrd.scm
[ 84%] LOAD     gnu/build/linux-modules.scm
[ 84%] LOAD     gnu/build/marionette.scm
[ 84%] LOAD     gnu/build/secret-service.scm
[ 84%] LOAD     gnu/build/vm.scm
[ 84%] LOAD     gnu/tests.scm
[ 84%] LOAD     gnu/tests/audio.scm
[ 84%] LOAD     gnu/tests/base.scm
[ 84%] LOAD     gnu/tests/ci.scm
[ 84%] LOAD     gnu/tests/cups.scm
[ 85%] LOAD     gnu/tests/databases.scm
[ 85%] LOAD     gnu/tests/desktop.scm
[ 85%] LOAD     gnu/tests/dict.scm
[ 85%] LOAD     gnu/tests/docker.scm
[ 85%] LOAD     gnu/tests/file-sharing.scm
[ 85%] LOAD     gnu/tests/ganeti.scm
[ 85%] LOAD     gnu/tests/guix.scm
[ 85%] LOAD     gnu/tests/monitoring.scm
[ 85%] LOAD     gnu/tests/nfs.scm
[ 85%] LOAD     gnu/tests/install.scm
[ 85%] LOAD     gnu/tests/ldap.scm
[ 85%] LOAD     gnu/tests/linux-modules.scm
[ 85%] LOAD     gnu/tests/mail.scm
[ 85%] LOAD     gnu/tests/messaging.scm
[ 85%] LOAD     gnu/tests/networking.scm
[ 85%] LOAD     gnu/tests/package-management.scm
[ 85%] LOAD     gnu/tests/reconfigure.scm
[ 85%] LOAD     gnu/tests/rsync.scm
[ 85%] LOAD     gnu/tests/security-token.scm
[ 86%] LOAD     gnu/tests/singularity.scm
[ 86%] LOAD     gnu/tests/ssh.scm
[ 86%] LOAD     gnu/tests/telephony.scm
[ 86%] LOAD     gnu/tests/version-control.scm
[ 86%] LOAD     gnu/tests/virtualization.scm
[ 86%] LOAD     gnu/tests/web.scm
[ 86%] LOAD     gnu/machine/digital-ocean.scm
[ 86%] LOAD     gnu/machine/ssh.scm
[ 86%] GUILEC   gnu.go
[ 86%] GUILEC   gnu/artwork.go
[ 86%] GUILEC   gnu/bootloader.go
[ 86%] GUILEC   gnu/bootloader/grub.go
[ 86%] GUILEC   gnu/bootloader/extlinux.go
[ 86%] GUILEC   gnu/bootloader/u-boot.go
[ 86%] GUILEC   gnu/bootloader/depthcharge.go
[ 86%] GUILEC   gnu/ci.go
[ 86%] GUILEC   gnu/home.go
[ 86%] GUILEC   gnu/home/services.go
[ 86%] GUILEC   gnu/home/services/symlink-manager.go
[ 87%] GUILEC   gnu/home/services/fontutils.go
[ 87%] GUILEC   gnu/home/services/shells.go
[ 87%] GUILEC   gnu/home/services/shepherd.go
[ 87%] GUILEC   gnu/home/services/mcron.go
[ 87%] GUILEC   gnu/home/services/utils.go
[ 87%] GUILEC   gnu/home/services/xdg.go
[ 87%] GUILEC   gnu/image.go
[ 87%] GUILEC   gnu/platform.go
[ 87%] GUILEC   gnu/packages.go
[ 87%] GUILEC   gnu/platforms/arm.go
[ 87%] GUILEC   gnu/platforms/hurd.go
[ 87%] GUILEC   gnu/services.go
[ 87%] GUILEC   gnu/services/admin.go
[ 87%] GUILEC   gnu/services/audio.go
[ 87%] GUILEC   gnu/services/auditd.go
[ 87%] GUILEC   gnu/services/avahi.go
[ 87%] GUILEC   gnu/services/base.go
[ 87%] GUILEC   gnu/services/certbot.go
[ 87%] GUILEC   gnu/services/cgit.go
[ 88%] GUILEC   gnu/services/ci.go
[ 88%] GUILEC   gnu/services/configuration.go
[ 88%] GUILEC   gnu/services/cuirass.go
[ 88%] GUILEC   gnu/services/cups.go
[ 88%] GUILEC   gnu/services/databases.go
[ 88%] GUILEC   gnu/services/dbus.go
[ 88%] GUILEC   gnu/services/desktop.go
[ 88%] GUILEC   gnu/services/dict.go
[ 88%] GUILEC   gnu/services/dns.go
[ 88%] GUILEC   gnu/services/docker.go
[ 88%] GUILEC   gnu/services/authentication.go
[ 88%] GUILEC   gnu/services/file-sharing.go
[ 88%] GUILEC   gnu/services/games.go
[ 88%] GUILEC   gnu/services/ganeti.go
[ 88%] GUILEC   gnu/services/getmail.go
[ 88%] GUILEC   gnu/services/guix.go
[ 88%] GUILEC   gnu/services/hurd.go
[ 88%] GUILEC   gnu/services/kerberos.go
[ 88%] GUILEC   gnu/services/linux.go
[ 89%] GUILEC   gnu/services/lirc.go
[ 89%] GUILEC   gnu/services/virtualization.go
[ 89%] GUILEC   gnu/services/mail.go
[ 89%] GUILEC   gnu/services/mcron.go
[ 89%] GUILEC   gnu/services/messaging.go
[ 89%] GUILEC   gnu/services/monitoring.go
[ 89%] GUILEC   gnu/services/networking.go
[ 89%] GUILEC   gnu/services/nix.go
[ 89%] GUILEC   gnu/services/nfs.go
[ 89%] GUILEC   gnu/services/pam-mount.go
[ 89%] GUILEC   gnu/services/science.go
[ 89%] GUILEC   gnu/services/security-token.go
[ 89%] GUILEC   gnu/services/shepherd.go
[ 89%] GUILEC   gnu/services/sound.go
[ 89%] GUILEC   gnu/services/herd.go
[ 89%] GUILEC   gnu/services/pm.go
[ 89%] GUILEC   gnu/services/rsync.go
[ 89%] GUILEC   gnu/services/sddm.go
[ 89%] GUILEC   gnu/services/spice.go
[ 90%] GUILEC   gnu/services/ssh.go
[ 90%] GUILEC   gnu/services/syncthing.go
[ 90%] GUILEC   gnu/services/sysctl.go
[ 90%] GUILEC   gnu/services/telephony.go
[ 90%] GUILEC   gnu/services/version-control.go
[ 90%] GUILEC   gnu/services/vpn.go
[ 90%] GUILEC   gnu/services/web.go
[ 90%] GUILEC   gnu/services/xorg.go
[ 90%] GUILEC   gnu/system.go
[ 90%] GUILEC   gnu/system/accounts.go
[ 90%] GUILEC   gnu/system/file-systems.go
[ 90%] GUILEC   gnu/system/hurd.go
[ 90%] GUILEC   gnu/system/image.go
[ 90%] GUILEC   gnu/system/install.go
[ 90%] GUILEC   gnu/system/keyboard.go
[ 90%] GUILEC   gnu/system/linux-container.go
[ 90%] GUILEC   gnu/system/linux-initrd.go
[ 90%] GUILEC   gnu/system/locale.go
[ 90%] GUILEC   gnu/system/mapped-devices.go
[ 91%] GUILEC   gnu/system/nss.go
[ 91%] GUILEC   gnu/system/pam.go
[ 91%] GUILEC   gnu/system/setuid.go
[ 91%] GUILEC   gnu/system/shadow.go
[ 91%] GUILEC   gnu/system/uuid.go
[ 91%] GUILEC   gnu/system/vm.go
[ 91%] GUILEC   gnu/system/images/hurd.go
[ 91%] GUILEC   gnu/system/images/novena.go
[ 91%] GUILEC   gnu/system/images/pine64.go
[ 91%] GUILEC   gnu/system/images/pinebook-pro.go
[ 91%] GUILEC   gnu/system/images/rock64.go
[ 91%] GUILEC   gnu/machine.go
[ 91%] GUILEC   gnu/build/accounts.go
[ 91%] GUILEC   gnu/build/activation.go
[ 91%] GUILEC   gnu/build/bootloader.go
[ 91%] GUILEC   gnu/build/chromium-extension.go
[ 91%] GUILEC   gnu/build/cross-toolchain.go
[ 91%] GUILEC   gnu/build/image.go
[ 92%] GUILEC   gnu/build/jami-service.go
[ 92%] GUILEC   gnu/build/file-systems.go
[ 92%] GUILEC   gnu/build/hurd-boot.go
[ 92%] GUILEC   gnu/build/install.go
[ 92%] GUILEC   gnu/build/linux-boot.go
[ 92%] GUILEC   gnu/build/linux-container.go
[ 92%] GUILEC   gnu/build/linux-initrd.go
[ 92%] GUILEC   gnu/build/linux-modules.go
[ 92%] GUILEC   gnu/build/marionette.go
[ 92%] GUILEC   gnu/build/secret-service.go
[ 92%] GUILEC   gnu/build/vm.go
[ 92%] GUILEC   gnu/tests.go
[ 92%] GUILEC   gnu/tests/audio.go
[ 92%] GUILEC   gnu/tests/base.go
[ 92%] GUILEC   gnu/tests/ci.go
[ 92%] GUILEC   gnu/tests/cups.go
[ 92%] GUILEC   gnu/tests/databases.go
[ 92%] GUILEC   gnu/tests/desktop.go
[ 92%] GUILEC   gnu/tests/dict.go
[ 93%] GUILEC   gnu/tests/docker.go
[ 93%] GUILEC   gnu/tests/file-sharing.go
[ 93%] GUILEC   gnu/tests/ganeti.go
[ 93%] GUILEC   gnu/tests/guix.go
[ 93%] GUILEC   gnu/tests/monitoring.go
[ 93%] GUILEC   gnu/tests/nfs.go
[ 93%] GUILEC   gnu/tests/install.go
[ 93%] GUILEC   gnu/tests/ldap.go
[ 93%] GUILEC   gnu/tests/linux-modules.go
[ 93%] GUILEC   gnu/tests/mail.go
[ 93%] GUILEC   gnu/tests/messaging.go
[ 93%] GUILEC   gnu/tests/networking.go
[ 93%] GUILEC   gnu/tests/package-management.go
[ 93%] GUILEC   gnu/tests/reconfigure.go
[ 93%] GUILEC   gnu/tests/rsync.go
[ 93%] GUILEC   gnu/tests/security-token.go
[ 93%] GUILEC   gnu/tests/singularity.go
[ 93%] GUILEC   gnu/tests/ssh.go
[ 93%] GUILEC   gnu/tests/telephony.go
[ 94%] GUILEC   gnu/tests/version-control.go
[ 94%] GUILEC   gnu/tests/virtualization.go
[ 94%] GUILEC   gnu/tests/web.go
[ 94%] GUILEC   gnu/machine/digital-ocean.go
WARNING: (gnu services shepherd): imported module (gnu services) overrides core binding `delete'
WARNING: (gnu services getmail): imported module (gnu services) overrides core binding `delete'
WARNING: Use of `load' in declarative module (gnu system install).  Add #:declarative? #f to your define-module invocation.
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
gnu/system/vm.scm:480:9: warning: resolving './guix/store/schema.sql' relative to current directory
gnu/machine/digital-ocean.scm:303:21: warning: 'static-networking-service' is deprecated, use 'static-networking-service-type' instead
WARNING: (gnu services getmail): imported module (gnu services) overrides core binding `delete'
gnu/services/mail.scm:431:0: warning: shadows previous definition of `%namespace-configuration-location-procedure' at gnu/services/mail.scm:431:0
<unknown-location>: warning: shadows previous definition of `namespace-configuration-location' at <unknown-location>
gnu/services/messaging.scm:183:0: warning: shadows previous definition of `maybe-file-name?' at gnu/services/messaging.scm:177:0
gnu/services/messaging.scm:183:0: warning: shadows previous definition of `serialize-maybe-file-name' at gnu/services/messaging.scm:177:0
gnu/services/messaging.scm:195:0: warning: shadows previous definition of `maybe-file-object?' at gnu/services/messaging.scm:189:0
gnu/services/messaging.scm:195:0: warning: shadows previous definition of `serialize-maybe-file-object' at gnu/services/messaging.scm:189:0
WARNING: (gnu services shepherd): imported module (gnu services) overrides core binding `delete'
WARNING: Use of `load' in declarative module (gnu system install).  Add #:declarative? #f to your define-module invocation.
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
gnu/build/jami-service.scm:246:20: warning: possibly unbound variable `fork+exec-command'
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
;;; Failed to autoload fork+exec-command in (shepherd service):
;;; no code for module (shepherd service)
gnu/build/linux-modules.scm:353:14: warning: possibly unbound variable `load-linux-module/fd'
gnu/machine/digital-ocean.scm:303:21: warning: 'static-networking-service' is deprecated, use '[ 94%] GUILEC   gnu/machine/ssh.go
static-networking-service-type' instead
Compiling Scheme modules...
[ 94%] LOAD     guix/scripts/download.scm
[ 94%] LOAD     guix/scripts/perform-download.scm
[ 94%] LOAD     guix/scripts/build.scm
[ 94%] LOAD     guix/scripts/archive.scm
[ 94%] LOAD     guix/scripts/import.scm
[ 94%] LOAD     guix/scripts/package.scm
[ 94%] LOAD     guix/scripts/install.scm
[ 94%] LOAD     guix/scripts/remove.scm
[ 94%] LOAD     guix/scripts/upgrade.scm
[ 94%] LOAD     guix/scripts/search.scm
[ 94%] LOAD     guix/scripts/show.scm
[ 94%] LOAD     guix/scripts/gc.scm
[ 94%] LOAD     guix/scripts/hash.scm
[ 94%] LOAD     guix/scripts/pack.scm
[ 95%] LOAD     guix/scripts/pull.scm
[ 95%] LOAD     guix/scripts/processes.scm
[ 95%] LOAD     guix/scripts/substitute.scm
[ 95%] LOAD     guix/scripts/authenticate.scm
[ 95%] LOAD     guix/scripts/refresh.scm
[ 95%] LOAD     guix/scripts/repl.scm
[ 95%] LOAD     guix/scripts/describe.scm
[ 95%] LOAD     guix/scripts/style.scm
[ 95%] LOAD     guix/scripts/system.scm
[ 95%] LOAD     guix/scripts/system/search.scm
[ 95%] LOAD     guix/scripts/system/reconfigure.scm
[ 95%] LOAD     guix/scripts/home.scm
[ 95%] LOAD     guix/scripts/home/import.scm
[ 95%] LOAD     guix/scripts/lint.scm
[ 95%] LOAD     guix/scripts/challenge.scm
[ 95%] LOAD     guix/scripts/import/crate.scm
[ 95%] LOAD     guix/scripts/import/cran.scm
[ 95%] LOAD     guix/scripts/import/egg.scm
[ 95%] LOAD     guix/scripts/import/elpa.scm
[ 96%] LOAD     guix/scripts/import/gem.scm
[ 96%] LOAD     guix/scripts/import/gnu.scm
[ 96%] LOAD     guix/scripts/import/go.scm
[ 96%] LOAD     guix/scripts/import/hackage.scm
[ 96%] LOAD     guix/scripts/import/json.scm
[ 96%] LOAD     guix/scripts/import/minetest.scm
[ 96%] LOAD     guix/scripts/import/opam.scm
[ 96%] LOAD     guix/scripts/import/pypi.scm
[ 96%] LOAD     guix/scripts/import/stackage.scm
[ 96%] LOAD     guix/scripts/import/texlive.scm
[ 96%] LOAD     guix/scripts/environment.scm
[ 96%] LOAD     guix/scripts/shell.scm
[ 96%] LOAD     guix/scripts/publish.scm
[ 96%] LOAD     guix/scripts/edit.scm
[ 96%] LOAD     guix/scripts/size.scm
[ 96%] LOAD     guix/scripts/git.scm
[ 96%] LOAD     guix/scripts/git/authenticate.scm
[ 96%] LOAD     guix/scripts/graph.scm
[ 96%] LOAD     guix/scripts/weather.scm
[ 97%] LOAD     guix/scripts/container.scm
[ 97%] LOAD     guix/scripts/container/exec.scm
[ 97%] LOAD     guix/scripts/deploy.scm
[ 97%] LOAD     guix/scripts/time-machine.scm
[ 97%] LOAD     guix/scripts/copy.scm
[ 97%] LOAD     guix/scripts/discover.scm
[ 97%] LOAD     guix/scripts/offload.scm
[ 97%] GUILEC   guix/scripts/download.go
[ 97%] GUILEC   guix/scripts/perform-download.go
[ 97%] GUILEC   guix/scripts/build.go
[ 97%] GUILEC   guix/scripts/archive.go
[ 97%] GUILEC   guix/scripts/import.go
[ 97%] GUILEC   guix/scripts/package.go
[ 97%] GUILEC   guix/scripts/install.go
[ 97%] GUILEC   guix/scripts/remove.go
[ 97%] GUILEC   guix/scripts/upgrade.go
[ 97%] GUILEC   guix/scripts/search.go
[ 97%] GUILEC   guix/scripts/show.go
[ 98%] GUILEC   guix/scripts/gc.go
[ 98%] GUILEC   guix/scripts/hash.go
[ 98%] GUILEC   guix/scripts/pack.go
[ 98%] GUILEC   guix/scripts/pull.go
[ 98%] GUILEC   guix/scripts/processes.go
[ 98%] GUILEC   guix/scripts/substitute.go
[ 98%] GUILEC   guix/scripts/authenticate.go
[ 98%] GUILEC   guix/scripts/refresh.go
[ 98%] GUILEC   guix/scripts/repl.go
[ 98%] GUILEC   guix/scripts/describe.go
[ 98%] GUILEC   guix/scripts/style.go
[ 98%] GUILEC   guix/scripts/system.go
[ 98%] GUILEC   guix/scripts/system/search.go
[ 98%] GUILEC   guix/scripts/system/reconfigure.go
[ 98%] GUILEC   guix/scripts/home.go
[ 98%] GUILEC   guix/scripts/home/import.go
[ 98%] GUILEC   guix/scripts/lint.go
[ 98%] GUILEC   guix/scripts/challenge.go
[ 98%] GUILEC   guix/scripts/import/crate.go
[ 99%] GUILEC   guix/scripts/import/cran.go
[ 99%] GUILEC   guix/scripts/import/egg.go
[ 99%] GUILEC   guix/scripts/import/elpa.go
[ 99%] GUILEC   guix/scripts/import/gem.go
[ 99%] GUILEC   guix/scripts/import/gnu.go
[ 99%] GUILEC   guix/scripts/import/go.go
[ 99%] GUILEC   guix/scripts/import/hackage.go
[ 99%] GUILEC   guix/scripts/import/json.go
[ 99%] GUILEC   guix/scripts/import/minetest.go
[ 99%] GUILEC   guix/scripts/import/opam.go
[ 99%] GUILEC   guix/scripts/import/pypi.go
[ 99%] GUILEC   guix/scripts/import/stackage.go
[ 99%] GUILEC   guix/scripts/import/texlive.go
[ 99%] GUILEC   guix/scripts/environment.go
[ 99%] GUILEC   guix/scripts/shell.go
[ 99%] GUILEC   guix/scripts/publish.go
[ 99%] GUILEC   guix/scripts/edit.go
[ 99%] GUILEC   guix/scripts/size.go
[ 99%] GUILEC   guix/scripts/git.go
[100%] GUILEC   guix/scripts/git/authenticate.go
[100%] GUILEC   guix/scripts/graph.go
[100%] GUILEC   guix/scripts/weather.go
[100%] GUILEC   guix/scripts/container.go
[100%] GUILEC   guix/scripts/container/exec.go
[100%] GUILEC   guix/scripts/deploy.go
[100%] GUILEC   guix/scripts/time-machine.go
[100%] GUILEC   guix/scripts/copy.go
[100%] GUILEC   guix/scripts/discover.go
[100%] GUILEC   guix/scripts/offload.go
WARNING: Use of `load' in declarative module (guix scripts repl).  Add #:declarative? #f to your define-module invocation.
;;; Failed to autoload make-page-map in (charting):
;;; no code for module (charting)
;;; Failed to autoload make-page-map in (charting):
;;; no code for module (charting)
guix/scripts/pull.scm:289:2: warning: non-literal format string
WARNING: Use of `load' in declarative module (guix scripts repl).  Add #:declarative? #f to your define-module invocation.
;;; Failed to autoload make-page-map in (charting):
;;; no code for module (charting)
;;; Failed to autoload make-page-map in (charting):
;;; no code for module (charting)
;;; Failed to autoload make-page-map in (charting):
;;; no code for module (charting)
;;; Failed to autoload make-page-map in (charting):
;;; no code for module (charting)
;;; Failed to autoload make-page-map in (charting):
;;; no code for module (charting)
;;; Failed to autoload make-page-map in (charting):
;;; no code for module (charting)
guix/scripts/size.scm:224:3: warning: possibly unbound variable `make-page-map'
;;; Failed to autoload make-page-map in (charting):
;;; no code for module (charting)
  HELP2MAN doc/guix-archive.1
  HELP2MAN doc/guix-build.1
  HELP2MAN doc/guix-challenge.1
  HELP2MAN doc/guix-deploy.1
  HELP2MAN doc/guix-download.1
  HELP2MAN doc/guix-edit.1
  HELP2MAN doc/guix-environment.1
  HELP2MAN doc/guix-gc.1
  HELP2MAN doc/guix-hash.1
  HELP2MAN doc/guix-import.1
  HELP2MAN doc/guix-lint.1
  HELP2MAN doc/guix-package.1
  HELP2MAN doc/guix-publish.1
  HELP2MAN doc/guix-pull.1
  HELP2MAN doc/guix-refresh.1
  HELP2MAN doc/guix-size.1
  HELP2MAN doc/guix-system.1
  HELP2MAN doc/guix-time-machine.1
  HELP2MAN doc/guix-weather.1
  HELP2MAN doc/guix.1
  HELP2MAN doc/guix-daemon.1
  DOT      doc/images/bootstrap-graph.png
  DOT      doc/images/bootstrap-packages.png
  DOT      doc/images/coreutils-graph.png
  DOT      doc/images/coreutils-bag-graph.png
  DOT      doc/images/gcc-core-mesboot0-graph.png
  DOT      doc/images/service-graph.png
  DOT      doc/images/shepherd-graph.png
  GEN      etc/openrc/guix-daemon
  GEN      etc/gnu-store.mount
  GEN      etc/guix-daemon.service
  GEN      etc/guix-publish.service
  GEN      etc/guix-gc.service
  GEN      etc/init.d/guix-daemon
  GEN      etc/guix-daemon.conf
  GEN      etc/guix-publish.conf
make[2]: Leaving directory '/home/ming/Downloads/guix'
make[1]: Leaving directory '/home/ming/Downloads/guix'

[-- Attachment #1.1.5: 2021-12-21-guix-make-check.log --]
[-- Type: text/x-log, Size: 4616 bytes --]

make  check-recursive
make[1]: Entering directory '/home/ming/Downloads/guix'
Making check in po/guix
make[2]: Entering directory '/home/ming/Downloads/guix/po/guix'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '/home/ming/Downloads/guix/po/guix'
Making check in po/packages
make[2]: Entering directory '/home/ming/Downloads/guix/po/packages'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '/home/ming/Downloads/guix/po/packages'
make[2]: Entering directory '/home/ming/Downloads/guix'
Compiling Scheme modules...
Compiling Scheme modules...
Compiling Scheme modules...
Compiling Scheme modules...
make  check-TESTS check-local
make[3]: Entering directory '/home/ming/Downloads/guix'
make[4]: Entering directory '/home/ming/Downloads/guix'
PASS: tests/accounts.scm
PASS: tests/base16.scm
PASS: tests/base32.scm
PASS: tests/base64.scm
PASS: tests/boot-parameters.scm
PASS: tests/bournish.scm
PASS: tests/builders.scm
PASS: tests/build-utils.scm
PASS: tests/cache.scm
PASS: tests/challenge.scm
SKIP: tests/channels.scm
PASS: tests/combinators.scm
PASS: tests/containers.scm
PASS: tests/cpan.scm
SKIP: tests/cpio.scm
PASS: tests/cran.scm
SKIP: tests/crate.scm
PASS: tests/cve.scm
PASS: tests/debug-link.scm
PASS: tests/derivations.scm
PASS: tests/discovery.scm
PASS: tests/egg.scm
PASS: tests/elpa.scm
PASS: tests/file-systems.scm
PASS: tests/gem.scm
PASS: tests/gexp.scm
SKIP: tests/git.scm
SKIP: tests/git-authenticate.scm
PASS: tests/glob.scm
PASS: tests/gnu-maintenance.scm
PASS: tests/grafts.scm
PASS: tests/graph.scm
PASS: tests/gremlin.scm
SKIP: tests/hackage.scm
PASS: tests/home-import.scm
SKIP: tests/import-git.scm
PASS: tests/import-utils.scm
SKIP: tests/inferior.scm
PASS: tests/lint.scm
PASS: tests/minetest.scm
PASS: tests/modules.scm
PASS: tests/monads.scm
PASS: tests/nar.scm
PASS: tests/networking.scm
PASS: tests/opam.scm
PASS: tests/openpgp.scm
PASS: tests/packages.scm
PASS: tests/pack.scm
PASS: tests/pki.scm
PASS: tests/print.scm
PASS: tests/processes.scm
PASS: tests/profiles.scm
PASS: tests/publish.scm
SKIP: tests/pypi.scm
PASS: tests/records.scm
PASS: tests/scripts.scm
PASS: tests/search-paths.scm
PASS: tests/services.scm
PASS: tests/services/file-sharing.scm
PASS: tests/services/linux.scm
PASS: tests/services/telephony.scm
PASS: tests/sets.scm
PASS: tests/size.scm
PASS: tests/status.scm
PASS: tests/store-database.scm
PASS: tests/store-deduplication.scm
PASS: tests/store-roots.scm
PASS: tests/store.scm
PASS: tests/substitute.scm
PASS: tests/swh.scm
PASS: tests/syscalls.scm
PASS: tests/system.scm
PASS: tests/style.scm
PASS: tests/texlive.scm
PASS: tests/transformations.scm
PASS: tests/ui.scm
PASS: tests/union.scm
SKIP: tests/upstream.scm
PASS: tests/utils.scm
PASS: tests/uuid.scm
PASS: tests/workers.scm
PASS: tests/go.scm
PASS: tests/guix-build.sh
PASS: tests/guix-build-branch.sh
PASS: tests/guix-download.sh
FAIL: tests/guix-git-authenticate.sh
PASS: tests/guix-hash.sh
PASS: tests/guix-pack.sh
PASS: tests/guix-pack-localstatedir.sh
FAIL: tests/guix-pack-relocatable.sh
PASS: tests/guix-package.sh
PASS: tests/guix-package-aliases.sh
PASS: tests/guix-package-net.sh
PASS: tests/guix-system.sh
PASS: tests/guix-home.sh
PASS: tests/guix-archive.sh
PASS: tests/guix-authenticate.sh
PASS: tests/guix-environment.sh
PASS: tests/guix-environment-container.sh
PASS: tests/guix-shell.sh
PASS: tests/guix-graph.sh
PASS: tests/guix-describe.sh
PASS: tests/guix-repl.sh
PASS: tests/guix-lint.sh
PASS: tests/guix-gc.sh
PASS: tests/guix-daemon.sh
============================================================================
Testsuite summary for GNU Guix UNKNOWN
============================================================================
# TOTAL: 2077
# PASS:  2029
# SKIP:  45
# XFAIL: 1
# FAIL:  2
# XPASS: 0
# ERROR: 0
============================================================================
See ./test-suite.log
Please report to bug-guix@gnu.org
============================================================================
make[4]: *** [Makefile:6411: test-suite.log] Error 1
make[4]: Leaving directory '/home/ming/Downloads/guix'
make[3]: *** [Makefile:6519: check-TESTS] Error 2
make[3]: Leaving directory '/home/ming/Downloads/guix'
make[2]: *** [Makefile:6768: check-am] Error 2
make[2]: Leaving directory '/home/ming/Downloads/guix'
make[1]: *** [Makefile:6296: check-recursive] Error 1
make[1]: Leaving directory '/home/ming/Downloads/guix'
make: *** [Makefile:6770: check] Error 2

[-- Attachment #1.1.6: 2021-12-21-guix-configure.log --]
[-- Type: text/x-log, Size: 9159 bytes --]

checking for a BSD-compatible install... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '1000' is supported by ustar format... yes
checking whether GID '998' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking whether make supports nested variables... (cached) yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/grep
checking for egrep... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for a sed that does not truncate output... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/sed
checking whether NLS is requested... yes
checking for msgfmt... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt
checking for gmsgfmt... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgfmt
checking for xgettext... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xgettext
checking for msgmerge... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/msgmerge
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for ld used by gcc... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/ld
checking if the linker (/gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for sed... (cached) /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/sed
checking for the Guix system type... x86_64-linux
checking for the store directory... /gnu/store
checking the length of the installed socket file name... 30
checking for unit test root directory... /home/ming/Downloads/guix/test-tmp
checking the length of the socket file name used in tests... 66
checking the length of a typical hash bang line... 73
checking the length of a hash bang line used in tests... 103
checking for pkg-config... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
configure: checking for guile 3.0
configure: found guile 3.0
checking for guile-3.0... no
checking for guile3.0... no
checking for guile-3... no
checking for guile3... no
checking for guile... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile
checking for Guile version >= 3.0... 3.0.7
checking for guild... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guild
checking for guile-config... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile-config
checking for guile-3.0... yes
checking if (gnutls) is available... yes
checking if (git) is available... yes
checking whether Guile-JSON is available and recent enough... yes
checking whether Guile-Sqlite3 is available and recent enough... yes
checking whether Guile-Gcrypt is available and recent enough... yes
checking whether Guile-Git is available and recent enough... yes
checking if (htmlprag) exports `%strict-tokenizer?'... yes
checking whether Guile-zlib is available and recent enough... yes
checking if (lzlib) is available... yes
checking if (avahi) is available... yes
checking if (newt) is available... no
checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'regex'... yes
checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'posix'... yes
checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'socket'... yes
checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'net-db'... yes
checking whether /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile provides feature 'threads'... yes
checking for a sed that does not truncate output... (cached) /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/sed
checking for gzip... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/gzip
checking for bzip2... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/bzip2
checking for xz... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/xz
checking for libgcrypt-config... /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/libgcrypt-config
checking libgcrypt's library directory... /gnu/store/5z3gh8yq8a8dzlhm7llx50cjf1vj1r2w-libgcrypt-1.8.8/lib
checking whether Guile-SSH is available and recent enough... yes
checking whether to build daemon... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for ar... ar
checking the archiver (ar) interface... ar
checking whether g++ supports C++11... yes
checking for ranlib... ranlib
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for gzdopen in -lz... yes
checking how to run the C++ preprocessor... g++ -E
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for BZ2_bzWriteOpen in -lbz2... yes
checking bzlib.h usability... yes
checking bzlib.h presence... yes
checking for bzlib.h... yes
checking for sqlite3 >= 3.6.19... yes
checking for gcry_md_open in -lgcrypt... yes
checking gcrypt.h usability... yes
checking gcrypt.h presence... yes
checking for gcrypt.h... yes
checking for chroot... yes
checking for unshare... yes
checking sched.h usability... yes
checking sched.h presence... yes
checking for sched.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/mount.h usability... yes
checking sys/mount.h presence... yes
checking for sys/mount.h... yes
checking sys/syscall.h usability... yes
checking sys/syscall.h presence... yes
checking for sys/syscall.h... yes
checking for lutimes... yes
checking for lchown... yes
checking for posix_fallocate... yes
checking for sched_setaffinity... yes
checking for statvfs... yes
checking for nanosleep... yes
checking for strsignal... yes
checking for statx... yes
checking locale usability... yes
checking locale presence... yes
checking for locale... yes
checking sys/personality.h usability... yes
checking sys/personality.h presence... yes
checking for sys/personality.h... yes
checking for default substitute URLs... https://ci.guix.gnu.org https://bordeaux.guix.gnu.org
checking whether Guile-SSH is available and recent enough... (cached) yes
checking for unit test root directory... (cached) /home/ming/Downloads/guix/test-tmp
checking for guile... (cached) /gnu/store/m9cxyq29vxzbr9d36fxdpdpi9yxyjaqa-profile/bin/guile
checking the current installation's localstatedir... none
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating po/guix/Makefile.in
config.status: creating po/packages/Makefile.in
config.status: creating etc/guix-daemon.cil
config.status: creating guix/config.scm
config.status: creating etc/committer.scm
config.status: creating test-env
config.status: creating pre-inst-env
config.status: creating nix/config.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/guix/POTFILES
config.status: creating po/guix/Makefile
config.status: creating po/packages/POTFILES
config.status: creating po/packages/Makefile


[-- Attachment #1.1.7: 2021-12-21-guix-bootstrap.log --]
[-- Type: text/x-log, Size: 6099 bytes --]

++ sed -e 's,.*/guix-manual\.,,;s,\.po$,,'
++ find po/doc -type f -name 'guix-manual*.po'
+ langs='zh_CN
de
fa
ko
pt_BR
ru
it
es
fr
sk'
+ for lang in ${langs}
+ '[' '!' -e doc/guix.zh_CN.texi ']'
+ echo '@setfilename guix.zh_CN.info'
+ echo '@include version-zh_CN.texi'
+ touch po/doc/guix-manual.zh_CN.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix.de.texi ']'
+ echo '@setfilename guix.de.info'
+ echo '@include version-de.texi'
+ touch po/doc/guix-manual.de.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix.fa.texi ']'
+ echo '@setfilename guix.fa.info'
+ echo '@include version-fa.texi'
+ touch po/doc/guix-manual.fa.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix.ko.texi ']'
+ echo '@setfilename guix.ko.info'
+ echo '@include version-ko.texi'
+ touch po/doc/guix-manual.ko.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix.pt_BR.texi ']'
+ echo '@setfilename guix.pt_BR.info'
+ echo '@include version-pt_BR.texi'
+ touch po/doc/guix-manual.pt_BR.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix.ru.texi ']'
+ echo '@setfilename guix.ru.info'
+ echo '@include version-ru.texi'
+ touch po/doc/guix-manual.ru.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix.it.texi ']'
+ echo '@setfilename guix.it.info'
+ echo '@include version-it.texi'
+ touch po/doc/guix-manual.it.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix.es.texi ']'
+ echo '@setfilename guix.es.info'
+ echo '@include version-es.texi'
+ touch po/doc/guix-manual.es.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix.fr.texi ']'
+ echo '@setfilename guix.fr.info'
+ echo '@include version-fr.texi'
+ touch po/doc/guix-manual.fr.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix.sk.texi ']'
+ echo '@setfilename guix.sk.info'
+ echo '@include version-sk.texi'
+ touch po/doc/guix-manual.sk.po
++ sed -e 's,.*/guix-cookbook\.,,;s,\.po$,,'
++ find po/doc -type f -name 'guix-cookbook*.po'
+ langs='ru
zh_Hans
fa
es
de
ko
sk
fr'
+ for lang in ${langs}
+ '[' '!' -e doc/guix-cookbook.ru.texi ']'
+ echo '@setfilename guix-cookbook.ru.info'
+ touch po/doc/guix-cookbook.ru.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix-cookbook.zh_Hans.texi ']'
+ echo '@setfilename guix-cookbook.zh_Hans.info'
+ touch po/doc/guix-cookbook.zh_Hans.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix-cookbook.fa.texi ']'
+ echo '@setfilename guix-cookbook.fa.info'
+ touch po/doc/guix-cookbook.fa.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix-cookbook.es.texi ']'
+ echo '@setfilename guix-cookbook.es.info'
+ touch po/doc/guix-cookbook.es.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix-cookbook.de.texi ']'
+ echo '@setfilename guix-cookbook.de.info'
+ touch po/doc/guix-cookbook.de.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix-cookbook.ko.texi ']'
+ echo '@setfilename guix-cookbook.ko.info'
+ touch po/doc/guix-cookbook.ko.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix-cookbook.sk.texi ']'
+ echo '@setfilename guix-cookbook.sk.info'
+ touch po/doc/guix-cookbook.sk.po
+ for lang in ${langs}
+ '[' '!' -e doc/guix-cookbook.fr.texi ']'
+ echo '@setfilename guix-cookbook.fr.info'
+ touch po/doc/guix-cookbook.fr.po
+ exec autoreconf -vfi
autoreconf: Entering directory `.'
autoreconf: running: autopoint --force
Copying file ABOUT-NLS
Copying file build-aux/config.rpath
Copying file m4/codeset.m4
Copying file m4/extern-inline.m4
Copying file m4/fcntl-o.m4
Copying file m4/gettext.m4
Copying file m4/glibc2.m4
Copying file m4/glibc21.m4
Copying file m4/iconv.m4
Copying file m4/intdiv0.m4
Copying file m4/intl.m4
Copying file m4/intldir.m4
Copying file m4/intlmacosx.m4
Copying file m4/intmax.m4
Copying file m4/inttypes-pri.m4
Copying file m4/inttypes_h.m4
Copying file m4/lcmessage.m4
Copying file m4/lib-ld.m4
Copying file m4/lib-link.m4
Copying file m4/lib-prefix.m4
Copying file m4/lock.m4
Copying file m4/longlong.m4
Copying file m4/nls.m4
Copying file m4/po.m4
Copying file m4/printf-posix.m4
Copying file m4/progtest.m4
Copying file m4/size_max.m4
Copying file m4/stdint_h.m4
Copying file m4/threadlib.m4
Copying file m4/uintmax_t.m4
Copying file m4/visibility.m4
Copying file m4/wchar_t.m4
Copying file m4/wint_t.m4
Copying file m4/xsize.m4
Copying file po/guix/Makefile.in.in
Copying file po/packages/Makefile.in.in
Copying file po/guix/Makevars.template
Copying file po/packages/Makevars.template
Copying file po/guix/Rules-quot
Copying file po/packages/Rules-quot
Copying file po/guix/boldquot.sed
Copying file po/packages/boldquot.sed
Copying file po/guix/en@boldquot.header
Copying file po/packages/en@boldquot.header
Copying file po/guix/en@quot.header
Copying file po/packages/en@quot.header
Copying file po/guix/insert-header.sin
Copying file po/packages/insert-header.sin
Copying file po/guix/quot.sed
Copying file po/packages/quot.sed
Copying file po/guix/remove-potcdate.sin
Copying file po/packages/remove-potcdate.sin
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /gnu/store/sdf2wfp1mc6x41rs8jmjhfc6qrfdpl2a-autoconf-2.69/bin/autoconf --force
autoreconf: running: /gnu/store/sdf2wfp1mc6x41rs8jmjhfc6qrfdpl2a-autoconf-2.69/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
config-daemon.ac:8: installing 'build-aux/ar-lib'
configure.ac:21: installing 'build-aux/compile'
configure.ac:23: installing 'build-aux/config.guess'
configure.ac:23: installing 'build-aux/config.sub'
configure.ac:11: installing 'build-aux/install-sh'
configure.ac:11: installing 'build-aux/missing'
Makefile.am: installing './INSTALL'
Makefile.am:787: warning: AM_GNU_GETTEXT used but 'po' not in SUBDIRS
Makefile.am: installing 'build-aux/depcomp'
doc/local.mk:34: installing 'build-aux/mdate-sh'
Makefile.am:790:   'doc/local.mk' included from here
doc/local.mk:34: installing 'build-aux/texinfo.tex'
Makefile.am:790:   'doc/local.mk' included from here
parallel-tests: installing 'build-aux/test-driver'
autoreconf: Leaving directory `.'


[-- Attachment #1.1.8: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 4045 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

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

* bug#52708: [BUG] Guix checkout fails `make check`
  2021-12-21 17:21 bug#52708: [BUG] Guix checkout fails `make check` Christopher Rodriguez
@ 2021-12-21 17:58 ` Christopher Rodriguez
  2021-12-21 18:05 ` Maxime Devos
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Christopher Rodriguez @ 2021-12-21 17:58 UTC (permalink / raw)
  To: 52708


[-- Attachment #1.1.1: Type: text/plain, Size: 215 bytes --]

As an aside: It seems as though on the web interface at least I am 
causing all of my attachments to be concatenated with my messages. Is 
there a specific way to attach files to prevent this, or is it intended?

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 4045 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

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

* bug#52708: [BUG] Guix checkout fails `make check`
  2021-12-21 17:21 bug#52708: [BUG] Guix checkout fails `make check` Christopher Rodriguez
  2021-12-21 17:58 ` Christopher Rodriguez
@ 2021-12-21 18:05 ` Maxime Devos
  2021-12-21 18:12 ` Christopher Rodriguez
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Maxime Devos @ 2021-12-21 18:05 UTC (permalink / raw)
  To: Christopher Rodriguez, 52708

Christopher Rodriguez schreef op di 21-12-2021 om 12:21 [-0500]:
> 5 Visual Proof (screenshots, videos, text)
> ==========================================
> 
>    Attached are personally created logs of each step of the process.
> For
>    further clarity, here is the output of `git -C ~/Downloads/guix
> log -n
>    1` and `guix describe` on my GuixSD install. And because I
> discovered
>    it after the fact, I've also attached the two logfiles created by
> the
>    above process (config.log and testsuite.log).

(Not really relevant to the bug report) It's named Guix System now, not
GuixSD. Also, logs are pure text and hence not visual?





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

* bug#52708: [BUG] Guix checkout fails `make check`
  2021-12-21 17:21 bug#52708: [BUG] Guix checkout fails `make check` Christopher Rodriguez
  2021-12-21 17:58 ` Christopher Rodriguez
  2021-12-21 18:05 ` Maxime Devos
@ 2021-12-21 18:12 ` Christopher Rodriguez
  2021-12-22 23:23 ` Ludovic Courtès
  2022-01-05  7:05 ` Ricardo Wurmus
  4 siblings, 0 replies; 7+ messages in thread
From: Christopher Rodriguez @ 2021-12-21 18:12 UTC (permalink / raw)
  To: 52708


[-- Attachment #1.1.1: Type: text/plain, Size: 356 bytes --]

Copy that, will refer to it as 'Guix System' from now on. I'd picked up 
GuixSD from reading (apparently outdated) blog posts.

Regarding the section header, I'd just copied something I found online 
for submitting good bug reports. You're right, though, it's oddly named. 
I think, going forward, I'll just use the word 'Evidence'.

Thanks again!

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 4045 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

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

* bug#52708: [BUG] Guix checkout fails `make check`
  2021-12-21 17:21 bug#52708: [BUG] Guix checkout fails `make check` Christopher Rodriguez
                   ` (2 preceding siblings ...)
  2021-12-21 18:12 ` Christopher Rodriguez
@ 2021-12-22 23:23 ` Ludovic Courtès
  2022-01-05  7:05 ` Ricardo Wurmus
  4 siblings, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2021-12-22 23:23 UTC (permalink / raw)
  To: Christopher Rodriguez; +Cc: 52708

Hi Christopher,

Christopher Rodriguez <yewscion@gmail.com> skribis:

> FAIL: tests/guix-git-authenticate
> =================================
>
> + '[' -d /home/ming/Downloads/guix/.git ']'
> + guile -c '(use-modules (git))
>   (member "refs/heads/keyring" (branch-list (repository-open ".")))'
> + intro_commit=9edb3f66fd807b096b48283debdcddccfea34bad
> + intro_signer='BBB0 2DDF 2CEA F6A8 0D1D  E643 A2A0 6DF2 A33A 54FA'
> + cache_key=test-24504
> + guix git authenticate 9edb3f66fd807b096b48283debdcddccfea34bad 'BBB0 2DDF 2CEA F6A8 0D1D  E643 A2A0 6DF2 A33A 54FA' --cache-key=test-24504 --stats --end=9549f0283a78fe36f2d4ff2a04ef8ad6b0c02604
> guix git: error: Git error: cannot locate remote-tracking branch 'keyring'
> FAIL tests/guix-git-authenticate.sh (exit status: 1)

It looks like your repo is missing a ‘keyring’ branch, which causes this
test failure.  Can you set up the branch as noted here:

  https://guix.gnu.org/manual/devel/en/html_node/Building-from-Git.html

and try again?

> FAIL: tests/guix-pack-relocatable
> =================================

[...]

> + guix pack -RR python-numpy python-scipy --no-grafts -n
> guix pack: error: profile contains conflicting entries for python-numpy
> guix pack: error:   first entry: python-numpy@1.21.3 /gnu/store/9dd0zkkwl45rmsa7b6vjb1747l57aw4y-python-numpy-1.21.3R
> guix pack: error:   second entry: python-numpy@1.20.3 /gnu/store/mlccgh05bf8cdinq0ilpvpdmsspq36pv-python-numpy-1.20.3R
> guix pack: error:    ... propagated from python-matplotlib@3.4.3
> guix pack: error:    ... propagated from python-scipy@1.6.0

[...]

>    314:42  3 (display-hint "Try upgrading both @code{python-numpy} ?" ?)
> In ice-9/boot-9.scm:
>   1747:15  2 (with-exception-handler #<procedure 7f5c9becbb10 at ic?> ?)
> In guix/build/syscalls.scm:
>   2282:35  1 (_)
>    2271:8  0 (terminal-window-size _)
>
> guix/build/syscalls.scm:2271:8: In procedure terminal-window-size:
> In procedure terminal-window-size: Inappropriate ioctl for device
> + chmod -Rf +w /tmp/tmp.L59DtouzZR
> + rm -rf /tmp/tmp.L59DtouzZR
> FAIL tests/guix-pack-relocatable.sh (exit status: 1)

Ah yes, this is a “known issue” since the recent merge.  We need to
adjust the test to use other packages or something.  To be continued…

Thanks,
Ludo’.




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

* bug#52708: [BUG] Guix checkout fails `make check`
  2021-12-21 17:21 bug#52708: [BUG] Guix checkout fails `make check` Christopher Rodriguez
                   ` (3 preceding siblings ...)
  2021-12-22 23:23 ` Ludovic Courtès
@ 2022-01-05  7:05 ` Ricardo Wurmus
  2022-01-05 18:49   ` Leo Famulari
  4 siblings, 1 reply; 7+ messages in thread
From: Ricardo Wurmus @ 2022-01-05  7:05 UTC (permalink / raw)
  To: 52708

> + guix pack -RR python-numpy python-scipy --no-grafts -n
> guix pack: error: profile contains conflicting entries for python-numpy
> guix pack: error:   first entry: python-numpy@1.21.3 /gnu/store/9dd0zkkwl45rmsa7b6vjb1747l57aw4y-python-numpy-1.21.3R
> guix pack: error:   second entry: python-numpy@1.20.3 /gnu/store/mlccgh05bf8cdinq0ilpvpdmsspq36pv-python-numpy-1.20.3R
> guix pack: error:    ... propagated from python-matplotlib@3.4.3
> guix pack: error:    ... propagated from python-scipy@1.6.0

This should no longer be a problem as we’ve renamed python-numpy@1.21 to
python-numpy-next.

-- 
Ricardo




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

* bug#52708: [BUG] Guix checkout fails `make check`
  2022-01-05  7:05 ` Ricardo Wurmus
@ 2022-01-05 18:49   ` Leo Famulari
  0 siblings, 0 replies; 7+ messages in thread
From: Leo Famulari @ 2022-01-05 18:49 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 52708-done

On Wed, Jan 05, 2022 at 08:05:58AM +0100, Ricardo Wurmus wrote:
> > + guix pack -RR python-numpy python-scipy --no-grafts -n
> > guix pack: error: profile contains conflicting entries for python-numpy
> > guix pack: error:   first entry: python-numpy@1.21.3 /gnu/store/9dd0zkkwl45rmsa7b6vjb1747l57aw4y-python-numpy-1.21.3R
> > guix pack: error:   second entry: python-numpy@1.20.3 /gnu/store/mlccgh05bf8cdinq0ilpvpdmsspq36pv-python-numpy-1.20.3R
> > guix pack: error:    ... propagated from python-matplotlib@3.4.3
> > guix pack: error:    ... propagated from python-scipy@1.6.0
> 
> This should no longer be a problem as we’ve renamed python-numpy@1.21 to
> python-numpy-next.

Closing




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

end of thread, other threads:[~2022-01-05 18:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-21 17:21 bug#52708: [BUG] Guix checkout fails `make check` Christopher Rodriguez
2021-12-21 17:58 ` Christopher Rodriguez
2021-12-21 18:05 ` Maxime Devos
2021-12-21 18:12 ` Christopher Rodriguez
2021-12-22 23:23 ` Ludovic Courtès
2022-01-05  7:05 ` Ricardo Wurmus
2022-01-05 18:49   ` Leo Famulari

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).