Switch vendoring mechanism from govendor to godep
parent
4d0dd1b9c1
commit
d1d1d43e2b
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"ImportPath": "github.com/tslocum/AnonIRCd",
|
||||
"GoVersion": "go1.7",
|
||||
"GodepVersion": "v79",
|
||||
"Deps": [
|
||||
{
|
||||
"ImportPath": "github.com/BurntSushi/toml",
|
||||
"Comment": "v0.3.0",
|
||||
"Rev": "b26d9c308763d68093482582cea63d69be07a0f0"
|
||||
},
|
||||
{
|
||||
"ImportPath": "github.com/orcaman/concurrent-map",
|
||||
"Rev": "2ae17bc4c860c83513ee50feb9746f3e50d7515d"
|
||||
},
|
||||
{
|
||||
"ImportPath": "gopkg.in/sorcix/irc.v2",
|
||||
"Comment": "v1.1.2-18-gb6c6bfc",
|
||||
"Rev": "b6c6bfcd035c95244a8b50de225b214ab678510a"
|
||||
},
|
||||
{
|
||||
"ImportPath": "gopkg.in/sorcix/irc.v2/internal",
|
||||
"Comment": "v1.1.2-18-gb6c6bfc",
|
||||
"Rev": "b6c6bfcd035c95244a8b50de225b214ab678510a"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
This directory tree is generated automatically by godep.
|
||||
|
||||
Please do not edit.
|
||||
|
||||
See https://github.com/tools/godep for more information.
|
|
@ -0,0 +1,5 @@
|
|||
TAGS
|
||||
tags
|
||||
.*.swp
|
||||
tomlcheck/tomlcheck
|
||||
toml.test
|
|
@ -0,0 +1,15 @@
|
|||
language: go
|
||||
go:
|
||||
- 1.1
|
||||
- 1.2
|
||||
- 1.3
|
||||
- 1.4
|
||||
- 1.5
|
||||
- 1.6
|
||||
- tip
|
||||
install:
|
||||
- go install ./...
|
||||
- go get github.com/BurntSushi/toml-test
|
||||
script:
|
||||
- export PATH="$PATH:$HOME/gopath/bin"
|
||||
- make test
|
|
@ -0,0 +1,16 @@
|
|||
language: go
|
||||
go_import_path: gopkg.in/sorcix/irc.v2
|
||||
go:
|
||||
- 1.0
|
||||
- 1.1
|
||||
- 1.2
|
||||
- 1.3
|
||||
- 1.4
|
||||
- 1.5
|
||||
- 1.6
|
||||
- tip
|
||||
script:
|
||||
- go test -v -bench=.
|
||||
matrix:
|
||||
allow_failures:
|
||||
- go: 1.0
|
|
@ -33,4 +33,4 @@
|
|||
// // Methods from both Encoder and Decoder are available
|
||||
// message, err := c.Decode()
|
||||
//
|
||||
package irc // import "gopkg.in/sorcix/irc.v2"
|
||||
package irc
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"comment": "",
|
||||
"ignore": "test",
|
||||
"package": [
|
||||
{
|
||||
"checksumSHA1": "pPH/BoINXxzYDObljpsGZbysMrw=",
|
||||
"path": "github.com/BurntSushi/toml",
|
||||
"revision": "b26d9c308763d68093482582cea63d69be07a0f0",
|
||||
"revisionTime": "2017-03-28T06:15:53Z"
|
||||
},
|
||||
{
|
||||
"checksumSHA1": "70JYmBNhbn7E46Bk1F6zRppWnDg=",
|
||||
"path": "github.com/orcaman/concurrent-map",
|
||||
"revision": "2ae17bc4c860c83513ee50feb9746f3e50d7515d",
|
||||
"revisionTime": "2017-03-28T08:05:53Z"
|
||||
},
|
||||
{
|
||||
"checksumSHA1": "Czv0Jgt3IUNiIuHOzkPu4EcNMbk=",
|
||||
"path": "gopkg.in/sorcix/irc.v2",
|
||||
"revision": "b6c6bfcd035c95244a8b50de225b214ab678510a",
|
||||
"revisionTime": "2017-03-29T09:19:25Z"
|
||||
},
|
||||
{
|
||||
"checksumSHA1": "745d6gaBv5Ni3YrPvslpM4BoU6A=",
|
||||
"path": "gopkg.in/sorcix/irc.v2/internal",
|
||||
"revision": "b6c6bfcd035c95244a8b50de225b214ab678510a",
|
||||
"revisionTime": "2017-03-29T09:19:25Z"
|
||||
}
|
||||
],
|
||||
"rootPath": "github.com/tslocum/AnonIRCd"
|
||||
}
|
Loading…
Reference in New Issue