comparison 3rdpartylibs.sh @ 1270:27d1405e49de

add information about licenses to 3rdpartylibs.sh
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 21 Nov 2018 16:42:59 +0100
parents e23ae2c83427
children 251ee25accce
comparison
equal deleted inserted replaced
1269:a990a06d9c77 1270:27d1405e49de
1 #!/bin/sh 1 #!/bin/sh
2 go get -u -v github.com/jackc/pgx 2 go get -u -v github.com/jackc/pgx
3 # MIT
4
3 go get -u -v github.com/etcd-io/bbolt/... 5 go get -u -v github.com/etcd-io/bbolt/...
6 # MIT
7
4 go get -u -v github.com/mitchellh/go-homedir 8 go get -u -v github.com/mitchellh/go-homedir
9 # MIT
10
5 go get -u -v github.com/spf13/cobra 11 go get -u -v github.com/spf13/cobra
12 # Apache-2.0
13
6 go get -u -v github.com/spf13/viper 14 go get -u -v github.com/spf13/viper
15 # MIT
16
7 go get -u -v github.com/gorilla/mux 17 go get -u -v github.com/gorilla/mux
18 # BSD-3-Clause
19
8 go get -u -v gopkg.in/gomail.v2 20 go get -u -v gopkg.in/gomail.v2
21 # MIT
22
9 go get -u -v github.com/rs/cors 23 go get -u -v github.com/rs/cors
24 # MIT
25
10 go get -u -v golang.org/x/net/html/charset 26 go get -u -v golang.org/x/net/html/charset
27 # Go License (aka BSD-3-Clause?)
28
11 go get -u -v github.com/golang/snappy 29 go get -u -v github.com/golang/snappy
30 # BSD-3-Clause
31
12 go get -u -v github.com/jonas-p/go-shp 32 go get -u -v github.com/jonas-p/go-shp
33 # MIT
34
35 ## list of additional licenses that get fetched and installed as dependencies
36 # github.com/fsnotify/fsnotify/ BSD-3-Clause
37 # github.com/hashicorp/hcl/ MPL-2.0
38 # github.com/magiconair/properties/ BSD-2-Clause
39 # github.com/mitchellh/go-homedir/ MIT
40 # github.com/mitchellh/mapstructure MIT
41 # github.com/pelletier/go-toml/ MIT
42 # github.com/pkg/errors BSD-2-Clause
43 # github.com/spf13/afero/ Apache 2.0
44 # github.com/spf13/cast MIT
45 # github.com/spf13/jwalterweatherman MIT
46 # gopkg.in/yaml.v2/#