47 lines
895 B
Go
47 lines
895 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"go.wit.com/lib/protobuf/forgepb"
|
|
"go.wit.com/log"
|
|
)
|
|
|
|
func main() {
|
|
repos := testRepos()
|
|
repos.ConfigSave()
|
|
}
|
|
|
|
func testRepos() *forgepb.Repos {
|
|
var all *forgepb.Repos
|
|
all = new(forgepb.Repos)
|
|
// r = forgepb.LoadJSON("go.wit.com/lib/protobuf/forgepb")
|
|
|
|
new1 := new(forgepb.Repo)
|
|
new1.Name = "bash"
|
|
new1.Version = "5.2.21"
|
|
if all.Append(new1) {
|
|
log.Info("added", new1.Name, "ok")
|
|
} else {
|
|
log.Info("added", new1.Name, "failed")
|
|
}
|
|
|
|
new2 := new(forgepb.Repo)
|
|
new2.Name = "go-clone"
|
|
new2.Version = "0.6.8" // good version of the macos
|
|
if all.Append(new2) {
|
|
log.Info("added", new2.Name, "ok")
|
|
} else {
|
|
log.Info("added", new2.Name, "failed")
|
|
}
|
|
|
|
if all.Append(new2) {
|
|
log.Info("added", new2.Name, "ok (this is bad)")
|
|
} else {
|
|
log.Info("added", new2.Name, "failed (but ok)")
|
|
}
|
|
|
|
fmt.Println("packages are:", len(all.Repos))
|
|
return all
|
|
}
|