Skip to content

Commit

Permalink
Rename module to 'github.com/mobileinf/geranos"
Browse files Browse the repository at this point in the history
  • Loading branch information
tomekjarosik committed Aug 24, 2024
1 parent d9e13f8 commit 8ed0c4a
Show file tree
Hide file tree
Showing 30 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion cmd/geranos/cmd/adopt.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package cmd

import (
"errors"
"github.com/mobileinf/geranos/pkg/transporter"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tomekjarosik/geranos/pkg/transporter"
)

func NewCmdAdopt() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion cmd/geranos/cmd/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package cmd

import (
"fmt"
"github.com/mobileinf/geranos/pkg/transporter"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tomekjarosik/geranos/pkg/transporter"
)

func NewCmdClone() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion cmd/geranos/cmd/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package cmd

import (
"fmt"
"github.com/mobileinf/geranos/pkg/transporter"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tomekjarosik/geranos/pkg/transporter"
)

func NewCmdInspect() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion cmd/geranos/cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package cmd

import (
"fmt"
"github.com/mobileinf/geranos/pkg/transporter"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tomekjarosik/geranos/pkg/transporter"
)

func NewListCommand() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion cmd/geranos/cmd/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package cmd

import (
"errors"
"github.com/mobileinf/geranos/pkg/transporter"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tomekjarosik/geranos/pkg/transporter"
)

func NewCmdPull() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion cmd/geranos/cmd/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package cmd
import (
"fmt"
"github.com/google/go-containerregistry/pkg/name"
"github.com/mobileinf/geranos/pkg/transporter"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tomekjarosik/geranos/pkg/transporter"
)

func NewCmdPush() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion cmd/geranos/cmd/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package cmd

import (
"fmt"
"github.com/mobileinf/geranos/pkg/transporter"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tomekjarosik/geranos/pkg/transporter"
)

func NewCmdRemove() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion cmd/geranos/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/tomekjarosik/geranos/cmd/geranos/cmd"
"github.com/mobileinf/geranos/cmd/geranos/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/tomekjarosik/geranos
module github.com/mobileinf/geranos

go 1.22

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

import (
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"github.com/mobileinf/geranos/pkg/filesegment"
)

func Convert(img v1.Image) (*DirImage, error) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/dirimage/convert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"github.com/google/go-containerregistry/pkg/v1/empty"
"github.com/google/go-containerregistry/pkg/v1/mutate"
"github.com/google/go-containerregistry/pkg/v1/random"
"github.com/mobileinf/geranos/pkg/filesegment"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"io"
"os"
"path/filepath"
Expand Down
2 changes: 1 addition & 1 deletion pkg/dirimage/dirimage.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package dirimage

import (
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"github.com/mobileinf/geranos/pkg/filesegment"
)

type DirImage struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/dirimage/read.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/empty"
"github.com/google/go-containerregistry/pkg/v1/mutate"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"github.com/mobileinf/geranos/pkg/filesegment"
"golang.org/x/sync/errgroup"
"os"
"path/filepath"
Expand Down
4 changes: 2 additions & 2 deletions pkg/dirimage/write.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"errors"
"fmt"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"github.com/tomekjarosik/geranos/pkg/sparsefile"
"github.com/mobileinf/geranos/pkg/filesegment"
"github.com/mobileinf/geranos/pkg/sparsefile"
"golang.org/x/sync/errgroup"
"io"
"log"
Expand Down
4 changes: 2 additions & 2 deletions pkg/diskcache/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/cache"
"github.com/google/go-containerregistry/pkg/v1/types"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"github.com/tomekjarosik/geranos/pkg/sparsefile"
"github.com/mobileinf/geranos/pkg/filesegment"
"github.com/mobileinf/geranos/pkg/sparsefile"
"io"
"os"
"path/filepath"
Expand Down
2 changes: 1 addition & 1 deletion pkg/diskcache/fs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"github.com/google/go-containerregistry/pkg/v1/cache"
"github.com/google/go-containerregistry/pkg/v1/random"
"github.com/google/go-containerregistry/pkg/v1/stream"
"github.com/mobileinf/geranos/pkg/filesegment"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"io"
"os"
"path/filepath"
Expand Down
2 changes: 1 addition & 1 deletion pkg/filesegment/layer.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/types"
"github.com/tomekjarosik/geranos/pkg/zstd"
"github.com/mobileinf/geranos/pkg/zstd"
"io"
"log"
"os"
Expand Down
10 changes: 5 additions & 5 deletions pkg/layout/layout.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import (
"github.com/google/go-containerregistry/pkg/name"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/types"
"github.com/tomekjarosik/geranos/pkg/dirimage"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"github.com/mobileinf/geranos/pkg/dirimage"
"github.com/mobileinf/geranos/pkg/filesegment"
"runtime"

"github.com/tomekjarosik/geranos/pkg/duplicator"
"github.com/mobileinf/geranos/pkg/duplicator"

"github.com/tomekjarosik/geranos/pkg/sketch"
"github.com/tomekjarosik/geranos/pkg/sparsefile"
"github.com/mobileinf/geranos/pkg/sketch"
"github.com/mobileinf/geranos/pkg/sparsefile"
"io"
"io/fs"
"os"
Expand Down
6 changes: 3 additions & 3 deletions pkg/layout/layout_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/mutate"
"github.com/google/go-containerregistry/pkg/v1/validate"
"github.com/mobileinf/geranos/pkg/dirimage"
"github.com/mobileinf/geranos/pkg/duplicator"
"github.com/mobileinf/geranos/pkg/filesegment"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/tomekjarosik/geranos/pkg/dirimage"
"github.com/tomekjarosik/geranos/pkg/duplicator"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"io"
"os"
"path"
Expand Down
2 changes: 1 addition & 1 deletion pkg/sketch/blueprints.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"fmt"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"github.com/mobileinf/geranos/pkg/filesegment"
)

type fileBlueprint struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/sketch/sketch.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package sketch
import (
"fmt"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/tomekjarosik/geranos/pkg/duplicator"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"github.com/mobileinf/geranos/pkg/duplicator"
"github.com/mobileinf/geranos/pkg/filesegment"
"os"
"path/filepath"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/sketch/sketch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/random"
"github.com/mobileinf/geranos/pkg/filesegment"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/tomekjarosik/geranos/pkg/filesegment"
"os"
"path/filepath"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion pkg/transporter/adopt.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package transporter
import (
"fmt"
"github.com/google/go-containerregistry/pkg/name"
"github.com/tomekjarosik/geranos/pkg/layout"
"github.com/mobileinf/geranos/pkg/layout"
)

func Adopt(src string, dst string, opt ...Option) error {
Expand Down
2 changes: 1 addition & 1 deletion pkg/transporter/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package transporter

import (
"github.com/google/go-containerregistry/pkg/name"
"github.com/tomekjarosik/geranos/pkg/layout"
"github.com/mobileinf/geranos/pkg/layout"
)

func Clone(src string, dst string, opt ...Option) error {
Expand Down
2 changes: 1 addition & 1 deletion pkg/transporter/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"
"github.com/google/go-containerregistry/pkg/name"
"github.com/tomekjarosik/geranos/pkg/layout"
"github.com/mobileinf/geranos/pkg/layout"
)

func Inspect(rawRef string, opt ...Option) (string, error) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/transporter/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package transporter

import (
"fmt"
"github.com/tomekjarosik/geranos/pkg/layout"
"github.com/mobileinf/geranos/pkg/layout"
)

func List(opt ...Option) error {
Expand Down
4 changes: 2 additions & 2 deletions pkg/transporter/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"github.com/google/go-containerregistry/pkg/name"
"github.com/google/go-containerregistry/pkg/v1/remote"
"github.com/tomekjarosik/geranos/pkg/dirimage"
"github.com/tomekjarosik/geranos/pkg/layout"
"github.com/mobileinf/geranos/pkg/dirimage"
"github.com/mobileinf/geranos/pkg/layout"
"log"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/transporter/pull_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package transporter

import (
"fmt"
"github.com/mobileinf/geranos/pkg/layout"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/tomekjarosik/geranos/pkg/layout"
"net/http"
"net/http/httptest"
"os"
Expand Down
2 changes: 1 addition & 1 deletion pkg/transporter/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/google/go-containerregistry/pkg/name"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/remote"
"github.com/tomekjarosik/geranos/pkg/layout"
"github.com/mobileinf/geranos/pkg/layout"
"golang.org/x/sync/errgroup"
"log"
"os"
Expand Down
2 changes: 1 addition & 1 deletion pkg/transporter/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package transporter
import (
"fmt"
"github.com/google/go-containerregistry/pkg/name"
"github.com/tomekjarosik/geranos/pkg/layout"
"github.com/mobileinf/geranos/pkg/layout"
)

func Remove(src string, opt ...Option) error {
Expand Down

0 comments on commit 8ed0c4a

Please sign in to comment.