We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf271e6 commit 9bf2e20Copy full SHA for 9bf2e20
1 file changed
debian/rules
@@ -2,6 +2,9 @@
2
# Uncomment this to turn on verbose mode.
3
#DH_VERBOSE=1
4
5
+# Prevent setuptools/distribute from accessing the internet.
6
+export http_proxy = http://127.0.0.1:9
7
+
8
%:
9
dh $@ --with python2 --buildsystem=python_distutils
10
@@ -21,3 +24,4 @@ override_dh_auto_clean:
21
24
rm -rf build
22
25
rm -rf docs/_build
23
26
rm -rf *.egg-info
27
+ find \( -name '._*' -o -name '*.pyc' \) -delete
0 commit comments