summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2015-03-27Improve error messageGuido Günther
2015-03-27Fix print function usage in examples tooGuido Günther
2015-03-27Extract exception message in a less arcane wayGuido Günther
2015-02-20Handle ConfigParser -> configparser renameGuido Günther
to work towards Python3 support Gbp-Dch: Ignore
2015-02-20Don't use print as a statementGuido Günther
via 2to3-3.4 -w -f print . to work towards python3 support Gbp-Dch: Ignore
2013-05-30Add Jenkins Scratchbuilder exampleGuido Günther
It's a simple script that can be used to build Debian packages via gbp and Jenkins.
2013-03-14examples: fix loggingGuido Günther
Thanks: Carsten Schoenert
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-02Make exception syntax consistentGuido Günther
2012-03-28gbp-add-patch: Fix typoGuido Günther
2012-03-27gbp-posttag-push: Tighten branch regexpGuido Günther
so we don't push to branches ending with the same name accidentally.
2012-02-13Refactor config.py as preparation for rpm support.Markus Lehtonen
Split GbpOptionParser in to a common base class and a Debian specific subclass, as a preparation for upcoming RPM support. This allows having different default values (and help texts) for common options between different package types, and, clearer separation of package type specific options. Signed-off-by: Guido Günther <agx@sigxcpu.org>
2012-01-13gbp-posttag-push: check if upstream is up to date per remoteGuido Günther
This isn't perfect since someone else might have already pushed that ref and we might not have pulled it yet.
2012-01-10gbp-post-tag-push: Add --verbose optionGuido Günther
to ease debugging
2012-01-10gbp-posttag-push: Allow to push the upstream tag tooGuido Günther
via the -u option.
2011-12-26gbp-add-patch: simplify by using existing classesGuido Günther
2011-11-20GitRepository: Return GitModifier from get_author_infoGuido Günther
2011-10-22Replace GitAdd by GitRepository.add_filesGuido Günther
Git-Dch: Ignore
2011-07-26git-dch: add formatter that wraps the changelog entryGuido Günther
Closes: #626439
2011-04-28Improve readabilityGuido Günther
Git-Dch: Ignore
2011-02-27Add script to ignore .pc and tell dpkg-source unpatch the sourceGuido Günther
See #591858.
2011-01-11Make gbp-create-remote-repo a first class citizenGuido Günther
Add manpage, move into path, add bash completion
2011-01-11gbp-create-remote-repo: allow to set up remote branch trackingGuido Günther
2010-08-31Don't hardcode package nameGuido Günther
2010-08-24Simple helper to tag a version if using git-svnGuido Günther
2010-08-12Deprecate our own pbuilder helpersGuido Günther
2010-07-30Simple helper to create remote reposGuido Günther
based on dom-new-git-repo from the OCaml maintainers as well as aa-create-repo. Closes: #540185
2010-07-27Adjust for zeitgeist 0.4.0Guido Günther
2010-05-02Don't assume the repo has a '/'Guido Günther
2010-05-02Fix typoGuido Günther
Thanks: Paul Menzel
2010-04-30zeitgeist hook: don't fail on umlautsGuido Günther
2010-04-12Be silentGuido Günther
Git-Dch: Ignore
2010-04-10Add simple Zeitgist data providerGuido Günther
2010-01-31gbp-add-patch: Strip path from patchnameGuido Günther
and handle missing files gracefully.
2010-01-10Add gbp-add-patchGuido Günther
to easily commit patches from debian/patches
2009-11-22Make the default build command 3.x source format safeGuido Günther
Instead of passing "-i\.git/ -I.git" to debuild use "-i -I". This makes sure we use the default behaviour of dpkg-source. Closes: #553079
2009-11-22Make gbp-clone, gbp-pull and gbp-pq first class citizensGuido Günther
by moving them from examples/ to /usr/bin/
2009-11-07add --redo-pqGuido Günther
so a "gbp-pull --redo-pq" also refreshes the patch-queue branch
2009-11-07Don't fail when series file is missing.Guido Günther
Create an empty patch-queue branch instead.
2009-11-07add option to drop patch-queue branchGuido Günther
2009-10-25check for clean repoGuido Günther
2009-10-24add gbp-pullGuido Günther
Adresses another part of #540185.
2009-10-24import Command tooGuido Günther
fixes "--verbose"
2009-09-05Add gbp-cloneGuido Günther
to examples. Using this to clone repositories will automatically track the remote branches used by gbp. Adresses parts of #540185.
2009-07-23add gbp-pq to examplesGuido Günther
Closes: #537212
2009-04-05pass GBP_BUILD_DIR to the build commandGuido Günther
this allows hooks to figure out where to copy back the build result. Adjust the cowbuilder example accordingly.
2009-03-05add git-builder cowbuilder exampleGuido Günther
2009-02-26fix for remote repos containing '.'Guido Günther
2009-02-22add gbp-posttag-push exampleGuido Günther
2009-02-20rename git-pbuilder to gbp-pbuilderGuido Günther
so we don't pollute the git- namespace with our helpers.