all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#28292] Add emacs-game-2048.
@ 2017-08-30  9:44 ng0
  2017-09-01  8:34 ` Ludovic Courtès
  2017-09-01 10:09 ` bug#28292: " ng0
  0 siblings, 2 replies; 6+ messages in thread
From: ng0 @ 2017-08-30  9:44 UTC (permalink / raw)
  To: 28292


[-- Attachment #1.1: Type: text/plain, Size: 189 bytes --]

Patch appended.
Tested: M-x game-2048
-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://n0is.noblogs.org/my-keys
https://www.infotropique.org https://krosos.org

[-- Attachment #1.2: 0001-gnu-Add-emacs-2048-game.patch --]
[-- Type: text/plain, Size: 2130 bytes --]

From 3bdb229258e29fd8a5c563e8089c1cb8d8674bc6 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Wed, 30 Aug 2017 09:41:26 +0000
Subject: [PATCH] gnu: Add emacs-2048-game.

* gnu/packages/emacs.scm (emacs-2048-game): New variable.
---
 gnu/packages/emacs.scm | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1c3f8c137..821c7b36c 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -12,7 +12,7 @@
 ;;; Copyright © 2016 David Thompson <davet@gnu.org>
 ;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
 ;;; Copyright © 2016, 2017 Roel Janssen <roel@gnu.org>
-;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
+;;; Copyright © 2016, 2017 ng0 <ng0@infotropique.org>
 ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
 ;;; Copyright © 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;; Copyright © 2016 Alex Vong <alexvong1995@gmail.com>
@@ -2603,6 +2603,30 @@ transparent background.  If you load it from a GUI, it will default to a
 dark background.")
     (license license:gpl3+)))
 
+(define-public emacs-2048-game
+  (package
+    (name "emacs-2048-game")
+    (version "20151026.1233")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://melpa.org/packages/2048-game-"
+                           version ".el"))
+       (sha256
+        (base32
+         "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
+    (build-system emacs-build-system)
+    (home-page "https://bitbucket.org/zck/2048.el")
+    (synopsis "Implementation of the game 2048 in elisp")
+    (description
+     "This program is an implementation of 2048 for Emacs.
+
+The goal of this game is to create a tile with value 2048.
+
+The size of the board and goal value can be customized -- see the
+variables *2048-columns*, *2048-rows*, and *2048-victory-value*.")
+  (license license:gpl3+)))
+
 (define-public emacs-smartparens
   (package
     (name "emacs-smartparens")
-- 
2.14.1


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#28292] Add emacs-game-2048.
  2017-08-30  9:44 [bug#28292] Add emacs-game-2048 ng0
@ 2017-09-01  8:34 ` Ludovic Courtès
  2017-09-02 14:24   ` ng0
  2017-09-01 10:09 ` bug#28292: " ng0
  1 sibling, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2017-09-01  8:34 UTC (permalink / raw)
  To: 28292-done

[-- Attachment #1: Type: text/plain, Size: 281 bytes --]

Applied with the changes below, thanks!

Ludo'.

PS: We discussed it a couple of times before: please configure your
    email client to not add Mail-followup-to: guix-patches.  That leads
    people to reply to guix-patches instead of NNN@debbugs.gnu.org,
    which is annoying.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 942 bytes --]

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index aae39c79f..985226571 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -2618,14 +2618,11 @@ dark background.")
          "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
     (build-system emacs-build-system)
     (home-page "https://bitbucket.org/zck/2048.el")
-    (synopsis "Implementation of the game 2048 in elisp")
+    (synopsis "Implementation of the game 2048 in Emacs Lisp")
     (description
      "This program is an implementation of 2048 for Emacs.
-
-The goal of this game is to create a tile with value 2048.
-
-The size of the board and goal value can be customized -- see the
-variables *2048-columns*, *2048-rows*, and *2048-victory-value*.")
+The goal of this game is to create a tile with value 2048.  The size of the
+board and goal value can be customized.")
   (license license:gpl3+)))
 
 (define-public emacs-smartparens

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* bug#28292: Add emacs-game-2048.
  2017-08-30  9:44 [bug#28292] Add emacs-game-2048 ng0
  2017-09-01  8:34 ` Ludovic Courtès
@ 2017-09-01 10:09 ` ng0
  1 sibling, 0 replies; 6+ messages in thread
From: ng0 @ 2017-09-01 10:09 UTC (permalink / raw)
  To: 28292-done

[-- Attachment #1: Type: text/plain, Size: 191 bytes --]

ab966b8f61731416bf21c76fa9707617198d06db
-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://n0is.noblogs.org/my-keys
https://www.infotropique.org https://krosos.org

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#28292] Add emacs-game-2048.
  2017-09-01  8:34 ` Ludovic Courtès
@ 2017-09-02 14:24   ` ng0
  2017-09-02 20:40     ` ng0
  0 siblings, 1 reply; 6+ messages in thread
From: ng0 @ 2017-09-02 14:24 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 28292-done

[-- Attachment #1: Type: text/plain, Size: 754 bytes --]

Ludovic Courtès transcribed 1.3K bytes:
> Applied with the changes below, thanks!
> 
> Ludo'.

Thanks!

> PS: We discussed it a couple of times before: please configure your
>     email client to not add Mail-followup-to: guix-patches.  That leads
>     people to reply to guix-patches instead of NNN@debbugs.gnu.org,
>     which is annoying.

Yes, I know. And I have no easy fix for this, I will ask
the developers of it if there's any easy fix.
I would need an exception for guix-patches@gnu.org and
the incredible awful to catch debbugs.gnu.org emails.
I'm not doing this on purpose.
-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://n0is.noblogs.org/my-keys
https://www.infotropique.org https://krosos.org

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#28292] Add emacs-game-2048.
  2017-09-02 14:24   ` ng0
@ 2017-09-02 20:40     ` ng0
  2017-09-04 14:23       ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: ng0 @ 2017-09-02 20:40 UTC (permalink / raw)
  To: 28292-done

[-- Attachment #1: Type: text/plain, Size: 882 bytes --]

ng0 transcribed 1.8K bytes:
> Ludovic Courtès transcribed 1.3K bytes:
> > Applied with the changes below, thanks!
> > 
> > Ludo'.
> 
> Thanks!
> 
> > PS: We discussed it a couple of times before: please configure your
> >     email client to not add Mail-followup-to: guix-patches.  That leads
> >     people to reply to guix-patches instead of NNN@debbugs.gnu.org,
> >     which is annoying.
> 
> Yes, I know. And I have no easy fix for this, I will ask
> the developers of it if there's any easy fix.
> I would need an exception for guix-patches@gnu.org and
> the incredible awful to catch debbugs.gnu.org emails.
> I'm not doing this on purpose.

This is just a short test to see if followup_to is now unset.
-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://n0is.noblogs.org/my-keys
https://www.infotropique.org https://krosos.org

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#28292] Add emacs-game-2048.
  2017-09-02 20:40     ` ng0
@ 2017-09-04 14:23       ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2017-09-04 14:23 UTC (permalink / raw)
  To: ng0; +Cc: 28292-done

ng0 <ng0@infotropique.org> skribis:

> ng0 transcribed 1.8K bytes:
>> Ludovic Courtès transcribed 1.3K bytes:
>> > Applied with the changes below, thanks!
>> > 
>> > Ludo'.
>> 
>> Thanks!
>> 
>> > PS: We discussed it a couple of times before: please configure your
>> >     email client to not add Mail-followup-to: guix-patches.  That leads
>> >     people to reply to guix-patches instead of NNN@debbugs.gnu.org,
>> >     which is annoying.
>> 
>> Yes, I know. And I have no easy fix for this, I will ask
>> the developers of it if there's any easy fix.
>> I would need an exception for guix-patches@gnu.org and
>> the incredible awful to catch debbugs.gnu.org emails.
>> I'm not doing this on purpose.
>
> This is just a short test to see if followup_to is now unset.

It is, thanks!  :-)

Ludo’.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-09-04 14:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-30  9:44 [bug#28292] Add emacs-game-2048 ng0
2017-09-01  8:34 ` Ludovic Courtès
2017-09-02 14:24   ` ng0
2017-09-02 20:40     ` ng0
2017-09-04 14:23       ` Ludovic Courtès
2017-09-01 10:09 ` bug#28292: " ng0

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.