--- inputlirc-23.orig/debian/changelog +++ inputlirc-23/debian/changelog @@ -0,0 +1,84 @@ +inputlirc (23-2) unstable; urgency=medium + + * Set Architecture: linux-any, since inputlirc depends on the Linux input + event subsystem. Closes: #745198 + * Bump Standards-Version. + * Convert debian/rules to dh. + * Source /lib/lsb/init-functions in the init script. + * Enable hardening flags. + + -- Guus Sliepen Wed, 23 Jul 2014 17:34:03 +0200 + +inputlirc (23-1) unstable; urgency=low + + * New upstream release. + - Fixes a crash when one input device is specified more than once on the + command line. Closes: 689037 + * Bump Standards-Version. + * Enable hardening flags. + + -- Guus Sliepen Thu, 21 Feb 2013 16:17:04 +0100 + +inputlirc (19-1) unstable; urgency=low + + * New upstream release. + - Don't set repeat flag when two different keys are pressed in rapid + succession. Closes: #602083 + - Change socket location to /var/run/lirc/lircd. Closes: #617523 + * Bump Standards-Version. + * Add $remote_fs to the Required-Start and -Stop fields in the init script. + + -- Guus Sliepen Thu, 19 May 2011 22:42:33 +0200 + +inputlirc (16-1) unstable; urgency=low + + * New upstream release. + - Allow selection of devices by name. Closes: #564959 + * Convert source package to 3.0 (quilt) format. + * Bump Standards-Version. + * Depend on ${misc:Depends}. + + -- Guus Sliepen Sun, 24 Jan 2010 15:59:30 +0100 + +inputlirc (15-1) unstable; urgency=low + + * New upstream release. + * Add lirc to Should-Start field in the init script. Closes: #514800 + + -- Guus Sliepen Wed, 29 Jul 2009 15:09:49 +0200 + +inputlirc (13-1) unstable; urgency=low + + * New upstream release. + + -- Guus Sliepen Thu, 25 Sep 2008 18:13:35 +0200 + +inputlirc (11-2) unstable; urgency=low + + * Add LSB section to the init script. Closes: #468162 + * Don't ignore make clean errors in debian/rules. + * Update copyright file. + + -- Guus Sliepen Sun, 02 Mar 2008 21:12:55 +0100 + +inputlirc (11-1) unstable; urgency=low + + * New upstream release. + + -- Guus Sliepen Thu, 27 Apr 2006 21:17:06 +0200 + +inputlirc (10-1) unstable; urgency=low + + * New upstream release. + * Changed Provides: lirc into Suggests: lirc, since liblircclient0 does not + actually depend on lirc, and we do want to suggest the lirc package for + the irw binary. + + -- Guus Sliepen Fri, 24 Feb 2006 21:05:27 +0100 + +inputlirc (8-1) unstable; urgency=low + + * Initial Release. + + -- Guus Sliepen Mon, 06 Feb 2006 20:15:11 +0100 + --- inputlirc-23.orig/debian/compat +++ inputlirc-23/debian/compat @@ -0,0 +1 @@ +7 --- inputlirc-23.orig/debian/control +++ inputlirc-23/debian/control @@ -0,0 +1,17 @@ +Source: inputlirc +Section: utils +Priority: extra +Maintainer: Guus Sliepen +Build-Depends: debhelper (>> 7), dpkg-dev (>= 1.16.1~) +Standards-Version: 3.9.5 + +Package: inputlirc +Architecture: linux-any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: lirc, input-utils +Description: Zeroconf LIRC daemon using input event devices + This is a small LIRC-compatible daemon that reads from /dev/input/eventX + devices and sends the received keycodes to connecting LIRC clients. Inputlircd + needs no configuration, it uses the standardised names for the keycodes as + used by the kernel. Many USB remote controls that present HID devices, as well + as multimedia keyboards should work out of the box. --- inputlirc-23.orig/debian/copyright +++ inputlirc-23/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Guus Sliepen on +Mon, 06 Feb 2006 20:15:11 +0100 + +It was downloaded from http://svn.sliepen.eu.org/inputlirc/. + +Upstream Author: Guus Sliepen + +Copyright © 2006 Guus Sliepen + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, + USA. + +On Debian systems, the complete text of the GNU General Public +License, version 2, can be found in /usr/share/common-licenses/GPL-2. --- inputlirc-23.orig/debian/format +++ inputlirc-23/debian/format @@ -0,0 +1 @@ +3.0 (quilt) --- inputlirc-23.orig/debian/inputlirc.default +++ inputlirc-23/debian/inputlirc.default @@ -0,0 +1,3 @@ +# Options to be passed to inputlirc. +EVENTS="/dev/input/event*" +OPTIONS= --- inputlirc-23.orig/debian/inputlirc.init +++ inputlirc-23/debian/inputlirc.init @@ -0,0 +1,46 @@ +#! /bin/sh +### BEGIN INIT INFO +# Provides: inputlirc +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Should-Start: $syslog udev lirc +# Should-Stop: $syslog +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Start inputlirc daemon +### END INIT INFO + +. /lib/lsb/init-functions + +DAEMON="/usr/sbin/inputlircd" +NAME="inputlirc" +DESC="inputlirc" + +test -x $DAEMON || exit 0 + +[ -r /etc/default/$NAME ] && . /etc/default/$NAME + +case "$1" in + start) + mkdir -p /var/run/lirc + echo "Starting $DESC" + start-stop-daemon --exec $DAEMON --start -- $OPTIONS $EVENTS + # retain compatibility with old clients + [ -S /var/run/lirc/lircd ] && ln -sf /var/run/lirc/lircd /dev/lircd + ;; + stop) + echo "Stopping $DESC" + start-stop-daemon --exec $DAEMON --stop + ;; + restart|reload|force-reload) + echo "Restarting $DESC configuration" + start-stop-daemon --exec $DAEMON --stop + start-stop-daemon --exec $DAEMON --start -- $OPTIONS $EVENTS + ;; + *) + echo "Usage: invoke-rc.d $NAME {start|stop|reload|restart|force-reload}" + exit 1 + ;; +esac + +exit 0 --- inputlirc-23.orig/debian/rules +++ inputlirc-23/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/buildflags.mk + +%: + dh $@ --parallel + +override_dh_auto_install: + make install PREFIX=/usr DESTDIR=debian/inputlirc/