unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: jgart <jgart@dismail.de>
To: Guix Help <help-guix@gnu.org>
Subject: make-autoloads phase fails
Date: Thu, 18 Aug 2022 20:50:52 -0500	[thread overview]
Message-ID: <20220818205052.GB8540@gac> (raw)


Hi,

Any ideas on why the autoloads fail?

https://github.com/jkitchin/ox-ipynb

Failure:

starting phase `make-autoloads'
Debugger entered--Lisp error: (file-missing "Opening directory" "No such file or directory" "/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...")
  directory-files("/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-..." t "\\`[^=.].*\\(\\.el\\(?:\\.gz\\)?\\)\\'")
  #f(compiled-function (d) #<bytecode 0x4123d5312041b5e>)("/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...")
  mapcar(#f(compiled-function (d) #<bytecode 0x4123d5312041b5e>) ("/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-..."))
  make-directory-autoloads(("/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...") "/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...")
  update-directory-autoloads("/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...")
  (let ((backup-inhibited t) (generated-autoload-file "/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...")) (update-directory-autoloads "/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-..."))
  eval((let ((backup-inhibited t) (generated-autoload-file "/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...")) (update-directory-autoloads "/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...")) nil)
  eval((eval '(let ((backup-inhibited t) (generated-autoload-file "/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...")) (update-directory-autoloads "/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-...")) nil) t)
  command-line-1(("--eval=(eval '(let ((backup-inhibited t) (generate..."))
  command-line()
  normal-top-level()

error: in phase 'make-autoloads': uncaught exception:
%exception #<&invoke-error program: "/gnu/store/c7f900qr6vjfcw414sim6fj9zxhvlia7-emacs-minimal-28.1/bin/emacs" arguments: ("--quick" "--batch" "--eval=(eval '(let ((backup-inhibited t) (generated-autoload-file \"/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-ox-ipynb-0.1-0.9bf8db3/share/emacs/site-lisp/ox-ipynb-0.1-0.9bf8db3/ox-ipynb-autoloads.el\")) (update-directory-autoloads \"/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-ox-ipynb-0.1-0.9bf8db3/share/emacs/site-lisp/ox-ipynb-0.1-0.9bf8db3\")) nil)") exit-status: 255 term-signal: #f stop-signal: #f> 
phase `make-autoloads' failed after 0.1 seconds
command "/gnu/store/c7f900qr6vjfcw414sim6fj9zxhvlia7-emacs-minimal-28.1/bin/emacs" "--quick" "--batch" "--eval=(eval '(let ((backup-inhibited t) (generated-autoload-file \"/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-ox-ipynb-0.1-0.9bf8db3/share/emacs/site-lisp/ox-ipynb-0.1-0.9bf8db3/ox-ipynb-autoloads.el\")) (update-directory-autoloads \"/gnu/store/hn4yazgk591kibpr5zfp3cspjiijddla-emacs-ox-ipynb-0.1-0.9bf8db3/share/emacs/site-lisp/ox-ipynb-0.1-0.9bf8db3\")) nil)" failed with status 255
builder for `/gnu/store/3rnacfg287rfqjmkmbq75kqf27vycc52-emacs-ox-ipynb-0.1-0.9bf8db3.drv' failed with exit code 1
build of /gnu/store/3rnacfg287rfqjmkmbq75kqf27vycc52-emacs-ox-ipynb-0.1-0.9bf8db3.drv failed
View build log at '/var/log/guix/drvs/3r/nacfg287rfqjmkmbq75kqf27vycc52-emacs-ox-ipynb-0.1-0.9bf8db3.drv.bz2'.
guix build: error: build of `/gnu/store/3rnacfg287rfqjmkmbq75kqf27vycc52-emacs-ox-ipynb-0.1-0.9bf8db3.drv' failed
 λ 

package definition:


(define-public emacs-ox-ipynb
  (let ((commit "9bf8db38bf18feb0484931877210cecfaa96bfc6")
        (revision "0"))
    (package
      (name "emacs-ox-ipynb")
      (version (git-version "0.1" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri
          (git-reference
           (url "https://github.com/jkitchin/ox-ipynb")
           (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "09mk486fp5brw67aa4w9jyrq6g6i7ssd3y2mprhy5953q3w5s8fk"))))
      (build-system emacs-build-system)
      (propagated-inputs
        (list emacs-s emacs-dash))
      (home-page "https://github.com/jkitchin/ox-ipynb")
      (synopsis "Org-mode exporter to Jupyter notebooks")
      (description
"@code{emacs-ox-ipynb} allows you to export an org-file to an
Ipython notebook. Python and R notebooks are currently supported. It is
not currently possible to mix these languages.")
      (license license:gpl2+))))




             reply	other threads:[~2022-08-19  1:51 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-19  1:50 jgart [this message]
2022-09-02 14:34 ` make-autoloads phase fails zimoun

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220818205052.GB8540@gac \
    --to=jgart@dismail.de \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).