diff --git a/Gopkg.lock b/Gopkg.lock index 94504177..a358ebb7 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -143,6 +143,14 @@ pruneopts = "UT" revision = "de7e78efa4a71b3f36c7154989c529dbdf9ae623" +[[projects]] + digest = "1:57fa4c058c21ce25d0b7272518dd746065117abf6cc706158b0d361202024520" + name = "github.com/godbus/dbus" + packages = ["."] + pruneopts = "UT" + revision = "a389bdde4dd695d414e47b755e95e72b7826432c" + version = "v4.1.0" + [[projects]] digest = "1:15042ad3498153684d09f393bbaec6b216c8eec6d61f63dff711de7d64ed8861" name = "github.com/golang/protobuf" @@ -239,6 +247,14 @@ pruneopts = "UT" revision = "21f50f5bc400083b4eb23304887d9cd0fc00d075" +[[projects]] + branch = "master" + digest = "1:de0cf35afb9cad7b20ff8871ae3b64cecc7116bffb583bc7b3c1bb5c37473149" + name = "github.com/sticreations/spotigopher" + packages = ["spotigopher"] + pruneopts = "UT" + revision = "995ee350dc1c54259597de65dde7a9e56a4b73af" + [[projects]] digest = "1:18752d0b95816a1b777505a97f71c7467a8445b8ffb55631a7bf779f6ba4fa83" name = "github.com/stretchr/testify" @@ -370,6 +386,7 @@ "github.com/pkg/profile", "github.com/radovskyb/watcher", "github.com/rivo/tview", + "github.com/sticreations/spotigopher/spotigopher", "github.com/stretchr/testify/assert", "github.com/xanzy/go-gitlab", "github.com/yfronto/newrelic", diff --git a/vendor/github.com/godbus/dbus/.travis.yml b/vendor/github.com/godbus/dbus/.travis.yml new file mode 100644 index 00000000..2e1bbb78 --- /dev/null +++ b/vendor/github.com/godbus/dbus/.travis.yml @@ -0,0 +1,40 @@ +dist: precise +language: go +go_import_path: github.com/godbus/dbus +sudo: true + +go: + - 1.6.3 + - 1.7.3 + - tip + +env: + global: + matrix: + - TARGET=amd64 + - TARGET=arm64 + - TARGET=arm + - TARGET=386 + - TARGET=ppc64le + +matrix: + fast_finish: true + allow_failures: + - go: tip + exclude: + - go: tip + env: TARGET=arm + - go: tip + env: TARGET=arm64 + - go: tip + env: TARGET=386 + - go: tip + env: TARGET=ppc64le + +addons: + apt: + packages: + - dbus + - dbus-x11 + +before_install: diff --git a/vendor/github.com/godbus/dbus/CONTRIBUTING.md b/vendor/github.com/godbus/dbus/CONTRIBUTING.md new file mode 100644 index 00000000..c88f9b2b --- /dev/null +++ b/vendor/github.com/godbus/dbus/CONTRIBUTING.md @@ -0,0 +1,50 @@ +# How to Contribute + +## Getting Started + +- Fork the repository on GitHub +- Read the [README](README.markdown) for build and test instructions +- Play with the project, submit bugs, submit patches! + +## Contribution Flow + +This is a rough outline of what a contributor's workflow looks like: + +- Create a topic branch from where you want to base your work (usually master). +- Make commits of logical units. +- Make sure your commit messages are in the proper format (see below). +- Push your changes to a topic branch in your fork of the repository. +- Make sure the tests pass, and add any new tests as appropriate. +- Submit a pull request to the original repository. + +Thanks for your contributions! + +### Format of the Commit Message + +We follow a rough convention for commit messages that is designed to answer two +questions: what changed and why. The subject line should feature the what and +the body of the commit should describe the why. + +``` +scripts: add the test-cluster command + +this uses tmux to setup a test cluster that you can easily kill and +start for debugging. + +Fixes #38 +``` + +The format can be described more formally as follows: + +``` +: + + + +