Skip to content

Commit 0977f34

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 168574 b: refs/heads/batch c: 182db6e h: refs/heads/master v: v3
1 parent 0e35fa5 commit 0977f34

File tree

458 files changed

+4834
-5011
lines changed

Some content is hidden

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

458 files changed

+4834
-5011
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
2929
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
3030
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32-
refs/heads/batch: 3dfb29e8cdac0bbc56e98864f7f2d08fdc90772a
32+
refs/heads/batch: 182db6e7f884bba3fb9f70cead259994c3c45722
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970

branches/batch/.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# RVM/bundler/ruby and whatnot. Right now 'rust' as a language actually
33
# downloads a rust/cargo snapshot, which we don't really want for building rust.
44
language: c
5-
sudo: false
65

76
# The test suite is in general way too stressful for travis, especially in
87
# terms of time limit and reliability. In the past we've tried to scale things

branches/batch/mk/dist.mk

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ distcheck-osx: dist-osx
212212
# Unix binary installer tarballs
213213
######################################################################
214214

215-
NON_INSTALLED_PREFIXES=COPYRIGHT,LICENSE-APACHE,LICENSE-MIT,README.md,version
215+
NON_INSTALLED_PREFIXES=COPYRIGHT,LICENSE-APACHE,LICENSE-MIT,README.md,doc
216216

217217
define DEF_INSTALLER
218218

@@ -236,8 +236,6 @@ dist-install-dir-$(1): prepare-base-dir-$(1) docs compiler-docs
236236
$$(Q)$$(PREPARE_MAN_CMD) $$(S)LICENSE-APACHE $$(PREPARE_DEST_DIR)/share/doc/rust
237237
$$(Q)$$(PREPARE_MAN_CMD) $$(S)LICENSE-MIT $$(PREPARE_DEST_DIR)/share/doc/rust
238238
$$(Q)$$(PREPARE_MAN_CMD) $$(S)README.md $$(PREPARE_DEST_DIR)/share/doc/rust
239-
# This tiny morsel of metadata is used by rust-packaging
240-
$$(Q)echo "$(CFG_VERSION)" > $$(PREPARE_DEST_DIR)/version
241239

242240
dist/$$(PKG_NAME)-$(1).tar.gz: dist-install-dir-$(1)
243241
@$(call E, build: $$@)

branches/batch/mk/install.mk

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@ endif
2828
# Remove tmp files because it's a decent amount of disk space
2929
$(Q)rm -R tmp/dist
3030

31-
ifeq ($(CFG_DISABLE_DOCS),)
32-
prepare_install: dist/$(PKG_NAME)-$(CFG_BUILD).tar.gz dist/$(DOC_PKG_NAME)-$(CFG_BUILD).tar.gz | tmp/empty_dir
33-
else
3431
prepare_install: dist/$(PKG_NAME)-$(CFG_BUILD).tar.gz | tmp/empty_dir
35-
endif
3632

3733
uninstall:
3834
ifeq (root user, $(USER) $(patsubst %,user,$(SUDO_USER)))

branches/batch/src/compiletest/compiletest.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ extern crate regex;
2222
use std::os;
2323
use std::io;
2424
use std::io::fs;
25-
use std::str::{FromStr, from_str};
26-
use std::thunk::Thunk;
25+
use std::str::FromStr;
26+
use std::thunk::{Thunk};
2727
use getopts::{optopt, optflag, reqopt};
2828
use common::Config;
2929
use common::{Pretty, DebugInfoGdb, DebugInfoLldb, Codegen};

branches/batch/src/doc/guide-ffi.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,8 +450,6 @@ them.
450450
451451
~~~no_run
452452
extern crate libc;
453-
454-
use std::c_str::ToCStr;
455453
use std::ptr;
456454
457455
#[link(name = "readline")]

branches/batch/src/doc/guide-tasks.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ getting the result later.
206206
The basic example below illustrates this.
207207

208208
```{rust,ignore}
209-
# #![allow(deprecated)]
210209
use std::sync::Future;
211210
212211
# fn main() {
@@ -234,7 +233,6 @@ Here is another example showing how futures allow you to background
234233
computations. The workload will be distributed on the available cores.
235234

236235
```{rust,ignore}
237-
# #![allow(deprecated)]
238236
# use std::num::Float;
239237
# use std::sync::Future;
240238
fn partial_sum(start: uint) -> f64 {

0 commit comments

Comments
 (0)