From: Marius Bakke <mbakke@fastmail.com>
To: 30763@debbugs.gnu.org
Subject: [bug#30763] [PATCH core-updates 23/27] gnu: Switch from xf86driproto to xorgproto.
Date: Sat, 10 Mar 2018 16:48:03 +0100 [thread overview]
Message-ID: <20180310154807.7225-23-mbakke@fastmail.com> (raw)
In-Reply-To: <20180310154807.7225-1-mbakke@fastmail.com>
* gnu/packages/xorg.scm (xf86-video-mach64, xf86-video-mga, xf86-video-ati,
xf86-video-openchrome, xf86-video-r128, xf86-video-savage, xf86-video-sis,
xf86-video-tdfx)[inputs]: Replace XF86DRIPROTO with XORGPROTO.
(xf86driproto)[properties]: Mark as superseded by XORGPROTO.
(xorg-server)[inputs]: Remove XF86DRIPROTO.
---
gnu/packages/xorg.scm | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index eac098d9b..92d4b46a8 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -2686,7 +2686,7 @@ as USB mice.")
"0yafix56vkqglw243cwb94nv91vbjv12sqh29x1bap0hwd1dclgf"))))
(build-system gnu-build-system)
(inputs `(("mesa" ,mesa)
- ("xxf86driproto" ,xf86driproto)
+ ("xorgproto" ,xorgproto)
("xorg-server" ,xorg-server)))
(native-inputs `(("pkg-config" ,pkg-config)))
(arguments `(#:configure-flags `("--disable-glamor"))) ; TODO: Enable glamor
@@ -2976,7 +2976,7 @@ It supports a variety of Intel graphics chipsets.")
(patches (search-patches "xf86-video-mach64-glibc-2.20.patch"))))
(build-system gnu-build-system)
(inputs `(("mesa" ,mesa)
- ("xf86driproto" ,xf86driproto)
+ ("xorgproto" ,xorgproto)
("xorg-server" ,xorg-server)))
(native-inputs
`(("pkg-config" ,pkg-config)))
@@ -3007,7 +3007,7 @@ the same level of support for generic VGA or 8514/A adapters.")
"08ll52hlar9z446v0wwca5qkj3hxhswwm7vvcgic9xv4cf7csqxn"))))
(build-system gnu-build-system)
(inputs `(("mesa" ,mesa)
- ("xf86driproto" ,xf86driproto)
+ ("xorgproto" ,xorgproto)
("xorg-server" ,xorg-server)))
(native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://www.x.org/wiki/")
@@ -3138,7 +3138,7 @@ graphics cards.")
("libxext" ,libxext)
("libxvmc" ,libxvmc)
("mesa" ,mesa)
- ("xf86driproto" ,xf86driproto)
+ ("xorgproto" ,xorgproto)
("xorg-server" ,xorg-server)))
(native-inputs
`(("pkg-config" ,pkg-config)))
@@ -3195,7 +3195,7 @@ This driver is intended for the spice qxl virtio device.")
"1pkpka5m4cd6iy0f8iqnmg6xci14nb6887ilvxzn3xrsgx8j3nl4"))))
(build-system gnu-build-system)
(inputs `(("mesa" ,mesa)
- ("xf86driproto" ,xf86driproto)
+ ("xorgproto" ,xorgproto)
("xorg-server" ,xorg-server)))
(native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://www.x.org/wiki/")
@@ -3222,7 +3222,7 @@ This driver is intended for ATI Rage 128 based cards.")
"11pcrsdpdrwk0mrgv83s5nsx8a9i4lhmivnal3fjbrvi3zdw94rc"))))
(build-system gnu-build-system)
(inputs `(("mesa" ,mesa)
- ("xf86driproto" ,xf86driproto)
+ ("xorgproto" ,xorgproto)
("xorg-server" ,xorg-server)))
(native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://www.x.org/wiki/")
@@ -3275,7 +3275,7 @@ Xorg X server.")
(build-system gnu-build-system)
(inputs `(("mesa" ,mesa)
("xf86dgaproto" ,xf86dgaproto)
- ("xf86driproto" ,xf86driproto)
+ ("xorgproto" ,xorgproto)
("xorg-server" ,xorg-server)))
(native-inputs
`(("pkg-config" ,pkg-config)))
@@ -3351,7 +3351,7 @@ This driver supports SiS chipsets of 300/315/330/340 series.")
"0hia45z4jc472fxp00803nznizcn4h1ybp63jcsb4lmd9vhqxx2c"))))
(build-system gnu-build-system)
(inputs `(("mesa" ,mesa)
- ("xf86driproto" ,xf86driproto)
+ ("xorgproto" ,xorgproto)
("xorg-server" ,xorg-server)))
(native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://www.x.org/wiki/")
@@ -3578,8 +3578,8 @@ direct linear framebuffer access.")
"XFree86 Direct Rendering Infrastructure Extension defines a
protocol to allow user applications to access the video hardware without
requiring data to be passed through the X server.")
- (license license:x11)))
-
+ (license license:x11)
+ (properties `((superseded . ,xorgproto)))))
(define-public xf86vidmodeproto
(package
@@ -5106,7 +5106,6 @@ over Xlib, including:
("mesa" ,mesa)
("pixman" ,pixman)
("xineramaproto" ,xineramaproto)
- ("xf86driproto" ,xf86driproto)
("xorgproto" ,xorgproto)))
(inputs
`(("udev" ,eudev)
--
2.16.2
next prev parent reply other threads:[~2018-03-10 15:49 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-10 15:45 [bug#30763] [PATCH core-updates 00/27] Use xorgproto everywhere Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 01/27] gnu: Switch from xproto to xorgproto Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 02/27] gnu: Switch from randrproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 03/27] gnu: Switch from bigreqsproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 04/27] gnu: Switch from xextproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 05/27] gnu: Switch from fixesproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 06/27] gnu: Switch from compositeproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 07/27] gnu: Switch from kbproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 08/27] gnu: Switch from inputproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 09/27] gnu: Switch from fontsproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 10/27] gnu: Switch from glproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 11/27] gnu: Switch from dmxproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 12/27] gnu: Switch from damageproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 13/27] gnu: Switch from dri2proto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 14/27] gnu: Switch from dri3proto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 15/27] gnu: Switch from videoproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 16/27] gnu: Switch from windowswmproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 17/27] gnu: Switch from xcmiscproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 18/27] gnu: Switch from presentproto " Marius Bakke
2018-03-10 15:47 ` [bug#30763] [PATCH core-updates 19/27] gnu: Switch from renderproto " Marius Bakke
2018-03-10 15:48 ` [bug#30763] [PATCH core-updates 20/27] gnu: Switch from resourceproto " Marius Bakke
2018-03-10 15:48 ` [bug#30763] [PATCH core-updates 21/27] gnu: Switch from recordproto " Marius Bakke
2018-03-10 15:48 ` [bug#30763] [PATCH core-updates 22/27] gnu: Switch from scrnsaverproto " Marius Bakke
2018-03-10 15:48 ` Marius Bakke [this message]
2018-03-10 15:48 ` [bug#30763] [PATCH core-updates 24/27] gnu: Switch from xf86dgaproto " Marius Bakke
2018-03-10 15:48 ` [bug#30763] [PATCH core-updates 25/27] gnu: Switch from xf86bigfontproto " Marius Bakke
2018-03-10 15:48 ` [bug#30763] [PATCH core-updates 26/27] gnu: Switch from xf86vidmodeproto " Marius Bakke
2018-03-10 15:48 ` [bug#30763] [PATCH core-updates 27/27] gnu: Switch from xineramaproto " Marius Bakke
2018-03-12 14:38 ` [bug#30763] [PATCH core-updates 00/27] Use xorgproto everywhere Ludovic Courtès
2018-03-17 23:21 ` bug#30763: " Marius Bakke
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180310154807.7225-23-mbakke@fastmail.com \
--to=mbakke@fastmail.com \
--cc=30763@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).