refactor(deps): Manage deps with goven

This commit is contained in:
Brian Waldon 2014-03-12 19:36:31 -07:00
parent 8830bc8fef
commit 568770be04
93 changed files with 26 additions and 26 deletions

View File

@ -4,7 +4,7 @@ import (
"fmt"
"log"
"launchpad.net/goyaml"
"github.com/coreos/coreos-cloudinit/third_party/launchpad.net/goyaml"
)
const DefaultSSHKeyName = "coreos-cloudinit"

View File

@ -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 {

View File

@ -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

View File

@ -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() {

View File

@ -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:

View File

@ -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 (

View File

@ -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() {

View File

@ -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) {

View File

@ -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() {

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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()

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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"