From 266f40cbab6a2a5d784e62ae2ce6608aaf704857b90c380b5386634870f8af49 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Mon, 8 Mar 2021 12:49:24 +0000 Subject: [PATCH] Accepting request 877726 from home:Guillaume_G:branches:openSUSE:Factory:ARM - Update to version 1.50: * This fixes build on armv7 - boo#1181643 + Language - You can now use const values for x in [x; N] array expressions. This has been technically possible since 1.38.0, as it was unintentionally stabilized. - Assignments to ManuallyDrop union fields are now considered safe. + Compiler - Added tier 3* support for the armv5te-unknown-linux-uclibceabi target. - Added tier 3 support for the aarch64-apple-ios-macabi target. - The x86_64-unknown-freebsd is now built with the full toolset. - Dropped support for all cloudabi targets. * Refer to Rust's platform support page for more information on Rust's tiered platform support. + Libraries - proc_macro::Punct now implements PartialEq. - ops::{Index, IndexMut} are now implemented for fixed sized arrays of any length. - On Unix platforms, the std::fs::File type now has a "niche" of -1. This value cannot be a valid file descriptor, and now means Option takes up the same amount of space as File. + Stabilized APIs bool::then btree_map::Entry::or_insert_with_key f32::clamp f64::clamp hash_map::Entry::or_insert_with_key Ord::clamp RefCell::take slice::fill UnsafeCell::get_mut - The following previously stable methods are now const. IpAddr::is_ipv4 IpAddr::is_ipv6 IpAddr::is_unspecified IpAddr::is_loopback IpAddr::is_multicast Ipv4Addr::octets Ipv4Addr::is_loopback Ipv4Addr::is_private Ipv4Addr::is_link_local Ipv4Addr::is_multicast Ipv4Addr::is_broadcast Ipv4Addr::is_documentation Ipv4Addr::to_ipv6_compatible Ipv4Addr::to_ipv6_mapped Ipv6Addr::segments Ipv6Addr::is_unspecified Ipv6Addr::is_loopback Ipv6Addr::is_multicast Ipv6Addr::to_ipv4 Layout::size Layout::align Layout::from_size_align pow for all integer types. checked_pow for all integer types. saturating_pow for all integer types. wrapping_pow for all integer types. next_power_of_two for all unsigned integer types. checked_next_power_of_two for all unsigned integer types. + Cargo - Added the [build.rustc-workspace-wrapper] option. This option sets a wrapper to execute instead of rustc, for workspace members only. - cargo:rerun-if-changed will now, if provided a directory, scan the entire contents of that directory for changes. - Added the --workspace flag to the cargo update command. + Misc - The search results tab and the help button are focusable with keyboard in rustdoc. - Running tests will now print the total time taken to execute. + Compatibility Notes - The compare_and_swap method on atomics has been deprecated. It's recommended to use the compare_exchange and compare_exchange_weak methods instead. - Changes in how TokenStreams are checked have fixed some cases where you could write unhygenic macro_rules! macros. - #![test] as an inner attribute is now considered unstable like other inner macro attributes, and reports an error by default through the soft_unstable lint. - Overriding a forbid lint at the same level that it was set is now a hard error. - You can no longer intercept panic! calls by supplying your own macro. It's recommended to use the #[panic_handler] attribute to provide your own implementation. - Semi-colons after item statements (e.g. struct Foo {};) now produce a warning. - Add download_helper.sh to ease download of bootstrap packages OBS-URL: https://build.opensuse.org/request/show/877726 OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/rust?expand=0&rev=277 --- _constraints | 2 +- download_helper.sh | 11 +++ rust-1.48.0-aarch64-unknown-linux-gnu.tar.xz | 3 - ....48.0-aarch64-unknown-linux-gnu.tar.xz.asc | 16 ---- ....48.0-armv7-unknown-linux-gnueabihf.tar.xz | 3 - ...0-armv7-unknown-linux-gnueabihf.tar.xz.asc | 16 ---- rust-1.48.0-i686-unknown-linux-gnu.tar.xz | 3 - rust-1.48.0-i686-unknown-linux-gnu.tar.xz.asc | 16 ---- rust-1.48.0-powerpc-unknown-linux-gnu.tar.xz | 3 - ....48.0-powerpc-unknown-linux-gnu.tar.xz.asc | 16 ---- ...-1.48.0-powerpc64-unknown-linux-gnu.tar.xz | 3 - ...8.0-powerpc64-unknown-linux-gnu.tar.xz.asc | 16 ---- ....48.0-powerpc64le-unknown-linux-gnu.tar.xz | 3 - ...0-powerpc64le-unknown-linux-gnu.tar.xz.asc | 16 ---- ...-1.48.0-riscv64gc-unknown-linux-gnu.tar.xz | 3 - ...8.0-riscv64gc-unknown-linux-gnu.tar.xz.asc | 16 ---- rust-1.48.0-s390x-unknown-linux-gnu.tar.xz | 3 - ...-1.48.0-s390x-unknown-linux-gnu.tar.xz.asc | 16 ---- rust-1.48.0-x86_64-unknown-linux-gnu.tar.xz | 3 - ...1.48.0-x86_64-unknown-linux-gnu.tar.xz.asc | 16 ---- rust-1.50.0-aarch64-unknown-linux-gnu.tar.xz | 3 + ....50.0-aarch64-unknown-linux-gnu.tar.xz.asc | 16 ++++ ....50.0-armv7-unknown-linux-gnueabihf.tar.xz | 3 + ...0-armv7-unknown-linux-gnueabihf.tar.xz.asc | 16 ++++ rust-1.50.0-i686-unknown-linux-gnu.tar.xz | 3 + rust-1.50.0-i686-unknown-linux-gnu.tar.xz.asc | 16 ++++ rust-1.50.0-powerpc-unknown-linux-gnu.tar.xz | 3 + ....50.0-powerpc-unknown-linux-gnu.tar.xz.asc | 16 ++++ ...-1.50.0-powerpc64-unknown-linux-gnu.tar.xz | 3 + ...0.0-powerpc64-unknown-linux-gnu.tar.xz.asc | 16 ++++ ....50.0-powerpc64le-unknown-linux-gnu.tar.xz | 3 + ...0-powerpc64le-unknown-linux-gnu.tar.xz.asc | 16 ++++ ...-1.50.0-riscv64gc-unknown-linux-gnu.tar.xz | 3 + ...0.0-riscv64gc-unknown-linux-gnu.tar.xz.asc | 16 ++++ rust-1.50.0-s390x-unknown-linux-gnu.tar.xz | 3 + ...-1.50.0-s390x-unknown-linux-gnu.tar.xz.asc | 16 ++++ rust-1.50.0-x86_64-unknown-linux-gnu.tar.xz | 3 + ...1.50.0-x86_64-unknown-linux-gnu.tar.xz.asc | 16 ++++ rust.changes | 92 +++++++++++++++++++ rust.spec | 46 ++++++---- rustc-1.49.0-src.tar.xz | 3 - rustc-1.50.0-src.tar.xz | 3 + 42 files changed, 306 insertions(+), 193 deletions(-) create mode 100644 download_helper.sh delete mode 100644 rust-1.48.0-aarch64-unknown-linux-gnu.tar.xz delete mode 100644 rust-1.48.0-aarch64-unknown-linux-gnu.tar.xz.asc delete mode 100644 rust-1.48.0-armv7-unknown-linux-gnueabihf.tar.xz delete mode 100644 rust-1.48.0-armv7-unknown-linux-gnueabihf.tar.xz.asc delete mode 100644 rust-1.48.0-i686-unknown-linux-gnu.tar.xz delete mode 100644 rust-1.48.0-i686-unknown-linux-gnu.tar.xz.asc delete mode 100644 rust-1.48.0-powerpc-unknown-linux-gnu.tar.xz delete mode 100644 rust-1.48.0-powerpc-unknown-linux-gnu.tar.xz.asc delete mode 100644 rust-1.48.0-powerpc64-unknown-linux-gnu.tar.xz delete mode 100644 rust-1.48.0-powerpc64-unknown-linux-gnu.tar.xz.asc delete mode 100644 rust-1.48.0-powerpc64le-unknown-linux-gnu.tar.xz delete mode 100644 rust-1.48.0-powerpc64le-unknown-linux-gnu.tar.xz.asc delete mode 100644 rust-1.48.0-riscv64gc-unknown-linux-gnu.tar.xz delete mode 100644 rust-1.48.0-riscv64gc-unknown-linux-gnu.tar.xz.asc delete mode 100644 rust-1.48.0-s390x-unknown-linux-gnu.tar.xz delete mode 100644 rust-1.48.0-s390x-unknown-linux-gnu.tar.xz.asc delete mode 100644 rust-1.48.0-x86_64-unknown-linux-gnu.tar.xz delete mode 100644 rust-1.48.0-x86_64-unknown-linux-gnu.tar.xz.asc create mode 100644 rust-1.50.0-aarch64-unknown-linux-gnu.tar.xz create mode 100644 rust-1.50.0-aarch64-unknown-linux-gnu.tar.xz.asc create mode 100644 rust-1.50.0-armv7-unknown-linux-gnueabihf.tar.xz create mode 100644 rust-1.50.0-armv7-unknown-linux-gnueabihf.tar.xz.asc create mode 100644 rust-1.50.0-i686-unknown-linux-gnu.tar.xz create mode 100644 rust-1.50.0-i686-unknown-linux-gnu.tar.xz.asc create mode 100644 rust-1.50.0-powerpc-unknown-linux-gnu.tar.xz create mode 100644 rust-1.50.0-powerpc-unknown-linux-gnu.tar.xz.asc create mode 100644 rust-1.50.0-powerpc64-unknown-linux-gnu.tar.xz create mode 100644 rust-1.50.0-powerpc64-unknown-linux-gnu.tar.xz.asc create mode 100644 rust-1.50.0-powerpc64le-unknown-linux-gnu.tar.xz create mode 100644 rust-1.50.0-powerpc64le-unknown-linux-gnu.tar.xz.asc create mode 100644 rust-1.50.0-riscv64gc-unknown-linux-gnu.tar.xz create mode 100644 rust-1.50.0-riscv64gc-unknown-linux-gnu.tar.xz.asc create mode 100644 rust-1.50.0-s390x-unknown-linux-gnu.tar.xz create mode 100644 rust-1.50.0-s390x-unknown-linux-gnu.tar.xz.asc create mode 100644 rust-1.50.0-x86_64-unknown-linux-gnu.tar.xz create mode 100644 rust-1.50.0-x86_64-unknown-linux-gnu.tar.xz.asc delete mode 100644 rustc-1.49.0-src.tar.xz create mode 100644 rustc-1.50.0-src.tar.xz diff --git a/_constraints b/_constraints index 0c57488..1273c22 100644 --- a/_constraints +++ b/_constraints @@ -42,7 +42,7 @@ - 8 + 11 diff --git a/download_helper.sh b/download_helper.sh new file mode 100644 index 0000000..86fd2ec --- /dev/null +++ b/download_helper.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +dl_url="https://static.rust-lang.org/dist" +version_bootstrap=1.50.0 +version_source=1.50.0 +for flavor in x86_64-unknown-linux-gnu i686-unknown-linux-gnu aarch64-unknown-linux-gnu armv7-unknown-linux-gnueabihf powerpc64-unknown-linux-gnu powerpc64le-unknown-linux-gnu s390x-unknown-linux-gnu powerpc-unknown-linux-gnu riscv64gc-unknown-linux-gnu; do + wget $dl_url/rust-$version_bootstrap-$flavor.tar.xz.asc + wget $dl_url/rust-$version_bootstrap-$flavor.tar.xz +done + +wget $dl_url/rustc-$version_source-src.tar.xz diff --git a/rust-1.48.0-aarch64-unknown-linux-gnu.tar.xz b/rust-1.48.0-aarch64-unknown-linux-gnu.tar.xz deleted file mode 100644 index 9e051b4..0000000 --- a/rust-1.48.0-aarch64-unknown-linux-gnu.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bd5a8b4c891c1f569381c0c42a61a1f5c5aa0b34d34d6cd3ed6e5d37f24c00d4 -size 133782948 diff --git a/rust-1.48.0-aarch64-unknown-linux-gnu.tar.xz.asc b/rust-1.48.0-aarch64-unknown-linux-gnu.tar.xz.asc deleted file mode 100644 index 0c41f6d..0000000 --- a/rust-1.48.0-aarch64-unknown-linux-gnu.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -wsFcBAABCgAQBQJftn++CRCFq5bm+hvl/gAAuAsQAI+liOmt69pEKQoEcrmNQaEK -t/i109MzLSNf9OV2HFI5VF5euSLNuvNjXDoRQcfDhVcI+ArDpu0liU0I7S/dnuWk -2R4sn4qTwDQmGKKzDNBgws9liLopr0PhA8nkEiFT8iCH7w449I9HSelUePKI7FNd -JsOhq/chkbmz8Dam4pcXQD1njjg/TFd8mdWUG17baPDB1uXuJXzSevLv55DCXpI5 -HQGm3nOQe8yniakgADk22JILGl+c+y/8v+18HcRl3pHZDPc2qXG9G5AzjKJyWgjv -gFSIv5jndF9lZd2ifwB5S93qRmB6HAVe32wM6S3pRP7qML/ZDLOw7nbcoJXKQTi7 -hyrhaOb/4Cti2E/ojtdJ4m6/C9JT/lTZSzCOsshvumM29b8H4VAo25xknNYwe9R+ -8JALGxWveEEa+XL5o13TG+TlRF7kgFOxjjQ9K5EgVE6hMHxQn5Xq6P4RZbDbULix -ierjYW3YV8MEVViNCOzg3QB1Bt/O7rPGrIhbVFLdZhjkz95eAVV35C4W1SYZGNlx -sPXYFh9g/YOOpB+7+QHfWm2lHthuyzr0kW8+AD8vu2GXmK+LOv3uWPYLr0xt3602 -aU0KjW+Es9yIYBdkYCRfMOwaefnGAoUNf0vrwdNPjr7xXCAs2IcYE3mWiKGjdWrN -g8tVLm1VlcEcbkixx2+6 -=UY4p ------END PGP SIGNATURE----- diff --git a/rust-1.48.0-armv7-unknown-linux-gnueabihf.tar.xz b/rust-1.48.0-armv7-unknown-linux-gnueabihf.tar.xz deleted file mode 100644 index 630ebb8..0000000 --- a/rust-1.48.0-armv7-unknown-linux-gnueabihf.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c8c14efc98e4864c6759c42751247ab09c3c8680f01c102170daec97a0b71623 -size 134716224 diff --git a/rust-1.48.0-armv7-unknown-linux-gnueabihf.tar.xz.asc b/rust-1.48.0-armv7-unknown-linux-gnueabihf.tar.xz.asc deleted file mode 100644 index 06ba1ca..0000000 --- a/rust-1.48.0-armv7-unknown-linux-gnueabihf.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -wsFcBAABCgAQBQJftn9LCRCFq5bm+hvl/gAA25EQAJM5k6t/TlvLrcz+pmu6DRiL -N9RQ/rVhITetMPCR9p+TpZShmGnG8WyV0jygArpus2lRoW9fHkE6lA+UNpvn7VV0 -pVmANxF/yccIQfVk7fExOBP8mfUEjlOKMEYvriOv+d30OQASY9R4r39Z5pcNtIXq -OdDiWbHi/A+0QoD6dYjzquM8KEyaWlT4kxjMFGPytOzdjVld9M3cplGbgouSOvbi -AsfxAfn5UafvJV+AHraBVormENgi+DoJGaOgpf7vOx/gXCnN/h4k9oGUD2j37e+6 -ZSh4hPLlfxJ5j0bpN2moDdyfyBMs9dENcNgze5dgBhnrOt+r/pyrQecukTUSgPbV -l7UuJXzLznXhjEJOccb1q4shoXzM4T4x39aiFz60UC9mMiy+9SiAnfl9FienCGEg -LbIUukMzdvrUTprYCom2Hz+ypJXerZRwocEgi2bbuvbfKoPMkBefyTyr5S0N0JZe -2vVkgCjsd+5JhGQQ8KAlheg2Nt2D8NAiJOdt3k3WZUg5I8K/GLY8Xt4GEmRg/ePE -Y1HnHVGYNCkLsVduONj+77CzwgvIniUcTnI3izxllyBaHNFSM0tzmILgRD7EulzZ -5xq+lgfheol0pJxZWVBbLJ8b6A7x8+bTKUIbZKaNhEIbh+13EL3G4MeWLMsWmZB8 -W1PiIin/iEciuZKNwuVl -=/M/N ------END PGP SIGNATURE----- diff --git a/rust-1.48.0-i686-unknown-linux-gnu.tar.xz b/rust-1.48.0-i686-unknown-linux-gnu.tar.xz deleted file mode 100644 index e513f2b..0000000 --- a/rust-1.48.0-i686-unknown-linux-gnu.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ddbfb5af1cd2cb6ae79d6f3f95cf29c0057e6387eada8b3975e7d7658e315aae -size 161602224 diff --git a/rust-1.48.0-i686-unknown-linux-gnu.tar.xz.asc b/rust-1.48.0-i686-unknown-linux-gnu.tar.xz.asc deleted file mode 100644 index dac7884..0000000 --- a/rust-1.48.0-i686-unknown-linux-gnu.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -wsFcBAABCgAQBQJftn+NCRCFq5bm+hvl/gAA/dEP/iz9uu20WXoJQeb8ztdOpC1R -EvZrAa40o0IPY+LSMK/zU8jedxq/cRY4kVmyZc7tZejz6l6gWTPaB81pmLojHC1/ -eHV6TmCVF3+XlzeqsvNXREfS0yWXgikuua3cc4hOscH/KVXCenzmz/c9No4+iuBb -y1DvCg530kuzBeci+MRttOFM/033ZAU+BNb2p1gh0DREh2emkJrPNak+tCPqZZlI -aqF6C7YBlBqJLV3ZkCpXGOFq5spRRblPnURtjCAn+8Zhc3xUUkiOdvGcsWlR4hqB -GXeomJQiBytI5ezzUwHETIDLsnBO0pGgeXTWSfRSSwZ9Hz4oLkiN1mL9RlYp1mv+ -VZWdTTkrBV6NBbE7rQ+HoxXfkx5bZiqD8GSdHvjyxLnrWYHoqJNP989Gjk12+Dcj -E2O17YetLHqlQSRfi2ONW4FbzdVwZqVorv0oGnqONPUJfLUBjqPEKuRp3FrwtVa0 -vE9xQfz+1s6DWTtyPigvEQqnVpVvXdSQqfVUEvpdlp1pMeDdz3x/kw8RAu9F2rUR -4cFb6qy8vd+/ar78JswFJ8JLAXwIH7lS/NTkmah4cUsJmKakI4BL8EhFDS8lOzzH -A0QIqhlsOwJFV0Z5JrZ38YOiDJHVYvAzXs+I5wQetN0RLb/X6DOssEeoEgy3A+x0 -iulhy4WRNYkrq4wxPRNW -=B9u4 ------END PGP SIGNATURE----- diff --git a/rust-1.48.0-powerpc-unknown-linux-gnu.tar.xz b/rust-1.48.0-powerpc-unknown-linux-gnu.tar.xz deleted file mode 100644 index 8a33e80..0000000 --- a/rust-1.48.0-powerpc-unknown-linux-gnu.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3cb584410fe5523528dc15f7f321dc379e6d3049f68ac51117dd01ce337e458a -size 106401772 diff --git a/rust-1.48.0-powerpc-unknown-linux-gnu.tar.xz.asc b/rust-1.48.0-powerpc-unknown-linux-gnu.tar.xz.asc deleted file mode 100644 index be0dd48..0000000 --- a/rust-1.48.0-powerpc-unknown-linux-gnu.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -wsFcBAABCgAQBQJftn9VCRCFq5bm+hvl/gAADXQP/i8bDnpBJuIBHxGT5uV678ci -0IfoC+28PXRaDqTuX1dlNttSz6StKsOd0AsOsD1G5sHqAdzJ2ZmbMdnOtzkYkUZa -TPY+xNrMzIv7JCgFF8QjTvuXYgRYbu6v1lim8tj7iIEkXw0GgfruRn/XryWn524O -CL5KLO9plSGCtllwbDuC5bYIQP9oj/OS5pwOqzerm1BdVSbC3zcAmMk6MNQ8utDM -RLZ6713PAx7pNFv6waYnKM0bkWhIO6yB53mSrHfcHewpXvlNMiYCzKukMToLzj1/ -jg67JY5OkRkdvAExT+5uMv1xr877FW/uDGj3M3eZ70WrPLSiKJ5yZ6GSCXpyfynG -jAxQPelu0S58ANfMLMJIq0CxhYSfjcw+P2ZTgNW+9ELSmwTPkR8ebwmy5L1tlHjS -AH4homk78Ehc8dgQTkCCWqoRrjhtgGGwDZPVQhIvw/HCvufVnNRSt4sE9EXfroc+ -nZf18rDv4G/AqEHXBZn8AyOR66TEmU1AH0l1gZj4nhAZ1KTGkMsDdFpgGeJbPfE8 -NnaOtM7wWhGK5QEOb1Msq0+H0Igyjrvlar6gBpE2F+fbC0CNSTlp/1fVUQb0YiV4 -wU7wvTd+xotVMXNnKQNrCANSBoU6Qqz2G5Cq1Aqtbp7+9Go332dDnuNUWLSHhkEj -2Gmz9b7oVaVLylDnCYWQ -=+Qgr ------END PGP SIGNATURE----- diff --git a/rust-1.48.0-powerpc64-unknown-linux-gnu.tar.xz b/rust-1.48.0-powerpc64-unknown-linux-gnu.tar.xz deleted file mode 100644 index add4a5c..0000000 --- a/rust-1.48.0-powerpc64-unknown-linux-gnu.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea43d333a046e13234cc520fbf3a2421861f8fac20b3ca6f9b6ccea20ce766c7 -size 120497676 diff --git a/rust-1.48.0-powerpc64-unknown-linux-gnu.tar.xz.asc b/rust-1.48.0-powerpc64-unknown-linux-gnu.tar.xz.asc deleted file mode 100644 index df4619d..0000000 --- a/rust-1.48.0-powerpc64-unknown-linux-gnu.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -wsFcBAABCgAQBQJftn8KCRCFq5bm+hvl/gAAivUQAKagmXrW7u3Quqxj6/yqXQTL -r68So13CeqI6cYpXsEOGI4mLR56q7Kq8dQUNYFbfCL3FqqvAy82/p03w3+ztfdO8 -U4NBIr4sMMe1qOZ4fp1HqDMEFovKTKrgZj/9NooH4KIHyXwqekox8fUeMKSp1308 -3jeHL0oObbZTAiloWtKodvpeHNA7ZyRMJLKSouRgpFmnVrCK4xN/yJFQBa4aHhxN -rxPmfU+pB0Zv2GZWH7HL00QIUaLNmE2wQGrCu5trueQLyyWS4aPK2eKFvHnn9avP -DuUdnwuzSkEPdPXLV/hh6grXC3fGF0AigiqVH1V/7MUSuOPAFh0rFbIX03v2pt4r -bxX9Z/QkVhiUDvtDxU0mwsPHUaMt7WZ46KpwdxH6+yJVYBW4Ns9U+G688XfPTA3U -opK3b74ZugVme+6A5ia6bdNldRraB6ypX9epm38CGM9LvwJC9udD+VCnx/HiWWqB -bd1M4e3yCXN+DUBQhd4fKZYv3b8JFuqJIAZ5+hCU5cKhxDS2WTd6xdW0eFcMMBxS -TWv2dSeLXonpiBpTQIfGjfufE09W67KBsBycZMqrJ2kARZdlAiICwQLLxtPboaam -/7o53XgkPOvt/ClUpUZqCTllg9v6baetvQzmbRpJiQWQBAAZlGqs74NK2/UjYKcJ -0ea0plmFD3GDvuAl0lrN -=zuN2 ------END PGP SIGNATURE----- diff --git a/rust-1.48.0-powerpc64le-unknown-linux-gnu.tar.xz b/rust-1.48.0-powerpc64le-unknown-linux-gnu.tar.xz deleted file mode 100644 index 1f688ed..0000000 --- a/rust-1.48.0-powerpc64le-unknown-linux-gnu.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b82d800ca4933afedbbbd83f45e1b39aaea29556efdf5cfdbdc57746b32b7c5e -size 124335896 diff --git a/rust-1.48.0-powerpc64le-unknown-linux-gnu.tar.xz.asc b/rust-1.48.0-powerpc64le-unknown-linux-gnu.tar.xz.asc deleted file mode 100644 index 5876ed1..0000000 --- a/rust-1.48.0-powerpc64le-unknown-linux-gnu.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -wsFcBAABCgAQBQJftn/hCRCFq5bm+hvl/gAAUukQAIdegm3eDZOMxXpymhDG1TCw -Nv0/BUo6sWOjfjagm6X/aaNg05/jwnHk2K5l4MG0NJzR8x3AkW7dpe3ftaJHFMdA -JoqZNIsY5NMP2T40szz6sA+DiZcm4g74dIYDMhTLaYAicTrlAARhly9xY3h+apa3 -5kUT13z1BnIbjlyJG4+K5FSUcXVaX0hqLU19OMlrRYku8qyIIi/vZOWbaoH/KHCN -ZIjeGGXZ23UER78CiYcR3H46TbDwz6m8AsTe/TxHfMdv/qoxUmInJm77bydw9aG8 -61WuXz1gJTxeY2fEweGN8+9o7iVqwXmY1UPxJ0jAPPEDOUhXUboNkQZU1Im7APIi -3xR2xou4Mt5ldMO5LQxylMyk0HexCQL1LR0gx4LNmfiyDfGmNI7D7cVYNMLkBdoA -jE7ySvQbMOkhMitA+9ViB8zCKW86gbfi3Axri2A3nOEXjp4YzQbtd7+WryprFiQc -EmxazIEm/5pUYgQILZCcgePoUPU1Q9i4kFoqn0HqXP8bX1IbzHmWkqJA9Dq8g2K1 -t5NI5JRha0+9VdAnSJATCTDyndZsbmsJbYZe/zQ/ArJ0yRnKHXhsX1Y7b5zg9+Ul -GaNEQIep8Zo5fAKdK6LlA2uTs+Kap8HQ7L+3ypVc6g1rs8x4xlbPHnj7mRmN3cW1 -kIzqrhqFbJqhqTg0PiPY -=CCMA ------END PGP SIGNATURE----- diff --git a/rust-1.48.0-riscv64gc-unknown-linux-gnu.tar.xz b/rust-1.48.0-riscv64gc-unknown-linux-gnu.tar.xz deleted file mode 100644 index 7a47471..0000000 --- a/rust-1.48.0-riscv64gc-unknown-linux-gnu.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:48ec3e4b90be3da3ba7493fe9879dbabb447de91876faaef356db544b181c48c -size 116811320 diff --git a/rust-1.48.0-riscv64gc-unknown-linux-gnu.tar.xz.asc b/rust-1.48.0-riscv64gc-unknown-linux-gnu.tar.xz.asc deleted file mode 100644 index fcf3f97..0000000 --- a/rust-1.48.0-riscv64gc-unknown-linux-gnu.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -wsFcBAABCgAQBQJftn+eCRCFq5bm+hvl/gAAdsgP/RW7lJC97sWIYKrkmNUvdxkR -bHH6fCAz/kxdyUzo9aD28xsCGcBvxseGFFJwTWyuqlOAXyme6Lqi+l/JPKJSh6je -6l29wrYtYELl9xiqh9cxgW4dp2RRmmy8cQhPFPeh+wAF1AgmIc/apwQ0kvwQO6qp -PctLS+hOECyMSeXNowqY7buCPIxABKBvGwdcisu4XJ/GjVg5zBN1F1jr0VgGDkh4 -CUYVk3IlJDIdt99gc9JcXYkAkJp6iW4Jwwf0ebEd40RiLCmih0PHYhtEOONuVsEt -av1mhqUvi6OBb8s0qJGTelL3isoipYD1yxj44ocuzYDSpfBLwPyl+y5pafyWNxbT -4ALeT2WHGwALSlorT7ormR9Fo/mTtc3OB7g4EFailMI+QO49x1pLPB1u0MXpPEGG -eV6F9cQnuZPRrSPw+px94g9MymHndSN1fLPnYso3V57oQXP+OErS5JZSxMR/UF6K -8M/tIpBHLLv5iRin5Z78qpEXvoq+UR+k+aCXujbN6hGDdg2WasNOp4Apx1JG1Bwx -0hf9b4RYAmcZgur9eJMshVXLgkeiGAfQWzlDsMp6sAKBtRMIZHMSVM4RFizs79ja -g9KmtFMWhLBxJtPrNo1sqimOwqVA+RhhCNi1i1vKl/+y1xaf2wfeVdrH64V3f62n -7Lidgr3yqz1mvmB3Szjg -=KRlW ------END PGP SIGNATURE----- diff --git a/rust-1.48.0-s390x-unknown-linux-gnu.tar.xz b/rust-1.48.0-s390x-unknown-linux-gnu.tar.xz deleted file mode 100644 index b5b27e1..0000000 --- a/rust-1.48.0-s390x-unknown-linux-gnu.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:655eb9e55a00e39503bb6a1924b946ed3d11f92c90955ed773b683aa42f308d4 -size 127221600 diff --git a/rust-1.48.0-s390x-unknown-linux-gnu.tar.xz.asc b/rust-1.48.0-s390x-unknown-linux-gnu.tar.xz.asc deleted file mode 100644 index 96be5ad..0000000 --- a/rust-1.48.0-s390x-unknown-linux-gnu.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -wsFcBAABCgAQBQJftn+8CRCFq5bm+hvl/gAAKJ8P/2qC3N1Vir2NxjI8uDn16IUY -iINfZBjB4u3st7Fnme4qJJ3QEAQ1U4RxmypsuMS96my6KUhA0waM+rhBiBXtmyYq -qhgVSqma92ENE7aqBBmDWBbJVRH33mDoTg0rVFbLlmJAzwMkHP3qvO06WBcXwXd2 -h5QNaaA+UqkqlWcFIpUrJL25bbtUkMJ2fn0oRSJNJY5g9WNZ4ovT7zahKNAEWox9 -s7zrsR2GoDpWQAJgVedK65nsvVlsj688p1XAp8mfTYBy8zOr/yyaQGUzAiVYN6zd -Bme/kAK8S/K4hZtAwXQWDEs0ukiAtvl6EtdxgeKM6E8W6KIzI6eZgJArTXK2ty+5 -NIyoIDapWjL7PlTGarNU0MkR1kJeUk3hC4b7Lr09P/n0ILavwh0Z189ps4VNe29+ -/CCTAWlVd0BqgeUbKF3GOlJiyNBS0P7UUSZrHQ2ZgrvrTApWlRbIc+9mYsOAYk5d -gvV3zOFj9Pa3DKiLKWQ9fGKvvM8pc4EEwimbEUZHKRtfRLZAWfJdi9ijbke+fCA5 -WkbZxVcWo9zsfACtXwAgfx31IeK1tsN61EPnj3tubhB3w4Juaie/KgIwdagfZRXj -HdsE9vv30bbWqpcTJFFJOaAXumVOWHAVhZe8W6+bmg/9ALAmZJztGpeqy8fOrL0a -fluhrXlZf7XowKMpr6kt -=tzXG ------END PGP SIGNATURE----- diff --git a/rust-1.48.0-x86_64-unknown-linux-gnu.tar.xz b/rust-1.48.0-x86_64-unknown-linux-gnu.tar.xz deleted file mode 100644 index b3fc62f..0000000 --- a/rust-1.48.0-x86_64-unknown-linux-gnu.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:58270d8e10f72e1712ba08db6b8f8ffca64a63d1a7b220688b59fb05655b3843 -size 155254844 diff --git a/rust-1.48.0-x86_64-unknown-linux-gnu.tar.xz.asc b/rust-1.48.0-x86_64-unknown-linux-gnu.tar.xz.asc deleted file mode 100644 index d11097b..0000000 --- a/rust-1.48.0-x86_64-unknown-linux-gnu.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -wsFcBAABCgAQBQJftn9KCRCFq5bm+hvl/gAAtfwQAL5Q8+pghfuy/cKMvcDRTV6M -UtGJQWciPtD+UiO1tHCXHuwxhaDTtCxQ2RZ5nqJ4sLpKUFJHo/7uDgjGciiRqFVN -KnstV3MmC/aeMVerq5H+rbCRNHuycsDksmFok4XdUBANGGUsP17k9WarZv5tP82w -d7j3o91JP42HBFrcFEwbvUMbiyd9ERQgKeiwsvNOwE0zC3JFMlU3K8P6/gFc0HyM -dMrLrSua2nmQPb8drxEFTUjYhYaL9o6i82RxqNhmL30ewOtowongKvAn3VZjuTBX -YEjMnmG1AF21+yLETz59xQ7+9sXYKroqrbXa1so3Ibp4E83EuCVeuw084om5ve5t -X2WPKYjhJuMzbouCp+tvbOOsSj6UUp378FsZW2vXSdFHzMy7j71tEPPilPIjC1E+ -KzYcquhHf0CgFDrh7NBgFIh0TXf1w5LcsyTbTQzVGVYOxX3WsG54jzD83qzGL8KH -Op4nnsN9AOwJssvxHFOzg3kHoZKYu//WOMLdhKthvNAXR8USsxPBfjBfEZGawBuU -dXx0RCa3zptJwlxvLGzce7bm3A5VgX06HWEfZtPDLaIONSHIoAOGJ5eANR6JUgRy -Cy9gTZRJrgQ/jaT4TVXh/YiobnQrbsugfRUGUOUbmrRRxEaGKVcm61L3D89ii99N -bLE4w7MM0KcgyqwNbQz3 -=wLbb ------END PGP SIGNATURE----- diff --git a/rust-1.50.0-aarch64-unknown-linux-gnu.tar.xz b/rust-1.50.0-aarch64-unknown-linux-gnu.tar.xz new file mode 100644 index 0000000..cd069ee --- /dev/null +++ b/rust-1.50.0-aarch64-unknown-linux-gnu.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f38e4a5e9075d8938877ceed7687c99395a12aec2906b9e118bedb3014ad0ec +size 203382140 diff --git a/rust-1.50.0-aarch64-unknown-linux-gnu.tar.xz.asc b/rust-1.50.0-aarch64-unknown-linux-gnu.tar.xz.asc new file mode 100644 index 0000000..f72b1f5 --- /dev/null +++ b/rust-1.50.0-aarch64-unknown-linux-gnu.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +wsFcBAABCgAQBQJgJT1JCRCFq5bm+hvl/gAAYTkP/jK52uVz3L+Kcw24MGNOnyIC +z8gUNL6cvY/wwvgCbwHXcTGyLmZHDh79pdLryh7g4VtFyMHcZjyRTpbBk20lRz9m +1yImWQkh5FNQVNLW/nA+pNjaD5ns6n6D1eMrm0V8u5YnelUW9tWg3BQL8KjbyYS1 +S6MjEFJb5x96hRUAhP9TifxMyI0U5ltxQzqFk2hE/LqySeArVfMix33px3Cdqg5W +X55DXhBmOzZeBlOJRMkZEA9ACW8GIdj2yNIX7bo2o3MZs0Txh7zDMKS4LhyaV99j +zuUfYjkq7oWYHXcbTkGFLgfX5msyi+qTxFZBlJG/jVn56X3Tq6inxmC5JjbucEci +TU8q7sl7jC0mifvYyMRg7iy+Aq5ubZ1mCClWeUmvWnllWQ0fxicFR69acYvBLwQN +jYME9EcQUh2FTlLosu2fvKbTJ1MenND+bcHsFY0P/ohTf/ufZEXWjZLZG10fdjwp +N6ET+Hw8xn6TYH1sDA6+nzxHgCxjXAB8F8cVmVd7ZmYoVeD8mDmXPY3zDxGXP1lx +pcIpWN/yM89JZd0PeoVohsZYxaOcZImOL9R6nVfuSTtOGWTRsW3Xg8X6vl6WgVA0 +XE5WFaSyPxhuKg3y0lA29V0EEmbhnKfg03wyWWvjdbuyC/GWZOsLK4J788dZIBE6 +lXigNIG+qazr28AsI3iE +=SF05 +-----END PGP SIGNATURE----- diff --git a/rust-1.50.0-armv7-unknown-linux-gnueabihf.tar.xz b/rust-1.50.0-armv7-unknown-linux-gnueabihf.tar.xz new file mode 100644 index 0000000..8e6eefb --- /dev/null +++ b/rust-1.50.0-armv7-unknown-linux-gnueabihf.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e347ddd0efb729a2ed6deb5d45027287cbb4624897ddc11cd08ae7e399d124 +size 194656336 diff --git a/rust-1.50.0-armv7-unknown-linux-gnueabihf.tar.xz.asc b/rust-1.50.0-armv7-unknown-linux-gnueabihf.tar.xz.asc new file mode 100644 index 0000000..b99af1e --- /dev/null +++ b/rust-1.50.0-armv7-unknown-linux-gnueabihf.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +wsFcBAABCgAQBQJgJT1uCRCFq5bm+hvl/gAAj+cQALjhi73LtMT3vDWMVL0XFUVG +gDqgTCGiMZBvYqePpwHNkaBLLcRqX4vRyeyNlBY+bR9zN3A7IKDDDU4/QfVXwf1U +ShzfTKWfrpfOA2KtXMXx7B5xHD7lVI/79TYDvhtG/MOf1IDkF5daretNAqi+i71a +6K9RSG+DhFNP9L1qPozLNf3Y26aiJkzk4TGvJCTdUTYfR6FCo+3OVV06MlNzNu8E +YC1BATiipNIhcXbcifE7OeDlTe4bcHEbaBcc/qauSGRAE6cSmBJx5XOl7wvgaDZt +U3Oi9XSQnQWmCGxzfoyl7Xw2dGabihlbOSF/obcME+2O5zWZU5UNoSRvM/H7iKQ4 +QOaIVujADkrXKe2zUYKBEBH8WN4IqyT2mYTaYF538PSbbdEocGU/i1b4m6expm/P +wLpE7aU2K1cpJ1Aa9xJ6u/mZDL03dsIrsrlHkqkFRYy+1Jo1hYRe+0Wy8fl3rLxM +Qq3AB618uLQwKrx8/pqvjsmJzGbfbRogybAeDpT5TEa0C6TlR3DZFFDT6pNzQgSD +J6ndjY7hBbvmQG3gc3FOg3jYlnSIdhIVc9iHasZmKzYFCETUPYWI1CDz9DTqH47I +luWJZ+R8T6rBZHtJrxFZi/IGhaFv2Rd0qGRHX0+s9n33IQR9JONWZks4IOkBaVl6 +pMKzkLhtVkIPlCBQtJpM +=IGyn +-----END PGP SIGNATURE----- diff --git a/rust-1.50.0-i686-unknown-linux-gnu.tar.xz b/rust-1.50.0-i686-unknown-linux-gnu.tar.xz new file mode 100644 index 0000000..bf6367f --- /dev/null +++ b/rust-1.50.0-i686-unknown-linux-gnu.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b68144726b78301688b5b52057440c63c420950e39eb48294567f50bc07e13 +size 222946404 diff --git a/rust-1.50.0-i686-unknown-linux-gnu.tar.xz.asc b/rust-1.50.0-i686-unknown-linux-gnu.tar.xz.asc new file mode 100644 index 0000000..23f6780 --- /dev/null +++ b/rust-1.50.0-i686-unknown-linux-gnu.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +wsFcBAABCgAQBQJgJTzBCRCFq5bm+hvl/gAARkkP/R5tFzJXPZADC7LCg5QoRq7l +zLWIARhAwp5H77Dkm3mPT3OIF5laHfhdnAJ9/AEcwOnrg4AX7uP+otiOGsFDqvS6 +rFYUw+j0Mw0TDrfcDN0TexJ8gfitnYXORfxJqp5YMrgAGuDXbOsZ3gp6IFMI+Pq8 +bY2JYQyn0SxSyzeDzombniEpbWq9i3Hb/mM7FRf3iBmGoiWFVp6G4V7vDQvgzgeh +5GqJ0wkT8tBu+4iuTrNoffMjPYdkykSYROqkdcTePRBvvyrkF/TDP17Rp+595qN2 +T5qezMzDV0vLEh8LEDosc54g2fr1/e71RkuyYbguR5zA1Suu1f1e7qp3dZNMOmjg +u8VzNAeMcPZceeTeIv0SkaBCb4HKRiyY2l6L1a25szWoGR4Uj3fvX/DrepVfZqk/ +FzK2MPE9lXq+rgfqKXhymq5RIqw9QH7YTIUHLpu0dpwUWssqGHJJYBYHZCZg/5N4 +Hqgxs/d71Wq9vVHh8opaJCFRA++Vej2xiArIzFToMB1yCHgq0fi+/36XM1+3QyvF +6ThM6r6xEbZ4na4nIuJ4hbRMNvgKCtkI2/ent5p6hMvrwiCsyRgsLUJBt6stQXBN +d7z6MOuHkzgwr6o0KSDtV+Cpi0++i21uiPaP4YxYdHUSzPShgAW2vXiBgMEOY8Lg +IAOtzLOSz//7lyEJUI+h +=1Kca +-----END PGP SIGNATURE----- diff --git a/rust-1.50.0-powerpc-unknown-linux-gnu.tar.xz b/rust-1.50.0-powerpc-unknown-linux-gnu.tar.xz new file mode 100644 index 0000000..40b9756 --- /dev/null +++ b/rust-1.50.0-powerpc-unknown-linux-gnu.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d816bb3e7b362c94b8ee54479230829a6c9c5d6897ede3b7660b1c657e1303a9 +size 168133824 diff --git a/rust-1.50.0-powerpc-unknown-linux-gnu.tar.xz.asc b/rust-1.50.0-powerpc-unknown-linux-gnu.tar.xz.asc new file mode 100644 index 0000000..6c16772 --- /dev/null +++ b/rust-1.50.0-powerpc-unknown-linux-gnu.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +wsFcBAABCgAQBQJgJT2KCRCFq5bm+hvl/gAA9rYP/2N/fYXlGHCglUSQSgm8JMXR +Eawm4SSHM8n1uRf0H/6YfX+YLB4pMI9Ngdd8hz6t57iIzaR29XWDicGULFTdo3H+ +cNDTBxiNLG9Z4h/IICxISj7nyv/gCT6kwc1Exei8qZ/ePFsvPqbLDc2rj3zlFe4M +DetGZ5O2jH+x1Q2hKi5YyG6J0tkKNXUu01BIOskd+rzHlCT2XCXYO4pmu2MPdJLF +21VH61ZUEsNddEjLPgFd0hbEoHSHuX3Q0d1HQ8DgRMGOfJ2V4hxl3swUF5i6s+/B +6O5uEhz2jDi8Mg0S872VjIh9n1lTj59MHSHqRFYyLNDWchUk6DQvqu34J8OOgsuM +9egJVLX4Z2RRfkWYO5bydATOMZj1vqASR3g1LXN6hh93U+hJY2Qo1dMR26fyMzt3 +5RZ1ErRwVDKCfFXYHgPZv/krKlULVnQ14HOuT+LahCJdPlbDqDWLfqB6S+yetwu4 +xmeCux5tXXC5YWfMfcl72RVky9RhFdABYUeOaZhYepFQbOoejk0J2sJS+cBluFzg +k230nYFKo8k1zh6L9SNOiRAM8BAYO+P4wd6XFlLz3fbJg0AX9/nTJtKe6dooEJZn +KqTCV8NkJueWnItAF2AMlcMvdKy5mA7oZ7jodAppPJZXvDTiYQLeBUeFi7hhQd+S +8XEFGjg2zHHk/uvlCf0n +=8adt +-----END PGP SIGNATURE----- diff --git a/rust-1.50.0-powerpc64-unknown-linux-gnu.tar.xz b/rust-1.50.0-powerpc64-unknown-linux-gnu.tar.xz new file mode 100644 index 0000000..c495b74 --- /dev/null +++ b/rust-1.50.0-powerpc64-unknown-linux-gnu.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c2f0eaf32ba6a1a864086cda5455f350bd32e4d9d51d43687030ee5c085f254 +size 180157804 diff --git a/rust-1.50.0-powerpc64-unknown-linux-gnu.tar.xz.asc b/rust-1.50.0-powerpc64-unknown-linux-gnu.tar.xz.asc new file mode 100644 index 0000000..7f78565 --- /dev/null +++ b/rust-1.50.0-powerpc64-unknown-linux-gnu.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +wsFcBAABCgAQBQJgJT2rCRCFq5bm+hvl/gAAWQwP/0m9vXXhXNlCy5xzTTZ1moOl +gdOnWVnrXFFp1skNw9O/VTHuGsaA2pwtylQItKxqV/o2O3gJPwVwMOLNi1fPVRHB +yalks47foid+T81IMRN/BwmATEnrmz2cCpcmhJDNM5WtV/XqnaRBwFTY+fGdv4a8 +wdxrvw4gaIKCCrQyyHQzstV+GhsAzRm5xVlxY/Z3vCE1zkmGyPKAorJlWFIiO20O +KsOLDPVsOIvmPGLoitZuISm0C0hRjDMQQ0P3FfCzKXghLpuuoPyNbdQwtQYW2Lae +Vh7PCH+7wafqVcjJawRlD5nuhpfIVTG94QkfsyqPnYCNPdUgTfPXZhC+ldgtipKU +VItg7ezTuyH/dj8okfcUKFOoW9OzMNHzFcoQrBrNFdBALK2oTKUHfCCs6EaajFWz +CTnbJ+F3T+i5Je22FwgnUo4IWoJgc/jHPoYNxZkhwAl81XA2OpevOpoBSckg2pyz +tpAdmXOJQ+WfEo9L69SuyiwCYo9agn6ViGBj/uoTAOo6xBKG2+nw6ZweEdeRICAx +SUjv8Fn3xav97Exac3gkfgI0aXSw2J6HCfPt1tFqjW1OuSmT9Kl9jYUSFDEgRBEY +8oir68O5GGkaYWcD2GpF8c3UdCPyBzZ7nl3lt8ZDeYMgUd3fl5RfcqNeD3IeBgd0 +k4PMV3k2IKhbtvpFlyN9 +=bpK+ +-----END PGP SIGNATURE----- diff --git a/rust-1.50.0-powerpc64le-unknown-linux-gnu.tar.xz b/rust-1.50.0-powerpc64le-unknown-linux-gnu.tar.xz new file mode 100644 index 0000000..92c2132 --- /dev/null +++ b/rust-1.50.0-powerpc64le-unknown-linux-gnu.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe91e3106dc0f97f863391188461533f16476271fb843c8c1ea3b80621571e5 +size 189754060 diff --git a/rust-1.50.0-powerpc64le-unknown-linux-gnu.tar.xz.asc b/rust-1.50.0-powerpc64le-unknown-linux-gnu.tar.xz.asc new file mode 100644 index 0000000..d0ea338 --- /dev/null +++ b/rust-1.50.0-powerpc64le-unknown-linux-gnu.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +wsFcBAABCgAQBQJgJT0MCRCFq5bm+hvl/gAAz+UP/1QrW3DfWlE23IkoCzafA8IN +7a1HxFJpXRsuP6diWZTlDUcCK2hUfRGoQWWPtnma86UjNmwyosKRgYG4seK8AF5I +KG2Xd2z34G1aH+ye0ORHBTI+PnTej+k7G0n22mnunRVq7MZmxU1wMWzQPQlc1N+S +rOhDI513pjY18znNfQa20cGnSLEHdstSjEYZw42xHfwXzYkH+VAQU8Tu3SElZHCz +1olW58djtvh6zshpNZ9oukCu6MC4nGm1msS7H239VTz8LPQFn+w+aIjMRvMbkNx+ +y1Lc3S0jrbpKjUbwApsSj9mopfuV1oVgjCIVcX2xZjAP+EVVsQh0HrGHbPfvS0++ +AIaiWKwqzv7wRf+U5ltTytMS4WfKBDP8BOy5MMt5gLlUfLNEozlOl6fPv63FcXQ+ +5K0S4UriXe8b6qTdXx3QX7tS6T1Z277W7DmfqSV/23IPk7jwfEC3jjtc+paXOotS +QSCERgn0OcUrm7b0pH1SKVqBKL6NVLepN+J3HjkOr6vJj03SVxkqz2tQ3GoAzX1I ++OYFzdGC4VYcPFFFxKwVyi9WNAzbmJP4zriKseYI+pYlmbWc+F5tlIMntf41hTfo +E9vGYp2unBXmfH6frB3zbhwjkNvsxU7UNZizb8bxnQkmOfN6UHnUam9BKS+2cX3P +K8dWBHTYYUAIPtU0+tG3 +=Ww1g +-----END PGP SIGNATURE----- diff --git a/rust-1.50.0-riscv64gc-unknown-linux-gnu.tar.xz b/rust-1.50.0-riscv64gc-unknown-linux-gnu.tar.xz new file mode 100644 index 0000000..ed0aeca --- /dev/null +++ b/rust-1.50.0-riscv64gc-unknown-linux-gnu.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7013dbdd978929b24211288c145f09d5134f6a890ab1cb9846bd5d4865c78b4 +size 177780892 diff --git a/rust-1.50.0-riscv64gc-unknown-linux-gnu.tar.xz.asc b/rust-1.50.0-riscv64gc-unknown-linux-gnu.tar.xz.asc new file mode 100644 index 0000000..d9172ec --- /dev/null +++ b/rust-1.50.0-riscv64gc-unknown-linux-gnu.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +wsFcBAABCgAQBQJgJT2ZCRCFq5bm+hvl/gAAUVoQANp8U28GrYmpZdZi1dkVauF/ +qepKIBxB6VsSbeiJOvBHojrB4WRFIMBUkTcFL1f7+WQYEsuP3TiKcNIaKeAnHzip +X+otIgwD8XfdauEWPeMVEr+hpwX699vz8g+EuvNz9KcHflqQei31flCaWEUDd4Jn +icJO9ttqrPIGbeVstxqz2DMqKKrf2U56ZkdqNcalwHya6Wu9DOpl9CB4L0uJSNqg +w2bLLNibIfkbyF/H0xN/KvAtuuWjnQlvwL0y8jrQhz+84qCcbbsm0oqRaV/citRS +KFQwqgqPtfeofDBXpW8IU2wC3Q6lmJPUZTcpKL6A4TtVpGdE47PzkUO3U9CaiYiU +6LS2FH4sBlxgwhrJdHmqkeFBikdjliROov/eiZ7nr85ix6zxyPAjf3lT9XYYiLxs +tnv8XYsYKv4AUMZ9QwFXL4jSiZeXjnJM1NVQjihsTMaRMNwPX7gjJO7c6HFECnS+ +nWdIvfg1YpxIxMnvIEzLEEK/oUZzuR10URCXNKLCU747A5h/ZLyDV9FZFiPdcqdT +5rlZz3oEPwF/mWd5kyOMyhJdBSOSqwKZK9QmPeZfj3uAdNBP0f1zgS0G5MsJEgt3 +00mba0jT+ycMXfxmSWGXhcEG6FO2ZvEJkMxNR6jSdVoQ+ZILr5u5vzg6PHn82+5Q +DjcUXuIUrYM8Wq99yX/p +=zeNG +-----END PGP SIGNATURE----- diff --git a/rust-1.50.0-s390x-unknown-linux-gnu.tar.xz b/rust-1.50.0-s390x-unknown-linux-gnu.tar.xz new file mode 100644 index 0000000..891d991 --- /dev/null +++ b/rust-1.50.0-s390x-unknown-linux-gnu.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132a5ede91a10da14f27a722265952d15a677be45b34a0743c0b8e04602cf2ca +size 190157972 diff --git a/rust-1.50.0-s390x-unknown-linux-gnu.tar.xz.asc b/rust-1.50.0-s390x-unknown-linux-gnu.tar.xz.asc new file mode 100644 index 0000000..204ec8f --- /dev/null +++ b/rust-1.50.0-s390x-unknown-linux-gnu.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +wsFcBAABCgAQBQJgJT0yCRCFq5bm+hvl/gAAfm8P/Rle8vvLXdIP6K9MjzWeCvbe +XWA41/8dUaEC/20xhVK6+wAvVWYN04KO7uHCdBytIWMoMZMHhQhKGEqzUU/Er/jm +PvO9K3+lgYF5Iab3y16A0U9K3FBvc+9Ul5q5vYYnmSpe5euKWNKbNDqYNOYt9yGk +Mu4TUA7plHkZZs6clWx6df0B9YVWvAqrxxAleS1FrtP97xy4Fb4lb+O85uVxBPpd +UZBgqFGwNc+82dYNgULb46FZDqnVY3pZwzW3bz1NZGAvU+Xj4xZfSbu93Mggfs6a +2l/xiW8e0jMcBmceCZyvcFThCYKMuso8DPCORw/QutA/jsQD2LzxV/L46NAewAuG +jpakPOVLIqEaXrOmYiM/Lm4Gfa6s7DXipvZYtI4I9IremGNvlr+avMbQji9EAXPV +L6Yx68rW0i/DukgXunvvvQtjnEAIdiTeQOwKRbbTEoTwKlbLLyF5B/NGj/EAoNNK +0VILafa4L2O44jpXCZOS1y7qPKWPr7K3bXQVydK+2BsTl/tmVqEHxgXVBgdRdN4x +Rh+rq0LFnJyLRKrIH1CcYUHGlgBdVvyME5Ey/9wvqT0ydcn0E+pCZqF3TnUPIxxV +Zo4PtjFzkb/BHO5YeMyfZq71koF6e0XjvoLxdNRjv13/f8HHoUwQX4M9INlJg0gl +uFZ3sbxizB25HvfMr2nI +=Gz5w +-----END PGP SIGNATURE----- diff --git a/rust-1.50.0-x86_64-unknown-linux-gnu.tar.xz b/rust-1.50.0-x86_64-unknown-linux-gnu.tar.xz new file mode 100644 index 0000000..ab5dec2 --- /dev/null +++ b/rust-1.50.0-x86_64-unknown-linux-gnu.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebca47de5cbc225ec40573e67ceb1ad1ae9c97e6e7eca135d8fb535a5ee99168 +size 152873328 diff --git a/rust-1.50.0-x86_64-unknown-linux-gnu.tar.xz.asc b/rust-1.50.0-x86_64-unknown-linux-gnu.tar.xz.asc new file mode 100644 index 0000000..f7c1bef --- /dev/null +++ b/rust-1.50.0-x86_64-unknown-linux-gnu.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +wsFcBAABCgAQBQJgJT1XCRCFq5bm+hvl/gAAjEsP/iweIqvS9D5ja7VRzujyTDSg +MIfeSX7zVl3UQqhWDDGSr3y1b3/lgkk9V8rEovWspNr09Xr9D8kVORRHUGD1hioR +sQ3e4Xh+EKuNvYNdrGXgtIiwdRoBN2xyx7FYpKJtKs1lQiKmAxdrC2r9E6BD92QL +m8yODF+KCi1ZQ2SpKkVmLYOo7gcFNLs9Y22OJiahAGsYznR1NH0l+WRJLR1mhuEr +FBXP8KyGD/OSsEn1Z7yW79Nri8ZpTPvUyNDFrtUXvymQdiUyO9Sle/jKrKg/5xMj +s7DG2xRmWcrYL0zhHaNPacZn93/Vctyr2QQD0X/y65NDC38WmmVLQtv6YMQ41bnL +1vqtzzRnkYH8CQE0Guf1Q3cUAXWvJs432eX2eXvjmEXpMf+Y2FptqEg+fYMA43UQ +T7oFLOGQUJ3T8JeXJZmTV9YhPqkSkO9+K/Gp1+Ubksb8U1Yo4hYukGu0VXtwFLpK +ANqlrGghPk92jUJmmzmItNcGPT4GtP5bOc5w7z44JozSDKK4HbvqjuRB4XKFWfNz +4XCNTZF55nQJ+trGrnQYUGfqgwKm3ckrE9XJa6+ZRKOxfJEUDA5Hk4e8kh9xVCvd +0MC/sjUlzTNlFvAPIfDtfDHmqk7LS+SVX1OZYLFlgEoIPXRyEAfLfTuLNRbykNyy +7Ds8uOD4K7FP28hrz8Oc +=kOwJ +-----END PGP SIGNATURE----- diff --git a/rust.changes b/rust.changes index e4d413f..9dc373e 100644 --- a/rust.changes +++ b/rust.changes @@ -1,3 +1,95 @@ +------------------------------------------------------------------- +Wed Feb 24 15:56:33 UTC 2021 - Guillaume GARDET + +- Update to version 1.50: + * This fixes build on armv7 - boo#1181643 + + Language + - You can now use const values for x in [x; N] array expressions. + This has been technically possible since 1.38.0, as it was + unintentionally stabilized. + - Assignments to ManuallyDrop union fields are now considered safe. + + Compiler + - Added tier 3* support for the armv5te-unknown-linux-uclibceabi + target. + - Added tier 3 support for the aarch64-apple-ios-macabi target. + - The x86_64-unknown-freebsd is now built with the full toolset. + - Dropped support for all cloudabi targets. + * Refer to Rust's platform support page for more information on + Rust's tiered platform support. + + Libraries + - proc_macro::Punct now implements PartialEq. + - ops::{Index, IndexMut} are now implemented for fixed sized + arrays of any length. + - On Unix platforms, the std::fs::File type now has a "niche" of -1. + This value cannot be a valid file descriptor, and now means Option + takes up the same amount of space as File. + + Stabilized APIs + bool::then + btree_map::Entry::or_insert_with_key + f32::clamp + f64::clamp + hash_map::Entry::or_insert_with_key + Ord::clamp + RefCell::take + slice::fill + UnsafeCell::get_mut + - The following previously stable methods are now const. + IpAddr::is_ipv4 + IpAddr::is_ipv6 + IpAddr::is_unspecified + IpAddr::is_loopback + IpAddr::is_multicast + Ipv4Addr::octets + Ipv4Addr::is_loopback + Ipv4Addr::is_private + Ipv4Addr::is_link_local + Ipv4Addr::is_multicast + Ipv4Addr::is_broadcast + Ipv4Addr::is_documentation + Ipv4Addr::to_ipv6_compatible + Ipv4Addr::to_ipv6_mapped + Ipv6Addr::segments + Ipv6Addr::is_unspecified + Ipv6Addr::is_loopback + Ipv6Addr::is_multicast + Ipv6Addr::to_ipv4 + Layout::size + Layout::align + Layout::from_size_align + pow for all integer types. + checked_pow for all integer types. + saturating_pow for all integer types. + wrapping_pow for all integer types. + next_power_of_two for all unsigned integer types. + checked_next_power_of_two for all unsigned integer types. + + Cargo + - Added the [build.rustc-workspace-wrapper] option. This option + sets a wrapper to execute instead of rustc, for workspace members only. + - cargo:rerun-if-changed will now, if provided a directory, + scan the entire contents of that directory for changes. + - Added the --workspace flag to the cargo update command. + + Misc + - The search results tab and the help button are focusable + with keyboard in rustdoc. + - Running tests will now print the total time taken to execute. + + Compatibility Notes + - The compare_and_swap method on atomics has been deprecated. + It's recommended to use the compare_exchange and + compare_exchange_weak methods instead. + - Changes in how TokenStreams are checked have fixed some cases + where you could write unhygenic macro_rules! macros. + - #![test] as an inner attribute is now considered unstable + like other inner macro attributes, and reports an error by + default through the soft_unstable lint. + - Overriding a forbid lint at the same level that it was set + is now a hard error. + - You can no longer intercept panic! calls by supplying your own + macro. It's recommended to use the #[panic_handler] attribute + to provide your own implementation. + - Semi-colons after item statements (e.g. struct Foo {};) + now produce a warning. +- Add download_helper.sh to ease download of bootstrap packages + ------------------------------------------------------------------- Sun Jan 10 13:15:07 UTC 2021 - Neal Gompa diff --git a/rust.spec b/rust.spec index 679b830..65c0773 100644 --- a/rust.spec +++ b/rust.spec @@ -17,9 +17,9 @@ # -%global version_current 1.49.0 -%global version_previous 1.48.0 -%global version_bootstrap 1.48.0 +%global version_current 1.50.0 +%global version_previous 1.49.0 +%global version_bootstrap 1.50.0 # some sub-packages are versioned independently %global rustfmt_version 1.4.25 @@ -86,14 +86,15 @@ %bcond_without rls %endif -# Do not use parallel codegen in order to -# a) not exhaust memory on build-machines and +# Do not use parallel codegen in order to +# a) not exhaust memory on build-machines and # b) generate the fastest possible binary # at the cost of longer build times for this package %define codegen_units --set rust.codegen-units=1 # Debuginfo can exhaust memory on these architecture workers %ifarch %{arm} %{ix86} %define debug_info --disable-debuginfo --disable-debuginfo-only-std --disable-debuginfo-tools --disable-debuginfo-lines +%define strip_debug_flag 1 %else %define debug_info --enable-debuginfo --disable-debuginfo-only-std --enable-debuginfo-tools --disable-debuginfo-lines %endif @@ -125,7 +126,7 @@ Name: rust Version: %{version_current} Release: 0 Summary: A systems programming language -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust URL: https://www.rust-lang.org Source0: %{dl_url}/rustc-%{version}-src.tar.xz @@ -233,7 +234,7 @@ like a low-level language would. %package -n rust-std-static Summary: Standard library for Rust -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust Requires: %{name} = %{version} Conflicts: rust-std < %{version} @@ -246,7 +247,7 @@ written in Rust. %package -n rust-doc Summary: Rust documentation -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust Requires: %{name} = %{version} @@ -255,7 +256,7 @@ Documentation for the Rust language. %package -n rust-gdb Summary: Gdb integration for rust binaries -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust Requires: %{name} = %{version} %if 0%{?suse_version} && 0%{?suse_version} < 1500 @@ -272,7 +273,7 @@ invoking gdb on rust binaries. %package -n rust-src Summary: Sources for the Rust standard library -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust Requires: %{name} = %{version} BuildArch: noarch @@ -284,7 +285,7 @@ as RLS or racer. %package -n rls Summary: Language server for Rust lang -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust Requires: %{name} = %{version} Requires: %{name}-analysis = %{version} @@ -299,7 +300,7 @@ refactorings. It can be used with an IDE such as Gnome-Builder. %package -n rust-analysis Summary: Compiler analysis data for the Rust standard library -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust Requires: rust-std-static = %{version} @@ -311,7 +312,7 @@ standard library. %package -n rustfmt Summary: Code formatting tool for Rust lang -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust Requires: %{name} = %{version} Requires: cargo = %{version} @@ -342,7 +343,7 @@ A collection of lints to catch common mistakes and improve Rust code. %package -n cargo Summary: The Rust package manager -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust Requires: %{name} = %{version} Conflicts: cargo < %{version} @@ -358,7 +359,7 @@ Cargo downloads dependencies of Rust projects and compiles it. Summary: Documentation for Cargo # Cargo no longer builds its own documentation # https://github.com/rust-lang/cargo/pull/4904 -License: MIT OR Apache-2.0 +License: Apache-2.0 OR MIT Group: Development/Languages/Rust Requires: rust-doc = %{version} BuildArch: noarch @@ -484,7 +485,6 @@ fi sed -i -e "s|#ninja = true|ninja = false|" config.toml %endif - # Create exports file # Keep all the "export VARIABLE" together here, so they can be # reread in the %%install section below. @@ -500,13 +500,17 @@ export CXX=g++-7 %if !%{with rust_bootstrap} && 0%{?sle_version} >= 150000 export LIBSSH2_SYS_USE_PKG_CONFIG=1 %endif -# eliminate complaint from RPMlint -export CPPFLAGS="%{optflags}" export DESTDIR=%{buildroot} # END EXPORTS EOF . ./.env.sh +%if 0%{?strip_debug_flag} +export CFLAGS="$(echo $RPM_OPT_FLAGS | sed -e 's/ -g$//')" +%endif +export CXXFLAGS="$CFLAGS" +unset FFLAGS + ./x.py build -v ./x.py doc -v --stage 1 @@ -542,6 +546,10 @@ find %{buildroot}%{common_libdir} -maxdepth 1 -type f -name '*.so' -exec chmod - # The shared libraries should be executable for debuginfo extraction. find %{buildroot}%{rustlibdir} -maxdepth 1 -type f -name '*.so' -exec chmod -v +x '{}' '+' +# Install rust-llvm-dwp in _bindir +mv %{buildroot}%{rustlibdir}/*-unknown-linux-gnu*/bin/rust-llvm-dwp %{buildroot}%{_bindir} +rm -rf %{buildroot}%{rustlibdir}/*-unknown-linux-gnu*/bin + # The html docs for x86 and x86_64 are the same in most places %fdupes -s %{buildroot}%{_docdir}/%{name}/html %fdupes -s %{buildroot}/%{_mandir} @@ -576,6 +584,7 @@ rm -rf %{buildroot}/home %{_bindir}/rustc %{_bindir}/rustdoc %{_bindir}/rust-lldb +%{_bindir}/rust-llvm-dwp %{_mandir}/man1/rustc.1%{?ext_man} %{_mandir}/man1/rustdoc.1%{?ext_man} %{_prefix}/lib/lib*.so @@ -583,6 +592,7 @@ rm -rf %{buildroot}/home %dir %{rustlibdir}/%{rust_triple} %dir %{rustlibdir}/%{rust_triple}/lib %{rustlibdir}/%{rust_triple}/lib/*.so +%{_libexecdir}/cargo-credential-1password %exclude %{_docdir}/%{name}/html %exclude %{rustlibdir}/src diff --git a/rustc-1.49.0-src.tar.xz b/rustc-1.49.0-src.tar.xz deleted file mode 100644 index 2c1884a..0000000 --- a/rustc-1.49.0-src.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ebe910edc824a0a037a10be443446a0511923ba8342fa3c331ec8a22481d5d15 -size 108330280 diff --git a/rustc-1.50.0-src.tar.xz b/rustc-1.50.0-src.tar.xz new file mode 100644 index 0000000..37a8d97 --- /dev/null +++ b/rustc-1.50.0-src.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54adf9204ed3cb3998cdc1baa5645b346d8cf8f18205e3b15fcae194ba5457c +size 108666272