Skip to content

Commit 3d3786e

Browse files
committed
refactor: temporary replacement module
replacing paths to own repo till amenzhinsky#12 is merged. Using replace directive in mod file is tedious because this will be indirect import and will vanish with every tidyness on mod. If and when amenzhinsky#12 is merged, this branch will be removed and original repo will be imported again. This branch helps exporting service to dbus for introspection
1 parent 14f906a commit 3d3786e

File tree

9 files changed

+12
-11
lines changed

9 files changed

+12
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bin

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,13 @@ if err := Emit(conn, &My_Awesome_Interface_SomethingHappenedSignal{
128128
You can install it with `go get`:
129129

130130
```bash
131-
GO111MODULE=on go get -u github.com/amenzhinsky/dbus-codegen-go
131+
GO111MODULE=on go get -u github.com/GaikwadPratik/dbus-codegen-go
132132
```
133133

134134
Or clone the repo and build it manually:
135135

136136
```bash
137-
git clone https://github.com/amenzhinsky/dbus-codegen-go.git .
137+
git clone https://github.com/GaikwadPratik/dbus-codegen-go.git .
138138
go install
139139
```
140140

_examples/client_server/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ Message over dBus : Hello, this is example codebase for dbus-codegen-go
2323
```
2424
#### Note
2525
Make sure dbus-codegen-go is installed. To install, run
26-
`GO111MODULE=on go get -u github.com/amenzhinsky/dbus-codegen-go`
26+
`GO111MODULE=on go get -u github.com/GaikwadPratik/dbus-codegen-go`
2727

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/amenzhinsky/dbus-codegen-go
1+
module github.com/GaikwadPratik/dbus-codegen-go
22

33
require github.com/godbus/dbus/v5 v5.1.0
44

main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"os"
1111
"strings"
1212

13-
"github.com/amenzhinsky/dbus-codegen-go/parser"
14-
"github.com/amenzhinsky/dbus-codegen-go/printer"
15-
"github.com/amenzhinsky/dbus-codegen-go/token"
13+
"github.com/GaikwadPratik/dbus-codegen-go/parser"
14+
"github.com/GaikwadPratik/dbus-codegen-go/printer"
15+
"github.com/GaikwadPratik/dbus-codegen-go/token"
1616
"github.com/godbus/dbus/v5"
1717
"github.com/godbus/dbus/v5/introspect"
1818
)

parser/parser.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strings"
77

8-
"github.com/amenzhinsky/dbus-codegen-go/token"
8+
"github.com/GaikwadPratik/dbus-codegen-go/token"
99
"github.com/godbus/dbus/v5/introspect"
1010
)
1111

printer/context.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"text/template"
1212

13-
"github.com/amenzhinsky/dbus-codegen-go/token"
13+
"github.com/GaikwadPratik/dbus-codegen-go/token"
1414
"github.com/godbus/dbus/v5/introspect"
1515
)
1616

printer/printer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"regexp"
1010
"text/template"
1111

12-
"github.com/amenzhinsky/dbus-codegen-go/token"
12+
"github.com/GaikwadPratik/dbus-codegen-go/token"
1313
)
1414

1515
// PrintOption is a Print+ configuration option.

printer/printer_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"testing"
66

7-
"github.com/amenzhinsky/dbus-codegen-go/token"
7+
"github.com/GaikwadPratik/dbus-codegen-go/token"
88
)
99

1010
func TestPrintClient(t *testing.T) {

0 commit comments

Comments
 (0)