--- xserver-xorg-video-vmware-13.4.0.orig/.gitlab-ci.yml +++ xserver-xorg-video-vmware-13.4.0/.gitlab-ci.yml @@ -0,0 +1,98 @@ +# vim: set expandtab shiftwidth=2 tabstop=8 textwidth=0 filetype=yaml: +# +# This CI uses the freedesktop.org ci-templates. +# Please see the ci-templates documentation for details: +# https://freedesktop.pages.freedesktop.org/ci-templates/ + +.templates_sha: &template_sha 34f4ade99434043f88e164933f570301fd18b125 # see https://docs.gitlab.com/ee/ci/yaml/#includefile + + +include: + # Arch container builder template + - project: 'freedesktop/ci-templates' + ref: *template_sha + file: '/templates/arch.yml' + - project: 'freedesktop/ci-templates' + ref: *template_sha + file: '/templates/ci-fairy.yml' + - template: Security/SAST.gitlab-ci.yml + + +stages: + - prep # prep work like rebuilding the container images if there is a change + - build # for actually building and testing things in a container + - test + - deploy + + +variables: + FDO_UPSTREAM_REPO: 'xorg/driver/xf86-video-vmware' + # The tag should be updated each time the list of packages is updated. + # Changing a tag forces the associated image to be rebuilt. + # Note: the tag has no meaning, we use a date format purely for readability + FDO_DISTRIBUTION_TAG: '2022-07-18.0' + FDO_DISTRIBUTION_PACKAGES: 'git gcc pkgconf autoconf automake make xorg-util-macros xorgproto xorg-server-devel pixman libx11 libxext libpciaccess libdrm mesa' + + +# +# Verify that commit messages are as expected, signed-off, etc. +# +check-commits: + extends: + - .fdo.ci-fairy + stage: prep + script: + - ci-fairy check-commits --signed-off-by --junit-xml=results.xml + except: + - master@xorg/driver/xf86-video-vmware + variables: + GIT_DEPTH: 100 + artifacts: + reports: + junit: results.xml + +# +# Verify that the merge request has the allow-collaboration checkbox ticked +# +check-merge-request: + extends: + - .fdo.ci-fairy + stage: deploy + script: + - ci-fairy check-merge-request --require-allow-collaboration --junit-xml=results.xml + artifacts: + when: on_failure + reports: + junit: results.xml + allow_failure: true + + +# +# Build a container with the given tag and the packages pre-installed. +# This only happens if the tag changes, otherwise the existing image is +# re-used. +# +container-prep: + extends: + - .fdo.container-build@arch + stage: prep + variables: + GIT_STRATEGY: none + + +# +# The default build, runs on the image built above. +# +build: + stage: build + extends: + - .fdo.distribution-image@arch + script: + - autoreconf -ivf + - mkdir _builddir + - pushd _builddir > /dev/null + - ../configure --disable-silent-rules --enable-vmwarectrl-client + - make + - make check + - make distcheck + - popd > /dev/null --- xserver-xorg-video-vmware-13.4.0.orig/ChangeLog +++ xserver-xorg-video-vmware-13.4.0/ChangeLog @@ -1,627 +1,12 @@ -commit f82ce27f17e1c706f34a0fdc5cceaf6e42db1476 -Author: Peter Hutterer -Date: Tue Jan 24 12:01:58 2023 +1000 - - Bump the version number to 13.4.0 - - Signed-off-by: Peter Hutterer - -commit 3ec2fad6ed1a291f050cac4d33ea81e06c469c62 -Author: Ville Skyttä -Date: Sun Dec 15 13:56:04 2013 +0200 - - Man page syntax fix. - - Signed-off-by: Alan Coopersmith - -commit c59c5d241a5f09244be0cdea6dbdc938774c9486 -Author: Ville Skyttä -Date: Sun Dec 15 13:56:03 2013 +0200 - - Spelling fixes. - - Signed-off-by: Alan Coopersmith - -commit f7d50aa328d9488527eb2c97fba6a06c2b445d44 -Author: Alan Coopersmith -Date: Sun Jul 24 09:09:00 2022 -0700 - - Build xz tarballs instead of bzip2 - - Signed-off-by: Alan Coopersmith - -commit 790d641d1da415ffcda1c251961da63a60c06921 -Author: Alan Coopersmith -Date: Mon Jul 18 17:16:33 2022 -0700 - - gitlab CI: add a basic build test - - Signed-off-by: Alan Coopersmith - -commit ff5637a14c52e6ec592592c88938104b087e925c -Author: Martin Krastev -Date: Tue Jan 25 15:11:08 2022 +0200 - - Garbled XvPutImage output for FOURCC_YV12 when using 3D-accel-texture adaptor - - A helper for the PutImage callback in adaptor 'XA G3D Textured Video' was not - taking into account the source data pitches for YV12 format, resulting in - garbled frames for misaligned frame widths. Issue reported by Doug Brown. - This patch is based off the patch proposed by Doug. - - Repro of the original issue: - gst-launch-1.0 videotestsrc ! video/x-raw,format=YV12,width=449,height=240 ! xvimagesink - - Reported-by: Doug Brown - Signed-off-by: Martin Krastev - Reviewed-by: Zack Rusin - -commit 77b8183b3395333d5d4c73e25c2d011748f15eda -Author: Rudi Heitbaum -Date: Sun May 8 03:00:10 2022 +0000 - - vmwgfx: fix missing array notation - - Fixes error identified by gcc-12.1.0 compiler - - make - CC libvmwgfx_la-vmwgfx_tex_video.lo - vmwgfx_tex_video.c: In function 'stop_video': - vmwgfx_tex_video.c:240:20: error: the comparison will always evaluate as 'true' for the address of 'yuv' will never be NULL [-Werror=address] - 240 | if (priv->yuv[i]) { - | ^~~~ - -commit 50ab008cb965dc9e47e0a84a1950e2485bbd3c44 -Author: Martin Krastev -Date: Tue Nov 30 11:47:39 2021 -0800 - - vmwgfx: Change header inclusion order to avoid xorg headers catching stdbool.h - - libdrm commit e641e2a632d779f638ac2ba983b9fceb20b3fac4 added - stdbool.h to the library headers which conflicts with xorg headers. - - Signed-off-by: Martin Krastev - Reviewed-by: Zack Rusin - Signed-off-by: Zack Rusin - -commit 5569f16a14a1b6974051b57cd2850f00882a899c -Author: Thomas Hellstrom -Date: Thu Jan 17 10:19:04 2019 +0100 - - vmwgfx: Unify style in scanout_update and present functions - - Since the functions are pretty similar, Make them look more similar in terms - of memory allocation methods and variable names - - Reported-by: Brian Paul - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - -commit 0a7c3570c92d2d831fec34415b3d821af18ba858 -Author: Thomas Hellstrom -Date: Wed Jan 9 09:40:03 2019 +0100 - - vmwgfx: Limit the number of cliprects in a drm present_readback command v3 - - The drm present readback command number of cliprects should not exceed - DRM_MODE_FB_DIRTY_MAX_CLIPS. If that number is exceeded, split - the command up. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Deepak Rawat #v1 - -commit 357ce6e48c2e8f2ba2b2d889d4f2041818947eb3 -Author: Thomas Hellstrom -Date: Wed Jan 9 09:20:45 2019 +0100 - - vmwgfx: Limit the number of cliprects in a drm present command v3 - - The drm present command number of cliprects should not exceed - DRM_MODE_FB_DIRTY_MAX_CLIPS. If that number is exceeded, split - the command up. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul #v2 - Reviewed-by: Deepak Rawat < drawat@vmware.com> #v1 - -commit 86189966c3dee0e0c10dd4926cebbe478129c6f0 -Author: Thomas Hellstrom -Date: Wed Jan 9 08:27:16 2019 +0100 - - vmwgfx: Limit the number of cliprects in a drm dirtyfb command v3 - - The drm dirtyfb command would error if the number of cliprects were larger - than DRM_MODE_FB_DIRTY_MAX_CLIPS. If that number is exceeded, split the - command up. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul #v2 - Reviewed-by: Deepak Rawat #v1 - -commit ba4ef498fd1f66f81aaffc3dac504044b2ad7cc3 -Author: Thomas Hellstrom -Date: Wed Jan 9 08:00:00 2019 +0100 - - vmwgfx: Don't exceed the device command size limit v3 - - With a huge number of DMA clip rects we could exceed the device command - buffer command size limit. Fix this by sending multiple DMA commands - when we exceed the limit. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Deepak Rawat #v1 - -commit d31e8e77e1453c26a02f24b26d96b4660d29e1df -Author: Thomas Hellstrom -Date: Tue Nov 27 08:37:13 2018 +0100 - - vmwgfx: Fix invalid memory accesses in CloseScreen - - Some of the CloseScreen callbacks were referencing XA objects so move the - destruction of the XA state tracker to the end of drv_close_screen to avoid - referencing freed resources. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Deepak Rawat - -commit 79d066da48dddcbdfcf41ecbe29cd96aaae2e11c -Author: Thomas Hellstrom -Date: Tue Nov 27 08:29:06 2018 +0100 - - saa: Make sure damage destruction happens at the correct location - - Incorrect DestroyPixmap wrapping previously made the destruction of damage - objects typically happen in damageDestroyPixmap(), leaving a dangling - damage pointer in saa_destroy_pixmap() which was only cleared. However in - some cases that caused us to leak damage objects. - - Rework saa initialization somewhat to make sure saa_destroy_pixmap happens - before damageDestroyPixmap and destroy the damage object in saa_destroy_pixmap. - Also add a damage object destruction notifier callback that clears the - saa pixmap damage pointer should the damage object destruction accidentally - happen elsewhere. - - This makes sure we don't leak damage objects. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Deepak Rawat - -commit 53e87117bbf1cba05a5b5046db9efa961b18fc74 -Author: Thomas Hellstrom -Date: Fri Nov 23 09:30:42 2018 +0100 - - vmwgfx: Use libdrm to obtain the drm device node name v2 - - We were relying on a linux-specific way to do this. Now that the code is - used also on FreeBSD and there is functionality in libdrm to do this, - Use that functionality. - - v2: - Remove unused variable warning in the !VMWGFX_LIBDRM_DEVICENAME case. - - Co-authored-by: Johannes Lundberg - Signed-off-by: Thomas Hellstrom - Reviewed-by: Deepak Rawat #v1 - -commit 0b34df288f0e163750962e0e59f5e329642ca457 -Author: Thomas Hellstrom -Date: Tue Nov 27 16:36:21 2018 +0100 - - vmwgfx: Fix a memory leak - - We were leaking a pointer to a drm encoder. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - -commit 4ec3d67da829f4e7a35ab08427002b9d7e4e5f4b -Author: Thomas Hellstrom -Date: Tue Nov 27 16:20:32 2018 +0100 - - vmwgfx: Fix XVideo memory leaks - - We were not properly freeing the port privates. - In order to access those at CloseScreen time, don't free the adaptor pointers - at XV screen init, but hold on to them until CloseScreen. - - Also properly free the new_adaptors pointer. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - -commit 71c85a70f1c5ff93e931181d0858af22cba231ec -Author: Alan Coopersmith -Date: Sat Nov 10 13:12:13 2018 -0800 - - Remove obsolete B16 & B32 tags in struct definitions - - They were defined as empty strings on all platforms except for the - long unsupported Cray systems which needed to use bitfields to define - any type smaller than 64-bits. - - Signed-off-by: Alan Coopersmith - Reviewed-by: Thomas Hellstrom - -commit a5815ba3eba0b222e8082a2e868d68cdc6993d5e -Author: Thomas Hellstrom -Date: Tue May 15 13:57:27 2018 +0200 - - Bump version number for release - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit 7b163c018b6343590cc36ecd58adcdc30852ee28 -Author: Thomas Hellstrom -Date: Tue May 15 09:52:53 2018 +0200 - - Require at least XA version 2.4 to enable dri3 - - The XA version was bumped from 2.3 to 2.4 to signal that there were no - significant correctness or performance regressions when running dri3 - compared to dri2 on the vmware driver stack. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit 6b7dc2f9304298e669e7ac97594b948d1476ae52 -Author: Thomas Hellstrom -Date: Thu Mar 22 08:28:57 2018 +0100 - - vmwgfx: Clear the DRM mode before use - - Avoid sending partially uninitialized data to the kernel. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - -commit 0f90e2ed52082c1e2af3b47424a6c7c5d4c0c81e -Author: Adam Jackson -Date: Wed Mar 14 21:49:14 2018 +0100 - - saa: Build compatibility with xserver 1.20 - - fbGetRotatedPixmap went away with 24bpp support, just treat it as NULL - and we'll do the right thing. - - Signed-off-by: Adam Jackson - Signed-off-by: Thomas Hellstrom - -commit 3cdeaa5db76f5db7ce9482d3e067d3014076f8e4 -Author: Thomas Hellstrom -Date: Fri Feb 16 13:55:37 2018 +0100 - - Fix a couple of shadowed declaration warnings - - In some enviroments, "index", "y1" and "y2" are defined globally causing - warnings about shadowed declarations. Fix this. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - -commit 4ea5c4d5fa1dcb125137bcb76b402490ac134b4f -Author: Thomas Hellstrom -Date: Fri Feb 16 13:37:56 2018 +0100 - - Build fixes - - A couple of more build fixes for older X servers. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Sinclair Yeh - -commit 1899b0896dae4ce86c9871fa491b464f6af88526 -Author: Thomas Hellstrom -Date: Wed Feb 14 08:10:41 2018 +0100 - - vmwgfx: Fix server termination due to a mesa loader bug - - Some versions of the Gallium loader close our drm file descriptor if - xa_tracker_create() fails (typically 2D VMs.) While this is mostly fixed - everywhere, we implement a workaround to avoid tracking down the same bug - again and again on those setups where this is not fixed in mesa. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit ea77ce3a200bae7d97d6e45becc898765c1aa259 -Author: Thomas Hellstrom -Date: Wed Feb 14 11:15:46 2018 +0100 - - legacy: Silence a warning about an unused constant - - VMWAREBuildStr was only used in the !LIBPCIACCESS path. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit 7503135a72ab47928f5db838273851693b0dddbb +commit 0e94cd85b2fa1501d4d883de3c97074c5ea5c373 Author: Thomas Hellstrom -Date: Wed Feb 14 11:12:29 2018 +0100 +Date: Wed Nov 16 11:22:53 2016 +0700 - legacy: Avoid using the xf86[Un]blockSigio functions - - They have been deprecated since mouse doesn't use SIGIO anymore. + Bump minor for release. Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit 69632d06e2bf255b002d39df49aaf99ae86eaf4e -Author: Thomas Hellstrom -Date: Wed Feb 14 10:33:51 2018 +0100 - - vmwgfx: Fix potential libudev include and link failures - - We were not including the proper include- and link flags for libudev. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit dc85a6da15768f7a9622677e79c618bfb35ce513 -Author: Thomas Hellstrom -Date: Wed Feb 14 10:14:20 2018 +0100 - - Fix a number of compilation warnings - - There are a number of compilation warnings caused by const char pointers - being either explicitly or implicitly cast to char pointers. There - are a number of ABI differences that have hindered this so far, but - make a new attempt using the common_compat.h defines. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit 98199b4c0aca89b70d4f0a0e37e1e27ac15a23c7 -Author: Thomas Hellstrom -Date: Wed Feb 14 08:24:25 2018 +0100 - - vmwgfx: Remove old XWayland and XMir drivers - - Old-style XWayland and XMir aren't available anymore. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit 943548ac765e5dd49d275da2b72ff07b3a64694a -Author: Thomas Hellstrom -Date: Wed Feb 14 08:04:54 2018 +0100 - - vmwgfx: Fix compilation failure if dri3 is not available - - Compilation on CentOS failed due to some code not being conditioned on - DRI3 headers being present. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit 2d769dc01ea16df65d294f094bea5632e0b2a04e -Author: Thomas Hellstrom -Date: Wed Feb 14 07:59:57 2018 +0100 - - saa: Fix an include path - - Fix compilation failure on CentOS 6.5 due to an incorrect include path. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul - Reviewed-by: Sinclair Yeh - Reviewed-by: Deepak Rawat - -commit c0a2f40d978e77287d0cac95254fb6f26b2449a8 -Author: Thomas Hellstrom -Date: Wed Jan 3 21:28:56 2018 +0100 - - Bump version number for release candidate - - Signed-off-by: Thomas Hellstrom - -commit 1674782e357950ca3a7438ac2a0eefece5566ffd -Author: Thomas Hellstrom -Date: Wed Jan 3 21:26:22 2018 +0100 - - Add the common_compat.h source file for distribution - - The common_compat.h source file was missing from Makefile.am causing - "make distcheck" to fail. - - Signed-off-by: Thomas Hellstrom - -commit 08ad438e2793248452dab100822cbfcaa05b9938 -Author: Thomas Hellstrom -Date: Thu Mar 23 08:57:44 2017 +0100 - - vmwgfx: Support DRI3 v2 - - Add server-side DRI3 support - - Currently DRI3 introduces extra latency with gnome-shell for - the following reasons: - 1) We enable GLX_EXT_buffer_age. Causes gnome-shell to post fullscreen damage. - 2) We enable GLX_OML_sync_control. Cases additional slowdown. - Not exactly sure why. - - Probably we want to implement workarounds in mesa so that we don't enable - these extensions for gnome-shell. That can be done with driconf, using some - trickery. - - v2: Verify that sharing an ARGB surface as XRGB works before enabling - DRI3. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Sinclair Yeh -commit c8b8b2ee4a7b1085990443bbf1903ec265ff46f0 -Author: Thomas Hellstrom -Date: Thu May 11 04:39:57 2017 -0700 - - Revert "vmware/vmwgfx: Support multiple dri driver names" - - This reverts commit d5550b7f8375c3d9003731578c1570e014577348. - - The commit was intended to support video drivers, but has the side effect - that GLX thinks our driver supports more than it does. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Sinclair Yeh - -commit 3aff4ee5ca885d09d3b4ad2b0980b84978597815 -Author: Deepak Singh Rawat -Date: Mon Aug 7 16:02:59 2017 -0700 - - vmware/vmwgfx: Wrap deprecated - - Deprecated with 43dbc556f3a4d743b9121d6cfc21961be4a9da56 - - Signed-off-by: Deepak Rawat - Reviewed-by: Thomas Hellstrom - -commit d8c2f8501307a9c0c65601e897e7d919e42ba0b3 -Author: Deepak Singh Rawat -Date: Mon Aug 7 15:57:56 2017 -0700 - - vmware: Fix build warnings - - Due to following commit in xserver there were - build warnings, as variables now declared const. - - d89b42bda46d36fc0879611cc3b3566957ce36d0 - e1e01d2e33c632e395d7e396f73fba8ae606b15a - - Added a compat header file. - - Signed-off-by: Deepak Rawat - Reviewed-by: Brian Paul - Reviewed-by: Thomas Hellstrom :q - -commit ed0fd2f2823917a5dfefa3d3af774d4cdb40f958 -Author: Sinclair Yeh -Date: Thu Jul 13 20:16:19 2017 +0200 - - Revert "Revert "vmware/vmwgfx: Support multiple dri driver names"" - - This reverts commit ea94dc570846655bbb8a7c75bf465907e454bef9. - - Temporarily revert this for internal testing. - -commit 1388a1592cdab7cc8217546fb1e97da293e70393 -Author: Sinclair Yeh -Date: Thu Jul 13 20:15:52 2017 +0200 - - Revert "vmwgfx: Support DRI3 v2" - - This reverts commit d0d5cf3e35fd47b44f32065c5cb64ba62661f03a. - - Temporarily revert this for internal testing. - -commit d0d5cf3e35fd47b44f32065c5cb64ba62661f03a -Author: Thomas Hellstrom -Date: Thu Mar 23 08:57:44 2017 +0100 - - vmwgfx: Support DRI3 v2 - - Add server-side DRI3 support - - Currently DRI3 introduces extra latency with gnome-shell for - the following reasons: - 1) We enable GLX_EXT_buffer_age. Causes gnome-shell to post fullscreen damage. - 2) We enable GLX_OML_sync_control. Cases additional slowdown. - Not exactly sure why. - - Probably we want to implement workarounds in mesa so that we don't enable - these extensions for gnome-shell. That can be done with driconf, using some - trickery. - - v2: Verify that sharing an ARGB surface as XRGB works before enabling - DRI3. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Sinclair Yeh - -commit ea94dc570846655bbb8a7c75bf465907e454bef9 -Author: Thomas Hellstrom -Date: Thu May 11 04:39:57 2017 -0700 - - Revert "vmware/vmwgfx: Support multiple dri driver names" - - This reverts commit d5550b7f8375c3d9003731578c1570e014577348. - - The commit was intended to support video drivers, but has the side effect - that GLX thinks our driver supports more than it does. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Sinclair Yeh - -commit ed9d2a3fde597f2ff397fc11640c7001b816f3a6 -Author: Mihail Konev -Date: Thu Jan 26 14:00:22 2017 +1000 - - autogen: add default patch prefix - - Signed-off-by: Mihail Konev - -commit fa4998d1b9e392c47ceff2fe9663950efbb6b134 -Author: Emil Velikov -Date: Mon Mar 9 12:00:52 2015 +0000 - - autogen.sh: use quoted string variables - - Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent - fall-outs, when they contain space. - - Signed-off-by: Emil Velikov - Reviewed-by: Peter Hutterer - Signed-off-by: Peter Hutterer - -commit 4a96179cdbeb4a418dfc0b7223d9253a355e91de -Author: Peter Hutterer -Date: Tue Jan 24 10:32:07 2017 +1000 - - autogen.sh: use exec instead of waiting for configure to finish - - Syncs the invocation of configure with the one from the server. - - Signed-off-by: Peter Hutterer - Reviewed-by: Emil Velikov - -commit 670db8dbf2c8a98df34a7c6592a6277ad9beb15a -Author: Alan Coopersmith -Date: Sun Jun 1 21:03:14 2014 -0700 - - autogen.sh: Honor NOCONFIGURE=1 - - See http://people.gnome.org/~walters/docs/build-api.txt - - Signed-off-by: Alan Coopersmith - -commit 91881a66195f4bc41e075a0d573ada7cdc803ba0 -Author: Alan Coopersmith -Date: Sun Jun 1 21:03:13 2014 -0700 - - configure: Drop AM_MAINTAINER_MODE - - Signed-off-by: Alan Coopersmith - -commit fade4f46e84e93153edc3472abb73635f87555e6 +commit 3fd542b0394f9ab198b7750409ec2c0f16eb59da Author: Thomas Hellstrom Date: Wed Nov 16 11:35:58 2016 +0700 @@ -629,8 +14,9 @@ Signed-off-by: Thomas Hellstrom Reviewed-by: Sinclair Yeh + (cherry picked from commit fade4f46e84e93153edc3472abb73635f87555e6) -commit d64d01c7a599dc3c79125701f076a3e459cefdc2 +commit e53a7e42eb7597808a364f230a97ce64481f084b Author: Hans de Goede Date: Thu Sep 29 19:37:22 2016 +0200 @@ -638,17 +24,7 @@ Signed-off-by: Hans de Goede Acked-by: Thomas Hellstrom - -commit d5550b7f8375c3d9003731578c1570e014577348 -Author: Thomas Hellstrom -Date: Wed Apr 20 20:10:41 2016 +0200 - - vmware/vmwgfx: Support multiple dri driver names - - Support sending multiple driver names and dri2 INFOREC v4. - - Signed-off-by: Thomas Hellstrom - Reviewed-by: Brian Paul + (cherry picked from commit d64d01c7a599dc3c79125701f076a3e459cefdc2) commit 0bcd4df1843f00f8e8507750401ec2a2a29330dc Author: Thomas Hellstrom --- xserver-xorg-video-vmware-13.4.0.orig/autogen.sh +++ xserver-xorg-video-vmware-13.4.0/autogen.sh @@ -0,0 +1,17 @@ +#! /bin/sh + +srcdir=`dirname "$0"` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd "$srcdir" + +autoreconf -v --install || exit 1 +cd "$ORIGDIR" || exit $? + +git config --local --get format.subjectPrefix >/dev/null 2>&1 || + git config --local format.subjectPrefix "PATCH xf86-video-vmware" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- xserver-xorg-video-vmware-13.4.0.orig/debian/README.source +++ xserver-xorg-video-vmware-13.4.0/debian/README.source @@ -0,0 +1,49 @@ +------------------------------------------------------ +Quick Guide To Patching This Package For The Impatient +------------------------------------------------------ + +1. Make sure you have quilt installed +2. Unpack the package as usual with "dpkg-source -x" +3. Run the "patch" target in debian/rules +4. Create a new patch with "quilt new" (see quilt(1)) +5. Edit all the files you want to include in the patch with "quilt edit" + (see quilt(1)). +6. Write the patch with "quilt refresh" (see quilt(1)) +7. Run the "clean" target in debian/rules + +Alternatively, instead of using quilt directly, you can drop the patch in to +debian/patches and add the name of the patch to debian/patches/series. + +------------------------------------ +Guide To The X Strike Force Packages +------------------------------------ + +The X Strike Force team maintains X packages in git repositories on +git.debian.org in the pkg-xorg subdirectory. Most upstream packages +are actually maintained in git repositories as well, so they often +just need to be pulled into git.debian.org in a "upstream-*" branch. +Otherwise, the upstream sources are manually installed in the Debian +git repository. + +The .orig.tar.gz upstream source file could be generated using this +"upstream-*" branch in the Debian git repository but it is actually +copied from upstream tarballs directly. + +Due to X.org being highly modular, packaging all X.org applications +as their own independent packages would have created too many Debian +packages. For this reason, some X.org applications have been grouped +into larger packages: xutils, xutils-dev, x11-apps, x11-session-utils, +x11-utils, x11-xfs-utils, x11-xkb-utils, x11-xserver-utils. +Most packages, including the X.org server itself and all libraries +and drivers are, however maintained independently. + +The Debian packaging is added by creating the "debian-*" git branch +which contains the aforementioned "upstream-*" branch plus the debian/ +repository files. +When a patch has to be applied to the Debian package, two solutions +are involved: +* If the patch is available in one of the upstream branches, it + may be git'cherry-picked into the Debian repository. In this + case, it appears directly in the .diff.gz. +* Otherwise, the patch is added to debian/patches/ which is managed + with quilt as documented in /usr/share/doc/quilt/README.source. --- xserver-xorg-video-vmware-13.4.0.orig/debian/changelog +++ xserver-xorg-video-vmware-13.4.0/debian/changelog @@ -0,0 +1,444 @@ +xserver-xorg-video-vmware (1:13.4.0-1) unstable; urgency=medium + + * New upstream release. + * upstream: Update signing-key.asc. + * control: Bump policy to 4.6.2, no changes. + * patches: Dropped, upstream. + + -- Timo Aaltonen Wed, 08 Nov 2023 14:15:23 +0200 + +xserver-xorg-video-vmware (1:13.3.0-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * Add upstream fix for array bug discovered by gcc 12. + (Closes: #1021182) + + -- Adrian Bunk Sat, 15 Oct 2022 15:13:05 +0300 + +xserver-xorg-video-vmware (1:13.3.0-3) unstable; urgency=medium + + * control: Migrate to x11proto-dev. + * control: Migrate to debhelper-compat, bump to 12. + * control: Bump policy to 4.5.0. + * watch: Update upstream git url. + + -- Timo Aaltonen Tue, 14 Apr 2020 23:40:40 +0300 + +xserver-xorg-video-vmware (1:13.3.0-2) unstable; urgency=medium + + * Upload to unstable. (Closes: #900095) + + -- Timo Aaltonen Sat, 26 May 2018 08:08:12 +0300 + +xserver-xorg-video-vmware (1:13.3.0-1) experimental; urgency=medium + + * New upstream release. + * control: Update VCS urls to point to salsa.d.o. + * Bump debhelper to 11. + * control: Bump policy to 4.1.4. + + -- Timo Aaltonen Wed, 23 May 2018 08:43:39 +0300 + +xserver-xorg-video-vmware (1:13.2.1-1) unstable; urgency=medium + + * New upstream release. + * Use https URLs in Vcs-* control fields. + * control: Bump policy to 3.9.8, no changes. + * watch: Use https url. + * control: Add libudev-dev to build-depends on linux. + + -- Timo Aaltonen Thu, 17 Nov 2016 14:50:15 +0200 + +xserver-xorg-video-vmware (1:13.1.0-2) unstable; urgency=medium + + * Restrict architecture list to x86. + + -- Julien Cristau Sat, 09 May 2015 17:13:48 +0200 + +xserver-xorg-video-vmware (1:13.1.0-1) unstable; urgency=medium + + [ Maarten Lankhorst ] + * New upstream release. + + Don't add pixmaps to the pixmap list if they're already on it + (closes: #765490) + * Bump Standards-Version to 3.9.6 (no changes needed). + + [ Julien Cristau ] + * Bump debhelper compat level to 9. + * Remove Drew and Cyril from Uploaders. + * Let uscan verify tarball signatures. + + -- Julien Cristau Sun, 03 May 2015 11:33:26 +0200 + +xserver-xorg-video-vmware (1:13.0.2-3) unstable; urgency=medium + + * rules: avoid mixing implicit and normal rules; make 4 doesn't like that + (closes: #750265) + + -- Julien Cristau Mon, 02 Jun 2014 22:28:59 +0200 + +xserver-xorg-video-vmware (1:13.0.2-2) unstable; urgency=medium + + * Fix build failure on kfreebsd (closes: #743239) + + -- Julien Cristau Mon, 31 Mar 2014 22:37:52 +0200 + +xserver-xorg-video-vmware (1:13.0.2-1) unstable; urgency=medium + + * New upstream release + + supports current libxatracker (closes: #742915) + + -- Julien Cristau Mon, 31 Mar 2014 16:29:57 +0200 + +xserver-xorg-video-vmware (1:13.0.1-3) unstable; urgency=medium + + * vmwgfx: handle changes of DamageUnregister API in 1.14.99.2 (closes: + #736981) + + -- Julien Cristau Tue, 04 Feb 2014 16:56:20 +0100 + +xserver-xorg-video-vmware (1:13.0.1-2) unstable; urgency=low + + * Restrict libxatracker build-dep to Linux. + + -- Julien Cristau Sun, 29 Sep 2013 12:03:27 +0200 + +xserver-xorg-video-vmware (1:13.0.1-1) unstable; urgency=low + + * New upstream release + + [ Julien Cristau ] + * Add build-dep on libxatracker-dev for 3d support (closes: #675977) + * Disable silent build rules. + + -- Julien Cristau Sun, 08 Sep 2013 21:11:48 +0200 + +xserver-xorg-video-vmware (1:12.0.2-1) unstable; urgency=low + + * New upstream release: + - Fix crash when built against Xserver 1.12. + + -- Cyril Brulebois Mon, 02 Apr 2012 01:41:44 +0000 + +xserver-xorg-video-vmware (1:12.0.1-1) unstable; urgency=low + + * New upstream release. + * Actually merge upstream master up to b70116b907 (one extra commit) to + avoid memory corruptions. + + -- Cyril Brulebois Mon, 19 Mar 2012 22:07:38 +0100 + +xserver-xorg-video-vmware (1:11.0.99.901-1) unstable; urgency=low + + * New upstream release candidate. + * It's probably not bug-free, but that's what release candidates and + unstable users are for. ;-) + + -- Cyril Brulebois Thu, 03 Nov 2011 01:09:25 +0100 + +xserver-xorg-video-vmware (1:11.0.3-3) unstable; urgency=high + + * Cherry-pick from upstream: Use dixLookupWindow instead of LookupWindow on + Xorg 1.5 & later. + + -- Julien Cristau Tue, 25 Oct 2011 23:22:42 +0200 + +xserver-xorg-video-vmware (1:11.0.3-2) unstable; urgency=low + + * Switch to dh: + - Use debhelper 8. + - Use dh-autoreconf. + - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf + debhelper sequence. + * Remove xsfbs accordingly. + * Update Uploaders list. Thanks, David & Brice! + * Remove long obsolete Replaces/Conflicts. + * Wrap Depends/Provides. + * Bump Standards-Version to 3.9.1 (no changes needed). + * Add quilt build-dep for future use. + + -- Cyril Brulebois Sat, 05 Feb 2011 14:59:54 +0100 + +xserver-xorg-video-vmware (1:11.0.3-1) experimental; urgency=low + + * New upstream release. + * No longer require libdrm-dev on hurd-i386, since upstream now supports + building and running without libdrm. + * Add build-dep on libx11-dev, needed for vmwarectrl. + * Pass --enable-vmwarectrl-client to enable the vmwarectrl unit test + client tool. + * Add usr/bin/vmwarectrl to .install file accordingly. + + -- Cyril Brulebois Tue, 09 Nov 2010 17:47:08 +0100 + +xserver-xorg-video-vmware (1:11.0.2-1) experimental; urgency=low + + [ Robert Hooker ] + * New upstream release. + * Bump xutils-dev requirement for new util-macros. + + [ Cyril Brulebois ] + * Update debian/copyright. + * Switch from --list-missing to --fail-missing for additional safety. + * Exclude .la files accordingly. + + -- Cyril Brulebois Sat, 06 Nov 2010 23:06:22 +0100 + +xserver-xorg-video-vmware (1:11.0.1-3) experimental; urgency=low + + * Build against Xserver 1.9.1 rc1. + + -- Cyril Brulebois Sat, 16 Oct 2010 22:05:33 +0200 + +xserver-xorg-video-vmware (1:11.0.1-2) unstable; urgency=low + + [ Julien Cristau ] + * Update xsfbs, use new ${xviddriver:Depends} substvar. + + [ Cyril Brulebois ] + * Cherry-pick e647511e4b9b924b0617171c56b3bb485674b3ff from upstream + to stop crashing the server on Xorg -configure (Closes: #579910). + + -- Cyril Brulebois Tue, 13 Jul 2010 17:57:43 +0200 + +xserver-xorg-video-vmware (1:11.0.1-1) unstable; urgency=low + + [ Julien Cristau ] + * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no + good reason. Thanks, Colin Watson! + + [ Cyril Brulebois ] + * New upsteam release. + * Add libdrm-dev to Build-Depends, needed for the new chainloader + driver. + * Add myself to Uploaders. + + -- Cyril Brulebois Tue, 06 Apr 2010 05:38:23 +0200 + +xserver-xorg-video-vmware (1:10.16.9-1) unstable; urgency=low + + [ Timo Aaltonen ] + * New upstream release. + + fixes loading with server 1.7 (closes: #564922) + + [ Julien Cristau ] + * Bump build-dep on xutils-dev for util-macros 1.4. + * Don't install a list of pci ids, the server doesn't use this anymore. + + -- Julien Cristau Sat, 16 Jan 2010 15:52:44 +0000 + +xserver-xorg-video-vmware (1:10.16.8-1) experimental; urgency=low + + [ Timo Aaltonen ] + * New upstream release. + * Bump Standards-Version to 3.8.3. + * Build against Xserver 1.7. + + [ Cyril Brulebois ] + * Upload to experimental. + + -- Cyril Brulebois Sun, 06 Dec 2009 00:43:15 +0100 + +xserver-xorg-video-vmware (1:10.16.7-1) unstable; urgency=low + + * New upstream release. + * Add README.source, bump Standards-Version to 3.8.2. + + -- Brice Goglin Thu, 30 Jul 2009 00:52:36 +0200 + +xserver-xorg-video-vmware (1:10.16.6-1) unstable; urgency=low + + * New upstream release. + + -- Brice Goglin Wed, 13 May 2009 07:41:44 +0200 + +xserver-xorg-video-vmware (1:10.16.5-3) unstable; urgency=low + + * Upload to unstable. + + -- Julien Cristau Thu, 09 Apr 2009 13:43:15 +0100 + +xserver-xorg-video-vmware (1:10.16.5-2) experimental; urgency=low + + * Build against xserver 1.6 rc. + + -- Julien Cristau Mon, 02 Feb 2009 22:18:28 +0100 + +xserver-xorg-video-vmware (1:10.16.5-1) experimental; urgency=low + + * Build against xserver 1.5. + * Switch to running autoreconf at build time. Build-depend on automake, + libtool and xutils-dev, and remove generated files in clean. + * New upstream release. + * Support parallel builds. + + -- Julien Cristau Wed, 10 Sep 2008 13:56:32 +0100 + +xserver-xorg-video-vmware (1:10.16.2-1) unstable; urgency=low + + * New upstream release. + * Build-depend on dpkg-dev >= 1.14.17 for dpkg-shlibdeps --warnings. + + -- Brice Goglin Fri, 13 Jun 2008 22:15:37 +0200 + +xserver-xorg-video-vmware (1:10.16.1-1) unstable; urgency=low + + [ Brice Goglin ] + * New upstream release. + * Bump Standards-Version to 3.7.3 (no changes). + * The Vcs-* fields are now recognized by dpkg, so drop the XS- prefix. + * Run dpkg-shlibdeps with --warnings=6. Drivers reference symbols from + /usr/bin/Xorg and other modules, and that's not a bug, so we want + dpkg-shlibdeps to shut up about symbols it can't find. + + [ Timo Aaltonen ] + * Add vmware.ids. Thanks Soren Hansen! + + -- Brice Goglin Sun, 20 Apr 2008 14:58:19 +0200 + +xserver-xorg-video-vmware (1:10.15.2-1) unstable; urgency=low + + [ Brice Goglin ] + * Add upstream URL to debian/copyright. + + [ Drew Parsons ] + * New upstream version. + + -- Drew Parsons Mon, 29 Oct 2007 01:45:06 +1100 + +xserver-xorg-video-vmware (1:10.15.0-1) unstable; urgency=low + + [ Timo Aaltonen ] + * Replaces/Conflicts: xserver-xorg-driver-vmware. + + [ Brice Goglin ] + * New upstream release. + + Pull more upstream fixes up-to 0c76b95e7aeac034cc598ea6a407187f76466411 + * Install the upstream changelog. + * Bump Build-Depends: xserver-xorg-dev to >= 2:1.2.99.902 + (needed to let xsfbs get access to serverminver). + * Add XS-Vcs-*. + * Add a link to www.X.org and a reference to the xf86-video-vmware + module in the long description. + * Remove Fabio from uploaders with his permission. He's always welcome back. + + [ David Nusinow ] + * Build against xserver 1.4 and upload to unstable + * Remove Branden from uploaders with his permission. + + -- David Nusinow Sun, 16 Sep 2007 17:05:31 -0400 + +xserver-xorg-video-vmware (1:10.14.1-2) experimental; urgency=low + + * Add build-dep on x11proto-xinerama-dev to fix FTBFS, and bump build-dep on + the server to >= 2:1.2.0-6 to get correct Provides (closes: #413104). + Thanks, Frank Lichtenheld! + * Bump Standards-Version to 3.7.2 (no changes). + + -- Julien Cristau Fri, 2 Mar 2007 23:20:38 +0100 + +xserver-xorg-video-vmware (1:10.14.1-1) experimental; urgency=low + + [ David Nusinow ] + * New upstream release + * Generate server dependencies automatically from the ABI + + [ Julien Cristau ] + * Add link to xserver-xorg-core bug script, so that bugreports contain + the user's config and log files. + * Bump dependency on xserver-xorg-core to >= 2:1.1.1-11, as previous + versions don't have the bug script. + + -- David Nusinow Wed, 21 Feb 2007 22:54:48 -0500 + +xserver-xorg-video-vmware (1:10.13.0-3) unstable; urgency=low + + [ Steve Langasek ] + * Upload to unstable + + -- David Nusinow Mon, 18 Sep 2006 19:58:16 -0400 + +xserver-xorg-video-vmware (1:10.13.0-2) experimental; urgency=low + + [ Drew Parsons ] + * Provides: xserver-xorg-video-1.0 not xserver-xorg-video. + + [ David Nusinow ] + * Bump xserver (build-)depends epochs to 2: to deal with botched + server upload + + -- David Nusinow Tue, 22 Aug 2006 23:46:51 +0000 + +xserver-xorg-video-vmware (1:10.13.0-1) experimental; urgency=low + + [ Andres Salomon ] + * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build; + idempotency fix. + * Run dh_install w/ --list-missing. + + [ David Nusinow ] + * New upstream release + * Bump dependency on xserver-xorg-core to >= 1:1.1.1. Do the same thing for + the build-dep on xserver-xorg-dev. + * Bump debhelper compat to 5 + + -- David Nusinow Wed, 16 Aug 2006 19:28:58 +0000 + +xserver-xorg-video-vmware (1:10.11.1.3-2) unstable; urgency=low + + * Upload to modular + + -- David Nusinow Sun, 26 Mar 2006 20:26:31 -0500 + +xserver-xorg-video-vmware (1:10.11.1.3-1) experimental; urgency=low + + * First upload to Debian + * Add vmware copyright info + * Change source package, package, and provides names to denote the + type of driver and that they are for xserver-xorg + + -- David Nusinow Thu, 19 Jan 2006 20:09:42 -0500 + +xserver-xorg-driver-vmware (1:10.11.1.3-0ubuntu1) dapper; urgency=low + + * New upstream release. + * Add provides on xserver-xorg-driver. + + -- Daniel Stone Wed, 4 Jan 2006 20:10:31 +1100 + +xserver-xorg-driver-vmware (1:10.11.1.2-0ubuntu1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Mon, 19 Dec 2005 09:16:02 +1100 + +xserver-xorg-driver-vmware (1:10.11.1.1-0ubuntu1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Mon, 12 Dec 2005 13:10:31 +1100 + +xserver-xorg-driver-vmware (1:10.11.1-0ubuntu2) dapper; urgency=low + + * Add missing Build-Depends (x11proto-core-dev, x11proto-fonts-dev, + x11proto-randr-dev, x11proto-render-dev, x11proto-xext-dev). + + -- Daniel Stone Mon, 5 Dec 2005 13:00:04 +1100 + +xserver-xorg-driver-vmware (1:10.11.1-0ubuntu1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Tue, 22 Nov 2005 13:39:10 +1100 + +xserver-xorg-driver-vmware (1:10.11.0.1-1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Tue, 25 Oct 2005 17:13:07 +1000 + +xserver-xorg-driver-vmware (1:10.10.2-1) breezy; urgency=low + + * First xserver-xorg-driver-vmware release. + + -- Daniel Stone Wed, 6 Jul 2005 15:48:17 +1000 --- xserver-xorg-video-vmware-13.4.0.orig/debian/control +++ xserver-xorg-video-vmware-13.4.0/debian/control @@ -0,0 +1,36 @@ +Source: xserver-xorg-video-vmware +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force +Build-Depends: + debhelper-compat (= 12), + quilt, + pkg-config, + xserver-xorg-dev (>= 2:1.9.4), + x11proto-dev, + xutils-dev (>= 1:7.5+4), + libdrm-dev [!hurd-i386], + libudev-dev [linux-any], + libxext-dev, + libx11-dev, + libxatracker-dev [linux-any], +Standards-Version: 4.6.2 +Vcs-Git: https://salsa.debian.org/xorg-team/driver/xserver-xorg-video-vmware.git +Vcs-Browser: https://salsa.debian.org/xorg-team/driver/xserver-xorg-video-vmware + +Package: xserver-xorg-video-vmware +Architecture: any-amd64 any-i386 +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + ${xviddriver:Depends}, +Provides: + ${xviddriver:Provides} +Description: X.Org X server -- VMware display driver + This package provides the driver for VMware client sessions, i.e. if Linux + is running inside a VMware session. + . + More information about X.Org can be found at: + + . + This package is built from the X.org xf86-video-vmware driver module. --- xserver-xorg-video-vmware-13.4.0.orig/debian/copyright +++ xserver-xorg-video-vmware-13.4.0/debian/copyright @@ -0,0 +1,50 @@ +This package was downloaded from +http://xorg.freedesktop.org/releases/individual/driver/ + +Copyright 2006 by VMware, Inc. +Copyright 2007 by VMware, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the copyright holder(s) +and author(s) shall not be used in advertising or otherwise to promote +the sale, use or other dealings in this Software without prior written +authorization from the copyright holder(s) and author(s). + +Copyright 2010 VMware, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, copy, +modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. --- xserver-xorg-video-vmware-13.4.0.orig/debian/patches/series +++ xserver-xorg-video-vmware-13.4.0/debian/patches/series @@ -0,0 +1 @@ +# placeholder --- xserver-xorg-video-vmware-13.4.0.orig/debian/rules +++ xserver-xorg-video-vmware-13.4.0/debian/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f + +# Enable unit test client tool: +override_dh_auto_configure: + dh_auto_configure -- \ + --libdir=\$${exec_prefix}/lib \ + --enable-vmwarectrl-client \ + --disable-silent-rules + +# Install in debian/tmp to retain control through dh_install: +override_dh_auto_install: + dh_auto_install --destdir=debian/tmp + +# Kill *.la files, and forget no-one: +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install + +override_dh_missing: + dh_missing --fail-missing + +# That's a plugin, use appropriate warning level: +override_dh_shlibdeps: + dh_shlibdeps -- --warnings=6 + +build: + dh build --with quilt,xsf --builddirectory=build/ + +.PHONY: build + +%: + dh $@ --with quilt,xsf --builddirectory=build/ --- xserver-xorg-video-vmware-13.4.0.orig/debian/upstream/signing-key.asc +++ xserver-xorg-video-vmware-13.4.0/debian/upstream/signing-key.asc @@ -0,0 +1,53 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +mQGiBEzZSUMRBADewSWiR5KUpEFYfQcYbILV4xqVSqGMZnTKZgC/X51rOuK0XIqs +X5zfwiB3JAT0rhC7c1Pf5RIupN+6AN9punOEJjBj4LYRl39zHXItTkEPvy9BGeVk +j8IrxOquhh2NFusbCuFxcEd43Q+uJR/TKQSSm8ju03PQXkbQF9kw8y6SEwCg26hM +XEkOSkg2EAZN1bHV41DMKgED+gMNesJYxIYmBq+5VGqt7A/mfkJF7ns5U5hOB2T1 +VzMnzhk6/hJJAPx5IQEzPDJcsl/WgM1k2CNM32VWt2fso1yYex32mvraNCTWnu5a +/6XeBZBNteA8ZRAoNeIKcV6FRyuWcuDulzLUOdr1ClskzFlwsDeKWQ9j1+EleUsX +mDgGBACQKaYn84PMU3psMHu4aj5BNGTvcMuvcc2+WNuITRWMpHdv/tQpsClEB2vc +SVTLLf4QOAlG78NwF4IyfO+F8+cuDCCRJoaR5hTDgxlSXcgdtuBPgXx3eeGOqvuf +i4TGtrADvmGaLerB8O3XtNBBTUMrn4mIvBjtmhRbrodMQp//3rQxVGhvbWFzIEhl +bGxzdHJvbSAoVk13YXJlKSA8dGhlbGxzdHJvbUB2bXdhcmUuY29tPohgBBMRAgAg +BQJM2UlDAhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQwfXTzfUXZYDLGgCf +cQ0RouVD+hHJhh9ycWXg+mhQQBoAnjeGflvtu1ylxyT6oUn5u59m5XbbuQINBEzZ +SUMQCAC6DzcS0jztz+pfXSUICM7Bpf/BYwEEhYCTO26r2hTFxkzTM/aBtqR8TIUe +fgTSWBCai36985b4VZQoXdDGVaIliO0KPjkUrIUL6telmUbc6SfG2sQrQEwV8j/3 +p7AU0VIW6T/3LYVT4u2a2HZPxYSj4nR5JTK+pyT5KSQKcluGGz1qVepOdSmfmPb8 +pfosq73leMtr4VhGoZ1um8WTnfM66dFZrkmmukaodKymChwSQ92t3Xa5ok4LP6lH +GRyvkCwoyrTuBNXIGDIC6MzA7ms9um6sy9xIYUEijdiBE3ydJXSfCWVd4USmozz2 +Y8T30NOWr4zPPwV6QPcqmAJs4kfDAAMFCACS2XxtfHWvwq2PSNHbVG9IApCyZH/q +mcx8Ih0X7yNyzSehjIYYumwo9Cb4yrKZXQzAexNfyzhr0/VL1OEGLAGwOdped/f3 +TZ2dmH/MqilI1jmy3awgGrlnjYGrKkoEiICE7uCP9EzFTdbSrEKYjrvh4aHrXjTD +HrXPC8V0Y4/1sp4XS+8IzDE5FTpw9W9Rfuqqdt46rIgDnY1cjRaV6+xoqmTKwvGw +UREfpQthIQz7ReyujUgpzUDZhpJzDzQYEOCfzbBymowErlbDTlcL7hWUmOYdqVKk +GVvww9NhQ/4PfePI8cHQx5inVIgKLKb93l63HlPevaRz8jd1zDEcDf/hiEkEGBEC +AAkFAkzZSUMCGwwACgkQwfXTzfUXZYD+lgCfeR99P2folQTWlrfCbNXC8reYz24A +oKzD7TeOiLfs38x+4q35Z112OFZ7 +=PM8p +-----END PGP PUBLIC KEY BLOCK----- +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mQGiBD8b0wYRBACph9kRJmP+4+JGsCgFlFoy4vFO0DCG+jmkQN0n1wdInt/N/UtA +sZToO72AUmfmYizA+IEbzBrx0UnUo3w3BDmHxUWf/akZiPUz9AA/YFY4xC3MY2OK +VN2Jz6YSce4zJ5jd2ZRobHm4HuIf/8yqSCcsv7FNfrLaTNIFRs5gYYsqZwCgwmkp +RSLRc8WAnHrTWNQDaEFM2rUEAKTjrTjMN8+KGd0BxNX7HiTSqQP++nXNwAYs1oWB +Yt82YHj9SvRCqCzD1pzJQivYnlNoWDza1VeMnfdAvkdia8z4lYbO/RunXZJvra3Z +VDm+izq+uwUAyvFuEYnNz09VSqwXKT6+XW0Xtz2vHq52r6DS6mK8cGJHZ5OhrRjq +UEYxA/9STh+QfA98xtNoRcf52E/46r7IpCj440oRVc9lMfxQZrLGQNqp7sPdIhGQ +CCo2NUII5hkhdAG71kpbfSXU4Sh32p1cU1KYCAkDFfb49bKuAs+Pff8v6FGZxTdd +AinPZr4BbsYJatk818aTCnu0+s7L8jL5GPfeyuyEMKwzVBx2mLQpUGV0ZXIgSHV0 +dGVyZXIgKFdoby1UKSA8b2ZmaWNlQHdoby10Lm5ldD6IWQQTEQIAGQUCPxvTBgQL +BwMCAxUCAwMWAgECHgECF4AACgkQ4jt+cLRn8L/0RACfWo3KTMUg+uPRqA6RXxk0 +4CWjXaMAoJeIxOpZLB3RBltPnSi7PyVQIkHFuQENBD8b0wgQBACTnqOYOWYVR8O1 +D73J6nbdAeZCbXrUkyXIuyqBOdKmX/0QJmSs7Wfsa+hPfDhj6ai0Gs2C8Qg/0Pzk +86b4p9DLkf0M6RaYjUtCJBpS59xrsV6nz6xZzQa4RRdf1YJmw2tia1MMXzxbwQU2 +bKpYEm8NsGaBURMGd02EvsMN2wI2uwADBQP/e9MjVr/85XDzAlUBN8HwYW5szTyP +8ZVcQOqOmNebkTWGLvkPrBdXmxpzrWjxPolO1WcWQjUL0bN/rbdqefT65iVHJHJZ +/cpTtgGlCPhL5JTA50ltd0I13CABYWLFmswonXES/6tcglf4rr3Nri2sOrY5HggP +ipEzOo5vdKOow/qIRgQYEQIABgUCPxvTCAAKCRDiO35wtGfwv68jAKCDvL2gkrg1 +4NfV7rNc057K1nL2GgCeKApWRgGVzaOkAp0P5tQulaDD6zM= +=7uBX +-----END PGP PUBLIC KEY BLOCK----- --- xserver-xorg-video-vmware-13.4.0.orig/debian/watch +++ xserver-xorg-video-vmware-13.4.0/debian/watch @@ -0,0 +1,4 @@ +#git=https://gitlab.freedesktop.org/xorg/driver/xf86-video-vmware +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +https://xorg.freedesktop.org/releases/individual/driver/ xf86-video-vmware-(.*)\.tar\.gz --- xserver-xorg-video-vmware-13.4.0.orig/debian/xserver-xorg-video-vmware.install +++ xserver-xorg-video-vmware-13.4.0/debian/xserver-xorg-video-vmware.install @@ -0,0 +1,3 @@ +usr/lib/xorg/modules/drivers/*.so +usr/share/man/man4/* +usr/bin/vmwarectrl --- xserver-xorg-video-vmware-13.4.0.orig/debian/xserver-xorg-video-vmware.links +++ xserver-xorg-video-vmware-13.4.0/debian/xserver-xorg-video-vmware.links @@ -0,0 +1 @@ +usr/share/bug/xserver-xorg-core/script usr/share/bug/xserver-xorg-video-vmware/script