all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: The Man <squishypinkelephant@gmail.com>
To: 74522@debbugs.gnu.org
Cc: The Man <squishypinkelephant@gmail.com>
Subject: [bug#74522] [PATCH 70/73] move libgl provider from mesa to libglvnd+mesa
Date: Sun, 24 Nov 2024 21:42:03 -0600	[thread overview]
Message-ID: <42555e2104be152015068c4405448139f823f6f3.1732504868.git.squishypinkelephant@gmail.com> (raw)
In-Reply-To: <cover.1732504867.git.squishypinkelephant@gmail.com>

Change-Id: I6e426b25dbd4484e004da2ef5e951eaea2e1caf7
---
 gnu/packages/xorg.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 554dc21ba7..b296467132 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -2348,7 +2348,7 @@ (define-public xdriinfo
             "0d7p9fj3znq0av9pjgi2kphqaz5w7b9hxlz63zbxs69bknp8p0yx"))))
     (build-system gnu-build-system)
     (inputs
-      (list mesa libx11))
+      (list libgl libx11))
     (native-inputs
       (list pkg-config))
     (home-page "https://www.x.org/wiki/")
@@ -2726,7 +2726,7 @@ (define-public xf86-video-ati
          (sha256
           (base32 "1n49wx0v13jh8vv17sxgrmmpi1mk3n2wph07jfmxmzqahpcn4lkn"))))
       (build-system gnu-build-system)
-      (inputs (list mesa xorgproto xorg-server))
+      (inputs (list libgl xorgproto xorg-server))
       (native-inputs
        (list pkg-config autoconf automake libtool))
       (home-page "https://www.x.org/wiki/")
@@ -2825,7 +2825,7 @@ (define-public xf86-video-freedreno
       (build-system gnu-build-system)
       (inputs
        `(("libdrm" ,libdrm)
-         ("mesa" ,mesa)
+         ("libgl" ,libgl)
          ("udev" ,eudev)
          ("xorg-server" ,xorg-server)
          ("zlib" ,zlib)))
@@ -2946,7 +2946,7 @@ (define-public xf86-video-intel
            "0lv6vlx9gvp34pidmx4gxgb0qjf0km0gabbaxw141nnvj1azv94y"))
          (file-name (git-file-name name version))))
       (build-system gnu-build-system)
-      (inputs `(("mesa" ,mesa)
+      (inputs `(("libgl" ,libgl)
                 ("udev" ,eudev)
                 ("libx11" ,libx11)
                 ("libxfont" ,libxfont2)
@@ -2982,7 +2982,7 @@ (define-public xf86-video-mach64
           (base32
            "1fl1jjx0zdr9alkxw23zx6aj1bj4l8inz5w7y7k2g0kwzazqmmsh"))))
     (build-system gnu-build-system)
-    (inputs (list mesa xorgproto xorg-server))
+    (inputs (list libgl xorgproto xorg-server))
     (native-inputs
       (list pkg-config))
     (home-page "https://www.x.org/wiki/")
@@ -3010,7 +3010,7 @@ (define-public xf86-video-mga
           (base32
            "1aq3aqh2yg09gy864kkshfx5pjl5w05jdz97bx5bnrbrhdq3p8r7"))))
     (build-system gnu-build-system)
-    (inputs (list mesa xorgproto xorg-server))
+    (inputs (list libgl xorgproto xorg-server))
     (native-inputs (list pkg-config))
     (home-page "https://www.x.org/wiki/")
     (synopsis "Matrox video driver for X server")
@@ -3151,7 +3151,7 @@ (define-public xf86-video-r128
                (base32
                 "0hf7h54wxgs8njavp0kgadjq1787fhbd588j7pj685hz2wmkq0kx"))))
     (build-system gnu-build-system)
-    (inputs (list mesa xorgproto xorg-server))
+    (inputs (list libgl xorgproto xorg-server))
     (native-inputs
      (list pkg-config))
     (home-page "https://www.x.org/wiki/")
@@ -3177,7 +3177,7 @@ (define-public xf86-video-savage
           (base32
            "11pcrsdpdrwk0mrgv83s5nsx8a9i4lhmivnal3fjbrvi3zdw94rc"))))
     (build-system gnu-build-system)
-    (inputs (list mesa xorgproto xorg-server))
+    (inputs (list libgl xorgproto xorg-server))
     (native-inputs (list pkg-config))
     (home-page "https://www.x.org/wiki/")
     (synopsis "Savage video driver for X server")
@@ -3225,7 +3225,7 @@ (define-public xf86-video-sis
          (base32
           "0nrs6cjldlhakx5987fiiggjrlzilsbdc7l9pz22x1iwslbkz78i"))))
     (build-system gnu-build-system)
-    (inputs (list mesa xorgproto xorg-server))
+    (inputs (list libgl xorgproto xorg-server))
     (native-inputs
      (list pkg-config))
     (home-page "https://www.x.org/wiki/")
@@ -3250,7 +3250,7 @@ (define-public xf86-video-tdfx
           (base32
            "0qc5wzwf1n65si9rc37bh224pzahh7gp67vfimbxs0b9yvhq0i9g"))))
     (build-system gnu-build-system)
-    (inputs (list mesa xorgproto xorg-server))
+    (inputs (list libgl xorgproto xorg-server))
     (native-inputs (list pkg-config))
     (home-page "https://www.x.org/wiki/")
     (synopsis "3Dfx video driver for X server")
@@ -3403,7 +3403,7 @@ (define-public xf86-video-vmware
      (list libx11
            libxext
            llvm
-           mesa ; for xatracker
+           libgl ; for xatracker
            xorg-server))
     (native-inputs
      (list eudev pkg-config))
@@ -5055,7 +5055,7 @@ (define-public xorg-server
     (build-system gnu-build-system)
     (propagated-inputs
      ;; The following libraries are required by xorg-server.pc.
-     (list libpciaccess libxcvt mesa pixman xorgproto))
+     (list libpciaccess libxcvt libgl pixman xorgproto))
     (inputs
      `(("udev" ,eudev)
        ("dbus" ,dbus)
@@ -5243,7 +5243,7 @@ (define-public egl-gbm
         (base32 "125h1751vdg60klci0cbmcqj46spxalzqawvvd469qvx69bm30da"))))
     (build-system meson-build-system)
     (native-inputs (list pkg-config))
-    (inputs (list eglexternalplatform mesa))
+    (inputs (list eglexternalplatform libgl))
     (synopsis "GBM EGL external platform library")
     (description
      "This package provides an EGL External Platform library implementation for
@@ -5266,13 +5266,13 @@ (define-public egl-wayland
         (base32 "0irmvp8g2wn18q6k3vcmg4a57q4ddmqccv3g7hbysqnsdsps63rl"))))
     (build-system meson-build-system)
     (native-inputs
-     (cons* libglvnd ;needed for headers
+     (cons* libgl ;needed for headers
             mesa-headers pkg-config
             (if (%current-target-system)
               (list pkg-config-for-build wayland wayland-protocols)
               '())))
     (inputs
-     (list mesa wayland wayland-protocols))
+     (list libgl wayland wayland-protocols))
     (propagated-inputs
      (list eglexternalplatform))
     (synopsis "EGLStream-based Wayland external platform")
-- 
2.46.0





  parent reply	other threads:[~2024-11-25  4:11 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-25  3:38 [bug#74522] [PATCH 00/73] Moving Guix to libglvnd The Man
2024-11-25  3:40 ` [bug#74522] [PATCH 01/73] move libgl provider from mesa to libglvnd+mesa The Man
2024-11-25  3:40 ` [bug#74522] [PATCH 02/73] " The Man
2024-11-25  3:40 ` [bug#74522] [PATCH 03/73] " The Man
2024-11-25  3:40 ` [bug#74522] [PATCH 04/73] " The Man
2024-11-25  3:40 ` [bug#74522] [PATCH 05/73] " The Man
2024-11-25  3:40 ` [bug#74522] [PATCH 06/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 07/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 08/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 09/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 10/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 11/73] " The Man
2024-11-25  5:18   ` Liliana Marie Prikler
2024-11-25  3:41 ` [bug#74522] [PATCH 12/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 13/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 14/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 15/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 16/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 17/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 18/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 19/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 20/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 21/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 22/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 23/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 24/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 25/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 26/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 27/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 28/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 29/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 30/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 31/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 32/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 33/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 34/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 35/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 36/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 37/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 38/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 39/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 40/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 41/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 42/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 43/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 44/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 45/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 46/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 47/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 48/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 49/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 50/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 51/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 52/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 53/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 54/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 55/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 56/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 57/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 58/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 59/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 60/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 61/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 62/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 63/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 64/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 65/73] " The Man
2024-11-25  3:41 ` [bug#74522] [PATCH 66/73] " The Man
2024-11-25  3:42 ` [bug#74522] [PATCH 67/73] " The Man
2024-11-25  3:42 ` [bug#74522] [PATCH 68/73] " The Man
2024-11-25  3:42 ` [bug#74522] [PATCH 69/73] " The Man
2024-11-25  3:42 ` The Man [this message]
2024-11-25  3:42 ` [bug#74522] [PATCH 71/73] " The Man
2024-11-25  3:42 ` [bug#74522] [PATCH 72/73] move libgl provider from mesa to libglvnd+mesa TEMP The Man
2024-11-25  3:42 ` [bug#74522] [PATCH 73/73] move libgl provider from mesa to libglvnd+mesa The Man

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=42555e2104be152015068c4405448139f823f6f3.1732504868.git.squishypinkelephant@gmail.com \
    --to=squishypinkelephant@gmail.com \
    --cc=74522@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 external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.