gnu: xorg-server: Update to 1.19.2 [fixes CVE-2017-2624].
* gnu/packages/xorg.scm (xorg-server): Update to 1.19.2. [native-inputs]: Add font-util, libtool, autoconf, and automake. [arguments]: Add 'bootstrap' phase.
This commit is contained in:
parent
e3ff83834b
commit
9a91b00fd0
|
@ -4982,7 +4982,7 @@ over Xlib, including:
|
||||||
(define-public xorg-server
|
(define-public xorg-server
|
||||||
(package
|
(package
|
||||||
(name "xorg-server")
|
(name "xorg-server")
|
||||||
(version "1.19.1")
|
(version "1.19.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -4991,7 +4991,7 @@ over Xlib, including:
|
||||||
name "-" version ".tar.bz2"))
|
name "-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1yx7cnlhl14hsdq5lg0740s4nxqxkmaav38x428llv1zkprjrbkr"))))
|
"1fw4b2lf75nsqkiyhn95b1c2if1l3cw5a188a1szx1d8l7sbk2jg"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("dri2proto" ,dri2proto)
|
`(("dri2proto" ,dri2proto)
|
||||||
|
@ -5050,7 +5050,12 @@ over Xlib, including:
|
||||||
("xcb-util-wm" ,xcb-util-wm)))
|
("xcb-util-wm" ,xcb-util-wm)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python" ,python-minimal-wrapper)
|
`(("python" ,python-minimal-wrapper)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)
|
||||||
|
;; XXX Bootstrapping inputs for 1.19.2. Remove for > 1.19.2.
|
||||||
|
("font-util" ,font-util)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f
|
`(#:parallel-tests? #f
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
|
@ -5077,6 +5082,10 @@ over Xlib, including:
|
||||||
|
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
;; XXX The 1.19.2 release of xorg-server was not bootstrapped:
|
||||||
|
;; <https://lists.x.org/archives/xorg-announce/2017-March/002780.html>
|
||||||
|
(add-before 'configure 'bootstrap
|
||||||
|
(lambda _ (zero? (system* "autoreconf" "-vfi"))))
|
||||||
(add-before
|
(add-before
|
||||||
'configure 'pre-configure
|
'configure 'pre-configure
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Loading…
Reference in New Issue