From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45914) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cy0iw-0000Hf-M5 for guix-patches@gnu.org; Tue, 11 Apr 2017 14:41:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cy0is-0000nH-Eb for guix-patches@gnu.org; Tue, 11 Apr 2017 14:41:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45089) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cy0is-0000nA-8r for guix-patches@gnu.org; Tue, 11 Apr 2017 14:41:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cy0is-0000RK-35 for guix-patches@gnu.org; Tue, 11 Apr 2017 14:41:02 -0400 Subject: bug#26448: [PATCH] gnu: Add emacs-strace-mode. Resent-Message-ID: From: Kei Kebreau References: <20170411175158.15557-1-m.othacehe@gmail.com> Date: Tue, 11 Apr 2017 14:40:46 -0400 In-Reply-To: <20170411175158.15557-1-m.othacehe@gmail.com> (Mathieu Othacehe's message of "Tue, 11 Apr 2017 19:51:58 +0200") Message-ID: <87r30y23f5.fsf@openmailbox.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" 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: Mathieu Othacehe Cc: 26448@debbugs.gnu.org --=-=-= Content-Type: text/plain Mathieu Othacehe writes: > * gnu/packages/emacs.scm (emacs-strace-mode): New variable. > --- > gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index ff33daf71..9fdbcad7f 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -4137,3 +4137,25 @@ abbreviation of the mode line displays (lighters) of minor modes.") > configuration in your @file{.emacs} file in a way that is both > performance-oriented and tidy.") > (license license:gpl2+))) > + > +(define-public emacs-strace-mode > + (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11") > + (revision "1")) > + (package > + (name "emacs-strace-mode") > + (version (string-append "0.0.2-" revision "." (string-take commit 7))) > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/pkmoore/strace-mode") > + (commit commit))) > + (file-name (string-append name "-" version "-checkout")) > + (sha256 > + (base32 > + "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f")))) > + (build-system emacs-build-system) > + (home-page "https://github.com/pkmoore/strace-mode") > + (synopsis "Emacs major mode to highlight strace outputs") > + (description "@code{emacs-strace-mode} provides an Emacs major mode > + highlighting strace outputs.") > + (license license:gpl3+)))) Pushed to master. Thanks for the package! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEg7ZwOtzKO2lLzi2m5qXuPBlGeg0FAljtIy4ACgkQ5qXuPBlG eg0nDA//ZGizZMpwYzpgfPBxB5+ANfdb8sFyW0YgACLEn6Sf+lqSdD6XyTLWQJ6m kgi3qBWBIpYKznR6zPyRVtyrJ8RxVJhg6Lm3If2f/WUfih1qPXTwHuD3FjhBZ30e nsyOVgbFa2IctzCMma8d4MGHD7/9DJ8AeMuQtmGPHeDdEVPhjgSgEvR6N4uCv/bN i5GJHP74+s60s6v/VmnacvqsGWrGOoH2Bt9Uv6gw6CWHOVIW3/AUpn4G8pwdC6bj ndujXFygCfuN4rG6cznLJfzlTWAxpPHOTJ7PNS975Pp4uw28P8+w1FsBykk7zZ8H GPWfzhhlu7oOEE6crIi4JLKx3DC9p7sSL9Zh3WjzewoSU0ooVCzlHCcv7EDbJqd4 jsZD9McrRaDMJsCeWBCQKQCXFMNV+x5X8fjA7PY5MB/jSuOyEtYnwiFpoTl1H4LS 36w8oFdCKutFbEvxc6I9JddeafRquQRDYXb2wD0C3lmBaZQmMyySveq2yqx/Aibx zESZwzyW2fC+soNXzOsKESibaTS/HttNqvYJiXaiNDsI57onag3Rd1B5CCi5G9tR 0XPLWy6BX1CXXLCAqHlL0q36YcHtmqTb1jDlBy/E2pY+ErM7hiHpfYhTIdkBPC84 VgQ2QaEjRdP4lHbr+e9+hO93tKIP4Bphx5vVvkttOOXmh8CEBdU= =Oy0c -----END PGP SIGNATURE----- --=-=-=--