Skip to content

Commit

Permalink
Rename GitHub username
Browse files Browse the repository at this point in the history
  • Loading branch information
mrclmr committed Feb 3, 2025
1 parent c79c80e commit deb9054
Show file tree
Hide file tree
Showing 23 changed files with 43 additions and 43 deletions.
8 changes: 4 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ archives:
brews:
-
repository:
owner: meyermarcel
owner: mrclmr
name: homebrew-tap
directory: Formula
description: "Generate or validate intermodal container markings."
homepage: "https://github.com/meyermarcel/icm"
homepage: "https://github.com/mrclmr/icm"
install: |
bin.install "icm"
Expand All @@ -79,8 +79,8 @@ brews:
scoops:
-
repository:
owner: meyermarcel
owner: mrclmr
name: scoop-bucket
homepage: "https://github.com/meyermarcel/icm"
homepage: "https://github.com/mrclmr/icm"
description: "Generate or validate intermodal container markings."
license: MIT
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![build](https://github.com/meyermarcel/icm/actions/workflows/build.yml/badge.svg)](https://github.com/meyermarcel/icm/actions/workflows/build.yml) [![Go Report Card](https://goreportcard.com/badge/github.com/meyermarcel/icm)](https://goreportcard.com/report/github.com/meyermarcel/icm)
[![build](https://github.com/mrclmr/icm/actions/workflows/build.yml/badge.svg)](https://github.com/mrclmr/icm/actions/workflows/build.yml) [![Go Report Card](https://goreportcard.com/badge/github.com/mrclmr/icm)](https://goreportcard.com/report/github.com/mrclmr/icm)

# icm (intermodal container markings)

Expand All @@ -15,25 +15,25 @@ See examples for [`generate` command](docs/icm_generate.md#examples) and [`valid
### macOS with [Homebrew](https://brew.sh)

```
brew install meyermarcel/tap/icm
brew install mrclmr/tap/icm
```

### Linux with [Homebrew on Linux](https://docs.brew.sh/Homebrew-on-Linux)

```
brew install meyermarcel/tap/icm
brew install mrclmr/tap/icm
```

### Windows with [Scoop](https://scoop.sh)

```
scoop bucket add meyermarcel-bucket https://github.com/meyermarcel/scoop-bucket.git
scoop bucket add mrclmr-bucket https://github.com/mrclmr/scoop-bucket.git
scoop install icm
```

### Manual

Download your binary in the [Releases](https://github.com/meyermarcel/icm/releases) section.
Download your binary in the [Releases](https://github.com/mrclmr/icm/releases) section.

See the [`completion` command](docs/icm_completion.md) for **bash**, **zsh**, **fish** and **powershell** completions.

Expand Down Expand Up @@ -109,4 +109,4 @@ See the [`doc` command](docs/icm_doc.md) for **manual pages** and **markdown**.
## License
icm is released under the MIT license. See [LICENSE](https://github.com/meyermarcel/icm/blob/master/LICENSE)
icm is released under the MIT license. See [LICENSE](https://github.com/mrclmr/icm/blob/master/LICENSE)
4 changes: 2 additions & 2 deletions cmd/icm/download_owners.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"os"
"path"

"github.com/meyermarcel/icm/data"
"github.com/meyermarcel/icm/http"
"github.com/mrclmr/icm/data"
"github.com/mrclmr/icm/http"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/icm/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"path/filepath"
"strconv"

"github.com/meyermarcel/icm/configs"
"github.com/meyermarcel/icm/cont"
"github.com/meyermarcel/icm/data"
"github.com/mrclmr/icm/configs"
"github.com/mrclmr/icm/cont"
"github.com/mrclmr/icm/data"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/icm/generate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"math/rand/v2"
"testing"

"github.com/meyermarcel/icm/configs"
"github.com/mrclmr/icm/configs"
)

func Test_generateCmd(t *testing.T) {
Expand Down
10 changes: 5 additions & 5 deletions cmd/icm/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
"os"
"path/filepath"

"github.com/meyermarcel/icm/configs"
"github.com/meyermarcel/icm/data"
"github.com/meyermarcel/icm/data/file"
"github.com/meyermarcel/icm/http"
"github.com/mrclmr/icm/configs"
"github.com/mrclmr/icm/data"
"github.com/mrclmr/icm/data/file"
"github.com/mrclmr/icm/http"

"github.com/spf13/cobra"
)
Expand Down Expand Up @@ -142,7 +142,7 @@ func newRootCmd(
rootCmd.SetHelpTemplate(`{{with (or .Long .Short)}}{{. | trimTrailingWhitespaces}}
{{end}}{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}
Visit github.com/meyermarcel/icm for more docs, issues, pull requests and feedback.
Visit github.com/mrclmr/icm for more docs, issues, pull requests and feedback.
`)

r := rand.New(rand.NewPCG(rand.Uint64(), rand.Uint64()))
Expand Down
2 changes: 1 addition & 1 deletion cmd/icm/root_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package cmd

import "github.com/meyermarcel/icm/cont"
import "github.com/mrclmr/icm/cont"

type dummyOwnerDecodeUpdater struct {
dummyOwnerDecoder
Expand Down
8 changes: 4 additions & 4 deletions cmd/icm/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ import (

"github.com/logrusorgru/aurora/v4"
"github.com/mattn/go-isatty"
"github.com/meyermarcel/icm/configs"
"github.com/meyermarcel/icm/cont"
"github.com/meyermarcel/icm/data"
"github.com/meyermarcel/icm/input"
"github.com/mrclmr/icm/configs"
"github.com/mrclmr/icm/cont"
"github.com/mrclmr/icm/data"
"github.com/mrclmr/icm/input"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/icm/validate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"testing"

"github.com/meyermarcel/icm/configs"
"github.com/mrclmr/icm/configs"
)

func Test_singleLine(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion data/file/equip_cat_decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
// Needed for package embed.
_ "embed"

"github.com/meyermarcel/icm/cont"
"github.com/mrclmr/icm/cont"
)

const equipCatIDsFileName = "equipment-category-id.json"
Expand Down
2 changes: 1 addition & 1 deletion data/file/owner_decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
// Needed for package embed.
_ "embed"

"github.com/meyermarcel/icm/cont"
"github.com/mrclmr/icm/cont"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion data/file/size_decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
// Needed for package embed.
_ "embed"

"github.com/meyermarcel/icm/cont"
"github.com/mrclmr/icm/cont"
)

const sizeFileName = "size.json"
Expand Down
2 changes: 1 addition & 1 deletion data/file/type_decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
// Needed for package embed.
_ "embed"

"github.com/meyermarcel/icm/cont"
"github.com/mrclmr/icm/cont"
)

const typeFileName = "type.json"
Expand Down
2 changes: 1 addition & 1 deletion data/file/write_owners_csv.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/csv"
"io"

"github.com/meyermarcel/icm/cont"
"github.com/mrclmr/icm/cont"
)

// WriteOwnersCSV accepts a slice of owners and writes CSV to out.
Expand Down
2 changes: 1 addition & 1 deletion data/file/write_owners_csv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"testing"

"github.com/meyermarcel/icm/cont"
"github.com/mrclmr/icm/cont"
)

func TestWriteOwnersCSV(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion data/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package data
import (
"io"

"github.com/meyermarcel/icm/cont"
"github.com/mrclmr/icm/cont"
)

// OwnerDecoder decodes a code to an owner or generates a random owner.
Expand Down
2 changes: 1 addition & 1 deletion docs/icm_download-owners.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ echo 'AAA;my company;my city;my country' >> $HOME/.icm/data/custom-owner.csv

```
-h, --help help for download-owners
-o, --output string output file (default "/Users/meyermarcel/.icm/data/owner.csv")
-o, --output string output file (default "/Users/mrclmr/.icm/data/owner.csv")
```

### SEE ALSO
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module github.com/meyermarcel/icm
module github.com/mrclmr/icm

go 1.23

require (
github.com/logrusorgru/aurora/v4 v4.0.0
github.com/mattn/go-isatty v0.0.20
github.com/meyermarcel/annot v0.4.0
github.com/mrclmr/annot v0.5.0
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
golang.org/x/net v0.27.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUp
github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ=
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/meyermarcel/annot v0.4.0 h1:46q70tpKqS6GmrMn03Mrnh7unHPZCQvQAdYtleu8geI=
github.com/meyermarcel/annot v0.4.0/go.mod h1:NddTDU7dsaGD8esVzYD3oQeYrReJODr0NZVXJuDsZNI=
github.com/mrclmr/annot v0.4.0 h1:46q70tpKqS6GmrMn03Mrnh7unHPZCQvQAdYtleu8geI=
github.com/mrclmr/annot v0.4.0/go.mod h1:NddTDU7dsaGD8esVzYD3oQeYrReJODr0NZVXJuDsZNI=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
Expand Down
2 changes: 1 addition & 1 deletion http/owners_downloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"net/http"

"github.com/meyermarcel/icm/cont"
"github.com/mrclmr/icm/cont"
"golang.org/x/net/html"
)

Expand Down
2 changes: 1 addition & 1 deletion http/owners_downloader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"testing"

"github.com/meyermarcel/icm/cont"
"github.com/mrclmr/icm/cont"
)

func Test_parseOwners(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion input/fancy_printer.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/logrusorgru/aurora/v4"
"github.com/mattn/go-isatty"
"github.com/meyermarcel/annot"
"github.com/mrclmr/annot"

Check failure on line 12 in input/fancy_printer.go

View workflow job for this annotation

GitHub Actions / build

missing go.sum entry for module providing package github.com/mrclmr/annot (imported by github.com/mrclmr/icm/input); to add:

Check failure on line 12 in input/fancy_printer.go

View workflow job for this annotation

GitHub Actions / build

could not import github.com/mrclmr/annot (invalid package name: "")
)

var au *aurora.Aurora
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import cmd "github.com/meyermarcel/icm/cmd/icm"
import cmd "github.com/mrclmr/icm/cmd/icm"

var version = "dev"

Expand Down

0 comments on commit deb9054

Please sign in to comment.