emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#25973: closed ([PATCH]: gnu: Add blind.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#25973: closed ([PATCH]: gnu: Add blind.)
Date: Tue, 07 Mar 2017 12:02:02 +0000

Your message dated Tue, 07 Mar 2017 19:58:05 +0800
with message-id <address@hidden>
and subject line Re: bug#25973: [PATCH]: gnu: Add blind.
has caused the debbugs.gnu.org bug report #25973,
regarding [PATCH]: gnu: Add blind.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
25973: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25973
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH]: gnu: Add blind. Date: Sun, 05 Mar 2017 19:20:34 +0800
>From 7e747dab9c06aa862636423008148f1f08a90f1a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= <address@hidden>
Date: Sun, 5 Mar 2017 19:08:25 +0800
Subject: [PATCH] gnu: Add blind.

* gnu/packages/suckless.scm (blind): New package.
---
 gnu/packages/suckless.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index e30a0883a..58b2bd0f6 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -47,6 +47,33 @@
   #:use-module (gnu packages base)
   #:use-module (gnu packages libbsd))
 
+(define-public blind
+  (package
+    (name "blind")
+    (version "1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://dl.suckless.org/tools/blind-";
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "1b36k8fg2gmabm69jckqja49i8y4rcbccgvv2wija15ciszrm1x9"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f                      ; no check target
+       #:make-flags (list
+                     "CC=gcc"
+                     (string-append "PREFIX=" %output))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))         ; no configure script
+    (synopsis "Command line video editing utilities")
+    (home-page "http://tools.suckless.org/blind/";)
+    (description
+     "Blind is a collection of command line video editing utilities.  It uses
+a custom raw video format with a simple container.")
+    (license license:isc)))
+
 (define-public dwm
   (package
     (name "dwm")
-- 
2.11.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#25973: [PATCH]: gnu: Add blind. Date: Tue, 07 Mar 2017 19:58:05 +0800 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)
Pushed as c402743.

ng0 <address@hidden> writes:

> [...]
>> Looks good to me.

Thank for the review!

>> Do you think we could have a suckless and 2f30 url-scheme now?
>> There's just so much repetition with those two domains going on because
>> most software is so similar it could simply inherit from one base
>> recipe.
>> 

Well, I think the repetitions of url scheme are okay, and packages from
suckless don't under the same base url (dwm and st are under their own
directory, while other are under 'tools')... 


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]