Fedora 33 and rawhide got an updated version of the azblob library. Sadly, it introduced a non-compatible API change. This commit does the same thing asa67baf5adid for kolo/xmlrpc: We now have two wrappers around the affected part of the API. Fedora 32 uses the wrapper around the old API, whereas Fedora 33 and 34 (and RHEL with its vendored deps) use the wrapper around the new API. The switch is implemented using go build flags and spec file magic. Seea67baf5afor more thoughts. Also, there's v0.11.1-0.20201209121048-6df5d9af221d in go.mod, why? The maintainers of azblob probably tagged a wrong commit with v0.12.0 which breaks go. The long v0.11.1-.* version is basically the proper v0.12.0 commit. See https://github.com/Azure/azure-storage-blob-go/issues/236 for more information. Signed-off-by: Ondřej Budai <ondrej@budai.cz>
30 lines
1.2 KiB
Modula-2
30 lines
1.2 KiB
Modula-2
module github.com/osbuild/osbuild-composer
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/Azure/azure-sdk-for-go v41.3.0+incompatible
|
|
github.com/Azure/azure-storage-blob-go v0.11.1-0.20201209121048-6df5d9af221d
|
|
github.com/Azure/go-autorest/autorest v0.10.0
|
|
github.com/Azure/go-autorest/autorest/azure/auth v0.4.2
|
|
github.com/Azure/go-autorest/autorest/to v0.3.0 // indirect
|
|
github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect
|
|
github.com/BurntSushi/toml v0.3.1
|
|
github.com/aws/aws-sdk-go v1.25.37
|
|
github.com/coreos/go-semver v0.3.0
|
|
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f
|
|
github.com/deepmap/oapi-codegen v1.3.12
|
|
github.com/go-chi/chi v4.0.2+incompatible
|
|
github.com/gobwas/glob v0.2.3
|
|
github.com/google/go-cmp v0.3.1
|
|
github.com/google/uuid v1.1.1
|
|
github.com/gophercloud/gophercloud v0.11.0
|
|
github.com/julienschmidt/httprouter v1.2.0
|
|
github.com/kolo/xmlrpc v0.0.0-20200310150728-e0350524596b
|
|
github.com/labstack/echo/v4 v4.1.11
|
|
github.com/stretchr/testify v1.5.1
|
|
github.com/ubccr/kerby v0.0.0-20170626144437-201a958fc453
|
|
github.com/vmware/govmomi v0.23.0
|
|
golang.org/x/net v0.0.0-20200202094626-16171245cfb2 // indirect
|
|
golang.org/x/sys v0.0.0-20200828194041-157a740278f4
|
|
)
|