From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57387) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cxVLj-0007e6-JA for guix-patches@gnu.org; Mon, 10 Apr 2017 05:11:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cxVLi-0006nj-8p for guix-patches@gnu.org; Mon, 10 Apr 2017 05:11:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42339) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cxVLi-0006nZ-51 for guix-patches@gnu.org; Mon, 10 Apr 2017 05:11:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cxVLh-0008Lc-VJ for guix-patches@gnu.org; Mon, 10 Apr 2017 05:11:01 -0400 Subject: bug#26420: [PATCH 2/2] gnu: Add emacs-use-package. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170409165703.9034-1-arunisaac@systemreboot.net> <8c88a4c1.ADsAAHIoMD8AAAAAAAAAAAOzcd8AAAACwQwAAAAAAAW9WABY6mf5@mailjet.com> Date: Mon, 10 Apr 2017 11:10:47 +0200 In-Reply-To: <8c88a4c1.ADsAAHIoMD8AAAAAAAAAAAOzcd8AAAACwQwAAAAAAAW9WABY6mf5@mailjet.com> (Arun Isaac's message of "Sun, 9 Apr 2017 22:27:03 +0530") Message-ID: <878tn8hbl4.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 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: Arun Isaac Cc: 26420@debbugs.gnu.org Arun Isaac skribis: > * gnu/packages/emacs.scm (emacs-use-package): New variable. [...] > + (arguments > + `(#:phases > + (modify-phases %standard-phases > + ;; tests fail in this release > + (add-before 'install 'check > + (lambda _ > + (zero? (system* "emacs" "--batch" "-L" "." > + "-l" "use-package-tests.el" > + "-f" "ert-run-tests-batch-and-exit")) > + #t))))) Please remove #t as it would hide a failure of the =E2=80=9Cemacs --batch= =E2=80=9D command above. > + (home-page "https://github.com/jwiegley/use-package") > + (synopsis "Declaration for simplifying your .emacs") > + (description "The use-package macro allows you to isolate package > +configuration in your .emacs file in a way that is both > +performance-oriented and tidy.") @file{.emacs} in the synopsis and description. OK to push with these changes, thank you! Ludo=E2=80=99.