# HG changeset patch # User paulb # Date 1188243244 0 # Node ID ba9c38f29cbe0cbbe80cd63356fa78c2845171f8 # Parent 8993138d9c8fddda4e3d2174d0604e2e93ca770a [project @ 2007-08-27 19:34:04 by paulb] Added Ubuntu Feisty packaging files. diff -r 8993138d9c8f -r ba9c38f29cbe packages/ubuntu-feisty/python-desktop/debian/changelog --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/packages/ubuntu-feisty/python-desktop/debian/changelog Mon Aug 27 19:34:04 2007 +0000 @@ -0,0 +1,25 @@ +desktop (0.2.4-0ubuntu1) feisty; urgency=low + + * Added XFCE support. + * Added Ubuntu Feisty (7.04) package support. + + -- Paul Boddie Mon, 27 Aug 2007 21:32:03 +0200 + +desktop (0.2.3-0ubuntu1) hoary; urgency=low + + * Added Python 2.3 support (using popen2 instead of + subprocess). + + -- Paul Boddie Wed, 19 Jul 2006 23:15:54 +0200 + +desktop (0.2.2-0ubuntu1) hoary; urgency=low + + * Changed the licence to LGPL. + + -- Paul Boddie Tue, 13 Jun 2006 00:04:05 +0200 + +desktop (0.2.1-0ubuntu1) hoary; urgency=low + + * New upstream release. + + -- Paul Boddie Thu, 8 Dec 2005 17:12:48 +0100 diff -r 8993138d9c8f -r ba9c38f29cbe packages/ubuntu-feisty/python-desktop/debian/compat --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/packages/ubuntu-feisty/python-desktop/debian/compat Mon Aug 27 19:34:04 2007 +0000 @@ -0,0 +1,1 @@ +5 diff -r 8993138d9c8f -r ba9c38f29cbe packages/ubuntu-feisty/python-desktop/debian/control --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/packages/ubuntu-feisty/python-desktop/debian/control Mon Aug 27 19:34:04 2007 +0000 @@ -0,0 +1,18 @@ +Source: desktop +Section: python +Priority: optional +Maintainer: Paul Boddie +Build-Depends: debhelper (>= 5.0.38), python-all-dev (>= 2.3.5-11), python-central (>= 0.5.6), python-epydoc (>= 2.1-6ubuntu1) +XS-Python-Version: all +Standards-Version: 3.7.2.1 + +Package: python-desktop +Architecture: all +Depends: ${python:Depends} +Suggests: kde, gnome, xfce4 +Conflicts: python2.4-desktop (<< 0.2.4-0ubuntu1) +Replaces: python2.4-desktop (<< 0.2.4-0ubuntu1) +XB-Python-Version: ${python:Versions} +Description: This module provides desktop environment detection and + resource opening support for a selection of common and standardised + desktop environments. diff -r 8993138d9c8f -r ba9c38f29cbe packages/ubuntu-feisty/python-desktop/debian/copyright --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/packages/ubuntu-feisty/python-desktop/debian/copyright Mon Aug 27 19:34:04 2007 +0000 @@ -0,0 +1,32 @@ +Package creator: + + Paul Boddie + +The origin of the package is: + + http://www.python.org/pypi/desktop + +Package author: + + Paul Boddie + +Copyright: + +Licence Agreement for desktop +----------------------------- + +Copyright (C) 2005, 2006, 2007 Paul Boddie + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA diff -r 8993138d9c8f -r ba9c38f29cbe packages/ubuntu-feisty/python-desktop/debian/docs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/packages/ubuntu-feisty/python-desktop/debian/docs Mon Aug 27 19:34:04 2007 +0000 @@ -0,0 +1,3 @@ +README.txt +docs +apidocs diff -r 8993138d9c8f -r ba9c38f29cbe packages/ubuntu-feisty/python-desktop/debian/rules --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/packages/ubuntu-feisty/python-desktop/debian/rules Mon Aug 27 19:34:04 2007 +0000 @@ -0,0 +1,66 @@ +#!/usr/bin/make -f +# A debian/rules file using python-central. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export DH_COMPAT=5 + +PYVERS=$(shell pyversions -vr) + +build: build-stamp + +build-stamp: $(PYVERS:%=build-python%) build-python-scripts + touch $@ + +build-python%: + python$* setup.py build_py + touch $@ + +build-python-scripts: + python setup.py build_scripts + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f *-stamp + rm -rf build + find . -name '*.py[co]' | xargs rm -f + dh_clean + +install: build install-prereq $(PYVERS:%=install-python%) install-python-scripts + # Script fixing would appear here. + +install-prereq: + dh_testdir + dh_testroot + dh_clean -k + +install-python%: + python$* setup.py install_lib --install-dir $(CURDIR)/debian/python-desktop/usr/lib/python$*/site-packages + +install-python-scripts: + python setup.py install_scripts --install-dir $(CURDIR)/debian/python-desktop/usr/bin + +# Build architecture-independent files here. + +binary-indep: install + tools/apidocs.sh + dh_testdir -i + dh_testroot -i + dh_pycentral -i + dh_installdocs -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +# Build architecture-dependent files here. + +binary-arch: + # Empty rule for this package. + +binary: binary-indep binary-arch +.PHONY: build clean binary-arch binary-indep binary install