--- pymissile-0.0.20060725.orig/debian/copyright +++ pymissile-0.0.20060725/debian/copyright @@ -0,0 +1,35 @@ +This package was debianized by Petter Reinholdtsen on +Mon Apr 9 14:02:19 CEST 2007 + +It was downloaded from + + +License: + +Copyright (c) 2006, Scott Weston +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +* The name of the contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER +OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --- pymissile-0.0.20060725.orig/debian/control +++ pymissile-0.0.20060725/debian/control @@ -0,0 +1,15 @@ +Source: pymissile +Section: misc +Priority: optional +Maintainer: Petter Reinholdtsen +Build-Depends: debhelper (>= 8) +Standards-Version: 3.9.2 +Homepage: http://code.google.com/p/pymissile/ + +Package: pymissile +Architecture: all +Depends: ${misc:Depends}, python-usb, python-urwid, python +Description: Control Marks and Spencer USB Missile Launcher + Provide curses interface to control a Marks and Spencer USB Missile Launcher, + as well as a motion control script to allow a webcamera to control the + launcher. --- pymissile-0.0.20060725.orig/debian/dirs +++ pymissile-0.0.20060725/debian/dirs @@ -0,0 +1 @@ +usr/bin --- pymissile-0.0.20060725.orig/debian/changelog +++ pymissile-0.0.20060725/debian/changelog @@ -0,0 +1,25 @@ +pymissile (0.0.20060725-2) unstable; urgency=low + + * Added Homepage entry to control file (Closes: #615297). + * Updated to new upstream URL. + * Updated Standards-Version from 3.7.2 to 3.9.2. No updates needed. + * Updated to debhelper compatibility level 8 and adjust build + dependencies to match it. + + -- Petter Reinholdtsen Wed, 30 Nov 2011 23:18:22 +0100 + +pymissile (0.0.20060725-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Depend on python-usb instead of python-pyusb (Closes: #490774) + * Add a dependency on python instead of using the indirect dependency via + python-usb/urwid. + + -- Bernd Zeimetz Mon, 14 Jul 2008 11:45:48 +0200 + +pymissile (0.0.20060725-1) unstable; urgency=low + + * Initial version. (Closes: #418369) + + -- Petter Reinholdtsen Mon, 9 Apr 2007 14:26:45 +0200 + --- pymissile-0.0.20060725.orig/debian/compat +++ pymissile-0.0.20060725/debian/compat @@ -0,0 +1 @@ +8 --- pymissile-0.0.20060725.orig/debian/rules +++ pymissile-0.0.20060725/debian/rules @@ -0,0 +1,45 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +INSTALL = install -m644 + +build: build-stamp + +build-stamp: + dh_testdir + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(INSTALL) missile.py $(CURDIR)/debian/pymissile/usr/bin/pymissile + $(INSTALL) movetointercept.py $(CURDIR)/debian/pymissile/usr/bin/pymissile-movetointercept + +binary-arch: + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installman + 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