Official Go implementation of the Ethereum protocol
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Péter Szilágyi
289b30715d
Godeps, vendor: convert dependency management to trash ( #3198 )
...
This commit converts the dependency management from Godeps to the vendor
folder, also switching the tool from godep to trash. Since the upstream tool
lacks a few features proposed via a few PRs, until those PRs are merged in
(if), use github.com/karalabe/trash.
You can update dependencies via trash --update.
All dependencies have been updated to their latest version.
Parts of the build system are reworked to drop old notions of Godeps and
invocation of the go vet command so that it doesn't run against the vendor
folder, as that will just blow up during vetting.
The conversion drops OpenCL (and hence GPU mining support) from ethash and our
codebase. The short reasoning is that there's noone to maintain and having
opencl libs in our deps messes up builds as go install ./... tries to build
them, failing with unsatisfied link errors for the C OpenCL deps.
golang.org/x/net/context is not vendored in. We expect it to be fetched by the
user (i.e. using go get). To keep ci.go builds reproducible the package is
"vendored" in build/_vendor.
8 years ago
..
.gitignore
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
.travis.yml
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
AUTHORS
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
LICENSE
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
README.md
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
appveyor.yml
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
debug.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
debug_debug.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
doc.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
event.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
event_fen.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
event_fsevents.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
event_inotify.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
event_kqueue.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
event_readdcw.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
event_stub.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
event_trigger.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
node.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
notify.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
tree.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
tree_nonrecursive.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
tree_recursive.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
util.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher_fen.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher_fen_cgo.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher_fsevents.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher_fsevents_cgo.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher_inotify.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher_kqueue.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher_readdcw.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher_stub.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watcher_trigger.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watchpoint.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watchpoint_other.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
watchpoint_readdcw.go
Godeps, vendor: convert dependency management to trash ( #3198 )
8 years ago
notify
Filesystem event notification library on steroids. (under active development)
Documentation
godoc.org/github.com/rjeczalik/notify
Installation
~ $ go get -u github.com/rjeczalik/notify
Projects using notify