~ubuntu-branches/ubuntu/hardy/pymsn/hardy-proposed

« back to all changes in this revision

Viewing changes to doc.py

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville, Sjoerd Simons, Laurent Bigonville, Jonny Lamb
  • Date: 2008-01-17 18:23:14 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080117182314-lwymmpnk2ut3rvr1
Tags: 0.3.1-0ubuntu1
[ Sjoerd Simons ]
* debian/rules: remove dh_python, it's no longer needed

[ Laurent Bigonville ]
* New upstream release (0.3.1)
* debian/control:
  - Add myself as an Uploaders
  - Add python:Provides for binary package
  - Add python-ctypes and python-crypto to build-deps/deps
* debian/rules: remove binary-install rule
* Add watch file
* remove pycompat file, not needed anymore
* Modify Maintainer value to match the DebianMaintainerField
  specification.

[ Jonny Lamb ]
* Added python-adns to build-deps/deps.
* Added python-pyopenssl to build-deps/deps.
* Updated copyright.
* Upped Standards-Version to 3.7.3.
* Added "XS-Dm-Upload-Allowed: yes" under the request of Sjoerd Simons.
* Added myself to Uploaders.
* Added Homepage to control.
* Added Vcs-Bzr to control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
                pass
37
37
            os.chdir(dir)
38
38
 
39
 
        if 'packages' in self.doc:
40
 
            if 'url' in self.doc:
41
 
                url = '--url=%s' % self.doc['url']
42
 
            else:
43
 
                url = ''
 
39
        if 'config' in self.doc:
44
40
            cmd = [self.epydoc,
45
41
                   '--no-private',
46
42
                   '--no-frames',
47
 
                   '--html',
48
 
                   url,
49
 
                   '-v']
50
 
            cmd.append('--name="%s"' % self.doc['description'])
51
 
            if 'output' in self.doc:
52
 
                cmd.append('-o %s' % \
53
 
                    abspath(join(self.doc_dir, self.doc['output'])))
54
 
            cmd.append(self.doc['packages'])
 
43
                   '--config "%s"' % self.doc['config']]
55
44
            subprocess.call(' '.join(cmd), shell=True)
56
45
 
57
46
        os.chdir(prev_dir)