File tree 9 files changed +20
-63
lines changed
9 files changed +20
-63
lines changed Original file line number Diff line number Diff line change @@ -20,22 +20,14 @@ Rust extras are part of the standard Rust distribution.
20
20
21
21
*/
22
22
23
- #[ pkgid="extra#0.9-pre" ] ;
24
- // NOTE: remove after the next snapshot
25
- #[ link( name = "extra" ,
26
- package_id = "extra" ,
27
- vers = "0.9-pre" ,
28
- uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297" ,
29
- url = "https://github.com/mozilla/rust/tree/master/src/libextra" ) ] ;
30
-
31
- #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
32
- html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
33
- html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
34
-
23
+ #[ pkgid = "extra#0.9-pre" ] ;
35
24
#[ comment = "Rust extras" ] ;
36
25
#[ license = "MIT/ASL2" ] ;
37
26
#[ crate_type = "rlib" ] ;
38
27
#[ crate_type = "dylib" ] ;
28
+ #[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
29
+ html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
30
+ html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
39
31
40
32
#[ feature( macro_rules, globs, managed_boxes) ] ;
41
33
Original file line number Diff line number Diff line change @@ -375,9 +375,8 @@ fn mk_tests(cx: &TestCtxt) -> @ast::item {
375
375
}
376
376
377
377
fn is_extra ( crate : & ast:: Crate ) -> bool {
378
- let items = attr:: find_linkage_metas ( crate . attrs) ;
379
- match attr:: last_meta_item_value_str_by_name ( items, "name" ) {
380
- Some ( s) if "extra" == s => true ,
378
+ match attr:: find_pkgid ( crate . attrs) {
379
+ Some ( ref s) if "extra" == s. name => true ,
381
380
_ => false
382
381
}
383
382
}
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- #[ pkgid="rustc#0.9-pre" ] ;
12
- // NOTE: remove after the next snapshot
13
- #[ link( name = "rustc" ,
14
- package_id = "rustc" ,
15
- vers = "0.9-pre" ,
16
- uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf" ,
17
- url = "https://github.com/mozilla/rust/tree/master/src/rustc" ) ] ;
18
-
11
+ #[ pkgid = "rustc#0.9-pre" ] ;
19
12
#[ comment = "The Rust compiler" ] ;
20
13
#[ license = "MIT/ASL2" ] ;
21
14
#[ crate_type = "dylib" ] ;
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- #[ pkgid="rustdoc#0.9-pre" ] ;
12
- // NOTE: remove after the next snapshot
13
- #[ link( name = "rustdoc" ,
14
- package_id = "rustdoc" ,
15
- vers = "0.9-pre" ,
16
- uuid = "8c6e4598-1596-4aa5-a24c-b811914bbbc6" ,
17
- url = "https://github.com/mozilla/rust/tree/master/src/librustdoc" ) ] ;
18
-
11
+ #[ pkgid = "rustdoc#0.9-pre" ] ;
19
12
#[ desc = "rustdoc, the Rust documentation extractor" ] ;
20
13
#[ license = "MIT/ASL2" ] ;
21
14
#[ crate_type = "dylib" ] ;
Original file line number Diff line number Diff line change 10
10
11
11
// rustpkg - a package manager and build system for Rust
12
12
13
- #[ pkgid="rustpkg#0.9-pre" ] ;
14
- // NOTE: remove after the next snapshot
15
- #[ link( name = "rustpkg" ,
16
- package_id = "rustpkg" ,
17
- vers = "0.9-pre" ,
18
- uuid = "25de5e6e-279e-4a20-845c-4cabae92daaf" ,
19
- url = "https://github.com/mozilla/rust/tree/master/src/librustpkg" ) ] ;
20
-
13
+ #[ pkgid = "rustpkg#0.9-pre" ] ;
21
14
#[ license = "MIT/ASL2" ] ;
22
15
#[ crate_type = "dylib" ] ;
23
16
Original file line number Diff line number Diff line change @@ -34,14 +34,7 @@ via `close` and `delete` methods.
34
34
35
35
*/
36
36
37
- #[ pkgid="rustuv#0.9-pre" ] ;
38
- // NOTE: remove after the next snapshot
39
- #[ link( name = "rustuv" ,
40
- package_id = "rustuv" ,
41
- vers = "0.9-pre" ,
42
- uuid = "f3719011-0459-9b86-b11c-29265c0d0864" ,
43
- url = "https://github.com/mozilla/rust/tree/master/src/librustuv" ) ] ;
44
-
37
+ #[ pkgid = "rustuv#0.9-pre" ] ;
45
38
#[ license = "MIT/ASL2" ] ;
46
39
#[ crate_type = "rlib" ] ;
47
40
#[ crate_type = "dylib" ] ;
Original file line number Diff line number Diff line change 43
43
//!
44
44
//! use std::prelude::*;
45
45
46
- #[ pkgid="std#0.9-pre" ] ;
47
- // NOTE: remove after the next snapshot
48
- #[ link( name = "std" ,
49
- package_id = "std" ,
50
- vers = "0.9-pre" ,
51
- uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8" ,
52
- url = "https://github.com/mozilla/rust/tree/master/src/libstd" ) ] ;
53
-
46
+ #[ pkgid = "std#0.9-pre" ] ;
54
47
#[ comment = "The Rust standard library" ] ;
55
48
#[ license = "MIT/ASL2" ] ;
56
49
#[ crate_type = "rlib" ] ;
57
50
#[ crate_type = "dylib" ] ;
58
-
59
51
#[ doc( html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
60
52
html_favicon_url = "http://www.rust-lang.org/favicon.ico" ,
61
53
html_root_url = "http://static.rust-lang.org/doc/master" ) ] ;
Original file line number Diff line number Diff line change 13
13
* macros.
14
14
*/
15
15
16
- #[ pkgid="syntax#0.9-pre" ] ;
17
- // NOTE: remove after the next snapshot
18
- #[ link( name = "syntax" ,
19
- package_id = "syntax" ,
20
- vers = "0.9-pre" ,
21
- uuid = "9311401b-d6ea-4cd9-a1d9-61f89499c645" ) ] ;
22
-
16
+ #[ pkgid = "syntax#0.9-pre" ] ;
23
17
#[ license = "MIT/ASL2" ] ;
24
18
#[ crate_type = "dylib" ] ;
25
19
#[ crate_type = "rlib" ] ;
Original file line number Diff line number Diff line change
1
+ S 2013-12-10 b8b16ae
2
+ freebsd-x86_64 08d28a3a47f4263dc0a005374e59d30b1b942ab2
3
+ linux-i386 4cd5d8b80014a69dea9744fd12c8cdab6269d263
4
+ linux-x86_64 b68c106f377b226ebd17210fbce84423e3ffa6c2
5
+ macos-i386 797b3e01c5ed9fbd3549d75300a005e4a987a84c
6
+ macos-x86_64 b5f33edc57378ef1533dea258ac04c3bbe0e71da
7
+ winnt-i386 656ffae4528290f942acf4ac5af515fb802d6bd9
8
+
1
9
S 2013-12-09 b485e2b
2
10
freebsd-x86_64 424f1504e7dfe43d1238a8b6e6abea8879297fa2
3
11
linux-i386 214dc3cb3224f7ad6ef02e684cf6505113e5dc9a
You can’t perform that action at this time.
0 commit comments