Peter Michael Green [Sat, 19 Mar 2022 00:49:36 +0000 (00:49 +0000)]
Disable testsuite for arch all builds as well.
Raspbian automatic forward porter [Sun, 13 Mar 2022 14:43:59 +0000 (14:43 +0000)]
Merge version 1.56.0+dfsg1-2+rpi1 and 1.57.0+dfsg1-1 to produce 1.57.0+dfsg1-1+rpi1
Ximin Luo [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Merge rustc (1.57.0+dfsg1-1) import into refs/heads/workingbranch
Hans Kratz [Mon, 17 Jan 2022 08:45:46 +0000 (09:45 +0100)]
[PATCH 2/4] Fix CVE-2022-21658 for UNIX-like
Gbp-Pq: Name u-Fix-CVE-2022-21658-for-UNIX-like.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-rustdoc-disable-embedded-fonts
Gbp-Pq: Name d-rustdoc-disable-embedded-fonts.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-rustc-i686-baseline
Gbp-Pq: Name d-rustc-i686-baseline.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-rustc-windows-ssp
Bug: https://github.com/rust-lang/rust/issues/68973
Gbp-Pq: Name d-rustc-windows-ssp.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-rustc-fix-mips64el-bootstrap
Bug: https://github.com/rust-lang/rust/issues/52108
Gbp-Pq: Name d-rustc-fix-mips64el-bootstrap.patch
Angus Lees [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Set DT_SONAME when building dylibs
Forwarded: no
In Rust, library filenames include a version-specific hash to help
the run-time linker find the correct version. Unlike in C/C++, the
compiler looks for all libraries matching a glob that ignores the
hash and reads embedded metadata to work out versions, etc.
The upshot is that there is no need for the usual "libfoo.so ->
libfoo-1.2.3.so" symlink common with C/C++ when building with Rust,
and no need to communicate an alternate filename to use at run-time
vs compile time. If linking to a Rust dylib from C/C++ however, a
"libfoo.so -> libfoo-$hash.so" symlink may well be useful and in
this case DT_SONAME=libfoo-$hash.so would be required. More
mundanely, various tools (eg: dpkg-shlibdeps) complain if they don't
find DT_SONAME on shared libraries in public directories.
This patch passes -Wl,-soname=$outfile when building dylibs (and
using a GNU linker).
Gbp-Pq: Name d-rustc-add-soname.patch
Angus Lees [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Hardcode LLDB python module directory
Forwarded: not-needed
Debian package installs python modules into a fixed directory, so
just hardcode path in wrapper script.
Gbp-Pq: Name d-rust-lldb-paths
Angus Lees [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Hardcode GDB python module directory
Forwarded: not-needed
Debian package installs python modules into a fixed directory, so
just hardcode path in wrapper script.
Gbp-Pq: Name d-rust-gdb-paths
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-test-ignore-avx-44056
Bug: https://github.com/rust-lang/rust/pull/55667
Gbp-Pq: Name d-test-ignore-avx-44056.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-bootstrap-custom-debuginfo-path
Gbp-Pq: Name d-bootstrap-custom-debuginfo-path.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Backwards-compat for cargo 0.47
The flag being removed here was added in
https://github.com/rust-lang/cargo/pull/9404 released in cargo 0.54
This works around a feature introduced in this PR
https://github.com/rust-lang/cargo/pull/8640 released in cargo 0.53
Therefore it is not needed for Debian's current cargo 0.47.
We can drop this patch when updating to cargo 0.54 and later.
Gbp-Pq: Name d-bootstrap-old-cargo-compat.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-bootstrap-use-local-css
Gbp-Pq: Name d-bootstrap-use-local-css.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Fix links to cargo-doc
We package cargo docs in a slightly different location; also tweak linkchecker
to not fail these links.
Gbp-Pq: Name d-bootstrap-cargo-doc-paths.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-bootstrap-no-assume-tools
Gbp-Pq: Name d-bootstrap-no-assume-tools.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-bootstrap-read-beta-version-from-file
Gbp-Pq: Name d-bootstrap-read-beta-version-from-file.patch
Matthijs van Otterdijk [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Don't check for cargo-vendor when building from (Debian's) git
Forwarded: not-needed
Forwarded: not-needed
Gbp-Pq: Name d-bootstrap-disable-git.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Install symlinks as-is, don't dereference them
Our patch to mdbook installs symlinks to systems versions of font-awesome,
highlight, etc. Upstream mdbook otherwise doesn't use symlinks, so this
doesn't affect anything else that's already generated.
Gbp-Pq: Name d-bootstrap-install-symlinks.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-remove-arm-privacy-breaches
===================================================================
Gbp-Pq: Name d-remove-arm-privacy-breaches.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
d-bootstrap-rustflags
Gbp-Pq: Name d-bootstrap-rustflags.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0006-no-jemalloc
Gbp-Pq: Name d-0006-no-jemalloc.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0005-clippy-feature-sync
enable features needed by rustfmt to make build system happy and speedup build.
this is what rustc_workspace_hack does in the upstream build.
Gbp-Pq: Name d-0005-clippy-feature-sync.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0004-cc-psm-rebuild-wasm32
Gbp-Pq: Name d-0004-cc-psm-rebuild-wasm32.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0003-mdbook-strip-embedded-libs
Comment: Use https://github.com/infinity0/mdBook/tree/debian to help you rebase the patch on top of a newer version. . Make sure the paths here match the ones in debian/rust-doc.links
Gbp-Pq: Name d-0003-mdbook-strip-embedded-libs.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0002-pkg-config-no-special-snowflake
Gbp-Pq: Name d-0002-pkg-config-no-special-snowflake.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:07:59 +0000 (01:07 +0100)]
d-0001-disable-miniz
Gbp-Pq: Name d-0001-disable-miniz.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:07:59 +0000 (01:07 +0100)]
d-0000-ignore-removed-submodules
Gbp-Pq: Name d-0000-ignore-removed-submodules.patch
Chris Coulson [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
u-make-tests-work-without-rpath
Forwarded: TODO
Gbp-Pq: Name u-make-tests-work-without-rpath.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
u-reproducible-dl-stage0
Gbp-Pq: Name u-reproducible-dl-stage0.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
u-rustc-llvm-cross-flags
Gbp-Pq: Name u-rustc-llvm-cross-flags.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
u-ignore-bpf-test
Bug: https://github.com/rust-lang/rust/issues/89689
Gbp-Pq: Name u-ignore-bpf-test.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
u-ignore-ppc-hangs
Bug: https://github.com/rust-lang/rust/issues/89607
Gbp-Pq: Name u-ignore-ppc-hangs.patch
Ximin Luo [Sat, 16 Oct 2021 12:30:24 +0000 (13:30 +0100)]
[PATCH] bootstrap: tweak verbosity settings
Currently the verbosity settings are:
- 2: RUSTC-SHIM envvars get spammed on every invocation, O(30) lines
cargo is passed -v which outputs CLI invocations, O(5) lines
- 3: cargo is passed -vv which outputs build script output, O(0-10) lines
This commit changes it to:
- 1: cargo is passed -v, O(5) lines
- 2: cargo is passed -vv, O(10) lines
- 3: RUSTC-SHIM envvars get spammed, O(30) lines
Gbp-Pq: Name u-89950.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
u-cc-627
Forwarded: https://github.com/alexcrichton/cc-rs/pull/627
Gbp-Pq: Name u-cc-627.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
u-ignore-endian-big-diff
Bug: https://github.com/rust-lang/rust/issues/89577
Gbp-Pq: Name u-ignore-endian-big-diff.patch
Ximin Luo [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Don't split dwarf debug for a fully-reproducible build
Bug: https://github.com/rust-lang/rust/issues/34902
Gbp-Pq: Name u-reproducible-build.patch
Debian Rust Maintainers [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
u-ignore-reproducible-failure
Bug: https://github.com/rust-lang/rust/issues/89911
Gbp-Pq: Name u-ignore-reproducible-failure.patch
Ximin Luo [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
rustc (1.57.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable. (Closes: #
1005203)
[dgit import unpatched rustc 1.57.0+dfsg1-1]
Ximin Luo [Tue, 8 Mar 2022 10:51:18 +0000 (10:51 +0000)]
Import rustc_1.57.0+dfsg1-1.debian.tar.xz
[dgit import tarball rustc 1.57.0+dfsg1-1 rustc_1.57.0+dfsg1-1.debian.tar.xz]
Fabian Grünbichler [Thu, 3 Feb 2022 18:14:04 +0000 (18:14 +0000)]
Import rustc_1.57.0+dfsg1.orig.tar.xz
[dgit import orig rustc_1.57.0+dfsg1.orig.tar.xz]
Raspbian automatic forward porter [Tue, 16 Nov 2021 05:44:40 +0000 (05:44 +0000)]
Merge version 1.50.0+dfsg1-1+rpi1 and 1.56.0+dfsg1-2 to produce 1.56.0+dfsg1-2+rpi1
Ximin Luo [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Merge rustc (1.56.0+dfsg1-2) import into refs/heads/workingbranch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-rustdoc-disable-embedded-fonts
Gbp-Pq: Name d-rustdoc-disable-embedded-fonts.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-rustc-i686-baseline
Gbp-Pq: Name d-rustc-i686-baseline.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-rustc-windows-ssp
Bug: https://github.com/rust-lang/rust/issues/68973
Gbp-Pq: Name d-rustc-windows-ssp.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-rustc-fix-mips64el-bootstrap
Bug: https://github.com/rust-lang/rust/issues/52108
Gbp-Pq: Name d-rustc-fix-mips64el-bootstrap.patch
Angus Lees [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Set DT_SONAME when building dylibs
Forwarded: no
In Rust, library filenames include a version-specific hash to help
the run-time linker find the correct version. Unlike in C/C++, the
compiler looks for all libraries matching a glob that ignores the
hash and reads embedded metadata to work out versions, etc.
The upshot is that there is no need for the usual "libfoo.so ->
libfoo-1.2.3.so" symlink common with C/C++ when building with Rust,
and no need to communicate an alternate filename to use at run-time
vs compile time. If linking to a Rust dylib from C/C++ however, a
"libfoo.so -> libfoo-$hash.so" symlink may well be useful and in
this case DT_SONAME=libfoo-$hash.so would be required. More
mundanely, various tools (eg: dpkg-shlibdeps) complain if they don't
find DT_SONAME on shared libraries in public directories.
This patch passes -Wl,-soname=$outfile when building dylibs (and
using a GNU linker).
Gbp-Pq: Name d-rustc-add-soname.patch
Angus Lees [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Hardcode LLDB python module directory
Forwarded: not-needed
Debian package installs python modules into a fixed directory, so
just hardcode path in wrapper script.
Gbp-Pq: Name d-rust-lldb-paths
Angus Lees [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Hardcode GDB python module directory
Forwarded: not-needed
Debian package installs python modules into a fixed directory, so
just hardcode path in wrapper script.
Gbp-Pq: Name d-rust-gdb-paths
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-test-ignore-avx-44056
Bug: https://github.com/rust-lang/rust/pull/55667
Gbp-Pq: Name d-test-ignore-avx-44056.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-bootstrap-custom-debuginfo-path
Gbp-Pq: Name d-bootstrap-custom-debuginfo-path.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Backwards-compat for cargo 0.47
The flag being removed here was added in
https://github.com/rust-lang/cargo/pull/9404 released in cargo 0.54
This works around a feature introduced in this PR
https://github.com/rust-lang/cargo/pull/8640 released in cargo 0.53
Therefore it is not needed for Debian's current cargo 0.47.
We can drop this patch when updating to cargo 0.54 and later.
Gbp-Pq: Name d-bootstrap-old-cargo-compat.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-bootstrap-use-local-css
Gbp-Pq: Name d-bootstrap-use-local-css.patch
Ximin Luo [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Don't download SHA256 if it's already available locally
Forwarded: not-needed
In Debian we provide the stage0 tarballs as a separate component so that the
buildds don't need to access the network during the build.
Forwarded: not-needed
Gbp-Pq: Name d-bootstrap-dont-download-stage0.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Fix links to cargo-doc
We package cargo docs in a slightly different location; also tweak linkchecker
to not fail these links.
Gbp-Pq: Name d-bootstrap-cargo-doc-paths.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-bootstrap-no-assume-tools
Gbp-Pq: Name d-bootstrap-no-assume-tools.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-bootstrap-read-beta-version-from-file
Gbp-Pq: Name d-bootstrap-read-beta-version-from-file.patch
Matthijs van Otterdijk [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Don't check for cargo-vendor when building from (Debian's) git
Forwarded: not-needed
Forwarded: not-needed
Gbp-Pq: Name d-bootstrap-disable-git.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Install symlinks as-is, don't dereference them
Our patch to mdbook installs symlinks to systems versions of font-awesome,
highlight, etc. Upstream mdbook otherwise doesn't use symlinks, so this
doesn't affect anything else that's already generated.
Gbp-Pq: Name d-bootstrap-install-symlinks.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
d-bootstrap-rustflags
Gbp-Pq: Name d-bootstrap-rustflags.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0006-no-jemalloc
Gbp-Pq: Name d-0006-no-jemalloc.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0005-clippy-feature-sync
enable features needed by rustfmt to make build system happy and speedup build.
this is what rustc_workspace_hack does in the upstream build.
Gbp-Pq: Name d-0005-clippy-feature-sync.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0004-cc-psm-rebuild-wasm32
Gbp-Pq: Name d-0004-cc-psm-rebuild-wasm32.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0003-mdbook-strip-embedded-libs
Comment: Use https://github.com/infinity0/mdBook/tree/debian to help you rebase the patch on top of a newer version. . Make sure the paths here match the ones in debian/rust-doc.links
Gbp-Pq: Name d-0003-mdbook-strip-embedded-libs.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:08:00 +0000 (01:08 +0100)]
d-0002-pkg-config-no-special-snowflake
Gbp-Pq: Name d-0002-pkg-config-no-special-snowflake.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:07:59 +0000 (01:07 +0100)]
d-0001-disable-miniz
Gbp-Pq: Name d-0001-disable-miniz.patch
Debian Rust Maintainers [Sat, 2 Oct 2021 00:07:59 +0000 (01:07 +0100)]
d-0000-ignore-removed-submodules
Gbp-Pq: Name d-0000-ignore-removed-submodules.patch
Chris Coulson [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
u-make-tests-work-without-rpath
Forwarded: TODO
Gbp-Pq: Name u-make-tests-work-without-rpath.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
u-reproducible-dl-stage0
Gbp-Pq: Name u-reproducible-dl-stage0.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
u-rustc-llvm-cross-flags
Gbp-Pq: Name u-rustc-llvm-cross-flags.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
u-ignore-bpf-test
Bug: https://github.com/rust-lang/rust/issues/89689
Gbp-Pq: Name u-ignore-bpf-test.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
u-ignore-ppc-hangs
Bug: https://github.com/rust-lang/rust/issues/89607
Gbp-Pq: Name u-ignore-ppc-hangs.patch
Michael Woerister [Mon, 11 Oct 2021 15:20:45 +0000 (17:20 +0200)]
[PATCH] Fix function-names test for GDB 10.1
Gbp-Pq: Name u-89772.patch
Ximin Luo [Sat, 16 Oct 2021 12:30:24 +0000 (13:30 +0100)]
[PATCH] bootstrap: tweak verbosity settings
Currently the verbosity settings are:
- 2: RUSTC-SHIM envvars get spammed on every invocation, O(30) lines
cargo is passed -v which outputs CLI invocations, O(5) lines
- 3: cargo is passed -vv which outputs build script output, O(0-10) lines
This commit changes it to:
- 1: cargo is passed -v, O(5) lines
- 2: cargo is passed -vv, O(10) lines
- 3: RUSTC-SHIM envvars get spammed, O(30) lines
Gbp-Pq: Name u-89950.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
u-cc-627
Forwarded: https://github.com/alexcrichton/cc-rs/pull/627
Gbp-Pq: Name u-cc-627.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
u-ignore-endian-big-diff
Bug: https://github.com/rust-lang/rust/issues/89577
Gbp-Pq: Name u-ignore-endian-big-diff.patch
Ximin Luo [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Don't split dwarf debug for a fully-reproducible build
Bug: https://github.com/rust-lang/rust/issues/34902
Gbp-Pq: Name u-reproducible-build.patch
Harald van Dijk [Sun, 5 Sep 2021 15:42:36 +0000 (16:42 +0100)]
[PATCH] Change more x64 size checks to not apply to x32.
Commit
95e096d6 changed a bunch of size checks already, but more have
been added, so this fixes the new ones the same way: the various size
checks that are conditional on target_arch = "x86_64" were not intended
to apply to x86_64-unknown-linux-gnux32, so add
target_pointer_width = "64" to the conditions.
Gbp-Pq: Name u-88668.patch
Ximin Luo [Wed, 6 Oct 2021 09:22:03 +0000 (10:22 +0100)]
[PATCH] fix: alloc-optimisation is only for rust llvm
Gbp-Pq: Name u-89591.patch
Debian Rust Maintainers [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
u-ignore-reproducible-failure
Bug: https://github.com/rust-lang/rust/issues/89911
Gbp-Pq: Name u-ignore-reproducible-failure.patch
Ximin Luo [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
rustc (1.56.0+dfsg1-2) unstable; urgency=medium
* Update to debhelper 13.
[dgit import unpatched rustc 1.56.0+dfsg1-2]
Ximin Luo [Fri, 22 Oct 2021 22:29:14 +0000 (23:29 +0100)]
Import rustc_1.56.0+dfsg1-2.debian.tar.xz
[dgit import tarball rustc 1.56.0+dfsg1-2 rustc_1.56.0+dfsg1-2.debian.tar.xz]
Ximin Luo [Fri, 22 Oct 2021 17:54:49 +0000 (18:54 +0100)]
Import rustc_1.56.0+dfsg1.orig.tar.xz
[dgit import orig rustc_1.56.0+dfsg1.orig.tar.xz]
Raspbian automatic forward porter [Sun, 26 Sep 2021 02:25:39 +0000 (03:25 +0100)]
Merge version 1.49.0+dfsg1-1+rpi1 and 1.50.0+dfsg1-1 to produce 1.50.0+dfsg1-1+rpi1
Ximin Luo [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
Merge rustc (1.51.0+dfsg1-1) import into refs/heads/workingbranch
Debian Rust Maintainers [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
d-fix-mips64el-bootstrap
Bug: https://github.com/rust-lang/rust/issues/52108
Gbp-Pq: Name d-fix-mips64el-bootstrap.patch
Debian Rust Maintainers [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
d-use-local-css
Gbp-Pq: Name d-use-local-css.patch
Debian Rust Maintainers [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
d-no-jemalloc
===================================================================
Gbp-Pq: Name d-no-jemalloc.patch
Debian Rust Maintainers [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
d-i686-baseline
Gbp-Pq: Name d-i686-baseline.patch
Debian Rust Maintainers [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
d-ignore-avx-44056
Bug: https://github.com/rust-lang/rust/pull/55667
===================================================================
Gbp-Pq: Name d-ignore-avx-44056.patch
Debian Rust Maintainers [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
d-read-beta-version-from-file
===================================================================
Gbp-Pq: Name d-read-beta-version-from-file.patch
Ximin Luo [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
Don't download SHA256 if it's already available locally
Forwarded: not-needed
In Debian we provide the stage0 tarballs as a separate component so that the
buildds don't need to access the network during the build.
Forwarded: not-needed
Gbp-Pq: Name d-dont-download-stage0.patch
Debian Rust Maintainers [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
d-windows-ssp
Bug: https://github.com/rust-lang/rust/issues/68973s
Gbp-Pq: Name d-windows-ssp.patch
Debian Rust Maintainers [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
d-rustflags
Gbp-Pq: Name d-rustflags.patch
Angus Lees [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
Set DT_SONAME when building dylibs
Forwarded: no
In Rust, library filenames include a version-specific hash to help
the run-time linker find the correct version. Unlike in C/C++, the
compiler looks for all libraries matching a glob that ignores the
hash and reads embedded metadata to work out versions, etc.
The upshot is that there is no need for the usual "libfoo.so ->
libfoo-1.2.3.so" symlink common with C/C++ when building with Rust,
and no need to communicate an alternate filename to use at run-time
vs compile time. If linking to a Rust dylib from C/C++ however, a
"libfoo.so -> libfoo-$hash.so" symlink may well be useful and in
this case DT_SONAME=libfoo-$hash.so would be required. More
mundanely, various tools (eg: dpkg-shlibdeps) complain if they don't
find DT_SONAME on shared libraries in public directories.
This patch passes -Wl,-soname=$outfile when building dylibs (and
using a GNU linker).
Gbp-Pq: Name d-add-soname.patch
Angus Lees [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
Hardcode LLDB python module directory
Forwarded: not-needed
Debian package installs python modules into a fixed directory, so
just hardcode path in wrapper script.
Gbp-Pq: Name d-rust-lldb-paths
Angus Lees [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
Hardcode GDB python module directory
Forwarded: not-needed
Debian package installs python modules into a fixed directory, so
just hardcode path in wrapper script.
Gbp-Pq: Name d-rust-gdb-paths
Matthijs van Otterdijk [Sun, 19 Sep 2021 18:48:33 +0000 (19:48 +0100)]
Don't check for cargo-vendor when building from (Debian's) git
Forwarded: not-needed
Forwarded: not-needed
Gbp-Pq: Name d-disable-cargo-vendor.patch