--- python-avc-0.6.0.orig/debian/copyright +++ python-avc-0.6.0/debian/copyright @@ -0,0 +1,18 @@ +This is "AVC, Application View Controller", written and maintained +by Fabrizio Pollastri + +The original source can always be found at: http://avc.inrim.it/ + +Copyright (C) 2006,2007,2008 Fabrizio Pollastri + +* program files (src/*.py) and example files (examples/*) + are licensed under the GNU General Public License + +* documentation files (doc/*) are licensed under the + GNU Free Documentation License + +You should have received a copy of each license mentioned above +along with AVC. If not, see . + +On Debian systems, the complete text of GNU licenses can be found +in '/usr/share/common-licenses'. --- python-avc-0.6.0.orig/debian/compat +++ python-avc-0.6.0/debian/compat @@ -0,0 +1 @@ +5 --- python-avc-0.6.0.orig/debian/watch +++ python-avc-0.6.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://avc.inrim.it/dist/avc-(.*)\.tar\.gz --- python-avc-0.6.0.orig/debian/changelog +++ python-avc-0.6.0/debian/changelog @@ -0,0 +1,33 @@ +python-avc (0.6.0-1) unstable; urgency=low + + * New upstream + * Standards-Version bumped to 3.8.0 (no changes needed) + + -- Fabrizio Pollastri Tue, 10 Jun 2008 12:00:00 +0100 + +python-avc (0.5.0-1) unstable; urgency=low + + * New upstream + + -- Fabrizio Pollastri Tue, 4 Feb 2008 12:00:00 +0100 + +python-avc (0.4.0-2) UNRELEASED; urgency=low + + * debian/control + - uniforming Vcs-Browser field + + -- Sandro Tosi Thu, 03 Jan 2008 11:58:52 +0100 + +python-avc (0.4.0-1) unstable; urgency=low + + * New upstream + * "python-wxgtk2.6 | python-wxgtk2.8" added to Suggests + * Standards-Version bumped to 3.7.3 (no changes needed) + + -- Fabrizio Pollastri Tue, 15 Dec 2007 12:00:00 +0100 + +python-avc (0.3.0-1) unstable; urgency=low + + * Initial release (Closes: #448646) + + -- Fabrizio Pollastri Tue, 30 Oct 2007 12:07:23 +0100 --- python-avc-0.6.0.orig/debian/rules +++ python-avc-0.6.0/debian/rules @@ -0,0 +1,54 @@ +#!/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 + +build: build-stamp + +build-stamp: + dh_testdir + python setup.py build + touch $@ + + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + python setup.py -q clean -a + dh_clean + + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + python setup.py install --no-compile \ + --root=$(CURDIR)/debian/python-avc \ + --install-lib=/usr/share/python-support/python-avc + + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs changes + dh_installdocs + dh_installexamples + dh_pysupport + dh_compress -X.glade -X.py -X.tcl -X.ui -X.xrc + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep +binary-arch: +.PHONY: build clean binary-indep binary binary-arch install --- python-avc-0.6.0.orig/debian/docs +++ python-avc-0.6.0/debian/docs @@ -0,0 +1,3 @@ +README +doc +examples --- python-avc-0.6.0.orig/debian/control +++ python-avc-0.6.0/debian/control @@ -0,0 +1,25 @@ +Source: python-avc +Section: python +Priority: optional +Maintainer: Fabrizio Pollastri +Uploaders: Debian Python Modules Team +Build-Depends: debhelper (>= 5), python-setuptools (>= 0.5), + python-support (>= 0.5), python (>=2.2) +Standards-Version: 3.8.0 +Homepage: http://avc.inrim.it/ +Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-avc/trunk +Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/python-avc/trunk/?op=log + +Package: python-avc +Architecture: all +Depends: ${python:Depends} +Suggests: python-gtk2 (>=2.0), python-qt3 (>=3.0), python-qt4 (>=4.0), + python-tk (>=2.0), python-wxgtk2.6 | python-wxgtk2.8 +Description: live connection among widgets and application variables + AVC, the Application View Controller is a multiplatform, fully automatic, + live connection among the values displayed by graphical interface widgets and + application variables. AVC supports in a uniform way the most popular + widget toolkits: GTK+, Qt3, Qt4, Tk, wxWidgets. + . + The connections are autogenerated by looking for matching names between + widget names and variable names.