rust/src/librustpkg
2013-09-03 16:11:00 -07:00
..
testsuite rustpkg: Un-ignore most of the remaining tests 2013-08-19 15:27:21 -07:00
api.rs rustpkg: Allow package directories to appear in the RUST_PATH 2013-08-30 15:48:41 -07:00
conditions.rs Fixes #8881. condition! imports parent's pub identifiers 2013-09-03 16:11:00 -07:00
context.rs rustpkg: Allow package directories to appear in the RUST_PATH 2013-08-30 15:48:41 -07:00
crate.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
installed_packages.rs std/rustc/rustpkg/syntax: Support the extern mod = ... form 2013-08-09 14:11:50 -07:00
messages.rs Bring compiletest/rustpkg/driver up to date on std vs core 2013-07-04 16:30:48 -07:00
package_id.rs made Eq for package_id use more standard parameter names 2013-08-30 22:10:36 -04:00
package_source.rs rustpkg: Allow package directories to appear in the RUST_PATH 2013-08-30 15:48:41 -07:00
path_util.rs rustpkg: Allow package directories to appear in the RUST_PATH 2013-08-30 15:48:41 -07:00
README.txt rustpkg: update README saying which tests pass 2013-04-24 17:51:30 -07:00
rustpkg.rs rustpkg: Allow package directories to appear in the RUST_PATH 2013-08-30 15:48:41 -07:00
search.rs rustpkg: Test that different copies of the same package ID can exist in multiple workspaces 2013-08-26 15:23:06 -07:00
source_control.rs Revert "auto merge of #8645 : alexcrichton/rust/issue-6436-run-non-blocking, r=brson" 2013-08-29 14:23:44 -07:00
target.rs rustc/rusti/rustpkg: Infer packages from extern mod directives 2013-06-01 18:48:07 -07:00
tests.rs rustpkg: Allow package directories to appear in the RUST_PATH 2013-08-30 15:48:41 -07:00
usage.rs rustpkg: Clean up usage messages for install 2013-07-24 18:39:25 -07:00
util.rs Renamed syntax::ast::ident -> Ident 2013-09-02 02:51:21 +02:00
version.rs remove several 'ne' methods 2013-08-30 21:53:25 -04:00
workspace.rs rustpkg: Allow package directories to appear in the RUST_PATH 2013-08-30 15:48:41 -07:00

Right now, commands that work are "build" and "clean".

`rustpkg build` and `rustpkg clean` should work

for example:
$ cd ~/rust/src/librustpkg/testsuite/pass
$ rustpkg build hello-world
... some output ...
$ rustpkg clean hello-world

-------------
the following test packages in librustpkg/testsuite/pass:
      * hello-world
      * install-paths
      * simple-lib
      * deeply/nested/path
      * fancy-lib

   It fails on the following test packages:
      * external-crate (no support for `extern mod` inference yet)

and should fail with proper error messages
on all of the test packages in librustpkg/testsuite/fail
      * no-inferred-crates