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

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

[debbugs-tracker] bug#30766: closed ([PATCH] gnu: Add flameshot.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#30766: closed ([PATCH] gnu: Add flameshot.)
Date: Tue, 13 Mar 2018 13:04:02 +0000

Your message dated Tue, 13 Mar 2018 16:03:24 +0300
with message-id <address@hidden>
and subject line Re: [bug#30766] [PATCH] gnu: Add flameshot.
has caused the debbugs.gnu.org bug report #30766,
regarding [PATCH] gnu: Add flameshot.
to be marked as done.

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


-- 
30766: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=30766
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add flameshot. Date: Sun, 11 Mar 2018 02:02:08 +0300
* gnu/packages/image.scm (flameshot): New public variable.
---
 gnu/packages/image.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index e3e3a3ccc..94105beb0 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -58,6 +58,7 @@
   #:use-module (gnu packages python)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xorg)
+  #:use-module (gnu packages qt)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
@@ -1250,3 +1251,45 @@ such as images.  This metadata can include captions and 
keywords, often used by
 popular photo management applications.  The library provides routines for
 parsing, viewing, modifying, and saving this metadata.")
     (license license:lgpl2.0+)))
+
+(define-public flameshot
+  (package
+    (name "flameshot")
+    (version "0.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/lupoDharkael/flameshot/archive/";
+                           "v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0kp451bqgssvg8n3sg60s3fifplm9l5kxiij0yxkl864p2mhw8im"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("qttools" ,qttools)))
+    (inputs
+     `(("qtbase" ,qtbase)))
+    (arguments
+     `(#:tests? #f
+       #:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key outputs #:allow-other-keys)
+             (invoke "qmake"
+                     "CONFIG+=packaging"
+                     (string-append "BASEDIR=" (assoc-ref outputs "out"))
+                     "PREFIX=/"))))))
+    (home-page "https://github.com/lupoDharkael/flameshot";)
+    (synopsis "Powerful yet simple to use screenshot software")
+    (description "Flameshot is a screenshot software.
+Features:
+
address@hidden
address@hidden Customizable appearance.
address@hidden Easy to use.
address@hidden In-app screenshot edition.
address@hidden DBus interface.
address@hidden Upload to Imgur.
address@hidden itemize\n")
+    (license license:gpl3+)))
-- 
2.16.2




--- End Message ---
--- Begin Message --- Subject: Re: [bug#30766] [PATCH] gnu: Add flameshot. Date: Tue, 13 Mar 2018 16:03:24 +0300 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)
address@hidden (Ludovic Courtès) writes:

> Oleg Pykhalov <address@hidden> skribis:
>
>> * gnu/packages/image.scm (flameshot): New public variable.
>
> [...]
>
>> +    (description "Flameshot is a screenshot software.
>                                                ^
> “a screenshot program”

OK.

> Otherwise LGTM, thanks!

Also I commented that there are no tests.

Pushed as 8456765772cb48a428a15719e32ab49c9d4d7a53

I'll close the bug report.

Thanks,
Oleg.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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