debian/0000755000000000000000000000000012262376556007204 5ustar debian/control0000644000000000000000000000115312250631325010570 0ustar Source: inputplug Section: x11 Priority: optional Maintainer: Andrew Shadura Build-Depends: debhelper (>= 9), mk-configure (>= 0.23.0), pkg-config, libxi-dev, libixp-dev Standards-Version: 3.9.4 Homepage: http://bitbucket.org/andrew_shadoura/inputplug Package: inputplug Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: XInput monitor inputplug is a daemon which connects to a running X server and monitors its XInput hierarchy change events, such as an input device being attached or removed, enabled or disable etc, and runs some command when these events happen. debian/watch0000644000000000000000000000044412250626561010226 0ustar # watch control file for inputplug # You can run the "uscan" command # to check for upstream updates and more. # Compulsory line, this is a version 3 file version=3 opts=filenamemangle=s/.*\/(.*)$/inputplug-$1/ http://bitbucket.org/andrew_shadoura/inputplug/downloads ^.*(\d.+)\.tar\.bz2 debian/docs0000644000000000000000000000001212242164153010032 0ustar README.md debian/changelog0000644000000000000000000000046612262376545011062 0ustar inputplug (0.2-2) unstable; urgency=low * Unbreak build on Debian GNU/Hurd. -- Andrew Shadura Mon, 06 Jan 2014 01:48:36 +0100 inputplug (0.2-1) unstable; urgency=low * Initial release (Closes: #729736). -- Andrew Shadura Sat, 07 Dec 2013 15:18:31 +0100 debian/source/0000755000000000000000000000000012242171144010464 5ustar debian/source/format0000644000000000000000000000001412242171143011671 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000262012250630257011123 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: inputplug Upstream-Contact: Andrew Shadura Source: https://bitbucket.org/andrew_shadoura/inputplug/ License: Expat Copyright: 2013, Andrew Shadura Files: debian/* Copyright: 2013, Andrew Shadura License: Expat License: Expat 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. debian/patches/0000755000000000000000000000000012262376523010625 5ustar debian/patches/series0000644000000000000000000000002712262376424012041 0ustar 01-hurd-nocldwait.diff debian/patches/01-hurd-nocldwait.diff0000644000000000000000000000050312262376523014617 0ustar Unbreak build on Hurd. --- a/inputplug.c +++ b/inputplug.c @@ -288,7 +288,9 @@ /* avoid zombies when spawning processes */ struct sigaction sigchld_action = { .sa_handler = SIG_DFL, +#ifdef SA_NOCLDWAIT .sa_flags = SA_NOCLDWAIT +#endif }; sigaction(SIGCHLD, &sigchld_action, NULL); debian/rules0000755000000000000000000000014712242171525010251 0ustar #!/usr/bin/make -f export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed %: dh $@ --buildsystem=mkcmake debian/compat0000644000000000000000000000000212203006333010354 0ustar 9