summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Mattern2016-01-12 13:41:37 +0100
committerPeter Mattern2016-01-12 13:44:16 +0100
commit1a6d9b96a8ddc92e0c8a7760c0b6d10b43b14c47 (patch)
treeedcbb7c7c179949f64539a3bc8ee1e3f2da0984b
parent852955b848e6886762128babf093934aad74945d (diff)
downloadaur-1a6d9b96a8ddc92e0c8a7760c0b6d10b43b14c47.tar.gz
Remove fix-cast.patch
as of 91ee004 neither needed nor functional any longer
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD11
-rw-r--r--fix-cast.patch25
3 files changed, 8 insertions, 36 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1636267a89b3..9590ccd7ca3c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v8
+# Tue Jan 12 12:43:17 UTC 2016
pkgbase = xf86-video-qxl-git
pkgdesc = X Window System QXL driver including Xspice server
- pkgver = 0.1.4.7.ge765cc5
- pkgrel = 5
+ pkgver = 0.1.4.31.g91ee004
+ pkgrel = 1
url = http://www.spice-space.org
arch = i686
arch = x86_64
@@ -25,9 +27,7 @@ pkgbase = xf86-video-qxl-git
conflicts = X-ABI-VIDEODRV_VERSION<20
conflicts = X-ABI-VIDEODRV_VERSION>=21
source = git://anongit.freedesktop.org/xorg/driver/xf86-video-qxl
- source = fix-cast.patch
sha256sums = SKIP
- sha256sums = 575243334f763c21282eccd7bd4eb713b90e96fdd46a882370925fa20d4acb70
pkgname = xf86-video-qxl-git
diff --git a/PKGBUILD b/PKGBUILD
index bf8be000adec..5ee9bb17d56a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,8 +4,8 @@
_pkgname=xf86-video-qxl
pkgname=$_pkgname-git
-pkgver=0.1.4.7.ge765cc5
-pkgrel=5
+pkgver=0.1.4.31.g91ee004
+pkgrel=1
pkgdesc='X Window System QXL driver including Xspice server'
arch=('i686' 'x86_64')
url='http://www.spice-space.org'
@@ -16,10 +16,8 @@ optdepends=('python2: Xspice server')
makedepends=('git' 'xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'spice-protocol')
provides=('xf86-video-qxl')
conflicts=('xf86-video-qxl' 'X-ABI-VIDEODRV_VERSION<20' 'X-ABI-VIDEODRV_VERSION>=21')
-source=('git://anongit.freedesktop.org/xorg/driver/xf86-video-qxl'
- 'fix-cast.patch')
-sha256sums=('SKIP'
- '575243334f763c21282eccd7bd4eb713b90e96fdd46a882370925fa20d4acb70')
+source=('git://anongit.freedesktop.org/xorg/driver/xf86-video-qxl')
+sha256sums=('SKIP')
pkgver() {
cd $_pkgname
@@ -28,7 +26,6 @@ pkgver() {
prepare() {
cd $_pkgname
- patch -p1 < ${srcdir}/fix-cast.patch
sed -i '1c #!/usr/bin/python2' scripts/Xspice
}
diff --git a/fix-cast.patch b/fix-cast.patch
deleted file mode 100644
index e51beec29074..000000000000
--- a/fix-cast.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From d17fd8b7b503fd5d247fe75432ad192414fa2bdd Mon Sep 17 00:00:00 2001
-From: Christian Hesse <mail@eworm.de>
-Date: Tue, 7 Jan 2014 08:16:48 +0100
-Subject: [PATCH 1/1] fix cast
-
----
- src/spiceqxl_display.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/spiceqxl_display.c b/src/spiceqxl_display.c
-index a3a8978..7646efc 100644
---- a/src/spiceqxl_display.c
-+++ b/src/spiceqxl_display.c
-@@ -350,6 +350,6 @@ void qxl_add_spice_display_interface(qxl_screen_t *qxl)
-
- void spiceqxl_display_monitors_config(qxl_screen_t *qxl)
- {
-- spice_qxl_monitors_config_async(&qxl->display_sin, (QXLPHYSICAL)qxl->monitors_config,
-- MEMSLOT_GROUP, 0);
-+ spice_qxl_monitors_config_async(&qxl->display_sin,
-+ (QXLPHYSICAL)(uintptr_t)qxl->monitors_config, MEMSLOT_GROUP, 0);
- }
---
-1.8.5.2
-