gnu: xpra: Update to 2.2.

* gnu/packages/xorg.scm (xpra): Update to 2.2.
[inputs]: Add python2-netifaces and python2-pyopengl-accelerate.  Fix
position of commas.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Rutger Helling 2017-12-12 10:28:24 +01:00 committed by Ludovic Courtès
parent 97c26793d9
commit a0ec2d256d
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -5952,7 +5952,7 @@ basic eye-candy effects.")
(define-public xpra (define-public xpra
(package (package
(name "xpra") (name "xpra")
(version "2.1.3") (version "2.2")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -5960,41 +5960,42 @@ basic eye-candy effects.")
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0r0l3p59q05fmvkp3jv8vmny2v8m1vyhqkg6b9r2qgxn1kcxx7rm")))) "0gi0i5pbhfzr5j4mbngjxvrk6r4lvigw4w2104znplmmrf1mw6y2"))))
(build-system python-build-system) (build-system python-build-system)
(inputs `(("ffmpeg", ffmpeg) (inputs `(("ffmpeg" ,ffmpeg)
("flac", flac) ("flac" ,flac)
("gtk+-2" ,gtk+-2) ;; no full GTK3 support yet ("gtk+-2" ,gtk+-2) ;; no full GTK3 support yet
("libjpeg", libjpeg) ("libjpeg" ,libjpeg)
("libpng", libpng) ("libpng" ,libpng)
("libvpx", libvpx) ("libvpx" ,libvpx)
("libx264", libx264) ("libx264" ,libx264)
("libxcomposite", libxcomposite) ("libxcomposite" ,libxcomposite)
("libxdamage", libxdamage) ("libxdamage" ,libxdamage)
("libxkbfile", libxkbfile) ("libxkbfile" ,libxkbfile)
("libxrandr", libxrandr) ("libxrandr" ,libxrandr)
("libxtst", libxtst) ("libxtst" ,libxtst)
("lzo", lzo) ("lzo" ,lzo)
("python2-cryptography", python2-cryptography) ("python2-cryptography" ,python2-cryptography)
("python2-dbus", python2-dbus) ("python2-dbus" ,python2-dbus)
("python2-lz4", python2-lz4) ("python2-lz4" ,python2-lz4)
("python2-lzo", python2-lzo) ("python2-lzo" ,python2-lzo)
("python2-numpy", python2-numpy) ("python2-netifaces" ,python2-netifaces)
("python2-numpy" ,python2-numpy)
("python2-pillow" ,python2-pillow) ("python2-pillow" ,python2-pillow)
("python2-pycairo", python2-pycairo) ("python2-pycairo" ,python2-pycairo)
("python2-pycrypto", python2-pycrypto) ("python2-pycrypto" ,python2-pycrypto)
("python2-pygobject", python2-pygobject) ("python2-pygobject" ,python2-pygobject)
("python2-pyopengl", python2-pyopengl) ("python2-pyopengl" ,python2-pyopengl)
("python2-pygtk", python2-pygtk) ("python2-pyopengl-accelerate" ,python2-pyopengl-accelerate)
("python2-rencode", python2-rencode) ("python2-pygtk" ,python2-pygtk)
("xorg-server", xorg-server))) ("python2-rencode" ,python2-rencode)
("xorg-server" ,xorg-server)))
(native-inputs `(("pkg-config" ,pkg-config) (native-inputs `(("pkg-config" ,pkg-config)
("python2-cython", python2-cython))) ("python2-cython", python2-cython)))
(arguments (arguments
`(#:python ,python-2 ;; no full Python 3 support yet `(#:python ,python-2 ;; no full Python 3 support yet
#:configure-flags '("--with-tests" #:configure-flags '("--with-tests"
"--with-bundle_tests" "--with-bundle_tests"
"--without-opengl" ;; TODO: pygtkglext needed.
"--without-Xdummy" ;; We use Xvfb instead. "--without-Xdummy" ;; We use Xvfb instead.
"--without-Xdummy_wrapper" "--without-Xdummy_wrapper"
"--without-strict") "--without-strict")