debian/0000755000000000000000000000000012231223727007167 5ustar debian/watch0000644000000000000000000000014011333631620010210 0ustar version=3 http://wireless.kernel.org/download/rfkill/ rfkill-([\d\.]*)\.tar\.bz2 debian uupdate debian/rfkill-store.upstart0000644000000000000000000000072512231223677013240 0ustar # rfkill-store - store software RF kill switch state description "store software rfkill state" start on runlevel [016] task script if [ ! -d /sys/class/rfkill ]; then exit 0 fi mkdir -p /var/lib/rfkill > /var/lib/rfkill/saved-state for device in /sys/class/rfkill/*; do [ ! -d $device ] && continue entry="$(cat $device/name) $(cat $device/soft)" echo $entry >> /var/lib/rfkill/saved-state done end script debian/rfkill-restore.upstart0000644000000000000000000000112512231223677013562 0ustar # rfkill-restore - restore software RF kill switch state description "restore software rfkill state" start on local-filesystems task script if [ ! -f /var/lib/rfkill/saved-state ] || [ ! -d /sys/class/rfkill ]; then exit 0 fi while read line; do set -- $line for device in /sys/class/rfkill/*; do [ ! -d $device ] && continue if [ -f $device/soft ] && [ "$(cat $device/name)" = "$1" ]; then echo $2 > $device/soft fi done done < /var/lib/rfkill/saved-state end script debian/rules0000755000000000000000000000307412231223677010257 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk configure: configure-stamp configure-stamp: dh_testdir touch configure-stamp build build-arch: build-stamp build-indep: build-stamp: configure-stamp dh_testdir $(MAKE) VERSION_SUFFIX="$(shell dpkg-parsechangelog | sed -e '/^Version:/! d; s/^[^-]*-//; q') ($(shell dpkg-vendor --query VENDOR))" touch $@ clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp $(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_clean -k $(MAKE) DESTDIR=$(CURDIR)/debian/rfkill install # Build architecture-independent files here. binary-indep: install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installman dh_installinit --name=rfkill-store --upstart-only --noscripts dh_installinit --name=rfkill-restore --upstart-only --noscripts dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure debian/copyright0000644000000000000000000000437212221041235011117 0ustar This package was debianized by Darren Salt > Fri, 10 Jul 2009 22:52:54 +0100. It was downloaded from http://git.sipsolutions.net/?p=rfkill.git then later https://www.kernel.org/pub/software/network/rfkill/ Upstream Authors: Johannes Berg Marcel Holtmann Tim Gardner Copyright: Copyright (C) 2009-2010 Johannes Berg Copyright (C) 2009 Marcel Holtmann Copyright (C) 2009 Tim Gardner rfkill.c: Copyright (C) 2009-2013 Johannes Berg Copyright (C) 2009-2010 Darren Salt Copyright (C) 2010 Tomas Winkler Copyright (C) 2013 Samuel Ortiz rfkill.h: Copyright (C) 2006-2007 Ivo van Doorn Copyright (C) 2007 Dmitry Torokhov Copyright (C) 2009 Johannes Berg Copyright (C) 2010 Tomas Winkler Copyright (C) 2013 Samuel Ortiz rfkill.8: Copyright (C) 2009-2010 Darren Salt Copyright (C) 2009-2010 Johannes Berg Copyright (C) 2013 Samuel Ortiz License: Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 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. The Debian packaging is: Copyright (C) 2009-2013 Darren Salt and is licensed as above. debian/docs0000644000000000000000000000000711333631620010034 0ustar README debian/source/0000755000000000000000000000000011307420152010461 5ustar debian/source/format0000644000000000000000000000001411305247606011700 0ustar 3.0 (quilt) debian/source/options0000644000000000000000000000002611307417612012104 0ustar --single-debian-patch debian/source/patch-header0000644000000000000000000000013711307420152012732 0ustar Origin: upstream, other, * Description: Applied patches. See Vcs-* headers in debian/control. debian/patches/0000755000000000000000000000000012221037657010622 5ustar debian/patches/debian-changes0000644000000000000000000000062512231223733013371 0ustar Origin: upstream, other, * Description: Applied patches. See Vcs-* headers in debian/control. --- rfkill-0.5.orig/rfkill.8 +++ rfkill-0.5/rfkill.8 @@ -17,7 +17,7 @@ Show rfkill's built-in help text. .B event Listen for rfkill events and display them on stdout. .TP -.B list [type] +.BI list " [type]" List the current state of all available rfkill-using devices, or just all of the given type. .TP debian/patches/series0000644000000000000000000000001712221037657012035 0ustar debian-changes debian/compat0000644000000000000000000000000211333631620010362 0ustar 5 debian/control0000644000000000000000000000153612231223677010603 0ustar Source: rfkill Section: utils Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Darren Salt Build-Depends: dpkg-dev (>= 1.16.1~), debhelper (>= 5) Standards-Version: 3.9.4 Homepage: http://wireless.kernel.org/en/users/Documentation/rfkill Vcs-Browser: http://git.debian.org/?p=collab-maint/rfkill.git Vcs-Git: git://git.debian.org/git/collab-maint/rfkill.git Package: rfkill Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: tool for enabling and disabling wireless devices rfkill is a simple tool for accessing the Linux rfkill device interface, which is used to enable and disable wireless networking devices, typically WLAN, Bluetooth and mobile broadband. . rfkill uses /dev/rfkill, which is present in Linux kernel 2.6.31 and later. debian/gbp.conf0000644000000000000000000000032111333640105010575 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True # Options only affecting git-buildpackage [git-buildpackage] sign-tags = True compression = bzip2 compression-level = best debian/changelog0000644000000000000000000000630712231223727011047 0ustar rfkill (0.5-1ubuntu1) trusty; urgency=low * Resynchronise with Debian. Remaining changes: - Add upstart jobs rfkill-store and rfkill-restore to save soft RF kill state across reboots. -- Colin Watson Mon, 21 Oct 2013 14:10:45 +0100 rfkill (0.5-1) unstable; urgency=low * New upstream release. * Bumped standards version to 3.9.4. * Updated copyright info. * Added a URL for release tarballs. * Silenced lintian wrt build targets. -- Darren Salt Thu, 26 Sep 2013 15:21:19 +0100 rfkill (0.4-2ubuntu1) raring; urgency=low * Resynchronise with Debian. Remaining changes: - Add upstart jobs rfkill-store and rfkill-restore to save soft RF kill state across reboots. -- Colin Watson Wed, 28 Nov 2012 00:15:44 +0000 rfkill (0.4-2) unstable; urgency=low * Change of maintainer address. * Bump standards version to 3.9.3; add versioned dep on dpkg-dev. * Use standard build flags (provided by dpkg-buildflags). -- Darren Salt Tue, 20 Nov 2012 20:07:03 +0000 rfkill (0.4-1ubuntu3) quantal; urgency=low * Rebuild for new armel compiler default of ARMv5t. -- Colin Watson Mon, 08 Oct 2012 22:54:00 +0100 rfkill (0.4-1ubuntu2) precise; urgency=low * Make upstart jobs more robust for systems that only sometimes have rfkill entries. -- Stéphane Graber Thu, 22 Mar 2012 16:52:27 -0400 rfkill (0.4-1ubuntu1) precise; urgency=low * Add upstart jobs rfkill-store and rfkill-restore to save soft RF kill state across reboots. -- Stéphane Graber Thu, 19 Jan 2012 10:56:03 -0500 rfkill (0.4-1) unstable; urgency=low * New upstream release. - Upstream patches dropped. - One patch, a minor style fix in rfkill.8, is retained. * No longer need to rename rfkill.1 → rfkill.8. * Use format 3.0 (quilt), single patch. * Bump standards version to 3.8.4. No changes needed. * Use a git-buildpackage configuration file. -- Darren Salt Sun, 07 Feb 2010 22:15:55 +0000 rfkill (0.3-3) unstable; urgency=low * Pull in more upstream changes (up to commit 726eb642). - add filtering to "rfkill list"; - some const correctness changes. * Minor man page tweak. * Update copyright info. -- Darren Salt Tue, 26 Jan 2010 15:09:00 +0000 rfkill (0.3-2) unstable; urgency=low * Pull in remaining upstream changes (up to commit 469ee265). - when logging, print time; - update rfkill.h from kernel 2.6.33; - add 'wlan' and 'ultrawideband' aliases. -- Darren Salt Mon, 25 Jan 2010 21:30:38 +0000 rfkill (0.3-1) unstable; urgency=low * Initial release (Closes: #538389) * version.sh: ignore git (doesn't affect packaging). * Moved rfkill to /usr/sbin, following upstream (post-0.3). Moved and renamed the man page accordingly. -- Darren Salt Thu, 10 Dec 2009 21:49:44 +0000 rfkill (0.1-4-g9429740-1) UNRELEASED; urgency=low * Initial packaging. -- Darren Salt Sat, 25 Jul 2009 14:45:25 +0100