File tree Expand file tree Collapse file tree
github.com/ringsaturn/tzf
go.mongodb.org/mongo-driver/v2 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 go test -v -bench=. ./...
1717
1818dep-licenses :
19- go-licenses save ./ --save_path=THIRD_PARTY_LICENSES
20- build_notice.sh
21-
22- modernize :
23- go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix=true ./...
19+ rm -rf THIRD_PARTY_LICENSES
20+ go run github.com/google/go-licenses/v2@latest save ./ --save_path=THIRD_PARTY_LICENSES
21+ bash build_notice.sh
Original file line number Diff line number Diff line change 33This product includes software developed by [github.com/ringsaturn/tzf].
44------------------------------------------------------------------------
55
6- protobuf
6+ google.golang.org/ protobuf
77License: MIT
88Copyright (c) 2018 The Go Authors. All rights reserved.
99
10- mongo-driver
10+ go.mongodb.org/ mongo-driver/v2
1111License: Apache
1212 "Licensor" shall mean the copyright owner or entity authorized by
1313
14- mapstructure
14+ github.com/mitchellh/ mapstructure
1515License: MIT
1616Copyright (c) 2013 Mitchell Hashimoto
1717
18- go-polyline
18+ github.com/twpayne/ go-polyline
1919License: MIT
2020Copyright (c) 2013, Tom Payne
2121
22- geometry
22+ github.com/tidwall/geojson/ geometry
2323License: MIT
2424Copyright (c) 2018 Josh Baker
2525
26- child
26+ github.com/tidwall/geoindex/ child
2727License: MIT
2828Copyright (c) 2018 Josh Baker
2929
30- rtree
30+ github.com/tidwall/ rtree
3131License: MIT
3232Copyright (c) 2021 Josh Baker
3333
34- tzf
34+ github.com/ringsaturn/ tzf
3535License: MIT
3636Copyright (c) 2022 ringsaturn
3737
38- maps
38+ github.com/ringsaturn/tzf/internal/ maps
3939License: MIT
4040Copyright 2009 The Go Authors.
Original file line number Diff line number Diff line change 33This product includes software developed by [github.com/ringsaturn/tzf].
44------------------------------------------------------------------------
55
6- protobuf
6+ google.golang.org/ protobuf
77License: MIT
88Copyright (c) 2018 The Go Authors. All rights reserved.
99
10- mongo-driver
10+ go.mongodb.org/ mongo-driver/v2
1111License: Apache
1212 "Licensor" shall mean the copyright owner or entity authorized by
1313
14- exp
15- License: MIT
16- Copyright (c) 2009 The Go Authors. All rights reserved.
17-
18- mapstructure
14+ github.com/mitchellh/mapstructure
1915License: MIT
2016Copyright (c) 2013 Mitchell Hashimoto
2117
22- go-polyline
18+ github.com/twpayne/ go-polyline
2319License: MIT
2420Copyright (c) 2013, Tom Payne
2521
26- geometry
22+ github.com/tidwall/geojson/ geometry
2723License: MIT
2824Copyright (c) 2018 Josh Baker
2925
30- child
26+ github.com/tidwall/geoindex/ child
3127License: MIT
3228Copyright (c) 2018 Josh Baker
3329
34- rtree
30+ github.com/tidwall/ rtree
3531License: MIT
3632Copyright (c) 2021 Josh Baker
3733
38- tzf
34+ github.com/ringsaturn/ tzf
3935License: MIT
4036Copyright (c) 2022 ringsaturn
37+
38+ github.com/ringsaturn/tzf/internal/maps
39+ License: MIT
40+ Copyright 2009 The Go Authors.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ echo "This product includes software developed by [github.com/ringsaturn/tzf]."
44echo " ------------------------------------------------------------------------" >> NOTICE
55
66for license_file in $( find THIRD_PARTY_LICENSES -name LICENSE) ; do
7- dependency=$( basename $( dirname $license_file ) )
7+ dependency=$( dirname $license_file | sed ' s|^THIRD_PARTY_LICENSES/|| ' )
88 license_type=$( grep -E -o " (MIT|BSD|Apache)" $license_file | head -1)
99 copyright=$( grep -i " copyright" $license_file | head -1)
1010
You can’t perform that action at this time.
0 commit comments