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

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

[debbugs-tracker] bug#29652: closed ([PATCH 1/2] gnu: Add snapscreenshot


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#29652: closed ([PATCH 1/2] gnu: Add snapscreenshot.)
Date: Tue, 12 Dec 2017 04:43:02 +0000

Your message dated Tue, 12 Dec 2017 05:45:03 +0100
with message-id <address@hidden>
and subject line Re: [bug#29653] [PATCH 2/2] gnu: Add fbcat.
has caused the debbugs.gnu.org bug report #29653,
regarding [PATCH 1/2] gnu: Add snapscreenshot.
to be marked as done.

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


-- 
29653: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=29653
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH 1/2] gnu: Add snapscreenshot. Date: Mon, 11 Dec 2017 00:03:35 +0100
* gnu/packages/linux.scm (snapscreenshot): New public variable.
---
 gnu/packages/linux.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index ec6f0b132..e61e279a7 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -4462,3 +4462,43 @@ interfaces in parallel environments.")
     ;; Only Intel-compatable processors are supported.
     (supported-systems '("i686-linux" "x86_64-linux"))
     (license (list license:bsd-2 license:gpl2)))) ;dual
+
+(define-public snapscreenshot
+  (package
+    (name "snapscreenshot")
+    (version "1.0.14.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://bisqwit.iki.fi/src/arch/";
+                           name "-" version ".tar.bz2"))
+       (sha256
+        (base32 "0gzvqsbf6a2sbd1mqvj1lbm57i2bm5k0cr6ncr821d1f32gw03mk"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags
+       (let ((out (assoc-ref %outputs "out")))
+         (list (string-append "BINDIR=" out "/bin")
+               (string-append "MANDIR=" out "/share/man")))
+       #:tests? #f                      ; no test suite
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)            ; ./configure is a snarky no-op
+         (add-before 'install 'fix-ownership
+           ;; Install binaries owned by ‘root’ instead of the nonexistent 
‘bin’.
+           (lambda _
+             (substitute* "depfun.mak"
+               ((" -o bin -g bin ") " "))
+             #t))
+         (add-before 'install 'create-output-directories
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (mkdir-p (string-append out "/share/man/man1"))
+               #t))))))
+    (home-page "http://bisqwit.iki.fi/source/snapscreenshot.html";)
+    (synopsis "Take screenshots of one or more Linux text consoles")
+    (description
+     "snapscreenshot saves a screenshot of one or more Linux text consoles as a
+Targa (@dfn{.tga}) image.  It can be used by anyone with read access to the
+relevant @file{/dev/vcs*} file(s).")
+    (license license:gpl2)))
-- 
2.15.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#29653] [PATCH 2/2] gnu: Add fbcat. Date: Tue, 12 Dec 2017 05:45:03 +0100 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0
Ludo',

Ludovic Courtès wrote on 11/12/17 at 17:14:
> Tobias Geerinckx-Rice <address@hidden> skribis:
> 
>> * gnu/packages/linux.scm (fbcat): New public variable.
> 
> [...]
> 
>> +    (inputs
>> +     ;; The ‘fbgrab’ wrapper can use one of several PPM-to-PNG converters.  
>> We
>> +     ;; choose netpbm simply because it's the smallest.  It still adds ~94 
>> MiB
>> +     ;; to an otherwise tiny package, so we put ‘fbgrab’ in its own output.
>> +     `(("pnmtopng" ,netpbm)))
>> +    (outputs (list "out" "fbgrab"))
> 
> That’s quite unusual but why not.

It is. IMO a nicer hack than pseudopackages like ‘fbcat-full’.

If we ever start more aggressively auto-splitting outputs and this would
interfere (‘fbcat:fbgrab:debug’), I'll rewrite it through my tears.

> Otherwise LGTM!

Thanks!

Pushed as c1c825844392d2db2414ec0c07dce0d882b6551d (snapscreenshot)
      and 8d8d227bbbe9bd1981bc63704c7f3fe029001f53 (fbcat).

Kind regards,

T G-R


--- End Message ---

reply via email to

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