From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:43046) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXGlz-0000fI-AN for guix-patches@gnu.org; Sat, 01 Jun 2019 23:03:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hXGly-0003KN-5t for guix-patches@gnu.org; Sat, 01 Jun 2019 23:03:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53870) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hXGly-0003KI-3B for guix-patches@gnu.org; Sat, 01 Jun 2019 23:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hXGlx-0006XT-TA for guix-patches@gnu.org; Sat, 01 Jun 2019 23:03:01 -0400 Subject: [bug#36050] [PATCH] gnu: Add emacs-xterm-color Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:42977) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXGlZ-0000eb-WC for guix-patches@gnu.org; Sat, 01 Jun 2019 23:02:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hXGlY-00031z-Sq for guix-patches@gnu.org; Sat, 01 Jun 2019 23:02:37 -0400 Received: from wout3-smtp.messagingengine.com ([64.147.123.19]:33315) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hXGlY-0002yG-90 for guix-patches@gnu.org; Sat, 01 Jun 2019 23:02:36 -0400 From: Jonathan Frederickson Date: Sat, 1 Jun 2019 22:59:56 -0400 Message-Id: <20190602025956.1666-1-jonathan@terracrypt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 36050@debbugs.gnu.org Cc: Jonathan Frederickson * gnu/packages/emacs-xyz.scm: (emacs-xterm-color) new variable. --- gnu/packages/emacs-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9199b45e40..70dd9e599b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -15620,3 +15620,21 @@ verb commands which would are normally destructive (such as deletion) are provided. Those alternative commands are and bound by default to their corresponding Evil keys.") (license license:expat)))) + +(define-public emacs-xterm-color + (package + (name "emacs-xterm-color") + (version "20190519.1243") + (source (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/xterm-color-" + version + ".el")) + (sha256 + (base32 "0cdl8cpqv3x23y4vpfib4kjncy9xslvka04gpszdnasf7av5g8g7")))) + (build-system emacs-build-system) + (home-page "https://github.com/atomontage/xterm-color") + (synopsis "ANSI & xterm-256 color text property translator for Emacs") + (description "@code{xterm-color.el} is an ANSI control sequence to text-property translator") + (license license:bsd-2))) -- 2.21.0