--- libxcomposite-0.4.6.orig/.gitlab-ci.yml +++ libxcomposite-0.4.6/.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/lib/libXcomposite' + # 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-17.2' + FDO_DISTRIBUTION_PACKAGES: 'git gcc pkgconf autoconf automake libtool make xorg-util-macros xorgproto libx11 libxfixes xmlto docbook-xml docbook-xsl' + + +# +# Verify that commit messages are as expected +# +check-commits: + extends: + - .fdo.ci-fairy + stage: prep + script: + - ci-fairy check-commits --junit-xml=results.xml + except: + - master@xorg/lib/libXcomposite + 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/when 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 + - make + - make check + - make distcheck + - popd > /dev/null --- libxcomposite-0.4.6.orig/autogen.sh +++ libxcomposite-0.4.6/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 libXcomposite" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- libxcomposite-0.4.6.orig/debian/README.source +++ libxcomposite-0.4.6/debian/README.source @@ -0,0 +1,73 @@ +------------------------------------------------------ +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. + +quilt is actually invoked by the Debian X packaging through a larger +set of scripts called XSFBS. XSFBS brings some other X specific +features such as managing dependencies and conflicts due to the video +and input driver ABIs. +XSFBS itself is maintained in a separate repository at + git://git.debian.org/pkg-xorg/xsfbs.git +and it is pulled inside the other Debian X repositories when needed. + +The XSFBS patching system requires a build dependency on quilt. Also +a dependency on $(STAMP_DIR)/patch has to be added to debian/rules +so that the XSFBS patching occurs before the actual build. So the +very first target of the build (likely the one running autoreconf) +should depend on $(STAMP_DIR)/patch. It should also not depend on +anything so that parallel builds are correctly supported (nothing +should probably run while patching is being done). And finally, the +clean target should depend on the xsfclean target so that patches +are unapplied on clean. + +When the upstream sources contain some DFSG-nonfree files, they are +listed in text files in debian/prune/ in the "debian-*" branch of +the Debian repository. XSFBS' scripts then take care of removing +these listed files during the build so as to generate a modified +DFSG-free .orig.tar.gz tarball. --- libxcomposite-0.4.6.orig/debian/changelog +++ libxcomposite-0.4.6/debian/changelog @@ -0,0 +1,250 @@ +libxcomposite (1:0.4.6-1) 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. + * Drop transition for old debug package migration. + * Update standards version to 4.6.1, no changes needed. + + [ Julien Cristau ] + * Enable upstream tarball signature verification. + * New upstream release. + + -- Julien Cristau Fri, 01 Nov 2024 18:44:50 +0100 + +libxcomposite (1:0.4.5-1) unstable; urgency=medium + + * New upstream release. + * control: Migrate to x11proto-dev. (Closes: #933991) + * control, watch: Update git urls. + * control, rules: Migrate to dh 12. + * Migrate to dbgsym package. + * control: Bump policy to 4.5.0. + + -- Timo Aaltonen Tue, 14 Apr 2020 20:23:54 +0300 + +libxcomposite (1:0.4.4-2) unstable; urgency=low + + [ Julien Cristau ] + * Mark libxcomposite-dev as Multi-Arch: same (closes: #689082). Hopefully + the docbook-generated manpage won't be too unpredictable. (LP: #1657385) + + -- Timo Aaltonen Fri, 20 Jan 2017 07:36:39 +0200 + +libxcomposite (1:0.4.4-1) unstable; urgency=low + + * New upstream release. + * Bump debhelper compat level to 7. + * Use dpkg-buildflags. + * Disable silent rules. + * Use dh_prep instead of dh_clean -k. + + -- Julien Cristau Sun, 16 Jun 2013 21:06:22 +0200 + +libxcomposite (1:0.4.3-2) unstable; urgency=low + + * Team upload. + + [ Steve Langasek ] + * Build for multiarch. + + [ Julien Cristau ] + * Remove David Nusinow and Brice Goglin from Uploaders. + * Bump Standards-Version to 3.9.2. + * Add build-indep and build-arch d/rules targets. + + -- Julien Cristau Sat, 11 Jun 2011 15:02:58 +0200 + +libxcomposite (1:0.4.3-1) unstable; urgency=low + + * New upstream release. + * Remove obsolete build-deps. + * Bump xutils-dev build-dep for new macros. + * Add myself to Uploaders. + + -- Cyril Brulebois Sat, 06 Nov 2010 14:09:31 +0100 + +libxcomposite (1:0.4.2-1) unstable; urgency=low + + * New upstream release. + * Update debian/copyright from upstream COPYING. + * Bump xutils-dev build-dep for xorg-macros 1.6. + * Drop pre-dependency on x11-common, only needed for upgrades from sarge. + * Bump Standards-Version to 3.9.0. + + -- Julien Cristau Sun, 11 Jul 2010 13:48:21 +0100 + +libxcomposite (1:0.4.1-2) unstable; urgency=low + + [ Julien Cristau ] + * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no + good reason. Thanks, Colin Watson! + * Remove myself from Uploaders + + [ Brice Goglin ] + * Remove Jamey Sharp and Josh Triplett from Uploaders, closes: #568280. + + -- Julien Cristau Fri, 25 Jun 2010 20:27:02 +0100 + +libxcomposite (1:0.4.1-1) unstable; urgency=low + + [ Timo Aaltonen ] + * New upstream release (closes: #554236). + * Bump Standards-Version to 3.8.3. + * Run autoreconf on build. Add build-deps on automake, libtool and + xutils-dev. + * Parse space-separated DEB_BUILD_OPTIONS, and handle parallel=N. + + -- Julien Cristau Wed, 25 Nov 2009 15:00:28 +0100 + +libxcomposite (1:0.4.0-4) unstable; urgency=low + + * Add a link to www.X.org in the long description. + * Add README.source, bump Standards-Version to 3.8.2. + * Remove the unused quilt patching, closes: #538619. + * Move -dbg package to new debug section. + * Add myself to Uploaders. + + -- Brice Goglin Sun, 26 Jul 2009 12:13:14 +0200 + +libxcomposite (1:0.4.0-3) unstable; urgency=low + + * Add dependency on x11proto-core-dev and libxext-dev to libxcomposite-dev, + as these are referenced by xcomposite.pc. + + -- Julien Cristau Fri, 30 May 2008 14:36:51 +0200 + +libxcomposite (1:0.4.0-2) unstable; urgency=low + + [ Andres Salomon ] + * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build; + idempotency fix. + * Run dh_install w/ --list-missing. + * Bump debhelper compat to 5. + * Fix dh_strip call to skip the -dbg package. + + [ Julien Cristau ] + * Drop the -1 debian revision from the libx11-dev build-dep. + * Bump Standards-Version to 3.7.3. + * Drop the XS- prefix from Vcs-* control fields. + * libxcomposite1{,-dbg} don't need to depend on x11-common. + + -- Julien Cristau Sun, 18 May 2008 23:55:39 +0200 + +libxcomposite (1:0.4.0-1) unstable; urgency=low + + * New upstream release. + + bump (build-)dep on x11proto-composite-dev to >= 1:0.4. + * Use binary:Version instead of Source-Version in debian/control. + * Add myself to Uploaders, and remove Branden with his permission. + * Add upstream URL to debian/copyright. + + -- Julien Cristau Sun, 02 Dec 2007 13:42:56 +0100 + +libxcomposite (1:0.3.2-1) unstable; urgency=low + + [ Brice Goglin ] + * New upstream release. + * Add xmlto to Build-Depends. + * Install new manpages within libxcomposite-dev. + * Add XS-Vcs-Browser header in debian/control. + * Remove Fabio from uploaders with his permission. He's always welcome back. + + [ Julien Cristau ] + * Update debian/copyright. + + -- Julien Cristau Fri, 11 May 2007 15:14:38 +0200 + +libxcomposite (1:0.3.1-2) unstable; urgency=low + + * Upload to unstable. + + -- Julien Cristau Wed, 11 Apr 2007 11:46:19 +0200 + +libxcomposite (1:0.3.1-1) experimental; urgency=low + + * Adjust Section and Priority values to what the override says. + * Update location of upstream repository from CVS to git in the long + descriptions. + * New upstream release. + + drop patch applied upstream. + * Add XS-Vcs-Git header in debian/control. + * Install the upstream changelog. + + -- Julien Cristau Tue, 13 Feb 2007 10:00:49 +0100 + +libxcomposite (1:0.3-3) unstable; urgency=low + + * calls UnlockDisplay without calling LockDisplay first (Closes: + #400440) + * Add Josh and myself to Uploaders. + * Enable xsfbs patch application. + * Add quilt to Build-Depends. + + -- Jamey Sharp Mon, 27 Nov 2006 16:07:41 -0800 + +libxcomposite (1:0.3-2) unstable; urgency=low + + [ Thierry Reding ] + * Make packages built against libxcomposite depend on (>= 1:0.3-1) because + of the addition of the XComposite{Get,Release}OverlayWindow functions. + Thanks Eugene Konev. Closes: #390254. + + -- David Nusinow Sat, 30 Sep 2006 14:41:13 -0400 + +libxcomposite (1:0.3-1) unstable; urgency=low + + [ Thierry Reding ] + * New upstream release. + * Bumped Standards-Version to 3.7.2, no changes required. + * Removed build-dependency on libxdamage-dev because it is no longer needed. + * Added build-dependencies on libxext-dev and x11proto-fixes-dev to reflect + the PKG_CHECK_MODULES list. + + [ David Nusinow ] + * Remove extra dependency on x11-common in -dev package + * Change versioned pre-dep on x11-common to 1:7.0.0 to shut lintian up + * Re-align -dbg package extended description to make lintian happy + + -- David Nusinow Thu, 28 Sep 2006 22:24:14 -0400 + +libxcomposite (1:0.2.2.2-3) 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:57 -0400 + +libxcomposite (1:0.2.2.2-2) unstable; urgency=low + + * Upload to unstable + + -- David Nusinow Thu, 23 Mar 2006 22:44:30 -0500 + +libxcomposite (1:0.2.2.2-1) experimental; urgency=low + + * First upload to Debian + * Fix copyright file to use COPYING file shipped in RC1. For some reason it + was listed as GPL. + + -- David Nusinow Thu, 29 Dec 2005 20:51:30 -0500 + +libxcomposite (1:0.2.0-3) breezy; urgency=low + + * Bump Build-Depends on libxfixes-dev, libxdamage-dev and libx11-dev high + enough that we route around the wonderful _XOPEN_SOURCE incident. + + -- Daniel Stone Fri, 22 Jul 2005 23:46:03 +1000 + +libxcomposite (1:0.2.0-2) breezy; urgency=low + + * Add B-D on libxdamage-dev. + + -- Daniel Stone Tue, 12 Jul 2005 13:27:37 +1000 + +libxcomposite (1:0.2.0-1) breezy; urgency=low + + * First libxcomposite release. + + -- Daniel Stone Mon, 16 May 2005 22:10:17 +1000 --- libxcomposite-0.4.6.orig/debian/control +++ libxcomposite-0.4.6/debian/control @@ -0,0 +1,63 @@ +Source: libxcomposite +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force +Uploaders: Cyril Brulebois +Build-Depends: + debhelper-compat (= 13), + libx11-dev (>= 1:0.99.2), + libxfixes-dev (>= 1:3.0.0-4), + x11proto-dev, + pkg-config, + xmlto, + xutils-dev (>= 1:7.5+4), +Standards-Version: 4.6.1 +Vcs-Git: https://salsa.debian.org/xorg-team/lib/libxcomposite.git +Vcs-Browser: https://salsa.debian.org/xorg-team/lib/libxcomposite + +Package: libxcomposite1 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Pre-Depends: ${misc:Pre-Depends} +Multi-Arch: same +Description: X11 Composite extension library + libXcomposite provides an X Window System client interface to the Composite + extension to the X protocol. + . + The Composite extension allows clients called compositing managers to control + the final drawing of the screen. Rendering is done into an off-screen buffer. + . + More information about X.Org can be found at: + + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libXcomposite + +Package: libxcomposite-dev +Architecture: any +Section: libdevel +Multi-Arch: same +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + libxcomposite1 (= ${binary:Version}), + libx11-dev, + libxfixes-dev, + x11proto-dev, + libxext-dev +Description: X11 Composite extension library (development headers) + libXcomposite provides an X Window System client interface to the Composite + extension to the X protocol. + . + The Composite extension allows clients called compositing managers to control + the final drawing of the screen. Rendering is done into an off-screen buffer. + . + This package contains the development headers for the library found in + libxcomposite1. 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/libXcomposite --- libxcomposite-0.4.6.orig/debian/copyright +++ libxcomposite-0.4.6/debian/copyright @@ -0,0 +1,43 @@ +This package was downloaded from +http://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, 2007, 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. --- libxcomposite-0.4.6.orig/debian/libxcomposite-dev.install +++ libxcomposite-0.4.6/debian/libxcomposite-dev.install @@ -0,0 +1,5 @@ +usr/include/X11/* +usr/lib/*/libXcomposite.a +usr/lib/*/libXcomposite.so +usr/lib/*/pkgconfig/xcomposite.pc +usr/share/man/man3/* --- libxcomposite-0.4.6.orig/debian/libxcomposite1.install +++ libxcomposite-0.4.6/debian/libxcomposite1.install @@ -0,0 +1 @@ +usr/lib/*/libXcomposite.so.1* --- libxcomposite-0.4.6.orig/debian/rules +++ libxcomposite-0.4.6/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f +# debian/rules for the Debian libxcomposite package. +# Copyright © 2004 Scott James Remnant +# Copyright © 2005 Daniel Stone +# Copyright © 2005 David Nusinow + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ --builddirectory=build + +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install --- libxcomposite-0.4.6.orig/debian/upstream/signing-key.asc +++ libxcomposite-0.4.6/debian/upstream/signing-key.asc @@ -0,0 +1,61 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mQGiBEab+moRBACDH5yKqS3wcc5bdxY7PBNuwKvF5TKMfagmSvuRDtZjjIIWaA/n +Z1KboV9Gq5g7kP7+Kfu+Qgd8u65eVsWwmPW10fXvj3aCU53glx2EdGdrHcgiyH2g +EQfPiyBw+trIppWFRV0IDXSLMA1FNC92t2nSG/VFHaPTVwcgkIRSfcXDvwCglGdE +a6f4uLqoNHP+m4yYnzapFuMD/R4+2AJDAvEWKDdYCGZzlawjAmmWyXrmT7/C/mx9 +8qUR473l4buXjHgDkkXXlHqdzil1vK85PhrKzNJDCCmlHUJNz+QwiAMOLwpD+kwV +Pb57RG7y+a5JQ5+jtVw4RlUxZIk/wj2An9YBO3A5vR7PdjM32ZJCN2+aM4dYfNzQ +xQKTA/47icvBaBVTl9rztjg2pd2Aqpc1P/GsIYLGj7XjnnJvGAENBHSH1QjpZMJG +CTS9oJ+B0/wrIr+pA+MdFgYAb6ojMQJOO6UChjWWSGjMFcs/CeXhxlLBido3DtAE +TbNTwO6OEfAvdosvTdhJFnwvZlJ+zZGGy5CrF2Fd9PUe9tmASbQoQWxhbiBDb29w +ZXJzbWl0aCA8YWxhbmNAZnJlZWRlc2t0b3Aub3JnPoh/BBMRCgA/AhsDBgsJCAcD +AgYVCAIJCgsEFgIDAQIeAQIXgBYhBEoZPAbTXnxnD6TvC6L7nggfLRMOBQJkQs2e +BQknDNS0AAoJEKL7nggfLRMOUgAAoIyNXuU5kOotpZrKvPrjQATbsPClAJ9wkh/n +3IAobV6aDLb1qOt5RT3Pp7QrQWxhbiBDb29wZXJzbWl0aCA8YWxhbi5jb29wZXJz +bWl0aEBzdW4uY29tPohmBBMRAgAmAhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AF +AlF50WIFCRRD2HgACgkQovueCB8tEw7qxQCfSOXeH2tjg4nXcu7uewpyXKEOk6oA +oIWBOZoMZG4NHGWguD2N+2uftru+tC5BbGFuIENvb3BlcnNtaXRoIDxhbGFuLmNv +b3BlcnNtaXRoQG9yYWNsZS5jb20+iIIEExEKAEICGwMGCwkIBwMCBhUIAgkKCwQW +AgMBAh4BAheAAhkBFiEEShk8BtNefGcPpO8LovueCB8tEw4FAmRCzZ4FCScM1LQA +CgkQovueCB8tEw7V6wCdHgVUPrQGkNj9smnlELVVeE5WWjgAoImCxB5V4YvEOUy6 +ECZtwKQ6Np+puQINBEab+m8QCACaeWlJYaOa1IaUuopO7KbAEBT0bsnDyjDbtCeB +dL/zqD89PObKFfMrS4+B6ghpNmWpodY0oJYmcLpPZu1e1oMcfpwSWsKVg1/3iizm +xK3w8EOHXzhb421y0DJjZ0DWlBiFizz95fBrgThzKutAbvkz4Ietu71J7S+UREBE +Kk1yM1gulNdELA25S8CL3TlUnRhecZfzdZsl80ir67GcFraBXPBvb/YXAo4bTdbJ +vW+zo3OdYmV73HrXLz8uUQOgFFt8hBMWnnVHS57yBfbIxWCHyVhVWIdgIGr5xq3u +nxfjVdr9838d8EU+x/f/5uGCA2CZoGYMkHHF3oE8HxgSKt6LAAMGB/9RYjFDDBEu +SJc9pw6iHfgwlhAgFOsILyBUXF62VsQ8Qfma55kwl6AA9MXnaXzpER6fF01XP/TF +PsEPpWUcdjkOjCVtFxrhbx5veCmRf/B81gNgIe1OJ9Pt7C6ZOs1nHmats2TRdMlU +48A/fPsTStUPbD/GjinbYPMjB94YrCkeq3Vvpn1+atEPBqJdoWbBR/6siIZz84Vw +5J7jofBOYjJM63o1V1BJ/vmM49t14z+fUjmy851ZMsSPpASPar1RD3xQQ8m4x1qi +3IEXAqVwM44sxIvv3d9Yg2thKyR1eEeNqG3nBaoj56A7Yl9yIj+8/X5sTOGlj2WU +ar6vtYbecJJ/iEkEGBECAAkFAkab+m8CGwwACgkQovueCB8tEw6C6ACgh2EacP13 +8hLp8NWC/7jGc5e/KiEAnRVXFzW6g/N6lYVuC8u4cgy/KNGiuQINBFF51SEBEACh +6YzpmNOep9LbGaFvauXoLDHJebSgvLopq4TtOZ56vuf+tP2HnQvvlfXPW/9/1+zt +vC8gZALQYA9MSWUg0NA4U8ygKegM40LQbyOvLopxsMUo0/qEKTzMaoQNSNJM6BAw +nRKlfh7FTgBHWwIv7T/W23Uw88FXPDFg64mpgVKnOd0W9NDH38veN+VIE0uIAITM +ADYcul2ZjjAYSEzs8RSVBA0wybS2xNG9Yz0UEuzR0IGpNYp5rrzzHN8ALqBHEgkr +dcbqW2LAaFzoyucAv3hNSyHWaEcltjpE9eNA6g2fM30SA/OtIZ4q52IG9PUzzbY/ +d6bnVAFLek/frXCzeP68YcRzsLHuuihhzuG0Na2epn3KOkmHfVetHC+oQtnjHnMs +WZYjLte5Y+xF/JcVB/qJiIB3OxxqMlEelflgetHMVo+b9Oc3Xi3mdmiwXDxYcZXw +xEpvH+Hs3SUg0tUGZgtD+Yd0SX4YX5nQa/JB86+9ddQ9fzu9QL9VVeRcifWMVEsa +eCD7syuyW24FR3AOj716w81lLJZmYDwA6Sh+IU5hvzXQqoRF3Ln72OrOcjZLAfF9 +0Xjb7kksnxp0c95L7citF8wuykV9j6riyOgPCiaax8GRqhAdTQxvG9ommJ4ITo8n +yGBFUBd5xn2gcL+JawjxKGUlGivH/zUGYzVPDUMk5wARAQABiQKFBBgRCgAmAhsC +FiEEShk8BtNefGcPpO8LovueCB8tEw4FAmRCzYoFCRwu+ekCKQkQovueCB8tEw7B +XSAEGQEKAAYFAlF51SEACgkQz98UiCjGQqfW5g//dOdJHt23cdMyz5VADaE7u+L0 +E+eX9GtHF4J649eXsui59EtbHh2nXdGhd5SqQ8FDi9GCEKaQ4S31n/YBLEBCkj7R +0IMikW2o78/JxDovB8+aL606hgmafNVx1aIshIglrl8Xlu3sjeAvG48W6YjdL2mf +rIDHjIVwOZsMihbOJvST6Q3upHdnmjDtM5HCQmI5NEXDWYj6IZuhJnnrDWwNsyYV +4KPoUBxAcqIyCeZbVssuWWnHPXX8VavVq98vpVynfGzGYpJbDj19C/utMjKGI5dc +vbVaucA7X/oktxrxS6SBDhuIaAE94ZHlbxqfyHfETI/La2Z/ALDAtYdhJR2gSkTH +yKSW1QqYlulSfB//lnna44mmTuRONbDNgb0FGSvtsBMZ80iHDqPgUfS60kxCfFrs +SGfTFU+X4QAzpTtUJEcr+J4HULDeMfwOgghVfmKxFXWfud8xDaCXuywLTtVgMCZp +4P7MAyuJlaxsFTu+c1Vly94grk4UMtALLMqCXSosA490gLTSdg3HSwxt2Q/LJdy4 +27ZIMvjGXIruns8U/OmL9dVgWu3bJHsL68Skx8Ts63qTN9QXM/PB+8VwOaC7PJ+g +6t40DleOmdsS8cN31yf5KB8rsL4un4u1yrMJfpnSblPMu5wJi3kjoA+Dd5ZFqx9n +Ti4wBjfVYGCPsleq59IkbACfe7lUvmRzyej/KOK2nO+1k7WIGGYAn3ZGvxh7+DJN +THy/zBUuNZ0nWWb8 +=KE+F +-----END PGP PUBLIC KEY BLOCK----- --- libxcomposite-0.4.6.orig/debian/watch +++ libxcomposite-0.4.6/debian/watch @@ -0,0 +1,4 @@ +#git=https://gitlab.freedesktop.org/xorg/lib/libXcomposite +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +http://xorg.freedesktop.org/releases/individual/lib/ libXcomposite-(.*)\.tar\.gz