Skip to content

Commit

Permalink
Migrate package names to github.com/murex/...
Browse files Browse the repository at this point in the history
  • Loading branch information
mengdaming committed Oct 18, 2021
1 parent b704109 commit 3859e68
Show file tree
Hide file tree
Showing 39 changed files with 89 additions and 89 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Go](https://github.com/mengdaming/tcr/actions/workflows/go.yml/badge.svg)](https://github.com/mengdaming/tcr/actions/workflows/go.yml)
[![Go Lint](https://github.com/mengdaming/tcr/actions/workflows/golangci_lint.yml/badge.svg)](https://github.com/mengdaming/tcr/actions/workflows/golangci_lint.yml)
[![goreleaser](https://github.com/mengdaming/tcr/actions/workflows/goreleaser.yml/badge.svg)](https://github.com/mengdaming/tcr/actions/workflows/goreleaser.yml)
[![Add contributors](https://github.com/mengdaming/tcr/actions/workflows/add_contributors.yml/badge.svg)](https://github.com/mengdaming/tcr/actions/workflows/add_contributors.yml)
[![Go](https://github.com/murex/tcr/actions/workflows/go.yml/badge.svg)](https://github.com/murex/tcr/actions/workflows/go.yml)
[![Go Lint](https://github.com/murex/tcr/actions/workflows/golangci_lint.yml/badge.svg)](https://github.com/murex/tcr/actions/workflows/golangci_lint.yml)
[![goreleaser](https://github.com/murex/tcr/actions/workflows/goreleaser.yml/badge.svg)](https://github.com/murex/tcr/actions/workflows/goreleaser.yml)
[![Add contributors](https://github.com/murex/tcr/actions/workflows/add_contributors.yml/badge.svg)](https://github.com/murex/tcr/actions/workflows/add_contributors.yml)

# TCR (Test && Commit || Revert) utility

Expand Down
2 changes: 1 addition & 1 deletion doc/tcr-gui.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ tcr-gui [flags]
-t, --toolchain string Indicate the toolchain to be used by TCR
```

###### Auto generated by spf13/cobra on 1-Oct-2021
###### Auto generated by spf13/cobra on 18-Oct-2021
2 changes: 1 addition & 1 deletion doc/tcr.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ tcr [flags]
* [tcr mob](tcr_mob.md) - Run TCR in mob mode
* [tcr solo](tcr_solo.md) - Run TCR in solo mode

###### Auto generated by spf13/cobra on 1-Oct-2021
###### Auto generated by spf13/cobra on 18-Oct-2021
2 changes: 1 addition & 1 deletion doc/tcr_mob.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ tcr mob [flags]

* [tcr](tcr.md) - TCR (Test && Commit || Revert)

###### Auto generated by spf13/cobra on 1-Oct-2021
###### Auto generated by spf13/cobra on 18-Oct-2021
2 changes: 1 addition & 1 deletion doc/tcr_solo.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ tcr solo [flags]

* [tcr](tcr.md) - TCR (Test && Commit || Revert)

###### Auto generated by spf13/cobra on 1-Oct-2021
###### Auto generated by spf13/cobra on 18-Oct-2021
12 changes: 6 additions & 6 deletions tcr-cli/cli/terminal.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package cli

import (
"github.com/mengdaming/tcr-engine/engine"
"github.com/mengdaming/tcr-engine/report"
"github.com/mengdaming/tcr-engine/role"
"github.com/mengdaming/tcr-engine/runmode"
"github.com/mengdaming/tcr-engine/stty"
"github.com/mengdaming/tcr-engine/ui"
"github.com/murex/tcr-engine/engine"
"github.com/murex/tcr-engine/report"
"github.com/murex/tcr-engine/role"
"github.com/murex/tcr-engine/runmode"
"github.com/murex/tcr-engine/stty"
"github.com/murex/tcr-engine/ui"
"os"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion tcr-cli/cli/terminal_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cli

import (
"github.com/mengdaming/tcr-engine/engine"
"github.com/murex/tcr-engine/engine"
"github.com/stretchr/testify/assert"
"os"
"testing"
Expand Down
6 changes: 3 additions & 3 deletions tcr-cli/cmd/mob.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmd

import (
"github.com/mengdaming/tcr-cli/cli"
"github.com/mengdaming/tcr-engine/runmode"
"github.com/mengdaming/tcr-engine/settings"
"github.com/murex/tcr-cli/cli"
"github.com/murex/tcr-engine/runmode"
"github.com/murex/tcr-engine/settings"
"github.com/spf13/cobra"
)

Expand Down
8 changes: 4 additions & 4 deletions tcr-cli/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package cmd

import (
"fmt"
"github.com/mengdaming/tcr-cli/cli"
"github.com/mengdaming/tcr-engine/engine"
"github.com/mengdaming/tcr-engine/runmode"
"github.com/mengdaming/tcr-engine/settings"
"github.com/murex/tcr-cli/cli"
"github.com/murex/tcr-engine/engine"
"github.com/murex/tcr-engine/runmode"
"github.com/murex/tcr-engine/settings"
"github.com/mitchellh/go-homedir"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down
6 changes: 3 additions & 3 deletions tcr-cli/cmd/solo.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmd

import (
"github.com/mengdaming/tcr-cli/cli"
"github.com/mengdaming/tcr-engine/runmode"
"github.com/mengdaming/tcr-engine/settings"
"github.com/murex/tcr-cli/cli"
"github.com/murex/tcr-engine/runmode"
"github.com/murex/tcr-engine/settings"

"github.com/spf13/cobra"
)
Expand Down
6 changes: 3 additions & 3 deletions tcr-cli/go.mod
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
module github.com/mengdaming/tcr-cli
module github.com/murex/tcr-cli

go 1.17

replace github.com/mengdaming/tcr-engine => ../tcr-engine
replace github.com/murex/tcr-engine => ../tcr-engine

require (
github.com/codeskyblue/go-sh v0.0.0-20200712050446-30169cf553fe
github.com/kami-zh/go-capturer v0.0.0-20171211120116-e492ea43421d
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/mengdaming/tcr-engine v0.0.0-00010101000000-000000000000
github.com/mitchellh/go-homedir v1.1.0
github.com/murex/tcr-engine v0.0.0-00010101000000-000000000000
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.8.1
github.com/stretchr/testify v1.7.0
Expand Down
2 changes: 1 addition & 1 deletion tcr-cli/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/mengdaming/tcr-cli/cmd"
"github.com/murex/tcr-cli/cmd"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions tcr-doc/gen_doc.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
cli "github.com/mengdaming/tcr-cli/cmd"
gui "github.com/mengdaming/tcr-gui/cmd"
cli "github.com/murex/tcr-cli/cmd"
gui "github.com/murex/tcr-gui/cmd"

"github.com/spf13/cobra"
"github.com/spf13/cobra/doc"
Expand Down
14 changes: 7 additions & 7 deletions tcr-doc/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/mengdaming/tcr-doc
module github.com/murex/tcr-doc

go 1.17

require (
github.com/mengdaming/tcr-cli v0.0.0-00010101000000-000000000000
github.com/mengdaming/tcr-gui v0.0.0-00010101000000-000000000000
github.com/murex/tcr-cli v0.0.0-00010101000000-000000000000
github.com/murex/tcr-gui v0.0.0-00010101000000-000000000000
github.com/spf13/cobra v1.2.1
)

Expand Down Expand Up @@ -35,9 +35,9 @@ require (
github.com/kevinburke/ssh_config v1.1.0 // indirect
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mengdaming/tcr-engine v0.0.0-20210704172954-4213deac264f // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/murex/tcr-engine v0.0.0-20210704172954-4213deac264f // indirect
github.com/pelletier/go-toml v1.9.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
Expand Down Expand Up @@ -66,8 +66,8 @@ require (
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

replace github.com/mengdaming/tcr-cli => ../tcr-cli
replace github.com/murex/tcr-cli => ../tcr-cli

replace github.com/mengdaming/tcr-gui => ../tcr-gui
replace github.com/murex/tcr-gui => ../tcr-gui

replace github.com/mengdaming/tcr-engine => ../tcr-engine
replace github.com/murex/tcr-engine => ../tcr-engine
2 changes: 1 addition & 1 deletion tcr-engine/engine/params.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package engine

import (
"github.com/mengdaming/tcr-engine/runmode"
"github.com/murex/tcr-engine/runmode"
"time"
)

Expand Down
20 changes: 10 additions & 10 deletions tcr-engine/engine/tcr.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package engine

import (
"github.com/mengdaming/tcr-engine/filesystem"
"github.com/mengdaming/tcr-engine/language"
"github.com/mengdaming/tcr-engine/report"
"github.com/mengdaming/tcr-engine/role"
"github.com/mengdaming/tcr-engine/runmode"
"github.com/mengdaming/tcr-engine/settings"
"github.com/mengdaming/tcr-engine/timer"
"github.com/mengdaming/tcr-engine/toolchain"
"github.com/mengdaming/tcr-engine/ui"
"github.com/mengdaming/tcr-engine/vcs"
"github.com/murex/tcr-engine/filesystem"
"github.com/murex/tcr-engine/language"
"github.com/murex/tcr-engine/report"
"github.com/murex/tcr-engine/role"
"github.com/murex/tcr-engine/runmode"
"github.com/murex/tcr-engine/settings"
"github.com/murex/tcr-engine/timer"
"github.com/murex/tcr-engine/toolchain"
"github.com/murex/tcr-engine/ui"
"github.com/murex/tcr-engine/vcs"
"gopkg.in/tomb.v2"
"os"
"path/filepath"
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/filesystem/sourcetree_impl.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package filesystem

import (
"github.com/fsnotify/fsnotify"
"github.com/mengdaming/tcr-engine/report"
"github.com/murex/tcr-engine/report"
"os"
"path/filepath"
)
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/mengdaming/tcr-engine
module github.com/murex/tcr-engine

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/stty/stty.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package stty

import (
"bytes"
"github.com/mengdaming/tcr-engine/report"
"github.com/murex/tcr-engine/report"
"os"
"os/exec"
)
Expand Down
4 changes: 2 additions & 2 deletions tcr-engine/timer/inactivity_teaser.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package timer

import (
"github.com/mengdaming/tcr-engine/report"
"github.com/mengdaming/tcr-engine/settings"
"github.com/murex/tcr-engine/report"
"github.com/murex/tcr-engine/settings"
"sync"
"time"
)
Expand Down
4 changes: 2 additions & 2 deletions tcr-engine/timer/mob_turn_countdown.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package timer

import (
"github.com/mengdaming/tcr-engine/report"
"github.com/mengdaming/tcr-engine/runmode"
"github.com/murex/tcr-engine/report"
"github.com/murex/tcr-engine/runmode"
"strings"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/toolchain/cmake.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package toolchain

import (
"github.com/mengdaming/tcr-engine/language"
"github.com/murex/tcr-engine/language"
)

// CmakeToolchain is the toolchain implementation for CMake
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/toolchain/cmake_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package toolchain

import (
"github.com/mengdaming/tcr-engine/language"
"github.com/murex/tcr-engine/language"
"github.com/stretchr/testify/assert"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/toolchain/gradle.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package toolchain

import (
"github.com/mengdaming/tcr-engine/language"
"github.com/murex/tcr-engine/language"
)

// GradleToolchain is the toolchain implementation for Maven
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/toolchain/gradle_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package toolchain

import (
"github.com/mengdaming/tcr-engine/language"
"github.com/murex/tcr-engine/language"
"github.com/stretchr/testify/assert"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/toolchain/maven.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package toolchain

import (
"github.com/mengdaming/tcr-engine/language"
"github.com/murex/tcr-engine/language"
)

// MavenToolchain is the toolchain implementation for Maven
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/toolchain/maven_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package toolchain

import (
"github.com/mengdaming/tcr-engine/language"
"github.com/murex/tcr-engine/language"
"github.com/stretchr/testify/assert"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions tcr-engine/toolchain/toolchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"fmt"
"github.com/codeskyblue/go-sh"
"github.com/mengdaming/tcr-engine/language"
"github.com/mengdaming/tcr-engine/report"
"github.com/murex/tcr-engine/language"
"github.com/murex/tcr-engine/report"
"os"
"path/filepath"
)
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/toolchain/toolchain_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package toolchain

import (
"github.com/mengdaming/tcr-engine/language"
"github.com/murex/tcr-engine/language"
"github.com/stretchr/testify/assert"
"os"
"path/filepath"
Expand Down
4 changes: 2 additions & 2 deletions tcr-engine/ui/user_interface.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package ui

import (
"github.com/mengdaming/tcr-engine/role"
"github.com/mengdaming/tcr-engine/runmode"
"github.com/murex/tcr-engine/role"
"github.com/murex/tcr-engine/runmode"
)

// UserInterface provides the interface to be satisfied by a UI implementation to be able to interact
Expand Down
2 changes: 1 addition & 1 deletion tcr-engine/vcs/git_impl.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/storer"
"github.com/go-git/go-git/v5/storage/filesystem"
"github.com/mengdaming/tcr-engine/report"
"github.com/murex/tcr-engine/report"
"path/filepath"
"strings"
)
Expand Down
8 changes: 4 additions & 4 deletions tcr-gui/cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package cmd

import (
"github.com/mengdaming/tcr-engine/engine"
"github.com/mengdaming/tcr-engine/runmode"
"github.com/mengdaming/tcr-engine/settings"
"github.com/mengdaming/tcr-gui/gui"
"github.com/murex/tcr-engine/engine"
"github.com/murex/tcr-engine/runmode"
"github.com/murex/tcr-engine/settings"
"github.com/murex/tcr-gui/gui"
"github.com/mitchellh/go-homedir"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down
10 changes: 5 additions & 5 deletions tcr-gui/go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module github.com/mengdaming/tcr-gui
module github.com/murex/tcr-gui

go 1.17

replace github.com/mengdaming/tcr-engine => ../tcr-engine
replace github.com/murex/tcr-engine => ../tcr-engine

replace github.com/mengdaming/tcr-cli => ../tcr-cli
replace github.com/murex/tcr-cli => ../tcr-cli

require (
fyne.io/fyne/v2 v2.1.0
github.com/mengdaming/tcr-cli v0.0.0-00010101000000-000000000000
github.com/mengdaming/tcr-engine v0.0.0-00010101000000-000000000000
github.com/mitchellh/go-homedir v1.1.0
github.com/murex/tcr-cli v0.0.0-00010101000000-000000000000
github.com/murex/tcr-engine v0.0.0-00010101000000-000000000000
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.8.1
)
Expand Down
Loading

0 comments on commit 3859e68

Please sign in to comment.