unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add interrobang.
@ 2016-08-17 20:24 ng0
  2016-08-17 21:57 ` ng0
  2016-08-18 21:23 ` Leo Famulari
  0 siblings, 2 replies; 4+ messages in thread
From: ng0 @ 2016-08-17 20:24 UTC (permalink / raw)
  To: guix-devel

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

This patch adds interrobang. It should function, but I don't have zsh
configured here in GuixSD, so my old config does not work here, and the
system default is up to testing by other people.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-interrobang.patch --]
[-- Type: text/x-patch, Size: 2090 bytes --]

From 91cc74e39a7ca001d24610f595fe6ce2cf38af0b Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Wed, 17 Aug 2016 20:18:44 +0000
Subject: [PATCH] gnu: Add interrobang.

* gnu/packages/admin.scm (interrobang): New variable.
---
 gnu/packages/admin.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 09a883c..4cc3757 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -1734,3 +1734,36 @@ highly portable.  Great for heterogenous networks.")
 the status of your battery in the system tray.")
     (home-page "https://github.com/valr/cbatticon")
     (license license:gpl2+)))
+
+(define-public interrobang
+  (let ((revision "1")
+        (commit "896543735e1c99144765fdbd7b6e6b5afbd8b881"))
+    (package
+      (name "interrobang")
+      (version (string-append "0.0.0." revision "." (string-take commit 8)))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "git://github.com/TrilbyWhite/interrobang")
+                      (commit commit)))
+                (file-name (string-append name "-" version "-checkout"))
+                (sha256
+                 (base32
+                  "1n13m70p1hfba5dy3i8hfclbr6k9q3d9dai3dg4jvhdhmxcpjzdf"))))
+      (build-system gnu-build-system)
+      (arguments
+       `(#:tests? #f ; no tests
+         #:phases
+         (modify-phases %standard-phases
+           (delete 'configure)) ; no configure script
+         #:make-flags (list (string-append "PREFIX="
+                                           (assoc-ref %outputs "out")))))
+      (inputs
+       `(("libx11" ,libx11)))
+      (native-inputs
+       `(("pkg-config" ,pkg-config)))
+      (synopsis "Tiny launcher menu packing a big bang syntax")
+      (description "Interrobang is a scriptable launcher menu with a customizable
+shortcut syntax and completion options.")
+      (home-page "https://github.com/TrilbyWhite/interrobang")
+      (license license:gpl3))))
-- 
2.9.3


[-- Attachment #3: Type: text/plain, Size: 70 bytes --]


-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

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

* Re: [PATCH] gnu: Add interrobang.
  2016-08-17 20:24 [PATCH] gnu: Add interrobang ng0
@ 2016-08-17 21:57 ` ng0
  2016-08-17 22:32   ` ng0
  2016-08-18 21:23 ` Leo Famulari
  1 sibling, 1 reply; 4+ messages in thread
From: ng0 @ 2016-08-17 21:57 UTC (permalink / raw)
  To: guix-devel

ng0 <ng0@we.make.ritual.n0.is> writes:

> This patch adds interrobang. It should function, but I don't have zsh
> configured here in GuixSD, so my old config does not work here, and the
> system default is up to testing by other people.

To explain this noisy comment:
I have a special interrobang-zsh-completion script which I prefer to the
default, bash. I ran interrobang but I still need to figure out why no
application launches.
I would prefer additional input.

> From 91cc74e39a7ca001d24610f595fe6ce2cf38af0b Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Wed, 17 Aug 2016 20:18:44 +0000
> Subject: [PATCH] gnu: Add interrobang.
>
> * gnu/packages/admin.scm (interrobang): New variable.
> ---
>  gnu/packages/admin.scm | 33 +++++++++++++++++++++++++++++++++
>  1 file changed, 33 insertions(+)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index 09a883c..4cc3757 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -1734,3 +1734,36 @@ highly portable.  Great for heterogenous networks.")
>  the status of your battery in the system tray.")
>      (home-page "https://github.com/valr/cbatticon")
>      (license license:gpl2+)))
> +
> +(define-public interrobang
> +  (let ((revision "1")
> +        (commit "896543735e1c99144765fdbd7b6e6b5afbd8b881"))
> +    (package
> +      (name "interrobang")
> +      (version (string-append "0.0.0." revision "." (string-take commit 8)))
> +      (source (origin
> +                (method git-fetch)
> +                (uri (git-reference
> +                      (url "git://github.com/TrilbyWhite/interrobang")
> +                      (commit commit)))
> +                (file-name (string-append name "-" version "-checkout"))
> +                (sha256
> +                 (base32
> +                  "1n13m70p1hfba5dy3i8hfclbr6k9q3d9dai3dg4jvhdhmxcpjzdf"))))
> +      (build-system gnu-build-system)
> +      (arguments
> +       `(#:tests? #f ; no tests
> +         #:phases
> +         (modify-phases %standard-phases
> +           (delete 'configure)) ; no configure script
> +         #:make-flags (list (string-append "PREFIX="
> +                                           (assoc-ref %outputs "out")))))
> +      (inputs
> +       `(("libx11" ,libx11)))
> +      (native-inputs
> +       `(("pkg-config" ,pkg-config)))
> +      (synopsis "Tiny launcher menu packing a big bang syntax")
> +      (description "Interrobang is a scriptable launcher menu with a customizable
> +shortcut syntax and completion options.")
> +      (home-page "https://github.com/TrilbyWhite/interrobang")
> +      (license license:gpl3))))
> -- 
> 2.9.3
>
>
> -- 
> ng0
> For non-prism friendly talk find me on http://www.psyced.org

-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

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

* Re: [PATCH] gnu: Add interrobang.
  2016-08-17 21:57 ` ng0
@ 2016-08-17 22:32   ` ng0
  0 siblings, 0 replies; 4+ messages in thread
From: ng0 @ 2016-08-17 22:32 UTC (permalink / raw)
  To: guix-devel

ng0 <ng0@we.make.ritual.n0.is> writes:

> ng0 <ng0@we.make.ritual.n0.is> writes:
>
>> This patch adds interrobang. It should function, but I don't have zsh
>> configured here in GuixSD, so my old config does not work here, and the
>> system default is up to testing by other people.
>
> To explain this noisy comment:
> I have a special interrobang-zsh-completion script which I prefer to the
> default, bash. I ran interrobang but I still need to figure out why no
> application launches.
> I would prefer additional input.

It works and is functional. I just had to alter the "set shell" in the
config.

>> From 91cc74e39a7ca001d24610f595fe6ce2cf38af0b Mon Sep 17 00:00:00 2001
>> From: ng0 <ng0@we.make.ritual.n0.is>
>> Date: Wed, 17 Aug 2016 20:18:44 +0000
>> Subject: [PATCH] gnu: Add interrobang.
>>
>> * gnu/packages/admin.scm (interrobang): New variable.
>> ---
>>  gnu/packages/admin.scm | 33 +++++++++++++++++++++++++++++++++
>>  1 file changed, 33 insertions(+)
>>
>> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
>> index 09a883c..4cc3757 100644
>> --- a/gnu/packages/admin.scm
>> +++ b/gnu/packages/admin.scm
>> @@ -1734,3 +1734,36 @@ highly portable.  Great for heterogenous networks.")
>>  the status of your battery in the system tray.")
>>      (home-page "https://github.com/valr/cbatticon")
>>      (license license:gpl2+)))
>> +
>> +(define-public interrobang
>> +  (let ((revision "1")
>> +        (commit "896543735e1c99144765fdbd7b6e6b5afbd8b881"))
>> +    (package
>> +      (name "interrobang")
>> +      (version (string-append "0.0.0." revision "." (string-take commit 8)))
>> +      (source (origin
>> +                (method git-fetch)
>> +                (uri (git-reference
>> +                      (url "git://github.com/TrilbyWhite/interrobang")
>> +                      (commit commit)))
>> +                (file-name (string-append name "-" version "-checkout"))
>> +                (sha256
>> +                 (base32
>> +                  "1n13m70p1hfba5dy3i8hfclbr6k9q3d9dai3dg4jvhdhmxcpjzdf"))))
>> +      (build-system gnu-build-system)
>> +      (arguments
>> +       `(#:tests? #f ; no tests
>> +         #:phases
>> +         (modify-phases %standard-phases
>> +           (delete 'configure)) ; no configure script
>> +         #:make-flags (list (string-append "PREFIX="
>> +                                           (assoc-ref %outputs "out")))))
>> +      (inputs
>> +       `(("libx11" ,libx11)))
>> +      (native-inputs
>> +       `(("pkg-config" ,pkg-config)))
>> +      (synopsis "Tiny launcher menu packing a big bang syntax")
>> +      (description "Interrobang is a scriptable launcher menu with a customizable
>> +shortcut syntax and completion options.")
>> +      (home-page "https://github.com/TrilbyWhite/interrobang")
>> +      (license license:gpl3))))
>> -- 
>> 2.9.3
>>
>>
>> -- 
>> ng0
>> For non-prism friendly talk find me on http://www.psyced.org
>
> -- 
> ng0
> For non-prism friendly talk find me on http://www.psyced.org
>

-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

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

* Re: [PATCH] gnu: Add interrobang.
  2016-08-17 20:24 [PATCH] gnu: Add interrobang ng0
  2016-08-17 21:57 ` ng0
@ 2016-08-18 21:23 ` Leo Famulari
  1 sibling, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2016-08-18 21:23 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

On Wed, Aug 17, 2016 at 08:24:37PM +0000, ng0 wrote:
> This patch adds interrobang. It should function, but I don't have zsh
> configured here in GuixSD, so my old config does not work here, and the
> system default is up to testing by other people.

> * gnu/packages/admin.scm (interrobang): New variable.

Thanks, pushed as c08533b2c with the following changes!

> +      (version (string-append "0.0.0." revision "." (string-take commit 8)))
                                       ^                                   ^
Characters replaced by  	       -                                   7

> +      (synopsis "Tiny launcher menu packing a big bang syntax")

"Scriptable launcher menu"

> +      (license license:gpl3))))

gpl3+

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

end of thread, other threads:[~2016-08-18 21:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-17 20:24 [PATCH] gnu: Add interrobang ng0
2016-08-17 21:57 ` ng0
2016-08-17 22:32   ` ng0
2016-08-18 21:23 ` Leo Famulari

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