Skip to content

Commit bd7ebbc

Browse files
committed
Merge branch 'release/0.9.0'
2 parents 771bfe9 + d586a63 commit bd7ebbc

File tree

1,246 files changed

+2655783
-21340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,246 files changed

+2655783
-21340
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,13 @@
1010
.DS_Store
1111
*/**/.DS_Store
1212
.ethtest
13+
14+
#*
15+
.#*
16+
*#
17+
*~
18+
.project
19+
.settings
20+
21+
cmd/ethereum/ethereum
22+
cmd/mist/mist

.mailmap

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Jeffrey Wilcke <[email protected]>
2+
3+
4+
5+
6+
Viktor Trón <[email protected]>
7+
8+
Joseph Goulden <[email protected]>
9+
10+
Nick Savers <[email protected]>
11+
12+
Maran Hidskes <[email protected]>

.travis.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
language: go
22
go:
3-
- 1.3
3+
- 1.4.1
44
before_install:
5-
- sudo add-apt-repository ppa:ubuntu-sdk-team/ppa -y
5+
- sudo add-apt-repository ppa:beineri/opt-qt54 -y
66
- sudo apt-get update -qq
7-
- sudo apt-get install -yqq libgmp3-dev qtbase5-private-dev qtdeclarative5-private-dev libqt5opengl5-dev libreadline6-dev
7+
- sudo apt-get install -yqq libgmp3-dev libreadline6-dev qt54quickcontrols qt54webengine
88
install:
9-
- go get code.google.com/p/go.tools/cmd/goimports
10-
- go get github.com/golang/lint/golint
11-
# - go get code.google.com/p/go.tools/cmd/vet
12-
- go get code.google.com/p/go.tools/cmd/cover
9+
# - go get golang.org/x/tools/cmd/vet
10+
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
1311
- go get github.com/mattn/goveralls
14-
- ./install_deps.sh
1512
before_script:
16-
- gofmt -l -w .
17-
- goimports -l -w .
18-
- golint .
1913
# - go vet ./...
2014
# - go test -race ./...
2115
script:
22-
- ./gocoverage.sh && goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN
16+
- ./gocoverage.sh
17+
after_success:
18+
- if [ "$COVERALLS_TOKEN" ]; then goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN; fi
2319
env:
24-
- secure: "U2U1AmkU4NJBgKR/uUAebQY87cNL0+1JHjnLOmmXwxYYyj5ralWb1aSuSH3qSXiT93qLBmtaUkuv9fberHVqrbAeVlztVdUsKAq7JMQH+M99iFkC9UiRMqHmtjWJ0ok4COD1sRYixxi21wb/JrMe3M1iL4QJVS61iltjHhVdM64="
20+
global:
21+
- PKG_CONFIG_PATH=/opt/qt54/lib/pkgconfig
22+
- LD_LIBRARY_PATH=/opt/qt54/lib
23+
- secure: "U2U1AmkU4NJBgKR/uUAebQY87cNL0+1JHjnLOmmXwxYYyj5ralWb1aSuSH3qSXiT93qLBmtaUkuv9fberHVqrbAeVlztVdUsKAq7JMQH+M99iFkC9UiRMqHmtjWJ0ok4COD1sRYixxi21wb/JrMe3M1iL4QJVS61iltjHhVdM64="
2524

Dockerfile

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,40 @@
1-
FROM ubuntu:14.04
1+
FROM ubuntu:14.04.1
22

33
## Environment setup
44
ENV HOME /root
55
ENV GOPATH /root/go
6-
ENV PATH /go/bin:/root/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
6+
ENV PATH /root/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
77

88
RUN mkdir -p /root/go
99
ENV DEBIAN_FRONTEND noninteractive
1010

1111
## Install base dependencies
1212
RUN apt-get update && apt-get upgrade -y
13-
RUN apt-get install -y git mercurial build-essential software-properties-common pkg-config libgmp3-dev libreadline6-dev libpcre3-dev libpcre++-dev
14-
15-
## Build and install Go
16-
RUN hg clone -u release https://code.google.com/p/go
17-
RUN cd go && hg update go1.4
18-
RUN cd go/src && ./all.bash && go version
19-
20-
## Install GUI dependencies
21-
RUN add-apt-repository ppa:ubuntu-sdk-team/ppa -y
22-
RUN apt-get update -y
23-
RUN apt-get install -y qtbase5-private-dev qtdeclarative5-private-dev libqt5opengl5-dev
24-
25-
## Fetch and install serpent-go
26-
RUN go get -v -d github.com/ethereum/serpent-go
27-
WORKDIR $GOPATH/src/github.com/ethereum/serpent-go
28-
RUN git checkout master
29-
RUN git submodule update --init
30-
RUN go install -v
31-
32-
# Fetch and install go-ethereum
13+
RUN apt-get install -y git mercurial build-essential software-properties-common wget pkg-config libgmp3-dev libreadline6-dev libpcre3-dev libpcre++-dev
14+
15+
## Install Qt5.4 (not required for CLI)
16+
# RUN add-apt-repository ppa:beineri/opt-qt54-trusty -y
17+
# RUN apt-get update -y
18+
# RUN apt-get install -y qt54quickcontrols qt54webengine mesa-common-dev libglu1-mesa-dev
19+
# ENV PKG_CONFIG_PATH /opt/qt54/lib/pkgconfig
20+
21+
# Install Golang
22+
RUN wget https://storage.googleapis.com/golang/go1.4.1.linux-amd64.tar.gz
23+
RUN tar -C /usr/local -xzf go*.tar.gz && go version
24+
25+
# this is a workaround, to make sure that docker's cache is invalidated whenever the git repo changes
26+
ADD https://api.github.com/repos/ethereum/go-ethereum/git/refs/heads/develop file_does_not_exist
27+
28+
## Fetch and install go-ethereum
29+
RUN go get -v github.com/tools/godep
3330
RUN go get -v -d github.com/ethereum/go-ethereum/...
3431
WORKDIR $GOPATH/src/github.com/ethereum/go-ethereum
35-
RUN git checkout poc8
36-
RUN ETH_DEPS=$(go list -f '{{.Imports}} {{.TestImports}} {{.XTestImports}}' github.com/ethereum/go-ethereum/... | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/C //g'); if [ "$ETH_DEPS" ]; then go get $ETH_DEPS; fi
32+
RUN git checkout develop
33+
RUN godep restore
3734
RUN go install -v ./cmd/ethereum
3835

39-
# Run JSON RPC
40-
ENTRYPOINT ["ethereum", "-rpc=true", "-rpcport=8080"]
41-
EXPOSE 8080
36+
## Run & expose JSON RPC
37+
ENTRYPOINT ["ethereum", "-rpc=true", "-rpcport=8545"]
38+
EXPOSE 8545
39+
40+

Godeps/Godeps.json

Lines changed: 118 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/Readme

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/.gitignore

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/bitbucket.org/kardianos/osext/LICENSE

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/bitbucket.org/kardianos/osext/osext.go

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/bitbucket.org/kardianos/osext/osext_plan9.go

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)