From unknown Sun Jun 22 07:55:57 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46928] [PATCH] gnu: Add emacs-stig-paren. Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 04 Mar 2021 19:42:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 46928 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 46928@debbugs.gnu.org Cc: Stefan =?UTF-8?Q?Reich=C3=B6r?= X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.161488686730369 (code B ref -1); Thu, 04 Mar 2021 19:42:02 +0000 Received: (at submit) by debbugs.gnu.org; 4 Mar 2021 19:41:07 +0000 Received: from localhost ([127.0.0.1]:60282 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lHtqM-0007tk-Lq for submit@debbugs.gnu.org; Thu, 04 Mar 2021 14:41:07 -0500 Received: from lists.gnu.org ([209.51.188.17]:44650) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lHtqI-0007tX-KA for submit@debbugs.gnu.org; Thu, 04 Mar 2021 14:41:05 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:48340) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lHtqI-0001YV-DR for guix-patches@gnu.org; Thu, 04 Mar 2021 14:41:02 -0500 Received: from dd3624.kasserver.com ([85.13.130.11]:59520) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lHtqG-0007H2-8p for guix-patches@gnu.org; Thu, 04 Mar 2021 14:41:02 -0500 Received: from localhost (217-149-162-201.nat.highway.telekom.at [217.149.162.201]) by dd3624.kasserver.com (Postfix) with ESMTPA id 58FDE5D4004C; Thu, 4 Mar 2021 20:40:55 +0100 (CET) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Date: Thu, 4 Mar 2021 20:40:25 +0100 Message-Id: <20210304194025.93692-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@xsteve.at; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/emacs-xyz.scm (emacs-stig-paren): New variable. --- gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 783f7790e9..85a612296c 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -93,6 +93,7 @@ ;;; Copyright © 2021 Alexandr Vityazev ;;; Copyright © 2021 Yurii Kholodkov ;;; Copyright © 2021 Alexey Abramov +;;; Copyright © 2021 Stefan Reichör ;;; ;;; This file is part of GNU Guix. ;;; @@ -385,6 +386,25 @@ for those who may want transient periods of unbalanced parentheses, such as when typing parentheses directly or commenting out code line by line.") (license license:gpl3+))) +(define-public emacs-stig-paren + (package + (name "emacs-stig-paren") + (version "1.22") + (source (origin + (method url-fetch) + (uri (string-append "http://nicolas.francois.free.fr/" + "fichiers/emacs/stig-paren.el")) + (sha256 + (base32 + "1k4rd4k53c671akssza91p0d7psxagizc74nka3hi1pjkybmw6mn")))) + (build-system emacs-build-system) + (home-page "http://nicolas.francois.free.fr/fichiers/emacs/stig-paren.el") + (synopsis "Highlight matching parens for Emacs") + (description + "This package highlights matching parens (or whole sexps) for easier +editing of source code, particularly lisp source code.") + (license license:gpl2+))) + (define-public emacs-project (package (name "emacs-project") -- 2.25.1 From unknown Sun Jun 22 07:55:57 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46928] [PATCH] gnu: Add emacs-stig-paren. Resent-From: Nicolas Goaziou Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 05 Mar 2021 16:13:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 46928 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Stefan =?UTF-8?Q?Reich=C3=B6r?= Cc: 46928@debbugs.gnu.org Received: via spool by 46928-submit@debbugs.gnu.org id=B46928.161496075220371 (code B ref 46928); Fri, 05 Mar 2021 16:13:02 +0000 Received: (at 46928) by debbugs.gnu.org; 5 Mar 2021 16:12:32 +0000 Received: from localhost ([127.0.0.1]:35244 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lID44-0005IU-L7 for submit@debbugs.gnu.org; Fri, 05 Mar 2021 11:12:32 -0500 Received: from relay11.mail.gandi.net ([217.70.178.231]:48473) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lID43-0005IG-1H for 46928@debbugs.gnu.org; Fri, 05 Mar 2021 11:12:31 -0500 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 009B0100008; Fri, 5 Mar 2021 16:12:23 +0000 (UTC) From: Nicolas Goaziou References: <20210304194025.93692-1-stefan@xsteve.at> Date: Fri, 05 Mar 2021 17:12:22 +0100 In-Reply-To: <20210304194025.93692-1-stefan@xsteve.at> ("Stefan =?UTF-8?Q?Reich=C3=B6r?="'s message of "Thu, 4 Mar 2021 20:40:25 +0100") Message-ID: <874khpful5.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hello, Stefan Reich=C3=B6r writes: > * gnu/packages/emacs-xyz.scm (emacs-stig-paren): New variable. Thank you. I think there is an issue with this library: old revisions are not kept around and file name is not versioned. It is unlikely it is updated anytime soon, but if that ever happens, package definition will break. Considering the features it provides has been part of Emacs for a long time now (IIUC), do you think it is worth including? Regards, --=20 Nicolas Goaziou From unknown Sun Jun 22 07:55:57 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46928] [PATCH] gnu: Add emacs-stig-paren. Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 05 Mar 2021 20:01:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 46928 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Nicolas Goaziou Cc: 46928@debbugs.gnu.org Received: via spool by 46928-submit@debbugs.gnu.org id=B46928.161497440210976 (code B ref 46928); Fri, 05 Mar 2021 20:01:01 +0000 Received: (at 46928) by debbugs.gnu.org; 5 Mar 2021 20:00:02 +0000 Received: from localhost ([127.0.0.1]:35510 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIGcD-0002qq-Mp for submit@debbugs.gnu.org; Fri, 05 Mar 2021 15:00:02 -0500 Received: from dd3624.kasserver.com ([85.13.130.11]:46520) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIGcC-0002qP-Bu for 46928@debbugs.gnu.org; Fri, 05 Mar 2021 15:00:01 -0500 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id 695CE5D401EB; Fri, 5 Mar 2021 20:59:58 +0100 (CET) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= In-Reply-To: <874khpful5.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Fri, 05 Mar 2021 17:12:22 +0100") References: <20210304194025.93692-1-stefan@xsteve.at> <874khpful5.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) Date: Fri, 05 Mar 2021 20:59:57 +0100 Message-ID: <87a6rhz802.fsf@xsteve.at> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Nicolas! > Hello, > > Stefan Reich=C3=B6r writes: > >> * gnu/packages/emacs-xyz.scm (emacs-stig-paren): New variable. > > Thank you. > > I think there is an issue with this library: old revisions are not kept > around and file name is not versioned. It is unlikely it is updated > anytime soon, but if that ever happens, package definition will break. > > Considering the features it provides has been part of Emacs for a long > time now (IIUC), do you think it is worth including? Thanks for your hint. I use stig-paren.el since more than 20 years. I guess it worked better than the built-in show-paren-mode these days. I thought it would be great to have all my emacs packages as part of guix. Now I tried show-paren-mode again. Here is what I came up with as stig-paren.el replacement: ,---- | (setq show-paren-style 'expression) | (face-spec-set 'show-paren-match-expression '((t (:inherit show-paren-mat= ch :background "pale green")))) | (show-paren-mode 1) `---- That way my .emacs has grown a bit, but I no longer need stig-paren.el ;-) You are correct, there is no need to add stig-paren.el to guix. By the way: thanks for applying my other patches. Thanks Stefan. From unknown Sun Jun 22 07:55:57 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46928] [PATCH] gnu: Add emacs-stig-paren. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 05 Mar 2021 20:36:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 46928 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Nicolas Goaziou Cc: 46928@debbugs.gnu.org, Stefan =?UTF-8?Q?Reich=C3=B6r?= Received: via spool by 46928-submit@debbugs.gnu.org id=B46928.161497650214280 (code B ref 46928); Fri, 05 Mar 2021 20:36:02 +0000 Received: (at 46928) by debbugs.gnu.org; 5 Mar 2021 20:35:02 +0000 Received: from localhost ([127.0.0.1]:35547 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIHA5-0003iD-MJ for submit@debbugs.gnu.org; Fri, 05 Mar 2021 15:35:01 -0500 Received: from mail-qk1-f170.google.com ([209.85.222.170]:42502) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIHA3-0003hu-RU for 46928@debbugs.gnu.org; Fri, 05 Mar 2021 15:35:00 -0500 Received: by mail-qk1-f170.google.com with SMTP id z190so3313455qka.9 for <46928@debbugs.gnu.org>; Fri, 05 Mar 2021 12:34:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=Zwqt2Ln/98Q4HsmTcrVAXzmC9hvQOfjEXFF7Wsg9p2o=; b=oTfvfnPqyQTFWdg+oIHM/KHCgFJ2yRPq01yoepe9HWYrAX74ide+98DQwGrMZtdPHb bt76ndMq24UxWcz9f40tHm0i1kUz+MOoWfU4tAANSMfLlN0Dl30N3sJtk055NgNg9L39 7Au9BJ4tQeB1JvQJ6pES4P2L++AtuDRwI35kUH13NkJZyFBN3DVZEPpO0x3fyQNeu0b1 lKMCiI94p5WqQ2YY2r2V2KS8SUcbIqByfUNULQrAFC7ft1KKAVe1K0vGqMlI2KVKmFhh xI6cIQEu/7msqzsYh43kj1+rRQf26kTp+wph7VENmRTWHy1xL1PxdwFvoVC7I2vyM4TX /D/w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=Zwqt2Ln/98Q4HsmTcrVAXzmC9hvQOfjEXFF7Wsg9p2o=; b=YwQy0PeCguKGSYs/f8T/auIv+7K3kmgzzS85w5PJmw+Wrbqgi70YKaH6KnZPLP64us +P8/7VGLMxEskIwGITqqF+PQ1A//FFP8scvpAGpmeg3HWBn+fV4f3Mrkjxm5ilYWglH/ Eh+yCNNz/KYyX3akhpQ57uISG9AWiv/C+ZgGWhaCqmU8u3JCP+BqFv8XpA66rzfJ3+Kw 76cmoWTyQ25QrF/X5sz/B/wlOdb/nqyjkIjB2cp0iMhs81SRF74bY6WqtEHrYSuQiPsH WKN9EwjTGaArcOs604Ya8C3YOTDUOgoRZZHVdCr5XP+WAeN3nxZ+R5Uk7O2dNvbbONtc 5lWg== X-Gm-Message-State: AOAM53140xdsZFaHD7Az+EHpm5BxnAy2h+dOCmPLMLxR0BBLKYiEausa PrMVUtaajMMJvOEvg5fWc9KkwV/2EAK7/Qx20FtP0ps1RCE= X-Google-Smtp-Source: ABdhPJzuYAjfTER+X96zGnBB6UF/9gvlunLDgr49k7bwXuLEj0Ecfmu3hQ6dJ47olK8Vlzcz25RN/d/Jj89W+zJbOWg= X-Received: by 2002:a05:620a:630:: with SMTP id 16mr11665344qkv.304.1614976494236; Fri, 05 Mar 2021 12:34:54 -0800 (PST) MIME-Version: 1.0 References: <20210304194025.93692-1-stefan@xsteve.at> <874khpful5.fsf@nicolasgoaziou.fr> In-Reply-To: <874khpful5.fsf@nicolasgoaziou.fr> From: zimoun Date: Fri, 5 Mar 2021 21:34:43 +0100 Message-ID: Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Nicolas, On Fri, 5 Mar 2021 at 17:13, Nicolas Goaziou wrote: > I think there is an issue with this library: old revisions are not kept > around and file name is not versioned. It is unlikely it is updated > anytime soon, but if that ever happens, package definition will break. I think it is the same story as . A mechanism to fallback to an archiver (say SWH) seems missing. BTW, I have no opinion about the inclusion of the package at hand. :-) Cheers, simon From unknown Sun Jun 22 07:55:57 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Stefan =?UTF-8?Q?Reich=C3=B6r?= Subject: bug#46928: closed (Re: [bug#46928] [PATCH] gnu: Add emacs-stig-paren.) Message-ID: References: <87senrxcz4.fsf@nicolasgoaziou.fr> <20210304194025.93692-1-stefan@xsteve.at> X-Gnu-PR-Message: they-closed 46928 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 46928@debbugs.gnu.org Date: Wed, 05 Mar 2025 23:42:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1741218122-8202-1" This is a multi-part message in MIME format... ------------=_1741218122-8202-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #46928: [PATCH] gnu: Add emacs-stig-paren. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 46928@debbugs.gnu.org. --=20 46928: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D46928 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1741218122-8202-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 46928-done) by debbugs.gnu.org; 5 Mar 2025 23:41:29 +0000 Received: from localhost ([127.0.0.1]:40365 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tpyMi-00027S-Vs for submit@debbugs.gnu.org; Wed, 05 Mar 2025 18:41:29 -0500 Received: from msg-1.mailo.com ([213.182.54.11]:51662 helo=mailo.com) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tpyMg-00027A-Hi for 46928-done@debbugs.gnu.org; Wed, 05 Mar 2025 18:41:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=nicolasgoaziou.fr; s=mailo; t=1741218079; bh=CCGGB3d9Z8JNc5pFDFURSFfpEdxbtu8hhKafBb6QEmY=; h=X-EA-Auth:From:To:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type:Content-Transfer-Encoding; b=UlqYpvH2Iz/grgEGy8Nxa2QieHqQB9tJrHL2MBP8pCQKrgBAS/dqKdEFuhTrByG6O 5Ad+8nLYSF4aTLrOLhAMHtKinbC71U+VxDZax6JliEvgnzjpMjf4BS77Z6DM64giKb e3aFIq0GufFRZhqX9J4+m7hYvUjOqilkwySR/g4k= Received: by b221-9.in.mailobj.net [192.168.90.29] with ESMTP via ip-20.mailobj.net [213.182.54.20] Thu, 6 Mar 2025 00:41:19 +0100 (CET) X-EA-Auth: upFXTA/ilW7gj+lhg4+dhv37gSBNMtTifkKRiLGmtn9I1Cv7f8vtQd0FkOpMkrEZrL1IZRCIB8AiWyD/XYPqHI2aHUww857fpcaGR0LZVo8= From: Nicolas Goaziou To: 46928-done@debbugs.gnu.org Subject: Re: [bug#46928] [PATCH] gnu: Add emacs-stig-paren. In-Reply-To: <87a6rhz802.fsf@xsteve.at> ("Stefan =?utf-8?Q?Reich=C3=B6r=22?= =?utf-8?Q?'s?= message of "Fri, 05 Mar 2021 20:59:57 +0100") References: <20210304194025.93692-1-stefan@xsteve.at> <874khpful5.fsf@nicolasgoaziou.fr> <87a6rhz802.fsf@xsteve.at> Date: Thu, 06 Mar 2025 00:41:03 +0100 Message-ID: <87senrxcz4.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 46928-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Stefan Reich=C3=B6r writes: > You are correct, there is no need to add stig-paren.el to guix. Closing (finally!). ------------=_1741218122-8202-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 4 Mar 2021 19:41:07 +0000 Received: from localhost ([127.0.0.1]:60282 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lHtqM-0007tk-Lq for submit@debbugs.gnu.org; Thu, 04 Mar 2021 14:41:07 -0500 Received: from lists.gnu.org ([209.51.188.17]:44650) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lHtqI-0007tX-KA for submit@debbugs.gnu.org; Thu, 04 Mar 2021 14:41:05 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:48340) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lHtqI-0001YV-DR for guix-patches@gnu.org; Thu, 04 Mar 2021 14:41:02 -0500 Received: from dd3624.kasserver.com ([85.13.130.11]:59520) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lHtqG-0007H2-8p for guix-patches@gnu.org; Thu, 04 Mar 2021 14:41:02 -0500 Received: from localhost (217-149-162-201.nat.highway.telekom.at [217.149.162.201]) by dd3624.kasserver.com (Postfix) with ESMTPA id 58FDE5D4004C; Thu, 4 Mar 2021 20:40:55 +0100 (CET) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-stig-paren. Date: Thu, 4 Mar 2021 20:40:25 +0100 Message-Id: <20210304194025.93692-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@xsteve.at; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Stefan=20Reich=C3=B6r?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/emacs-xyz.scm (emacs-stig-paren): New variable. --- gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 783f7790e9..85a612296c 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -93,6 +93,7 @@ ;;; Copyright © 2021 Alexandr Vityazev ;;; Copyright © 2021 Yurii Kholodkov ;;; Copyright © 2021 Alexey Abramov +;;; Copyright © 2021 Stefan Reichör ;;; ;;; This file is part of GNU Guix. ;;; @@ -385,6 +386,25 @@ for those who may want transient periods of unbalanced parentheses, such as when typing parentheses directly or commenting out code line by line.") (license license:gpl3+))) +(define-public emacs-stig-paren + (package + (name "emacs-stig-paren") + (version "1.22") + (source (origin + (method url-fetch) + (uri (string-append "http://nicolas.francois.free.fr/" + "fichiers/emacs/stig-paren.el")) + (sha256 + (base32 + "1k4rd4k53c671akssza91p0d7psxagizc74nka3hi1pjkybmw6mn")))) + (build-system emacs-build-system) + (home-page "http://nicolas.francois.free.fr/fichiers/emacs/stig-paren.el") + (synopsis "Highlight matching parens for Emacs") + (description + "This package highlights matching parens (or whole sexps) for easier +editing of source code, particularly lisp source code.") + (license license:gpl2+))) + (define-public emacs-project (package (name "emacs-project") -- 2.25.1 ------------=_1741218122-8202-1--