--- cycfx2prog-0.41.orig/debian/changelog +++ cycfx2prog-0.41/debian/changelog @@ -0,0 +1,5 @@ +cycfx2prog (0.41-1) unstable; urgency=low + + * Initial release (Closes: #465895). + + -- Uwe Hermann Fri, 15 Feb 2008 15:36:01 +0100 --- cycfx2prog-0.41.orig/debian/compat +++ cycfx2prog-0.41/debian/compat @@ -0,0 +1 @@ +5 --- cycfx2prog-0.41.orig/debian/watch +++ cycfx2prog-0.41/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.cip.physik.uni-muenchen.de/~wwieser/elec/periph/USB-FX2/software/cycfx2prog-(.*)\.tar\.gz --- cycfx2prog-0.41.orig/debian/dirs +++ cycfx2prog-0.41/debian/dirs @@ -0,0 +1 @@ +usr/bin --- cycfx2prog-0.41.orig/debian/control +++ cycfx2prog-0.41/debian/control @@ -0,0 +1,16 @@ +Source: cycfx2prog +Section: electronics +Priority: extra +Maintainer: Uwe Hermann +Build-Depends: cdbs, debhelper (>= 5), libusb-dev +Standards-Version: 3.7.3 +Homepage: http://www.cip.physik.uni-muenchen.de/~wwieser/elec/periph/USB-FX2/software/ + +Package: cycfx2prog +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Cypress EZ-USB FX2 (LP) programmer + CycFX2Prog is a tool for programming the EZ-USB FX2 controller (i.e. + downloading 8051 firmware into the RAM of the device) and doing basic + endpoint communication for testing purposes. + --- cycfx2prog-0.41.orig/debian/copyright +++ cycfx2prog-0.41/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Uwe Hermann on +Fri, 15 Feb 2008 12:51:41 +0100. + +It was downloaded from: + + http://www.cip.physik.uni-muenchen.de/~wwieser/elec/periph/USB-FX2/software/ + +Upstream Author: + + Wolfgang Wieser + +------------------------------------------------------------------------------- + +Files: * +Copyright: © 2006 Wolfgang Wieser +License: GPL-2 + +------------------------------------------------------------------------------- + +Files: debian/* +Copyright: © 2008 Uwe Hermann +License: GPL-2+ + The Debian packaging is (C) 2008, Uwe Hermann and + is licensed under the GPL (version 2 or later), see above. + +------------------------------------------------------------------------------- + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + --- cycfx2prog-0.41.orig/debian/README.Debian +++ cycfx2prog-0.41/debian/README.Debian @@ -0,0 +1,14 @@ +cycfx2prog for Debian +--------------------- + + * For more information and example firmwares for the EZ-USB FX2 see: + + http://www.cip.physik.uni-muenchen.de/~wwieser/elec/periph/USB-FX2/software/ + + http://www.cip.physik.uni-muenchen.de/~wwieser/elec/periph/USB-FX2/software/local_examples.html + + http://www.cip.physik.uni-muenchen.de/~wwieser/elec/periph/USB-FX2/software/io_examples.html + + http://www.cip.physik.uni-muenchen.de/~wwieser/elec/periph/USB-FX2/software/fx2pipe.html + + -- Uwe Hermann Fri, 15 Feb 2008 12:51:41 +0100 --- cycfx2prog-0.41.orig/debian/rules +++ cycfx2prog-0.41/debian/rules @@ -0,0 +1,16 @@ +#!/usr/bin/make -f + +# Note: The version number here must be increased with each upstream release! +CFLAGS = -O2 -fno-rtti -fno-exceptions -D'CYCFX2PROG_VERSION=\"0.41\"' +LDFLAGS = -lusb + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/makefile.mk +# include /usr/share/cdbs/1/rules/simple-patchsys.mk + +binary-install/cycfx2prog:: + install cycfx2prog debian/cycfx2prog/usr/bin + +clean:: + rm -f cycfx2prog +