Skip to content

Commit ca8b753

Browse files
committed
- up to 1.49.0
1 parent 99e14d2 commit ca8b753

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

rust-x32.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// `Expr` is used a lot. Make sure it doesn't unintentionally get bigger.
1818
-#[cfg(target_arch = "x86_64")]
1919
+#[cfg(all(target_arch = "x86_64", target_pointer_size = "64"))]
20-
rustc_data_structures::static_assert_size!(Expr, 112);
20+
rustc_data_structures::static_assert_size!(Expr, 120);
2121

2222
impl Expr {
2323
--- rustc-1.47.0-src.orig/compiler/rustc_ast/src/token.rs 2020-10-07 09:53:22.000000000 +0200

rust.spec

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,31 @@
2121
# To bootstrap from scratch, set the channel and date from src/stage0.txt
2222
# e.g. 1.10.0 wants rustc: 1.9.0-2016-05-24
2323
# or nightly wants some beta-YYYY-MM-DD
24-
%define bootstrap_rust 1.47.0
25-
%define bootstrap_cargo 1.47.0
26-
%define bootstrap_date 2020-10-08
24+
%define bootstrap_rust 1.48.0
25+
%define bootstrap_cargo 1.48.0
26+
%define bootstrap_date 2020-11-19
2727

2828
%ifarch x32
2929
%define with_cross 1
3030
%endif
3131
Summary: The Rust Programming Language
3232
Summary(pl.UTF-8): Język programowania Rust
3333
Name: rust
34-
Version: 1.48.0
34+
Version: 1.49.0
3535
Release: 0.1
3636
# Licenses: (rust itself) and (bundled libraries)
3737
License: (Apache v2.0 or MIT) and (BSD and ISC and MIT)
3838
Group: Development/Languages
3939
Source0: https://static.rust-lang.org/dist/%{rustc_package}.tar.xz
40-
# Source0-md5: 1d8996bba1abbd5b3b149ccc89589664
40+
# Source0-md5: f13014e17f84a99ff749f81e0cd1d2b1
4141
Source1: https://static.rust-lang.org/dist/%{bootstrap_date}/rust-%{bootstrap_rust}-x86_64-unknown-linux-gnu.tar.xz
42-
# Source1-md5: 9365de1153dae7bf1f99224382f8d77c
42+
# Source1-md5: 9aab1315df1f461bc988c5b5abcb8c89
4343
Source2: https://static.rust-lang.org/dist/%{bootstrap_date}/rust-%{bootstrap_rust}-i686-unknown-linux-gnu.tar.xz
44-
# Source2-md5: 9c351771a541e38416dd99ca85309059
44+
# Source2-md5: 107dda909166a9c57d7907ac956eecd9
4545
Source3: https://static.rust-lang.org/dist/%{bootstrap_date}/rust-%{bootstrap_rust}-aarch64-unknown-linux-gnu.tar.xz
46-
# Source3-md5: 1bb96238b441204e2b47561857ca9916
46+
# Source3-md5: 905c4ad9d3737fdf04c1acfd1b612b7c
4747
Source4: https://static.rust-lang.org/dist/%{bootstrap_date}/rust-%{bootstrap_rust}-arm-unknown-linux-gnueabihf.tar.xz
48-
# Source4-md5: e178fcecb4bfdbacc967b76a5313c889
48+
# Source4-md5: f8502775faa60c018e38eda59c43147e
4949
Patch0: %{name}-x32.patch
5050
URL: https://www.rust-lang.org/
5151
# for src/compiler-rt
@@ -419,6 +419,7 @@ rm -rf $RPM_BUILD_ROOT
419419
%files
420420
%defattr(644,root,root,755)
421421
%doc COPYRIGHT LICENSE-APACHE LICENSE-MIT README.md library/backtrace/crates/backtrace-sys/src/libbacktrace/LICENSE-libbacktrace
422+
%attr(755,root,root) %{_bindir}/miri
422423
%attr(755,root,root) %{_bindir}/rustc
423424
%attr(755,root,root) %{_bindir}/rustdoc
424425
%attr(755,root,root) %{_bindir}/rustfmt
@@ -472,6 +473,7 @@ rm -rf $RPM_BUILD_ROOT
472473
%attr(755,root,root) %{_bindir}/cargo
473474
%attr(755,root,root) %{_bindir}/cargo-clippy
474475
%attr(755,root,root) %{_bindir}/cargo-fmt
476+
%attr(755,root,root) %{_bindir}/cargo-miri
475477
%attr(755,root,root) %{_bindir}/clippy-driver
476478
%{_mandir}/man1/cargo*.1*
477479
%dir %{_datadir}/cargo

0 commit comments

Comments
 (0)