[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
42/75: gnu: xf86-video-intel: Update to git snapshot e41040f.
From: |
Mark H. Weaver |
Subject: |
42/75: gnu: xf86-video-intel: Update to git snapshot e41040f. |
Date: |
Wed, 24 Feb 2016 16:51:35 +0000 |
mhw pushed a commit to branch media-updates
in repository guix.
commit 6cc328b43b1ae2cc1d201844cff7c619187cca5e
Author: Andy Wingo <address@hidden>
Date: Thu Feb 18 21:12:31 2016 +0100
gnu: xf86-video-intel: Update to git snapshot e41040f.
* gnu/packages/xorg.scm (xf86-video-intel): Update to git snapshot
e41040f. Upstream isn't making releases.
Modified-By: Mark H Weaver <address@hidden>
---
gnu/packages/xorg.scm | 73 +++++++++++++++++++++++++++---------------------
1 files changed, 41 insertions(+), 32 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 0378047..fadf0e8 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -2811,39 +2811,48 @@ X server.")
(define-public xf86-video-intel
- (package
- (name "xf86-video-intel")
- (version "2.21.15")
- (source
- (origin
- (method url-fetch)
- (uri (string-append
- "mirror://xorg/individual/driver/xf86-video-intel-"
- version
- ".tar.bz2"))
- (sha256
- (base32
- "1z6ncmpszmwqi9xr590c4kp4gjjf7mndcr56r35x2bx7h87i8nkx"))
- (patches (list (search-patch "xf86-video-intel-compat-api.patch")
- (search-patch "xf86-video-intel-glibc-2.20.patch")))))
- (build-system gnu-build-system)
- (inputs `(("mesa" ,mesa)
- ("udev" ,eudev)
- ("libx11" ,libx11)
- ("xorg-server" ,xorg-server)))
- (native-inputs
- `(("pkg-config" ,pkg-config)))
- (supported-systems
- ;; This driver is only supported on Intel systems.
- (filter (lambda (system) (or (string-prefix? "i686-" system)
- (string-prefix? "x86_64-" system)))
- %supported-systems))
- (home-page "http://www.x.org/wiki/")
- (synopsis "Intel video driver for X server")
- (description
- "xf86-video-intel is a 2D graphics driver for the Xorg X server.
+ (let ((commit "e41040f"))
+ (package
+ (name "xf86-video-intel")
+ (version (string-append "2.99.917." commit))
+ (source
+ (origin
+ ;; there's no current tarball
+ (method git-fetch)
+ (uri (git-reference
+ (url
"http://anongit.freedesktop.org/git/xorg/driver/xf86-video-intel.git")
+ (commit commit)))
+ (sha256
+ (base32
+ "1gfh0ghkaqv4nfjdgbi6digqkz13hcnl56nl4vy0dj5lcrmrdxxs"))
+ (file-name (string-append name "-" version))))
+ (build-system gnu-build-system)
+ (inputs `(("mesa" ,mesa)
+ ("udev" ,eudev)
+ ("libx11" ,libx11)
+ ("libxfont" ,libxfont)
+ ("xorg-server" ,xorg-server)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)))
+ (supported-systems
+ ;; This driver is only supported on Intel systems.
+ (filter (lambda (system) (or (string-prefix? "i686-" system)
+ (string-prefix? "x86_64-" system)))
+ %supported-systems))
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (add-after 'unpack 'bootstrap
+ (lambda _
+ (zero? (system* "autoreconf" "-vfi")))))))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "Intel video driver for X server")
+ (description
+ "xf86-video-intel is a 2D graphics driver for the Xorg X server.
It supports a variety of Intel graphics chipsets.")
- (license license:x11)))
+ (license license:x11))))
(define-public xf86-video-mach64
- 39/75: gnu: xf86-video-ati: Update to 7.6.1., (continued)
- 39/75: gnu: xf86-video-ati: Update to 7.6.1., Mark H. Weaver, 2016/02/24
- 35/75: gnu: xf86-input-libinput: Update to 0.16.0., Mark H. Weaver, 2016/02/24
- 16/75: gnu: font-util: Update to 1.3.1., Mark H. Weaver, 2016/02/24
- 11/75: gnu-maintenance: Add X.org updater., Mark H. Weaver, 2016/02/24
- 18/75: gnu: kbproto: Update to 1.0.7., Mark H. Weaver, 2016/02/24
- 64/75: gnu: libxp: Update to 1.0.3., Mark H. Weaver, 2016/02/24
- 70/75: gnu: libxxf86vm: Update to 1.1.4., Mark H. Weaver, 2016/02/24
- 69/75: gnu: libxvmc: Update to 1.0.9., Mark H. Weaver, 2016/02/24
- 60/75: gnu: xkeyboard-config: Update to 2.17., Mark H. Weaver, 2016/02/24
- 61/75: gnu: xlsatoms: Update to 1.1.2., Mark H. Weaver, 2016/02/24
- 42/75: gnu: xf86-video-intel: Update to git snapshot e41040f.,
Mark H. Weaver <=
- 53/75: gnu: xf86-video-vesa: Update to 2.3.4., Mark H. Weaver, 2016/02/24
- 54/75: gnu: xf86-video-vmware: Update to 13.1.0., Mark H. Weaver, 2016/02/24
- 38/75: gnu: xf86-input-void: Update to 1.4.1., Mark H. Weaver, 2016/02/24
- 47/75: gnu: xf86-video-r128: Update to 6.10.1., Mark H. Weaver, 2016/02/24
- 41/75: gnu: xf86-video-geode: Update to 2.11.18., Mark H. Weaver, 2016/02/24
- 49/75: gnu: xf86-video-siliconmotion: Update to 1.7.8., Mark H. Weaver, 2016/02/24
- 67/75: gnu: libxi: Update to 1.7.6., Mark H. Weaver, 2016/02/24
- 72/75: gnu: libx11: Update to 1.6.3., Mark H. Weaver, 2016/02/24
- 65/75: gnu: libxrender: Update to 0.9.9., Mark H. Weaver, 2016/02/24
- 74/75: gnu: libxaw: Update to 1.0.13., Mark H. Weaver, 2016/02/24