Changeset 82

Show
Ignore:
Timestamp:
09/04/07 07:02:12 (2 years ago)
Author:
andy
Message:

Add debian sid distribution files

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • distrib/debian-sid/debian/changelog

    r58 r82  
    1 pybackpack (0.4.5-0) edgy; urgency=low 
     1pybackpack (0.5.0-1) unstable; urgency=low 
    22 
    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 
    48 
    5  -- Andy Price <andy@andrewprice.me.uk>  Sat,  6 Jan 2007 04:48:49 +0000 
     9 -- Andy Price <andy@andrewprice.me.uk>  Mon,  9 Apr 2007 04:31:34 +0100 
    610 
    7 pybackpack (0.4.4-0) edgy; urgency=low 
    8  
    9   * Initial packaging 
    10  
    11  -- Andy Price <andy@andrewprice.me.uk>  Mon, 20 Nov 2006 03:03:22 +0000 
    12  
  • distrib/debian-sid/debian/control

    r58 r82  
    33Priority: optional 
    44Maintainer: 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 
     5Build-Depends: cdbs, debhelper (>= 5), python-support (>= 0.3), desktop-file-utils, rdiff-backup (>= 0.12.7), python-dev 
    76Standards-Version: 3.7.2 
    87 
    98Package: pybackpack 
    109Architecture: all 
    11 XB-Python-Version: ${python:Versions} 
    1210Depends: ${python:Depends}, rdiff-backup (>= 0.12.7) 
    1311Provides: ${python:Provides} 
    14 Description: A user friendly file backup tool for Gnome. 
     12Description: A user friendly file backup tool for Gnome 
    1513 A graphical tool to make file backup simpler. Provides a  
    1614 user-friendly interface which allows you to back up your  
  • distrib/debian-sid/debian/copyright

    r58 r82  
    11This package was debianized by Andy Price <andy@andrewprice.me.uk> on 
    2 Mon, 20 Nov 2006 03:03:22 +0000. 
     2Mon, 09 Apr 2007 03:38:25 +0100 
    33 
    44It was downloaded from 
  • distrib/debian-sid/debian/rules

    r58 r82  
    11#!/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 
     2DEB_PYTHON_SYSTEM = pysupport 
     3include /usr/share/cdbs/1/rules/debhelper.mk 
     4include /usr/share/cdbs/1/rules/simple-patchsys.mk 
     5include /usr/share/cdbs/1/class/python-distutils.mk