[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
88/113: gnu: xf86-video-savage: Update to 2.4.1.
From: |
guix-commits |
Subject: |
88/113: gnu: xf86-video-savage: Update to 2.4.1. |
Date: |
Fri, 31 Jan 2025 04:12:16 -0500 (EST) |
iyzsong pushed a commit to branch master
in repository guix.
commit 92412b6ffe637e0423153e14f72324ae5b4141d3
Author: Sou Bunnbu (宋文武) <iyzsong@gmail.com>
AuthorDate: Sat Dec 28 18:48:49 2024 +0800
gnu: xf86-video-savage: Update to 2.4.1.
* gnu/packages/xorg.scm (xf86-video-savage): Update to 2.4.1.
* gnu/packages/patches/xf86-video-savage-xorg-compat.patch: Remove patch.
* gnu/local.mk (dist_patch_DATA): Remove it.
Change-Id: I186c93badb813aa0fc4a3d558ff8a084c6c652af
---
gnu/local.mk | 1 -
.../patches/xf86-video-savage-xorg-compat.patch | 33 ----------------------
gnu/packages/xorg.scm | 7 ++---
3 files changed, 3 insertions(+), 38 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 9ececcbc01..a62d681c58 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -2400,7 +2400,6 @@ dist_patch_DATA =
\
%D%/packages/patches/xdg-desktop-portal-disable-portal-tests.patch\
%D%/packages/patches/xdg-desktop-portal-wlr-harcoded-length.patch\
%D%/packages/patches/xf86-video-nouveau-fixup-ABI.patch \
- %D%/packages/patches/xf86-video-savage-xorg-compat.patch \
%D%/packages/patches/xf86-video-siliconmotion-fix-ftbfs.patch \
%D%/packages/patches/xfig-Enable-error-message-for-missing-libraries.patch
\
%D%/packages/patches/xfig-Fix-double-free-when-requesting-MediaBox.patch
\
diff --git a/gnu/packages/patches/xf86-video-savage-xorg-compat.patch
b/gnu/packages/patches/xf86-video-savage-xorg-compat.patch
deleted file mode 100644
index 9524032676..0000000000
--- a/gnu/packages/patches/xf86-video-savage-xorg-compat.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Fix build against xorg-server >= 1.20.
-
-Patch taken from upstream:
-https://cgit.freedesktop.org/xorg/driver/xf86-video-savage/commit/?id=0ece556daa8a88771b669d8104396abd9166d2d0
-
-diff --git a/src/savage_driver.c b/src/savage_driver.c
-index 58a294d..3cda923 100644
---- a/src/savage_driver.c
-+++ b/src/savage_driver.c
-@@ -2034,8 +2034,6 @@ static Bool SavagePreInit(ScrnInfoPtr pScrn, int flags)
- xf86DrvMsg(pScrn->scrnIndex, X_PROBED, "Detected current MCLK value of
%1.3f MHz\n",
- mclk / 1000.0);
-
-- pScrn->maxHValue = 2048 << 3; /* 11 bits of h_total 8-pixel units */
-- pScrn->maxVValue = 2048; /* 11 bits of v_total */
- pScrn->virtualX = pScrn->display->virtualX;
- pScrn->virtualY = pScrn->display->virtualY;
-
-@@ -3637,6 +3635,14 @@ static ModeStatus SavageValidMode(SCRN_ARG_TYPE arg,
DisplayModePtr pMode,
- (pMode->VDisplay > psav->PanelY)))
- return MODE_PANEL;
-
-+ /* 11 bits of h_total 8-pixel units */
-+ if (pMode->HTotal > (2048 << 3))
-+ return MODE_BAD_HVALUE;
-+
-+ /* 11 bits of v_total */
-+ if (pMode->VTotal > 2048)
-+ return MODE_BAD_VVALUE;
-+
- if (psav->UseBIOS) {
- refresh = SavageGetRefresh(pMode);
- return (SavageMatchBiosMode(pScrn,pMode->HDisplay,
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 61d8b303c6..ce2e5024ad 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -3234,18 +3234,17 @@ This driver is intended for ATI Rage 128 based cards.")
(define-public xf86-video-savage
(package
(name "xf86-video-savage")
- (version "2.3.9")
+ (version "2.4.1")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://xorg/individual/driver/xf86-video-savage-"
version
- ".tar.bz2"))
- (patches (search-patches "xf86-video-savage-xorg-compat.patch"))
+ ".tar.xz"))
(sha256
(base32
- "11pcrsdpdrwk0mrgv83s5nsx8a9i4lhmivnal3fjbrvi3zdw94rc"))))
+ "1bqhgldb6yahpgav7g7cyc4kl5pm3mgkq8w2qncj36311hb92hb7"))))
(build-system gnu-build-system)
(inputs (list mesa xorgproto xorg-server))
(native-inputs (list pkg-config))
- 31/113: gnu: xcb-proto: Update to 1.17.0., (continued)
- 31/113: gnu: xcb-proto: Update to 1.17.0., guix-commits, 2025/01/31
- 67/113: gnu: libxxf86vm: Update to 1.1.6., guix-commits, 2025/01/31
- 69/113: gnu: libxcvt: Update to 0.1.3., guix-commits, 2025/01/31
- 30/113: gnu: xcalc: Update to 1.1.2., guix-commits, 2025/01/31
- 47/113: gnu: xrandr: Update to 1.5.3., guix-commits, 2025/01/31
- 58/113: gnu: libxrender: Update to 0.9.12., guix-commits, 2025/01/31
- 71/113: gnu: libxcursor: Update to 1.2.3., guix-commits, 2025/01/31
- 72/113: gnu: libxt: Update to 1.3.1., guix-commits, 2025/01/31
- 73/113: gnu: libxaw: Update to 1.0.16., guix-commits, 2025/01/31
- 75/113: gnu: xcb-util-cursor: Update to 0.1.5., guix-commits, 2025/01/31
- 88/113: gnu: xf86-video-savage: Update to 2.4.1.,
guix-commits <=
- 95/113: gnu: xf86-input-void: Update to 1.4.2., guix-commits, 2025/01/31
- 93/113: gnu: xf86-input-keyboard: Update to 2.1.0., guix-commits, 2025/01/31
- 107/113: gnu: xorg-server: Update to 21.1.15., guix-commits, 2025/01/31
- 34/113: gnu: xdpyinfo: Update to 1.3.4., guix-commits, 2025/01/31
- 48/113: gnu: xrdb: Update 1.2.2., guix-commits, 2025/01/31
- 39/113: gnu: xkbprint: Update to 1.0.7., guix-commits, 2025/01/31
- 49/113: gnu: xrefresh: Update to 1.1.0., guix-commits, 2025/01/31
- 61/113: gnu: libice: Update to 1.1.2., guix-commits, 2025/01/31
- 63/113: gnu: libxfixes: Update to 6.0.1., guix-commits, 2025/01/31
- 70/113: gnu: libx11: Update to 1.8.10., guix-commits, 2025/01/31