[PATCH] gnu: scrot: Update to 1.2.

  • Done
  • quality assurance status badge
Details
2 participants
  • Mathieu Othacehe
  • Tanguy Le Carrour
Owner
unassigned
Submitted by
Tanguy Le Carrour
Severity
normal
T
T
Tanguy Le Carrour wrote on 31 Oct 2019 14:02
(address . guix-patches@gnu.org)(name . Tanguy Le Carrour)(address . tanguy@bioneland.org)
20191031130220.18926-1-tanguy@bioneland.org
* gnu/packages/xdisorg.scm (scrot): Update to 1.2.
---
gnu/packages/xdisorg.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

Toggle diff (40 lines)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 17dc16b44c..7002c72834 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -28,6 +28,7 @@
;;; Copyright © 2019 Wiktor ?elazny <wzelazny@vurv.cz>
;;; Copyright © 2019 Kyle Andrews <kyle.c.andrews@gmail.com>
;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
+;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -552,7 +553,7 @@ move windows, switch between desktops, etc.).")
(define-public scrot
(package
(name "scrot")
- (version "0.9")
+ (version "1.2")
(source
(origin
(method git-fetch)
@@ -562,11 +563,14 @@ move windows, switch between desktops, etc.).")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1dg0pnmk09p7zlbyxv7d40vf54amrv73y976ds5p7096x6lmlndy"))))
+ (base32 "08gkdby0ysx2mki57z81zlm7vfnq9c1gq692xw67cg5vv2p3320w"))))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)
- ("automake" ,automake)))
+ ("autoconf-archive" ,autoconf-archive)
+ ("automake" ,automake)
+ ("libXcursor" ,libxcursor)
+ ("libXfixes" ,libxfixes)))
(inputs
`(("giblib" ,giblib)
("libx11" ,libx11)))
--
2.23.0
M
M
Mathieu Othacehe wrote on 31 Oct 2019 14:37
(address . guix-patches@gnu.org)
87ftj9594b.fsf@gmail.com
Toggle quote (3 lines)
> + ("libXcursor" ,libxcursor)
> + ("libXfixes" ,libxfixes)))

I think those two are inputs not native-inputs.

You also need to mention this change in the commit log. Can you please
send an updated version?

Thanks,

Mathieu
T
T
Tanguy Le Carrour wrote on 31 Oct 2019 17:51
[PATCH v2] gnu: scrot: Update to 1.2.
(address . 38001@debbugs.gnu.org)
20191031165140.7770-1-tanguy@bioneland.org
* gnu/packages/xdisorg.scm (scrot): Update to 1.2, [native-inputs]: Add
autoconf-archive, [inputs]: Add libxcursor and libxfixes.
---
gnu/packages/xdisorg.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

Toggle diff (43 lines)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 17dc16b44c..772e09d5b2 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -28,6 +28,7 @@
;;; Copyright © 2019 Wiktor ?elazny <wzelazny@vurv.cz>
;;; Copyright © 2019 Kyle Andrews <kyle.c.andrews@gmail.com>
;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
+;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -552,7 +553,7 @@ move windows, switch between desktops, etc.).")
(define-public scrot
(package
(name "scrot")
- (version "0.9")
+ (version "1.2")
(source
(origin
(method git-fetch)
@@ -562,14 +563,17 @@ move windows, switch between desktops, etc.).")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1dg0pnmk09p7zlbyxv7d40vf54amrv73y976ds5p7096x6lmlndy"))))
+ (base32 "08gkdby0ysx2mki57z81zlm7vfnq9c1gq692xw67cg5vv2p3320w"))))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)
+ ("autoconf-archive" ,autoconf-archive)
("automake" ,automake)))
(inputs
`(("giblib" ,giblib)
- ("libx11" ,libx11)))
+ ("libx11" ,libx11)
+ ("libXcursor" ,libxcursor)
+ ("libXfixes" ,libxfixes)))
(home-page "https://github.com/resurrecting-open-source-projects/scrot")
(synopsis "Command-line screen capture utility for X Window System")
(description
--
2.23.0
M
M
Mathieu Othacehe wrote on 4 Nov 2019 10:23
(name . Tanguy Le Carrour)(address . tanguy@bioneland.org)(address . 38001-done@debbugs.gnu.org)
875zk0c7vu.fsf@gmail.com
Pushed, thanks.

Mathieu
Closed
?