Changeset 82
- Timestamp:
- 09/04/07 07:02:12 (2 years ago)
- Files:
-
- distrib/debian-sid (added)
- distrib/debian-sid/debian (copied) (copied from distrib/ubuntu/debian)
- distrib/debian-sid/debian/changelog (modified) (1 diff)
- distrib/debian-sid/debian/control (modified) (1 diff)
- distrib/debian-sid/debian/copyright (modified) (1 diff)
- distrib/debian-sid/debian/patches (added)
- distrib/debian-sid/debian/patches/01_not-scripts.patch (added)
- distrib/debian-sid/debian/patches/02_install_manpage.patch (added)
- distrib/debian-sid/debian/patches/03_duplicate_license.patch (added)
- distrib/debian-sid/debian/rules (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
distrib/debian-sid/debian/changelog
r58 r82 1 pybackpack (0. 4.5-0) edgy; urgency=low1 pybackpack (0.5.0-1) unstable; urgency=low 2 2 3 * New release 3 * Initial release 4 * Required patches for lintian cleanliness: 5 - 01_not-scripts.patch: Remove shebangs etc from non-executables 6 - 02_install_manpage.patch: Make setup.py install the manpage 7 - 03_duplicate_license.patch: Don't install COPYING file 4 8 5 -- Andy Price <andy@andrewprice.me.uk> Sat, 6 Jan 2007 04:48:49 +00009 -- Andy Price <andy@andrewprice.me.uk> Mon, 9 Apr 2007 04:31:34 +0100 6 10 7 pybackpack (0.4.4-0) edgy; urgency=low8 9 * Initial packaging10 11 -- Andy Price <andy@andrewprice.me.uk> Mon, 20 Nov 2006 03:03:22 +000012 distrib/debian-sid/debian/control
r58 r82 3 3 Priority: optional 4 4 Maintainer: Andy Price <andy@andrewprice.me.uk> 5 XS-Python-Version: all 6 Build-Depends: debhelper (>= 5.0.37.2), python-central (>= 0.5), desktop-file-utils, rdiff-backup (>= 0.12.7), python-dev 5 Build-Depends: cdbs, debhelper (>= 5), python-support (>= 0.3), desktop-file-utils, rdiff-backup (>= 0.12.7), python-dev 7 6 Standards-Version: 3.7.2 8 7 9 8 Package: pybackpack 10 9 Architecture: all 11 XB-Python-Version: ${python:Versions}12 10 Depends: ${python:Depends}, rdiff-backup (>= 0.12.7) 13 11 Provides: ${python:Provides} 14 Description: A user friendly file backup tool for Gnome .12 Description: A user friendly file backup tool for Gnome 15 13 A graphical tool to make file backup simpler. Provides a 16 14 user-friendly interface which allows you to back up your distrib/debian-sid/debian/copyright
r58 r82 1 1 This package was debianized by Andy Price <andy@andrewprice.me.uk> on 2 Mon, 20 Nov 2006 03:03:22 +0000.2 Mon, 09 Apr 2007 03:38:25 +0100 3 3 4 4 It was downloaded from distrib/debian-sid/debian/rules
r58 r82 1 1 #!/usr/bin/make -f 2 3 # Uncomment this to turn on verbose mode. 4 #export DH_VERBOSE=1 5 6 clean: 7 dh_testdir 8 dh_testroot 9 python setup.py clean --all 10 dh_clean 11 12 build: 13 install: patch 14 dh_testdir 15 dh_testroot 16 dh_clean -k 17 dh_installdirs 18 19 python setup.py install --root $(CURDIR)/debian/pybackpack 20 desktop-file-install \ 21 --vendor "" \ 22 --dir $(CURDIR)/debian/pybackpack/applications \ 23 --remove-category Application \ 24 --add-category Archiving \ 25 pybackpack.desktop 26 27 binary-indep: build install 28 binary-arch: build install 29 dh_testdir 30 dh_testroot 31 dh_install --sourcedir=debian/tmp 32 dh_installchangelogs CHANGELOG 33 dh_installdocs 34 dh_installexamples 35 dh_installdebconf 36 dh_pycentral 37 dh_python 38 dh_installman pybackpack.1 39 dh_link 40 dh_strip 41 dh_compress 42 dh_fixperms 43 dh_installdeb 44 dh_shlibdeps 45 dh_gencontrol 46 dh_md5sums 47 dh_builddeb 48 49 binary: binary-indep binary-arch 50 .PHONY: build clean binary-indep binary-arch binary install configure patch patch-stamp unpatch 2 DEB_PYTHON_SYSTEM = pysupport 3 include /usr/share/cdbs/1/rules/debhelper.mk 4 include /usr/share/cdbs/1/rules/simple-patchsys.mk 5 include /usr/share/cdbs/1/class/python-distutils.mk
