Skip to content

Commit 0f8a296

Browse files
committed
Auto merge of #39353 - alexcrichton:rollup, r=alexcrichton
Rollup of 21 pull requests - Successful merges: #38617, #39284, #39285, #39290, #39302, #39305, #39306, #39307, #39311, #39313, #39314, #39321, #39325, #39332, #39335, #39344, #39345, #39346, #39348, #39350, #39351 - Failed merges:
2 parents 154c202 + 1767d97 commit 0f8a296

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+782
-447
lines changed

.mailmap

+4-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ Brian Anderson <banderson@mozilla.com> <andersrb@gmail.com>
4343
Brian Dawn <brian.t.dawn@gmail.com>
4444
Brian Leibig <brian@brianleibig.com> Brian Leibig <brian.leibig@gmail.com>
4545
Carl-Anton Ingmarsson <mail@carlanton.se> <ca.ingmarsson@gmail.com>
46-
Carol (Nichols || Goulding) <carol.nichols@gmail.com> Carol Nichols <carol.nichols@gmail.com>
47-
Carol (Nichols || Goulding) <carol.nichols@gmail.com> Carol Nichols <cnichols@thinkthroughmath.com>
46+
Carol (Nichols || Goulding) <carol.nichols@gmail.com>
47+
Carol (Nichols || Goulding) <cnichols@thinkthroughmath.com>
4848
Carol Willing <carolcode@willingconsulting.com>
4949
Chris C Cerami <chrisccerami@users.noreply.github.com> Chris C Cerami <chrisccerami@gmail.com>
5050
Chris Pressey <cpressey@gmail.com>
@@ -53,6 +53,7 @@ Clark Gaebel <cg.wowus.cg@gmail.com> <cgaebel@mozilla.com>
5353
Clinton Ryan <clint.ryan3@gmail.com>
5454
Corey Farwell <coreyf+rust@rwell.org> Corey Farwell <coreyf@rwell.org>
5555
Corey Richardson <corey@octayn.net> Elaine "See More" Nemo <corey@octayn.net>
56+
Cyryl Płotnicki <cyplo@cyplo.net>
5657
Damien Schoof <damien.schoof@gmail.com>
5758
Daniel Ramos <dan@daramos.com>
5859
David Klein <david.klein@baesystemsdetica.com>
@@ -102,6 +103,7 @@ Jason Toffaletti <toffaletti@gmail.com> Jason Toffaletti <jason@topsy.com>
102103
Jauhien Piatlicki <jauhien@gentoo.org> Jauhien Piatlicki <jpiatlicki@zertisa.com>
103104
Jay True <glacjay@gmail.com>
104105
Jeremy Letang <letang.jeremy@gmail.com>
106+
Jethro Beekman <github@jbeekman.nl>
105107
Jihyun Yu <j.yu@navercorp.com> <yjh0502@gmail.com>
106108
Jihyun Yu <j.yu@navercorp.com> jihyun <jihyun@nablecomm.com>
107109
Jihyun Yu <j.yu@navercorp.com> Jihyun Yu <jihyun@nclab.kaist.ac.kr>

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ before_deploy:
110110
- mkdir -p deploy/$TRAVIS_COMMIT
111111
- >
112112
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
113-
cp build/dist/*.tar.gz deploy/$TRAVIS_COMMIT;
113+
cp -r build/dist deploy/$TRAVIS_COMMIT;
114114
else
115-
cp obj/build/dist/*.tar.gz deploy/$TRAVIS_COMMIT;
115+
cp -r obj/build/dist deploy/$TRAVIS_COMMIT;
116116
fi
117117
118118
deploy:

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ branches:
137137
before_deploy:
138138
- ps: |
139139
New-Item -Path deploy -ItemType directory
140-
Get-ChildItem -Path build\dist -Filter '*.tar.gz' | Move-Item -Destination deploy
140+
Get-ChildItem -Path build\dist | Move-Item -Destination deploy
141141
Get-ChildItem -Path deploy | Foreach-Object {
142142
Push-AppveyorArtifact $_.FullName -FileName ${env:APPVEYOR_REPO_COMMIT}/$_
143143
}
@@ -151,7 +151,7 @@ deploy:
151151
bucket: rust-lang-ci
152152
set_public: true
153153
region: us-east-1
154-
artifact: /.*\.tar.gz/
154+
artifact: /.*/
155155
folder: rustc-builds
156156
on:
157157
branch: auto

src/Cargo.lock

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ members = [
1010
"tools/linkchecker",
1111
"tools/rustbook",
1212
"tools/tidy",
13+
"tools/build-manifest",
1314
]
1415

1516
# Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit

src/bootstrap/config.rs

+19
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,11 @@ pub struct Config {
7878
pub cargo: Option<PathBuf>,
7979
pub local_rebuild: bool,
8080

81+
// dist misc
82+
pub dist_sign_folder: Option<PathBuf>,
83+
pub dist_upload_addr: Option<String>,
84+
pub dist_gpg_password_file: Option<PathBuf>,
85+
8186
// libstd features
8287
pub debug_jemalloc: bool,
8388
pub use_jemalloc: bool,
@@ -123,6 +128,7 @@ struct TomlConfig {
123128
llvm: Option<Llvm>,
124129
rust: Option<Rust>,
125130
target: Option<HashMap<String, TomlTarget>>,
131+
dist: Option<Dist>,
126132
}
127133

128134
/// TOML representation of various global build decisions.
@@ -166,6 +172,13 @@ struct Llvm {
166172
targets: Option<String>,
167173
}
168174

175+
#[derive(RustcDecodable, Default, Clone)]
176+
struct Dist {
177+
sign_folder: Option<String>,
178+
gpg_password_file: Option<String>,
179+
upload_addr: Option<String>,
180+
}
181+
169182
#[derive(RustcDecodable)]
170183
enum StringOrBool {
171184
String(String),
@@ -352,6 +365,12 @@ impl Config {
352365
}
353366
}
354367

368+
if let Some(ref t) = toml.dist {
369+
config.dist_sign_folder = t.sign_folder.clone().map(PathBuf::from);
370+
config.dist_gpg_password_file = t.gpg_password_file.clone().map(PathBuf::from);
371+
config.dist_upload_addr = t.upload_addr.clone();
372+
}
373+
355374
return config
356375
}
357376

src/bootstrap/config.toml.example

+30
Original file line numberDiff line numberDiff line change
@@ -242,3 +242,33 @@
242242
# that this option only makes sense for MUSL targets that produce statically
243243
# linked binaries
244244
#musl-root = "..."
245+
246+
# =============================================================================
247+
# Distribution options
248+
#
249+
# These options are related to distribution, mostly for the Rust project itself.
250+
# You probably won't need to concern yourself with any of these options
251+
# =============================================================================
252+
[dist]
253+
254+
# This is the folder of artifacts that the build system will sign. All files in
255+
# this directory will be signed with the default gpg key using the system `gpg`
256+
# binary. The `asc` and `sha256` files will all be output into the standard dist
257+
# output folder (currently `build/dist`)
258+
#
259+
# This folder should be populated ahead of time before the build system is
260+
# invoked.
261+
#sign-folder = "path/to/folder/to/sign"
262+
263+
# This is a file which contains the password of the default gpg key. This will
264+
# be passed to `gpg` down the road when signing all files in `sign-folder`
265+
# above. This should be stored in plaintext.
266+
#gpg-password-file = "path/to/gpg/password"
267+
268+
# The remote address that all artifacts will eventually be uploaded to. The
269+
# build system generates manifests which will point to these urls, and for the
270+
# manifests to be correct they'll have to have the right URLs encoded.
271+
#
272+
# Note that this address should not contain a trailing slash as file names will
273+
# be appended to it.
274+
#upload-addr = "https://example.com/folder"

src/bootstrap/dist.rs

+32-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use std::env;
2222
use std::fs::{self, File};
2323
use std::io::{Read, Write};
2424
use std::path::{PathBuf, Path};
25-
use std::process::Command;
25+
use std::process::{Command, Stdio};
2626

2727
use build_helper::output;
2828

@@ -876,3 +876,34 @@ fn add_env(build: &Build, cmd: &mut Command, target: &str) {
876876
cmd.env("CFG_PLATFORM", "x86");
877877
}
878878
}
879+
880+
pub fn hash_and_sign(build: &Build) {
881+
let compiler = Compiler::new(0, &build.config.build);
882+
let mut cmd = build.tool_cmd(&compiler, "build-manifest");
883+
let sign = build.config.dist_sign_folder.as_ref().unwrap_or_else(|| {
884+
panic!("\n\nfailed to specify `dist.sign-folder` in `config.toml`\n\n")
885+
});
886+
let addr = build.config.dist_upload_addr.as_ref().unwrap_or_else(|| {
887+
panic!("\n\nfailed to specify `dist.upload-addr` in `config.toml`\n\n")
888+
});
889+
let file = build.config.dist_gpg_password_file.as_ref().unwrap_or_else(|| {
890+
panic!("\n\nfailed to specify `dist.gpg-password-file` in `config.toml`\n\n")
891+
});
892+
let mut pass = String::new();
893+
t!(t!(File::open(&file)).read_to_string(&mut pass));
894+
895+
let today = output(Command::new("date").arg("+%Y-%m-%d"));
896+
897+
cmd.arg(sign);
898+
cmd.arg(distdir(build));
899+
cmd.arg(today.trim());
900+
cmd.arg(package_vers(build));
901+
cmd.arg(addr);
902+
903+
t!(fs::create_dir_all(distdir(build)));
904+
905+
let mut child = t!(cmd.stdin(Stdio::piped()).spawn());
906+
t!(child.stdin.take().unwrap().write_all(pass.as_bytes()));
907+
let status = t!(child.wait());
908+
assert!(status.success());
909+
}

src/bootstrap/step.rs

+10
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,9 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
513513
rules.build("tool-compiletest", "src/tools/compiletest")
514514
.dep(|s| s.name("libtest"))
515515
.run(move |s| compile::tool(build, s.stage, s.target, "compiletest"));
516+
rules.build("tool-build-manifest", "src/tools/build-manifest")
517+
.dep(|s| s.name("libstd"))
518+
.run(move |s| compile::tool(build, s.stage, s.target, "build-manifest"));
516519

517520
// ========================================================================
518521
// Documentation targets
@@ -633,6 +636,13 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
633636
.dep(|d| d.name("dist-cargo"))
634637
.run(move |s| dist::extended(build, s.stage, s.target));
635638

639+
rules.dist("dist-sign", "hash-and-sign")
640+
.host(true)
641+
.only_build(true)
642+
.only_host_build(true)
643+
.dep(move |s| s.name("tool-build-manifest").target(&build.config.build).stage(0))
644+
.run(move |_| dist::hash_and_sign(build));
645+
636646
rules.verify();
637647
return rules;
638648
}

src/doc/book/ffi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ Please note that [`catch_unwind()`] will only catch unwinding panics, not
710710
those who abort the process. See the documentation of [`catch_unwind()`]
711711
for more information.
712712

713-
[`catch_unwind()`]: https://doc.rust-lang.org/std/panic/fn.catch_unwind.html
713+
[`catch_unwind()`]: ../std/panic/fn.catch_unwind.html
714714

715715
# Representing opaque structs
716716

src/doc/nomicon/destructors.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ this is totally fine.
2626
For instance, a custom implementation of `Box` might write `Drop` like this:
2727

2828
```rust
29-
#![feature(alloc, heap_api, drop_in_place, unique)]
29+
#![feature(alloc, heap_api, unique)]
3030

3131
extern crate alloc;
3232

@@ -57,7 +57,7 @@ use-after-free the `ptr` because when drop exits, it becomes inaccessible.
5757
However this wouldn't work:
5858

5959
```rust
60-
#![feature(alloc, heap_api, drop_in_place, unique)]
60+
#![feature(alloc, heap_api, unique)]
6161

6262
extern crate alloc;
6363

@@ -135,7 +135,7 @@ The classic safe solution to overriding recursive drop and allowing moving out
135135
of Self during `drop` is to use an Option:
136136

137137
```rust
138-
#![feature(alloc, heap_api, drop_in_place, unique)]
138+
#![feature(alloc, heap_api, unique)]
139139

140140
extern crate alloc;
141141

src/liballoc/arc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const MAX_REFCOUNT: usize = (isize::MAX) as usize;
5959
/// as long as `T` implements [`Send`] and [`Sync`][sync]. The disadvantage is
6060
/// that atomic operations are more expensive than ordinary memory accesses.
6161
/// If you are not sharing reference-counted values between threads, consider
62-
/// using [`rc::Rc`] for lower overhead. [`Rc`] is a safe default, because
62+
/// using [`rc::Rc`][`Rc`] for lower overhead. [`Rc`] is a safe default, because
6363
/// the compiler will catch any attempt to send an [`Rc`] between threads.
6464
/// However, a library might choose `Arc` in order to give library consumers
6565
/// more flexibility.

src/libcollections/enum_set.rs

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
reason = "matches collection reform specification, \
1818
waiting for dust to settle",
1919
issue = "37966")]
20+
#![rustc_deprecated(since = "1.16.0", reason = "long since replaced")]
21+
#![allow(deprecated)]
2022

2123
use core::marker;
2224
use core::fmt;

src/libcollections/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ pub use btree_set::BTreeSet;
7979
#[doc(no_inline)]
8080
pub use linked_list::LinkedList;
8181
#[doc(no_inline)]
82+
#[allow(deprecated)]
8283
pub use enum_set::EnumSet;
8384
#[doc(no_inline)]
8485
pub use vec_deque::VecDeque;

src/libcollections/slice.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ impl<T> [T] {
509509
core_slice::SliceExt::swap(self, a, b)
510510
}
511511

512-
/// Reverse the order of elements in a slice, in place.
512+
/// Reverses the order of elements in a slice, in place.
513513
///
514514
/// # Example
515515
///
@@ -1062,7 +1062,7 @@ impl<T> [T] {
10621062
core_slice::SliceExt::binary_search_by_key(self, b, f)
10631063
}
10641064

1065-
/// This is equivalent to `self.sort_by(|a, b| a.cmp(b))`.
1065+
/// Sorts the slice.
10661066
///
10671067
/// This sort is stable (i.e. does not reorder equal elements) and `O(n log n)` worst-case.
10681068
///

src/libcollections/str.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,6 @@ impl str {
16071607
/// Basic usage:
16081608
///
16091609
/// ```
1610-
/// # #![feature(str_replacen)]
16111610
/// let s = "foo foo 123 foo";
16121611
/// assert_eq!("new new 123 foo", s.replacen("foo", "new", 2));
16131612
/// assert_eq!("faa fao 123 foo", s.replacen('o', "a", 3));
@@ -1617,13 +1616,10 @@ impl str {
16171616
/// When the pattern doesn't match:
16181617
///
16191618
/// ```
1620-
/// # #![feature(str_replacen)]
16211619
/// let s = "this is old";
16221620
/// assert_eq!(s, s.replacen("cookie monster", "little lamb", 10));
16231621
/// ```
1624-
#[unstable(feature = "str_replacen",
1625-
issue = "36436",
1626-
reason = "only need to replace first N matches")]
1622+
#[stable(feature = "str_replacen", since = "1.16.0")]
16271623
pub fn replacen<'a, P: Pattern<'a>>(&'a self, pat: P, to: &str, count: usize) -> String {
16281624
// Hope to reduce the times of re-allocation
16291625
let mut result = String::with_capacity(32);
@@ -1795,11 +1791,9 @@ impl str {
17951791
/// Basic usage:
17961792
///
17971793
/// ```
1798-
/// #![feature(repeat_str)]
1799-
///
18001794
/// assert_eq!("abc".repeat(4), String::from("abcabcabcabc"));
18011795
/// ```
1802-
#[unstable(feature = "repeat_str", issue = "37079")]
1796+
#[stable(feature = "repeat_str", since = "1.16.0")]
18031797
pub fn repeat(&self, n: usize) -> String {
18041798
let mut s = String::with_capacity(self.len() * n);
18051799
s.extend((0..n).map(|_| self));

src/libcollections/string.rs

+2-7
Original file line numberDiff line numberDiff line change
@@ -1166,18 +1166,14 @@ impl String {
11661166
/// Basic usage:
11671167
///
11681168
/// ```
1169-
/// #![feature(insert_str)]
1170-
///
11711169
/// let mut s = String::from("bar");
11721170
///
11731171
/// s.insert_str(0, "foo");
11741172
///
11751173
/// assert_eq!("foobar", s);
11761174
/// ```
11771175
#[inline]
1178-
#[unstable(feature = "insert_str",
1179-
reason = "recent addition",
1180-
issue = "35553")]
1176+
#[stable(feature = "insert_str", since = "1.16.0")]
11811177
pub fn insert_str(&mut self, idx: usize, string: &str) {
11821178
assert!(self.is_char_boundary(idx));
11831179

@@ -1270,7 +1266,6 @@ impl String {
12701266
/// # Examples
12711267
///
12721268
/// ```
1273-
/// # #![feature(string_split_off)]
12741269
/// # fn main() {
12751270
/// let mut hello = String::from("Hello, World!");
12761271
/// let world = hello.split_off(7);
@@ -1279,7 +1274,7 @@ impl String {
12791274
/// # }
12801275
/// ```
12811276
#[inline]
1282-
#[unstable(feature = "string_split_off", issue = "38080")]
1277+
#[stable(feature = "string_split_off", since = "1.16.0")]
12831278
pub fn split_off(&mut self, mid: usize) -> String {
12841279
assert!(self.is_char_boundary(mid));
12851280
let other = self.vec.split_off(mid);

0 commit comments

Comments
 (0)