From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Patterson Subject: [PATCH 03/12] gnu: Add fiveam. Date: Tue, 27 Sep 2016 00:15:23 -0400 Message-ID: <20160927041532.27097-4-ajpatter@uwaterloo.ca> References: <20160927041532.27097-1-ajpatter@uwaterloo.ca> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34651) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bojo6-00017w-1H for guix-devel@gnu.org; Tue, 27 Sep 2016 00:15:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bojo3-0002qu-R9 for guix-devel@gnu.org; Tue, 27 Sep 2016 00:15:48 -0400 Received: from mailservices.uwaterloo.ca ([129.97.128.141]:45659 helo=minos.uwaterloo.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bojo3-0002qd-L5 for guix-devel@gnu.org; Tue, 27 Sep 2016 00:15:47 -0400 In-Reply-To: <20160927041532.27097-1-ajpatter@uwaterloo.ca> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/lisp.scm (fiveam, fiveam-sbcl, fiveam-ecl): New variables. --- gnu/packages/lisp.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index e6e69a2..64bfc92 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -568,3 +568,43 @@ scope, and portable between implementations.") (name "alexandria-ecl") (build-system asdf-build-system/ecl) (inputs `(("alexandria" ,alexandria))))) + +(define-public fiveam + (package + (name "fiveam") + (version "1.2") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/sionescu/fiveam/archive/v" + version ".tar.gz")) + (sha256 + (base32 "0f48pcbhqs3wwwzjl5nk57d4hcbib4l9xblxc66b8c2fhvhmhxnv")) + (file-name (string-append name "-" version ".tar.gz")))) + (propagated-inputs `(("alexandria" ,alexandria))) + (build-system asdf-build-system/source) + (synopsis "Common Lisp testing framework") + (description "FiveAM is a simple (as far as writing and running tests +goes) regression testing framework. It has been designed with Common Lisp's +interactive development model in mind.") + (home-page "https://common-lisp.net/project/fiveam/") + (license license:bsd-3))) + +(define-public fiveam-sbcl + (package + (inherit fiveam) + (name "fiveam-sbcl") + (build-system asdf-build-system/sbcl) + (inputs `(("fiveam" ,fiveam) + ("alexandria-sbcl" ,alexandria-sbcl))) + (propagated-inputs '()))) + +(define-public fiveam-ecl + (package + (inherit fiveam) + (name "fiveam-ecl") + (build-system asdf-build-system/ecl) + (inputs `(("fiveam" ,fiveam) + ("alexandria-ecl" ,alexandria-ecl))) + (propagated-inputs '()))) -- 2.10.0