unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* No-more-secrets.
@ 2017-02-01  2:07 contact.ng0
  2017-02-01  2:07 ` [PATCH] gnu: Add no-more-secrets contact.ng0
  0 siblings, 1 reply; 7+ messages in thread
From: contact.ng0 @ 2017-02-01  2:07 UTC (permalink / raw)
  To: guix-devel

This patch adds no-more-secrets to the new (gnu packages art) module.

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

* [PATCH] gnu: Add no-more-secrets.
  2017-02-01  2:07 No-more-secrets contact.ng0
@ 2017-02-01  2:07 ` contact.ng0
  2017-02-02  1:51   ` Eric Bavier
  0 siblings, 1 reply; 7+ messages in thread
From: contact.ng0 @ 2017-02-01  2:07 UTC (permalink / raw)
  To: guix-devel

From: ng0 <contact.ng0@cryptolab.net>

* gnu/packages/art.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add art.
---
 gnu/local.mk         |  1 +
 gnu/packages/art.scm | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)
 create mode 100644 gnu/packages/art.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index da4dbb0d2..50fcb304a 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -44,6 +44,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/anthy.scm			\
   %D%/packages/apl.scm				\
   %D%/packages/apr.scm				\
+  %D%/packages/art.scm                          \
   %D%/packages/aspell.scm			\
   %D%/packages/assembly.scm			\
   %D%/packages/astronomy.scm			\
diff --git a/gnu/packages/art.scm b/gnu/packages/art.scm
new file mode 100644
index 000000000..6a200d7d2
--- /dev/null
+++ b/gnu/packages/art.scm
@@ -0,0 +1,62 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2017 ng0 <contact.ng0@cryptolab.net>
+;;;
+;;; This file is NOT part of GNU Guix, but is supposed to be used with GNU
+;;; Guix and thus has the same license.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages art)
+  #:use-module (guix packages)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix download)
+  #:use-module (guix build-system gnu)
+  #:use-module (gnu packages)
+  #:use-module (gnu packages ncurses))
+
+(define-public no-more-secrets
+  (package
+    (name "no-more-secrets")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/bartobri/no-more-secrets/"
+                           "archive/v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "038flwqr0kqv55im2v76xjn01zbvvkb3nzb5ridwm2kbnk9cgg4v"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags (list "CC=gcc" "all-ncurses"
+                          (string-append "prefix="
+                                         (assoc-ref %outputs "out")))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))
+    (inputs
+     `(("ncurses" ,ncurses)))
+    (home-page "https://github.com/bartobri/no-more-secrets")
+    (synopsis "Recreation of data decryption effect in \"Sneakers\"")
+    (description
+     "@code{No More Secrets} provides a command line tool called \"nms\"
+that recreates the famous data decryption effect seen on screen in the 1992
+movie \"Sneakers\".
+
+This command works on piped data.  Pipe any ASCII or UTF-8 text to nms, and
+it will apply the hollywood effect, initially showing encrypted data, then
+starting a decryption sequence to reveal the original plaintext characters.")
+    (license license:expat)))
-- 
2.11.0

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

* Re: [PATCH] gnu: Add no-more-secrets.
  2017-02-01  2:07 ` [PATCH] gnu: Add no-more-secrets contact.ng0
@ 2017-02-02  1:51   ` Eric Bavier
  2017-02-02  9:40     ` ng0
  0 siblings, 1 reply; 7+ messages in thread
From: Eric Bavier @ 2017-02-02  1:51 UTC (permalink / raw)
  To: contact.ng0; +Cc: guix-devel

On Wed,  1 Feb 2017 02:07:28 +0000
contact.ng0@cryptolab.net wrote:

> * gnu/packages/art.scm: New file.
> * gnu/local.mk (GNU_SYSTEM_MODULES): Add art.

Would gnu/packages/games.scm or gnu/packages/graphics.scm be a suitable
location for no-more-secrets?

`~Eric

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

* Re: [PATCH] gnu: Add no-more-secrets.
  2017-02-02  1:51   ` Eric Bavier
@ 2017-02-02  9:40     ` ng0
  2017-02-02 14:32       ` no-more-secrets, v2 contact.ng0
  0 siblings, 1 reply; 7+ messages in thread
From: ng0 @ 2017-02-02  9:40 UTC (permalink / raw)
  To: Eric Bavier; +Cc: guix-devel


Eric Bavier writes:

> On Wed,  1 Feb 2017 02:07:28 +0000
> contact.ng0@cryptolab.net wrote:
>
>> * gnu/packages/art.scm: New file.
>> * gnu/local.mk (GNU_SYSTEM_MODULES): Add art.
>
> Would gnu/packages/games.scm or gnu/packages/graphics.scm be a suitable
> location for no-more-secrets?
>
> `~Eric

I think it could be considered a game, not an interactive one,
but it qualifies as a game in my opinion.

I will move it to (gnu packages games).
-- 
ng0 . https://www.inventati.org/patternsinthechaos/

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

* no-more-secrets, v2
  2017-02-02  9:40     ` ng0
@ 2017-02-02 14:32       ` contact.ng0
  2017-02-02 14:32         ` [PATCH] gnu: Add no-more-secrets contact.ng0
  0 siblings, 1 reply; 7+ messages in thread
From: contact.ng0 @ 2017-02-02 14:32 UTC (permalink / raw)
  To: guix-devel

Moved from art.scm to games.scm

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

* [PATCH] gnu: Add no-more-secrets.
  2017-02-02 14:32       ` no-more-secrets, v2 contact.ng0
@ 2017-02-02 14:32         ` contact.ng0
  2017-02-03  2:39           ` Eric Bavier
  0 siblings, 1 reply; 7+ messages in thread
From: contact.ng0 @ 2017-02-02 14:32 UTC (permalink / raw)
  To: guix-devel

From: ng0 <contact.ng0@cryptolab.net>

* gnu/packages/games.scm (no-more-secrets): New variable.
---
 gnu/packages/games.scm | 38 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 37 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 98a4d6901..c3514feac 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -17,7 +17,7 @@
 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
 ;;; Copyright © 2016 Rodger Fox <thylakoid@openmailbox.org>
 ;;; Copyright © 2016 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
-;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
+;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
 ;;; Copyright © 2016 Albin Söderqvist <albin@fripost.org>
 ;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
 ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
@@ -3102,3 +3102,39 @@ inspired by the history of human civilization.  The game commences in
 prehistory and your mission is to lead your tribe from the Stone Age
 to the Space Age.")
    (license license:gpl2+)))
+
+(define-public no-more-secrets
+  (package
+    (name "no-more-secrets")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/bartobri/no-more-secrets/"
+                           "archive/v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "038flwqr0kqv55im2v76xjn01zbvvkb3nzb5ridwm2kbnk9cgg4v"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags (list "CC=gcc" "all-ncurses"
+                          (string-append "prefix="
+                                         (assoc-ref %outputs "out")))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))
+    (inputs
+     `(("ncurses" ,ncurses)))
+    (home-page "https://github.com/bartobri/no-more-secrets")
+    (synopsis "Recreation of data decryption effect in \"Sneakers\"")
+    (description
+     "@code{No More Secrets} provides a command line tool called \"nms\"
+that recreates the famous data decryption effect seen on screen in the 1992
+movie \"Sneakers\".
+
+This command works on piped data.  Pipe any ASCII or UTF-8 text to nms, and
+it will apply the hollywood effect, initially showing encrypted data, then
+starting a decryption sequence to reveal the original plaintext characters.")
+    (license license:expat)))
-- 
2.11.0

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

* Re: [PATCH] gnu: Add no-more-secrets.
  2017-02-02 14:32         ` [PATCH] gnu: Add no-more-secrets contact.ng0
@ 2017-02-03  2:39           ` Eric Bavier
  0 siblings, 0 replies; 7+ messages in thread
From: Eric Bavier @ 2017-02-03  2:39 UTC (permalink / raw)
  To: contact.ng0; +Cc: guix-devel

On Thu,  2 Feb 2017 14:32:14 +0000
contact.ng0@cryptolab.net wrote:

> From: ng0 <contact.ng0@cryptolab.net>
> 
> * gnu/packages/games.scm (no-more-secrets): New variable.
> ---
>  gnu/packages/games.scm | 38 +++++++++++++++++++++++++++++++++++++-
>  1 file changed, 37 insertions(+), 1 deletion(-)

Pushed in 345504c79d2b412f1036ff0cbd964e344a24b162

Thanks!
`~Eric

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

end of thread, other threads:[~2017-02-03  2:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-01  2:07 No-more-secrets contact.ng0
2017-02-01  2:07 ` [PATCH] gnu: Add no-more-secrets contact.ng0
2017-02-02  1:51   ` Eric Bavier
2017-02-02  9:40     ` ng0
2017-02-02 14:32       ` no-more-secrets, v2 contact.ng0
2017-02-02 14:32         ` [PATCH] gnu: Add no-more-secrets contact.ng0
2017-02-03  2:39           ` Eric Bavier

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).