--- libfontenc-1.1.8.orig/.gitlab-ci.yml +++ libfontenc-1.1.8/.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/libfontenc' + # 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-05-08.0' + FDO_DISTRIBUTION_PACKAGES: 'git gcc pkgconf autoconf automake libtool make xorg-util-macros xorg-font-util zlib xorgproto' + + +# +# 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/libfontenc + 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 --enable-unit-tests + - make + - make check + - make distcheck + - popd > /dev/null --- libfontenc-1.1.8.orig/ChangeLog +++ libfontenc-1.1.8/ChangeLog @@ -1,250 +1,3 @@ -commit 92a85fda2acb4e14ec0b2f6d8fe3eaf2b687218c -Author: Alan Coopersmith -Date: Sat Mar 2 10:25:05 2024 -0800 - - libfontenc 1.1.8 - - Signed-off-by: Alan Coopersmith - -commit 2408433404732b146bf41a2451d23ffadad5a816 -Author: Alan Coopersmith -Date: Tue Mar 28 11:55:59 2023 -0700 - - Set close-on-exec when opening files - - Signed-off-by: Alan Coopersmith - -commit 0aa003e3d897d2d5bdaac1af404d3e23c76268ec -Author: Alan Coopersmith -Date: Sat Mar 4 10:44:45 2023 -0800 - - configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL - - AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008, - so it's time to rely on it. - - Clears autoconf warnings: - - configure.ac:38: warning: The macro `AC_PROG_LIBTOOL' is obsolete. - configure.ac:38: You should run autoupdate. - aclocal.m4:3863: AC_PROG_LIBTOOL is expanded from... - configure.ac:38: the top level - - libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac, - libtoolize: and rerunning libtoolize and aclocal. - - Signed-off-by: Alan Coopersmith - -commit 3440aed9d2bd38f72e8e62ffac400cf613fcb908 -Author: Alan Coopersmith -Date: Sat Feb 25 09:17:19 2023 -0800 - - Remove "All rights reserved" from Oracle copyright notices - - Oracle no longer includes this term in our copyright & license notices. - - Signed-off-by: Alan Coopersmith - -commit d7a986586469dd5d69869ee151c5fa7501c2767c -Author: Alan Coopersmith -Date: Mon Feb 6 13:13:21 2023 -0800 - - configure: raise minimum autoconf requirement to 2.70 - - Needed for builds on NetBSD to work correctly, since it depends on - AC_USE_SYSTEM_EXTENSIONS defining _OPENBSD_SOURCE to expose the - prototype for reallocarray() in the system headers. - - Signed-off-by: Alan Coopersmith - -commit 68300c3452592a9e7bf60b4edb008785c4c891c4 -Author: Matt Turner -Date: Thu Dec 8 10:37:07 2022 -0500 - - libfontenc 1.1.7 - - Signed-off-by: Matt Turner - -commit ec2ef12a0daf7bea60e9616ea8bc4bd61f3cf36f -Author: Matt Turner -Date: Tue Nov 29 12:05:32 2022 -0500 - - configure: Use AC_SYS_LARGEFILE to enable large file support - - Signed-off-by: Matt Turner - -commit c8f8ce35a5eafe8ca0d1ed3dfdd098fe0943b99c -Author: Alan Coopersmith -Date: Tue Aug 30 16:51:28 2022 -0700 - - libfontenc 1.1.6 - - Signed-off-by: Alan Coopersmith - -commit f7f8c9af5773c3c73a635308054872b49c5bbe94 -Author: Alan Coopersmith -Date: Tue Aug 30 08:21:01 2022 -0700 - - include config.h before system headers - - Makes sure any defines needed to expose functions like reallocarray() - are present on platforms that need them (_GNU_SOURCE, _OPENBSD_SOURCE, - __EXTENSIONS__, etc.) - - Signed-off-by: Alan Coopersmith - -commit 26ae989526a2c931d15a4c4ae2e84ab627bc0009 -Author: Alan Coopersmith -Date: Fri Aug 26 14:59:03 2022 -0700 - - libfontenc 1.1.5 - - Signed-off-by: Alan Coopersmith - -commit be77631bbc5fee12c9028f9ffd577dc1066231b7 -Author: Alan Coopersmith -Date: Sun Jul 17 13:00:37 2022 -0700 - - configure: Use AC_USE_SYSTEM_EXTENSIONS to set GNU_SOURCE & other defines - - Ensures reallocarray is visible in system headers if available. - (See libxext#4.) - - Signed-off-by: Alan Coopersmith - -commit 1aeb6a2d1673c1ae23763f55f09fb18d8e188fe0 -Author: Alan Coopersmith -Date: Sun May 8 11:24:31 2022 -0700 - - Convert code to use Xmallocarray() & Xreallocarray() - - Provides automatic integer overflow checking in allocation size calculations - - Signed-off-by: Alan Coopersmith - -commit 3ff95c472abe8eb8fe1ccda5cd40d99407f1f9a4 -Author: Alan Coopersmith -Date: Sun May 8 11:14:11 2022 -0700 - - Import reallocarray() from libX11 (originally from OpenBSD) - - Wrapper for realloc() that checks for overflow when multiplying - arguments together, so we don't have to add overflow checks to - every single call. For documentation on usage, see: - http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/calloc.3 - - Signed-off-by: Alan Coopersmith - -commit a6a3bd1365798783f3fa5552d4ab061d5636d15a -Author: Alan Coopersmith -Date: Sun May 8 10:18:42 2022 -0700 - - gitlab CI: add a basic build test - - Signed-off-by: Alan Coopersmith - -commit 256ff55667e70b4cdb91d0dc10636ec6c1b9d598 -Author: Alan Coopersmith -Date: Sun May 8 10:15:47 2022 -0700 - - Fix spelling/wording issues - - Found by using: - codespell --builtin clear,rare,usage,informal,code,names - - Signed-off-by: Alan Coopersmith - -commit 91b7c7d02ddb2ddce39648270f5cb91fac7d978e -Author: Alan Coopersmith -Date: Sun May 8 10:14:39 2022 -0700 - - Build xz tarballs instead of bzip2 - - Signed-off-by: Alan Coopersmith - -commit 2baea13978759d1a011fc6d739465893b554d30a -Author: Alan Coopersmith -Date: Tue Feb 19 17:31:57 2019 -0800 - - libfontenc 1.1.4 - - Signed-off-by: Alan Coopersmith - -commit d7f661849c18c354f1692d9859e057aa3a7ddf93 -Author: Alan Coopersmith -Date: Fri Dec 7 19:29:22 2018 -0800 - - Update configure.ac bug URL for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit b12b2d71f1547e832ac14b66a0d94d88b3675b25 -Author: Alan Coopersmith -Date: Mon Nov 19 23:01:09 2018 -0800 - - Update README for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit b28c2d111e9d02ea1a42ac27a1330b0ba1efb4a6 -Author: Alan Coopersmith -Date: Sun Nov 11 13:58:34 2018 -0800 - - Fix iso8859-7 mappings for 0xA1, 0xA2, & 0xFF - - Fixes: https://gitlab.freedesktop.org/xorg/lib/libfontenc/issues/1 - - Signed-off-by: Alan Coopersmith - -commit 8d30ca25b54934e29206da64e80c044d05b14470 -Author: Mihail Konev -Date: Thu Jan 26 13:52:49 2017 +1000 - - autogen: add default patch prefix - - Signed-off-by: Mihail Konev - -commit cc7e0f5529ab5c25aa2adc31a629a5e43cf1f319 -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 38aac013fcfd6e54a9fd9847ed798a5a20bd7139 -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 8bbc9af3ef1160f16f176be07c917f9cccf229b2 -Author: Julien Cristau -Date: Sun Jul 26 18:32:23 2015 +0200 - - make FontEncDirectory return a const string - - Its comment already said "This string is static and should not be - modified". - - encparse.c: In function 'FontEncDirectory': - encparse.c:844:17: warning: assignment discards 'const' qualifier from pointer target type - dir = FONT_ENCODINGS_DIRECTORY; - ^ - - Signed-off-by: Julien Cristau - Reviewed-by: Alan Coopersmith - commit 42f3a39c3085afd9ef904ae39102fd49bbc2e4a5 Author: Alan Coopersmith Date: Thu Apr 30 21:39:51 2015 -0700 --- libfontenc-1.1.8.orig/autogen.sh +++ libfontenc-1.1.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 libfontenc" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- libfontenc-1.1.8.orig/debian/README.source +++ libfontenc-1.1.8/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 +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. --- libfontenc-1.1.8.orig/debian/changelog +++ libfontenc-1.1.8/debian/changelog @@ -0,0 +1,206 @@ +libfontenc (1:1.1.8-1) unstable; urgency=medium + + [ Debian Janitor ] + * Use secure URI in debian/watch. + * 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.1, no changes needed. + + [ Timo Aaltonen ] + * New upstream release. + * control: Migrate to pkgconf. + + -- Timo Aaltonen Tue, 12 Mar 2024 11:20:33 +0200 + +libfontenc (1:1.1.4-1) unstable; urgency=medium + + * New upstream release. + * control: Migrate to x11proto-dev. + * Switch to -dbgsym package. + * Bump debhelper to 12. + * Update README.source. + * control: Bump policy to 4.5.0. + * Update upstream and VCS urls. + + -- Timo Aaltonen Thu, 24 Sep 2020 11:50:28 +0300 + +libfontenc (1:1.1.3-1) unstable; urgency=medium + + * Remove Cyril from Uploaders. + * New upstream release. + * Let uscan verify upstream tarball signatures. + * Use dh, with compat level 9 and dh-autoreconf. + + -- Julien Cristau Sun, 26 Jul 2015 18:58:34 +0200 + +libfontenc (1:1.1.2-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 13:22:05 +0200 + +libfontenc (1:1.1.1-1) unstable; urgency=low + + * New upstream release. + * Remove David Nusinow from Uploaders. + * Delete debian/xsfbs/, it's no longer used in this package. + * Add build-{arch,indep} debian/rules targets. + * Build for multiarch. + * Don't require fakeroot for debian/rules clean. + * Bump Standards-Version to 3.9.3. + + -- Julien Cristau Sun, 25 Mar 2012 16:48:07 +0200 + +libfontenc (1:1.1.0-1) unstable; urgency=low + + * New upstream release. + * Bump xutils-dev build-dep for new macros. + * Add xfonts-utils build-dep for font-util macros. + * Switch from --list-missing to --fail-missing for additional safety. + * Exclude libfontenc.la from dh_install accordingly. + + -- Cyril Brulebois Fri, 19 Nov 2010 15:27:29 +0100 + +libfontenc (1:1.0.5-2) unstable; urgency=low + + [ Timo Aaltonen ] + * Drop pre-dependency on x11-common from libfontenc-dev. This was needed + for upgrades from sarge. + + [ 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: libfontenc1-udeb. + * Add myself to Uploaders. + * Bump Standards-Version from 3.7.3 to 3.8.4 (no changes needed). + + -- Cyril Brulebois Tue, 09 Mar 2010 01:40:29 +0100 + +libfontenc (1:1.0.5-1) unstable; 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. + * Bump Standards-Version to 3.8.3. + * Parse space-separated DEB_BUILD_OPTIONS, and handle parallel=N. + * Run autoreconf on build. Add build-deps on automake/libtool and + xutils-dev. + + [ Julien Cristau ] + * Move -dbg package to the debug section. + + -- Julien Cristau Mon, 23 Nov 2009 17:25:06 +0100 + +libfontenc (1:1.0.4-3) unstable; urgency=low + + * Remove Branden and Fabio from Uploaders with their permission. + * Add myself to Uploaders. + * Bump Standards-Version to 3.7.3. + * Drop the -1 debian revision from the x11proto-core-dev build-dep. + * Add Vcs-Git and Vcs-Browser control fields. + * libfontenc1{,-dbg} don't need to depend on x11-common. + * Use ${binary:Version} instead of the deprecated ${Source-Version}. + * Add proper Section control fields for binary packages. + + -- Julien Cristau Mon, 12 May 2008 16:24:58 +0200 + +libfontenc (1:1.0.4-2) unstable; urgency=low + + * Uploading to unstable. + + -- Julien Cristau Tue, 10 Apr 2007 18:03:12 +0200 + +libfontenc (1:1.0.4-1) experimental; urgency=low + + * New upstream release. + * Drop obsolete CVS information from the package descriptions, and add + XS-Vcs-Git. + * Install the upstream changelog. + + -- Julien Cristau Fri, 9 Feb 2007 16:08:19 +0100 + +libfontenc (1:1.0.2-2) unstable; urgency=low + + [ 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 20:32:53 +0000 + +libfontenc (1:1.0.2-1) experimental; urgency=low + + * New upstream release + * Bump debhelper compat to 5 + * Remove extra dep on x11-common from -dev package + * Version x11-common pre-dep in -dev package to be 1:7.0.0 to match the rest + of Debian and shut lintian up + * Bump standards version to 3.7.2.0 + + -- David Nusinow Mon, 3 Jul 2006 16:32:31 -0400 + +libfontenc (1:1.0.1-6) unstable; urgency=low + + [ David Martínez Moreno ] + * Fix the encoding path to ${datadir}/fonts/X11/encodings in order to + generate other encodings (the former one did not exist at all). Thanks + Liu Mars. Closes: #366097. + + [ David Nusinow ] + * Run dh_install with --list-missing + + -- David Nusinow Tue, 9 May 2006 01:07:49 -0400 + +libfontenc (1:1.0.1-5) 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:50:03 -0400 + +libfontenc (1:1.0.1-4) unstable; urgency=low + + * Change --with-encodingsdir to \$${datadir}/fonts/X11/fonts/encodings. + Thanks to Denis Barbier and Xin Liu. + + -- David Nusinow Sat, 15 Apr 2006 18:50:21 -0400 + +libfontenc (1:1.0.1-3) unstable; urgency=low + + * Build with --with-encodingsdir=${datadir}/X11/fonts/encodings to account + for where we install the encodings. Thanks Xin Liu. Thanks Daniel Stone + for the fix. (closes: #362722) + + -- David Nusinow Sat, 15 Apr 2006 12:17:27 -0400 + +libfontenc (1:1.0.1-2) unstable; urgency=low + + * Upload to unstable + + -- David Nusinow Thu, 23 Mar 2006 22:44:22 -0500 + +libfontenc (1:1.0.1-1) experimental; urgency=low + + * First upload to Debian + + -- David Nusinow Thu, 29 Dec 2005 20:50:51 -0500 + +libfontenc (1.0.0-1) breezy; urgency=low + + * First libfontenc release. + + -- Daniel Stone Mon, 16 May 2005 22:10:17 +1000 --- libfontenc-1.1.8.orig/debian/control +++ libfontenc-1.1.8/debian/control @@ -0,0 +1,65 @@ +Source: libfontenc +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force +Build-Depends: + x11proto-dev, + zlib1g-dev, + pkgconf, + xutils-dev (>= 1:7.5~1), + xfonts-utils (>= 1:7.5+1), + debhelper-compat (= 13), +Standards-Version: 4.6.1 +Vcs-Git: https://salsa.debian.org/xorg-team/lib/libfontenc.git +Vcs-Browser: https://salsa.debian.org/xorg-team/lib/libfontenc + +Package: libfontenc1 +Section: libs +Architecture: any +Multi-Arch: same +Pre-Depends: + ${misc:Pre-Depends}, +Depends: + ${shlibs:Depends}, + ${misc:Depends}, +Description: X11 font encoding library + libfontenc is a library which helps font libraries portably determine + and deal with different encodings of fonts. + . + More information about X.Org can be found at: + + . + This module can be found at + git://anongit.freedesktop.org/git/xorg/lib/libfontenc + +Package: libfontenc1-udeb +Package-Type: udeb +Section: debian-installer +Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, +Description: X11 font encoding library + This is a udeb, or a microdeb, for the debian-installer. + +Package: libfontenc-dev +Section: libdevel +Architecture: any +Multi-Arch: same +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + libfontenc1 (= ${binary:Version}), + zlib1g-dev, +Description: X11 font encoding library (development headers) + libfontenc is a library which helps font libraries portably determine + and deal with different encodings of fonts. + . + This package contains the development headers for the library found in + libfontenc1. 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/libfontenc --- libfontenc-1.1.8.orig/debian/copyright +++ libfontenc-1.1.8/debian/copyright @@ -0,0 +1,22 @@ +This package was downloaded from +http://xorg.freedesktop.org/releases/individual/lib/ + +Copyright (c) 1998-2001 by Juliusz Chroboczek + +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. --- libfontenc-1.1.8.orig/debian/libfontenc-dev.install +++ libfontenc-1.1.8/debian/libfontenc-dev.install @@ -0,0 +1,4 @@ +usr/include/X11/* +usr/lib/*/libfontenc.a +usr/lib/*/libfontenc.so +usr/lib/*/pkgconfig/fontenc.pc --- libfontenc-1.1.8.orig/debian/libfontenc1-udeb.install +++ libfontenc-1.1.8/debian/libfontenc1-udeb.install @@ -0,0 +1 @@ +usr/lib/*/libfontenc.so.1* usr/lib --- libfontenc-1.1.8.orig/debian/libfontenc1.install +++ libfontenc-1.1.8/debian/libfontenc1.install @@ -0,0 +1 @@ +usr/lib/*/libfontenc.so.1* --- libfontenc-1.1.8.orig/debian/rules +++ libfontenc-1.1.8/debian/rules @@ -0,0 +1,30 @@ +#!/usr/bin/make -f +# debian/rules for the Debian libfontenc 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 = libfontenc1 + +%: + dh $@ -Bbuild + +override_dh_auto_configure: + dh_auto_configure -- \ + --with-encodingsdir=\$${datadir}/fonts/X11/encodings \ + --disable-silent-rules + +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install --sourcedir=debian/tmp + +override_dh_strip: + dh_strip -p$(PACKAGE) --dbgsym-migration='libfontenc1-dbg (<< 1:1.1.4-1)' + dh_strip -N$(PACKAGE) + +override_dh_makeshlibs: + dh_makeshlibs --add-udeb=$(PACKAGE)-udeb --- libfontenc-1.1.8.orig/debian/upstream/signing-key.asc +++ libfontenc-1.1.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----- --- libfontenc-1.1.8.orig/debian/watch +++ libfontenc-1.1.8/debian/watch @@ -0,0 +1,4 @@ +#git=https://gitlab.freedesktop.org/xorg/lib/libfontenc +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +https://xorg.freedesktop.org/releases/individual/lib/ libfontenc-(.*)\.tar\.gz