Skip to content

Commit 914d383

Browse files
committed
all: update import paths to github.com/tinygo-org/tinygo
1 parent 504c82a commit 914d383

File tree

10 files changed

+34
-34
lines changed

10 files changed

+34
-34
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ install:
1515
- dep ensure --vendor-only
1616

1717
script:
18-
- go install github.com/aykevl/tinygo
18+
- go install github.com/tinygo-org/tinygo
1919
- go test -v .
2020
- make gen-device
2121
- tinygo build -o blinky1.nrf.elf -target=pca10040 examples/blinky1

Dockerfile

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ RUN wget -O- https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add - && \
88

99
RUN wget -O- https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
1010

11-
COPY . /go/src/github.com/aykevl/tinygo
11+
COPY . /go/src/github.com/tinygo-org/tinygo
1212

13-
RUN cd /go/src/github.com/aykevl/tinygo/ && \
13+
RUN cd /go/src/github.com/tinygo-org/tinygo/ && \
1414
dep ensure --vendor-only && \
15-
go install /go/src/github.com/aykevl/tinygo/
15+
go install /go/src/github.com/tinygo-org/tinygo/
1616

1717
# tinygo-wasm stage installs the needed dependencies to compile TinyGo programs for WASM.
1818
FROM tinygo-base AS tinygo-wasm
1919

2020
COPY --from=tinygo-base /go/bin/tinygo /go/bin/tinygo
21-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/src /go/src/github.com/aykevl/tinygo/src
22-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/targets /go/src/github.com/aykevl/tinygo/targets
21+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/src /go/src/github.com/tinygo-org/tinygo/src
22+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/targets /go/src/github.com/tinygo-org/tinygo/targets
2323

2424
RUN wget -O- https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add - && \
2525
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-7 main" >> /etc/apt/sources.list && \
@@ -30,13 +30,13 @@ RUN wget -O- https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add - && \
3030
FROM tinygo-base AS tinygo-avr
3131

3232
COPY --from=tinygo-base /go/bin/tinygo /go/bin/tinygo
33-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/src /go/src/github.com/aykevl/tinygo/src
34-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/targets /go/src/github.com/aykevl/tinygo/targets
35-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/Makefile /go/src/github.com/aykevl/tinygo/
36-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/tools /go/src/github.com/aykevl/tinygo/tools
37-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/lib /go/src/github.com/aykevl/tinygo/lib
33+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/src /go/src/github.com/tinygo-org/tinygo/src
34+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/targets /go/src/github.com/tinygo-org/tinygo/targets
35+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/Makefile /go/src/github.com/tinygo-org/tinygo/
36+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/tools /go/src/github.com/tinygo-org/tinygo/tools
37+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/lib /go/src/github.com/tinygo-org/tinygo/lib
3838

39-
RUN cd /go/src/github.com/aykevl/tinygo/ && \
39+
RUN cd /go/src/github.com/tinygo-org/tinygo/ && \
4040
apt-get update && \
4141
apt-get install -y apt-utils python3 make binutils-avr gcc-avr avr-libc && \
4242
make gen-device-avr && \
@@ -48,13 +48,13 @@ RUN cd /go/src/github.com/aykevl/tinygo/ && \
4848
FROM tinygo-base AS tinygo-arm
4949

5050
COPY --from=tinygo-base /go/bin/tinygo /go/bin/tinygo
51-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/src /go/src/github.com/aykevl/tinygo/src
52-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/targets /go/src/github.com/aykevl/tinygo/targets
53-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/Makefile /go/src/github.com/aykevl/tinygo/
54-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/tools /go/src/github.com/aykevl/tinygo/tools
55-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/lib /go/src/github.com/aykevl/tinygo/lib
51+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/src /go/src/github.com/tinygo-org/tinygo/src
52+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/targets /go/src/github.com/tinygo-org/tinygo/targets
53+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/Makefile /go/src/github.com/tinygo-org/tinygo/
54+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/tools /go/src/github.com/tinygo-org/tinygo/tools
55+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/lib /go/src/github.com/tinygo-org/tinygo/lib
5656

57-
RUN cd /go/src/github.com/aykevl/tinygo/ && \
57+
RUN cd /go/src/github.com/tinygo-org/tinygo/ && \
5858
apt-get update && \
5959
apt-get install -y apt-utils python3 make binutils-arm-none-eabi clang-7 && \
6060
make gen-device-nrf && make gen-device-stm32 && \
@@ -65,11 +65,11 @@ RUN cd /go/src/github.com/aykevl/tinygo/ && \
6565
# tinygo-all stage installs the needed dependencies to compile TinyGo programs for all platforms.
6666
FROM tinygo-wasm AS tinygo-all
6767

68-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/Makefile /go/src/github.com/aykevl/tinygo/
69-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/tools /go/src/github.com/aykevl/tinygo/tools
70-
COPY --from=tinygo-base /go/src/github.com/aykevl/tinygo/lib /go/src/github.com/aykevl/tinygo/lib
68+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/Makefile /go/src/github.com/tinygo-org/tinygo/
69+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/tools /go/src/github.com/tinygo-org/tinygo/tools
70+
COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/lib /go/src/github.com/tinygo-org/tinygo/lib
7171

72-
RUN cd /go/src/github.com/aykevl/tinygo/ && \
72+
RUN cd /go/src/github.com/tinygo-org/tinygo/ && \
7373
apt-get update && \
7474
apt-get install -y apt-utils python3 make binutils-arm-none-eabi clang-7 binutils-avr gcc-avr avr-libc && \
7575
make gen-device && \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TinyGo - Go compiler for microcontrollers
22

3-
[![Build Status](https://travis-ci.com/aykevl/tinygo.svg?branch=master)](https://travis-ci.com/aykevl/tinygo)
3+
[![Build Status](https://travis-ci.com/aykevl/tinygo.svg?branch=master)](https://travis-ci.com/tinygo-org/tinygo)
44

55
> We never expected Go to be an embedded language and so it's got serious
66
> problems [...].
@@ -166,7 +166,7 @@ If you want to contribute, here are some suggestions:
166166
requires a few compiler changes, but if the architecture is supported you
167167
can try implementing support for a new chip or board in `src/runtime`. For
168168
details, see [this wiki entry on adding
169-
archs/chips/boards](https://github.com/aykevl/tinygo/wiki/Adding-a-new-board).
169+
archs/chips/boards](https://github.com/tinygo-org/tinygo/wiki/Adding-a-new-board).
170170
* Microcontrollers have lots of peripherals and many don't have an
171171
implementation yet in the `machine` package. Adding support for new
172172
peripherals is very useful.

compiler/compiler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"strconv"
1515
"strings"
1616

17-
"github.com/aykevl/tinygo/ir"
18-
"github.com/aykevl/tinygo/loader"
17+
"github.com/tinygo-org/tinygo/ir"
18+
"github.com/tinygo-org/tinygo/loader"
1919
"golang.org/x/tools/go/ssa"
2020
"tinygo.org/x/go-llvm"
2121
)

compiler/defer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ package compiler
1414
// frames.
1515

1616
import (
17-
"github.com/aykevl/tinygo/ir"
17+
"github.com/tinygo-org/tinygo/ir"
1818
"golang.org/x/tools/go/ssa"
1919
"tinygo.org/x/go-llvm"
2020
)

compiler/interface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"go/token"
1010
"go/types"
1111

12-
"github.com/aykevl/tinygo/ir"
12+
"github.com/tinygo-org/tinygo/ir"
1313
"golang.org/x/tools/go/ssa"
1414
"tinygo.org/x/go-llvm"
1515
)

ir/ir.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"sort"
88
"strings"
99

10-
"github.com/aykevl/tinygo/loader"
10+
"github.com/tinygo-org/tinygo/loader"
1111
"golang.org/x/tools/go/ssa"
1212
"tinygo.org/x/go-llvm"
1313
)

main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515
"strings"
1616
"syscall"
1717

18-
"github.com/aykevl/tinygo/compiler"
19-
"github.com/aykevl/tinygo/interp"
20-
"github.com/aykevl/tinygo/loader"
18+
"github.com/tinygo-org/tinygo/compiler"
19+
"github.com/tinygo-org/tinygo/interp"
20+
"github.com/tinygo-org/tinygo/loader"
2121
)
2222

2323
var commands = map[string]string{

src/machine/buffer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type volatileByte byte
1010
//
1111
// It has some limitations currently due to how "volatile" variables that are
1212
// members of a struct are not compiled correctly by TinyGo.
13-
// See https://github.com/aykevl/tinygo/issues/151 for details.
13+
// See https://github.com/tinygo-org/tinygo/issues/151 for details.
1414
type RingBuffer struct {
1515
rxbuffer [bufferSize]volatileByte
1616
head volatileByte

testdata/slice.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func main() {
9292
}
9393
println()
9494

95-
// Verify the fix in https://github.com/aykevl/tinygo/pull/119
95+
// Verify the fix in https://github.com/tinygo-org/tinygo/pull/119
9696
var unnamed [32]byte
9797
var named MySlice
9898
assert(len(unnamed[:]) == 32)

0 commit comments

Comments
 (0)