Skip to content

Commit

Permalink
Merge pull request #144 from AkihiroSuda/move-repo
Browse files Browse the repository at this point in the history
Move from github.com/AkihiroSuda/lima to github.com/lima-vm/lima
  • Loading branch information
AkihiroSuda authored Aug 5, 2021
2 parents 5619725 + b673ed3 commit 1db1182
Show file tree
Hide file tree
Showing 39 changed files with 85 additions and 85 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ GO ?= go

TAR ?= tar

PACKAGE := github.com/AkihiroSuda/lima
PACKAGE := github.com/lima-vm/lima

VERSION=$(shell git describe --match 'v[0-9]*' --dirty='.m' --always --tags)
VERSION_TRIMMED := $(VERSION:v%=%)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ $ brew install lima

- On ARM hosts, QEMU has to be patched for enabling `--accel=hvf` support. See https://gist.github.com/nrjdalal/e70249bb5d2e9d844cc203fd11f74c55

- Download the binary archive of Lima from https://github.com/AkihiroSuda/lima/releases ,
- Download the binary archive of Lima from https://github.com/lima-vm/lima/releases ,
and extract it under `/usr/local` (or somewhere else).

- To install Lima from the source, run `make && make install`.
Expand Down Expand Up @@ -172,7 +172,7 @@ The current default spec:

### Help wanted
:pray:
- [Test on ARM Mac](https://github.com/AkihiroSuda/lima/issues/42)
- [Test on ARM Mac](https://github.com/lima-vm/lima/issues/42)
- Performance optimization
- More guest distros
- Windows hosts
Expand Down
4 changes: 2 additions & 2 deletions cmd/lima-guestagent/daemon_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"path/filepath"
"time"

"github.com/AkihiroSuda/lima/pkg/guestagent"
"github.com/AkihiroSuda/lima/pkg/guestagent/api/server"
"github.com/lima-vm/lima/pkg/guestagent"
"github.com/lima-vm/lima/pkg/guestagent/api/server"
"github.com/gorilla/mux"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
Expand Down
2 changes: 1 addition & 1 deletion cmd/lima-guestagent/install_systemd_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"path/filepath"
"strings"

"github.com/AkihiroSuda/lima/pkg/templateutil"
"github.com/lima-vm/lima/pkg/templateutil"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/lima-guestagent/main_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"github.com/AkihiroSuda/lima/pkg/version"
"github.com/lima-vm/lima/pkg/version"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/limactl/completion.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package main
import (
"fmt"

"github.com/AkihiroSuda/lima/pkg/store"
"github.com/lima-vm/lima/pkg/store"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/limactl/copy.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"os/user"
"strings"

"github.com/AkihiroSuda/lima/pkg/sshutil"
"github.com/AkihiroSuda/lima/pkg/store"
"github.com/lima-vm/lima/pkg/sshutil"
"github.com/lima-vm/lima/pkg/store"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
Expand Down
2 changes: 1 addition & 1 deletion cmd/limactl/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/AkihiroSuda/lima/pkg/store"
"github.com/lima-vm/lima/pkg/store"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
Expand Down
2 changes: 1 addition & 1 deletion cmd/limactl/hostagent.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os/signal"
"strconv"

"github.com/AkihiroSuda/lima/pkg/hostagent"
"github.com/lima-vm/lima/pkg/hostagent"
"github.com/pkg/errors"
"github.com/urfave/cli/v2"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/limactl/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"text/tabwriter"

"github.com/AkihiroSuda/lima/pkg/store"
"github.com/lima-vm/lima/pkg/store"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
Expand Down
2 changes: 1 addition & 1 deletion cmd/limactl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strings"

"github.com/AkihiroSuda/lima/pkg/version"
"github.com/lima-vm/lima/pkg/version"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/limactl/shell.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"strconv"
"strings"

"github.com/AkihiroSuda/lima/pkg/sshutil"
"github.com/AkihiroSuda/lima/pkg/store"
"github.com/alessio/shellescape"
"github.com/lima-vm/lima/pkg/sshutil"
"github.com/lima-vm/lima/pkg/store"
"github.com/mattn/go-isatty"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
Expand Down
10 changes: 5 additions & 5 deletions cmd/limactl/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import (
"path/filepath"
"strings"

"github.com/AkihiroSuda/lima/pkg/limayaml"
"github.com/AkihiroSuda/lima/pkg/osutil"
"github.com/AkihiroSuda/lima/pkg/start"
"github.com/AkihiroSuda/lima/pkg/store"
"github.com/AkihiroSuda/lima/pkg/store/filenames"
"github.com/AlecAivazis/survey/v2"
"github.com/containerd/containerd/identifiers"
"github.com/lima-vm/lima/pkg/limayaml"
"github.com/lima-vm/lima/pkg/osutil"
"github.com/lima-vm/lima/pkg/start"
"github.com/lima-vm/lima/pkg/store"
"github.com/lima-vm/lima/pkg/store/filenames"
"github.com/mattn/go-isatty"
"github.com/norouter/norouter/cmd/norouter/editorcmd"
"github.com/pkg/errors"
Expand Down
6 changes: 3 additions & 3 deletions cmd/limactl/stop.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"syscall"
"time"

hostagentapi "github.com/AkihiroSuda/lima/pkg/hostagent/api"
"github.com/AkihiroSuda/lima/pkg/store"
"github.com/AkihiroSuda/lima/pkg/store/filenames"
hostagentapi "github.com/lima-vm/lima/pkg/hostagent/api"
"github.com/lima-vm/lima/pkg/store"
"github.com/lima-vm/lima/pkg/store/filenames"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
Expand Down
2 changes: 1 addition & 1 deletion cmd/limactl/validate.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/AkihiroSuda/lima/pkg/store"
"github.com/lima-vm/lima/pkg/store"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
Expand Down
2 changes: 1 addition & 1 deletion examples/archlinux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ arch: "x86_64"
images:
# NOTE: the image is periodically rotated, if you face 404, see https://mirror.pkgbuild.com/images/ to find the latest image.
#
# Skip v20210801.30574 as systemd 249 has a regression: https://github.com/AkihiroSuda/lima/pull/136#issuecomment-890790894
# Skip v20210801.30574 as systemd 249 has a regression: https://github.com/lima-vm/lima/pull/136#issuecomment-890790894
- location: "https://mirror.pkgbuild.com/images/v20210619.26314/Arch-Linux-x86_64-cloudimg-20210619.26314.qcow2"
arch: "x86_64"
digest: "sha256:d132d607fe4e97260b5a759f39cb11856bbf0dbb0ccaf8c65c6444b0ec22c545"
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/AkihiroSuda/lima
module github.com/lima-vm/lima

go 1.16

Expand Down
14 changes: 7 additions & 7 deletions pkg/cidata/cidata.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import (
"strconv"
"strings"

"github.com/AkihiroSuda/lima/pkg/downloader"
"github.com/AkihiroSuda/lima/pkg/iso9660util"
"github.com/AkihiroSuda/lima/pkg/limayaml"
"github.com/AkihiroSuda/lima/pkg/localpathutil"
"github.com/AkihiroSuda/lima/pkg/qemu/qemuconst"
"github.com/AkihiroSuda/lima/pkg/sshutil"
"github.com/AkihiroSuda/lima/pkg/store/filenames"
"github.com/lima-vm/lima/pkg/downloader"
"github.com/lima-vm/lima/pkg/iso9660util"
"github.com/lima-vm/lima/pkg/limayaml"
"github.com/lima-vm/lima/pkg/localpathutil"
"github.com/lima-vm/lima/pkg/qemu/qemuconst"
"github.com/lima-vm/lima/pkg/sshutil"
"github.com/lima-vm/lima/pkg/store/filenames"
"github.com/opencontainers/go-digest"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
Expand Down
4 changes: 2 additions & 2 deletions pkg/cidata/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"io/fs"
"path/filepath"

"github.com/AkihiroSuda/lima/pkg/iso9660util"
"github.com/lima-vm/lima/pkg/iso9660util"

"github.com/AkihiroSuda/lima/pkg/templateutil"
"github.com/containerd/containerd/identifiers"
"github.com/lima-vm/lima/pkg/templateutil"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/downloader/downloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"strings"
"time"

"github.com/AkihiroSuda/lima/pkg/localpathutil"
"github.com/cheggaaa/pb/v3"
"github.com/containerd/continuity/fs"
"github.com/lima-vm/lima/pkg/localpathutil"
"github.com/mattn/go-isatty"
"github.com/opencontainers/go-digest"
"github.com/pkg/errors"
Expand Down
2 changes: 1 addition & 1 deletion pkg/guestagent/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type ErrorJSON struct {
}

var (
IPv4loopback1 = net.IPv4(127,0,0,1)
IPv4loopback1 = net.IPv4(127, 0, 0, 1)
)

type IPPort struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/guestagent/api/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"fmt"
"net/http"

"github.com/AkihiroSuda/lima/pkg/guestagent/api"
"github.com/AkihiroSuda/lima/pkg/httpclientutil"
"github.com/lima-vm/lima/pkg/guestagent/api"
"github.com/lima-vm/lima/pkg/httpclientutil"
)

type GuestAgentClient interface {
Expand Down
4 changes: 2 additions & 2 deletions pkg/guestagent/api/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"encoding/json"
"net/http"

"github.com/AkihiroSuda/lima/pkg/guestagent"
"github.com/AkihiroSuda/lima/pkg/guestagent/api"
"github.com/gorilla/mux"
"github.com/lima-vm/lima/pkg/guestagent"
"github.com/lima-vm/lima/pkg/guestagent/api"
"github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/guestagent/guestagent.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package guestagent
import (
"context"

"github.com/AkihiroSuda/lima/pkg/guestagent/api"
"github.com/lima-vm/lima/pkg/guestagent/api"
)

type Agent interface {
Expand Down
4 changes: 2 additions & 2 deletions pkg/guestagent/guestagent_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"reflect"
"time"

"github.com/AkihiroSuda/lima/pkg/guestagent/api"
"github.com/AkihiroSuda/lima/pkg/guestagent/procnettcp"
"github.com/lima-vm/lima/pkg/guestagent/api"
"github.com/lima-vm/lima/pkg/guestagent/procnettcp"
"github.com/sirupsen/logrus"
"github.com/yalue/native_endian"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/hostagent/api/eventwatcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/json"
"time"

"github.com/AkihiroSuda/lima/pkg/logrusutil"
"github.com/lima-vm/lima/pkg/logrusutil"
"github.com/nxadm/tail"
"github.com/sirupsen/logrus"
)
Expand Down
16 changes: 8 additions & 8 deletions pkg/hostagent/hostagent.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ import (
"sync"
"time"

guestagentapi "github.com/AkihiroSuda/lima/pkg/guestagent/api"
guestagentclient "github.com/AkihiroSuda/lima/pkg/guestagent/api/client"
hostagentapi "github.com/AkihiroSuda/lima/pkg/hostagent/api"
"github.com/AkihiroSuda/lima/pkg/limayaml"
"github.com/AkihiroSuda/lima/pkg/qemu"
"github.com/AkihiroSuda/lima/pkg/sshutil"
"github.com/AkihiroSuda/lima/pkg/store"
"github.com/AkihiroSuda/lima/pkg/store/filenames"
"github.com/AkihiroSuda/sshocker/pkg/ssh"
"github.com/digitalocean/go-qemu/qmp"
"github.com/digitalocean/go-qemu/qmp/raw"
"github.com/hashicorp/go-multierror"
guestagentapi "github.com/lima-vm/lima/pkg/guestagent/api"
guestagentclient "github.com/lima-vm/lima/pkg/guestagent/api/client"
hostagentapi "github.com/lima-vm/lima/pkg/hostagent/api"
"github.com/lima-vm/lima/pkg/limayaml"
"github.com/lima-vm/lima/pkg/qemu"
"github.com/lima-vm/lima/pkg/sshutil"
"github.com/lima-vm/lima/pkg/store"
"github.com/lima-vm/lima/pkg/store/filenames"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/hostagent/mount.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"context"
"os"

"github.com/AkihiroSuda/lima/pkg/limayaml"
"github.com/AkihiroSuda/lima/pkg/localpathutil"
"github.com/AkihiroSuda/sshocker/pkg/reversesshfs"
"github.com/hashicorp/go-multierror"
"github.com/lima-vm/lima/pkg/limayaml"
"github.com/lima-vm/lima/pkg/localpathutil"
"github.com/pkg/errors"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/hostagent/port.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"context"
"net"

"github.com/AkihiroSuda/lima/pkg/guestagent/api"
"github.com/AkihiroSuda/lima/pkg/limayaml"
"github.com/AkihiroSuda/sshocker/pkg/ssh"
"github.com/lima-vm/lima/pkg/guestagent/api"
"github.com/lima-vm/lima/pkg/limayaml"
"github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/hostagent/requirements.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"context"
"time"

"github.com/AkihiroSuda/lima/pkg/limayaml"
"github.com/AkihiroSuda/sshocker/pkg/ssh"
"github.com/hashicorp/go-multierror"
"github.com/lima-vm/lima/pkg/limayaml"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/httpclientutil/httpclientutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"net/http"
"os"

"github.com/AkihiroSuda/lima/pkg/guestagent/api"
"github.com/lima-vm/lima/pkg/guestagent/api"
"github.com/pkg/errors"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/limayaml/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"runtime"
"strconv"

"github.com/AkihiroSuda/lima/pkg/guestagent/api"
"github.com/AkihiroSuda/lima/pkg/osutil"
"github.com/lima-vm/lima/pkg/guestagent/api"
"github.com/lima-vm/lima/pkg/osutil"
)

func MACAddress(uniqueID string) string {
Expand Down
4 changes: 2 additions & 2 deletions pkg/limayaml/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"runtime"
"strings"

"github.com/AkihiroSuda/lima/pkg/localpathutil"
"github.com/AkihiroSuda/lima/pkg/qemu/qemuconst"
"github.com/docker/go-units"
"github.com/lima-vm/lima/pkg/localpathutil"
"github.com/lima-vm/lima/pkg/qemu/qemuconst"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
Expand Down
10 changes: 5 additions & 5 deletions pkg/qemu/qemu.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import (
"strconv"
"strings"

"github.com/AkihiroSuda/lima/pkg/downloader"
"github.com/AkihiroSuda/lima/pkg/iso9660util"
"github.com/AkihiroSuda/lima/pkg/limayaml"
"github.com/AkihiroSuda/lima/pkg/qemu/qemuconst"
"github.com/AkihiroSuda/lima/pkg/store/filenames"
"github.com/docker/go-units"
"github.com/lima-vm/lima/pkg/downloader"
"github.com/lima-vm/lima/pkg/iso9660util"
"github.com/lima-vm/lima/pkg/limayaml"
"github.com/lima-vm/lima/pkg/qemu/qemuconst"
"github.com/lima-vm/lima/pkg/store/filenames"
"github.com/mattn/go-shellwords"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
Expand Down
Loading

0 comments on commit 1db1182

Please sign in to comment.