diff --git a/Dockerfile b/Dockerfile index 43db1a7959..85611961b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,8 +38,8 @@ RUN set -x \ && dnf -y update && dnf install -y m2crypto ENV GOPATH /usr/share/gocode:/go -WORKDIR /go/src/github.com/runcom/skopeo +WORKDIR /go/src/github.com/projectatomic/skopeo -COPY . /go/src/github.com/runcom/skopeo +COPY . /go/src/github.com/projectatomic/skopeo #ENTRYPOINT ["hack/dind"] diff --git a/README.md b/README.md index 4912c1ecff..5c353d151f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -skopeo [![Build Status](https://travis-ci.org/runcom/skopeo.svg?branch=master)](https://travis-ci.org/runcom/skopeo) +skopeo [![Build Status](https://travis-ci.org/projectatomic/skopeo.svg?branch=master)](https://travis-ci.org/projectatomic/skopeo) = _Please be aware `skopeo` is still work in progress_ @@ -80,9 +80,9 @@ Building To build `skopeo` you need at least Go 1.5 because it uses the latest `GO15VENDOREXPERIMENT` flag. Also, make sure to clone the repository in your `GOPATH` - otherwise compilation fails. ```sh $ cd $GOPATH/src -$ mkdir -p github.com/runcom -$ cd runcom -$ git clone https://github.com/runcom/skopeo +$ mkdir -p github.com/projectatomic +$ cd projectatomic +$ git clone https://github.com/projectatomic/skopeo $ cd skopeo && make binary ``` Man: diff --git a/docker/inspect.go b/docker/inspect.go index 09ed26a763..a284fc131c 100644 --- a/docker/inspect.go +++ b/docker/inspect.go @@ -25,7 +25,7 @@ import ( "github.com/docker/docker/registry" engineTypes "github.com/docker/engine-api/types" registryTypes "github.com/docker/engine-api/types/registry" - "github.com/runcom/skopeo/types" + "github.com/projectatomic/skopeo/types" "golang.org/x/net/context" ) diff --git a/docker/inspect_v1.go b/docker/inspect_v1.go index 81bc8356b4..19f0b4eb2e 100644 --- a/docker/inspect_v1.go +++ b/docker/inspect_v1.go @@ -16,7 +16,7 @@ import ( "github.com/docker/docker/reference" "github.com/docker/docker/registry" engineTypes "github.com/docker/engine-api/types" - "github.com/runcom/skopeo/types" + "github.com/projectatomic/skopeo/types" "golang.org/x/net/context" ) diff --git a/docker/inspect_v2.go b/docker/inspect_v2.go index b98af0612c..4948f93b5b 100644 --- a/docker/inspect_v2.go +++ b/docker/inspect_v2.go @@ -20,7 +20,7 @@ import ( "github.com/docker/docker/reference" "github.com/docker/docker/registry" engineTypes "github.com/docker/engine-api/types" - "github.com/runcom/skopeo/types" + "github.com/projectatomic/skopeo/types" "golang.org/x/net/context" ) diff --git a/hack/make.sh b/hack/make.sh index a81f1cd730..b0404b7c4b 100755 --- a/hack/make.sh +++ b/hack/make.sh @@ -19,7 +19,7 @@ set -e set -o pipefail -export SKOPEO_PKG='github.com/runcom/skopeo' +export SKOPEO_PKG='github.com/projectatomic/skopeo' export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" export MAKEDIR="$SCRIPTDIR/make" diff --git a/inspect.go b/inspect.go index 4d09635815..f505593b02 100644 --- a/inspect.go +++ b/inspect.go @@ -5,8 +5,8 @@ import ( "strings" "github.com/codegangsta/cli" - "github.com/runcom/skopeo/docker" - "github.com/runcom/skopeo/types" + "github.com/projectatomic/skopeo/docker" + "github.com/projectatomic/skopeo/types" ) type imgKind int