Skip to content

Commit

Permalink
support github.com/coreos/go-systemd/v22
Browse files Browse the repository at this point in the history
Support vendoring `github.com/coreos/go-systemd/v22` as follows:

`foo.go`:
```go
package foo

import (
        "github.com/coreos/go-systemd/v22/dbus"
)

func Foo() (*dbus.Conn, error) {
        return dbus.New()
}
```

`vendor.conf`:
```
github.com/coreos/go-systemd/v22 v22.0.0
github.com/godbus/dbus/v5 v5.0.3
```

Now `vndr` checks out the contents of `github.com/coreos/[email protected]` repo
into the `./vendor/github.com/coreos/go-systemd/v22` directory.

Note that `vndr` does not verify the actual version number written in `go.mod`.
So `vndr github.com/coreos/go-systemd/v23 v22.0.0` would vendor v22, not v23.

Fix containerd/cgroups#139

Signed-off-by: Akihiro Suda <[email protected]>
  • Loading branch information
AkihiroSuda authored and LK4D4 committed Jan 9, 2020
1 parent d87a917 commit d385c05
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
7 changes: 7 additions & 0 deletions godl/vcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import (
"sync"

"github.com/LK4D4/vndr/godl/singleflight"
"github.com/LK4D4/vndr/versioned"
)

// envForDir returns a copy of the environment
Expand Down Expand Up @@ -512,6 +513,9 @@ func repoRootFromVCSPaths(importPath, scheme string, security securityMode, vcsP
repo: match["repo"],
root: match["root"],
}
if versioned.IsVersioned(importPath) {
rr.root = importPath
}
return rr, nil
}
return nil, errUnknownSite
Expand Down Expand Up @@ -581,6 +585,9 @@ func repoRootForImportDynamic(importPath string, security securityMode) (*repoRo
if rr.vcs == nil {
return nil, fmt.Errorf("%s: unknown vcs %q", urlStr, mmi.VCS)
}
if versioned.IsVersioned(importPath) {
rr.root = importPath
}
return rr, nil
}

Expand Down
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (

"github.com/LK4D4/vndr/build"
"github.com/LK4D4/vndr/godl"
"github.com/LK4D4/vndr/versioned"
)

const (
Expand Down Expand Up @@ -155,7 +156,7 @@ func validateDeps(deps []depEntry) error {
rootDeps := roots[r]
if len(rootDeps) == 1 {
d := rootDeps[0]
if d.importPath != r {
if d.importPath != r && !versioned.IsVersioned(d.importPath) {
Warnf("package %s is not root import, should be %s", d.importPath, r)
invalid = true
newDeps = append(newDeps, depEntry{importPath: r, rev: d.rev, repoPath: d.repoPath})
Expand Down
12 changes: 12 additions & 0 deletions versioned/versioned.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package versioned

import (
"regexp"
)

var re = regexp.MustCompile(`/v[0-9]+$`)

// IsVersioned true for string like "github.com/coreos/go-systemd/v22"
func IsVersioned(s string) bool {
return re.MatchString(s)
}

0 comments on commit d385c05

Please sign in to comment.