Skip to content

Commit

Permalink
GitHub migration: change import paths and various other URL's
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtulinius authored and johanot committed Oct 25, 2018
1 parent ecae83c commit 45adc88
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

[[constraint]]
branch = "morph"
name = "github.com/DBCDK/kingpin"
name = "github.com/dbcdk/kingpin"

[prune]
go-tests = true
Expand Down
2 changes: 1 addition & 1 deletion filter/filter.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package filter

import (
"git-platform.dbc.dk/platform/morph/nix"
"github.com/dbcdk/morph/nix"
"github.com/gobwas/glob"
)

Expand Down
2 changes: 1 addition & 1 deletion healthchecks/healthchecks.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package healthchecks
import (
"errors"
"fmt"
"git-platform.dbc.dk/platform/morph/ssh"
"github.com/dbcdk/morph/ssh"
"os"
"sync"
"time"
Expand Down
2 changes: 1 addition & 1 deletion healthchecks/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"crypto/tls"
"errors"
"fmt"
"git-platform.dbc.dk/platform/morph/ssh"
"github.com/dbcdk/morph/ssh"
"net/http"
"time"
)
Expand Down
14 changes: 7 additions & 7 deletions morph.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package main
import (
"errors"
"fmt"
"git-platform.dbc.dk/platform/morph/assets"
"git-platform.dbc.dk/platform/morph/filter"
"git-platform.dbc.dk/platform/morph/healthchecks"
"git-platform.dbc.dk/platform/morph/nix"
"git-platform.dbc.dk/platform/morph/secrets"
"git-platform.dbc.dk/platform/morph/ssh"
"github.com/DBCDK/kingpin"
"github.com/dbcdk/morph/assets"
"github.com/dbcdk/morph/filter"
"github.com/dbcdk/morph/healthchecks"
"github.com/dbcdk/morph/nix"
"github.com/dbcdk/morph/secrets"
"github.com/dbcdk/morph/ssh"
"github.com/dbcdk/kingpin"
"io/ioutil"
"os"
"os/exec"
Expand Down
6 changes: 3 additions & 3 deletions nix-packaging/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildGoPackage rec {
name = "morph-unstable-${version}";
inherit version;

goPackagePath = "git-platform.dbc.dk/platform/morph";
goPackagePath = "github.com/dbcdk/morph";

buildInputs = [ go-bindata ];

Expand All @@ -35,7 +35,7 @@ buildGoPackage rec {
outputs = [ "out" "bin" "lib" ];

meta = {
homepage = "https://git-platform.dbc.dk/platform/morph";
description = "Morph is a NixOS host manager written in GOLANG inspired the Haskell nixdeploy project.";
homepage = "https://github.com/dbcdk/morph";
description = "Morph is a NixOS host manager written in Golang.";
};
}
6 changes: 3 additions & 3 deletions nix-packaging/deps.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# file generated from Gopkg.lock using dep2nix (https://github.com/nixcloud/dep2nix)
[
{
goPackagePath = "github.com/DBCDK/kingpin";
goPackagePath = "github.com/dbcdk/kingpin";
fetch = {
type = "git";
url = "https://github.com/DBCDK/kingpin";
url = "https://github.com/dbcdk/kingpin";
rev = "8554767bc91254c59c7297a99e9867c770e4eadb";
sha256 = "05hfpgylv5mfnjz2mdd3jl8p3psmczvdbs4ydf9xvvc17c9mlrpq";
};
Expand Down Expand Up @@ -63,4 +63,4 @@
sha256 = "06xrp05njwam4sn031fkmd4gym5wfsw5q0v24nqhs4883lsx9dwq";
};
}
]
]
6 changes: 3 additions & 3 deletions nix/nix.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"encoding/json"
"errors"
"fmt"
"git-platform.dbc.dk/platform/morph/healthchecks"
"git-platform.dbc.dk/platform/morph/secrets"
"git-platform.dbc.dk/platform/morph/ssh"
"github.com/dbcdk/morph/healthchecks"
"github.com/dbcdk/morph/secrets"
"github.com/dbcdk/morph/ssh"
"io/ioutil"
"os"
"os/exec"
Expand Down
4 changes: 2 additions & 2 deletions secrets/secrets.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package secrets

import (
"git-platform.dbc.dk/platform/morph/ssh"
"git-platform.dbc.dk/platform/morph/utils"
"github.com/dbcdk/morph/ssh"
"github.com/dbcdk/morph/utils"
"os"
)

Expand Down

0 comments on commit 45adc88

Please sign in to comment.