From f23529c5cde47f713ada745629a7bdc8e1506fa7 Mon Sep 17 00:00:00 2001 From: Taylor Gerring Date: Mon, 30 Mar 2015 09:18:22 +0200 Subject: [PATCH] General repo cleanup --- .gitignore | 6 +++++- .gitmodules | 3 --- .mailmap | 4 +++- update-license.go | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 706d953bff..e5a5d2fbe8 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,8 @@ .ethtest */**/*tx_database* */**/*dapps* +Godeps/_workspace/pkg +Godeps/_workspace/bin #* .#* @@ -21,7 +23,9 @@ .project .settings -cmd/ethereum/ethereum +geth +mist +cmd/geth/geth cmd/mist/mist deploy/osx/Mist.app deploy/osx/Mist\ Installer.dmg diff --git a/.gitmodules b/.gitmodules index 461a5a7489..3284c329d5 100644 --- a/.gitmodules +++ b/.gitmodules @@ -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"] path = cmd/mist/assets/ext/ethereum.js url = https://github.com/ethereum/ethereum.js diff --git a/.mailmap b/.mailmap index cc9834bb9f..a3a3020acf 100644 --- a/.mailmap +++ b/.mailmap @@ -9,4 +9,6 @@ Joseph Goulden Nick Savers -Maran Hidskes \ No newline at end of file +Maran Hidskes + +Taylor Gerring diff --git a/update-license.go b/update-license.go index 832a94712f..e55732a53f 100644 --- a/update-license.go +++ b/update-license.go @@ -40,7 +40,7 @@ var ( extensions = []string{".go", ".js", ".qml"} // 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. gplPrefixes = []string{"cmd/"} @@ -190,7 +190,7 @@ func fileInfo(file string) (*info, error) { 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) { sep := strings.IndexByte(line, '|') year, name := line[:4], line[sep+2:]