GNU bug report logs - #62121
[PATCH 2/4] gnu: Add emacs-railscasts-theme.

Previous Next

Package: guix-patches;

Reported by: Rostislav Svoboda <rostislav.svoboda <at> gmail.com>

Date: Sat, 11 Mar 2023 14:51: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 62121 in the body.
You can then email your comments to 62121 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#62121; Package guix-patches. (Sat, 11 Mar 2023 14:51:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Rostislav Svoboda <rostislav.svoboda <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 11 Mar 2023 14:51:02 GMT) Full text and rfc822 format available.

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

From: Rostislav Svoboda <rostislav.svoboda <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Rostislav Svoboda <Rostislav.Svoboda <at> gmail.com>
Subject: [PATCH 2/4] gnu: Add emacs-railscasts-theme.
Date: Sat, 11 Mar 2023 15:49:36 +0100
* gnu/packages/emacs-xyz.scm (emacs-railscasts-theme): New variable.
---
 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 11afbe7778..d371cfd6f3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13392,6 +13392,29 @@ (define-public emacs-elpy
 completion, interactive development and more.")
       (license license:gpl3+))))
 
+(define-public emacs-railscasts-theme
+  (let ((commit "1340c3f6c2717761cab95617cf8dcbd962b1095b")
+        (revision "0"))
+    (package
+      (name "emacs-railscasts-theme")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/mikenichols/railscasts-theme")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205"))))
+      (build-system emacs-build-system)
+      (home-page
+       "https://github.com/mikenichols/railscasts-theme")
+      (synopsis "Railscasts color theme for Emacs")
+      (description "Railscasts color theme for Emacs.")
+      (license license:expat-0))))
+
 (define-public emacs-rainbow-delimiters
   (package
     (name "emacs-rainbow-delimiters")
-- 
2.39.2





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Fri, 17 Mar 2023 08:44:01 GMT) Full text and rfc822 format available.

Notification sent to Rostislav Svoboda <rostislav.svoboda <at> gmail.com>:
bug acknowledged by developer. (Fri, 17 Mar 2023 08:44:02 GMT) Full text and rfc822 format available.

Message #10 received at 62121-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Rostislav Svoboda <rostislav.svoboda <at> gmail.com>
Cc: 62121-done <at> debbugs.gnu.org
Subject: Re: [bug#62121] [PATCH 2/4] gnu: Add emacs-railscasts-theme.
Date: Fri, 17 Mar 2023 09:43:22 +0100
Hello,

Rostislav Svoboda <rostislav.svoboda <at> gmail.com> writes:

> * gnu/packages/emacs-xyz.scm (emacs-railscasts-theme): New variable.

Thanks. Some comments follow.

> +      (home-page
> +       "https://github.com/mikenichols/railscasts-theme")

A single line should suffice above.

> +      (synopsis "Railscasts color theme for Emacs")
> +      (description "Railscasts color theme for Emacs.")

You need to provide a complete sentence. For example,

 Railscasts is a color theme for Emacs.

> +      (license license:expat-0))))

Isn't it plain expat?

Regards,
-- 
Nicolas Goaziou




Information forwarded to guix-patches <at> gnu.org:
bug#62121; Package guix-patches. (Mon, 27 Mar 2023 19:19:02 GMT) Full text and rfc822 format available.

Message #13 received at 62121-done <at> debbugs.gnu.org (full text, mbox):

From: Rostislav Svoboda <rostislav.svoboda <at> gmail.com>
To: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Cc: 62121-done <at> debbugs.gnu.org
Subject: Re: [bug#62121] [PATCH 2/4] gnu: Add emacs-railscasts-theme.
Date: Mon, 27 Mar 2023 21:17:45 +0200
Hello Nicolas,
I'm resending the patch.
Cheers Bost



From b3d54b23e109816762397f06ebcc5ba2b152a966 Mon Sep 17 00:00:00 2001
From: Rostislav Svoboda <Rostislav.Svoboda <at> gmail.com>
Date: Mon, 27 Mar 2023 21:06:09 +0200
Subject: [PATCH 2/2] gnu: Add emacs-railscasts-theme.

* gnu/packages/emacs-xyz.scm (emacs-railscasts-theme): New variable.
---
 gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index afc0726230..15bda670ba 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13446,6 +13446,27 @@ (define-public emacs-elpy
 completion, interactive development and more.")
       (license license:gpl3+))))

+(define-public emacs-railscasts-theme
+  (let ((commit "1340c3f6c2717761cab95617cf8dcbd962b1095b")
+        (revision "0"))
+    (package
+      (name "emacs-railscasts-theme")
+      (version (git-version "0.1" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/mikenichols/railscasts-theme")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/mikenichols/railscasts-theme")
+      (synopsis "Railscasts is a color theme for Emacs")
+      (description "Railscasts is a color theme for Emacs.")
+      (license license:expat))))
+
 (define-public emacs-rainbow-delimiters
   (package
     (name "emacs-rainbow-delimiters")
-- 
2.39.2




Information forwarded to guix-patches <at> gnu.org:
bug#62121; Package guix-patches. (Thu, 30 Mar 2023 10:40:02 GMT) Full text and rfc822 format available.

Message #16 received at 62121-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Rostislav Svoboda <rostislav.svoboda <at> gmail.com>
Cc: 62121-done <at> debbugs.gnu.org
Subject: Re: [bug#62121] [PATCH 2/4] gnu: Add emacs-railscasts-theme.
Date: Thu, 30 Mar 2023 12:39:03 +0200
Hello,

Rostislav Svoboda <rostislav.svoboda <at> gmail.com> writes:

> I'm resending the patch.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 27 Apr 2023 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 358 days ago.

Previous Next


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