Move from docker-registry to distribution

This commit is contained in:
Olivier Gambier 2014-12-23 16:01:38 -08:00
parent 83b810104c
commit 67ca9d10cf
58 changed files with 114 additions and 114 deletions

View file

@ -13,8 +13,8 @@ import (
"strconv"
"strings"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/docker-registry/storagedriver/factory"
"github.com/docker/distribution/storagedriver"
"github.com/docker/distribution/storagedriver/factory"
azure "github.com/MSOpenTech/azure-sdk-for-go/clients/storage"
)

View file

@ -8,8 +8,8 @@ import (
"strings"
"testing"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/docker-registry/storagedriver/testsuites"
"github.com/docker/distribution/storagedriver"
"github.com/docker/distribution/storagedriver/testsuites"
. "gopkg.in/check.v1"
)

View file

@ -3,7 +3,7 @@ package factory
import (
"fmt"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/distribution/storagedriver"
)
// driverFactories stores an internal mapping between storage driver names and their respective

View file

@ -9,8 +9,8 @@ import (
"path"
"time"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/docker-registry/storagedriver/factory"
"github.com/docker/distribution/storagedriver"
"github.com/docker/distribution/storagedriver/factory"
)
const driverName = "filesystem"

View file

@ -5,8 +5,8 @@ import (
"os"
"testing"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/docker-registry/storagedriver/testsuites"
"github.com/docker/distribution/storagedriver"
"github.com/docker/distribution/storagedriver/testsuites"
. "gopkg.in/check.v1"
)

View file

@ -8,8 +8,8 @@ import (
"sync"
"time"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/docker-registry/storagedriver/factory"
"github.com/docker/distribution/storagedriver"
"github.com/docker/distribution/storagedriver/factory"
)
const driverName = "inmemory"

View file

@ -3,8 +3,8 @@ package inmemory
import (
"testing"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/docker-registry/storagedriver/testsuites"
"github.com/docker/distribution/storagedriver"
"github.com/docker/distribution/storagedriver/testsuites"
"gopkg.in/check.v1"
)

View file

@ -13,7 +13,7 @@ import (
"os/exec"
"syscall"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/distribution/storagedriver"
"github.com/docker/libchan"
"github.com/docker/libchan/spdy"
)

View file

@ -7,7 +7,7 @@ import (
"io"
"reflect"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/distribution/storagedriver"
"github.com/docker/libchan"
)

View file

@ -10,7 +10,7 @@ import (
"os"
"reflect"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/distribution/storagedriver"
"github.com/docker/libchan"
"github.com/docker/libchan/spdy"
)

View file

@ -26,8 +26,8 @@ import (
"github.com/crowdmob/goamz/aws"
"github.com/crowdmob/goamz/s3"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/docker-registry/storagedriver/factory"
"github.com/docker/distribution/storagedriver"
"github.com/docker/distribution/storagedriver/factory"
)
const driverName = "s3"

View file

@ -7,8 +7,8 @@ import (
"testing"
"github.com/crowdmob/goamz/aws"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/docker-registry/storagedriver/testsuites"
"github.com/docker/distribution/storagedriver"
"github.com/docker/distribution/storagedriver/testsuites"
"gopkg.in/check.v1"
)

View file

@ -13,7 +13,7 @@ import (
"testing"
"time"
"github.com/docker/docker-registry/storagedriver"
"github.com/docker/distribution/storagedriver"
"gopkg.in/check.v1"
)