From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34864) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4u5-0006Au-IP for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4u3-00042l-KP for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37441) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hi4u2-000425-8r for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hi4u2-0002Po-3s for guix-patches@gnu.org; Mon, 01 Jul 2019 18:36:02 -0400 Subject: [bug#36467] [PATCH 07/12] gnu: Add xlunit Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34639) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hi4t5-0005sX-VJ for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hi4t3-00036L-E7 for guix-patches@gnu.org; Mon, 01 Jul 2019 18:35:03 -0400 Received: from mout02.posteo.de ([185.67.36.66]:47409) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hi4t1-0001xZ-7R for guix-patches@gnu.org; Mon, 01 Jul 2019 18:34:59 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 40CBC2400E6 for ; Tue, 2 Jul 2019 00:33:04 +0200 (CEST) From: Guillaume LE VAILLANT Date: Tue, 2 Jul 2019 00:31:22 +0200 Message-Id: <20190701223127.32222-7-glv@posteo.net> In-Reply-To: <20190701223127.32222-1-glv@posteo.net> References: <20190701222716.12254-1-glv@posteo.net> <20190701223127.32222-1-glv@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36467@debbugs.gnu.org Cc: Guillaume LE VAILLANT * gnu/packages/lisp.scm (sbcl-xlunit, cl-xlunit): New variables. --- gnu/packages/lisp.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index d785ed2b73..70b5ed4b79 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6156,6 +6156,41 @@ decisions becomes significantly easier.") (define-public cl-containers (sbcl-package->cl-source-package sbcl-cl-containers)) =20 +(define-public sbcl-xlunit + (let ((commit "3805d34b1d8dc77f7e0ee527a2490194292dd0fc") + (revision "1")) + (package + (name "sbcl-xlunit") + (version (git-version "0.6.3" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "http://git.kpe.io/xlunit.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0argfmp9nghs4sihyj3f8ch9qfib2b7ll07v5m9ziajgzsfl5xw3")))) + (build-system asdf-build-system/sbcl) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-tests + (lambda _ + (substitute* "xlunit.asd" + ((" :force t") "")) + #t))))) + (synopsis "Unit testing package for Common Lisp") + (description + "The XLUnit package is a toolkit for building test suites. It is= based +on the XPTest package by Craig Brozensky and the JUnit package by Kent B= eck.") + (home-page "http://quickdocs.org/xlunit/") + (license license:bsd-3)))) + +(define-public cl-xlunit + (sbcl-package->cl-source-package sbcl-xlunit)) + (define-public sbcl-fprog (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636") (revision "1")) --=20 2.22.0