From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51248) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j90mk-0002P1-Cc for guix-patches@gnu.org; Tue, 03 Mar 2020 01:12:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j90mg-0002Bn-9f for guix-patches@gnu.org; Tue, 03 Mar 2020 01:12:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60891) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j90mg-0002Bf-6A for guix-patches@gnu.org; Tue, 03 Mar 2020 01:12:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j90mg-0000VJ-1z for guix-patches@gnu.org; Tue, 03 Mar 2020 01:12:02 -0500 Subject: [bug#39878] gnu: add emacs-bookmarks+ Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:51154) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j90m9-0002D1-NW for guix-patches@gnu.org; Tue, 03 Mar 2020 01:11:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j90m8-0001wy-2P for guix-patches@gnu.org; Tue, 03 Mar 2020 01:11:29 -0500 Received: from knopi.disroot.org ([178.21.23.139]:50284) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j90m7-0001wQ-IN for guix-patches@gnu.org; Tue, 03 Mar 2020 01:11:28 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id B2E102CAA0 for ; Tue, 3 Mar 2020 07:11:24 +0100 (CET) Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YnJqSKO2GBkT for ; Tue, 3 Mar 2020 07:11:23 +0100 (CET) From: nly@disroot.org (Amar M. Singh) Date: Tue, 03 Mar 2020 11:41:13 +0530 Message-ID: <85lfoiezni.fsf@disroot.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 39878@debbugs.gnu.org --=-=-= Content-Type: text/plain Add package emacs-bookmarks+. Can someone help me with this build? Bookmarks+ requiers bookmarks+-mac.el to be loaded to be able to compile the other files. Emacswiki: https://www.emacswiki.org/emacs/BookmarkPlus Richer bookmarks. They record more. They are more accurate. Thanks, Amar --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-bookmark.patch >From e2b74ed78da1d24206847fe94fb885ff46cac563 Mon Sep 17 00:00:00 2001 From: Amar Singh Date: Tue, 3 Mar 2020 10:55:16 +0530 Subject: [PATCH] gnu: Add emacs-bookmark+. * gnu/packages/emacs-xyz.scm (emacs-bookmark+): New variable. --- gnu/packages/emacs-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index be0e6a84c2..1ac5f77bb7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -21536,3 +21536,39 @@ Values are stored in a directory in @code{user-emacs-directory}, using one file per value. This makes it easy to delete or remove unused variables.") (license license:gpl3+))) + +(define-public emacs-bookmark+ + (package + (name "emacs-bookmark+") + (version "2020.01.22") + (source (origin + (method url-fetch) + (uri (map (lambda (x) + (string-append + "https://www.emacswiki.org/emacs/download/" x)) + `("bookmark+.el" + "bookmark+-mac.el" + "bookmark+-bmu.el" + "bookmark+-key.el" + "bookmark+-lit.el" + "bookmark+-1.el"))) + (sha256 + (base32 + "1dkpszmflik3yhv05w8rvi6vz1mzgapncb5y231r6mwy40rphyhi")))) + (build-system emacs-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'build 'build-mac + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (invoke "emacs" "-Q" "--batch" + "--eval='(byte-compile-file \"bookmark+-mac.el\"'"))))))) + (home-page "https://www.emacswiki.org/emacs/bookmark%2b.el") + (synopsis "Bookmark+: extensions to standard library `bookmark.el'") + (description "Bookmark+ builds on vanilla Emacs bookmarks. An optional +bookmark annotation is user-supplied text that is saved as part of the +bookmark. You can tag bookmarks. You can have multiple bookmarks with the +same name. Bookmarks record the number of times you have visited them and the +time of the last visit.") + (license license:gpl3+))) -- 2.25.1 --=-=-=--