Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
lower package build time opt. for some archs
· f34c02da
Michael R. Crusoe
authored
Oct 25, 2019
f34c02da
increase build verbosity
· 34f553df
Michael R. Crusoe
authored
Oct 25, 2019
34f553df
release
· 4d3d4b7e
Michael R. Crusoe
authored
Oct 25, 2019
4d3d4b7e
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
4d3d4b7e
mypy (0.740-3) unstable; urgency=medium
* Further lower package build time optimization for armhf, armel, mips64el,
mipsel, alpha, m68k, powerpc, risc64, and sh4
* Increased the build verbosity
-- Michael R. Crusoe <michael.crusoe@gmail.com> Thu, 24 Oct 2019 21:27:32 +0200
mypy (0.740-2) unstable; urgency=medium
* Incorporate high quality hand written manual pages courtesy of
...
...
debian/patches/series
View file @
4d3d4b7e
ignore_mypyc
proper_plugin
spelling
verbose
debian/patches/verbose
0 → 100644
View file @
4d3d4b7e
Author: Michael R. Crusoe <michael.crusoe@gmail.com>
Description: make the build more verbose
--- mypy.orig/setup.py
+++ mypy/setup.py
@@ -148,6 +148,7 @@
# Use multi-file compliation mode on windows because without it
# our Appveyor builds run out of memory sometimes.
multi_file=sys.platform == 'win32' or force_multifile,
+ verbose=True,
)
cmdclass['build_ext'] = MypycifyBuildExt
else:
debian/rules
View file @
4d3d4b7e
...
...
@@ -14,8 +14,10 @@ endif
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
include /usr/share/dpkg/default.mk
ifneq (,$(filter $(DEB_HOST_ARCH),arm
el alpha m68k powerpc sh
4))
ifneq (,$(filter $(DEB_HOST_ARCH),arm
hf mips64el mipsel ia64 risc6
4))
export MYPYC_OPT_LEVEL=2
else ifneq (,$(filter $(DEB_HOST_ARCH),armel alpha m68k powerpc sh4))
export MYPYC_OPT_LEVEL=1
endif
%:
...
...