[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: import: Do not return package name with json importer.
From: |
guix-commits |
Subject: |
07/07: import: Do not return package name with json importer. |
Date: |
Fri, 23 Feb 2024 14:51:41 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit b386c11e7804e0b577411d930b60f1e0a4a0382c
Author: Herman Rimm <herman@rimm.ee>
AuthorDate: Tue Feb 20 21:45:15 2024 +0100
import: Do not return package name with json importer.
* guix/import/json.scm (json->code): Do not return package names after
package expressions.
* doc/package-hello.json: Fix comma errors and use valid greeter URL.
Change-Id: Id71924e72f690a9bda5fbfdb65a443029adfd158
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
doc/package-hello.json | 6 +++---
guix/import/json.scm | 13 ++++++-------
2 files changed, 9 insertions(+), 10 deletions(-)
diff --git a/doc/package-hello.json b/doc/package-hello.json
index a47e266e4b..60193e97e6 100644
--- a/doc/package-hello.json
+++ b/doc/package-hello.json
@@ -6,7 +6,7 @@
"build-system": "gnu",
"arguments": {
"tests?": false
- }
+ },
"home-page": "https://www.gnu.org/software/hello/",
"synopsis": "Hello, GNU world: An example GNU package",
"description": "GNU Hello prints a greeting.",
@@ -16,11 +16,11 @@
{
"name": "greeter",
"version": "1.0",
- "source": "https://example.com/greeter-1.0.tar.gz",
+ "source": "mirror://gnu/hello/hello-2.10.tar.gz",
"build-system": "gnu",
"arguments": {
"test-target": "foo",
- "parallel-build?": false,
+ "parallel-build?": false
},
"home-page": "https://example.com/",
"synopsis": "Greeter using GNU Hello",
diff --git a/guix/import/json.scm b/guix/import/json.scm
index b87e9918c5..bf346a1bef 100644
--- a/guix/import/json.scm
+++ b/guix/import/json.scm
@@ -78,14 +78,13 @@ a list of S-expressions, or return #F when the JSON is
invalid."
#:result
(append result
(list
- (package->code (alist->package pkg
names))
- (string->symbol (assoc-ref pkg
"name"))))))))
- (list #:names '()
- #:result '())
- packages))))
+ (package->code
+ (alist->package pkg names))))))))
+ (list #:names '()
+ #:result '())
+ packages))))
(package
- (list (package->code (alist->package json))
- (string->symbol (assoc-ref json "name")))))))
+ (list (package->code (alist->package json)))))))
(const #f)))
(define (json->scheme-file file)
- branch master updated (e7990b1217 -> b386c11e78), guix-commits, 2024/02/23
- 03/07: utils: Add insert-expression procedure., guix-commits, 2024/02/23
- 02/07: import: Wrap package expressions with define-public., guix-commits, 2024/02/23
- 01/07: doc: Note SVN dependency of texlive importer., guix-commits, 2024/02/23
- 05/07: import: Insert packages into modules alphabetically., guix-commits, 2024/02/23
- 06/07: import: Discard args after --version and --help., guix-commits, 2024/02/23
- 07/07: import: Do not return package name with json importer.,
guix-commits <=
- 04/07: utils: Add find-definition-insertion-location procedure., guix-commits, 2024/02/23