General repo cleanup
This commit is contained in:
parent
e1c6c01b4d
commit
f23529c5cd
6
.gitignore
vendored
6
.gitignore
vendored
@ -13,6 +13,8 @@
|
|||||||
.ethtest
|
.ethtest
|
||||||
*/**/*tx_database*
|
*/**/*tx_database*
|
||||||
*/**/*dapps*
|
*/**/*dapps*
|
||||||
|
Godeps/_workspace/pkg
|
||||||
|
Godeps/_workspace/bin
|
||||||
|
|
||||||
#*
|
#*
|
||||||
.#*
|
.#*
|
||||||
@ -21,7 +23,9 @@
|
|||||||
.project
|
.project
|
||||||
.settings
|
.settings
|
||||||
|
|
||||||
cmd/ethereum/ethereum
|
geth
|
||||||
|
mist
|
||||||
|
cmd/geth/geth
|
||||||
cmd/mist/mist
|
cmd/mist/mist
|
||||||
deploy/osx/Mist.app
|
deploy/osx/Mist.app
|
||||||
deploy/osx/Mist\ Installer.dmg
|
deploy/osx/Mist\ Installer.dmg
|
||||||
|
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -1,6 +1,3 @@
|
|||||||
[submodule "ethereal/assets/samplecoin"]
|
|
||||||
path = ethereal/assets/samplecoin
|
|
||||||
url = git@github.com:obscuren/SampleCoin.git
|
|
||||||
[submodule "cmd/mist/assets/ext/ethereum.js"]
|
[submodule "cmd/mist/assets/ext/ethereum.js"]
|
||||||
path = cmd/mist/assets/ext/ethereum.js
|
path = cmd/mist/assets/ext/ethereum.js
|
||||||
url = https://github.com/ethereum/ethereum.js
|
url = https://github.com/ethereum/ethereum.js
|
||||||
|
4
.mailmap
4
.mailmap
@ -9,4 +9,6 @@ Joseph Goulden <joegoulden@gmail.com>
|
|||||||
|
|
||||||
Nick Savers <nicksavers@gmail.com>
|
Nick Savers <nicksavers@gmail.com>
|
||||||
|
|
||||||
Maran Hidskes <maran.hidskes@gmail.com>
|
Maran Hidskes <maran.hidskes@gmail.com>
|
||||||
|
|
||||||
|
Taylor Gerring <taylor.gerring@gmail.com> <taylor.gerring@ethereum.org>
|
||||||
|
@ -40,7 +40,7 @@ var (
|
|||||||
extensions = []string{".go", ".js", ".qml"}
|
extensions = []string{".go", ".js", ".qml"}
|
||||||
|
|
||||||
// paths with any of these prefixes will be skipped
|
// paths with any of these prefixes will be skipped
|
||||||
skipPrefixes = []string{"tests/files/", "cmd/mist/assets/ext/", "cmd/mist/assets/muted/"}
|
skipPrefixes = []string{"Godeps/", "tests/files/", "cmd/mist/assets/ext/", "cmd/mist/assets/muted/"}
|
||||||
|
|
||||||
// paths with this prefix are licensed as GPL. all other files are LGPL.
|
// paths with this prefix are licensed as GPL. all other files are LGPL.
|
||||||
gplPrefixes = []string{"cmd/"}
|
gplPrefixes = []string{"cmd/"}
|
||||||
@ -190,7 +190,7 @@ func fileInfo(file string) (*info, error) {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cmd := exec.Command("git", "log", "--follow", "--find-copies", "--pretty=format:%aI | %aN <%aE>", "--", file)
|
cmd := exec.Command("git", "log", "--follow", "--find-copies", "--pretty=format:%ai | %aN <%aE>", "--", file)
|
||||||
err := doLines(cmd, func(line string) {
|
err := doLines(cmd, func(line string) {
|
||||||
sep := strings.IndexByte(line, '|')
|
sep := strings.IndexByte(line, '|')
|
||||||
year, name := line[:4], line[sep+2:]
|
year, name := line[:4], line[sep+2:]
|
||||||
|
Loading…
Reference in New Issue
Block a user