|
|
@ -7,6 +7,7 @@ import (
|
|
|
|
"bytes"
|
|
|
|
"bytes"
|
|
|
|
"encoding/gob"
|
|
|
|
"encoding/gob"
|
|
|
|
"encoding/json"
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"os"
|
|
|
@ -314,6 +315,10 @@ var cannotObfuscate = map[string]bool{
|
|
|
|
|
|
|
|
|
|
|
|
var listedRuntimeLinknamed = false
|
|
|
|
var listedRuntimeLinknamed = false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var ErrNotFound = errors.New("not found")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var ErrNotDependency = errors.New("not a dependency")
|
|
|
|
|
|
|
|
|
|
|
|
// listPackage gets the listedPackage information for a certain package
|
|
|
|
// listPackage gets the listedPackage information for a certain package
|
|
|
|
func listPackage(path string) (*listedPackage, error) {
|
|
|
|
func listPackage(path string) (*listedPackage, error) {
|
|
|
|
if path == curPkg.ImportPath {
|
|
|
|
if path == curPkg.ImportPath {
|
|
|
@ -396,7 +401,7 @@ func listPackage(path string) (*listedPackage, error) {
|
|
|
|
return pkg, nil
|
|
|
|
return pkg, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("path not found in listed packages: %s", path)
|
|
|
|
return nil, fmt.Errorf("list %s: %w", path, ErrNotFound)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Packages other than runtime can list any package,
|
|
|
|
// Packages other than runtime can list any package,
|
|
|
@ -420,5 +425,5 @@ func listPackage(path string) (*listedPackage, error) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("refusing to list non-dependency package: %s", path)
|
|
|
|
return nil, fmt.Errorf("list %s: %w", path, ErrNotDependency)
|
|
|
|
}
|
|
|
|
}
|
|
|
|