From 6f74aecdb30daea03edcfd624256ba6d99c0919d Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Fri, 5 Feb 2016 15:24:01 -0800 Subject: gnu: xdotools: Update to 3.20150503.1 * gnu/packages/xdisorg.scm (xdotools): Upgrade to 3.20150503.1. * gnu/packages/patches/xdotool-fix-makefile.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. --- gnu/packages/xdisorg.scm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index dc01637e4f..5ca203e764 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2015 Andy Wingo ;;; Copyright © 2015 xd1le ;;; Copyright © 2015 Florian Paul Schmidt +;;; Copyright © 2016 Christopher Allan Webber ;;; ;;; This file is part of GNU Guix. ;;; @@ -48,6 +49,7 @@ (define-module (gnu packages xdisorg) #:use-module (gnu packages guile) #:use-module (gnu packages xml) #:use-module (gnu packages gtk) + #:use-module (gnu packages qt) #:use-module (gnu packages xorg)) ;; packages outside the x.org system proper @@ -107,16 +109,17 @@ (define-public xclip (define-public xdotool (package (name "xdotool") - (version "2.20110530.1") + (version "3.20150503.1") (source (origin (method url-fetch) (uri (string-append - "http://semicomplete.googlecode.com/files/" name "-" - version ".tar.gz")) + "https://github.com/jordansissel/xdotool/releases/download/v" + version "/xdotool-" version ".tar.gz")) (sha256 (base32 - "0rxggg1cy7nnkwidx8x2w3c5f3pk6dh2b6q0q7hp069r3n5jrd77")))) + "1lcngsw33fy9my21rdiz1gs474bfdqcfxjrnfggbx4aypn1nhcp8")) + (patches (list (search-patch "xdotool-fix-makefile.patch"))))) (build-system gnu-build-system) (arguments '(#:tests? #f ; Test suite requires a lot of black magic @@ -134,7 +137,8 @@ (define-public xdotool ("libxext" ,libxext) ("libxi" ,libxi) ("libxinerama" ,libxinerama) - ("libxtst" ,libxtst))) + ("libxtst" ,libxtst) + ("libxkbcommon" ,libxkbcommon))) (home-page "http://www.semicomplete.com/projects/xdotool") (synopsis "Fake keyboard/mouse input, window management, and more") (description "Xdotool lets you simulate keyboard input and mouse activity, -- cgit v1.2.3