File tree Expand file tree Collapse file tree 9 files changed +21
-21
lines changed
Expand file tree Collapse file tree 9 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ that we follow.
1515## Reporting Issues
1616
1717Before reporting an issue, check our backlog of
18- [ open issues] ( https://github.com/projectatomic /skopeo/issues )
18+ [ open issues] ( https://github.com/containers /skopeo/issues )
1919to see if someone else has already reported it. If so, feel free to add
2020your scenario, or additional information, to the discussion. Or simply
2121"subscribe" to it to be notified when it is updated.
@@ -122,9 +122,9 @@ IRC group on `irc.freenode.net` called `container-projects`
122122that has been setup.
123123
124124For discussions around issues/bugs and features, you can use the github
125- [ issues] ( https://github.com/projectatomic /skopeo/issues )
125+ [ issues] ( https://github.com/containers /skopeo/issues )
126126and
127- [ PRs] ( https://github.com/projectatomic /skopeo/pulls )
127+ [ PRs] ( https://github.com/containers /skopeo/pulls )
128128tracking system.
129129
130130<!--
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ RUN set -x \
4343ENV GOPATH /usr/share/gocode:/go
4444ENV PATH $GOPATH/bin:/usr/share/gocode/bin:$PATH
4545RUN go get github.com/golang/lint/golint
46- WORKDIR /go/src/github.com/projectatomic /skopeo
47- COPY . /go/src/github.com/projectatomic /skopeo
46+ WORKDIR /go/src/github.com/containers /skopeo
47+ COPY . /go/src/github.com/containers /skopeo
4848
4949# ENTRYPOINT ["hack/dind"]
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ RUN apt-get update && apt-get install -y \
1111 libostree-dev
1212
1313ENV GOPATH=/
14- WORKDIR /src/github.com/projectatomic /skopeo
14+ WORKDIR /src/github.com/containers /skopeo
Original file line number Diff line number Diff line change @@ -73,14 +73,14 @@ binary: cmd/skopeo
7373ifneq ($(DISABLE_CGO ) , 1)
7474 docker build ${DOCKER_BUILD_ARGS} -f Dockerfile.build -t $(DOCKER_BUILD_IMAGE) .
7575endif
76- docker run --rm --security-opt label:disable -v $$(pwd):/src/github.com/projectatomic /skopeo \
76+ docker run --rm --security-opt label:disable -v $$(pwd):/src/github.com/containers /skopeo \
7777 $(DOCKER_BUILD_IMAGE) make binary-local $(if $(DEBUG),DEBUG=$(DEBUG)) BUILDTAGS='$(BUILDTAGS)'
7878
7979binary-static : cmd/skopeo
8080ifneq ($(DISABLE_CGO ) , 1)
8181 docker build ${DOCKER_BUILD_ARGS} -f Dockerfile.build -t $(DOCKER_BUILD_IMAGE) .
8282endif
83- docker run --rm --security-opt label:disable -v $$(pwd):/src/github.com/projectatomic /skopeo \
83+ docker run --rm --security-opt label:disable -v $$(pwd):/src/github.com/containers /skopeo \
8484 $(DOCKER_BUILD_IMAGE) make binary-local-static $(if $(DEBUG),DEBUG=$(DEBUG)) BUILDTAGS='$(BUILDTAGS)'
8585
8686# Build w/o using Docker containers
@@ -144,7 +144,7 @@ validate-local:
144144 hack/make.sh validate-git-marks validate-gofmt validate-lint validate-vet
145145
146146test-unit-local :
147- $(GPGME_ENV ) $(GO ) test -tags " $( BUILDTAGS) " $$($(GO ) list -tags "$(BUILDTAGS ) " -e ./... | grep -v '^github\.com/projectatomic /skopeo/\(integration\|vendor/.*\) $$ ' )
147+ $(GPGME_ENV ) $(GO ) test -tags " $( BUILDTAGS) " $$($(GO ) list -tags "$(BUILDTAGS ) " -e ./... | grep -v '^github\.com/containers /skopeo/\(integration\|vendor/.*\) $$ ' )
148148
149149vendor : vendor.conf
150150 vndr -whitelist ' ^github.com/containers/image/docs/.*'
Original file line number Diff line number Diff line change 1- skopeo [ ![ Build Status] ( https://travis-ci.org/projectatomic /skopeo.svg?branch=master )] ( https://travis-ci.org/projectatomic /skopeo )
1+ skopeo [ ![ Build Status] ( https://travis-ci.org/containers /skopeo.svg?branch=master )] ( https://travis-ci.org/containers /skopeo )
22=
33
4- <img src =" https://cdn.rawgit.com/projectatomic /skopeo/master/docs/skopeo.svg " width =" 250 " >
4+ <img src =" https://cdn.rawgit.com/containers /skopeo/master/docs/skopeo.svg " width =" 250 " >
55
66----
77
@@ -178,8 +178,8 @@ macOS$ brew install gpgme
178178Make sure to clone this repository in your ` GOPATH ` - otherwise compilation fails.
179179
180180``` sh
181- $ git clone https://github.com/projectatomic /skopeo $GOPATH /src/github.com/projectatomic /skopeo
182- $ cd $GOPATH /src/github.com/projectatomic /skopeo && make binary-local
181+ $ git clone https://github.com/containers /skopeo $GOPATH /src/github.com/containers /skopeo
182+ $ cd $GOPATH /src/github.com/containers /skopeo && make binary-local
183183```
184184
185185### Building in a container
Original file line number Diff line number Diff line change 55 "os"
66
77 "github.com/containers/image/signature"
8+ "github.com/containers/skopeo/version"
89 "github.com/containers/storage/pkg/reexec"
9- "github.com/projectatomic/skopeo/version"
1010 "github.com/sirupsen/logrus"
1111 "github.com/urfave/cli"
1212)
Original file line number Diff line number Diff line change 66#
77# Requirements:
88# - The current directory should be a checkout of the skopeo source code
9- # (https://github.com/projectatomic /skopeo). Whatever version is checked out
9+ # (https://github.com/containers /skopeo). Whatever version is checked out
1010# will be built.
1111# - The script is intended to be run inside the docker container specified
1212# in the Dockerfile at the root of the source. In other words:
1919
2020set -o pipefail
2121
22- export SKOPEO_PKG=' github.com/projectatomic /skopeo'
22+ export SKOPEO_PKG=' github.com/containers /skopeo'
2323export SCRIPTDIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
2424export MAKEDIR=" $SCRIPTDIR /make"
2525
Original file line number Diff line number Diff line change 44export GOPATH=$( pwd) /_gopath
55export PATH=$GOPATH /bin:$PATH
66
7- _projectatomic =" ${GOPATH} /src/github.com/projectatomic "
8- mkdir -vp ${_projectatomic }
9- ln -vsf $( pwd) ${_projectatomic } /skopeo
7+ _containers =" ${GOPATH} /src/github.com/containers "
8+ mkdir -vp ${_containers }
9+ ln -vsf $( pwd) ${_containers } /skopeo
1010
1111go get -u github.com/cpuguy83/go-md2man github.com/golang/lint/golint
1212
13- cd ${_projectatomic } /skopeo
13+ cd ${_containers } /skopeo
1414make validate-local test-unit-local binary-local
1515sudo make install
1616skopeo -v
Original file line number Diff line number Diff line change 55 "os/exec"
66 "testing"
77
8+ "github.com/containers/skopeo/version"
89 "github.com/go-check/check"
9- "github.com/projectatomic/skopeo/version"
1010)
1111
1212const (
You can’t perform that action at this time.
0 commit comments