view 3rdpartylibs.sh @ 4017:639bdb17c3f2

Fixed offset for fairway box This was broken by changeset: 4080:bf86f9a08733 user: Thomas Junk <thomas.junk@intevation.de> Date: Thu Jul 18 15:04:30 2019 +0200 summary: improve fairwaydiagram printing positioning For the record: I think the current implementation exceptionally flawed. Instead of adding extra offset parameters to the diagram elements the whole building block with all contained elements should be translated in one step, that would be less cluttered and less error prone...
author Sascha Wilde <wilde@intevation.de>
date Fri, 19 Jul 2019 16:59:25 +0200
parents 4b1184fa0326
children 5826d4de0e40
line wrap: on
line source

#!/bin/sh
go get -u -v github.com/jackc/pgx
# MIT

go get -u -v github.com/etcd-io/bbolt/...
# MIT

go get -u -v github.com/mitchellh/go-homedir
# MIT

go get -u -v github.com/spf13/cobra
# Apache-2.0

go get -u -v github.com/spf13/viper
# MIT

go get -u -v github.com/gorilla/mux
# BSD-3-Clause

go get -u -v gopkg.in/gomail.v2
# MIT

go get -u -v github.com/rs/cors
# MIT

go get -u -v golang.org/x/net/html/charset
# Go License (aka BSD-3-Clause?)

go get -u -v github.com/golang/snappy
# BSD-3-Clause

go get -u -v github.com/jonas-p/go-shp
# MIT

go get -u -v github.com/robfig/cron
# MIT

go get -u -v github.com/tidwall/rtree
# MIT

go get -u -v golang.org/x/sync/semaphore
# Go License (aka BSD-3-Clause?)

go get -u -v gonum.org/v1/gonum/stat
# BSD-3-Clause

go get -u -v github.com/sergi/go-diff/diffmatchpatch
# MIT
# Only used in tests.

# Only needed when generating SVG graphics for debugging.
# go get -u -v github.com/ajstarks/svgo
# Attribution 3.0 United States (CC BY 3.0 US)

## list of additional licenses that get fetched and installed as dependencies
# github.com/fsnotify/fsnotify/ BSD-3-Clause
# github.com/hashicorp/hcl/ MPL-2.0
# github.com/magiconair/properties/ BSD-2-Clause
# github.com/mitchellh/go-homedir/ MIT
# github.com/mitchellh/mapstructure MIT
# github.com/pelletier/go-toml/ MIT
# github.com/pkg/errors BSD-2-Clause
# github.com/spf13/afero/ Apache 2.0
# github.com/spf13/cast MIT
# github.com/spf13/jwalterweatherman MIT
# gopkg.in/yaml.v2/#