mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
- check if $SYSCACHE is not set and stay with the default, if SYSCACHE = 0 use the default from pbuilderrc or honor $DEBCACHE (LP: #156183) - removed $BINARCH check in pbuilder call, and set --debootstrapopts directly, it doesn't matter when it's always set. The Subshell call didn't work (LP: #175183) - added support for --http-proxy, honours now $http_proxy or $HTTP_PROXY - removed $COMPONENTS_LINE from pbuilder call, data is crippled in the pbuilder chroot. Instead of this behaviour add $BASE_DIR/etc/$DISTRIBUTION/apt.conf/ directory and install a sane sources.list, depending on the releases of Ubuntu and add --aptconfdir to pbuilder call (LP: #175183) - add support for gksudo|kdesudo|sudo depending on $DESKTOP_SESSION. (LP: #172943) * pbuilder-dist.bash_completion: (LP: #175728) - added bash_completion instructions * debian/rules: - install pbuilder-dist.bash_completion to /etc/bash_completion.d/
19 lines
494 B
Makefile
Executable File
19 lines
494 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
DEB_PYTHON_SYSTEM := pycentral
|
|
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
include /usr/share/cdbs/1/class/python-distutils.mk
|
|
|
|
DEB_INSTALL_MANPAGES_ubuntu-dev-tools = doc/*.1
|
|
|
|
build/ubuntu-dev-tools::
|
|
docbook2x-man doc/ppaput.1.docbook; mv ppaput.1 doc
|
|
|
|
install/ubuntu-dev-tools::
|
|
mkdir -p debian/ubuntu-dev-tools/etc/bash_completion.d/
|
|
cp -v pbuilder-dist.bash_completion debian/ubuntu-dev-tools/etc/bash_completion.d/pbuilder-dist
|
|
|
|
clean::
|
|
rm -f doc/ppaput.1
|