diff options
author | Guido Günther <agx@sigxcpu.org> | 2012-02-07 23:12:10 +0100 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2012-02-07 23:24:02 +0100 |
commit | 00799d7b99831362a9aa44d3e0d279c07f281faa (patch) | |
tree | c6557e74246ce404583fa82b58f61580f484c61d /gbp/deb | |
parent | ddbc17404620d35f0f3ba801184d7cb93bbeb539 (diff) | |
download | git-buildpackage-00799d7b99831362a9aa44d3e0d279c07f281faa.tar.gz git-buildpackage-00799d7b99831362a9aa44d3e0d279c07f281faa.tar.bz2 git-buildpackage-00799d7b99831362a9aa44d3e0d279c07f281faa.zip |
UpstreamSource: clarify method descriptions
Diffstat (limited to 'gbp/deb')
-rw-r--r-- | gbp/deb/__init__.py | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gbp/deb/__init__.py b/gbp/deb/__init__.py index cd413af0..e4c1f80b 100644 --- a/gbp/deb/__init__.py +++ b/gbp/deb/__init__.py @@ -112,7 +112,14 @@ class UpstreamSource(object): self.unpacked = self.path def _check_orig(self): - """Check if archive can be used as orig tarball""" + """ + Check if upstream source format can be used as orig tarball. + This doesn't imply that the tarball is correctly named. + + @return: C{True} if upstream source format is suitable + as upstream tarball, C{False} otherwise. + @rtype: C{bool} + """ if self.is_dir(): self._orig = False return @@ -191,8 +198,8 @@ class UpstreamSource(object): def _unpack_tar(self, dir, filters): """ - unpack a .orig.tar.gz to tmpdir, leave the cleanup to the caller in case of - an error + Unpack a tarball to I{dir} applying a list of I{filters}. Leave the + cleanup to the caller in case of an error. """ try: unpackArchive = gbpc.UnpackTarArchive(self.path, dir, filters) @@ -203,7 +210,7 @@ class UpstreamSource(object): def pack(self, newarchive, filters=[]): """ - recreate a new archive from the current one + Recreate a new archive from the current one @param newarchive: the name of the new archive @type newarchive: string |