aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin
Commit message (Collapse)AuthorAge
* git-pbuilder: export GBP_{DIST,ARCH,BUILDER} to the environmentGuido Günther2022-08-03
| | | | | This makes sure we don't export very generic vars while still being able to make decisions based on what was passed to gbp.
* Fix gbp-builder-mock to honor configured options for mockQuanah Gibson-Mount2021-05-18
|
* gbp-builder-mock: Update to work with current mock releasesQuanah Gibson-Mount2021-05-04
|
* bin: drop umlaut again for setuptoolsKen Dreyer2018-05-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | setuptools cannot handle non-ascii characters in files declared in "scripts". $ python setup.py develop [snip] File "setuptools/command/easy_install.py", line 726, in process_distribution self.install_egg_scripts(dist) File "setuptools/command/develop.py", line 188, in install_egg_scripts self.install_script(dist, script_name, script_text, script_path) File "setuptools/command/easy_install.py", line 805, in install_script self.write_script(script_name, _to_ascii(script_text), 'b') File "setuptools/command/easy_install.py", line 108, in _to_ascii return s.encode('ascii') UnicodeEncodeError: 'ascii' codec can't encode character '\xfc' in position 785: ordinal not in range(128) Commit 4424008f6aaa7ce93d02f0c4948ad50542284ece fixed this, and 23874c2c50ebd57426797d38f4f9c6c40dc336ec added the umlaut back in. Take it out again so "setup.py develop" and "setup.py install" succeeds again. See https://github.com/pypa/setuptools/issues/761 Signed-off-by: Guido Günther <agx@sigxcpu.org>
* 8bit GuidoGuido Günther2018-02-26
|
* git-pbuilder: properly escape -?Guido Günther2017-11-28
| | | | Closes: #882984
* git-pbuilder: handle --helpGuido Günther2017-11-10
| | | | Closes: #734862
* git-pbuilder: mark as executableGuido Günther2017-11-10
|
* bin: Drop umlaut to make setuptools happyGuido Günther2017-08-04
|
* git-pbuilder: drop environment variables that passed in our configGuido Günther2017-06-23
| | | | | | | We don't want to pass them on to pdebuild since this can trip up the invoked build system e.g. https://anonscm.debian.org/cgit/pkg-mozilla/icedove.git/commit/?id=56f8f4b728fa0a1075ccce1883a29bbe1daae303
* Update to git-pbuilder 1.48Guido Günther2017-05-01
| | | | | | incorporating the changes we made since 0.8.3 Thanks: Russ Allbery
* git-pbuilder: Check $OPTIONS for --basepathKevin Locke2017-04-19
| | | | | | | | | | | | | Previously only the arguments were checked for --basepath. This resulted in --basepath being ignored and overridden by the default when passed in --git-pbuilder-options (either via command arguments or from the configuration file). Since this is required when invoking gbp-buildpackage (because args are passed to --debbuildopts), it's a significant use case. This commit fixes the issue by searching both args and $OPTIONS. Closes: #856263 Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
* 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.
* 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
* Revert "git-pbuilder: Pass --debbuildopts to pbuilder instead of pdebuild"Guido Günther2017-01-19
| | | | | | This reverts commit 5211ab98f09f77082841538a1b3db935b2f21a2f. pdebuild needs some more work to fully support this. Reopens: #851657
* git-pbuilder: Pass --debbuildopts to pbuilder instead of pdebuildGuido Günther2017-01-18
| | | | | | This requires at least pbuilder 0.228 Closes: #851657
* git-pbuilder: Don't remove changes fileGuido Günther2017-01-18
| | | | Closes: #85047
* Update to git-builder 1.43Guido Günther2016-12-15
| | | | | | incorporating our "Run actions under "set -x" Thanks: Russ Allberry
* Run actions under "set -x"Guido Günther2016-12-08
| | | | | | | | | | cowbuilder is currently very terse about certain errors so run the action under "set -x" to print the exact command invocation. This will also help to diagnose sudo issues, etc. Since the script runs with '-e' we can safely change the "exit $?" to "exit 0".
* gbp-mock: handle single letter optionsTzafrir Cohen2016-12-08
| | | | | | by properly handling '-?' to request help output. Closes: #847464
* Update to git-pbuilder 1.42Guido Günther2016-08-15
|
* Update to git-pbuilder 1.40Guido Günther2016-01-25
| | | | Thanks: Russ Allberry
* git-pbuilder: Use gbp buildpackage instead of git-builpackageGuido Günther2015-12-06
| | | | | While the whole toolset is named git-buildpackage the actual build command is "gbp buildpackage" so name it like that.
* Update go git-pbuilder 1.38Guido Günther2015-12-06
|
* git-pbuilder: spelling fixKen Dreyer2015-12-01
| | | | | | "defualt" -> "default" Signed-off-by: Guido Günther <agx@sigxcpu.org>
* buildpackage-rpm: add support for mock chroot builderGuido Günther2015-11-16
| | | | | | | | | | Try: gbp buildpackage-rpm --git-mock --git-dist=epel-6 Results will be under ../rpmbuild/results/ This is very heavily based on a patch from Tzafrir Cohen.
* Fix error messageGuido Günther2015-11-15
| | | | We're invoked by 'gbp buildpackage' not git-buildpackage
* Update to git-pbuilder 1.37Guido Günther2015-10-25
| | | | | | incorporating our changes Thanks: Russ Allberry
* Check correct config file when using qemubuilderJames Clarke2015-10-20
| | | | Signed-off-by: Guido Günther <agx@sigxcpu.org>
* Check for sudoGuido Günther2015-08-20
| | | | Closes: #796046
* Update to git-pbuilder 1.35Guido Günther2015-08-17
| | | | Closes: #765724
* git-pbuilder: Support creation of chroots for LTSGuido Günther2015-05-22
|
* Drop all gbp-* and git-* commandsGuido Günther2015-02-17
| | | | as announced in the deprecation notice from June 2013.
* Update to git-pbuilder 1.33Guido Günther2014-09-07
|
* Don't delete *_source.changes on source only buildsGuido Günther2014-08-26
| | | | Closes: #758726
* Use --distribution instead of --distGuido Günther2013-11-29
| | | | Closes: #730788
* Update to git-pbuilder 1.30Guido Günther2013-11-06
| | | | that resyncs with what we shipped in gbp.
* Backports got integrated into the main archiveGuido Günther2013-09-17
| | | | From wheezy on we can use the main archive
* Update to git-pbuilder 1.29Guido Günther2013-09-17
|
* ALlow to set the output directory via GIT_PBUILDER_OUTPUT_DIRGuido Günther2012-04-10
| | | | Helps with #657277
* Update to git-pbuilder 1.27Guido Günther2012-01-13
| | | | | | This adds support for creating backport build environments. Thanks: Russ Allbery
* Update git-pbuilderGuido Günther2011-12-26
| | | | | Closes: #635061, #642355 Thanks: Russ Allbery
* Get rid of the symlinkGuido Günther2011-11-01
by moving the commands to gbp/scripts/