From a93abb6e94307c747422ec0699f1dac685cb7f86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Cardona?= Date: Wed, 24 Jun 2015 18:43:45 +0200 Subject: [debian] don't call setup.py with -q If everything goes well, it doesn't matter, nobody will look at the log. If something goes wrong, -q will just result in missing information and a frustrated developer. Frustration can kill, let's save some kittens. --- debian/rules | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/debian/rules b/debian/rules index 5c427b1..16f0d94 100755 --- a/debian/rules +++ b/debian/rules @@ -32,19 +32,19 @@ build: build-indep override_dh_auto_build: dh_auto_build ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS))) - python setup.py -q build --build-purelib build/lib + python setup.py build --build-purelib build/lib $(MAKE) -C doc endif override_dh_auto_install: - python setup.py -q install --no-compile \ + python setup.py install --no-compile \ --root=$(CURDIR)/debian/$(PACKAGE)/ \ ${py_setup_install_args} # remove test directory rm -rf debian/$(PACKAGE)/$(PYLIB)/logilab/common/test ifneq (,$(build_py3k)) - python3 setup.py -q install --no-compile \ + python3 setup.py install --no-compile \ --root=$(CURDIR)/debian/$(PACKAGE3)/ \ ${py_setup_install_args} # remove test directory @@ -66,12 +66,12 @@ endif override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) - python setup.py -q install \ + python setup.py install \ --root=$(CURDIR)/testing/ ${py_setup_install_args} echo 'import site, os.path; site.addsitedir(os.path.dirname(__file__))' > testing/$(PYLIB)/sitecustomize.py PYTHONPATH=$(CURDIR)/testing/$(PYLIB) python bin/pytest -t $(CURDIR)/test ifneq (,$(build_py3k)) - python3 setup.py -q install \ + python3 setup.py install \ --root=$(CURDIR)/testing/ ${py_setup_install_args} echo 'import site, os.path; site.addsitedir(os.path.dirname(__file__))' > testing/$(PYLIB3)/sitecustomize.py PYTHONPATH=$(CURDIR)/testing/$(PYLIB3) python3 bin/pytest -t $(CURDIR)/test -- cgit v1.2.1