mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-27 19:41:50 +02:00
import: egg: Emit new-style package inputs.
* guix/import/egg.scm (egg->guix-package): Generate dependency list from a list of symbols. [egg-parse-dependency]: Return a list of symbols. [maybe-inputs]: Wrap INPUTS in 'list' instead of 'quasiquote'. * tests/egg.scm (match-chicken-foo): Adjust accordingly. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
committed by
Ludovic Courtès
parent
db5962c680
commit
5b6285518b
+7
-20
@@ -1,5 +1,6 @@
|
||||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
@@ -86,16 +87,9 @@
|
||||
('build-system 'chicken-build-system)
|
||||
('arguments ('quasiquote ('#:egg-name "foo")))
|
||||
('native-inputs
|
||||
('quasiquote
|
||||
(("chicken-test" ('unquote chicken-test))
|
||||
("chicken-srfi-1" ('unquote chicken-srfi-1))
|
||||
("chicken-begin-syntax" ('unquote chicken-begin-syntax)))))
|
||||
('inputs
|
||||
('quasiquote
|
||||
(("libgit2" ('unquote libgit2)))))
|
||||
('propagated-inputs
|
||||
('quasiquote
|
||||
(("chicken-datatype" ('unquote chicken-datatype)))))
|
||||
('list 'chicken-test 'chicken-srfi-1 'chicken-begin-syntax))
|
||||
('inputs ('list 'libgit2))
|
||||
('propagated-inputs ('list 'chicken-datatype))
|
||||
('home-page "https://wiki.call-cc.org/egg/foo")
|
||||
('synopsis "Example egg")
|
||||
('description #f)
|
||||
@@ -108,16 +102,9 @@
|
||||
('source (? file-like? source))
|
||||
('build-system 'chicken-build-system)
|
||||
('arguments ('quasiquote ('#:egg-name "bar")))
|
||||
('native-inputs
|
||||
('quasiquote
|
||||
(("chicken-test" ('unquote chicken-test))
|
||||
("chicken-begin-syntax" ('unquote chicken-begin-syntax)))))
|
||||
('inputs
|
||||
('quasiquote
|
||||
(("libgit2" ('unquote libgit2)))))
|
||||
('propagated-inputs
|
||||
('quasiquote
|
||||
(("chicken-datatype" ('unquote chicken-datatype)))))
|
||||
('native-inputs ('list 'chicken-test 'chicken-begin-syntax))
|
||||
('inputs ('list 'libgit2))
|
||||
('propagated-inputs ('list 'chicken-datatype))
|
||||
('home-page "https://wiki.call-cc.org/egg/bar")
|
||||
('synopsis "Example egg")
|
||||
('description #f)
|
||||
|
||||
Reference in New Issue
Block a user