From patchwork Tue Sep 27 04:15:23 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Patterson X-Patchwork-Id: 16034 Received: (qmail 45267 invoked by uid 89); 27 Sep 2016 04:16:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.2 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.9 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=alexandria, ecl X-Spam-Status: No, score=-4.9 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: lists.gnu.org Received: from lists.gnu.org (HELO lists.gnu.org) (208.118.235.17) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 27 Sep 2016 04:16:00 +0000 Received: from localhost ([::1]:47900 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bojoE-00018l-Aq for patchwork@sourceware.org; Tue, 27 Sep 2016 00:15:58 -0400 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 Received: from jalisou.gateway.2wire.net (bas1-jockvale05-3096537436.dsl.bell.ca [184.145.105.92]) (authenticated bits=0) by minos.uwaterloo.ca (8.14.4/8.14.4) with ESMTP id u8R4FYLP031867 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Tue, 27 Sep 2016 00:15:47 -0400 From: Andy Patterson To: guix-devel@gnu.org Subject: [PATCH 03/12] gnu: Add fiveam. Date: Tue, 27 Sep 2016 00:15:23 -0400 Message-Id: <20160927041532.27097-4-ajpatter@uwaterloo.ca> X-Mailer: git-send-email 2.10.0 In-Reply-To: <20160927041532.27097-1-ajpatter@uwaterloo.ca> References: <20160927041532.27097-1-ajpatter@uwaterloo.ca> X-UUID: b3f94e1f-0fd4-4071-aba5-efd5a36ea622 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 129.97.128.141 X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list 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+patchwork=sourceware.org@gnu.org Sender: "Guix-devel" * 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 '())))