summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-22manpages: correct manual section and remove duplicate entryGuido Günther
2012-08-22docs: make refentry ids of manpages more consistentMarkus Lehtonen
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-08-22docs: fix cross-referencing in manpagesMarkus Lehtonen
Docbook2man has to be run twice to make sure the cross-references are correct. First pass is just to update the cross-reference file (manpage.refs). The second the builds the actual manpages. Otherwise forward-references might be broken. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-08-22GitRepository/branch_contains: remove prefix '*' in branch nameZhang Qiang
The git output always prefixes the current branch name with '*'. Without this fix branch_contains() always fails for the currently active branch. Signed-off-by: Zhang Qiang <qiang.z.zhang@intel.com>
2012-08-18manpage: Fix typo in git-dch's multimain-merge optionGuido Günther
Closes: #684322
2012-08-13dch: Fix error reporting on parsing errorsGuido Günther
2012-08-03Document changes and release 0.6.0~git20120803Guido Günther
2012-08-03Improve error reporting from uscanGuido Günther
by parsing out the warnings and error fields from the dehs output.
2012-08-03Move uscan to separate classGuido Günther
2012-08-02Add tests for gbp.deb.{DpkgCompareVersions,DscFile}Guido Günther
2012-08-02gbp.command_wrappers: Reformat to 80 chars line lengthGuido Günther
2012-08-01Test help output by importing the modulesGuido Günther
so we get correct coverage information for the scripts
2012-08-01Skip tests requiring devscripts if dch is not thereGuido Günther
so tests don't fail on rpm based systems.
2012-07-31Test behavior of gbp.scripts.dch.main().Daniel Dehennin
* tests/11_test_dch_main.py: Test common cases with "--release" and "--snapshot". Try 2 consecutive snapshots to check for merged entries.
2012-07-31Remove multiple spacesGuido Günther
2012-07-29GitModifier: add tests for dict interfaceGuido Günther
2012-07-29GitModifier: use __getitem__ to fetch dateGuido Günther
instead of accessing __dict__ directly which only has _date.
2012-07-28GitRepository: raise GitRepositoryError on git errorsGuido Günther
Raise GitRepositoryError in cases where CommandExecFailed (from GitCommand) was previously silently passed forward. Heavily based on a patch by Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-07-27GitRepository/get_commit_info: add file statusMarkus Lehtonen
Add file status and name to the info returned by the get_commit_info() method. Signed-off-by: Zhang Qiang <qiang.z.zhang@intel.com> Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-07-27GitRepository/get_commit_info: add committer infoMarkus Lehtonen
Add committer to the info returned by get_commit_info() method. Returns committer name, email and timestamp as a GitModifier object. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-07-27GitRepository/get_commit_info: add author timestampMarkus Lehtonen
Add author timestamps to the info returned by get_commit_info() method. Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-07-27GitModifier: More flexible date handlingGuido Günther
Allow to pass in the date as datetime object, timestamp or git raw date. and allow to retrieve these values. This make constructing GitModifiers from python simpler.
2012-07-27Fix variable renamingGuido Günther
2012-07-24GitRepository: option to ignore untracked in is_clean()Markus Lehtonen
Add an option to ignore untracked files when checking if the repository is clean. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-07-24GitRepository/get_author_info: return user.name as nameMarkus Lehtonen
Return users full name (user.name) instead of email (user.email) as the 'name' of the author when taking the value from git config. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-07-23gbp.git.GitRepository: Add remove_remoteGuido Günther
2012-07-23git.repository.GitRepository.add_remote_repo: use GitArgsGuido Günther
2012-07-03GitRepository: Make rev_parse's short option an int everywhereGuido Günther
2012-07-03GitRepository/rev_parse: add new argument 'short'Markus Lehtonen
Adds a new argument to get abbreviated SHA1. Also, modifies rev_parse() to use GitArgs class. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-07-02GitRepository/get_commit_info: check return value of git command correctlyMarkus Lehtonen
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-07-02Make exception syntax consistentGuido Günther
2012-06-30GitRepository: Add test that covers remote branches in has_branch()Guido Günther
2012-06-30GitRepository: return GitModifier object instead of separate fieldsGuido Günther
this make sure the number of return values doesn't stays sane when also returning timestamps and committer information.
2012-06-30GitRepository: make get_commit_info() more robustMarkus Lehtonen
Now uses git-show instead of git-log. This is needed for further enhancements (namely to get name-status for merge commits). Also, use null-character as the field separator which makes parsing more reliable. The method now returns 'body' of the commit message as is, without stripping or splitting to lines. In addition, get_commit_info() now uses GitArgs and _git_inout() instead of the deprecated _git_getoutput(). Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-06-30tests: test GitRepository.get_commit_info()Guido Günther
2012-06-30GitRepository: fix process cwd in _git_inout()Markus Lehtonen
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-06-30PristineTar: move Debian-specific stuff to DebianPristineTarMarkus Lehtonen
Continuation to the PristineTar refactoring, makes the "common" PristineTar independent of DebianPkgPolicy. This commit moves the Debian-specific has_commit() and checkout() methods to DebianPristineTar class and replaces them with more generic functions in the base class. Also, drops the Debian-specific get_commit() method completely, as it was not used outside the PristineTar class itself. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-06-25UpstreamSource: automatically detect package name and versions from directoriesGuido Günther
of the form packagename-<version>
2012-06-25Make TestDir testcase use a newly created directoryGuido Günther
neeeded for the upcoming packagename/version parsing support
2012-06-17deb.git: Fixed typo in method nameEd Bartosh
the double underscore prefix was dropped ages ago. Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
2012-06-17common/pq: use strip in apply_and_commit_patch()Markus Lehtonen
Use the strip information of the patch when applying patches. Also, changes GitRepository.apply_patch() to accept integer values as 'strip' argument. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-06-17import-orig: move is_link_target() to common moduleMarkus Lehtonen
This change makes is_link_target() re-usable in the upcoming RPM-tools. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
2012-06-08gbp.conf: Make config option printing more consistentGuido Günther
2012-06-01Document changes and release 0.6.0~git20120601Guido Günther
2012-06-01git-buildpackage: allow to build packages from detached HEAD stateGuido Günther
with --git-ignore-branch. Closes: #661598
2012-06-01git-buildpackage overlay-mode: don't fail on files named like tarballGuido Günther
Instead of moving individual files around simply rename the directories. This is faster and independent of the tarballs content. Closes: #675412
2012-06-01git-buildpackage: add missing importGuido Günther
so move_old_export works again
2012-05-31gbp.git.repository: add GitRepository.make_treeGuido Günther
Signed-off-by: Guido Günther <agx@sigxcpu.org>
2012-05-31gbp.git.repository: Add GitRepository.write_fileGuido Günther
Signed-off-by: Guido Günther <agx@sigxcpu.org>
2012-05-31gbp.git.repository: Add GitRepository.list_treeGuido Günther