mirror of
https://github.com/containers/podman.git
synced 2025-09-27 16:54:42 +08:00
vendor github.com/mtrmac/gpgme@v0.1.2
Fixes a build regression on CentOS 7 and RHEL 7 with older gpgme versions. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
1
go.mod
1
go.mod
@ -45,6 +45,7 @@ require (
|
|||||||
github.com/json-iterator/go v1.1.9
|
github.com/json-iterator/go v1.1.9
|
||||||
github.com/mrtazz/checkmake v0.0.0-20191009095831-03dd76b964dd // indirect
|
github.com/mrtazz/checkmake v0.0.0-20191009095831-03dd76b964dd // indirect
|
||||||
github.com/mrunalp/fileutils v0.0.0-20171103030105-7d4729fb3618
|
github.com/mrunalp/fileutils v0.0.0-20171103030105-7d4729fb3618
|
||||||
|
github.com/mtrmac/gpgme v0.1.2 // indirect
|
||||||
github.com/olekukonko/tablewriter v0.0.4 // indirect
|
github.com/olekukonko/tablewriter v0.0.4 // indirect
|
||||||
github.com/onsi/ginkgo v1.11.0
|
github.com/onsi/ginkgo v1.11.0
|
||||||
github.com/onsi/gomega v1.9.0
|
github.com/onsi/gomega v1.9.0
|
||||||
|
2
go.sum
2
go.sum
@ -376,6 +376,8 @@ github.com/mtrmac/gpgme v0.0.0-20170102180018-b2432428689c h1:xa+eQWKuJ9MbB9FBL/
|
|||||||
github.com/mtrmac/gpgme v0.0.0-20170102180018-b2432428689c/go.mod h1:GhAqVMEWnTcW2dxoD/SO3n2enrgWl3y6Dnx4m59GvcA=
|
github.com/mtrmac/gpgme v0.0.0-20170102180018-b2432428689c/go.mod h1:GhAqVMEWnTcW2dxoD/SO3n2enrgWl3y6Dnx4m59GvcA=
|
||||||
github.com/mtrmac/gpgme v0.1.1 h1:a5ISnvahzTzBH0m/klhehN68N+9+/jLwhpPFtH3oPAQ=
|
github.com/mtrmac/gpgme v0.1.1 h1:a5ISnvahzTzBH0m/klhehN68N+9+/jLwhpPFtH3oPAQ=
|
||||||
github.com/mtrmac/gpgme v0.1.1/go.mod h1:GYYHnGSuS7HK3zVS2n3y73y0okK/BeKzwnn5jgiVFNI=
|
github.com/mtrmac/gpgme v0.1.1/go.mod h1:GYYHnGSuS7HK3zVS2n3y73y0okK/BeKzwnn5jgiVFNI=
|
||||||
|
github.com/mtrmac/gpgme v0.1.2 h1:dNOmvYmsrakgW7LcgiprD0yfRuQQe8/C8F6Z+zogO3s=
|
||||||
|
github.com/mtrmac/gpgme v0.1.2/go.mod h1:GYYHnGSuS7HK3zVS2n3y73y0okK/BeKzwnn5jgiVFNI=
|
||||||
github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
|
github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
|
||||||
github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
|
github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
|
||||||
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw=
|
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw=
|
||||||
|
5
vendor/github.com/mtrmac/gpgme/go_gpgme.h
generated
vendored
5
vendor/github.com/mtrmac/gpgme/go_gpgme.h
generated
vendored
@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
#include <gpgme.h>
|
#include <gpgme.h>
|
||||||
|
|
||||||
|
/* GPGME_VERSION_NUMBER was introduced in 1.4.0 */
|
||||||
|
#if !defined(GPGME_VERSION_NUMBER) || GPGME_VERSION_NUMBER < 0x010402
|
||||||
|
typedef off_t gpgme_off_t; /* Introduced in 1.4.2 */
|
||||||
|
#endif
|
||||||
|
|
||||||
extern ssize_t gogpgme_readfunc(void *handle, void *buffer, size_t size);
|
extern ssize_t gogpgme_readfunc(void *handle, void *buffer, size_t size);
|
||||||
extern ssize_t gogpgme_writefunc(void *handle, void *buffer, size_t size);
|
extern ssize_t gogpgme_writefunc(void *handle, void *buffer, size_t size);
|
||||||
extern off_t gogpgme_seekfunc(void *handle, off_t offset, int whence);
|
extern off_t gogpgme_seekfunc(void *handle, off_t offset, int whence);
|
||||||
|
2
vendor/modules.txt
vendored
2
vendor/modules.txt
vendored
@ -340,7 +340,7 @@ github.com/modern-go/reflect2
|
|||||||
github.com/morikuni/aec
|
github.com/morikuni/aec
|
||||||
# github.com/mrunalp/fileutils v0.0.0-20171103030105-7d4729fb3618
|
# github.com/mrunalp/fileutils v0.0.0-20171103030105-7d4729fb3618
|
||||||
github.com/mrunalp/fileutils
|
github.com/mrunalp/fileutils
|
||||||
# github.com/mtrmac/gpgme v0.1.1
|
# github.com/mtrmac/gpgme v0.1.2
|
||||||
github.com/mtrmac/gpgme
|
github.com/mtrmac/gpgme
|
||||||
# github.com/onsi/ginkgo v1.11.0
|
# github.com/onsi/ginkgo v1.11.0
|
||||||
github.com/onsi/ginkgo
|
github.com/onsi/ginkgo
|
||||||
|
Reference in New Issue
Block a user