aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* Include missing doctests in generated API docsGuido Günther2012-02-09
|
* PristineTar: fix links in testcasesGuido Günther2012-02-09
|
* Document changes and release 0.6.0~git20120209debian/0.6.0_git20120209Guido Günther2012-02-09
|
* Document changes and release 0.6.0~git20120207Guido Günther2012-02-07
|
* import_orig: Properly detect .tgz and other abbreviated file extensionsGuido Günther2012-02-07
| | | | Closes: #658777
* import_orig: clarify function descriptionGuido Günther2012-02-07
|
* UpstreamSource: tgz is suitable as upstream tarball.Guido Günther2012-02-07
|
* UpstreamSource: clarify method descriptionsGuido Günther2012-02-07
|
* UpstreamSource: turn is_* vars and properties into methodsGuido Günther2012-02-07
| | | | | since this is more consistent with the other is_* methods in other classes.
* Document changes and release 0.6.0~git20120124debian/0.6.0_git20120124Guido Günther2012-01-31
|
* GitRepository: Use _git_inout() in __init__()Guido Günther2012-01-31
| | | | to avoid misleading error message
* GitRepository: Allow empty input in _git_inout()Guido Günther2012-01-31
| | | | so it can replace _git_getoutput()
* GitRepository: rename to __git_inout to _git_inoutGuido Günther2012-01-31
| | | | for readability.
* GitRepository: Rename __git_getoutput to _git_getoutputGuido Günther2012-01-31
| | | | | and deprecate it since _git_inout is more flexible, allows to capture stderr and doesn't return a list of strings.
* GitRepository: allow to capture stderr in __git_inoutGuido Günther2012-01-31
| | | | stderr was always None.
* Depend on pristine-tar for the testsGuido Günther2012-01-30
|
* PristineTar: add testcaseGuido Günther2012-01-30
|
* PristineTar: fix match when not passing in a compression typeGuido Günther2012-01-30
|
* PristineTar: add missing import for debug outputGuido Günther2012-01-30
|
* GitRepository: document archive()Guido Günther2012-01-30
|
* PristineTar: make sure we set the current working directoryGuido Günther2012-01-30
| | | | otherwise this will fail when invoked from outside the git tree
* Remove comparison with True to make pychecker happyGuido Günther2012-01-23
|
* GitRepository: allow git.commit_dir to create new branchesMarkus Lehtonen2012-01-23
| | | | | commit_dir creates new orphan branch if the given branch is not found and create_missing_branch is allowed.
* gbp-pq: don't crash in get_maintainer_from_control()Markus Lehtonen2012-01-23
| | | | even if debian/control is missing.
* Document changes and release 0.6.0~git20120123Guido Günther2012-01-23
|
* buildpackage: Add pristine-tar-commit optionGuido Günther2012-01-22
| | | | | | This option allows to auto commit a generated tarball to the pristine-tar branch to simplify building non-dfsg clean packages and to make it easier to track uptream git.
* PristineTar: move to separate moduleGuido Günther2012-01-22
| | | | | and make it accessible from GitRepository to group checkout/checkin/lookup.
* deb.changelog: add name propertyGuido Günther2012-01-22
|
* deb: Add UpstreamSource.build_tarball_nameGuido Günther2012-01-22
| | | | | to build a tarball name from a (package, version, compression) triplet optionally adding a directory.
* tristate: fix __repr__Guido Günther2012-01-22
| | | | and add doctest
* DebianGitRepository: Add parameter and return types to find_version()Guido Günther2012-01-21
|
* deb: make find_version() return sha1 of a commitMarkus Lehtonen2012-01-21
| | | | | | Change find_version() so that it always returns sha1 of a commit object. That is, annotated tags are dereferenced to a commit object. Previously find_commit returned the sha1 of the tag object.
* GitRepository: add get_obj_type()Markus Lehtonen2012-01-21
| | | | get_obj_type() returns the type of a git repository object.
* DebianGitRepository: fix module descriptionGuido Günther2012-01-21
|
* Don't assume gzip compression of the orig tarballGuido Günther2012-01-18
|
* Add git-depth option to gbp-clone and gbp-pullMarkus Lehtonen2012-01-17
| | | | | Allows creating and deepening shallow clones. This is sometimes useful for e.g. saving bandwidth when cloning.
* debian/rules: be verbose on epydoc markup errorsGuido Günther2012-01-15
|
* GitRepository: Fix types in diff docstringGuido Günther2012-01-15
|
* GitRepository: add depth parameter to fetch()Markus Lehtonen2012-01-15
| | | | Allows deepening of shallow clones.
* GitRepository: fix documentation of fetch()Markus Lehtonen2012-01-15
|
* deb: minor refactor of parameters of has_orig()Markus Lehtonen2012-01-15
|
* deb: minor refactor of parameters of symlink_orig()Markus Lehtonen2012-01-15
|
* GitRepository: add diff()Markus Lehtonen2012-01-15
| | | | Diff two git repository objects (tag, commit, tree or blob).
* GitRepository: add rename_branch() methodMarkus Lehtonen2012-01-15
|
* gbp-posttag-push: check if upstream is up to date per remoteGuido Günther2012-01-13
| | | | | This isn't perfect since someone else might have already pushed that ref and we might not have pulled it yet.
* GitRepository: don't explicitly set the tags optionGuido Günther2012-01-13
| | | | to avoid missing remotes on "git fetch".
* Update to git-pbuilder 1.27Guido Günther2012-01-13
| | | | | | This adds support for creating backport build environments. Thanks: Russ Allbery
* GitRepository: Allow to explicitly fetch tagsGuido Günther2012-01-12
|
* buildpackage: Allow to pass pbuilder optionsGuido Günther2012-01-11
| | | | via commandline or gbp.conf
* gbp-post-tag-push: Add --verbose optionGuido Günther2012-01-10
| | | | to ease debugging