summaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Document changes and release 0.8.13debian/0.8.13Guido Günther2017-03-02
|
* Mention qemubuilder on all git-pbuilder related optionsGuido Günther2017-02-28
|
* manpages: docuemnt --git-pbuilder-options only takes effect with --git-pbuilderGuido Günther2017-02-27
| | | | See #856263
* git-pbuilder: don't do set -x by defaultGuido Günther2017-02-20
| | | | to avoid spewig on stderr. Use GIT_PBUILDER_DEBUG to enable it.
* Improve CSS a bitGuido Günther2017-02-19
|
* docs: fix typoGuido Günther2017-02-19
|
* docs: avoid too much whitespace at the end of examplesGuido Günther2017-02-19
|
* docs: add missing colonsGuido Günther2017-02-19
|
* docs: use optionalGuido Günther2017-02-19
|
* docs: update introductionGuido Günther2017-02-19
|
* docs: bump copyright yearGuido Günther2017-02-19
|
* Improve error message for non-native packages with broken version numbersGuido Günther2017-02-14
| | | | Closes: #824634
* Use the source package instead of the chagenlog for tarball namesGuido Günther2017-02-13
| | | | | | to improve readability. Git-Dch: Ignore
* Pass source pkg around instead of changelogGuido Günther2017-02-13
| | | | | | | This gives us more control since we have the full source package information and increases readability. Git-Dch: Ignore
* deb.source: Add version propertiesGuido Günther2017-02-13
| | | | | | so we don't have to redirect via the changelog Git-Dch: Ignore
* Use vfs upfrontGuido Günther2017-02-12
| | | | Git-Dch: Ignore
* docs: fix markupGuido Günther2017-02-11
|
* Merge tag 'debian/0.8.12.2'Guido Günther2017-02-07
|\ | | | | | | git-buildpackage Debian release 0.8.12.2
| * Document changes and release 0.8.12.2debian/0.8.12.2debian/stretchGuido Günther2017-02-07
| |
| * GitRepository: shorten reflog messageGuido Günther2017-02-07
| | | | | | | | | | Closes: #854333 Thanks: Chris Lamb for the report
* | import_dsc: delay pristine-tar import to the very endGuido Günther2017-02-07
| | | | | | | | | | | | | | This makes sure we have a sane debian and upstream branch already so we don't leave the repo in an inconsistent state in case of failure. Closes: #851287
* | GitRepository: shorten reflog messageGuido Günther2017-02-06
| | | | | | | | | | Closes: #854333 Thanks: Chris Lamb for the report
* | On a patch-queue branch tag the corresponding debian branch instead.Guido Günther2017-02-06
| | | | | | | | | | | | | | | | | | | | Eases building and tagging of source format 3.0 (quilt) packages since one can build from a (throw away) patch-queue branch that has the quilt patches applied (i.e. patch-queue/master) while the tag is created at the branch point where the patch-queue branch diverged from master. (usually the tip). Closes: #583938
* | tests: add add_files helperGuido Günther2017-02-06
| |
* | Add pq component testGuido Günther2017-02-06
| | | | | | | | to make sure we exercise main()
* | docs: don't mark toggles as replaceableGuido Günther2017-02-06
| | | | | | | | | | | | They are fixed strings. Git-Dch: Ignore
* | Name opts consistentlyGuido Günther2017-02-06
| | | | | | | | Gbp-Dch: Ignore
* | Use a symlink to supercomand instead of pkgresources.load_entry_pointGuido Günther2017-02-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This sppeds up startup a lot and thus makes bash completion much more responsive: $ gbp buildpackge --help real 0m0,573s user 0m0,532s sys 0m0,036s $ time python /usr/lib/python2.7/dist-packages/gbp/scripts/supercommand.py buildpackage --help real 0m0,051s user 0m0,040s sys 0m0,012s Closes: #853283
* | Make epydoc happyGuido Günther2017-02-01
| | | | | | | | | | (although this docstring is sphinx style but we need to switch for python3 anyway)
* | import_dsc: use three slashes by default for apt URLsGuido Günther2017-01-31
| | | | | | | | | | We don't have a host part so leave that empty. Since there very likely won't be any ever accept only two slashes as well.
* | tests: add missing bracesGuido Günther2017-01-30
| | | | | | | | otherwise the test is skipped
* | Extract a function to clean the working tree.Ben Finney2017-01-29
| |
* | pq: Filter out comments from series diffGuido Günther2017-01-29
|/ | | | | | | When creating the delta of added and dropped pachtches ignore comment lines in the series file. Closes: #852817
* Document changes and release 0.8.12.1debian/0.8.12.1Guido Günther2017-01-27
|
* Document changes and release 0.8.12debian/0.8.12Guido Günther2017-01-27
|
* git-pbuilder: preserve exit statusGuido Günther2017-01-25
| | | | | 390d34aaf771cde8edba4230efc0cd72e8fd82a4 got the exit status of the set instead of pdebuild. To avoid printing another command use "set -e"
* git-pbuilder: print pdebuild command as executedGuido Günther2017-01-24
| | | | to ease debugging things like #852264
* dch: Allow to run from subdirectoryGuido Günther2017-01-23
| | | | Resolves #1
* tests: make sure we fail properly with toplevel == TrueGuido Günther2017-01-23
| | | | Git-Dch: Ignore
* Make flake8 happyGuido Günther2017-01-22
|
* GitRepository: allow to init git repository from a subdirGuido Günther2017-01-22
|
* Make is simple to override nose flags on the command lineGuido Günther2017-01-21
| | | | e.g. for passing in -x
* buildpackage: fix exporting of working copy when .git is not a directoryMarkus Lehtonen2017-01-20
| | | | | | as is the case with git submodules lately, for example Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
* GitRepository: properly determine git-dirGuido Günther2017-01-20
| | | | | | | instead of assuming '.git' Heavily based on a patch by Markus Lehtonnen Closes: #674015
* component test: Use more fixturesGuido Günther2017-01-20
|
* Document changes and release 0.8.11debian/0.8.11Guido Günther2017-01-20
|
* pq: Hardcode commit abbrev to 7 when exporting patchesGuido Günther2017-01-20
| | | | | | This avoids path hurn with git >= 2.11.0 Closes: #848354
* Allow to pass config args to gitGuido Günther2017-01-20
|
* buildpackage: verify generated tarballsGuido Günther2017-01-20
| | | | when using pristine-tar
* PristineTar: add verifyGuido Günther2017-01-20
|