From 37d52f6e4699030cf957da306fa9b66396eb9d71 Mon Sep 17 00:00:00 2001 From: David Craven Date: Mon, 8 Aug 2016 13:36:41 +0200 Subject: gnu: spice: Fix usbredir for 32 bit platforms. * gnu/packages/spice.scm (usbredir)[origin]: Fetch source from git repo. [native-inputs]: Add AUTOCONF, AUTOMAKE and LIBTOOL. [arguments]: Add autogen phase. --- gnu/packages/spice.scm | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) (limited to 'gnu/packages/spice.scm') diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 9e4a6695ac..67e493a439 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -18,6 +18,7 @@ (define-module (gnu packages spice) #:use-module (gnu packages) + #:use-module (gnu packages autotools) ; remove after updating usbredir to 0.7.1+ #:use-module (gnu packages compression) #:use-module (gnu packages gl) #:use-module (gnu packages glib) @@ -37,6 +38,7 @@ #:use-module (gnu packages xml) #:use-module (guix build-system gnu) #:use-module (guix download) + #:use-module (guix git-download) ; remove after updating usbredir to 0.7.1+ #:use-module (guix packages) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix utils)) @@ -45,19 +47,39 @@ (package (name "usbredir") (version "0.7.1") + ;(source (origin + ; (method url-fetch) + ; (uri (string-append + ; "http://spice-space.org/download/usbredir/" + ; "usbredir-" version ".tar.bz2")) + ; (sha256 + ; (base32 + ; "1wsnmk4wjpdhbn1zaxg6bmyxspcki2zgy0am9lk037rnl4krwzj0")))) + ; FIXME: usbredir 0.7.1 release doesn't build on 32 bit systems. + ; issue is fixed in HEAD + ; remove 'autogen phase and autoconf, automake, libtool inputs (source (origin - (method url-fetch) - (uri (string-append - "http://spice-space.org/download/usbredir/" - "usbredir-" version ".tar.bz2")) + (method git-fetch) + (uri (git-reference + (url "http://cgit.freedesktop.org/spice/usbredir") + (commit "ac80a5971c6318d73d5fba4b5f13d3a9389558c9"))) (sha256 (base32 - "1wsnmk4wjpdhbn1zaxg6bmyxspcki2zgy0am9lk037rnl4krwzj0")))) + "052fywgi72j68dr5ybldncg4vk8iqfrh58la7iazyxxpph9aag1g")))) (build-system gnu-build-system) (propagated-inputs `(("libusb" ,libusb))) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("pkg-config" ,pkg-config) + ("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'autogen + (lambda* _ + (system* "sh" "autogen.sh")))))) (synopsis "Tools for sending USB device traffic over a network") (description "Usbredir is a network protocol for sending USB device traffic over a network connection. It can be used to redirect traffic from a USB device -- cgit 1.4.1 From 273f1c05d8b6940c795fa3ceab31c6d48222ff92 Mon Sep 17 00:00:00 2001 From: David Craven Date: Sun, 14 Aug 2016 19:48:45 +0200 Subject: gnu: usbredir: Add git commit to version. * gnu/packages/spice.scm (usbredir)[version]: Add commit and revision to version string. --- gnu/packages/spice.scm | 78 ++++++++++++++++++++++++++------------------------ 1 file changed, 41 insertions(+), 37 deletions(-) (limited to 'gnu/packages/spice.scm') diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 67e493a439..870278c3ea 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -44,49 +44,53 @@ #:use-module (guix utils)) (define-public usbredir - (package - (name "usbredir") - (version "0.7.1") - ;(source (origin - ; (method url-fetch) - ; (uri (string-append - ; "http://spice-space.org/download/usbredir/" - ; "usbredir-" version ".tar.bz2")) - ; (sha256 - ; (base32 - ; "1wsnmk4wjpdhbn1zaxg6bmyxspcki2zgy0am9lk037rnl4krwzj0")))) - ; FIXME: usbredir 0.7.1 release doesn't build on 32 bit systems. - ; issue is fixed in HEAD - ; remove 'autogen phase and autoconf, automake, libtool inputs - (source (origin - (method git-fetch) - (uri (git-reference - (url "http://cgit.freedesktop.org/spice/usbredir") - (commit "ac80a5971c6318d73d5fba4b5f13d3a9389558c9"))) - (sha256 - (base32 - "052fywgi72j68dr5ybldncg4vk8iqfrh58la7iazyxxpph9aag1g")))) - (build-system gnu-build-system) - (propagated-inputs - `(("libusb" ,libusb))) - (native-inputs - `(("pkg-config" ,pkg-config) - ("autoconf" ,autoconf) - ("automake" ,automake) - ("libtool" ,libtool))) + (let ((commit "ac80a5971c6318d73d5fba4b5f13d3a9389558c9") + (revision "1")) ;Guix package revision + (package + (name "usbredir") + (version (string-append "0.7.1-" revision "." + (string-take commit 7))) + ;(version "0.7.1") + ;(source (origin + ; (method url-fetch) + ; (uri (string-append + ; "http://spice-space.org/download/usbredir/" + ; "usbredir-" version ".tar.bz2")) + ; (sha256 + ; (base32 + ; "1wsnmk4wjpdhbn1zaxg6bmyxspcki2zgy0am9lk037rnl4krwzj0")))) + ; FIXME: usbredir 0.7.1 release doesn't build on 32 bit systems. + ; issue is fixed in HEAD + ; remove 'autogen phase and autoconf, automake, libtool inputs + (source (origin + (method git-fetch) + (uri (git-reference + (url "http://cgit.freedesktop.org/spice/usbredir") + (commit commit))) + (sha256 + (base32 + "052fywgi72j68dr5ybldncg4vk8iqfrh58la7iazyxxpph9aag1g")))) + (build-system gnu-build-system) + (propagated-inputs + `(("libusb" ,libusb))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool))) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'autogen (lambda* _ (system* "sh" "autogen.sh")))))) - (synopsis "Tools for sending USB device traffic over a network") - (description "Usbredir is a network protocol for sending USB device traffic -over a network connection. It can be used to redirect traffic from a USB device -to a different (virtual) machine than the one to which the USB device is -attached.") - (home-page "http://www.spice-space.org") - (license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+)))) + (synopsis "Tools for sending USB device traffic over a network") + (description "Usbredir is a network protocol for sending USB device traffic + over a network connection. It can be used to redirect traffic from a USB device + to a different (virtual) machine than the one to which the USB device is + attached.") + (home-page "http://www.spice-space.org") + (license (list license:gpl2+ license:lgpl2.0+ license:lgpl2.1+))))) (define-public virglrenderer (package -- cgit 1.4.1 From 8cce8797be11a0709b982ca540c6f9c7597e8c08 Mon Sep 17 00:00:00 2001 From: David Craven Date: Sun, 14 Aug 2016 19:49:52 +0200 Subject: gnu: usbredir: Invoke autoreconf directly. * gnu/packages/spice.scm (usbredir)[arguments]: Invoke autoreconf directly. --- gnu/packages/spice.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gnu/packages/spice.scm') diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 870278c3ea..3e6366e6c0 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -78,12 +78,12 @@ ("autoconf" ,autoconf) ("automake" ,automake) ("libtool" ,libtool))) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'autogen - (lambda* _ - (system* "sh" "autogen.sh")))))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'autogen + (lambda _ + (zero? (system* "autoreconf" "-vfi"))))))) (synopsis "Tools for sending USB device traffic over a network") (description "Usbredir is a network protocol for sending USB device traffic over a network connection. It can be used to redirect traffic from a USB device -- cgit 1.4.1