From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 21 09:14:52 2023 Received: (at submit) by debbugs.gnu.org; 21 Apr 2023 13:14:52 +0000 Received: from localhost ([127.0.0.1]:39607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppqbD-0005ge-Na for submit@debbugs.gnu.org; Fri, 21 Apr 2023 09:14:52 -0400 Received: from lists.gnu.org ([209.51.188.17]:32778) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppqbC-0005gX-Fr for submit@debbugs.gnu.org; Fri, 21 Apr 2023 09:14:50 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ppqbC-00088i-76 for guix-patches@gnu.org; Fri, 21 Apr 2023 09:14:50 -0400 Received: from mout01.posteo.de ([185.67.36.65]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ppqb8-0000hk-GR for guix-patches@gnu.org; Fri, 21 Apr 2023 09:14:49 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 33C7D2401DC for ; Fri, 21 Apr 2023 15:14:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1682082884; bh=/bcOpyVl7Z8OxBNs3EjVUQbhJC+8Z10vCnUKNVnIpVU=; h=From:To:Cc:Subject:Date:From; b=gOrShzORl6f8/rMAK8CjuLf0jtJuyyzW/2aowRE3MJG634xfXX5R+civjclKTMyEm Yzdrm5pFoIYKdGUWQMvq4Nm16rkhJ7zCBgTILDnXit+LS7tdZ5yKn/UrEtNDqJOxue qAQB2G+4gFLHHez/jVDE7K5p7RiM1wuZQkCi6xlVNqV1zoX0UmYn/PvjehwDYQJEHh X0fJPqGL5jFz7gbbz2j9oFRguh9flPR1nBqEbgexnQbHRrWLbbKMi0vMCenpwBGBJC fExSUwd23dvFVyFGfNWv1p8Mq1bapQgg7mZvqzSL1UxRCIkBWE1eiGlamj5T+m4rFv dP5Arl/Q/SuDQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Q2w3l07C6z9rxV; Fri, 21 Apr 2023 15:14:42 +0200 (CEST) From: kyle To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-bookmark-plus Date: Fri, 21 Apr 2023 13:14:40 +0000 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=kyle@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Kyle Andrews 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: -2.3 (--) From: Kyle Andrews --- gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6618aac332..6522012cdd 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -349,6 +349,29 @@ (define-public emacs-ace-jump-helm-line "This package allows using Ace jump to a candidate in Helm window.") (license license:gpl3+)))) +(define-public emacs-bookmark-plus + (package + (name "emacs-bookmark-plus") + (version "2022.11.05") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacsmirror/bookmark-plus") + (commit "3db369056a722c42b3eafd10a91831f87d056dfa"))) + (sha256 + (base32 + "0fnq24f597zfr8jj5h3vr87kdil5lhy11m81q6ayqc03qm0jymrf")))) + (build-system emacs-build-system) + (home-page "https://github.com/emacsmirror/bookmark-plus") + (synopsis "Extensions to the bookmark.el library in Emacs") + (description + "Bookmarks are a powerful Emacs feature. This package makes them even more +versatile. You can bookmark many more kinds of data. You can add tags. There +are many more ways to organize and display your bookmarks. I recommend reading +the extensive documentation about BookmarkPlus on the Emacs Wiki.") + (license license:gpl3))) + (define-public emacs-cfrs (package (name "emacs-cfrs") -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 21 10:05:54 2023 Received: (at 62993) by debbugs.gnu.org; 21 Apr 2023 14:05:54 +0000 Received: from localhost ([127.0.0.1]:40864 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pprOc-0007Pz-1G for submit@debbugs.gnu.org; Fri, 21 Apr 2023 10:05:54 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:58985) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pprOZ-0007Pk-Ty for 62993@debbugs.gnu.org; Fri, 21 Apr 2023 10:05:52 -0400 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id 2F4B46000D; Fri, 21 Apr 2023 14:05:44 +0000 (UTC) From: Nicolas Goaziou To: kyle Subject: Re: [bug#62993] [PATCH] gnu: Add emacs-bookmark-plus References: Date: Fri, 21 Apr 2023 16:05:44 +0200 In-Reply-To: (kyle@posteo.net's message of "Fri, 21 Apr 2023 13:14:40 +0000") Message-ID: <87mt312uvb.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 62993 Cc: 62993@debbugs.gnu.org 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, kyle writes: > +(define-public emacs-bookmark-plus > + (package > + (name "emacs-bookmark-plus") > + (version "2022.11.05") > + (source > + (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/emacsmirror/bookmark-plus") > + (commit "3db369056a722c42b3eafd10a91831f87d056dfa"))) > + (sha256 > + (base32 > + "0fnq24f597zfr8jj5h3vr87kdil5lhy11m81q6ayqc03qm0jymrf")))) Nitpick: indentation is a bit off here. > + (build-system emacs-build-system) > + (home-page "https://github.com/emacsmirror/bookmark-plus") > + (synopsis "Extensions to the bookmark.el library in Emacs") Nitpick: Bookmark (the library) instead of "bookmark.el" (the file). > + (description > + "Bookmarks are a powerful Emacs feature. This package makes them even more > +versatile. You can bookmark many more kinds of data. You can add tags. There > +are many more ways to organize and display your bookmarks. I recommend reading > +the extensive documentation about BookmarkPlus on the Emacs Wiki.") Guix usually puts two spaces between sentences. > + (license license:gpl3))) License is actually GPL3+. Otherwise, LGTM. Regards, -- Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 21 10:09:34 2023 Received: (at 62993) by debbugs.gnu.org; 21 Apr 2023 14:09:34 +0000 Received: from localhost ([127.0.0.1]:40869 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pprSA-0007VD-Lr for submit@debbugs.gnu.org; Fri, 21 Apr 2023 10:09:34 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:46837) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pprS9-0007V0-Et for 62993@debbugs.gnu.org; Fri, 21 Apr 2023 10:09:34 -0400 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id E1A73C0008; Fri, 21 Apr 2023 14:09:26 +0000 (UTC) From: Nicolas Goaziou To: kyle Subject: Re: [bug#62993] [PATCH] gnu: Add emacs-bookmark-plus References: <87mt312uvb.fsf@nicolasgoaziou.fr> Date: Fri, 21 Apr 2023 16:09:26 +0200 In-Reply-To: <87mt312uvb.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Fri, 21 Apr 2023 16:05:44 +0200") Message-ID: <87ildp2up5.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 62993 Cc: 62993@debbugs.gnu.org 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 (-) Nicolas Goaziou writes: > Otherwise, LGTM. And thanks for the patch, of course! From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 21 18:00:55 2023 Received: (at 62993) by debbugs.gnu.org; 21 Apr 2023 22:00:56 +0000 Received: from localhost ([127.0.0.1]:41338 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppyoJ-0006r5-KE for submit@debbugs.gnu.org; Fri, 21 Apr 2023 18:00:55 -0400 Received: from mout01.posteo.de ([185.67.36.65]:45407) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ppyoI-0006qr-5d for 62993@debbugs.gnu.org; Fri, 21 Apr 2023 18:00:54 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 8EDF12401F1 for <62993@debbugs.gnu.org>; Sat, 22 Apr 2023 00:00:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1682114447; bh=SoocfdtqpEnba7J+KFn6TgJiMqo+HOFBJeD1P1tHAkM=; h=From:To:Cc:Subject:Date:From; b=As0G3eV0Eajr4LnawjTZbIwTWNlcBTD0UheGohWuEkxMGs7YJ4mUjUvpnkddhyw2M FL/BpLuRA9fBhVC4qMK6KKg0iQMFhP5z9C/Joe6lX4X2w6RpUuX5lR8ETtCbQXexrI 7DRFQChGZgaGdo6YQYfUDxgbD8J2NCfG7SFSwzLVCthwcIlOkQ0rpVGkP03wcAXO6u CANxi84ipQvBXj6+zAD2OhmoC9GM8TJcn1kI2USIUacIW7rP6ldGRFWRZTCl3IHLUV 7sS9MQnLFA/gMK08bhDYNj/bYBPM9dfbr5Ix70c7bsp+IXa4VQzet+4YgUubWn+Ns7 sLAf5NMD9CpAg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Q37kk0bvWz6tw9; Sat, 22 Apr 2023 00:00:45 +0200 (CEST) From: kyle To: 62993@debbugs.gnu.org Subject: [PATCH v2] gnu: Add emacs-bookmark-plus Date: Fri, 21 Apr 2023 22:00:43 +0000 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 62993 Cc: Kyle Andrews 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 (---) From: Kyle Andrews --- gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6618aac332..ff2bbf0bd7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -349,6 +349,29 @@ (define-public emacs-ace-jump-helm-line "This package allows using Ace jump to a candidate in Helm window.") (license license:gpl3+)))) +(define-public emacs-bookmark-plus + (package + (name "emacs-bookmark-plus") + (version "2022.11.05") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacsmirror/bookmark-plus") + (commit "3db369056a722c42b3eafd10a91831f87d056dfa"))) + (sha256 + (base32 + "0fnq24f597zfr8jj5h3vr87kdil5lhy11m81q6ayqc03qm0jymrf")))) + (build-system emacs-build-system) + (home-page "https://github.com/emacsmirror/bookmark-plus") + (synopsis "Extensions to the Bookmark library in Emacs") + (description + "Bookmarks are a powerful Emacs feature. This package makes them even +more versatile. You can bookmark many more kinds of data. You can add tags. +There are many more ways to organize and display your bookmarks. I recommend +reading the extensive documentation about BookmarkPlus on the Emacs Wiki.") + (license license:gpl3+))) + (define-public emacs-cfrs (package (name "emacs-cfrs") -- 2.39.2 From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 22 06:09:28 2023 Received: (at 62993-done) by debbugs.gnu.org; 22 Apr 2023 10:09:29 +0000 Received: from localhost ([127.0.0.1]:41885 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pqABM-0002ej-Jy for submit@debbugs.gnu.org; Sat, 22 Apr 2023 06:09:28 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:56097) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pqABL-0002eU-On for 62993-done@debbugs.gnu.org; Sat, 22 Apr 2023 06:09:28 -0400 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id C83DC20005; Sat, 22 Apr 2023 10:09:21 +0000 (UTC) From: Nicolas Goaziou To: kyle Subject: Re: [bug#62993] [PATCH v2] gnu: Add emacs-bookmark-plus References: Date: Sat, 22 Apr 2023 12:09:20 +0200 In-Reply-To: (kyle@posteo.net's message of "Fri, 21 Apr 2023 22:00:43 +0000") Message-ID: <87ildo1b5b.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 62993-done Cc: 62993-done@debbugs.gnu.org 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, kyle writes: > +(define-public emacs-bookmark-plus I normalized the commit message and applied your patch. Thank you. Regards, -- Nicolas Goaziou From unknown Sun Jun 22 08:03:47 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 20 May 2023 11:24:12 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator