From: Nathan Dehnel <ncdehnel@gmail.com>
To: 69465@debbugs.gnu.org, ncdehnel@gmail.com
Subject: bug#69465: "unbound variable" but it's not?
Date: Sun, 3 Mar 2024 01:51:39 -0600 [thread overview]
Message-ID: <CAEEhgEv20T-2c=ZzaOYmFMCxELvzzCdOOMTwnLmRrxXQY=okaA@mail.gmail.com> (raw)
In-Reply-To: <CAEEhgEtn_zMmwECAShyQ9C45+gqo4roysAvinoa_gbFqxMtBnQ@mail.gmail.com>
I'm now getting this from a new package I wrote with a jack2 import. I
think my whole channel is hosed somehow and I can't add any new
packages to it.
Backtrace:
In guix/repl.scm:
141:4 19 (machine-repl _ _)
126:7 18 (_)
In ice-9/boot-9.scm:
1747:15 17 (with-exception-handler #<procedure 7ffff1d32180 at ic?> ?)
1752:10 16 (with-exception-handler _ _ #:unwind? _ # _)
In guix/repl.scm:
99:21 15 (_)
In unknown file:
14 (_ #<procedure 7ffff7886a20 at guix/repl.scm:100:25 ()> ?)
13 (primitive-load "/gnu/store/b82ry641ki1xkmhm49archdpghy?")
In ice-9/boot-9.scm:
1752:10 12 (with-exception-handler _ _ #:unwind? _ # _)
In gnu/packages.scm:
439:11 11 (generate-package-cache _)
In srfi/srfi-1.scm:
460:18 10 (fold #<procedure expand-cache expr> _ _)
In gnu/packages.scm:
399:37 9 (expand-cache . _)
In guix/packages.scm:
1378:17 8 (supported-package? #<package jamulus@3.10.0 gooby-cha?> ?)
In guix/memoization.scm:
101:0 7 (_ #<hash-table 7fffebfea400 14361/28099> #<package ja?> ?)
In guix/packages.scm:
1356:39 6 (_)
1618:16 5 (package->bag _ _ _ #:graft? _)
1719:48 4 (thunk)
In gooby-channel/packages/jamulus.scm:
60:18 3 (inputs #<package jamulus@3.10.0 gooby-channel/packages?>)
In ice-9/boot-9.scm:
1685:16 2 (raise-exception _ #:continuable? _)
1780:13 1 (_ #<&compound-exception components: (#<&undefined-vari?>)
In unknown file:
0 (backtrace #<undefined>)
(exception unbound-variable (value #f) (value "Unbound variable: ~S")
(value (jack2)) (value #f))
On Wed, Feb 28, 2024 at 11:49 PM Nathan Dehnel <ncdehnel@gmail.com> wrote:
>
> "unbound variable" for rust-objc-0.2 but I see nothing wrong with it.
> package made with guix import
>
> during guix pull:
>
> Generating package cache for
> '/gnu/store/cyh6zz1x9br8p8rv0mszwvi76pb95fh6-profile'...
>
> Backtrace:
> (repl-version 0 1 1)
> Generating package cache for
> '/gnu/store/asq2jgvil9n9grm8jb3ia2ypbkgvpcn3-profile'...
> WARNING: (gooby-channel packages osandov-linux): `zlib' imported from
> both (guix licenses) and (gnu packages compression)
>
> Backtrace:
> In guix/repl.scm:
> 141:4 19 (machine-repl _ _)
> 126:7 18 (_)
> In ice-9/boot-9.scm:
> 1747:15 17 (with-exception-handler #<procedure 7ffff1d32180 at ic?> ?)
> 1752:10 16 (with-exception-handler _ _ #:unwind? _ # _)
> In guix/repl.scm:
> 99:21 15 (_)
> In unknown file:
> 14 (_ #<procedure 7ffff78846c0 at guix/repl.scm:100:25 ()> ?)
> 13 (primitive-load "/gnu/store/1vn5x4lh4mpyjm13cykmsb8aacb?")
> In ice-9/boot-9.scm:
> 1752:10 12 (with-exception-handler _ _ #:unwind? _ # _)
> In gnu/packages.scm:
> 439:11 11 (generate-package-cache _)
> In srfi/srfi-1.scm:
> 460:18 10 (fold #<procedure expand-cache expr> _ _)
> In gnu/packages.scm:
> 399:37 9 (expand-cache . _)
> In guix/packages.scm:
> 1378:17 8 (supported-package? #<package rust-eframe@0.26.2 gooby?> ?)
> In guix/memoization.scm:
> 101:0 7 (_ #<hash-table 7fffebe3cc80 23125/28099> #<package ru?> ?)
> In guix/packages.scm:
> 1356:39 6 (_)
> 1618:16 5 (package->bag _ _ _ #:graft? _)
> 1723:43 4 (thunk)
> In gooby-channel/packages/test.scm:
> 39:37 3 (arguments #<package rust-eframe@0.26.2 gooby-channel/p?>)
> In ice-9/boot-9.scm:
> 1685:16 2 (raise-exception _ #:continuable? _)
> 1780:13 1 (_ #<&compound-exception components: (#<&undefined-vari?>)
> In unknown file:
> 0 (backtrace #<undefined>)
>
> (exception unbound-variable (value #f) (value "Unbound variable: ~S")
> (value (rust-objc-0.2)) (value #f))
>
> (define-module (gooby-channel packages test)
> #:use-module (guix packages)
> #:use-module (gnu packages)
> #:use-module (guix build-system cargo)
> #:use-module ((guix licenses) #:prefix license:)
> #:use-module (guix git-download)
> #:use-module (guix download)
> #:use-module (gnu packages crates-io)
> #:use-module (gnu packages crates-graphics)
> #:use-module (gnu packages crypto)
> )
>
> (define-public rust-eframe-0.26
> (package
> (name "rust-eframe")
> (version "0.26.2")
> (source
> (origin
> (method url-fetch)
> (uri (crate-uri "eframe" version))
> (file-name (string-append name "-" version ".tar.gz"))
> (sha256
> (base32 "0vzjpm6kmqnnyhsvm4gq7yi7033m7mq88x15h2vnigqkdnxw2mn4"))))
> (build-system cargo-build-system)
> (arguments
> `(#:skip-build? #t
> #:cargo-inputs (
> ("rust-objc" ,rust-objc-0.2)
>
> )
> ))
> (home-page "https://github.com/emilk/egui/tree/master/crates/eframe")
> (synopsis
> "egui framework - write GUI apps that compiles to web and/or natively")
> (description
> "egui framework - write GUI apps that compiles to web and/or natively")
> (license (list license:expat license:asl2.0))))
next prev parent reply other threads:[~2024-03-03 7:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-29 5:49 bug#69465: "unbound variable" but it's not? Nathan Dehnel
2024-03-03 7:51 ` Nathan Dehnel [this message]
2024-03-03 10:00 ` Nicolas Graves via Bug reports for GNU Guix
2024-03-05 6:13 ` Nathan Dehnel
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='CAEEhgEv20T-2c=ZzaOYmFMCxELvzzCdOOMTwnLmRrxXQY=okaA@mail.gmail.com' \
--to=ncdehnel@gmail.com \
--cc=69465@debbugs.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.
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).