--- libfs-1.0.8.orig/ChangeLog +++ libfs-1.0.8/ChangeLog @@ -1,149 +1,3 @@ -commit 02de7390e58f00a3701f656a2b205dc6c8dafb58 -Author: Alan Coopersmith -Date: Sun Mar 10 15:39:06 2019 -0700 - - libFS 1.0.8 - - Signed-off-by: Alan Coopersmith - -commit e8642e3203f9793c2cca19b2df334b4160c56742 -Author: Alan Coopersmith -Date: Fri Dec 7 19:29:44 2018 -0800 - - Update configure.ac bug URL for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit 6052aa6479be8059c9294ced6e3a33e2316bb2d5 -Author: Alan Coopersmith -Date: Sun Nov 18 21:46:25 2018 -0800 - - Update README for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit d3af455fb236931fadb6e863e5a4ed509c61d868 -Author: Alan Coopersmith -Date: Sun Sep 23 19:26:02 2018 -0700 - - Don't try to send strings larger than protocol allows in requests - - Also clears up all "Loss of precision on implicit conversion" warnings - from Oracle's Parfait static analyser. - - Signed-off-by: Alan Coopersmith - -commit 12d64c65200930885c694d018ec66d8946b3a214 -Author: Alan Coopersmith -Date: Sun Sep 23 13:51:25 2018 -0700 - - Fix sign comparison warning in loop index in FSQueryXInfo - - FSQXInfo.c: In function ‘FSQueryXInfo’: - FSQXInfo.c:110:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - for (j=0; jnum_offsets; j++) - ^ - - Signed-off-by: Alan Coopersmith - -commit 3eb9c6bbfb4e6caf6efb5dec8744f257c2d63be7 -Author: Alan Coopersmith -Date: Sun Sep 23 13:47:35 2018 -0700 - - Fix sign comparison warning in loop indexes in FSQueryXExtents{8,16} - - FSQXExt.c: In function ‘FSQueryXExtents8’: - FSQXExt.c:105:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - for (i = 0; i < reply.num_extents; i++) { - ^ - FSQXExt.c: In function ‘FSQueryXExtents16’: - FSQXExt.c:141:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - for (i = 0; i < str_len; i++) { - ^ - FSQXExt.c:165:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - for (i = 0; i < reply.num_extents; i++) { - ^ - - Signed-off-by: Alan Coopersmith - -commit 8213b7070c039ea16d0112eff01cc7420031c089 -Author: Alan Coopersmith -Date: Sun Sep 23 13:44:59 2018 -0700 - - Fix sign comparison warning in loop indexes in FSQueryXBitmaps{8,16} - - FSQGlyphs.c: In function ‘FSQueryXBitmaps8’: - FSQGlyphs.c:113:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - for (i=0; i - -commit caee4c2bf188484f117e5bd866e3b56c8506593e -Author: Alan Coopersmith -Date: Sun Sep 23 13:40:30 2018 -0700 - - Fix sign comparison warning in loop index in FSListCatalogues - - FSListCats.c: In function ‘FSListCatalogues’: - FSListCats.c:104:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - for (i = 0; i < rep.num_catalogues; i++) { - ^ - - Signed-off-by: Alan Coopersmith - -commit b37bbeb7ca931b0f5170e877b0bbfd0959d344b7 -Author: Alan Coopersmith -Date: Sun Sep 23 13:34:04 2018 -0700 - - Fix sign comparison warning in loop index in FSListFontsWithXInfo - - FSFontInfo.c: In function ‘FSListFontsWithXInfo’: - FSFontInfo.c:182:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] - for (j=0; jnum_offsets; j++) - ^ - - Signed-off-by: Alan Coopersmith - -commit fed3794a5204eace3926f13573b10f0b51f85fbc -Author: Mihail Konev -Date: Thu Jan 26 13:52:49 2017 +1000 - - autogen: add default patch prefix - - Signed-off-by: Mihail Konev - -commit 89f456580ea831652f119158f8b257dfd531a7e1 -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 4ef3748251ac2139b73b137dcef529421447652b -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 a9db12661e7412dd935706c92db6d7bc46238782 Author: Alan Coopersmith Date: Thu Apr 30 21:14:46 2015 -0700 --- libfs-1.0.8.orig/autogen.sh +++ libfs-1.0.8/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 libFS" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- libfs-1.0.8.orig/debian/README.source +++ libfs-1.0.8/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 +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. + +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. --- libfs-1.0.8.orig/debian/changelog +++ libfs-1.0.8/debian/changelog @@ -0,0 +1,162 @@ +libfs (2:1.0.8-1) unstable; urgency=medium + + * New upstream release. + * contro: Use debhelper-compat, bump to 12. Cleanups elsewhere. + * Migrate to -dbgsym. + * control: Bump policy to 4.5.0. + * control: Migtrate to x11proto-dev. + * Update Vcs urls. + * watch: Use https. + * Update README.source for salsa. + + -- Timo Aaltonen Fri, 29 Jan 2021 00:49:36 +0200 + +libfs (2:1.0.7-1) unstable; urgency=medium + + * Let uscan verify tarball signatures. + * New upstream release. + * Use dh, with compat level 9 and dh-autoreconf. + + -- Julien Cristau Sun, 26 Jul 2015 19:34:09 +0200 + +libfs (2:1.0.6-1) unstable; urgency=medium + + * New upstream release. + * Remove Cyril from Uploaders. + * Use dh_prep instead of dh_clean -k. + + -- Julien Cristau Sun, 13 Jul 2014 01:11:38 +0200 + +libfs (2:1.0.5-1) unstable; urgency=low + + * New upstream release. + * Bump debhelper compat level to 7. + * Use dpkg-buildflags. + * Disable silent rules. + + -- Julien Cristau Sun, 16 Jun 2013 14:16:20 +0200 + +libfs (2:1.0.4-1+deb7u1) wheezy-security; urgency=high + + * Sign extension issue and integer overflow in FSOpenServer() + [CVE-2013-1996] + + -- Julien Cristau Mon, 13 May 2013 23:32:48 +0200 + +libfs (2:1.0.4-1) unstable; urgency=low + + * New upstream release. + * Delete debian/xsfbs/, it's no longer used in this package. + * Don't require fakeroot for debian/rules clean. + * Remove David Nusinow and Brice Goglin from Uploaders. + * Run autoreconf at build time. + * Add build-arch and build-indep debian/rules targets. + * Build for multiarch. + * Install FSlib.txt in libfs-dev. + * Bump Standards-Version to 3.9.3. + + -- Julien Cristau Sun, 25 Mar 2012 17:43:10 +0200 + +libfs (2:1.0.3-1) unstable; urgency=low + + [ Timo Aaltonen ] + * Drop pre-dependency on x11-common from libfs-dev. This was needed + for upgrades from sarge. + + [ Julien Cristau ] + * Remove myself from Uploaders. + * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no + good reason. Thanks, Colin Watson! + + [ Cyril Brulebois ] + * New upstream release. + * Wrap build-deps. + * Switch from --list-missing to --fail-missing for additional safety. + * Exclude libFS.la from dh_install accordingly. + * Add myself to Uploaders. + + -- Cyril Brulebois Fri, 19 Nov 2010 01:00:28 +0100 + +libfs (2:1.0.2-1) unstable; urgency=low + + * New upstream release. + * Add a link to www.X.org and a reference to the upstream module + in the long description. + * Add README.source, bump Standards-Version to 3.8.2. + * Move the -dbg package to section debug. + * Add myself to Uploaders. + + -- Brice Goglin Mon, 27 Jul 2009 17:21:16 +0200 + +libfs (2:1.0.1-1) unstable; urgency=low + + * New upstream release. + * Install the upstream ChangeLog. + * Add upstream URL and missing copyright holders and licenses to + debian/copyright, based on upstream's new COPYING file. + + -- Julien Cristau Sun, 25 May 2008 00:57:27 +0200 + +libfs (2:1.0.0-5) unstable; urgency=low + + * Remove outdated cvs information from the package descriptions, and add + Vcs-* headers. + * Remove Branden and Fabio from Uploaders with their permission. + * Add myself to Uploaders. + * Bump Standards-Version to 3.7.3. + * Don't build-depend on packages with a -1 debian revision. + * libfs6 and libfs6-dbg don't need to depend on x11-common. + * Use ${binary:Version} instead of the deprecated ${Source-Version}. + * Add Section control fields for binary packages. + * autoreconf with current autotools to get updated config.{guess,sub}. + + -- Julien Cristau Sun, 11 May 2008 14:48:43 +0200 + +libfs (2:1.0.0-4) 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. + + [ Drew Parsons ] + * dbg package has priority extra. + + [ David Nusinow ] + * Version pre-depends on x11-common to bring things in line with policy + * Policy bump to 3.7.2.0 + * Debhelper compat bump to 5 + + -- David Nusinow Tue, 29 Aug 2006 23:24:19 +0000 + +libfs (2: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:55 -0400 + +libfs (2:1.0.0-2) unstable; urgency=low + + * Upload to unstable + + -- David Nusinow Thu, 23 Mar 2006 22:44:23 -0500 + +libfs (2:1.0.0-1) experimental; urgency=low + + * First upload to Debian + + -- David Nusinow Thu, 29 Dec 2005 20:46:32 -0500 + +libfs (1:3.0.0-2) breezy; urgency=low + + * Bump Build-Depends on x11proto-core-dev to avoid the _XOPEN_SOURCE + cooties. + + -- Daniel Stone Sat, 23 Jul 2005 00:15:32 +1000 + +libfs (1:3.0.0-1) breezy; urgency=low + + * First libfs release. + + -- Daniel Stone Mon, 16 May 2005 22:10:17 +1000 --- libfs-1.0.8.orig/debian/control +++ libfs-1.0.8/debian/control @@ -0,0 +1,57 @@ +Source: libfs +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force +Build-Depends: + pkg-config, + x11proto-dev, + xtrans-dev, + xutils-dev, +# misc:Pre-Depends + debhelper-compat (= 12), +Standards-Version: 4.5.0 +Vcs-Git: https://salsa.debian.org/xorg-team/lib/libfs.git +Vcs-Browser: https://salsa.debian.org/xorg-team/lib/libfs + +Package: libfs6 +Section: libs +Architecture: any +Multi-Arch: same +Pre-Depends: + ${misc:Pre-Depends}, +Depends: + ${shlibs:Depends}, + ${misc:Depends}, +Description: X11 Font Services library + libFS, the Font Services library, provides various functions useful to + X11 font servers, and clients connecting to font servers. It is not used + outside of these implementations. + . + More information about X.Org can be found at: + + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libFS + +Package: libfs-dev +Section: libdevel +Architecture: any +Multi-Arch: same +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + libfs6 (= ${binary:Version}), + x11proto-dev, +Description: X11 Font Services library (development headers) + libFS, the Font Services library, provides various functions useful to + X11 font servers, and clients connecting to font servers. It is not + used outside of these implementations. + . + This package contains the development headers for the library found in + libfs6. 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/libFS --- libfs-1.0.8.orig/debian/copyright +++ libfs-1.0.8/debian/copyright @@ -0,0 +1,88 @@ +This package was downloaded from +http://xorg.freedesktop.org/releases/individual/lib/ + +Copyright 1990 Network Computing Devices; +Portions Copyright 1987 by Digital Equipment Corporation + +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 names of Network Computing +Devices or Digital not be used in advertising or publicity pertaining +to distribution of the software without specific, written prior +permission. Network Computing Devices or Digital make no representations +about the suitability of this software for any purpose. It is provided +"as is" without express or implied warranty. + +NETWORK COMPUTING DEVICES AND DIGITAL DISCLAIM ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES +OR DIGITAL 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 1987, 1994, 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. + +Copyright 2005 Red Hat, Inc + +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 Red Hat not be used in +advertising or publicity pertaining to distribution of the software without +specific, written prior permission. Red Hat makes no +representations about the suitability of this software for any purpose. It +is provided "as is" without express or implied warranty. + +RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO +EVENT SHALL RED HAT 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 2001,2003 Keith Packard +Copyright 2003 Keith Packard, Noah Levitt + +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. --- libfs-1.0.8.orig/debian/libfs-dev.install +++ libfs-1.0.8/debian/libfs-dev.install @@ -0,0 +1,5 @@ +usr/include/X11/* +usr/lib/*/libFS.a +usr/lib/*/libFS.so +usr/lib/*/pkgconfig/libfs.pc +usr/share/doc/libFS/FSlib.txt usr/share/doc/libfs-dev --- libfs-1.0.8.orig/debian/libfs6.install +++ libfs-1.0.8/debian/libfs6.install @@ -0,0 +1 @@ +usr/lib/*/libFS.so.6* --- libfs-1.0.8.orig/debian/rules +++ libfs-1.0.8/debian/rules @@ -0,0 +1,21 @@ +#!/usr/bin/make -f + +# set this to the name of the main shlib's binary package +PACKAGE = libfs6 + +%: + dh $@ + +override_dh_auto_configure: + dh_auto_configure -- \ + --disable-silent-rules + +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install + +override_dh_missing: + dh_missing --fail-missing + +override_dh_strip: + dh_strip --dbgsym-migration='libfs6-dbg (<< 1.0.7-2~)' --- libfs-1.0.8.orig/debian/upstream/signing-key.asc +++ libfs-1.0.8/debian/upstream/signing-key.asc @@ -0,0 +1,60 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +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 +ZXJzbWl0aCA8YWxhbmNAZnJlZWRlc2t0b3Aub3JnPohoBBMRAgAoAhsDBgsJCAcD +AgYVCAIJCgsEFgIDAQIeAQIXgAUCUXnRYgUJFEPYeAAKCRCi+54IHy0TDonxAKCP +cAgXNojuujUg5Wqi6v0RBFVSUgCggq1SsVEdq9NDWvXvkeGyNaBivSK0K0FsYW4g +Q29vcGVyc21pdGggPGFsYW4uY29vcGVyc21pdGhAc3VuLmNvbT6IZgQTEQIAJgIb +AwYLCQgHAwIEFQIIAwQWAgMBAh4BAheABQJRedFiBQkUQ9h4AAoJEKL7nggfLRMO +6sUAn0jl3h9rY4OJ13Lu7nsKclyhDpOqAKCFgTmaDGRuDRxloLg9jftrn7a7vrQu +QWxhbiBDb29wZXJzbWl0aCA8YWxhbi5jb29wZXJzbWl0aEBvcmFjbGUuY29tPohr +BBMRAgArAhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAIZAQUCUXnRYgUJFEPY +eAAKCRCi+54IHy0TDtBZAJ9IgVVNoFIPRjTsNjcSFaLznuDRJgCcC/WgV312IrxS +Q8PRAyEgozSB9Ke5Ag0ERpv6bxAIAJp5aUlho5rUhpS6ik7spsAQFPRuycPKMNu0 +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 +=tc6G +-----END PGP PUBLIC KEY BLOCK----- --- libfs-1.0.8.orig/debian/watch +++ libfs-1.0.8/debian/watch @@ -0,0 +1,4 @@ +#git=https://gitlab.freedesktop.org/xorg/lib/libFS +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +https://xorg.freedesktop.org/releases/individual/lib/ libFS-(.*)\.tar\.gz