guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: tests: docker: Use "package" instead of "dummy-package".


From: guix-commits
Subject: 01/01: tests: docker: Use "package" instead of "dummy-package".
Date: Fri, 18 Jan 2019 16:24:25 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit 69e47686c9a8a2b5c4ee33e5b14da657de3d7ca0
Author: Danny Milosavljevic <address@hidden>
Date:   Fri Jan 18 18:12:15 2019 +0100

    tests: docker: Use "package" instead of "dummy-package".
    
    * gnu/tests/docker.scm (build-tarball&run-docker-test): Use "package" 
instead
    of "dummy-package".
---
 gnu/tests/docker.scm | 30 +++++++++++++++++++-----------
 1 file changed, 19 insertions(+), 11 deletions(-)

diff --git a/gnu/tests/docker.scm b/gnu/tests/docker.scm
index f69b298..25e172e 100644
--- a/gnu/tests/docker.scm
+++ b/gnu/tests/docker.scm
@@ -37,6 +37,7 @@
   #:use-module (guix store)
   #:use-module (guix tests)
   #:use-module (guix build-system trivial)
+  #:use-module ((guix licenses) #:prefix license:)
   #:export (%test-docker))
 
 (define %docker-os
@@ -131,17 +132,24 @@ inside %DOCKER-OS."
       ((_ (set-grafting #f))
        (guile (set-guile-for-build (default-guile)))
        (guest-script-package ->
-        (dummy-package "guest-script"
-                       (build-system trivial-build-system)
-                       (arguments
-                        `(#:guile ,%bootstrap-guile
-                          #:builder
-                          (let ((out (assoc-ref %outputs "out")))
-                            (mkdir out)
-                            (call-with-output-file (string-append out "/a.scm")
-                              (lambda (port)
-                                (display "(display \"hello world\n\")" port)))
-                            #t)))))
+        (package
+          (name "guest-script")
+          (version "0")
+          (source #f)
+          (build-system trivial-build-system)
+          (arguments `(#:guile ,%bootstrap-guile
+                       #:builder
+                       (let ((out (assoc-ref %outputs "out")))
+                         (mkdir out)
+                         (call-with-output-file (string-append out "/a.scm")
+                           (lambda (port)
+                             (display "(display \"hello world\n\")" port)))
+                         #t)))
+          (synopsis "Display hello world using Guile")
+          (description "This package displays the text \"hello world\" on the
+standard output device and then enters a new line.")
+          (home-page #f)
+          (license license:public-domain)))
        (profile (profile-derivation (packages->manifest
                                      (list %bootstrap-guile
                                            guest-script-package))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]