]> git.lizzy.rs Git - rust.git/commit
Rename files to match current recommendations.
authorChris Morgan <me@chrismorgan.info>
Tue, 29 Oct 2013 06:22:49 +0000 (17:22 +1100)
committerChris Morgan <me@chrismorgan.info>
Sun, 3 Nov 2013 12:49:01 +0000 (23:49 +1100)
commit0369a41f0e668eda5622055253b91dbb5254f0b4
tree1cff913f7020f89a9441a0eb19d9e573329bba92
parent318e1da4a79533cf8040ef41dc1b1a2ef861906b
Rename files to match current recommendations.

New standards have arisen in recent months, mostly for the use of
rustpkg, but the main Rust codebase has not been altered to match these
new specifications. This changeset rectifies most of these issues.

- Renamed the crate source files `src/libX/X.rs` to `lib.rs`, for
  consistency with current styles; this affects extra, rustc, rustdoc,
  rustpkg, rustuv, std, syntax.

- Renamed `X/X.rs` to `X/mod.rs,` as is now recommended style, for
  `std::num` and `std::terminfo`.

- Shifted `src/libstd/str/ascii.rs` out of the otherwise unused `str`
  directory, to be consistent with its import path of `std::ascii`;
  libstd is flat at present so it's more appropriate thus.

While this removes some `#[path = "..."]` directives, it does not remove
all of them, and leaves certain other inconsistencies, such as `std::u8`
et al. which are actually stored in `src/libstd/num/` (one subdirectory
down). No quorum has been reached on this issue, so I felt it best to
leave them all alone at present. #9208 deals with the possibility of
making libstd more hierarchical (such as changing the crate to match the
current filesystem structure, which would make the module path
`std::num::u8`).

There is one thing remaining in which this repository is not
rustpkg-compliant: rustpkg would have `src/std/` et al. rather than
`src/libstd/` et al. I have not endeavoured to change that at this point
as it would guarantee prompt bitrot and confusion. A change of that
magnitude needs to be discussed first.
22 files changed:
Makefile.in
mk/tools.mk
src/libextra/extra.rs [deleted file]
src/libextra/lib.rs [new file with mode: 0644]
src/libextra/terminfo/mod.rs [new file with mode: 0644]
src/libextra/terminfo/terminfo.rs [deleted file]
src/librustc/lib.rs [new file with mode: 0644]
src/librustc/rustc.rs [deleted file]
src/librustdoc/lib.rs [new file with mode: 0644]
src/librustdoc/rustdoc.rs [deleted file]
src/librustpkg/lib.rs [new file with mode: 0644]
src/librustpkg/rustpkg.rs [deleted file]
src/librustuv/lib.rs [new file with mode: 0644]
src/librustuv/rustuv.rs [deleted file]
src/libstd/ascii.rs [new file with mode: 0644]
src/libstd/lib.rs [new file with mode: 0644]
src/libstd/num/mod.rs [new file with mode: 0644]
src/libstd/num/num.rs [deleted file]
src/libstd/std.rs [deleted file]
src/libstd/str/ascii.rs [deleted file]
src/libsyntax/lib.rs [new file with mode: 0644]
src/libsyntax/syntax.rs [deleted file]