rust/src/librustpkg
Huon Wilson efc71a8bdb std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_with_null[_consume]().
The first acts on &str and is not nul-terminated, the last two act on strings
that are always null terminated (&'static str, ~str and @str).
2013-06-12 12:21:04 +10:00
..
testsuite rustc/rusti/rustpkg: Infer packages from extern mod directives 2013-06-01 18:48:07 -07:00
conditions.rs rustc/rusti/rustpkg: Infer packages from extern mod directives 2013-06-01 18:48:07 -07:00
context.rs libextra: Rename the actual metadata names of libcore to libstd and libstd to libextra 2013-05-22 21:57:07 -07:00
crate.rs rustpkg: Accept package IDs like github.com/foo/bar#0.3 2013-06-09 13:05:52 -07:00
package_id.rs rustpkg: Accept package IDs like github.com/foo/bar#0.3 2013-06-09 13:05:52 -07:00
package_path.rs std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_with_null[_consume](). 2013-06-12 12:21:04 +10:00
package_source.rs option: remove redundant old_iter impls 2013-06-11 14:06:12 -04:00
path_util.rs std: replace str::each_split* with an iterator 2013-06-10 23:02:54 +10:00
README.txt rustpkg: update README saying which tests pass 2013-04-24 17:51:30 -07:00
rustpkg.rc option: remove redundant old_iter impls 2013-06-11 14:06:12 -04:00
search.rs rustc/rusti/rustpkg: Infer packages from extern mod directives 2013-06-01 18:48:07 -07:00
target.rs rustc/rusti/rustpkg: Infer packages from extern mod directives 2013-06-01 18:48:07 -07:00
tests.rs Ignore the test_package_request_version test for now 2013-06-11 12:40:53 -07:00
usage.rs Remove unnecessary allocations flagged by lint from rustpkg 2013-05-21 23:00:34 +09:00
util.rs std: remove str::{connect,concat}*. 2013-06-10 23:57:03 +10:00
version.rs fix tests, remove some warnings 2013-06-11 02:34:14 +10:00
workspace.rs rustc/rusti/rustpkg: Infer packages from extern mod directives 2013-06-01 18:48:07 -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