--- libxau-1.0.9.orig/ChangeLog +++ libxau-1.0.9/ChangeLog @@ -1,135 +1,3 @@ -commit d9443b2c57b512cfb250b35707378654d86c7dea -Author: Alan Coopersmith -Date: Sun Feb 10 14:42:30 2019 -0800 - - libXau 1.0.9 - - Signed-off-by: Alan Coopersmith - -commit 6f0b6fcf699592d9ed284356571a2f4681726ac5 -Author: Alan Coopersmith -Date: Fri Dec 7 19:38:53 2018 -0800 - - Update configure.ac bug URL for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit 7ba7085b4f01f3cd72008712a5333ea3f0edfd88 -Author: walter harms -Date: Sat Oct 28 19:14:22 2017 +0200 - - AuRead.c: remove redundant null check on calling free() - - this removes simply unneeded code from XauReadAuth - - Signed-off-by: Walter Harms - Reviewed-by: Daniel Martin - Reviewed-by: Emil Velikov - -commit cf6cc845ba12dbfa7d29a4eab810888838a9749b -Author: walter harms -Date: Sat Oct 28 19:14:26 2017 +0200 - - Au FileName.c: remove redundant null check on calling free() - - remove redundant null check on calling free() - Signed-off-by: Walter Harms - Reviewed-by: Daniel Martin - Reviewed-by: Emil Velikov - -commit fdbb21274a4e8af419b2581e05242f5058471f72 -Author: walter harms -Date: Sat Oct 28 19:14:13 2017 +0200 - - AuDispose.c:remove redundant null check on calling free() - - redundant null check on auth->address calling free() - redundant null check on auth->number calling free() - redundant null check on auth->name calling free() - - Signed-off-by: Walter Harms - Reviewed-by: Daniel Martin - Reviewed-by: Emil Velikov - -commit 987fee49dc1750082cfe6e24833379233777a13b -Author: Tobias Stoeckmann -Date: Thu Oct 19 22:18:18 2017 +0200 - - Avoid out of boundary read access - - If the environment variable HOME is empty, XauFileName triggers an - out of boundary read access (name[1]). If HOME consists of a single - character relative path, the output becomes unexpected, because - "HOME=a" leads to "a.Xauthority" instead of "a/.Xauthority". Granted, - a relative HOME path leads to trouble in general, the code should - properly return "a/.Xauthority" nonetheless. - - Signed-off-by: Tobias Stoeckmann - Reviewed-by: Alan Coopersmith - -commit 42e152c6f2d1bd839e77c5e97f3a509d890c3237 -Author: Mihail Konev -Date: Thu Jan 26 13:52:49 2017 +1000 - - autogen: add default patch prefix - - Signed-off-by: Mihail Konev - -commit fca98447c95ae0284b4f1b0c381011f8ccaf1ff0 -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 33f792eb48687793bbb92e62d7462828c7468b55 -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 1e4635be11154dd8262f37b379511bd627defa2a -Author: Jeremy Huddleston Sequoia -Date: Thu Jan 2 01:07:41 2014 -0800 - - Silence a benign static analysis warning with an assert of allocation size - - AuFileName.c:72:8: warning: Call to 'malloc' has an allocation size of 0 bytes - buf = malloc (size); - ^~~~~~~~~~~~~ - - Signed-off-by: Jeremy Huddleston Sequoia - -commit 304a11be4727c5a7feeb2501e8e001466f8ce84e -Author: Alan Coopersmith -Date: Sun Sep 29 09:23:45 2013 -0700 - - XauFileName: always go through buf allocation if buf is NULL - - Signed-off-by: Alan Coopersmith - -commit 67beb3d0bc41c3416902c858f595b35306f76704 -Author: Fuminobu TAKEYAMA -Date: Sun Sep 29 09:21:05 2013 -0700 - - XauFileName: reset bsize when malloc failed - - https://bugs.freedesktop.org/show_bug.cgi?id=69929 - - Reviewed-by: Alan Coopersmith - Signed-off-by: Alan Coopersmith - commit 899790011304c4029e15abf410e49ce7cec17e0a Author: Alan Coopersmith Date: Fri May 24 15:04:00 2013 -0700 --- libxau-1.0.9.orig/autogen.sh +++ libxau-1.0.9/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 libXau" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- libxau-1.0.9.orig/debian/README.source +++ libxau-1.0.9/debian/README.source @@ -0,0 +1,55 @@ +------------------------------------------------------ +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 +salsa.debian.org in the xorg-team group. Most upstream packages +are actually maintained in git repositories as well, so they often +just need to be pulled into salsa.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 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. + +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. --- libxau-1.0.9.orig/debian/changelog +++ libxau-1.0.9/debian/changelog @@ -0,0 +1,249 @@ +libxau (1:1.0.9-1build5) jammy; urgency=high + + * No change rebuild for ppc64el baseline bump. + + -- Julian Andres Klode Thu, 24 Mar 2022 17:23:44 +0100 + +libxau (1:1.0.9-1build4) impish; urgency=medium + + * No-change rebuild to build packages with zstd compression. + + -- Matthias Klose Thu, 07 Oct 2021 12:19:26 +0200 + +libxau (1:1.0.9-1build3) hirsute; urgency=medium + + * No-change rebuild to drop the udeb package. + + -- Matthias Klose Thu, 25 Feb 2021 06:58:57 +0100 + +libxau (1:1.0.9-1build2) hirsute; urgency=medium + + * No-change rebuild to drop the udeb package. + + -- Matthias Klose Mon, 22 Feb 2021 10:34:59 +0100 + +libxau (1:1.0.9-1build1) hirsute; urgency=medium + + * No change rebuild with fixed ownership. + + -- Dimitri John Ledkov Tue, 16 Feb 2021 15:17:27 +0000 + +libxau (1:1.0.9-1) unstable; urgency=medium + + * New upstream release. + * control, rules: Migrate to dh, and debhelper-compat, bump to 13. + * Remove xsfbs. + * control: Bump policy to 4.5.1. + * Remove Cyril from Uploaders. + * control: Update Vcs and upstream urls. + * control: Migrate to x11proto-dev. + * watch: Update upstream git url. + * Update README.source for salsa. + * Let uscan verify tarball signatures. + + -- Timo Aaltonen Fri, 29 Jan 2021 00:25:08 +0200 + +libxau (1:1.0.8-1) unstable; urgency=low + + * New upstream release. + * Bump debhelper compat level to 7. + * Use dpkg-buildflags and disable silent rules. + * Bump Standards-Version to 3.9.4, no changes needed. + + -- Julien Cristau Fri, 14 Jun 2013 20:23:24 +0200 + +libxau (1:1.0.7-1) unstable; urgency=low + + * New upstream release. + * Don't require (fake)root for debian/rules clean. + * Bump xutils-dev build-dep to 1:7.5+4 for newer macros. + + -- Julien Cristau Mon, 09 Apr 2012 18:50:40 +0200 + +libxau (1:1.0.6-4) unstable; urgency=low + + * Mark libxau-dev Multi-Arch: same, after confirming the contents are + compatible between amd64 and armel. + + -- Steve Langasek Tue, 08 Nov 2011 19:31:51 -0800 + +libxau (1:1.0.6-3) unstable; urgency=low + + * Team upload. + * Don't put debugging symbols for the udeb in libxau6-dbg. + * Add build-arch and (empty) build-indep debian/rules targets. + + -- Julien Cristau Sat, 11 Jun 2011 23:47:19 +0200 + +libxau (1:1.0.6-2) unstable; urgency=low + + * Team upload. + + [ Steve Langasek ] + * Build for multiarch. + + [ Julien Cristau ] + * Remove David Nusinow from Uploaders. + * Bump Standards-Version to 3.9.2. + + -- Julien Cristau Wed, 08 Jun 2011 19:59:21 +0200 + +libxau (1:1.0.6-1) unstable; urgency=low + + * New upstream release + - manpage fixes (closes: #583599). Thanks, Tom Fogal! + * Drop Pre-Depends on x11-common, only necessary for upgrades from sarge. + * Bump build-dependency on xutils-dev for util-macros 1.4. + * Bump Standards-Version to 3.9.0. + + -- Julien Cristau Sat, 24 Jul 2010 11:43:07 +0200 + +libxau (1:1.0.5-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 + + [ Cyril Brulebois ] + * Add udeb needed for the graphical installer: libxau6-udeb. + * Add myself to Uploaders. + * Bump Standards-Version from 3.8.3 to 3.8.4 (no changes needed). + * Add ${misc:Depends} to non-udeb binaries, and wrap Depends. + + -- Cyril Brulebois Tue, 09 Mar 2010 02:21:32 +0100 + +libxau (1:1.0.5-1) unstable; urgency=low + + * New upstream release + * Update xsfbs to 5693792171d885769e58dcccc053c08b11acd12a + + README.source lets us bump standards version to 3.8.3.0 + * Change -dbg package to "debug" section + * Delete autogen.sh, which gets installed at build time + + -- David Nusinow Mon, 14 Sep 2009 21:37:57 -0400 + +libxau (1:1.0.4-2) unstable; urgency=low + + * Upload to unstable. + + -- Julien Cristau Mon, 16 Feb 2009 19:02:29 +0100 + +libxau (1:1.0.4-1) experimental; urgency=low + + [ Brice Goglin ] + * Add upstream URL to debian/copyright. + * Add a link to www.X.org and a reference to the upstream module + in the long description. + + [ Timo Aaltonen ] + * New upstream release. + + [ Julien Cristau ] + * Run autoreconf on build, add build-deps on automake, autoconf, libtool and + xutils-dev. + * Handle parallel builds. + + -- Julien Cristau Fri, 19 Dec 2008 13:11:10 +0100 + +libxau (1:1.0.3-3) unstable; urgency=low + + * Remove Branden from Uploaders with his permission. + * Add myself to Uploaders. + * Bump Standards-Version to 3.7.3. + * Drop the XS- prefix from Vcs-* control fields. + * libxau6{,-dbg} don't need to depend on x11-common. + * Use ${binary:Version} instead of the deprecated ${Source-Version}. + + -- Julien Cristau Fri, 16 May 2008 15:15:13 +0200 + +libxau (1:1.0.3-2) unstable; urgency=low + + * Remove Fabio from Uploaders, with his permission. + * Add XS-Vcs-Browser. + * Put binary packages in the correct sections. + * Upload to unstable. + + -- Julien Cristau Wed, 11 Apr 2007 17:31:27 +0200 + +libxau (1:1.0.3-1) experimental; urgency=low + + [ Julien Cristau ] + * New upstream release. + * Drop outdated CVS info from the descriptions and add XS-Vcs-Git. + * Install the upstream changelog. + + -- David Nusinow Thu, 8 Feb 2007 21:21:05 -0500 + +libxau (1:1.0.1-2) unstable; urgency=low + + [ David Nusinow ] + * Run dh_install with --list-missing + + [ Andres Salomon ] + * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build; + idempotency fix. + + [ Drew Parsons ] + * dbg package has priority extra. + + -- David Nusinow Tue, 29 Aug 2006 19:52:49 +0000 + +libxau (1:1.0.1-1) experimental; urgency=low + + * New upstream version + * Set up package to be able to use patches even if we're not currently + shipping any. Add quilt to build-dep to deal. + * Autoreconf to fix manpage sections (closes: #376026, #356545) + * Remove duplicate x11-common depends from libxau-dev + * Version x11-common pre-dep in libxau-dev to 1:7.0.0 to match the rest of + Debian and shut lintian up + * Bump standards version to 3.7.2.0 + * Bump debhelper compat to 5 + + -- David Nusinow Sun, 2 Jul 2006 21:23:08 -0400 + +libxau (1:1.0.0-4) unstable; urgency=low + + * Build with LIB_MAN_SUFFIX=3 so that manual pages have a .3 extension + insteod of .3x. Closes: #356545, #368165 + * Bump Standards-Version: 3.7.2, no changes needed. + * Clean out Depends fields in debian/control, drop all ${misc:Depends} + substitutions, and libxau-dev does not need ${shlibs:Depends} and + x11-common (the latter because it Pre-Depends on it). + * Lintian wants libxau-dev Pre-Depends: x11-common (>= 1:7.0.0) + so bump x11-common version to this value. + + -- Denis Barbier Mon, 14 Aug 2006 20:10:31 +0200 + +libxau (1:1.0.0-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:56 -0400 + +libxau (1:1.0.0-2) unstable; urgency=low + + * Upload to unstable + + -- David Nusinow Thu, 23 Mar 2006 22:44:28 -0500 + +libxau (1:1.0.0-1) experimental; urgency=low + + * First upload to Debian + + -- David Nusinow Thu, 29 Dec 2005 20:51:23 -0500 + +libxau (1:0.1.2-2) breezy; urgency=low + + * Add build dependencies: pkg-config, x11proto-core-dev + * Change Build-Depends-Indep to Build-Depends. + + -- Matthias Klose Mon, 23 May 2005 20:17:11 +0000 + +libxau (1:0.1.2-1) breezy; urgency=low + + * First libxau release. + + -- Daniel Stone Mon, 16 May 2005 22:10:17 +1000 --- libxau-1.0.9.orig/debian/control +++ libxau-1.0.9/debian/control @@ -0,0 +1,65 @@ +Source: libxau +Section: x11 +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian X Strike Force +Build-Depends: + debhelper-compat (= 13), + pkg-config, + x11proto-dev, + quilt, + xutils-dev (>= 1:7.5+4), +Standards-Version: 4.5.1 +Vcs-Git: https://salsa.debian.org/xorg-team/lib/libxau +Vcs-Browser: https://salsa.debian.org/xorg-team/lib/libxau + +Package: libxau6 +Section: libs +Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, +Pre-Depends: ${misc:Pre-Depends} +Multi-Arch: same +Description: X11 authorisation library + This package provides the main interface to the X11 authorisation handling, + which controls authorisation for X connections, both client-side and + server-side. + . + More information about X.Org can be found at: + + . + This module can be found at + https://gitlab.freedesktop.org/xorg/lib/libxau + +Package: libxau6-udeb +XC-Package-Type: udeb +Section: debian-installer +Architecture: any +Depends: + ${shlibs:Depends}, +Description: X11 authorisation library + This is a udeb, or a microdeb, for the debian-installer. + +Package: libxau-dev +Section: libdevel +Architecture: any +Multi-Arch: same +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + libxau6 (= ${binary:Version}), + x11proto-dev, +Description: X11 authorisation library (development headers) + This package provides the main interface to the X11 authorisation handling, + which controls authorisation for X connections, both client-side and + server-side. + . + This package contains the development headers for the library found in libxau6. + Non-developers likely have little use for this package. + . + More information about X.Org can be found at: + + . + This module can be found at + https://gitlab.freedesktop.org/xorg/lib/libxau --- libxau-1.0.9.orig/debian/copyright +++ libxau-1.0.9/debian/copyright @@ -0,0 +1,24 @@ +This package was downloaded from +https://xorg.freedesktop.org/releases/individual/lib/ + +Copyright 1988, 1998 The Open Group + +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. + +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 +OPEN GROUP 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 Open Group 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 Open Group. --- libxau-1.0.9.orig/debian/libxau-dev.install +++ libxau-1.0.9/debian/libxau-dev.install @@ -0,0 +1,5 @@ +usr/include/X11/* +usr/share/man/man3/* +usr/lib/*/libXau.a +usr/lib/*/libXau.so +usr/lib/*/pkgconfig/xau.pc --- libxau-1.0.9.orig/debian/libxau6-udeb.install +++ libxau-1.0.9/debian/libxau6-udeb.install @@ -0,0 +1 @@ +usr/lib/*/libXau.so.6* usr/lib --- libxau-1.0.9.orig/debian/libxau6.install +++ libxau-1.0.9/debian/libxau6.install @@ -0,0 +1 @@ +usr/lib/*/libXau.so.6* --- libxau-1.0.9.orig/debian/rules +++ libxau-1.0.9/debian/rules @@ -0,0 +1,28 @@ +#!/usr/bin/make -f +# debian/rules for the Debian libxau 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 + +# set this to the name of the main shlib's binary package +PACKAGE = libxau6 + +%: + dh $@ --with quilt --builddirectory=build/ + +override_dh_auto_configure: + dh_auto_configure -- \ + --disable-silent-rules + +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install + +override_dh_strip: + dh_strip --dbgsym-migration='$(PACKAGE)-dbg (<< 1.0.9-1~)' + +override_dh_makeshlibs: + dh_makeshlibs --add-udeb=$(PACKAGE)-udeb --- libxau-1.0.9.orig/debian/upstream/signing-key.asc +++ libxau-1.0.9/debian/upstream/signing-key.asc @@ -0,0 +1,59 @@ +-----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 +ZXJzbWl0aCA8YWxhbmNAZnJlZWRlc2t0b3Aub3JnPohoBBMRCgAoAhsDBgsJCAcD +AgYVCAIJCgsEFgIDAQIeAQIXgAUCWtvjngUJHaXqrgAKCRCi+54IHy0TDrCEAJ0W +P1TlJC6G/R7wFC8jiisY/NQxKQCgiap1UHuxTtn752MGuPe4lzibQXq0K0FsYW4g +Q29vcGVyc21pdGggPGFsYW4uY29vcGVyc21pdGhAc3VuLmNvbT6IZgQTEQoAJgIb +AwYLCQgHAwIEFQIIAwQWAgMBAh4BAheABQJa2+OeBQkdpequAAoJEKL7nggfLRMO +G0MAn3mUvsWWPwTN1apiiC7tX1bleZ3iAKCLS83eKCU9U0faAc5xOl03KXTBzLQu +QWxhbiBDb29wZXJzbWl0aCA8YWxhbi5jb29wZXJzbWl0aEBvcmFjbGUuY29tPohr +BBMRCgArAhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAIZAQUCWtvjmAUJHaXq +rgAKCRCi+54IHy0TDmAsAJ4ubyCVncwKtAGVIx9whDq7f6SxZgCfXAVWUqRR20c9 +8J39lLTtcopZDfi5Ag0ERpv6bxAIAJp5aUlho5rUhpS6ik7spsAQFPRuycPKMNu0 +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 +=aAdc +-----END PGP PUBLIC KEY BLOCK----- --- libxau-1.0.9.orig/debian/watch +++ libxau-1.0.9/debian/watch @@ -0,0 +1,4 @@ +#git=https://gitlab.freedesktop.org/xorg/lib/libxau +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +https://xorg.freedesktop.org/releases/individual/lib/ libXau-(.*)\.tar\.gz