GNU bug report logs - #60862
[PATCH] gnu: emacs-org-present: Update to 20220806-1.4ec04e1.

Previous Next

Package: guix-patches;

Reported by: Cayetano Santos <csantosb <at> inventati.org>

Date: Mon, 16 Jan 2023 15:49:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 60862 in the body.
You can then email your comments to 60862 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#60862; Package guix-patches. (Mon, 16 Jan 2023 15:49:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Cayetano Santos <csantosb <at> inventati.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 16 Jan 2023 15:49:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Cayetano Santos <csantosb <at> inventati.org>
To: guix-patches <at> gnu.org
Cc: Cayetano Santos <csantosb <at> inventati.org>
Subject: [PATCH] gnu: emacs-org-present: Update to 20220806-1.4ec04e1.
Date: Mon, 16 Jan 2023 16:48:18 +0100
* gnu/packages/emacs-xyz.scm (emacs-org-present): Update to 20220806-1.4ec04e1.
---
 gnu/packages/emacs-xyz.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5f60d82ad5..e461f0f598 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31233,10 +31233,11 @@ (define-public emacs-shrink-path
     (license license:gpl3+)))
 
 (define-public emacs-org-present
-  (let ((commit "d13acd70eff6a1608bc991920232146a0de76b21"))
+  (let ((commit "4ec04e1b77dea76d7c30066ccf3200d2e0b7bee9")
+        (revision "1"))
     (package
       (name "emacs-org-present")
-      (version "0.0.1")
+      (version (git-version "20220806" revision commit))
       (source
        (origin
          (method git-fetch)
@@ -31246,13 +31247,14 @@ (define-public emacs-org-present
          (file-name (git-file-name name version))
          (sha256
           (base32
-           "0jz8xiny3rv9ql0p623byz32pip1b82j2c2nyfz2wd114kiabb6q"))))
+           "0bcrgwc80968zx52lwg71cs7v2yrygynzbnrakxdja1l5a6h3xy6"))))
       (build-system emacs-build-system)
-      (synopsis "Ultra-minimalist presentation minor-mode for Emacs org-mode")
+      (propagated-inputs (list emacs-org))
+      (synopsis "Minimalist presentation minor-mode for Emacs org-mode.")
       (description "Org-present is an extremely minimalist presentation tool
 for Emacs org-mode.  Simply layout your presentation with each slide under a
-top-level header, start the minor mode with @code{org-present}, and page through
-each slide with left/right keys.")
+top-level header, start the minor mode with @code{org-present}, and page
+through each slide with left/right keys.")
       (home-page "https://github.com/rlister/org-present")
       (license license:gpl2))))
 

base-commit: 238f965c331990459a69cbc713ca951ad40e6044
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60862; Package guix-patches. (Fri, 20 Jan 2023 23:36:02 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
Cc: 60862-done <at> debbugs.gnu.org, Cayetano Santos <csantosb <at> inventati.org>
Subject: Re: [bug#60862] [PATCH] gnu: emacs-org-present: Update to
 20220806-1.4ec04e1.
Date: Sat, 21 Jan 2023 00:35:24 +0100
Hello,

Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-org-present): Update to
> 20220806-1.4ec04e1.

Thank you. Applied with changes noted below.

>      (package
>        (name "emacs-org-present")
> -      (version "0.0.1")
> +      (version (git-version "20220806" revision commit))

The official release number is "0.1", not "20220806".

>        (source
>         (origin
>           (method git-fetch)
> @@ -31246,13 +31247,14 @@ (define-public emacs-org-present
>           (file-name (git-file-name name version))
>           (sha256
>            (base32
> -           "0jz8xiny3rv9ql0p623byz32pip1b82j2c2nyfz2wd114kiabb6q"))))
> +           "0bcrgwc80968zx52lwg71cs7v2yrygynzbnrakxdja1l5a6h3xy6"))))
>        (build-system emacs-build-system)
> -      (synopsis "Ultra-minimalist presentation minor-mode for Emacs org-mode")
> +      (propagated-inputs (list emacs-org))
> +      (synopsis "Minimalist presentation minor-mode for Emacs org-mode.")

org-mode -> Org mode

I also removed the final full stop in synopsis.

>        (description "Org-present is an extremely minimalist presentation tool
>  for Emacs org-mode.  Simply layout your presentation with each slide
>  under a

Emacs Org mode. 

> -top-level header, start the minor mode with @code{org-present}, and page through
> -each slide with left/right keys.")
> +top-level header, start the minor mode with @code{org-present}, and page
> +through each slide with left/right keys.")

... Left and Right keys.

>        (home-page "https://github.com/rlister/org-present")
>        (license license:gpl2))))

License is actually gpl3+.

Regards,
-- 
Nicolas Goaziou




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Fri, 20 Jan 2023 23:36:02 GMT) Full text and rfc822 format available.

Notification sent to Cayetano Santos <csantosb <at> inventati.org>:
bug acknowledged by developer. (Fri, 20 Jan 2023 23:36:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 18 Feb 2023 12:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 61 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.