--- xserver-xorg-input-joystick-1.6.4.orig/.gitlab-ci.yml +++ xserver-xorg-input-joystick-1.6.4/.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/driver/xf86-input-joystick' + # 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-01-16.0' + FDO_DISTRIBUTION_PACKAGES: 'git gcc pkgconf autoconf automake make xorg-util-macros xorgproto xorg-server-devel pixman' + + +# +# 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/driver/xf86-input-joystick + 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 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 --- xserver-xorg-input-joystick-1.6.4.orig/ChangeLog +++ xserver-xorg-input-joystick-1.6.4/ChangeLog @@ -1,130 +1,3 @@ -commit 8326644a0dd5e0457e404691b5f2143ae612901b -Author: Alan Coopersmith -Date: Thu Dec 8 16:03:10 2022 -0800 - - xf86-input-joystick 1.6.4 - - Signed-off-by: Alan Coopersmith - -commit 9bb1dbbaef71b28b82061d467a5f2234baab0bac -Author: Alan Coopersmith -Date: Thu Jul 28 17:30:21 2022 -0700 - - gitlab CI: stop requiring Signed-off-by in commits - - Signed-off-by: Alan Coopersmith - -commit 0e37171b20da87c663bc41b2304ee15b00ff785d -Author: Alan Coopersmith -Date: Sun Jan 16 11:23:24 2022 -0800 - - gitlab CI: add a basic build test - - Signed-off-by: Alan Coopersmith - -commit 758adebe135beb5a5a7324d41be00dafb09e7254 -Author: Alan Coopersmith -Date: Sun Jan 16 11:01:54 2022 -0800 - - Fix spelling/wording issues - - Found by using: - codespell --builtin clear,rare,usage,informal,code,names - - Signed-off-by: Alan Coopersmith - -commit aca8dee2b359d7bd03b5bf52c1a870aefbb37bf1 -Author: Alan Coopersmith -Date: Sun Jan 16 10:58:36 2022 -0800 - - Build xz tarballs instead of bzip2 - - Signed-off-by: Alan Coopersmith - -commit 2d7f96e5ac9b56ffeecfd6a38ad13f691eea96e8 -Author: Alan Coopersmith -Date: Sun Nov 25 12:46:18 2018 -0800 - - Update configure.ac bug URL for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit 64d03c11a7720a07cac5cf4d5f8ba70b59a2148b -Author: Alan Coopersmith -Date: Sun Nov 18 11:32:37 2018 -0800 - - Update README for gitlab migration - - Signed-off-by: Alan Coopersmith - -commit 463fd02a4e11f0a256755795b4e5a2b195ee10dd -Author: Alan Coopersmith -Date: Thu Aug 16 22:58:22 2018 -0700 - - Fix quoting in man page synopsis section - - Fixes: https://gitlab.freedesktop.org/xorg/driver/xf86-input-joystick/issues/1 - - Signed-off-by: Alan Coopersmith - -commit f45c3d0f3514abedbd532148678f7edbecabc2e3 -Author: Manuel Bouyer -Date: Wed Dec 27 15:18:49 2017 +0100 - - Adapt to USB HID header changes on NetBSD-8.99.9. - - Signed-off-by: Thomas Klausner - -commit e28608c8fbd060b0bfb4dae2a396a03a781140b0 -Author: Mihail Konev -Date: Thu Jan 26 14:00:21 2017 +1000 - - autogen: add default patch prefix - - Signed-off-by: Mihail Konev - -commit 6920963c8f38db745147be5d55cfbb79196e046c -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 73a8c2908225163d94e1acb439cdb05ff4880fd8 -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 99a2b4957ae7fd2c0cd93bf37bc420cffca6e1b4 -Author: Colin Walters -Date: Wed Jan 4 17:37:06 2012 -0500 - - autogen.sh: Implement GNOME Build API - - http://people.gnome.org/~walters/docs/build-api.txt - - Signed-off-by: Adam Jackson - -commit 2a35c37bb21bcca69304dce2811e787b87157ea2 -Author: Peter Hutterer -Date: Thu Jan 26 11:18:06 2017 +1000 - - configure: Drop AM_MAINTAINER_MODE - - Signed-off-by: Peter Hutterer - commit de424865ece983d8da62b7f7e3d013eabac0b8b5 Author: Peter Hutterer Date: Fri Nov 18 08:58:35 2016 +1000 @@ -897,7 +770,7 @@ Merge branch 'scancodes' Conflicts: - configure.ac + configure.ac commit 1fa414dd6f32d68378bc9d571c439a603c2e7888 Author: Sascha Hlusiak @@ -1324,8 +1197,8 @@ Merge branch 'input-properties' Conflicts: - src/jstk.h - src/jstk_key.c + src/jstk.h + src/jstk_key.c commit a1b87df15dd2ad2a5593fed198b32053be5825cc Author: Sascha Hlusiak @@ -2382,7 +2255,7 @@ Update autogen.sh to one that does objdir != srcdir. commit ff835930aee87f0cc3db60d5e03b0adf6b18d05f -Author: Søren Sandmann Pedersen +Author: Søren Sandmann Pedersen Date: Wed Aug 10 14:07:23 2005 +0000 Don\'t lose existing CFLAGS in all the input drivers and some of the video --- xserver-xorg-input-joystick-1.6.4.orig/autogen.sh +++ xserver-xorg-input-joystick-1.6.4/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 xf86-input-joystick" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- xserver-xorg-input-joystick-1.6.4.orig/debian/README.source +++ xserver-xorg-input-joystick-1.6.4/debian/README.source @@ -0,0 +1,49 @@ +------------------------------------------------------ +Quick Guide To Patching This Package For The Impatient +------------------------------------------------------ + +1. Make sure you have quilt installed +2. Unpack the package as usual with "dpkg-source -x" +3. Run the "patch" target in debian/rules +4. Create a new patch with "quilt new" (see quilt(1)) +5. Edit all the files you want to include in the patch with "quilt edit" + (see quilt(1)). +6. Write the patch with "quilt refresh" (see quilt(1)) +7. Run the "clean" target in debian/rules + +Alternatively, instead of using quilt directly, you can drop the patch in to +debian/patches and add the name of the patch to debian/patches/series. + +------------------------------------ +Guide To The X Strike Force Packages +------------------------------------ + +The X Strike Force team maintains X packages in git repositories on +git.debian.org in the pkg-xorg subdirectory. Most upstream packages +are actually maintained in git repositories as well, so they often +just need to be pulled into 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 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. --- xserver-xorg-input-joystick-1.6.4.orig/debian/changelog +++ xserver-xorg-input-joystick-1.6.4/debian/changelog @@ -0,0 +1,341 @@ +xserver-xorg-input-joystick (1:1.6.4-1) unstable; urgency=medium + + [ Andreas Boll ] + * Let uscan verify tarball signatures. + + [ Timo Aaltonen ] + * New upstream release. + * control: Clarify the description. + * control: Migrate to x11proto-dev. + * control: Migrate to debhelper-compat 13. + * control: Bump policy to 4.6.2. + * control, README: Update vcs urls. + * rules: Drop xsf. + * upstream: Update signing-keys. + + [ Debian Janitor ] + * Remove constraints unnecessary since buster: + + Build-Depends: Drop versioned constraint on xserver-xorg-dev. + + -- Timo Aaltonen Tue, 14 Nov 2023 18:50:17 +0200 + +xserver-xorg-input-joystick (1:1.6.3-1) unstable; urgency=medium + + * New upstream release. + - support-new-api.diff: dropped, upstream + + -- Timo Aaltonen Fri, 18 Nov 2016 12:46:49 +0200 + +xserver-xorg-input-joystick (1:1.6.2-2) unstable; urgency=medium + + * support-new-api.diff: Fix build with xserver 1.19. + * Use https URLs in Vcs-* control fields. + * Use https URL in watch file. + * Bump Standards-Version to 3.9.8. + * control: Remove Drew and Cyril from uploaders. + + -- Timo Aaltonen Thu, 17 Nov 2016 16:34:47 +0200 + +xserver-xorg-input-joystick (1:1.6.2-1) unstable; urgency=low + + [ Michele Cane ] + * New upstream release. + * Update dependencies. + * Bump Standards-Version to 3.9.4, no changes needed. + + [ Julien Cristau ] + * Disable silent build rules. + + -- Julien Cristau Thu, 05 Sep 2013 20:13:35 +0200 + +xserver-xorg-input-joystick (1:1.6.1-1) unstable; urgency=low + + * New upstream release. + + -- Cyril Brulebois Tue, 20 Mar 2012 21:51:40 +0100 + +xserver-xorg-input-joystick (1:1.6.0-2) unstable; urgency=high + + [ Julien Cristau ] + * Use kfreebsd-any wildcard for libusbhid build-dep (closes: #634707). + + [ Cyril Brulebois ] + * Add patch to deal with the uncoordinated freebsd-libs transition, + thanks to Steven Chamberlain (Closes: #660395): + - 0001-Fix-includes-for-kfreebsd.diff + * Set urgency to “high” for the RC bug fix. + + -- Cyril Brulebois Sun, 19 Feb 2012 16:04:42 +0000 + +xserver-xorg-input-joystick (1:1.6.0-1) unstable; urgency=low + + [ Julien Cristau ] + * New upstream release: + - Compatible with xorg-server 1.10 (Closes: #624973, #628410). + + [ Cyril Brulebois ] + * Bump Standards-Version to 3.9.2 (no changes). + + -- Cyril Brulebois Thu, 30 Jun 2011 01:15:32 +0200 + +xserver-xorg-input-joystick (1:1.5.0-7) unstable; urgency=low + + * Switch to dh: + - Use debhelper 8. + - Use dh-autoreconf. + - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf + debhelper sequence. + - Specify usr/share/man in .install, remove .manpages accordingly. + * Remove xsfbs accordingly. + * Remove long obsolete Replaces. + * Update Uploaders list. Thanks, David & Brice! + * Wrap Depends/Provides. + * Bump Standards-Version to 3.9.1 (no changes needed). + + -- Cyril Brulebois Sat, 05 Feb 2011 14:38:39 +0100 + +xserver-xorg-input-joystick (1:1.5.0-6) experimental; urgency=low + + * Merge xsfbs to get unversioned Provides. + + -- Cyril Brulebois Sat, 16 Oct 2010 13:38:52 +0200 + +xserver-xorg-input-joystick (1:1.5.0-5) experimental; urgency=low + + * Build against Xserver 1.9.1 rc1. + + -- Cyril Brulebois Wed, 13 Oct 2010 01:30:57 +0200 + +xserver-xorg-input-joystick (1:1.5.0-4) unstable; urgency=low + + [ Julien Cristau ] + * Bump xserver-xorg-dev build-dep, move 10-joystick.conf to + 50-joystick.conf, and install it in /usr/share/X11/xorg.conf.d. + * Use new xsfbs and ${xinpdriver:Depends} variable. + + [ Cyril Brulebois ] + * Add myself to Uploaders. + * Bump Standards-Version from 3.8.3 to 3.8.4 (no changes needed). + + -- Cyril Brulebois Sat, 17 Apr 2010 21:55:28 +0200 + +xserver-xorg-input-joystick (1:1.5.0-3) unstable; urgency=low + + * Install 10-joystick.conf. (LP: #546933) + * Don't install the udev rule anymore, nor depend on udev. + + -- Timo Aaltonen Tue, 30 Mar 2010 21:48:57 +0300 + +xserver-xorg-input-joystick (1:1.5.0-2) unstable; urgency=low + + [ Timo Aaltonen ] + * Install a udev rules file to autoload the driver. + * Run udevadm trigger on postinst, and depend on udev [linux-any]. + * Add xserver-xorg-input-joystick-dev for the header and .pc files. + + [ Julien Cristau ] + * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no + good reason. Thanks, Colin Watson! + + [ Robert Hooker ] + * Correct xserver-xorg-input-joystick-dev package name. + * Build xserver-xorg-input-joystick-dev on arch: all. + * Fix udev rules install. + + -- Brice Goglin Mon, 22 Feb 2010 19:41:10 +0100 + +xserver-xorg-input-joystick (1:1.5.0-1) experimental; urgency=low + + [ Timo Aaltonen ] + * New upstream release. + * Bump Standards-Version to 3.8.3. + * Build against Xserver 1.7. + + [ Julien Cristau ] + * Build-depend on libusbhid-dev on kfreebsd. + + [ Cyril Brulebois ] + * Upload to experimental. + + -- Cyril Brulebois Sat, 05 Dec 2009 22:56:05 +0100 + +xserver-xorg-input-joystick (1:1.4.1-1) unstable; urgency=low + + * New upstream release. + + -- Brice Goglin Wed, 15 Apr 2009 13:16:37 +0200 + +xserver-xorg-input-joystick (1:1.4.0-1) unstable; urgency=low + + * Run autoreconf on build. + * Allow parallel builds. + * New upstream release. + * Build against xserver 1.6. + * Use Vcs-* instead of XS-Vcs-*. + + -- Julien Cristau Thu, 09 Apr 2009 16:12:48 +0100 + +xserver-xorg-input-joystick (1:1.3.2-1) unstable; urgency=low + + * New upstream release. + * Run dpkg-shlibdeps with --warnings=6. Drivers reference symbols from + /usr/bin/Xorg and other modules, and that's not a bug, so we want + dpkg-shlibdeps to shut up about symbols it can't find. + + Build-depend on dpkg-dev >= 1.14.17. + + -- Brice Goglin Sat, 17 May 2008 12:09:11 +0200 + +xserver-xorg-input-joystick (1:1.3.1-1) unstable; urgency=low + + * New upstream release. + * Build-depend on x11proto-kb-dev, thanks Aaron M. Ucko, + closes: #448770. + + -- Brice Goglin Sat, 08 Dec 2007 12:35:12 +0100 + +xserver-xorg-input-joystick (1:1.3.0-2) unstable; urgency=low + + * Update upstream ChangeLog. + + -- Drew Parsons Mon, 29 Oct 2007 00:38:35 +1100 + +xserver-xorg-input-joystick (1:1.3.0-1) unstable; urgency=low + + * New upstream version. This is upstream version (git tag) + xf86-input-joystick-1.3.0-1, with the header fix. + + -- Drew Parsons Mon, 29 Oct 2007 00:24:09 +1100 + +xserver-xorg-input-joystick (1:1.2.3-3) unstable; urgency=low + + * Upload to unstable + + -- David Nusinow Sun, 16 Sep 2007 15:13:37 -0400 + +xserver-xorg-input-joystick (1:1.2.3-2) experimental; urgency=low + + * Build against xserver 1.4. + * Remove Branden from uploaders with his permission. He's always welcome back. + * Add upstream URL to debian/copyright. + + -- Brice Goglin Wed, 12 Sep 2007 19:19:05 +0200 + +xserver-xorg-input-joystick (1:1.2.3-1) unstable; urgency=low + + * New upstream release. + * Add myself to uploaders. + * Remove Fabio from uploaders with his permission. He's always welcome back. + + -- Brice Goglin Thu, 16 Aug 2007 17:48:57 +0200 + +xserver-xorg-input-joystick (1:1.2.1-2) unstable; urgency=low + + [ Brice Goglin ] + * Bump Build-Depends: xserver-xorg-dev to >= 2:1.2.99.902. + (needed to let xsfbs get access to serverminver) + * Build-Depends: quilt, needed to apply patches. + * Generate Provides: line automatically. + + [ Drew Parsons ] + * Exclude man pages from dh_install (they are installed by dh_installman) + + -- Drew Parsons Sun, 22 Apr 2007 19:40:02 +1000 + +xserver-xorg-input-joystick (1:1.2.1-1) unstable; urgency=low + + [ Brice Goglin ] + * New upstream release. + * Install the upstream changelog. + * Add XS-Vcs-*. + * Add a link to www.X.org and a reference to the xf86-input-joystick + module in the long description. + + -- Drew Parsons Sun, 22 Apr 2007 18:46:37 +1000 + +xserver-xorg-input-joystick (1:1.1.1-1) experimental; urgency=low + + [ Julien Cristau ] + * Add link to xserver-xorg-core bug script, so that bugreports contain + the user's config and log files. + * Generate the dependency on xserver-xorg-core automatically. + + [ Drew Parsons ] + * New upstream version (X11R7.2+). + - driver now loads successfully. Closes: #412287. + - uses XI_PRIVATE rather than PRIVATE. Closes: #392232. + + -- Drew Parsons Mon, 19 Mar 2007 23:41:20 +1100 + +xserver-xorg-input-joystick (1:1.1.0-1) 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 ] + * New upstream version (X11R7.1). + * Standards version 3.7.2. + * [Build-] Depends: xserver-xorg (>= 2:1.1.1-1). + * Use debhelper 5. + * Use dh_installman to install man pages. + * Exclude joystick_drv.la from dh_install. + + -- Drew Parsons Wed, 11 Oct 2006 00:22:42 +1000 + +xserver-xorg-input-joystick (1:1.0.0.5-2) unstable; urgency=low + + * Upload to modular + + -- David Nusinow Sun, 26 Mar 2006 20:25:05 -0500 + +xserver-xorg-input-joystick (1:1.0.0.5-1) experimental; urgency=low + + * First upload to Debian + * Change source package, package, and provides names to denote the + type of driver and that they are for xserver-xorg + + -- David Nusinow Thu, 19 Jan 2006 20:42:09 -0500 + +xserver-xorg-input-joystick (1:1.0.0.5-0ubuntu1) dapper; urgency=low + + * New upstream release. + * Add provides on xserver-xorg-input. + + -- Daniel Stone Wed, 4 Jan 2006 19:43:22 +1100 + +xserver-xorg-input-joystick (1:1.0.0.4-0ubuntu1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Mon, 19 Dec 2005 08:56:28 +1100 + +xserver-xorg-input-joystick (1:1.0.0.3-0ubuntu1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Mon, 12 Dec 2005 13:38:38 +1100 + +xserver-xorg-input-joystick (1:1.0.0.2-0ubuntu2) dapper; urgency=low + + * Add missing Build-Depends (x11proto-core-dev, x11proto-randr-dev). + + -- Daniel Stone Mon, 5 Dec 2005 12:48:35 +1100 + +xserver-xorg-input-joystick (1:1.0.0.2-0ubuntu1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Tue, 22 Nov 2005 13:21:49 +1100 + +xserver-xorg-input-joystick (1:1.0.0.1-1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Tue, 25 Oct 2005 16:53:56 +1000 + +xserver-xorg-input-joystick (1:1.0.0-1) breezy; urgency=low + + * First xserver-xorg-input-joystick release. + + -- Daniel Stone Wed, 6 Jul 2005 15:48:17 +1000 --- xserver-xorg-input-joystick-1.6.4.orig/debian/control +++ xserver-xorg-input-joystick-1.6.4/debian/control @@ -0,0 +1,48 @@ +Source: xserver-xorg-input-joystick +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force +Build-Depends: + debhelper-compat (= 13), + quilt, + pkg-config, + xutils-dev, + xserver-xorg-dev, + x11proto-dev, + libusbhid-dev [kfreebsd-any], +Standards-Version: 4.6.2 +Vcs-Git: https://salsa.debian.org/xorg-team/driver/xserver-xorg-input-joystick.git +Vcs-Browser: https://salsa.debian.org/xorg-team/driver/xserver-xorg-input-joystick.git + +Package: xserver-xorg-input-joystick +Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + ${xinpdriver:Depends}, +Provides: + ${xinpdriver:Provides} +Description: X.Org X server -- joystick input driver + This package provides the driver for joysticks. It allows to control the pointer with + a joystick, and is not needed for games etc. + . + More information about X.Org can be found at: + + . + This package is built from the X.org xf86-input-joystick driver module. + +Package: xserver-xorg-input-joystick-dev +Section: libdevel +Architecture: all +Depends: + ${shlibs:Depends}, + ${misc:Depends}, +Description: X.Org X server -- joystick input driver (development headers) + This package provides the development headers for the joystick input + driver found in xserver-xorg-input-joystick. Non-developers likely have + little use for this package. + . + More information about X.Org can be found at: + + . + This package is built from the X.org xf86-input-joystick driver module. --- xserver-xorg-input-joystick-1.6.4.orig/debian/copyright +++ xserver-xorg-input-joystick-1.6.4/debian/copyright @@ -0,0 +1,22 @@ +This package was downloaded from +http://xorg.freedesktop.org/releases/individual/driver/ + +Copyright 1995-1999 by Frederic Lepied, France. + +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 Frederic Lepied not be used in +advertising or publicity pertaining to distribution of the software without +specific, written prior permission. Frederic Lepied makes no +representations about the suitability of this software for any purpose. It +is provided "as is" without express or implied warranty. + +FREDERIC LEPIED DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO +EVENT SHALL FREDERIC LEPIED 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. --- xserver-xorg-input-joystick-1.6.4.orig/debian/local/50-joystick.conf +++ xserver-xorg-input-joystick-1.6.4/debian/local/50-joystick.conf @@ -0,0 +1,6 @@ +Section "InputClass" + Identifier "joystick catchall" + MatchIsJoystick "on" + MatchDevicePath "/dev/input/event*" + Driver "joystick" +EndSection --- xserver-xorg-input-joystick-1.6.4.orig/debian/patches/0001-Fix-includes-for-kfreebsd.diff +++ xserver-xorg-input-joystick-1.6.4/debian/patches/0001-Fix-includes-for-kfreebsd.diff @@ -0,0 +1,10 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -98,6 +98,7 @@ + AC_CHECK_HEADERS([dev/usb/usb.h]) + AC_CHECK_HEADERS([usbhid.h dev/usb/usbhid.h],, [bsd_backend=no], + [[#if HAVE_DEV_USB_USB_H ++#include + #include + #endif + ]]) --- xserver-xorg-input-joystick-1.6.4.orig/debian/patches/series +++ xserver-xorg-input-joystick-1.6.4/debian/patches/series @@ -0,0 +1 @@ +0001-Fix-includes-for-kfreebsd.diff --- xserver-xorg-input-joystick-1.6.4.orig/debian/rules +++ xserver-xorg-input-joystick-1.6.4/debian/rules @@ -0,0 +1,26 @@ +#!/usr/bin/make -f + +override_dh_auto_configure: + dh_auto_configure -- --disable-silent-rules \ + --libdir=\$${exec_prefix}/lib + +# Install in debian/tmp to retain control through dh_install: +override_dh_auto_install: + dh_auto_install --destdir=debian/tmp + +# Kill *.la files, and forget no-one: +override_dh_install: + # Usual steps: + find debian/tmp -name '*.la' -delete + dh_install + # Local configuration: + dh_install -pxserver-xorg-input-joystick \ + debian/local/50-joystick.conf \ + `pkg-config --variable=sysconfigdir xorg-server` + +# That's a plugin, use appropriate warning level: +override_dh_shlibdeps: + dh_shlibdeps -- --warnings=6 + +%: + dh $@ --with quilt --builddirectory=build/ --- xserver-xorg-input-joystick-1.6.4.orig/debian/upstream/signing-key.asc +++ xserver-xorg-input-joystick-1.6.4/debian/upstream/signing-key.asc @@ -0,0 +1,84 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mQGiBD8b0wYRBACph9kRJmP+4+JGsCgFlFoy4vFO0DCG+jmkQN0n1wdInt/N/UtA +sZToO72AUmfmYizA+IEbzBrx0UnUo3w3BDmHxUWf/akZiPUz9AA/YFY4xC3MY2OK +VN2Jz6YSce4zJ5jd2ZRobHm4HuIf/8yqSCcsv7FNfrLaTNIFRs5gYYsqZwCgwmkp +RSLRc8WAnHrTWNQDaEFM2rUEAKTjrTjMN8+KGd0BxNX7HiTSqQP++nXNwAYs1oWB +Yt82YHj9SvRCqCzD1pzJQivYnlNoWDza1VeMnfdAvkdia8z4lYbO/RunXZJvra3Z +VDm+izq+uwUAyvFuEYnNz09VSqwXKT6+XW0Xtz2vHq52r6DS6mK8cGJHZ5OhrRjq +UEYxA/9STh+QfA98xtNoRcf52E/46r7IpCj440oRVc9lMfxQZrLGQNqp7sPdIhGQ +CCo2NUII5hkhdAG71kpbfSXU4Sh32p1cU1KYCAkDFfb49bKuAs+Pff8v6FGZxTdd +AinPZr4BbsYJatk818aTCnu0+s7L8jL5GPfeyuyEMKwzVBx2mLQpUGV0ZXIgSHV0 +dGVyZXIgKFdoby1UKSA8b2ZmaWNlQHdoby10Lm5ldD6IWQQTEQIAGQUCPxvTBgQL +BwMCAxUCAwMWAgECHgECF4AACgkQ4jt+cLRn8L/0RACfWo3KTMUg+uPRqA6RXxk0 +4CWjXaMAoJeIxOpZLB3RBltPnSi7PyVQIkHFuQENBD8b0wgQBACTnqOYOWYVR8O1 +D73J6nbdAeZCbXrUkyXIuyqBOdKmX/0QJmSs7Wfsa+hPfDhj6ai0Gs2C8Qg/0Pzk +86b4p9DLkf0M6RaYjUtCJBpS59xrsV6nz6xZzQa4RRdf1YJmw2tia1MMXzxbwQU2 +bKpYEm8NsGaBURMGd02EvsMN2wI2uwADBQP/e9MjVr/85XDzAlUBN8HwYW5szTyP +8ZVcQOqOmNebkTWGLvkPrBdXmxpzrWjxPolO1WcWQjUL0bN/rbdqefT65iVHJHJZ +/cpTtgGlCPhL5JTA50ltd0I13CABYWLFmswonXES/6tcglf4rr3Nri2sOrY5HggP +ipEzOo5vdKOow/qIRgQYEQIABgUCPxvTCAAKCRDiO35wtGfwv68jAKCDvL2gkrg1 +4NfV7rNc057K1nL2GgCeKApWRgGVzaOkAp0P5tQulaDD6zM= +=7uBX +-----END PGP PUBLIC KEY BLOCK----- +-----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+zZGGy5CrF2Fd9PUe9tmASbQuQWxhbiBDb29w +ZXJzbWl0aCA8YWxhbi5jb29wZXJzbWl0aEBvcmFjbGUuY29tPoiCBBMRCgBCAhsD +BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAIZARYhBEoZPAbTXnxnD6TvC6L7nggf +LRMOBQJkQs2eBQknDNS0AAoJEKL7nggfLRMO1esAnR4FVD60BpDY/bJp5RC1VXhO +Vlo4AKCJgsQeVeGLxDlMuhAmbcCkOjafqbQoQWxhbiBDb29wZXJzbWl0aCA8YWxh +bmNAZnJlZWRlc2t0b3Aub3JnPoh/BBMRCgA/AhsDBgsJCAcDAgYVCAIJCgsEFgID +AQIeAQIXgBYhBEoZPAbTXnxnD6TvC6L7nggfLRMOBQJkQs2eBQknDNS0AAoJEKL7 +nggfLRMOUgAAoIyNXuU5kOotpZrKvPrjQATbsPClAJ9wkh/n3IAobV6aDLb1qOt5 +RT3Pp7QrQWxhbiBDb29wZXJzbWl0aCA8YWxhbi5jb29wZXJzbWl0aEBzdW4uY29t +Poh9BBMRCgA9AhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AWIQRKGTwG0158Zw+k +7wui+54IHy0TDgUCZELNngUJJwzUtAAKCRCi+54IHy0TDunHAKCKZyiF/IwgoqYQ +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 +=awvS +-----END PGP PUBLIC KEY BLOCK----- --- xserver-xorg-input-joystick-1.6.4.orig/debian/watch +++ xserver-xorg-input-joystick-1.6.4/debian/watch @@ -0,0 +1,4 @@ +#git=git://anongit.freedesktop.org/xorg/driver/xf86-input-joystick +version=3 +opts="pgpsigurlmangle=s/$/.sig/" \ +https://xorg.freedesktop.org/releases/individual/driver/ xf86-input-joystick-(.*)\.tar\.gz --- xserver-xorg-input-joystick-1.6.4.orig/debian/xserver-xorg-input-joystick-dev.install +++ xserver-xorg-input-joystick-1.6.4/debian/xserver-xorg-input-joystick-dev.install @@ -0,0 +1,2 @@ +usr/include/xorg/* +usr/lib/pkgconfig/xorg-joystick.pc --- xserver-xorg-input-joystick-1.6.4.orig/debian/xserver-xorg-input-joystick.install +++ xserver-xorg-input-joystick-1.6.4/debian/xserver-xorg-input-joystick.install @@ -0,0 +1,2 @@ +usr/lib/xorg/modules/input/*.so +usr/share/man --- xserver-xorg-input-joystick-1.6.4.orig/debian/xserver-xorg-input-joystick.links +++ xserver-xorg-input-joystick-1.6.4/debian/xserver-xorg-input-joystick.links @@ -0,0 +1 @@ +usr/share/bug/xserver-xorg-core/script usr/share/bug/xserver-xorg-input-joystick/script