~ubuntu-branches/ubuntu/natty/duplicity/natty-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Michael Terry
  • Date: 2010-01-09 03:21:49 UTC
  • mfrom: (5.2.6 squeeze)
  • Revision ID: mike@mterry.name-20100109032149-qlga2seelidmfath
* Merge from debian unstable, remaining changes: (LP: #428206)
  - 02gnupginterface.dpatch: Use system's python-gnupginterface
* fixed ssh backend failure (tried to import local pexpect module)
  (closes: #556095)
* New upstream release (closes: #539903, #420858)
* does no longer depend on python-gnupginterface: upstream
  provides a modified version which is claimed to be incompatible
* does not install a local version of python-pexpect 
  anymore (closes: #555359)
* adjusted rules to cater for future python2.6 install
  setup (closes: #547825)
* New upstream release
* lifted standards version
* New upstream release (closes: #536361, #537260, #42858, 
  #399371, #388180, #386749 )
* new project homepage
* added notes regarding changed archive-dir behaviour

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        dh_installdirs
55
55
 
56
56
# Add here commands to install the package into debian/duplicity.
57
 
        python setup.py install --prefix=$(PREFIX) --no-compile --install-layout=deb
 
57
        python setup.py install --prefix=$(PREFIX) --no-compile
58
58
 
59
59
# remove GnuPGInterface.py as we already have it in
60
60
# python-gnupginterface
61
61
        rm -f $(PREFIX)/lib/python*/*-packages/duplicity/GnuPGInterface.py
62
62
 
63
 
# fix permission for tarfile.py
64
 
        chmod 755 $(PREFIX)/lib/python*/*-packages/duplicity/tarfile.py
 
63
# no more local pexpect
 
64
        rm -f $(PREFIX)/lib/python*/*-packages/duplicity/pexpect.py
 
65
 
65
66
# remove docs as we create them with debhelper
66
67
        rm -rf $(PREFIX)/share/doc/duplicity-*
67
68