Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #4 from opendoor-labs/ss-v5-update
Browse files Browse the repository at this point in the history
change deps to reference godbus
  • Loading branch information
stephen-standridge authored Mar 20, 2020
2 parents c2509a6 + 191c89f commit 5584033
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dist: bionic
language: go
go_import_path: github.com/opendoor-labs/dbus
go_import_path: github.com/godbus/dbus

go:
- 1.11.x
Expand Down
2 changes: 1 addition & 1 deletion _examples/bluetooth_introspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/opendoor-labs/dbus/v5"
"github.com/godbus/dbus/v5"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion _examples/eavesdrop.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/opendoor-labs/dbus/v5"
"github.com/godbus/dbus/v5"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions _examples/introspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/json"
"os"

"github.com/opendoor-labs/dbus/v5"
"github.com/opendoor-labs/dbus/v5/introspect"
"github.com/godbus/dbus/v5"
"github.com/godbus/dbus/v5/introspect"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion _examples/list-names.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/opendoor-labs/dbus/v5"
"github.com/godbus/dbus/v5"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion _examples/notification.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/opendoor-labs/dbus/v5"
import "github.com/godbus/dbus/v5"

func main() {
conn, err := dbus.SessionBus()
Expand Down
6 changes: 3 additions & 3 deletions _examples/prop.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
"os"

"github.com/opendoor-labs/dbus/v5"
"github.com/opendoor-labs/dbus/v5/introspect"
"github.com/opendoor-labs/dbus/v5/prop"
"github.com/godbus/dbus/v5"
"github.com/godbus/dbus/v5/introspect"
"github.com/godbus/dbus/v5/prop"
)

type foo string
Expand Down
4 changes: 2 additions & 2 deletions _examples/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"os"

"github.com/opendoor-labs/dbus/v5"
"github.com/opendoor-labs/dbus/v5/introspect"
"github.com/godbus/dbus/v5"
"github.com/godbus/dbus/v5/introspect"
)

const intro = `
Expand Down
2 changes: 1 addition & 1 deletion _examples/signal.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/opendoor-labs/dbus/v5"
"github.com/godbus/dbus/v5"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion _examples/tcp_conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net"
"os"

"github.com/opendoor-labs/dbus/v5"
"github.com/godbus/dbus/v5"
)

// In order to enable TCP connections add the following configuration
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/opendoor-labs/dbus/v5
module github.com/godbus/dbus/v5

go 1.12
2 changes: 1 addition & 1 deletion introspect/call.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/xml"
"strings"

"github.com/opendoor-labs/dbus/v5"
"github.com/godbus/dbus/v5"
)

// Call calls org.freedesktop.Introspectable.Introspect on a remote object
Expand Down
2 changes: 1 addition & 1 deletion introspect/introspectable.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"reflect"
"strings"

"github.com/opendoor-labs/dbus/v5"
"github.com/godbus/dbus/v5"
)

// Introspectable implements org.freedesktop.Introspectable.
Expand Down
4 changes: 2 additions & 2 deletions prop/prop.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package prop
import (
"sync"

"github.com/opendoor-labs/dbus/v5"
"github.com/opendoor-labs/dbus/v5/introspect"
"github.com/godbus/dbus/v5"
"github.com/godbus/dbus/v5/introspect"
)

// EmitType controls how org.freedesktop.DBus.Properties.PropertiesChanged is
Expand Down

0 comments on commit 5584033

Please # to comment.