Merge pull request #11 from bcwaldon/govenify
refactor(deps): Manage deps with goven
This commit is contained in:
commit
9bcd56222f
cloudinit
third_party
github.com
coreos/go-systemd
.travis.ymlLICENSEREADME.md
activation
dbus
dbus.godbus_test.gomethods.gomethods_test.goproperties.goset.goset_test.gosubscription.gosubscription_set.gosubscription_set_test.gosubscription_test.go
examples/activation
fixtures
journal
testguelfey/go.dbus
LICENSEREADME.markdown
_examples
auth.goauth_external.goauth_sha1.gocall.goconn.goconn_darwin.goconn_other.goconn_test.godbus.godecoder.godoc.goencoder.goexamples_test.goexport.gointrospect
message.goprop
proto_test.gosig.gosig_test.gotransport_darwin.gotransport_generic.gotransport_unix.gotransport_unix_test.gotransport_unixcred.govariant.govariant_lexer.govariant_parser.govariant_test.golaunchpad.net/goyaml
@ -4,7 +4,7 @@ import (
|
||||
"fmt"
|
||||
"log"
|
||||
|
||||
"launchpad.net/goyaml"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/launchpad.net/goyaml"
|
||||
)
|
||||
|
||||
const DefaultSSHKeyName = "coreos-cloudinit"
|
||||
|
@ -9,7 +9,7 @@ import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/coreos/go-systemd/dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/coreos/go-systemd/dbus"
|
||||
)
|
||||
|
||||
type Unit struct {
|
||||
|
0
src/github.com/coreos/go-systemd/.travis.yml → third_party/github.com/coreos/go-systemd/.travis.yml
vendored
0
src/github.com/coreos/go-systemd/.travis.yml → third_party/github.com/coreos/go-systemd/.travis.yml
vendored
0
src/github.com/coreos/go-systemd/LICENSE → third_party/github.com/coreos/go-systemd/LICENSE
vendored
0
src/github.com/coreos/go-systemd/LICENSE → third_party/github.com/coreos/go-systemd/LICENSE
vendored
0
src/github.com/coreos/go-systemd/README.md → third_party/github.com/coreos/go-systemd/README.md
vendored
0
src/github.com/coreos/go-systemd/README.md → third_party/github.com/coreos/go-systemd/README.md
vendored
@ -21,7 +21,7 @@ import (
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
)
|
||||
|
||||
const signalBuffer = 100
|
@ -18,7 +18,7 @@ package dbus
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
)
|
||||
|
||||
func (c *Conn) initJobs() {
|
@ -17,7 +17,7 @@ limitations under the License.
|
||||
package dbus
|
||||
|
||||
import (
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
)
|
||||
|
||||
// From the systemd docs:
|
0
src/github.com/coreos/go-systemd/dbus/set.go → third_party/github.com/coreos/go-systemd/dbus/set.go
vendored
0
src/github.com/coreos/go-systemd/dbus/set.go → third_party/github.com/coreos/go-systemd/dbus/set.go
vendored
@ -20,7 +20,7 @@ import (
|
||||
"errors"
|
||||
"time"
|
||||
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
)
|
||||
|
||||
const (
|
@ -5,7 +5,7 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/coreos/go-systemd/activation"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/coreos/go-systemd/activation"
|
||||
)
|
||||
|
||||
func fixListenPid() {
|
@ -4,7 +4,7 @@ import (
|
||||
"io"
|
||||
"net/http"
|
||||
|
||||
"github.com/coreos/go-systemd/activation"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/coreos/go-systemd/activation"
|
||||
)
|
||||
|
||||
func HelloServer(w http.ResponseWriter, req *http.Request) {
|
@ -5,7 +5,7 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/coreos/go-systemd/activation"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/coreos/go-systemd/activation"
|
||||
)
|
||||
|
||||
func fixListenPid() {
|
@ -2,7 +2,7 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
"os"
|
||||
)
|
||||
|
@ -2,8 +2,8 @@ package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/guelfey/go.dbus/introspect"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus/introspect"
|
||||
"os"
|
||||
)
|
||||
|
@ -2,7 +2,7 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
"os"
|
||||
)
|
||||
|
@ -1,6 +1,6 @@
|
||||
package main
|
||||
|
||||
import "github.com/guelfey/go.dbus"
|
||||
import "github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
|
||||
func main() {
|
||||
conn, err := dbus.SessionBus()
|
@ -2,9 +2,9 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/guelfey/go.dbus/introspect"
|
||||
"github.com/guelfey/go.dbus/prop"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus/introspect"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus/prop"
|
||||
"os"
|
||||
)
|
||||
|
@ -2,8 +2,8 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/guelfey/go.dbus/introspect"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus/introspect"
|
||||
"os"
|
||||
)
|
||||
|
@ -2,7 +2,7 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
"os"
|
||||
)
|
||||
|
0
src/github.com/guelfey/go.dbus/auth_sha1.go → third_party/github.com/guelfey/go.dbus/auth_sha1.go
vendored
0
src/github.com/guelfey/go.dbus/auth_sha1.go → third_party/github.com/guelfey/go.dbus/auth_sha1.go
vendored
0
src/github.com/guelfey/go.dbus/conn_other.go → third_party/github.com/guelfey/go.dbus/conn_other.go
vendored
0
src/github.com/guelfey/go.dbus/conn_other.go → third_party/github.com/guelfey/go.dbus/conn_other.go
vendored
0
src/github.com/guelfey/go.dbus/conn_test.go → third_party/github.com/guelfey/go.dbus/conn_test.go
vendored
0
src/github.com/guelfey/go.dbus/conn_test.go → third_party/github.com/guelfey/go.dbus/conn_test.go
vendored
0
src/github.com/guelfey/go.dbus/decoder.go → third_party/github.com/guelfey/go.dbus/decoder.go
vendored
0
src/github.com/guelfey/go.dbus/decoder.go → third_party/github.com/guelfey/go.dbus/decoder.go
vendored
0
src/github.com/guelfey/go.dbus/encoder.go → third_party/github.com/guelfey/go.dbus/encoder.go
vendored
0
src/github.com/guelfey/go.dbus/encoder.go → third_party/github.com/guelfey/go.dbus/encoder.go
vendored
0
src/github.com/guelfey/go.dbus/export.go → third_party/github.com/guelfey/go.dbus/export.go
vendored
0
src/github.com/guelfey/go.dbus/export.go → third_party/github.com/guelfey/go.dbus/export.go
vendored
@ -2,7 +2,7 @@ package introspect
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
"strings"
|
||||
)
|
||||
|
@ -2,7 +2,7 @@ package introspect
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
"reflect"
|
||||
)
|
||||
|
0
src/github.com/guelfey/go.dbus/message.go → third_party/github.com/guelfey/go.dbus/message.go
vendored
0
src/github.com/guelfey/go.dbus/message.go → third_party/github.com/guelfey/go.dbus/message.go
vendored
4
src/github.com/guelfey/go.dbus/prop/prop.go → third_party/github.com/guelfey/go.dbus/prop/prop.go
vendored
4
src/github.com/guelfey/go.dbus/prop/prop.go → third_party/github.com/guelfey/go.dbus/prop/prop.go
vendored
@ -3,8 +3,8 @@
|
||||
package prop
|
||||
|
||||
import (
|
||||
"github.com/guelfey/go.dbus"
|
||||
"github.com/guelfey/go.dbus/introspect"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/github.com/guelfey/go.dbus/introspect"
|
||||
"sync"
|
||||
)
|
||||
|
0
src/github.com/guelfey/go.dbus/proto_test.go → third_party/github.com/guelfey/go.dbus/proto_test.go
vendored
0
src/github.com/guelfey/go.dbus/proto_test.go → third_party/github.com/guelfey/go.dbus/proto_test.go
vendored
0
src/github.com/guelfey/go.dbus/sig_test.go → third_party/github.com/guelfey/go.dbus/sig_test.go
vendored
0
src/github.com/guelfey/go.dbus/sig_test.go → third_party/github.com/guelfey/go.dbus/sig_test.go
vendored
0
src/github.com/guelfey/go.dbus/variant.go → third_party/github.com/guelfey/go.dbus/variant.go
vendored
0
src/github.com/guelfey/go.dbus/variant.go → third_party/github.com/guelfey/go.dbus/variant.go
vendored
0
src/launchpad.net/goyaml/LICENSE.libyaml → third_party/launchpad.net/goyaml/LICENSE.libyaml
vendored
0
src/launchpad.net/goyaml/LICENSE.libyaml → third_party/launchpad.net/goyaml/LICENSE.libyaml
vendored
2
src/launchpad.net/goyaml/decode_test.go → third_party/launchpad.net/goyaml/decode_test.go
vendored
2
src/launchpad.net/goyaml/decode_test.go → third_party/launchpad.net/goyaml/decode_test.go
vendored
@ -2,7 +2,7 @@ package goyaml_test
|
||||
|
||||
import (
|
||||
. "launchpad.net/gocheck"
|
||||
"launchpad.net/goyaml"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/launchpad.net/goyaml"
|
||||
"math"
|
||||
"reflect"
|
||||
)
|
2
src/launchpad.net/goyaml/encode_test.go → third_party/launchpad.net/goyaml/encode_test.go
vendored
2
src/launchpad.net/goyaml/encode_test.go → third_party/launchpad.net/goyaml/encode_test.go
vendored
@ -3,7 +3,7 @@ package goyaml_test
|
||||
import (
|
||||
"fmt"
|
||||
. "launchpad.net/gocheck"
|
||||
"launchpad.net/goyaml"
|
||||
"github.com/coreos/coreos-cloudinit/third_party/launchpad.net/goyaml"
|
||||
"math"
|
||||
"strconv"
|
||||
"strings"
|
Loading…
x
Reference in New Issue
Block a user