Skip to content

Register new snapshots #11148

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 26, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion mk/rt.mk
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ endif

RUNTIME_CS_$(1)_$(2) := \
rt/rust_builtin.c \
rt/rust_upcall.c \
rt/miniz.c \
rt/rust_android_dummy.c \
rt/rust_test_helpers.c
Expand Down
2 changes: 0 additions & 2 deletions src/libextra/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ Rust extras are part of the standard Rust distribution.

*/

// NOTE: remove after snapshot
#[pkgid = "extra#0.9-pre"];
#[crate_id = "extra#0.9-pre"];
#[comment = "Rust extras"];
#[license = "MIT/ASL2"];
Expand Down
1 change: 0 additions & 1 deletion src/libgreen/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
//! This can be optionally linked in to rust programs in order to provide M:N
//! functionality inside of 1:1 programs.

#[pkgid = "green#0.9-pre"];
#[crate_id = "green#0.9-pre"];
#[license = "MIT/ASL2"];
#[crate_type = "rlib"];
Expand Down
1 change: 0 additions & 1 deletion src/libnative/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
//! runtime. In addition, all I/O provided by this crate is the thread blocking
//! version of I/O.

#[pkgid = "native#0.9-pre"];
#[crate_id = "native#0.9-pre"];
#[license = "MIT/ASL2"];
#[crate_type = "rlib"];
Expand Down
2 changes: 0 additions & 2 deletions src/librustc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// NOTE: remove after snapshot
#[pkgid = "rustc#0.9-pre"];
#[crate_id = "rustc#0.9-pre"];
#[comment = "The Rust compiler"];
#[license = "MIT/ASL2"];
Expand Down
3 changes: 1 addition & 2 deletions src/librustc/middle/lint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -828,8 +828,7 @@ fn check_heap_item(cx: &Context, it: &ast::item) {
}

static crate_attrs: &'static [&'static str] = &[
// NOTE: remove pkgid after snapshot
"crate_type", "feature", "no_uv", "no_main", "no_std", "pkgid", "crate_id",
"crate_type", "feature", "no_uv", "no_main", "no_std", "crate_id",
"desc", "comment", "license", "copyright", // not used in rustc now
];

Expand Down
2 changes: 0 additions & 2 deletions src/librustdoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// NOTE: remove after snapshot
#[pkgid = "rustdoc#0.9-pre"];
#[crate_id = "rustdoc#0.9-pre"];
#[desc = "rustdoc, the Rust documentation extractor"];
#[license = "MIT/ASL2"];
Expand Down
2 changes: 0 additions & 2 deletions src/librustpkg/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

// rustpkg - a package manager and build system for Rust

// NOTE: remove after snapshot
#[pkgid = "rustpkg#0.9-pre"];
#[crate_id = "rustpkg#0.9-pre"];
#[license = "MIT/ASL2"];
#[crate_type = "dylib"];
Expand Down
2 changes: 0 additions & 2 deletions src/librustuv/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ via `close` and `delete` methods.

*/

// NOTE: remove after snapshot
#[pkgid = "rustuv#0.9-pre"];
#[crate_id = "rustuv#0.9-pre"];
#[license = "MIT/ASL2"];
#[crate_type = "rlib"];
Expand Down
2 changes: 0 additions & 2 deletions src/libstd/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@
//!
//! use std::prelude::*;

// NOTE: remove after snapshot
#[pkgid = "std#0.9-pre"];
#[crate_id = "std#0.9-pre"];
#[comment = "The Rust standard library"];
#[license = "MIT/ASL2"];
Expand Down
25 changes: 0 additions & 25 deletions src/libstd/rtdeps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,28 +43,3 @@ extern {}
#[cfg(target_os = "macos")]
#[link(name = "pthread")]
extern {}

// NOTE: remove after snapshot
// stage0-generated code still depends on c++
#[cfg(stage0)]
mod stage0 {
#[cfg(target_os = "linux")]
#[link(name = "stdc++")]
extern {}

#[cfg(target_os = "android")]
#[link(name = "supc++")]
extern {}

#[cfg(target_os = "freebsd")]
#[link(name = "stdc++")]
extern {}

#[cfg(target_os = "macos")]
#[link(name = "stdc++")]
extern {}

#[cfg(target_os = "win32")]
#[link(name = "stdc++")]
extern {}
}
2 changes: 0 additions & 2 deletions src/libsyntax/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
* macros.
*/

// NOTE: remove pkgid after snapshot
#[pkgid = "syntax#0.9-pre"];
#[crate_id = "syntax#0.9-pre"];
#[license = "MIT/ASL2"];
#[crate_type = "dylib"];
Expand Down
92 changes: 0 additions & 92 deletions src/rt/rust_upcall.c

This file was deleted.

8 changes: 8 additions & 0 deletions src/snapshots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
S 2013-12-25 cab6af5
freebsd-x86_64 bf06667e19a24ffad3a4111c704e9e919f08b076
linux-i386 1d3c54daa6192f823dab694e5ea42c636633df6b
linux-x86_64 1af14ca2b248061d5a999062d6bb0825420c0add
macos-i386 7cee8aefd84c8d93cde40b89bf787b669e911171
macos-x86_64 d4a4ef8f2b28d3d5eafbccf0df07999efd8115af
winnt-i386 847e8858bcae47cd56bf1ea3b3c0d536897c8d68

S 2013-12-17 d5798b3
freebsd-x86_64 8f71dbd1aef6c59867ce6287cc82c6033e1ee5e5
linux-i386 3a6e8950ef704ec57ab690b30beda19d7a63a537
Expand Down