Skip to content

Commit

Permalink
fasterthanlime -> ooc-lang organization #972
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Feb 2, 2016
1 parent 44e0709 commit 8cf778e
Show file tree
Hide file tree
Showing 48 changed files with 56 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ script:
- make -s rescue
- make clean self
- make clean self
- git clone --depth=1 git://github.com/fasterthanlime/sam.git
- git clone --depth=1 git://github.com/ooc-lang/sam.git
- (cd sam && rock --quiet sam.use)
- sam test rock.use

Expand Down
2 changes: 1 addition & 1 deletion BOOTSTRAP
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
It looks like you don't have a set of C sources rock can bootstrap from.

Try running `make rescue`, or when everything else fails, get help on IRC
and/or open an issue here: https://github.com/fasterthanlime/rock/issues
and/or open an issue here: https://github.com/ooc-lang/rock/issues
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ all: bootstrap
# Regenerate NagaQueen.c from the greg grammar
# you need ../nagaqueen and greg to be in your path
#
# http://github.com/fasterthanlime/nagaqueen
# http://github.com/fasterthanlime/greg
# http://github.com/ooc-lang/nagaqueen
# http://github.com/ooc-lang/greg
grammar:
$(PARSER_GEN) ../nagaqueen/grammar/nagaqueen.leg > $(NQ_PATH)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![Build Status](https://travis-ci.org/fasterthanlime/rock.svg?branch=master)](https://travis-ci.org/fasterthanlime/rock)
[![Build Status](https://travis-ci.org/ooc-lang/rock.svg?branch=master)](https://travis-ci.org/ooc-lang/rock)

# rock

* [ooc](http://ooc-lang.org/)
* [rock](https://github.com/fasterthanlime/rock)
* [rock](https://github.com/ooc-lang/rock)

rock is an ooc compiler written in ooc - in other words, it's
where things begin to become really exciting.
Expand Down Expand Up @@ -37,7 +37,7 @@ make sure it can find the SDK!
See the `INSTALL` file

To switch to the most recent git, read
[ReleaseToGit](https://github.com/fasterthanlime/rock/blob/master/docs/workflow/ReleaseToGit.md)
[ReleaseToGit](https://github.com/ooc-lang/rock/blob/master/docs/workflow/ReleaseToGit.md)

## License

Expand Down
8 changes: 4 additions & 4 deletions docs/workflow/ReleaseToGit.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Single-line Method

Giving Rock a run for its money is now quicker and easier than ever. Run the following command in your shell, and life is good. Tested and working on OS X and Ubuntu. Should work on any POSIX compliant system.

``bash -c "`curl -L http://github.com/fasterthanlime/rock/raw/master/utils/ooc-install.sh`"``
``bash -c "`curl -L http://github.com/ooc-lang/rock/raw/master/utils/ooc-install.sh`"``


So you've tried rock..
Expand All @@ -25,7 +25,7 @@ Quick way
---------

1. Extract release, cd, make
2. git clone git://github.com/fasterthanlime/rock.git && cd rock
2. git clone git://github.com/ooc-lang/rock.git && cd rock
3. ROCK_DIST=. OOC=../rock-x.y.z*/bin/rock make self

And you're done! Of course, rock-x.y.z should be the number of the
Expand All @@ -40,9 +40,9 @@ Long way with detailed explanations

Rock is a <a href="http://en.wikipedia.org/wiki/Self-hosting">self-hosting</a> compiler, each release of rock is used to build the next release of rock. To use the git version, simply follow these steps (specific steps may vary depending on your OS):

1. Check that you have a stable release of rock (0.9.1 as of 8/05/2010), you can download the release from <a href="http://github.com/fasterthanlime/rock/downloads">here</a>.
1. Check that you have a stable release of rock (0.9.1 as of 8/05/2010), you can download the release from <a href="http://github.com/ooc-lang/rock/downloads">here</a>.

2. Let's assume that you unpackaged the folder to /usr/share/rock-0.9.1. "cd /usr/share/" and clone the latest development copy "git clone git://github.com/fasterthanlime/rock.git"
2. Let's assume that you unpackaged the folder to /usr/share/rock-0.9.1. "cd /usr/share/" and clone the latest development copy "git clone git://github.com/ooc-lang/rock.git"

3. "cd rock/", inside this directory execute "OOC=../rock-0.9.1/bin/rock ROCK_DIST=. make self". This will build the latest binary for rock using the stable release. This is self-hosting in action :)

Expand Down
2 changes: 1 addition & 1 deletion extensions/fancy-backtrace/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ else ifeq ($(MYOS),)
ifeq (${OS}, Windows_NT)
ARCH=win
else
$(error "OS ${OS} unrecognized - please open an issue at https://github.com/fasterthanlime/rock/issues")
$(error "OS ${OS} unrecognized - please open an issue at https://github.com/ooc-lang/rock/issues")
endif
endif

Expand Down
2 changes: 1 addition & 1 deletion rock.use
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: rock
Version: head
Origin: git://github.com/fasterthanlime/rock.git
Origin: git://github.com/ooc-lang/rock.git
Description: ooc compiler written in ooc
SourcePath: source

Expand Down
2 changes: 1 addition & 1 deletion sdk/io/native/FileWin32.ooc
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ version(windows) {
// For now, `executable?` and `setExecutable` are enough
// to set basic permissions when creating files on *nix.
// See discussion on this commit for more details:
// https://github.com/fasterthanlime/rock/commit/c6b8e9a23079451f2d6c6964cace8ff786f4d434
// https://github.com/ooc-lang/rock/commit/c6b8e9a23079451f2d6c6964cace8ff786f4d434
false
}

Expand Down
2 changes: 1 addition & 1 deletion source/rock/frontend/drivers/CMakeDriver.ooc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ CMakefileWriter: class extends MetaDriverWriter {

writePrelude: func {
tw writeln("# CMakeLists.txt generated by rock, the ooc compiler written in ooc")
tw writeln("# See https://github.com/fasterthanlime/rock and http://ooc-lang.org")
tw writeln("# See https://github.com/ooc-lang/rock and http://ooc-lang.org")
tw nl()
}

Expand Down
2 changes: 1 addition & 1 deletion source/rock/frontend/drivers/MakeDriver.ooc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ MakefileWriter: class extends MetaDriverWriter {

writePrelude: func {
tw writeln("# Makefile generated by rock, the ooc compiler written in ooc")
tw writeln("# See https://github.com/fasterthanlime/rock and http://ooc-lang.org")
tw writeln("# See https://github.com/ooc-lang/rock and http://ooc-lang.org")
tw nl()
}

Expand Down
2 changes: 1 addition & 1 deletion source/rock/middle/Match.ooc
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Match: class extends Expression {
// As is, this code might unwrap more than necessary (e.g. a literal)
// We need a better way to determine whether an expression will have
// side effects when evaluating, but that's beyond the scope of
// that issue: https://github.com/fasterthanlime/rock/issues/615
// that issue: https://github.com/ooc-lang/rock/issues/615
vdfe := VariableDecl new(null, generateTempName("matchExpr"), expr, expr token)
if (trail addBeforeInScope(this, vdfe)) {
expr = VariableAccess new(vdfe, vdfe token)
Expand Down
4 changes: 2 additions & 2 deletions test/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[sam]: https://github.com/fasterthanlime/sam
[travis]: https://travis-ci.org/fasterthanlime/rock/builds
[sam]: https://github.com/ooc-lang/sam
[travis]: https://travis-ci.org/ooc-lang/rock/builds

## about rock tests

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/arrays/return-array.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test case for https://github.com/fasterthanlime/rock/issues/348
// Test case for https://github.com/ooc-lang/rock/issues/348

f: func -> Int[] {
[1, 2, 3, 4]
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/arrays/return-array2.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test case for https://github.com/fasterthanlime/rock/issues/795
// Test case for https://github.com/ooc-lang/rock/issues/795

//! shouldfail

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/classes/eventually-final.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// cf. https://github.com/fasterthanlime/rock/pull/853
// cf. https://github.com/ooc-lang/rock/pull/853

describe("methods can become final in subclasses (should compile)", ||
Second new() test()
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/closures/nest-up-and-away.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/907
// Test for https://github.com/ooc-lang/rock/issues/907

finalValue: Int = 42

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/closures/nested-closures.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// cf. https://github.com/fasterthanlime/rock/issues/882
// cf. https://github.com/ooc-lang/rock/issues/882

describe("nested closures should be able to modify outer variable by ref", ||
g := (1, 0) as Tuple
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/closures/non-acs-in-closure.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// regression test for: https://github.com/fasterthanlime/rock/issues/885
// regression test for: https://github.com/ooc-lang/rock/issues/885

describe("should call static function from closure", ||
f := func {
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/covers/cover-templates-generic-function.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/626
// Test for https://github.com/ooc-lang/rock/issues/626

result := 0

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/covers/cover-templates-generic-function2.ooc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

//! shouldfail

// Test for https://github.com/fasterthanlime/rock/issues/626
// Test for https://github.com/ooc-lang/rock/issues/626

result := 0

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/covers/cover-templates-generic-function3.ooc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

//! shouldfail

// Test for https://github.com/fasterthanlime/rock/issues/626
// Test for https://github.com/ooc-lang/rock/issues/626

result := 0

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// test for https://github.com/fasterthanlime/rock/issues/886
// test for https://github.com/ooc-lang/rock/issues/886

formatInt: func (i: Int) -> String {
"~#{i}"
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/covers/cover-templates2.ooc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

// this test triggers a particular bug in old versions of rock
// where resolve orders is so that things don't get resolved properly.
// see https://github.com/fasterthanlime/rock/issues/887
// see https://github.com/ooc-lang/rock/issues/887

assignDone := false
pleaseDone := false
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/covers/pointer-comparison.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/783
// Test for https://github.com/ooc-lang/rock/issues/783

describe("it should be legal to compare the address of structs", ||
s := (1, 5) as S
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/functions/call-combo1.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/pull/901
// Test for https://github.com/ooc-lang/rock/pull/901

describe("bar test()(1) should be recognized properly", ||
bar := Foo new()
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/functions/call-combo2.ooc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

//!shouldfail

// Test for https://github.com/fasterthanlime/rock/pull/901
// Test for https://github.com/ooc-lang/rock/pull/901

describe("bar test()() should be a compile error (args mismatch)", ||
bar := Foo new()
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/functions/segfault-on-build.ooc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

//! shouldfail

// Test for https://github.com/fasterthanlime/rock/issues/811
// Test for https://github.com/ooc-lang/rock/issues/811

Foo: class {
done: Bool { get {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// regression test for: https://github.com/fasterthanlime/rock/issues/635
// regression test for: https://github.com/ooc-lang/rock/issues/635
// "Can't call static first-class functions without the class name."

// Don't use sam-assert, otherwise we hit #885
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/casting-to-generic.ooc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

//! shouldfail

// Test for https://github.com/fasterthanlime/rock/issues/891
// Test for https://github.com/ooc-lang/rock/issues/891

Peeker: class {
inner: Object
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/generic-member.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/889
// Test for https://github.com/ooc-lang/rock/issues/889

describe("accessing generic member should not require a cast", ||
g := Gift<String> new("hi")
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/generic-member2.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/889
// Test for https://github.com/ooc-lang/rock/issues/889

describe("should be able to assign, plus-assign, access generic member", ||
g := Gift<Int> new(42)
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/generic-member3.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/889
// Test for https://github.com/ooc-lang/rock/issues/889

import structs/ArrayList

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/iterate-hashmap-keys.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/361
// Test for https://github.com/ooc-lang/rock/issues/361

import structs/HashMap

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/match-generic-types.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/802
// Test for https://github.com/ooc-lang/rock/issues/802

getType: func <T> (t: T) -> String {
match t {
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/pass-invalid-generic-arg.ooc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import structs/ArrayList

// Test case for https://github.com/fasterthanlime/rock/issues/842
// Test case for https://github.com/ooc-lang/rock/issues/842

describe("should refuse invalid generic assignment", ||
data: ArrayList<ArrayList<Int>>
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/reconcile-1.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/825
// Test for https://github.com/ooc-lang/rock/issues/825

Foo: class { init: func }
Bar: class extends Foo { init: super func }
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/reconcile-not-1.ooc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

//! shouldfail

// Test for https://github.com/fasterthanlime/rock/issues/825
// Test for https://github.com/ooc-lang/rock/issues/825

Foo: class { init: func }

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/unwrap-with-return-args.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/890
// Test for https://github.com/ooc-lang/rock/issues/890

Ditto: class {
s: String
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/use-owner-not-this.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/346
// Test for https://github.com/ooc-lang/rock/issues/346

import structs/HashBag

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/generics/use-owner-not-this2.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/346
// Test for https://github.com/ooc-lang/rock/issues/346

import structs/HashBag

Expand Down
2 changes: 1 addition & 1 deletion test/compiler/operators/overload-order.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/780
// Test for https://github.com/ooc-lang/rock/issues/780

describe("operator overload order should not matter", ||
p := Point2D new(2, 3)
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/pointers/references-accessing.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/595
// Test for https://github.com/ooc-lang/rock/issues/595

describe("accessing references inside closures should work", ||
a : Int@ = gc_malloc(Int size)
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/pointers/references-assigning.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/595
// Test for https://github.com/ooc-lang/rock/issues/595

describe("accessing & assigning references inside closures should work", ||
alamanthus : Int@ = gc_malloc(Int size)
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/properties/call-properties.ooc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

//! shouldfail

// Test for https://github.com/fasterthanlime/rock/issues/860
// Test for https://github.com/ooc-lang/rock/issues/860

Foo: class {
b ::= 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

// cf. https://github.com/fasterthanlime/rock/issues/840
// and https://github.com/fasterthanlime/rock/pull/854
// cf. https://github.com/ooc-lang/rock/issues/840
// and https://github.com/ooc-lang/rock/pull/854

describe("generic properties should work", ||
tbar := Foo<Int> new()
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/tuples/tuple-multidecl-precedence.ooc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Test for https://github.com/fasterthanlime/rock/issues/903
// Test for https://github.com/ooc-lang/rock/issues/903

describe("tuple variable decls should have precedence over members", ||
bar := Foo new(1337)
Expand Down
Loading

0 comments on commit 8cf778e

Please sign in to comment.