From: Peter Michael Green Date: Sat, 28 Dec 2019 09:54:43 +0000 (+0000) Subject: Merge tag '1.39.0+dfsg1-4' into bullseye-working X-Git-Tag: archive/raspbian/1.39.0+dfsg1-4+rpi1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b3ae8f3c52cdeddaf4a377fce0589e9f4d61e4f5;p=rustc.git Merge tag '1.39.0+dfsg1-4' into bullseye-working --- ef88c9a85147a8a8b717baa1afe96213804c4258 diff --cc debian/changelog index 250036da4f,3e16acdcc6..605c0fafc8 --- a/debian/changelog +++ b/debian/changelog @@@ -1,13 -1,41 +1,52 @@@ - rustc (1.37.0+dfsg1-1+rpi1) bullseye-staging; urgency=medium ++rustc (1.39.0+dfsg1-4+rpi1) bullseye-staging; urgency=medium + + [changes brought forward from 1.15.1+dfsg1-1~exp3+rpi1 by Peter Michael Green at Wed, 15 Mar 2017 10:16:18 +0000] + * Build for armv6. + [changes introduced in 1.18.0+dfsg1-4+rpi1 by Peter Michael Green] + * Disable testsuite. + [changes introduced in 1.37.0+dfsg1-1+rpi1 by Peter Michael Green] + * Set DEB_BUILD_RUST_TYPE based on the compiler that is actually installed. + - -- Peter Micheal Green Tue, 17 Sep 2019 01:17:52 +0000 ++ -- Peter Micheal Green Sat, 28 Dec 2019 09:52:57 +0000 ++ + rustc (1.39.0+dfsg1-4) unstable; urgency=medium + + * Update to LLVM 9. (Closes: #946886) + + -- Ximin Luo Mon, 23 Dec 2019 03:21:02 +0000 + + rustc (1.39.0+dfsg1-3) unstable; urgency=medium + + * Fix mips patch involving mxgot for new RUSTFLAGS behaviour. + + -- Ximin Luo Fri, 06 Dec 2019 22:18:53 +0000 + + rustc (1.39.0+dfsg1-2) unstable; urgency=medium + + * Include reproducibility patch for compiler-builtins. + * Use python3 instead of python to run rustbuild. (Closes: #938422) + * Expand d-ignore-error-detail-diff.patch for unfixed upstream #53081. + + -- Ximin Luo Thu, 05 Dec 2019 22:51:41 +0000 + + rustc (1.39.0+dfsg1-1) unstable; urgency=medium + + * New upstream release. + + -- Ximin Luo Sat, 30 Nov 2019 22:20:48 +0000 + + rustc (1.38.0+dfsg1-2) unstable; urgency=medium + + * Fix building with rustc 1.38.0 + * Fix building with cargo 0.40.0 + + -- Ximin Luo Fri, 29 Nov 2019 00:05:16 +0000 + + rustc (1.38.0+dfsg1-1) unstable; urgency=medium + + * New upstream release. + + -- Ximin Luo Tue, 26 Nov 2019 14:41:46 +0000 rustc (1.37.0+dfsg1-1) unstable; urgency=medium diff --cc debian/rules index 8b471bdb69,3ee919deb1..26211e71a3 --- a/debian/rules +++ b/debian/rules @@@ -233,10 -238,8 +238,8 @@@ override_dh_auto_test-arch test "$$(stat -c %s "$$x")" -lt 6000000; \ done ifeq (, $(filter nocheck,$(DEB_BUILD_PROFILES))) -ifeq (, $(filter nocheck,$(DEB_BUILD_OPTIONS))) +ifeq (testsuitedisabled, $(filter nocheck,$(DEB_BUILD_OPTIONS))) - # TODO: eventually, drop --target $(DEB_HOST_RUST_TYPE) and run tests for - # all targets including e.g. wasm32-unknown-unknown - { $(RUSTBUILD_TEST) --no-fail-fast --target $(DEB_HOST_RUST_TYPE) $(RUSTBUILD_FLAGS) $(RUSTBUILD_TEST_FLAGS); echo $$?; } | tee -a $(TEST_LOG) + { $(RUSTBUILD_TEST) --no-fail-fast $(RUSTBUILD_FLAGS) $(RUSTBUILD_TEST_FLAGS); echo $$?; } | tee -a $(TEST_LOG) # test that the log has at least 1 pass, to prevent e.g. #57709 grep -l "^test .* \.\.\. ok$$" $(TEST_LOG) echo "==== Debian rustc test report ===="; \