From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36285) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dopT9-0004KY-0a for guix-patches@gnu.org; Mon, 04 Sep 2017 07:23:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dopT4-00072Z-3L for guix-patches@gnu.org; Mon, 04 Sep 2017 07:23:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39114) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dopT3-00072P-W3 for guix-patches@gnu.org; Mon, 04 Sep 2017 07:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dopT3-0004I5-NZ for guix-patches@gnu.org; Mon, 04 Sep 2017 07:23:01 -0400 Subject: [bug#28199] [PATCH] gnu: Add emacs-minitest. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36022) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dopSi-0004Ei-HU for guix-patches@gnu.org; Mon, 04 Sep 2017 07:22:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dopSd-0006lM-K4 for guix-patches@gnu.org; Mon, 04 Sep 2017 07:22:40 -0400 Received: from mail-it0-x22c.google.com ([2607:f8b0:4001:c0b::22c]:34950) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dopSd-0006kE-Eg for guix-patches@gnu.org; Mon, 04 Sep 2017 07:22:35 -0400 Received: by mail-it0-x22c.google.com with SMTP id c13so1724080itb.0 for ; Mon, 04 Sep 2017 04:22:34 -0700 (PDT) Date: Mon, 04 Sep 2017 11:22:29 +0000 In-Reply-To: <20170904060647.23514-1-mail@cbaines.net> References: <20170823093433.8118-1-mail@cbaines.net> <20170904060647.23514-1-mail@cbaines.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable From: Maxim Cournoyer Message-ID: 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: 28199@debbugs.gnu.org, mail@cbaines.net On September 4, 2017 2:06:47 AM EDT, Christopher Baines wrote: >* gnu/packages/emacs=2Escm (emacs-minitest): New variable=2E >--- > gnu/packages/emacs=2Escm | 30 ++++++++++++++++++++++++++++++ > 1 file changed, 30 insertions(+) > >diff --git a/gnu/packages/emacs=2Escm b/gnu/packages/emacs=2Escm >index b3d5fc97e=2E=2E5c40fda24 100644 >--- a/gnu/packages/emacs=2Escm >+++ b/gnu/packages/emacs=2Escm >@@ -1629,6 +1629,36 @@ display and behaviour is easily customisable=2E") > of files under Git version control from within Emacs=2E") > (license license:gpl3+))) >=20 >+(define-public emacs-minitest >+ (package >+ (name "emacs-minitest") >+ (version "0=2E8=2E0") >+ (source (origin >+ (method url-fetch) >+ (uri (string-append >+ =20 >"https://github=2Ecom/arthurnn/minitest-emacs/archive/v" >+ version "=2Etar=2Egz")) >+ (file-name (string-append name "-" version "=2Etar=2Egz")) >+ (sha256 >+ (base32 >+ =20 >"1dsb7kzvs1x6g4sgqmq73jqacb7wzm0wfkiq5m9dqdzq8mppgiqs")))) >+ (build-system emacs-build-system) >+ (arguments >+ '(#:include (cons "^snippets\\/minitest-mode\\/" >%default-include) >+ #:exclude (delete "^[^/]*tests?\\=2Eel$" %default-exclude))) >+ (propagated-inputs >+ `(("emacs-dash" ,emacs-dash) >+ ("emacs-f" ,emacs-f))) >+ (home-page "https://github=2Ecom/arthurnn/minitest-emacs") >+ (synopsis "Emacs minitest mode") >+ (description >+ "The minitest mode provides commands to run the tests for the >current >+file or line, as well as rerunning the previous tests, or all the >tests for a >+project=2E >+ >+This package also includes relevant snippits for yasnippet=2E") s/snippits/snippets >+ (license license:expat))) >+ > (define-public emacs-el-mock > (package > (name "emacs-el-mock") Thanks! Hi,