--- libxfixes-6.0.0.orig/ChangeLog +++ libxfixes-6.0.0/ChangeLog @@ -1,83 +1,3 @@ -commit 6fe3bd64dd82f704ed91478acb4c99ab5c00be16 -Author: Peter Hutterer -Date: Wed May 12 09:34:39 2021 +1000 - - libXfixes 6.0.0 - - Signed-off-by: Peter Hutterer - -commit 883f89dd39dcdae9a38e46f74a43b316180c8a19 -Author: Olivier Fourdan -Date: Thu Mar 11 09:27:06 2021 +0100 - - xfixes: Add ClientDisconnectMode - - The Xserver itself is capable of terminating itself once all X11 clients - are gone, yet in a typical full session, there are a number of X11 - clients running continuously (e.g. the Xsettings daemon, IBus, etc.). - - Those always-running clients will prevent the Xserver from terminating, - because the actual number of X11 clients will never drop to 0. - - To solve this issue directly at the Xserver level, this add new entries - to the XFixes extension to let the X11 clients themselves specify the - disconnect mode they expect. - - Typically, those X11 daemon clients would specify the disconnect mode - XFixesClientDisconnectFlagTerminate to let the Xserver know that they - should not be accounted for when checking the remaining clients prior - to terminate. - - Signed-off-by: Olivier Fourdan - -commit 174a94975af710247719310cfc53bd13e1f3b44d -Author: Alan Coopersmith -Date: Sat Mar 16 12:39:31 2019 -0700 - - Update configure.ac bug URL for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit 1e238b40bbef0664d281432c19634df39a19b1ee -Author: Alan Coopersmith -Date: Mon Nov 19 21:58:32 2018 -0800 - - Update README for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit b9b75d74c3e78c5df70c512786d1ee6db45975aa -Author: Mihail Konev -Date: Thu Jan 26 13:52:49 2017 +1000 - - autogen: add default patch prefix - - Signed-off-by: Mihail Konev - -commit 6f950642597f2f1f509c339861d9f40baf28c39b -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 65845c5fc7098f9232cd356248aebc7db9a38095 -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 84df9cb81cc31bbed27ba241a23ae04f61da57db Author: Matthieu Herrb Date: Tue Oct 4 21:11:55 2016 +0200 --- libxfixes-6.0.0.orig/autogen.sh +++ libxfixes-6.0.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 libXfixes" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- libxfixes-6.0.0.orig/debian/README.source +++ libxfixes-6.0.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. --- libxfixes-6.0.0.orig/debian/changelog +++ libxfixes-6.0.0/debian/changelog @@ -0,0 +1,313 @@ +libxfixes (1:6.0.0-2) unstable; urgency=medium + + [ Debian Janitor ] + * Bump debhelper from old 12 to 13. + + debian/rules: Drop --fail-missing argument to dh_missing, which is now the + default. + * Replace XC-Package-Type with Package-Type. + * Update standards version to 4.6.0, no changes needed. + * Fix field name case in debian/control (Multi-arch => Multi-Arch). + + [ Timo Aaltonen ] + * control: Remove constraints unnecessary since buster. + + -- Timo Aaltonen Mon, 03 Oct 2022 11:56:02 +0300 + +libxfixes (1:6.0.0-1) unstable; urgency=medium + + * New upstream release. (Closes: #994957)(LP: #1959363) + * Update signing-key.asc. + * symbols: Updated. + + -- Timo Aaltonen Wed, 02 Feb 2022 14:36:11 +0200 + +libxfixes (1:5.0.3-2) unstable; urgency=medium + + * control: Migrate to x11proto-dev. + * control: Use debhelper-compat, bump to 12. + * control: Bump policy to 4.5.0. + * control, watch: Update urls to debian/upstream git. + + -- Timo Aaltonen Tue, 14 Apr 2020 19:49:05 +0300 + +libxfixes (1:5.0.3-1) unstable; urgency=medium + + [ Andreas Boll ] + * New upstream release. + - Fixes CVE-2016-7944 (Closes: #840442). + * Update d/upstream/signing-key.asc with Matthieu Herrb's key. + * Fix Vcs-* URLs. + * Update a bunch of URLs in packaging to https. + + [ Emilio Pozuelo Monfort ] + * Bump debhelper compat to 10. + + dh-autoreconf is now enabled by default. + + --disable-silent-rules is passed to configure automatically. + + -- Emilio Pozuelo Monfort Mon, 05 Dec 2016 19:17:34 +0100 + +libxfixes (1:5.0.2-1) sid; urgency=medium + + * Team upload. + * New upstream release. + * Let uscan verify tarball signatures. + * Bump libx11-dev build-dep to 2:1.6 per configure.ac. + * Remove Drew and Cyril from Uploaders. + * Use https for Vcs-* control fields. + * Bump Standards-Version to 3.9.8. + * Migrate to automatic dbgsym package. + + -- Julien Cristau Sun, 26 Jun 2016 21:10:20 +0200 + +libxfixes (1:5.0.1-2) sid; urgency=low + + * Mark libxfixes-dev as Multi-arch: same (closes: #677657). + + -- Julien Cristau Sat, 12 Jul 2014 17:26:54 +0200 + +libxfixes (1:5.0.1-1) sid; urgency=low + + * New upstream release. + * Remove useless dh_auto_install override. debian/tmp is the default destdir + since we have more than one deb. + * Bump debhelper build-dep to 9 (to match compat). + * Disable silent build rules. + + -- Julien Cristau Sun, 30 Jun 2013 14:34:26 +0200 + +libxfixes (1:5.0-4+deb7u1) wheezy-security; urgency=high + + * integer overflow in XFixesGetCursorImage() [CVE-2013-1983] + + -- Julien Cristau Tue, 14 May 2013 10:12:48 +0200 + +libxfixes (1:5.0-4) unstable; urgency=low + + * Team upload. + * Don't include debug symbols for the udeb in libxfixes3-dbg. + + -- Julien Cristau Sun, 12 Jun 2011 00:16:17 +0200 + +libxfixes (1:5.0-3) unstable; urgency=low + + * Team upload. + + [ Steve Langasek ] + * Build for multiarch. + + [ Julien Cristau ] + * Bump Standards-Version to 3.9.2. + + -- Julien Cristau Sat, 11 Jun 2011 16:01:20 +0200 + +libxfixes (1:5.0-2) unstable; urgency=low + + [ Julien Cristau ] + * libxfixes3.symbols: no need to use a version for symbols that are there + forever (or close enough). + * Upload to unstable. + + [ Cyril Brulebois ] + * Remove automake and libtool build-dep, they're pulled in by + dh-autoreconf. + + -- Julien Cristau Fri, 29 Apr 2011 22:48:31 +0200 + +libxfixes (1:5.0-1) experimental; urgency=low + + * New upstream release: + - Pointer barriers. + * Bump x11proto-fixes-dev build-dep accordingly. + * Bump x11proto-fixes-dev dependency for libxfixes3-dev. + * Wrap Depends fields. + * Add debian/libxfixes3.symbols file. + * Pass -c4 to dh_makeshlibs to ensure updates are noticed. + * Update symbols file, and bump shlibs for new symbols: + - XFixesCreatePointerBarrier + - XFixesDestroyPointerBarrier + * Install manpages through dh_install. + * Use --fail-missing instead of --list-missing in dh_install for + additional safety. + * Switch to dh: + - Use debhelper 8. + - Use dh-autoreconf. + * Remove xsfbs accordingly. + * Update Uploaders list. Thanks, David! + * Add a placeholder series file. + * Bump Standards-Version to 3.9.1 (no changes needed). + + -- Cyril Brulebois Wed, 09 Mar 2011 00:02:42 +0100 + +libxfixes (1:4.0.5-1) unstable; urgency=low + + * New upstream release. + * Bump xutils-dev build-dep for xorg-macros 1.8. + * Update debian/copyright from upstream COPYING. + * Bump Standards-Version to 3.9.0. + + -- Julien Cristau Sun, 11 Jul 2010 15:02:30 +0100 + +libxfixes (1:4.0.4-2) unstable; urgency=low + + [ Julien Cristau ] + * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no + good reason. Thanks, Colin Watson! + + [ Brice Goglin ] + * Remove Jamey Sharp and Josh Triplett from Uploaders, closes: #568278. + + [ Cyril Brulebois ] + * Use dh_makeshlibs’s -V argument instead of debian/libxfixes3.shlibs + * Add udeb needed for the graphical installer: libxfixes3-udeb. + * Bump the B-D on libx11-dev to ensure libxfixes3-udeb gets a dependency + on libx11-6-udeb. + * Bump Standards-Version from 3.8.3 to 3.8.4 (no changes needed). + * Add myself to Uploaders. + + -- Cyril Brulebois Thu, 11 Mar 2010 04:56:27 +0100 + +libxfixes (1:4.0.4-1) unstable; urgency=low + + [ Julien Cristau ] + * Remove Branden and Fabio from Uploaders with their permission. + * Don't build-depend on packages with a -1 debian revision. + * Drop the XS- prefix from the Vcs-* control fields. + * Remove x11-common (pre-)dependency from libxfixes3 and libxfixes3-dbg, as + it shouldn't be needed. + * Use ${binary:Version} instead of the equivalent but confusingly-named + ${Source-Version} in debian/control. + * Bump Standards-Version to 3.8.3. + + [ Brice Goglin ] + * Add upstream URL to debian/copyright. + * Drop CVS header from debian/copyright. + * Add a link to www.X.org in the long description. + * Install the upstream ChangeLog. + * Add README.source, bump Standards-Version to 3.8.2. + * Use updated xsfbs, closes: #538584. + * Move -dbg package to section debug. + + [ Timo Aaltonen ] + * New upstream release (closes: #556000). + * Run autoreconf on build. Add build-deps on automake, libtool + and xutils-dev. + * Parse space-separated DEB_BUILD_OPTIONS, and handle parallel=N. + * Drop pre-dependency on x11-common from libxfixes-dev. This was needed + for upgrades from sarge. + + -- Julien Cristau Wed, 25 Nov 2009 18:36:48 +0100 + +libxfixes (1:4.0.3-2) unstable; urgency=low + + * Add XS-Vcs-Browser. + * Upload to unstable. + + -- Julien Cristau Wed, 11 Apr 2007 14:58:20 +0200 + +libxfixes (1:4.0.3-1) experimental; urgency=low + + * Adjust Section values to what the override says. + * Update location of upstream repository from CVS to git in the long + descriptions. + * New upstream release: + + Drop all patches, applied upstream. + * Add XS-Vcs-Git header in debian/control. + + -- Julien Cristau Fri, 16 Feb 2007 16:14:49 +0100 + +libxfixes (1:4.0.1-5) unstable; urgency=low + + * libXfixes: Unlocks the Display without having it locked (Closes: + #400446) + * Add Josh and myself to Uploaders. + + -- Jamey Sharp Mon, 27 Nov 2006 15:19:42 -0800 + +libxfixes (1:4.0.1-4) unstable; urgency=low + + [ Drew Parsons ] + * Bring xfixes 4 into unstable (X11R7.1 transition). + * dbg package has priority extra. + + [ David Nusinow ] + * Add 01_include_xlib.h.diff. Xfixes.h relies on the "Bool" define from + X11/Xlib.h but did not include that header (directly or indirectly) + (closes: #372756) + + -- David Nusinow Mon, 18 Sep 2006 18:09:51 -0400 + +libxfixes (1:4.0.1-3) experimental; urgency=low + + * Add shlibs file due to soversion bump (3.0.0 -> 3.1.0) + + -- David Nusinow Wed, 16 Aug 2006 20:22:46 +0000 + +libxfixes (1:4.0.1-2) experimental; urgency=low + + * Added versioned depends on x11proto-fixes-dev (>= 4.0-1). + Closes: #375124. + * Use dh_installman to install man pages. + + -- Drew Parsons Mon, 14 Aug 2006 18:03:48 +1000 + +libxfixes (1:4.0.1-1) experimental; urgency=low + + * New upstream version. + * Standards version 3.7.2. + * Uses debhelper v5. + + -- Drew Parsons Thu, 27 Jul 2006 23:49:26 +1000 + +libxfixes (1:3.0.1.2-5) UNRELEASED; urgency=low + + * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build; + idempotency fix. + * Run dh_install w/ --list-missing. + + -- Andres Salomon Mon, 17 Jul 2006 01:20:55 -0400 + +libxfixes (1:3.0.1.2-4) unstable; urgency=low + + * Reorder makeshlib command in rules file so that ldconfig is run + properly. Thanks Drew Parsons and Steve Langasek. + + -- David Nusinow Tue, 18 Apr 2006 21:49:58 -0400 + +libxfixes (1:3.0.1.2-3) unstable; urgency=low + + * Remove x11-common depends from libxfixes-dev. Only use pre-depends. Thanks + Steve Langasek. + * Move x11-common depends to versioned pre-depends for libxfixes3. + + -- David Nusinow Thu, 13 Apr 2006 23:08:01 -0400 + +libxfixes (1:3.0.1.2-2) unstable; urgency=low + + * Upload to unstable + + -- David Nusinow Thu, 23 Mar 2006 22:44:37 -0500 + +libxfixes (1:3.0.1.2-1) experimental; urgency=low + + * First upload to Debian + + -- David Nusinow Thu, 29 Dec 2005 20:51:40 -0500 + +libxfixes (1:3.0.0-3) breezy; urgency=low + + * Actually bump the Build-Depends this time. + + -- Daniel Stone Sat, 23 Jul 2005 00:52:21 +1000 + +libxfixes (1:3.0.0-2) breezy; urgency=low + + * Bump Build-Depends on libx11-dev to one which avoids the whole nasty + _XOPEN_SOURCE mess. + + -- Daniel Stone Fri, 22 Jul 2005 23:38:02 +1000 + +libxfixes (1:3.0.0-1) breezy; urgency=low + + * First libxfixes release. + + -- Daniel Stone Mon, 16 May 2005 22:10:17 +1000 --- libxfixes-6.0.0.orig/debian/control +++ libxfixes-6.0.0/debian/control @@ -0,0 +1,69 @@ +Source: libxfixes +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force +Build-Depends: + debhelper-compat (= 13), + libx11-dev, + x11proto-dev, + pkg-config, + quilt, + xutils-dev, +Standards-Version: 4.6.0 +Vcs-Git: https://salsa.debian.org/xorg-team/lib/libxfixes.git +Vcs-Browser: https://salsa.debian.org/xorg-team/lib/libxfixes + +Package: libxfixes3 +Section: libs +Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, +Pre-Depends: ${misc:Pre-Depends} +Multi-Arch: same +Description: X11 miscellaneous 'fixes' extension library + libXfixes provides an X Window System client interface to the 'XFIXES' + extension to the X protocol. + . + It provides support for Region types, and some cursor functions. + . + More information about X.Org can be found at: + + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXfixes + +Package: libxfixes3-udeb +Package-Type: udeb +Section: debian-installer +Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, +Description: X11 miscellaneous 'fixes' extension library + This is a udeb, or a microdeb, for the debian-installer. + +Package: libxfixes-dev +Section: libdevel +Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + libxfixes3 (= ${binary:Version}), + libx11-dev, + x11proto-dev, +Multi-Arch: same +Description: X11 miscellaneous 'fixes' extension library (development headers) + libXfixes provides an X Window System client interface to the 'XFIXES' + extension to the X protocol. + . + It provides support for Region types, and some cursor functions. + . + This package contains the development headers for the library found in + libxfixes3. Non-developers likely have little use for this package. + . + More information about X.Org can be found at: + + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXfixes --- libxfixes-6.0.0.orig/debian/copyright +++ libxfixes-6.0.0/debian/copyright @@ -0,0 +1,44 @@ +This package was downloaded from +https://xorg.freedesktop.org/releases/individual/lib/ + + +Copyright © 2001,2003 Keith Packard + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of Keith Packard not be used in +advertising or publicity pertaining to distribution of the software without +specific, written prior permission. Keith Packard makes no +representations about the suitability of this software for any purpose. It +is provided "as is" without express or implied warranty. + +KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO +EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR +CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + +Copyright (c) 2006, Oracle and/or its affiliates. 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 (including the next +paragraph) 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. --- libxfixes-6.0.0.orig/debian/libxfixes-dev.install +++ libxfixes-6.0.0/debian/libxfixes-dev.install @@ -0,0 +1,5 @@ +usr/include/X11/* +usr/lib/*/libXfixes.a +usr/lib/*/libXfixes.so +usr/lib/*/pkgconfig/xfixes.pc +usr/share/man/man3/* --- libxfixes-6.0.0.orig/debian/libxfixes3-udeb.install +++ libxfixes-6.0.0/debian/libxfixes3-udeb.install @@ -0,0 +1 @@ +usr/lib/*/libXfixes.so.3* usr/lib --- libxfixes-6.0.0.orig/debian/libxfixes3.install +++ libxfixes-6.0.0/debian/libxfixes3.install @@ -0,0 +1 @@ +usr/lib/*/libXfixes.so.3* --- libxfixes-6.0.0.orig/debian/libxfixes3.symbols +++ libxfixes-6.0.0/debian/libxfixes3.symbols @@ -0,0 +1,41 @@ +libXfixes.so.3 libxfixes3 #MINVER# + XFixesChangeCursor@Base 0 + XFixesChangeCursorByName@Base 0 + XFixesChangeSaveSet@Base 0 + XFixesCopyRegion@Base 0 + XFixesCreatePointerBarrier@Base 1:5.0 + XFixesCreateRegion@Base 0 + XFixesCreateRegionFromBitmap@Base 0 + XFixesCreateRegionFromGC@Base 0 + XFixesCreateRegionFromPicture@Base 0 + XFixesCreateRegionFromWindow@Base 0 + XFixesDestroyPointerBarrier@Base 1:5.0 + XFixesDestroyRegion@Base 0 + XFixesExpandRegion@Base 0 + XFixesExtensionInfo@Base 0 + XFixesExtensionName@Base 0 + XFixesFetchRegion@Base 0 + XFixesFetchRegionAndBounds@Base 0 + XFixesFindDisplay@Base 0 + XFixesGetClientDisconnectMode@Base 1:6.0.0 + XFixesGetCursorImage@Base 0 + XFixesGetCursorName@Base 0 + XFixesHideCursor@Base 1:4.0.1 + XFixesIntersectRegion@Base 0 + XFixesInvertRegion@Base 0 + XFixesQueryExtension@Base 0 + XFixesQueryVersion@Base 0 + XFixesRegionExtents@Base 0 + XFixesSelectCursorInput@Base 0 + XFixesSelectSelectionInput@Base 0 + XFixesSetClientDisconnectMode@Base 1:6.0.0 + XFixesSetCursorName@Base 0 + XFixesSetGCClipRegion@Base 0 + XFixesSetPictureClipRegion@Base 0 + XFixesSetRegion@Base 0 + XFixesSetWindowShapeRegion@Base 0 + XFixesShowCursor@Base 1:4.0.1 + XFixesSubtractRegion@Base 0 + XFixesTranslateRegion@Base 0 + XFixesUnionRegion@Base 0 + XFixesVersion@Base 0 --- libxfixes-6.0.0.orig/debian/patches/series +++ libxfixes-6.0.0/debian/patches/series @@ -0,0 +1 @@ +# placeholder --- libxfixes-6.0.0.orig/debian/rules +++ libxfixes-6.0.0/debian/rules @@ -0,0 +1,21 @@ +#!/usr/bin/make -f + +PACKAGE = libxfixes3 +SHLIBS = 1:5.0 + +# Kill *.la files, and forget no-one: +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install + +# Debug package: +override_dh_strip: + dh_strip -p$(PACKAGE) --dbgsym-migration='$(PACKAGE)-dbg (<< 1:5.0.2)' + dh_strip -N$(PACKAGE) + +# Shlibs: +override_dh_makeshlibs: + dh_makeshlibs -V"$(PACKAGE) (>= $(SHLIBS))" --add-udeb=$(PACKAGE)-udeb -- -c4 + +%: + dh $@ --with quilt --builddirectory=build/ --- libxfixes-6.0.0.orig/debian/upstream/signing-key.asc +++ libxfixes-6.0.0/debian/upstream/signing-key.asc @@ -0,0 +1,189 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v2 + +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 ++v0snqqnIoZLjsQ= +=7XLO +-----END PGP PUBLIC KEY BLOCK----- +-----BEGIN PGP PUBLIC KEY BLOCK----- + +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 +79+hF4bWyw== +=WW1Z +-----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----- --- libxfixes-6.0.0.orig/debian/watch +++ libxfixes-6.0.0/debian/watch @@ -0,0 +1,4 @@ +#git=https://gitlab.freedesktop.org/xorg/lib/libXfixes +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +https://xorg.freedesktop.org/releases/individual/lib/ libXfixes-(.*)\.tar\.gz