* [bug#38001] [PATCH] gnu: scrot: Update to 1.2.
@ 2019-10-31 13:02 Tanguy Le Carrour
2019-10-31 13:37 ` Mathieu Othacehe
2019-10-31 16:51 ` [bug#38001] [PATCH v2] " Tanguy Le Carrour
0 siblings, 2 replies; 4+ messages in thread
From: Tanguy Le Carrour @ 2019-10-31 13:02 UTC (permalink / raw)
To: 38001; +Cc: Tanguy Le Carrour
* gnu/packages/xdisorg.scm (scrot): Update to 1.2.
---
gnu/packages/xdisorg.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#38001] [PATCH] gnu: scrot: Update to 1.2.
2019-10-31 13:02 [bug#38001] [PATCH] gnu: scrot: Update to 1.2 Tanguy Le Carrour
@ 2019-10-31 13:37 ` Mathieu Othacehe
2019-10-31 16:51 ` [bug#38001] [PATCH v2] " Tanguy Le Carrour
1 sibling, 0 replies; 4+ messages in thread
From: Mathieu Othacehe @ 2019-10-31 13:37 UTC (permalink / raw)
To: 38001; +Cc: tanguy
> + ("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
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#38001] [PATCH v2] gnu: scrot: Update to 1.2.
2019-10-31 13:02 [bug#38001] [PATCH] gnu: scrot: Update to 1.2 Tanguy Le Carrour
2019-10-31 13:37 ` Mathieu Othacehe
@ 2019-10-31 16:51 ` Tanguy Le Carrour
2019-11-04 9:23 ` bug#38001: " Mathieu Othacehe
1 sibling, 1 reply; 4+ messages in thread
From: Tanguy Le Carrour @ 2019-10-31 16:51 UTC (permalink / raw)
To: 38001; +Cc: m.othacehe, Tanguy Le Carrour
* 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(-)
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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#38001: [PATCH v2] gnu: scrot: Update to 1.2.
2019-10-31 16:51 ` [bug#38001] [PATCH v2] " Tanguy Le Carrour
@ 2019-11-04 9:23 ` Mathieu Othacehe
0 siblings, 0 replies; 4+ messages in thread
From: Mathieu Othacehe @ 2019-11-04 9:23 UTC (permalink / raw)
To: Tanguy Le Carrour; +Cc: 38001-done
Pushed, thanks.
Mathieu
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-11-04 9:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-31 13:02 [bug#38001] [PATCH] gnu: scrot: Update to 1.2 Tanguy Le Carrour
2019-10-31 13:37 ` Mathieu Othacehe
2019-10-31 16:51 ` [bug#38001] [PATCH v2] " Tanguy Le Carrour
2019-11-04 9:23 ` bug#38001: " Mathieu Othacehe
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).