~ubuntu-branches/debian/sid/bzr-builddeb/sid

« back to all changes in this revision

Viewing changes to properties.py

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij, Jelmer Vernooij, Martin Packman
  • Date: 2011-10-01 21:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20111001212705-29f1lpwpsdb2dork
Tags: 2.7.9
[ Jelmer Vernooij ]
* Support .tar.xz Debian files rather than .tar.lzma.

[ Martin Packman ]
* Support non-ascii characters in changelog entry when determining
  commit message. LP: #853664

[ Jelmer Vernooij ]
* Use more complete control file during examples. Closes: #642818

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
class BuildProperties(object):
23
23
  """Properties of this specific build"""
24
24
 
25
 
  def __init__(self, changelog, build_dir, tarball_dir, larstiq):
 
25
  def __init__(self, changelog, build_dir, tarball_dir, top_level):
26
26
    self._changelog = changelog
27
27
    self._build_dir = build_dir
28
28
    self._tarball_dir = tarball_dir
29
 
    self._larstiq = larstiq
 
29
    self._top_level = top_level
30
30
  
31
31
  def package(self):
32
32
    return self._changelog.package
58
58
  def tarball_dir(self):
59
59
    return self._tarball_dir
60
60
 
61
 
  def larstiq(self):
62
 
    return self._larstiq
 
61
  def top_level(self):
 
62
    return self._top_level
63
63
 
64
64
# vim: ts=2 sts=2 sw=2