rustc.git
5 years agoFix target distribution. buster-staging archive/raspbian/1.41.1+dfsg1-1_deb10u1+rpi1 raspbian/1.41.1+dfsg1-1_deb10u1+rpi1
Peter Michael Green [Fri, 23 Oct 2020 14:54:14 +0000 (14:54 +0000)]
Fix target distribution.

5 years agoUse the compiler itself rather than dpkg to detect DEB_BUILD_RUST_TYPE
Peter Michael Green [Thu, 22 Oct 2020 19:43:09 +0000 (19:43 +0000)]
Use the compiler itself rather than dpkg to detect DEB_BUILD_RUST_TYPE

5 years agoMerge tag '1.40.0+dfsg1-5+rpi1' into HEAD
Peter Michael Green [Thu, 22 Oct 2020 17:16:56 +0000 (17:16 +0000)]
Merge tag '1.40.0+dfsg1-5+rpi1' into HEAD

5 years agoRevert "stage0" changes, do regular build.
Peter Michael Green [Thu, 22 Oct 2020 17:13:01 +0000 (17:13 +0000)]
Revert "stage0" changes, do regular build.

5 years agoMerge rustc (1.41.1+dfsg1-1~deb10u1) import into refs/heads/workingbranch
Emilio Pozuelo Monfort [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
Merge rustc (1.41.1+dfsg1-1~deb10u1) import into refs/heads/workingbranch

5 years agosignatures for stage0 binaries
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
signatures for stage0 binaries

Gbp-Pq: Name d-add-bootstrap-checksums.patch

5 years agod-fix-mips64el-bootstrap
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
d-fix-mips64el-bootstrap

Bug: https://github.com/rust-lang/rust/issues/52108

Gbp-Pq: Name d-fix-mips64el-bootstrap.patch

5 years agod-no-jemalloc
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
d-no-jemalloc

===================================================================

Gbp-Pq: Name d-no-jemalloc.patch

5 years agod-i686-baseline
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
d-i686-baseline

Gbp-Pq: Name d-i686-baseline.patch

5 years agod-ignore-avx-44056
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
d-ignore-avx-44056

Bug: https://github.com/rust-lang/rust/pull/55667

===================================================================

Gbp-Pq: Name d-ignore-avx-44056.patch

5 years agod-read-beta-version-from-file
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
d-read-beta-version-from-file

Gbp-Pq: Name d-read-beta-version-from-file.patch

5 years agoDon't download SHA256 if it's already available locally
Ximin Luo [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +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

5 years agoSet DT_SONAME when building dylibs
Angus Lees [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +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

5 years agoHardcode LLDB python module directory
Angus Lees [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +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

5 years agoHardcode GDB python module directory
Angus Lees [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +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

5 years agoDon't check for cargo-vendor when building from (Debian's) git
Matthijs van Otterdijk [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +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

5 years agoIgnore error details with $SRC_DIR
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
Ignore error details with $SRC_DIR

Bug: https://github.com/rust-lang/rust/issues/53081

We build with --remap-path-prefix so it doesn't work, see bug below
===================================================================

Gbp-Pq: Name d-ignore-error-detail-diff.patch

5 years agoUse local web resources instead of remote ones
Matthijs van Otterdijk [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
Use local web resources instead of remote ones

Bug: https://github.com/azerupi/mdBook/issues/271
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

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

5 years agod-0002-pkg-config-no-special-snowflake
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
d-0002-pkg-config-no-special-snowflake

Gbp-Pq: Name d-0002-pkg-config-no-special-snowflake.patch

5 years agod-0001-disable-miniz
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
d-0001-disable-miniz

Gbp-Pq: Name d-0001-disable-miniz.patch

5 years agoIgnore submodules that we're not building, or that are unused like
Ximin Luo [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
Ignore submodules that we're not building, or that are unused like

Forwarded: not-needed

mdbook-linkcheck that pull in a ton of dependencies that are unneeded.

Gbp-Pq: Name d-0000-ignore-removed-submodules.patch

5 years agou-reproducible-dl-stage0
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
u-reproducible-dl-stage0

Gbp-Pq: Name u-reproducible-dl-stage0.patch

5 years agou-rustc-llvm-cross-flags
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
u-rustc-llvm-cross-flags

Gbp-Pq: Name u-rustc-llvm-cross-flags.patch

5 years ago[PATCH] Update bindings for the wasm32-wasi target
Alex Crichton [Mon, 16 Dec 2019 15:57:52 +0000 (07:57 -0800)]
[PATCH] Update bindings for the wasm32-wasi target

This commit performs a number of updates for libc with the `wasm32-wasi`
target:

* Updates the `wasi-libc` repository commit used (previously known as
  `wasi-sysroot`)
* Updates the container to Ubuntu 19.10 which has Clang 9 packaged which
  is all we need.
* Avoids building `wasmtime` and instead downloads a precompiled binary.
* Updates bindings in `src/wasi.rs` to match the current upstream state.

Gbp-Pq: Name u-wasm32-libc-1625.patch

5 years agou-riscv64-compiletest
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
u-riscv64-compiletest

Gbp-Pq: Name u-riscv64-compiletest.patch

5 years ago[PATCH] Add cross prefix for riscv64gc-unknown-linux-gnu => riscv64-linux-gnu
Ximin Luo [Sat, 4 Jan 2020 05:11:21 +0000 (05:11 +0000)]
[PATCH] Add cross prefix for riscv64gc-unknown-linux-gnu => riscv64-linux-gnu

Add out-of-the-box cross-compiling support for riscv64gc-unknown-linux-gnu

Gbp-Pq: Name u-riscv64-cc-465.patch

5 years ago[PATCH] Enable -fPIC on non-bare-metal RISC-V
msizanoen1 [Thu, 5 Dec 2019 05:22:41 +0000 (12:22 +0700)]
[PATCH] Enable -fPIC on non-bare-metal RISC-V

Gbp-Pq: Name u-riscv64-cc-461.patch

5 years ago[PATCH 1/3] Support for RISC-V 64-bit GNU/Linux
msizanoen1 [Sat, 23 Nov 2019 07:02:48 +0000 (14:02 +0700)]
[PATCH 1/3] Support for RISC-V 64-bit GNU/Linux

Gbp-Pq: Name u-riscv64-libc-1606.patch

5 years ago[PATCH 1/2] Implement proper C ABI lowering for RISC-V
msizanoen1 [Tue, 21 Jan 2020 14:52:19 +0000 (21:52 +0700)]
[PATCH 1/2] Implement proper C ABI lowering for RISC-V

Gbp-Pq: Name u-riscv64-68452.patch

5 years ago[PATCH 1/2] Add support for RISC-V 64-bit GNU/Linux
msizanoen1 [Sat, 23 Nov 2019 07:22:05 +0000 (14:22 +0700)]
[PATCH 1/2] Add support for RISC-V 64-bit GNU/Linux

Gbp-Pq: Name u-riscv64-66899.patch

5 years agoVarious fixes for Rust on MIPS
Dragan Mladjenovic [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
Various fixes for Rust on MIPS

Bug-Debian: https://bugs.debian.org/881845
Last-Update: 2018-10-24

Gbp-Pq: Name u-mips-fixes.diff

5 years agothis test is new in 1.40 and the failure is present on many
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
this test is new in 1.40 and the failure is present on many

Bug: https://github.com/rust-lang/rust/issues/67242

previous rust versions without users having complained or noticed, so
just ignore the failure until upstream fixes it

Gbp-Pq: Name u-tests-ignore-arm.patch

5 years agou-make-tests-work-without-rpath
Chris Coulson [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
u-make-tests-work-without-rpath

Forwarded: TODO

Gbp-Pq: Name u-make-tests-work-without-rpath.patch

5 years agou-test-python-3
Debian Rust Maintainers [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
u-test-python-3

Gbp-Pq: Name u-test-python-3.patch

5 years agoPrefer local CSS to remote
Ximin Luo [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
Prefer local CSS to remote

Bug: https://github.com/rust-lang/rust/pull/45331

Gbp-Pq: Name u-prefer-local-css.patch

5 years agoDon't split dwarf debug for a fully-reproducible build
Ximin Luo [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +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

5 years ago[PATCH 1/2] Remove obsolete llvm_tools flag
Josh Stone [Wed, 8 Jan 2020 17:44:45 +0000 (09:44 -0800)]
[PATCH 1/2] Remove obsolete llvm_tools flag

Gbp-Pq: Name rust-pr68019-in-tree-compiletest.patch

5 years ago[PATCH] Update the barrier cache during ARM EHABI unwinding
Amanieu d'Antras [Wed, 1 Jan 2020 16:11:45 +0000 (17:11 +0100)]
[PATCH] Update the barrier cache during ARM EHABI unwinding

Gbp-Pq: Name 0001-Update-the-barrier-cache-during-ARM-EHABI-unwinding.patch

5 years ago[PATCH] Fix compiletest fallout from stage0 bump
Mark Rousskov [Wed, 18 Dec 2019 18:28:14 +0000 (13:28 -0500)]
[PATCH] Fix compiletest fallout from stage0 bump

Gbp-Pq: Name 0001-Fix-compiletest-fallout-from-stage0-bump.patch

5 years agorustc (1.41.1+dfsg1-1~deb10u1) buster; urgency=medium
Emilio Pozuelo Monfort [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
rustc (1.41.1+dfsg1-1~deb10u1) buster; urgency=medium

  * Non-maintainer upload.
  * Backport to buster.
  * stage0 build.
    - Use arm-unknown-linux-gnueabi target for armel.
  * Use LLVM 7.
  * Disable wasm.
  * Reduce debugging symbols on i386 to avoid FTBFS due to OOM.

[dgit import unpatched rustc 1.41.1+dfsg1-1~deb10u1]

5 years agoImport rustc_1.41.1+dfsg1-1~deb10u1.debian.tar.xz
Emilio Pozuelo Monfort [Tue, 8 Sep 2020 16:38:19 +0000 (17:38 +0100)]
Import rustc_1.41.1+dfsg1-1~deb10u1.debian.tar.xz

[dgit import tarball rustc 1.41.1+dfsg1-1~deb10u1 rustc_1.41.1+dfsg1-1~deb10u1.debian.tar.xz]

5 years agoImport rustc_1.41.1+dfsg1.orig.tar.xz
Ximin Luo [Mon, 9 Mar 2020 00:31:34 +0000 (00:31 +0000)]
Import rustc_1.41.1+dfsg1.orig.tar.xz

[dgit import orig rustc_1.41.1+dfsg1.orig.tar.xz]

5 years agoImport rustc_1.41.1+dfsg1.orig-stage0.tar.xz
Ximin Luo [Mon, 9 Mar 2020 00:31:34 +0000 (00:31 +0000)]
Import rustc_1.41.1+dfsg1.orig-stage0.tar.xz

[dgit import orig rustc_1.41.1+dfsg1.orig-stage0.tar.xz]

5 years agoMerge tag '1.40.0+dfsg1-5' into bullseye-working archive/raspbian/1.40.0+dfsg1-5+rpi1 raspbian/1.40.0+dfsg1-5+rpi1
Peter Michael Green [Sat, 11 Jan 2020 11:19:35 +0000 (11:19 +0000)]
Merge tag '1.40.0+dfsg1-5' into bullseye-working

Conflicts:
debian/architecture.mk
debian/changelog
debian/rules

5 years agoMerge version 1.39.0+dfsg1-4+rpi1 and 1.40.0+dfsg1-1 to produce 1.40.0+dfsg1-1+rpi1 archive/raspbian/1.40.0+dfsg1-1+rpi1 raspbian/1.40.0+dfsg1-1+rpi1
Raspbian automatic forward porter [Fri, 10 Jan 2020 02:01:58 +0000 (02:01 +0000)]
Merge version 1.39.0+dfsg1-4+rpi1 and 1.40.0+dfsg1-1 to produce 1.40.0+dfsg1-1+rpi1

5 years agoMerge rustc (1.40.0+dfsg1-5) import into refs/heads/workingbranch
Ximin Luo [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
Merge rustc (1.40.0+dfsg1-5) import into refs/heads/workingbranch

5 years agod-fix-mips64el-bootstrap
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-fix-mips64el-bootstrap

Gbp-Pq: Name d-fix-mips64el-bootstrap.patch

5 years agod-no-jemalloc
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-no-jemalloc

===================================================================

Gbp-Pq: Name d-no-jemalloc.patch

5 years agod-i686-baseline
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-i686-baseline

Gbp-Pq: Name d-i686-baseline.patch

5 years agod-ignore-avx-44056
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-ignore-avx-44056

===================================================================

Gbp-Pq: Name d-ignore-avx-44056.patch

5 years agod-read-beta-version-from-file
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-read-beta-version-from-file

Gbp-Pq: Name d-read-beta-version-from-file.patch

5 years agod-dont-download-stage0
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-dont-download-stage0

Gbp-Pq: Name d-dont-download-stage0.patch

5 years agod-add-soname
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-add-soname

Gbp-Pq: Name d-add-soname.patch

5 years agod-rust-lldb-paths
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-rust-lldb-paths

Gbp-Pq: Name d-rust-lldb-paths

5 years agod-rust-gdb-paths
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-rust-gdb-paths

Gbp-Pq: Name d-rust-gdb-paths

5 years agod-disable-cargo-vendor
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-disable-cargo-vendor

Gbp-Pq: Name d-disable-cargo-vendor.patch

5 years agod-ignore-error-detail-diff
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-ignore-error-detail-diff

Gbp-Pq: Name d-ignore-error-detail-diff.patch

5 years agod-0003-mdbook-strip-embedded-libs
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-0003-mdbook-strip-embedded-libs

Gbp-Pq: Name d-0003-mdbook-strip-embedded-libs.patch

5 years agod-0002-pkg-config-no-special-snowflake
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-0002-pkg-config-no-special-snowflake

Gbp-Pq: Name d-0002-pkg-config-no-special-snowflake.patch

5 years agod-0001-disable-miniz
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-0001-disable-miniz

Gbp-Pq: Name d-0001-disable-miniz.patch

5 years agod-0000-ignore-removed-submodules
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
d-0000-ignore-removed-submodules

Gbp-Pq: Name d-0000-ignore-removed-submodules.patch

5 years agou-reproducible-dl-stage0
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-reproducible-dl-stage0

Gbp-Pq: Name u-reproducible-dl-stage0.patch

5 years agou-rustc-llvm-cross-flags
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-rustc-llvm-cross-flags

Gbp-Pq: Name u-rustc-llvm-cross-flags.patch

5 years agou-reproducible-compiler-builtins
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-reproducible-compiler-builtins

Gbp-Pq: Name u-reproducible-compiler-builtins.patch

5 years agou-rustbuild-rustflags
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-rustbuild-rustflags

Gbp-Pq: Name u-rustbuild-rustflags.patch

5 years agoAdd cross prefix for riscv64gc-unknown-linux-gnu => riscv64-linux-gnu
Ximin Luo [Sat, 4 Jan 2020 05:11:21 +0000 (05:11 +0000)]
Add cross prefix for riscv64gc-unknown-linux-gnu => riscv64-linux-gnu

Add out-of-the-box cross-compiling support for riscv64gc-unknown-linux-gnu

Gbp-Pq: Name u-riscv64-cc-465.patch

5 years agoEnable -fPIC on non-bare-metal RISC-V
msizanoen1 [Thu, 5 Dec 2019 05:22:41 +0000 (12:22 +0700)]
Enable -fPIC on non-bare-metal RISC-V

Gbp-Pq: Name u-riscv64-cc-461.patch

5 years agoDefault to double-float ABI on RISC-V Linux
msizanoen1 [Sun, 1 Dec 2019 13:19:11 +0000 (20:19 +0700)]
Default to double-float ABI on RISC-V Linux

Gbp-Pq: Name u-riscv64-cc-460.patch

5 years agorisc-v: Disable PIC by default for now
Wladimir J. van der Laan [Thu, 8 Aug 2019 06:27:30 +0000 (06:27 +0000)]
risc-v: Disable PIC by default for now

Rust's linker cannot currently handle gcc's fPIC compilation units
for RISC-V targets:

      = note: rust-lld: error:
          .got section detected in the input files. Dynamic relocations are not
          supported. If you are linking to C code compiled using the `gcc` crate
          then modify your build script to compile the C code _without_ the
          -fPIC flag. See the documentation of the `gcc::Config.fpic` method for
          details.

So disable PIC by default for now for `riscv` targets.

Gbp-Pq: Name u-riscv64-cc-430.patch

5 years agorisc-v: Set ABI correctly for 32-bit targets
Wladimir J. van der Laan [Thu, 8 Aug 2019 06:52:55 +0000 (06:52 +0000)]
risc-v: Set ABI correctly for 32-bit targets

Pick the correct softfloat mode based on bitness:

- `-mabi=lp64` for 64 bit RISC-V
- `-mabi=ilp32` for 32-bit RISC-V

Currently it fails for rv32 due to a conflict between the ABI and arch:

    cc1: error: ABI requires -march=rv64

Gbp-Pq: Name u-riscv64-cc-429.patch

5 years agoAdd RISC-V support
Wladimir J. van der Laan [Wed, 7 Aug 2019 13:57:33 +0000 (13:57 +0000)]
Add RISC-V support

Automatically choose the most common name for the toolchain, and add the
command-line arguments to generate code that is compatible with the
chosen architecture.

Fixes #397.

Gbp-Pq: Name u-riscv64-cc-428.patch

5 years agoSupport for RISC-V 64-bit GNU/Linux
msizanoen1 [Sat, 23 Nov 2019 07:02:48 +0000 (14:02 +0700)]
Support for RISC-V 64-bit GNU/Linux

Gbp-Pq: Name u-riscv64-libc-1606.patch

5 years agoAdd support for RISC-V 64-bit GNU/Linux
msizanoen1 [Sat, 23 Nov 2019 07:22:05 +0000 (14:22 +0700)]
Add support for RISC-V 64-bit GNU/Linux

Gbp-Pq: Name u-riscv64-66899.patch

5 years agou-riscv64-format-2
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-riscv64-format-2

commit 4436c9d35498e7ae3da261f6141d6d73b915e1e8
gpg: Signature made Sat 30 Nov 2019 02:43:27 GMT
gpg:                using RSA key 4628C5D82CFF65D68164A78AF9BA143B95FF6D82
gpg: Can't check signature: No public key
Author: David Tolnay <dtolnay@gmail.com>
Date:   Wed Nov 27 10:29:00 2019 -0800

    Format libstd with rustfmt

    This commit applies rustfmt with rust-lang/rust's default settings to
    files in src/libstd *that are not involved in any currently open PR* to
    minimize merge conflicts. THe list of files involved in open PRs was
    determined by querying GitHub's GraphQL API with this script:
    https://gist.github.com/dtolnay/aa9c34993dc051a4f344d1b10e4487e8

    With the list of files from the script in outstanding_files, the
    relevant commands were:

        $ find src/libstd -name '*.rs' \
            | xargs rustfmt --edition=2018 --unstable-features --skip-children
        $ rg libstd outstanding_files | xargs git checkout --

    Repeating this process several months apart should get us coverage of
    most of the rest of libstd.

    To confirm no funny business:

        $ git checkout $THIS_COMMIT^
        $ git show --pretty= --name-only $THIS_COMMIT \
            | xargs rustfmt --edition=2018 --unstable-features --skip-children
        $ git diff $THIS_COMMIT  # there should be no difference

Gbp-Pq: Name u-riscv64-format-2.patch

5 years agou-riscv64-format-1
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-riscv64-format-1

commit 60091ee826b071a122ad4ef4ae833591e1db553b
gpg: Signature made Sat 30 Nov 2019 02:32:46 GMT
gpg:                using RSA key 4628C5D82CFF65D68164A78AF9BA143B95FF6D82
gpg: Can't check signature: No public key
Author: David Tolnay <dtolnay@gmail.com>
Date:   Wed Nov 27 10:28:21 2019 -0800

    Format libstd/os with rustfmt

    This commit applies rustfmt with rust-lang/rust's default settings to
    files in src/libstd/os *that are not involved in any currently open PR*
    to minimize merge conflicts. THe list of files involved in open PRs was
    determined by querying GitHub's GraphQL API with this script:
    https://gist.github.com/dtolnay/aa9c34993dc051a4f344d1b10e4487e8

    With the list of files from the script in outstanding_files, the
    relevant commands were:

        $ find src/libstd/os -name '*.rs' \
            | xargs rustfmt --edition=2018 --unstable-features --skip-children
        $ rg libstd/os outstanding_files | xargs git checkout --

    Repeating this process several months apart should get us coverage of
    most of the rest of the files.

    To confirm no funny business:

        $ git checkout $THIS_COMMIT^
        $ git show --pretty= --name-only $THIS_COMMIT \
            | xargs rustfmt --edition=2018 --unstable-features --skip-children
        $ git diff $THIS_COMMIT  # there should be no difference

Gbp-Pq: Name u-riscv64-format-1.patch

5 years agoAdd riscv64gc-unknown-linux-gnu target
msizanoen1 [Sat, 23 Nov 2019 07:15:27 +0000 (14:15 +0700)]
Add riscv64gc-unknown-linux-gnu target

Gbp-Pq: Name u-riscv64-66661.patch

5 years agoAllow specifying key "llvm-abiname" in target specification
Gui Andrade [Wed, 30 Oct 2019 04:12:05 +0000 (21:12 -0700)]
Allow specifying key "llvm-abiname" in target specification

This addresses #65024, as it allows RISC-V target specification
files to set "llvm-abiname": "lp64d". In general, it is useful
for the programmer to be able to set this codegen parameter,
which other languages usually expose under a compiler argument
like "-mabi=<XYZ>".

Gbp-Pq: Name u-riscv64-65953.patch

5 years agou-fix-cross-compile-install-again
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-fix-cross-compile-install-again

Gbp-Pq: Name u-fix-cross-compile-install-again.patch

5 years agou-mips-fixes
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-mips-fixes

Gbp-Pq: Name u-mips-fixes.diff

5 years agou-tests-ignore-arm
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-tests-ignore-arm

Gbp-Pq: Name u-tests-ignore-arm.patch

5 years agou-make-tests-work-without-rpath
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-make-tests-work-without-rpath

Gbp-Pq: Name u-make-tests-work-without-rpath.patch

5 years agou-prefer-local-css
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-prefer-local-css

Gbp-Pq: Name u-prefer-local-css.patch

5 years agou-reproducible-build
Debian Rust Maintainers [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
u-reproducible-build

Gbp-Pq: Name u-reproducible-build.patch

5 years agorustc (1.40.0+dfsg1-5) unstable; urgency=medium
Ximin Luo [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
rustc (1.40.0+dfsg1-5) unstable; urgency=medium

  * More python 2 -> 3 fixes.
  * Allow 24 failing tests on riscv64.
  * Reenable debuginfo for rustc, not just libstd.
  * Reenable backtraces during tests.

[dgit import unpatched rustc 1.40.0+dfsg1-5]

5 years agoImport rustc_1.40.0+dfsg1-5.debian.tar.xz
Ximin Luo [Sun, 5 Jan 2020 13:35:46 +0000 (13:35 +0000)]
Import rustc_1.40.0+dfsg1-5.debian.tar.xz

[dgit import tarball rustc 1.40.0+dfsg1-5 rustc_1.40.0+dfsg1-5.debian.tar.xz]

5 years agoMerge rustc (1.40.0+dfsg1-1) import into refs/heads/workingbranch
Ximin Luo [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
Merge rustc (1.40.0+dfsg1-1) import into refs/heads/workingbranch

5 years agod-fix-mips64el-bootstrap
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-fix-mips64el-bootstrap

Gbp-Pq: Name d-fix-mips64el-bootstrap.patch

5 years agod-no-jemalloc
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-no-jemalloc

===================================================================

Gbp-Pq: Name d-no-jemalloc.patch

5 years agod-i686-baseline
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-i686-baseline

Gbp-Pq: Name d-i686-baseline.patch

5 years agod-ignore-avx-44056
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-ignore-avx-44056

===================================================================

Gbp-Pq: Name d-ignore-avx-44056.patch

5 years agod-read-beta-version-from-file
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-read-beta-version-from-file

Gbp-Pq: Name d-read-beta-version-from-file.patch

5 years agod-dont-download-stage0
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-dont-download-stage0

Gbp-Pq: Name d-dont-download-stage0.patch

5 years agod-add-soname
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-add-soname

Gbp-Pq: Name d-add-soname.patch

5 years agod-rust-lldb-paths
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-rust-lldb-paths

Gbp-Pq: Name d-rust-lldb-paths

5 years agod-rust-gdb-paths
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-rust-gdb-paths

Gbp-Pq: Name d-rust-gdb-paths

5 years agod-disable-cargo-vendor
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-disable-cargo-vendor

Gbp-Pq: Name d-disable-cargo-vendor.patch

5 years agod-ignore-error-detail-diff
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-ignore-error-detail-diff

Gbp-Pq: Name d-ignore-error-detail-diff.patch

5 years agod-0003-mdbook-strip-embedded-libs
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-0003-mdbook-strip-embedded-libs

Gbp-Pq: Name d-0003-mdbook-strip-embedded-libs.patch

5 years agod-0002-pkg-config-no-special-snowflake
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-0002-pkg-config-no-special-snowflake

Gbp-Pq: Name d-0002-pkg-config-no-special-snowflake.patch

5 years agod-0001-disable-miniz
Debian Rust Maintainers [Sun, 29 Dec 2019 22:17:04 +0000 (22:17 +0000)]
d-0001-disable-miniz

Gbp-Pq: Name d-0001-disable-miniz.patch