* [bug#54638] [PATCH] gnu: emacs-poet-theme: Update to 16eb694.
@ 2022-03-30 16:17 jgart via Guix-patches via
2022-03-31 3:02 ` Maxim Cournoyer
2022-03-31 3:04 ` [bug#54638] [PATCH v2] " jgart via Guix-patches via
0 siblings, 2 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2022-03-30 16:17 UTC (permalink / raw)
To: 54638; +Cc: jgart
* gnu/packages/emacs-xyz.scm (emacs-poet-theme): Update to 16eb694.
---
gnu/packages/emacs-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9300ca0501..f8a44a1fef 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8269,7 +8269,7 @@ (define-public emacs-solarized-theme
(license license:gpl3+)))
(define-public emacs-poet-theme
- (let ((commit "d84f7b259cc9b6ff8d442cf4c38bd6c7065ff8f4")
+ (let ((commit "16eb694f0755c04c4db98614d0eca1199fddad70")
(revision "0"))
(package
(name "emacs-poet-theme")
@@ -8283,7 +8283,7 @@ (define-public emacs-poet-theme
(file-name (git-file-name name version))
(sha256
(base32
- "0a84jdaj619mb59a46dmkk2sfs42rylqk9ryl1drgs8d3lia79mz"))))
+ "0zm8jbviddyj7jnyssh77jx43jghbpjwr77n9s3cjp3bmadwkrv5"))))
(build-system emacs-build-system)
(home-page "https://github.com/kunalb/poet/")
(synopsis "Emacs theme for prose")
--
2.34.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#54638] [PATCH] gnu: emacs-poet-theme: Update to 16eb694.
2022-03-30 16:17 [bug#54638] [PATCH] gnu: emacs-poet-theme: Update to 16eb694 jgart via Guix-patches via
@ 2022-03-31 3:02 ` Maxim Cournoyer
2022-03-31 3:04 ` [bug#54638] [PATCH v2] " jgart via Guix-patches via
1 sibling, 0 replies; 4+ messages in thread
From: Maxim Cournoyer @ 2022-03-31 3:02 UTC (permalink / raw)
To: jgart; +Cc: 54638
Hi,
jgart <jgart@dismail.de> writes:
> * gnu/packages/emacs-xyz.scm (emacs-poet-theme): Update to 16eb694.
> ---
> gnu/packages/emacs-xyz.scm | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 9300ca0501..f8a44a1fef 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -8269,7 +8269,7 @@ (define-public emacs-solarized-theme
> (license license:gpl3+)))
>
> (define-public emacs-poet-theme
> - (let ((commit "d84f7b259cc9b6ff8d442cf4c38bd6c7065ff8f4")
> + (let ((commit "16eb694f0755c04c4db98614d0eca1199fddad70")
> (revision "0"))
As mention in info '(guix) Version Numbers', the revision number needs
to be incremented for a new snapshot, to keep the version string
monotonically increasing.
Thanks,
Maxim
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#54638] [PATCH v2] gnu: emacs-poet-theme: Update to 16eb694.
2022-03-30 16:17 [bug#54638] [PATCH] gnu: emacs-poet-theme: Update to 16eb694 jgart via Guix-patches via
2022-03-31 3:02 ` Maxim Cournoyer
@ 2022-03-31 3:04 ` jgart via Guix-patches via
2022-04-04 3:55 ` bug#54638: " Maxim Cournoyer
1 sibling, 1 reply; 4+ messages in thread
From: jgart via Guix-patches via @ 2022-03-31 3:04 UTC (permalink / raw)
To: 54638; +Cc: jgart, Maxim Cournoyer
* gnu/packages/emacs-xyz.scm (emacs-poet-theme): Update to 16eb694.
Oops, I had forgotten to do that.
Here's v2.
Thanks for the review!
all best,
jgart
---
gnu/packages/emacs-xyz.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9300ca0501..b733adc02f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8269,8 +8269,8 @@ (define-public emacs-solarized-theme
(license license:gpl3+)))
(define-public emacs-poet-theme
- (let ((commit "d84f7b259cc9b6ff8d442cf4c38bd6c7065ff8f4")
- (revision "0"))
+ (let ((commit "16eb694f0755c04c4db98614d0eca1199fddad70")
+ (revision "1"))
(package
(name "emacs-poet-theme")
(version (git-version "0" revision commit))
@@ -8283,7 +8283,7 @@ (define-public emacs-poet-theme
(file-name (git-file-name name version))
(sha256
(base32
- "0a84jdaj619mb59a46dmkk2sfs42rylqk9ryl1drgs8d3lia79mz"))))
+ "0zm8jbviddyj7jnyssh77jx43jghbpjwr77n9s3cjp3bmadwkrv5"))))
(build-system emacs-build-system)
(home-page "https://github.com/kunalb/poet/")
(synopsis "Emacs theme for prose")
--
2.34.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#54638: [PATCH v2] gnu: emacs-poet-theme: Update to 16eb694.
2022-03-31 3:04 ` [bug#54638] [PATCH v2] " jgart via Guix-patches via
@ 2022-04-04 3:55 ` Maxim Cournoyer
0 siblings, 0 replies; 4+ messages in thread
From: Maxim Cournoyer @ 2022-04-04 3:55 UTC (permalink / raw)
To: jgart; +Cc: 54638-done
Hello,
jgart <jgart@dismail.de> writes:
> * gnu/packages/emacs-xyz.scm (emacs-poet-theme): Update to 16eb694.
>
> Oops, I had forgotten to do that.
>
> Here's v2.
Applied as d31955882c8034b7b1e9cb7dacb3a1fb18599444, thank you!
Closing.
Maxim
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-04-04 3:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-30 16:17 [bug#54638] [PATCH] gnu: emacs-poet-theme: Update to 16eb694 jgart via Guix-patches via
2022-03-31 3:02 ` Maxim Cournoyer
2022-03-31 3:04 ` [bug#54638] [PATCH v2] " jgart via Guix-patches via
2022-04-04 3:55 ` bug#54638: " Maxim Cournoyer
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).