|
|
|
%global with_devel 0
|
|
|
|
%global with_bundled 1
|
|
|
|
%global with_check 0
|
|
|
|
%global with_unit_test 0
|
|
|
|
%bcond_without varlink
|
|
|
|
%global with_debug 1
|
|
|
|
|
|
|
|
%if 0%{?with_debug}
|
|
|
|
%global _find_debuginfo_dwz_opts %{nil}
|
|
|
|
%global _dwz_low_mem_die_limit 0
|
|
|
|
%else
|
|
|
|
%global debug_package %{nil}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%define gobuild(o:) GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '" -a -v -x %{?**};
|
|
|
|
%ifarch ppc64
|
|
|
|
# certain options do not exist on ppc64 big endian
|
|
|
|
%define gobuild(o:) GO111MODULE=off go build -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -A
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%define gogenerate go generate
|
|
|
|
|
|
|
|
%define provider github
|
|
|
|
%define provider_tld com
|
|
|
|
%define project containers
|
|
|
|
%define repo libpod
|
|
|
|
# https://github.com/containers/libpod
|
|
|
|
%define import_path %{provider}.%{provider_tld}/%{project}/%{repo}
|
|
|
|
%define git0 https://%{import_path}
|
|
|
|
|
|
|
|
%define repo_plugins dnsname
|
|
|
|
# https://github.com/containers/libpod
|
|
|
|
%define import_path_plugins %{provider}.%{provider_tld}/%{project}/%{repo_plugins}
|
|
|
|
%define git_plugins https://github.com/containers/dnsname
|
|
|
|
%define commit_plugins 8ffd35849663cc69582c860d54f86868a3c19487
|
|
|
|
%define shortcommit_plugins %(c=%{commit_plugins}; echo ${c:0:7})
|
|
|
|
|
|
|
|
# Used for comparing with latest upstream tag
|
|
|
|
# to decide whether to autobuild (non-rawhide only)
|
|
|
|
%define built_tag v2.0.4
|
|
|
|
%define built_tag_strip %(b=%{built_tag}; echo ${b:1})
|
|
|
|
%define download_url %{git0}/archive/%{built_tag}.tar.gz
|
|
|
|
|
|
|
|
Name: podman
|
|
|
|
Version: 2.0.4
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Epoch: 2
|
|
|
|
Summary: Manage Pods, Containers and Container Images
|
|
|
|
License: ASL 2.0
|
|
|
|
URL: https://%{name}.io/
|
|
|
|
Source0: %{download_url}
|
|
|
|
# To build a random user's fork/commit, comment out above line,
|
|
|
|
# uncomment below Source0, and replace the placeholders with the right info
|
|
|
|
# Also, adjust %%prep section as necessary.
|
|
|
|
#Source0: https://github.com/$GITHUB_USER/$GITHUB_USER_REPO/archive/$BRANCH.tar.gz
|
|
|
|
Source1: https://github.com/containers/dnsname/archive/%{commit_plugins}/dnsname-%{shortcommit_plugins}.tar.gz
|
|
|
|
Provides: %{name}-manpages = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: %{name}-manpages < %{epoch}:%{version}-%{release}
|
|
|
|
# If go_compiler is not set to 1, there is no virtual provide. Use golang instead.
|
|
|
|
BuildRequires: golang
|
|
|
|
BuildRequires: glib2-devel
|
|
|
|
BuildRequires: glibc-devel
|
|
|
|
BuildRequires: glibc-static
|
|
|
|
BuildRequires: git
|
|
|
|
BuildRequires: go-md2man
|
|
|
|
BuildRequires: gpgme-devel
|
|
|
|
BuildRequires: libassuan-devel
|
|
|
|
BuildRequires: libgpg-error-devel
|
|
|
|
BuildRequires: libseccomp-devel
|
|
|
|
BuildRequires: libselinux-devel
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: systemd
|
|
|
|
BuildRequires: systemd-devel
|
|
|
|
Requires: containers-common
|
|
|
|
Requires: containernetworking-plugins >= 0.8.6-1
|
|
|
|
Requires: iptables
|
|
|
|
Requires: nftables
|
|
|
|
Requires: conmon >= 2:2.0.18-1
|
|
|
|
Requires: %{name}-plugins = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: oci-systemd-hook <= 0.2.0-3
|
|
|
|
BuildRequires: btrfs-progs-devel
|
|
|
|
BuildRequires: ostree-devel
|
|
|
|
Requires: fuse-overlayfs >= 0.3-8
|
|
|
|
#Requires: crun >= 0.13-2
|
|
|
|
Requires: libvarlink-util
|
|
|
|
Requires: catatonit
|
|
|
|
Requires: container-selinux
|
|
|
|
Requires: runc
|
|
|
|
Requires: slirp4netns >= 0.3.0-2
|
|
|
|
|
|
|
|
# vendored libraries
|
|
|
|
# awk '{print "Provides: bundled(golang("$1")) = "$2}' vendor.conf | sort
|
|
|
|
# [thanks to Carl George <carl@george.computer> for containerd.spec]
|
|
|
|
Provides: bundled(golang(github.com/Azure/go-ansiterm)) = 19f72df4d05d31cbe1c56bfc8045c96babff6c7e
|
|
|
|
Provides: bundled(golang(github.com/blang/semver)) = v3.5.0
|
|
|
|
Provides: bundled(golang(github.com/boltdb/bolt)) = master
|
|
|
|
Provides: bundled(golang(github.com/buger/goterm)) = 2f8dfbc7dbbff5dd1d391ed91482c24df243b2d3
|
|
|
|
Provides: bundled(golang(github.com/BurntSushi/toml)) = v0.2.0
|
|
|
|
Provides: bundled(golang(github.com/containerd/cgroups)) = 58556f5ad8448d99a6f7bea69ea4bdb7747cfeb0
|
|
|
|
Provides: bundled(golang(github.com/containerd/continuity)) = master
|
|
|
|
#Provides: bundled(golang(github.com/containernetworking/cni)) = v0.7.0-alpha1
|
|
|
|
Provides: bundled(golang(github.com/containernetworking/plugins)) = 1562a1e60ed101aacc5e08ed9dbeba8e9f3d4ec1
|
|
|
|
Provides: bundled(golang(github.com/containers/image)) = 85d7559d44fd71f30e46e43d809bfbf88d11d916
|
|
|
|
Provides: bundled(golang(github.com/containers/psgo)) = 5dde6da0bc8831b35243a847625bcf18183bd1ee
|
|
|
|
Provides: bundled(golang(github.com/containers/storage)) = 243c4cd616afdf06b4a975f18c4db083d26b1641
|
|
|
|
Provides: bundled(golang(github.com/coreos/go-iptables)) = 25d087f3cffd9aedc0c2b7eff25f23cbf3c20fe1
|
|
|
|
Provides: bundled(golang(github.com/coreos/go-systemd)) = v14
|
|
|
|
Provides: bundled(golang(github.com/cri-o/ocicni)) = master
|
|
|
|
Provides: bundled(golang(github.com/cyphar/filepath-securejoin)) = v0.2.1
|
|
|
|
Provides: bundled(golang(github.com/davecgh/go-spew)) = v1.1.0
|
|
|
|
Provides: bundled(golang(github.com/docker/distribution)) = 7a8efe719e55bbfaff7bc5718cdf0ed51ca821df
|
|
|
|
Provides: bundled(golang(github.com/docker/docker)) = 86f080cff0914e9694068ed78d503701667c4c00
|
|
|
|
Provides: bundled(golang(github.com/docker/docker-credential-helpers)) = d68f9aeca33f5fd3f08eeae5e9d175edf4e731d1
|
|
|
|
Provides: bundled(golang(github.com/docker/go-connections)) = 3ede32e2033de7505e6500d6c868c2b9ed9f169d
|
|
|
|
Provides: bundled(golang(github.com/docker/go-units)) = v0.3.2
|
|
|
|
Provides: bundled(golang(github.com/docker/libtrust)) = aabc10ec26b754e797f9028f4589c5b7bd90dc20
|
|
|
|
Provides: bundled(golang(github.com/docker/spdystream)) = ed496381df8283605c435b86d4fdd6f4f20b8c6e
|
|
|
|
Provides: bundled(golang(github.com/fatih/camelcase)) = f6a740d52f961c60348ebb109adde9f4635d7540
|
|
|
|
Provides: bundled(golang(github.com/fsnotify/fsnotify)) = 7d7316ed6e1ed2de075aab8dfc76de5d158d66e1
|
|
|
|
Provides: bundled(golang(github.com/fsouza/go-dockerclient)) = master
|
|
|
|
Provides: bundled(golang(github.com/ghodss/yaml)) = 04f313413ffd65ce25f2541bfd2b2ceec5c0908c
|
|
|
|
Provides: bundled(golang(github.com/godbus/dbus)) = a389bdde4dd695d414e47b755e95e72b7826432c
|
|
|
|
Provides: bundled(golang(github.com/gogo/protobuf)) = c0656edd0d9eab7c66d1eb0c568f9039345796f7
|
|
|
|
Provides: bundled(golang(github.com/golang/glog)) = 23def4e6c14b4da8ac2ed8007337bc5eb5007998
|
|
|
|
Provides: bundled(golang(github.com/golang/groupcache)) = b710c8433bd175204919eb38776e944233235d03
|
|
|
|
Provides: bundled(golang(github.com/golang/protobuf)) = 4bd1920723d7b7c925de087aa32e2187708897f7
|
|
|
|
Provides: bundled(golang(github.com/googleapis/gnostic)) = 0c5108395e2debce0d731cf0287ddf7242066aba
|
|
|
|
Provides: bundled(golang(github.com/google/gofuzz)) = 44d81051d367757e1c7c6a5a86423ece9afcf63c
|
|
|
|
Provides: bundled(golang(github.com/gorilla/context)) = v1.1
|
|
|
|
Provides: bundled(golang(github.com/gorilla/mux)) = v1.3.0
|
|
|
|
Provides: bundled(golang(github.com/hashicorp/errwrap)) = 7554cd9344cec97297fa6649b055a8c98c2a1e55
|
|
|
|
Provides: bundled(golang(github.com/hashicorp/golang-lru)) = 0a025b7e63adc15a622f29b0b2c4c3848243bbf6
|
|
|
|
Provides: bundled(golang(github.com/hashicorp/go-multierror)) = 83588e72410abfbe4df460eeb6f30841ae47d4c4
|
|
|
|
Provides: bundled(golang(github.com/imdario/mergo)) = 0.2.2
|
|
|
|
Provides: bundled(golang(github.com/json-iterator/go)) = 1.0.0
|
|
|
|
Provides: bundled(golang(github.com/kr/pty)) = v1.0.0
|
|
|
|
Provides: bundled(golang(github.com/mailru/easyjson)) = 03f2033d19d5860aef995fe360ac7d395cd8ce65
|
|
|
|
Provides: bundled(golang(github.com/mattn/go-runewidth)) = v0.0.1
|
|
|
|
Provides: bundled(golang(github.com/Microsoft/go-winio)) = 78439966b38d69bf38227fbf57ac8a6fee70f69a
|
|
|
|
Provides: bundled(golang(github.com/Microsoft/hcsshim)) = 43f9725307998e09f2e3816c2c0c36dc98f0c982
|
|
|
|
Provides: bundled(golang(github.com/mistifyio/go-zfs)) = v2.1.1
|
|
|
|
Provides: bundled(golang(github.com/mrunalp/fileutils)) = master
|
|
|
|
Provides: bundled(golang(github.com/mtrmac/gpgme)) = b2432428689ca58c2b8e8dea9449d3295cf96fc9
|
|
|
|
Provides: bundled(golang(github.com/Nvveen/Gotty)) = master
|
|
|
|
#Provides: bundled(golang(github.com/opencontainers/go-digest)) = v1.0.0-rc0
|
|
|
|
Provides: bundled(golang(github.com/opencontainers/image-spec)) = v1.0.0
|
|
|
|
Provides: bundled(golang(github.com/opencontainers/runc)) = b4e2ecb452d9ee4381137cc0a7e6715b96bed6de
|
|
|
|
Provides: bundled(golang(github.com/opencontainers/runtime-spec)) = d810dbc60d8c5aeeb3d054bd1132fab2121968ce
|
|
|
|
Provides: bundled(golang(github.com/opencontainers/runtime-tools)) = master
|
|
|
|
Provides: bundled(golang(github.com/opencontainers/selinux)) = b6fa367ed7f534f9ba25391cc2d467085dbb445a
|
|
|
|
Provides: bundled(golang(github.com/openshift/imagebuilder)) = master
|
|
|
|
Provides: bundled(golang(github.com/ostreedev/ostree-go)) = master
|
|
|
|
Provides: bundled(golang(github.com/pkg/errors)) = v0.8.0
|
|
|
|
Provides: bundled(golang(github.com/pmezard/go-difflib)) = 792786c7400a136282c1664665ae0a8db921c6c2
|
|
|
|
Provides: bundled(golang(github.com/pquerna/ffjson)) = d49c2bc1aa135aad0c6f4fc2056623ec78f5d5ac
|
|
|
|
Provides: bundled(golang(github.com/projectatomic/buildah)) = af5bbde0180026ae87b7fc81c2dc124aa73ec959
|
|
|
|
Provides: bundled(golang(github.com/seccomp/containers-golang)) = master
|
|
|
|
Provides: bundled(golang(github.com/seccomp/libseccomp-golang)) = v0.9.0
|
|
|
|
Provides: bundled(golang(github.com/sirupsen/logrus)) = v1.0.0
|
|
|
|
Provides: bundled(golang(github.com/spf13/pflag)) = 9ff6c6923cfffbcd502984b8e0c80539a94968b7
|
|
|
|
Provides: bundled(golang(github.com/stretchr/testify)) = 4d4bfba8f1d1027c4fdbe371823030df51419987
|
|
|
|
Provides: bundled(golang(github.com/syndtr/gocapability)) = e7cb7fa329f456b3855136a2642b197bad7366ba
|
|
|
|
Provides: bundled(golang(github.com/tchap/go-patricia)) = v2.2.6
|
|
|
|
Provides: bundled(golang(github.com/ulikunitz/xz)) = v0.5.4
|
|
|
|
Provides: bundled(golang(github.com/ulule/deepcopier)) = master
|
|
|
|
Provides: bundled(golang(github.com/urfave/cli)) = 934abfb2f102315b5794e15ebc7949e4ca253920
|
|
|
|
Provides: bundled(golang(github.com/varlink/go)) = master
|
|
|
|
Provides: bundled(golang(github.com/vbatts/tar-split)) = v0.10.2
|
|
|
|
Provides: bundled(golang(github.com/vishvananda/netlink)) = master
|
|
|
|
Provides: bundled(golang(github.com/vishvananda/netns)) = master
|
|
|
|
Provides: bundled(golang(github.com/xeipuuv/gojsonpointer)) = master
|
|
|
|
Provides: bundled(golang(github.com/xeipuuv/gojsonreference)) = master
|
|
|
|
Provides: bundled(golang(github.com/xeipuuv/gojsonschema)) = master
|
|
|
|
Provides: bundled(golang(golang.org/x/crypto)) = 81e90905daefcd6fd217b62423c0908922eadb30
|
|
|
|
Provides: bundled(golang(golang.org/x/net)) = c427ad74c6d7a814201695e9ffde0c5d400a7674
|
|
|
|
Provides: bundled(golang(golang.org/x/sys)) = master
|
|
|
|
Provides: bundled(golang(golang.org/x/text)) = f72d8390a633d5dfb0cc84043294db9f6c935756
|
|
|
|
Provides: bundled(golang(golang.org/x/time)) = f51c12702a4d776e4c1fa9b0fabab841babae631
|
|
|
|
Provides: bundled(golang(google.golang.org/grpc)) = v1.0.4
|
|
|
|
Provides: bundled(golang(gopkg.in/cheggaaa/pb.v1)) = v1.0.7
|
|
|
|
Provides: bundled(golang(gopkg.in/inf.v0)) = v0.9.0
|
|
|
|
Provides: bundled(golang(gopkg.in/mgo.v2)) = v2
|
|
|
|
Provides: bundled(golang(gopkg.in/square/go-jose.v2)) = v2.1.3
|
|
|
|
Provides: bundled(golang(gopkg.in/yaml.v2)) = v2
|
|
|
|
Provides: bundled(golang(k8s.io/api)) = 5ce4aa0bf2f097f6021127b3d879eeda82026be8
|
|
|
|
Provides: bundled(golang(k8s.io/apiextensions-apiserver)) = 1b31e26d82f1ec2e945c560790e98f34bb5f2e63
|
|
|
|
Provides: bundled(golang(k8s.io/apimachinery)) = 616b23029fa3dc3e0ccefd47963f5651a6543d94
|
|
|
|
Provides: bundled(golang(k8s.io/apiserver)) = 4d1163080139f1f9094baf8a3a6099e85e1867f6
|
|
|
|
Provides: bundled(golang(k8s.io/client-go)) = 7cd1d3291b7d9b1e2d54d4b69eb65995eaf8888e
|
|
|
|
Provides: bundled(golang(k8s.io/kube-openapi)) = 275e2ce91dec4c05a4094a7b1daee5560b555ac9
|
|
|
|
Provides: bundled(golang(k8s.io/utils)) = 258e2a2fa64568210fbd6267cf1d8fd87c3cb86e
|
|
|
|
|
|
|
|
%description
|
|
|
|
%{name} (Pod Manager) is a fully featured container engine that is a simple
|
|
|
|
daemonless tool. %{name} provides a Docker-CLI comparable command line that
|
|
|
|
eases the transition from other container engines and allows the management of
|
|
|
|
pods, containers and images. Simply put: alias docker=%{name}.
|
|
|
|
Most %{name} commands can be run as a regular user, without requiring
|
|
|
|
additional privileges.
|
|
|
|
|
|
|
|
%{name} uses Buildah(1) internally to create container images.
|
|
|
|
Both tools share image (not container) storage, hence each can use or
|
|
|
|
manipulate images (but not containers) created by the other.
|
|
|
|
|
|
|
|
%{summary}
|
|
|
|
%{name} is a simple management tool for pods, containers and images
|
|
|
|
|
|
|
|
%package docker
|
|
|
|
Summary: Emulate Docker CLI using %{name}
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
|
|
Conflicts: docker
|
|
|
|
Conflicts: docker-latest
|
|
|
|
Conflicts: docker-ce
|
|
|
|
Conflicts: docker-ee
|
|
|
|
Conflicts: moby-engine
|
|
|
|
|
|
|
|
%description docker
|
|
|
|
This package installs a script named docker that emulates the Docker CLI by
|
|
|
|
executes %{name} commands, it also creates links between all Docker CLI man
|
|
|
|
pages and %{name}.
|
|
|
|
|
|
|
|
%if 0%{?with_devel}
|
|
|
|
%package devel
|
|
|
|
Summary: Library for applications looking to use Container Pods
|
|
|
|
BuildArch: noarch
|
|
|
|
Provides: %{repo}-devel = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
%if 0%{?with_check} && ! 0%{?with_bundled}
|
|
|
|
BuildRequires: golang(github.com/BurntSushi/toml)
|
|
|
|
BuildRequires: golang(github.com/containerd/cgroups)
|
|
|
|
BuildRequires: golang(github.com/containernetworking/plugins/pkg/ns)
|
|
|
|
BuildRequires: golang(github.com/containers/image/copy)
|
|
|
|
BuildRequires: golang(github.com/containers/image/directory)
|
|
|
|
BuildRequires: golang(github.com/containers/image/docker)
|
|
|
|
BuildRequires: golang(github.com/containers/image/docker/archive)
|
|
|
|
BuildRequires: golang(github.com/containers/image/docker/reference)
|
|
|
|
BuildRequires: golang(github.com/containers/image/docker/tarfile)
|
|
|
|
BuildRequires: golang(github.com/containers/image/image)
|
|
|
|
BuildRequires: golang(github.com/containers/image/oci/archive)
|
|
|
|
BuildRequires: golang(github.com/containers/image/pkg/strslice)
|
|
|
|
BuildRequires: golang(github.com/containers/image/pkg/sysregistries)
|
|
|
|
BuildRequires: golang(github.com/containers/image/signature)
|
|
|
|
BuildRequires: golang(github.com/containers/image/storage)
|
|
|
|
BuildRequires: golang(github.com/containers/image/tarball)
|
|
|
|
BuildRequires: golang(github.com/containers/image/transports/alltransports)
|
|
|
|
BuildRequires: golang(github.com/containers/image/types)
|
|
|
|
BuildRequires: golang(github.com/containers/storage)
|
|
|
|
BuildRequires: golang(github.com/containers/storage/pkg/archive)
|
|
|
|
BuildRequires: golang(github.com/containers/storage/pkg/idtools)
|
|
|
|
BuildRequires: golang(github.com/containers/storage/pkg/reexec)
|
|
|
|
BuildRequires: golang(github.com/coreos/go-systemd/dbus)
|
|
|
|
BuildRequires: golang(github.com/cri-o/ocicni/pkg/ocicni)
|
|
|
|
BuildRequires: golang(github.com/docker/distribution/reference)
|
|
|
|
BuildRequires: golang(github.com/docker/docker/daemon/caps)
|
|
|
|
BuildRequires: golang(github.com/docker/docker/pkg/mount)
|
|
|
|
BuildRequires: golang(github.com/docker/docker/pkg/namesgenerator)
|
|
|
|
BuildRequires: golang(github.com/docker/docker/pkg/stringid)
|
|
|
|
BuildRequires: golang(github.com/docker/docker/pkg/system)
|
|
|
|
BuildRequires: golang(github.com/docker/docker/pkg/term)
|
|
|
|
BuildRequires: golang(github.com/docker/docker/pkg/truncindex)
|
|
|
|
BuildRequires: golang(github.com/ghodss/yaml)
|
|
|
|
BuildRequires: golang(github.com/godbus/dbus)
|
|
|
|
BuildRequires: golang(github.com/mattn/go-sqlite3)
|
|
|
|
BuildRequires: golang(github.com/mrunalp/fileutils)
|
|
|
|
BuildRequires: golang(github.com/opencontainers/go-digest)
|
|
|
|
BuildRequires: golang(github.com/opencontainers/image-spec/specs-go/v1)
|
|
|
|
BuildRequires: golang(github.com/opencontainers/runc/libcontainer)
|
|
|
|
BuildRequires: golang(github.com/opencontainers/runtime-spec/specs-go)
|
|
|
|
BuildRequires: golang(github.com/opencontainers/runtime-tools/generate)
|
|
|
|
BuildRequires: golang(github.com/opencontainers/selinux/go-selinux)
|
|
|
|
BuildRequires: golang(github.com/opencontainers/selinux/go-selinux/label)
|
|
|
|
BuildRequires: golang(github.com/pkg/errors)
|
|
|
|
BuildRequires: golang(github.com/sirupsen/logrus)
|
|
|
|
BuildRequires: golang(github.com/ulule/deepcopier)
|
|
|
|
BuildRequires: golang(golang.org/x/crypto/ssh/terminal)
|
|
|
|
BuildRequires: golang(golang.org/x/sys/unix)
|
|
|
|
BuildRequires: golang(k8s.io/apimachinery/pkg/util/wait)
|
|
|
|
BuildRequires: golang(k8s.io/client-go/tools/remotecommand)
|
|
|
|
BuildRequires: golang(k8s.io/kubernetes/pkg/kubelet/container)
|
|
|
|
%endif
|
|
|
|
|
|
|
|
Requires: golang(github.com/BurntSushi/toml)
|
|
|
|
Requires: golang(github.com/containerd/cgroups)
|
|
|
|
Requires: golang(github.com/containernetworking/plugins/pkg/ns)
|
|
|
|
Requires: golang(github.com/containers/image/copy)
|
|
|
|
Requires: golang(github.com/containers/image/directory)
|
|
|
|
Requires: golang(github.com/containers/image/docker)
|
|
|
|
Requires: golang(github.com/containers/image/docker/archive)
|
|
|
|
Requires: golang(github.com/containers/image/docker/reference)
|
|
|
|
Requires: golang(github.com/containers/image/docker/tarfile)
|
|
|
|
Requires: golang(github.com/containers/image/image)
|
|
|
|
Requires: golang(github.com/containers/image/oci/archive)
|
|
|
|
Requires: golang(github.com/containers/image/pkg/strslice)
|
|
|
|
Requires: golang(github.com/containers/image/pkg/sysregistries)
|
|
|
|
Requires: golang(github.com/containers/image/signature)
|
|
|
|
Requires: golang(github.com/containers/image/storage)
|
|
|
|
Requires: golang(github.com/containers/image/tarball)
|
|
|
|
Requires: golang(github.com/containers/image/transports/alltransports)
|
|
|
|
Requires: golang(github.com/containers/image/types)
|
|
|
|
Requires: golang(github.com/containers/storage)
|
|
|
|
Requires: golang(github.com/containers/storage/pkg/archive)
|
|
|
|
Requires: golang(github.com/containers/storage/pkg/idtools)
|
|
|
|
Requires: golang(github.com/containers/storage/pkg/reexec)
|
|
|
|
Requires: golang(github.com/coreos/go-systemd/dbus)
|
|
|
|
Requires: golang(github.com/cri-o/ocicni/pkg/ocicni)
|
|
|
|
Requires: golang(github.com/docker/distribution/reference)
|
|
|
|
Requires: golang(github.com/docker/docker/daemon/caps)
|
|
|
|
Requires: golang(github.com/docker/docker/pkg/mount)
|
|
|
|
Requires: golang(github.com/docker/docker/pkg/namesgenerator)
|
|
|
|
Requires: golang(github.com/docker/docker/pkg/stringid)
|
|
|
|
Requires: golang(github.com/docker/docker/pkg/system)
|
|
|
|
Requires: golang(github.com/docker/docker/pkg/term)
|
|
|
|
Requires: golang(github.com/docker/docker/pkg/truncindex)
|
|
|
|
Requires: golang(github.com/ghodss/yaml)
|
|
|
|
Requires: golang(github.com/godbus/dbus)
|
|
|
|
Requires: golang(github.com/mattn/go-sqlite3)
|
|
|
|
Requires: golang(github.com/mrunalp/fileutils)
|
|
|
|
Requires: golang(github.com/opencontainers/go-digest)
|
|
|
|
Requires: golang(github.com/opencontainers/image-spec/specs-go/v1)
|
|
|
|
Requires: golang(github.com/opencontainers/runc/libcontainer)
|
|
|
|
Requires: golang(github.com/opencontainers/runtime-spec/specs-go)
|
|
|
|
Requires: golang(github.com/opencontainers/runtime-tools/generate)
|
|
|
|
Requires: golang(github.com/opencontainers/selinux/go-selinux)
|
|
|
|
Requires: golang(github.com/opencontainers/selinux/go-selinux/label)
|
|
|
|
Requires: golang(github.com/pkg/errors)
|
|
|
|
Requires: golang(github.com/sirupsen/logrus)
|
|
|
|
Requires: golang(github.com/ulule/deepcopier)
|
|
|
|
Requires: golang(golang.org/x/crypto/ssh/terminal)
|
|
|
|
Requires: golang(golang.org/x/sys/unix)
|
|
|
|
Requires: golang(k8s.io/apimachinery/pkg/util/wait)
|
|
|
|
Requires: golang(k8s.io/client-go/tools/remotecommand)
|
|
|
|
Requires: golang(k8s.io/kubernetes/pkg/kubelet/container)
|
|
|
|
|
|
|
|
Provides: golang(%{import_path}/cmd/%{name}/docker) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/cmd/%{name}/formats) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/libkpod) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/libpod) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/libpod/common) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/libpod/driver) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/libpod/layers) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/pkg/annotations) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/pkg/chrootuser) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/pkg/registrar) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/pkg/storage) = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: golang(%{import_path}/utils) = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libpod-devel
|
|
|
|
%{summary}
|
|
|
|
|
|
|
|
This package contains library source intended for
|
|
|
|
building other packages which use import path with
|
|
|
|
%{import_path} prefix.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if 0%{?with_unit_test} && 0%{?with_devel}
|
|
|
|
%package unit-test-devel
|
|
|
|
Summary: Unit tests for %{name} package
|
|
|
|
%if 0%{?with_check}
|
|
|
|
#Here comes all BuildRequires: PACKAGE the unit tests
|
|
|
|
#in %%check section need for running
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# test subpackage tests code from devel subpackage
|
|
|
|
Requires: %{name}-devel = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
%if 0%{?with_check} && ! 0%{?with_bundled}
|
|
|
|
BuildRequires: golang(github.com/stretchr/testify/assert)
|
|
|
|
BuildRequires: golang(github.com/urfave/cli)
|
|
|
|
%endif
|
|
|
|
|
|
|
|
Requires: golang(github.com/stretchr/testify/assert)
|
|
|
|
Requires: golang(github.com/urfave/cli)
|
|
|
|
|
|
|
|
%description unit-test-devel
|
|
|
|
%{summary}
|
|
|
|
%{name} provides a library for applications looking to use the
|
|
|
|
Container Pod concept popularized by Kubernetes.
|
|
|
|
|
|
|
|
This package contains unit tests for project
|
|
|
|
providing packages with %{import_path} prefix.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%package tests
|
|
|
|
Summary: Tests for %{name}
|
|
|
|
|
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: bats
|
|
|
|
Requires: jq
|
|
|
|
Requires: skopeo
|
|
|
|
Requires: nmap-ncat
|
|
|
|
|
|
|
|
%description tests
|
|
|
|
%{summary}
|
|
|
|
|
|
|
|
This package contains system tests for %{name}
|
|
|
|
|
|
|
|
%package remote
|
|
|
|
Summary: (Experimental) Remote client for managing %{name} containers
|
|
|
|
|
|
|
|
%description remote
|
|
|
|
Remote client for managing %{name} containers.
|
|
|
|
|
|
|
|
This experimental remote client is under heavy development. Please do not
|
|
|
|
run %{name}-remote in production.
|
|
|
|
|
|
|
|
%{name}-remote uses the varlink connection to connect to a %{name} client to
|
|
|
|
manage pods, containers and container images. %{name}-remote supports ssh
|
|
|
|
connections as well.
|
|
|
|
|
|
|
|
%package plugins
|
|
|
|
Summary: Plugins for %{name}
|
|
|
|
|
|
|
|
%description plugins
|
|
|
|
This plugin sets up the use of dnsmasq on a given CNI network so
|
|
|
|
that Pods can resolve each other by name. When configured,
|
|
|
|
the pod and its IP address are added to a network specific hosts file
|
|
|
|
that dnsmasq will read in. Similarly, when a pod
|
|
|
|
is removed from the network, it will remove the entry from the hosts
|
|
|
|
file. Each CNI network will have its own dnsmasq instance.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -Sgit -n %{name}-%{built_tag_strip}
|
|
|
|
# If you have replaced Source0 for building a random commit, uncomment
|
|
|
|
# comment out the autosetup line above and uncomment below autosetup line
|
|
|
|
# Use appropriate value for $BRANCH as in Source0
|
|
|
|
#%%autosetup -Sgit -n %%{name}-$BRANCH
|
|
|
|
|
|
|
|
# untar dnsname
|
|
|
|
tar zxf %{SOURCE1}
|
|
|
|
|
|
|
|
%build
|
|
|
|
export GO111MODULE=off
|
|
|
|
|
|
|
|
# build plugins first cause we don't wanna use podman's buildtags
|
|
|
|
pushd dnsname-%{commit_plugins}
|
|
|
|
mkdir _build
|
|
|
|
pushd _build
|
|
|
|
mkdir -p src/%{provider}.%{provider_tld}/%{project}
|
|
|
|
ln -s ../../../../ src/%{import_path_plugins}
|
|
|
|
popd
|
|
|
|
ln -s vendor src
|
|
|
|
export GOPATH=$(pwd)/_build:$(pwd)
|
|
|
|
%gobuild -o bin/dnsname %{import_path_plugins}/plugins/meta/dnsname
|
|
|
|
popd
|
|
|
|
|
|
|
|
export GOPATH=$(pwd)/_build:$(pwd)
|
|
|
|
mkdir _build
|
|
|
|
pushd _build
|
|
|
|
mkdir -p src/%{provider}.%{provider_tld}/%{project}
|
|
|
|
ln -s ../../../../ src/%{import_path}
|
|
|
|
popd
|
|
|
|
ln -s vendor src
|
|
|
|
|
|
|
|
%gogenerate ./pkg/varlink/...
|
|
|
|
|
|
|
|
# build %%{name}
|
|
|
|
export BUILDTAGS="systemd seccomp exclude_graphdriver_devicemapper $(hack/btrfs_installed_tag.sh) $(hack/btrfs_tag.sh) $(hack/libdm_tag.sh) $(hack/ostree_tag.sh) $(hack/selinux_tag.sh)"
|
|
|
|
export BUILDTAGS+=" varlink"
|
|
|
|
### ### ### !export BUILDTAGS+=" exclude_graphdriver_btrfs containers_image_ostree_stub"
|
|
|
|
%ifarch ppc64
|
|
|
|
export CGO_ENABLED=1
|
|
|
|
%endif
|
|
|
|
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
|
|
|
|
|
|
|
|
# build %%{name}-remote
|
|
|
|
export BUILDTAGS+=" remote"
|
|
|
|
%gobuild -o bin/%{name}-remote %{import_path}/cmd/%{name}
|
|
|
|
%ifarch ppc64
|
|
|
|
unset CGO_ENABLED
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{__make} docs
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf docs/containers-mounts.conf.5.md
|
|
|
|
|
|
|
|
PODMAN_VERSION=%{version} %{__make} PREFIX=%{buildroot}%{_prefix} \
|
|
|
|
ETCDIR=%{buildroot}%{_sysconfdir} \
|
|
|
|
BUILDTAGS="varlink" \
|
|
|
|
install.bin-nobuild \
|
|
|
|
install.remote-nobuild \
|
|
|
|
install.man-nobuild \
|
|
|
|
install.cni \
|
|
|
|
install.systemd \
|
|
|
|
install.completions \
|
|
|
|
install.docker
|
|
|
|
|
|
|
|
mv pkg/hooks/README.md pkg/hooks/README-hooks.md
|
|
|
|
|
|
|
|
# install plugins
|
|
|
|
pushd dnsname-%{commit_plugins}
|
|
|
|
%{__make} PREFIX=%{_prefix} DESTDIR=%{buildroot} install
|
|
|
|
popd
|
|
|
|
|
|
|
|
# do not include docker and podman-remote man pages in main package
|
|
|
|
for file in `find %{buildroot}%{_mandir}/man[15] -type f | sed "s,%{buildroot},," | grep -v -e remote -e docker`; do
|
|
|
|
echo "$file*" >> podman.file-list
|
|
|
|
done
|
|
|
|
|
|
|
|
# source codes for building projects
|
|
|
|
%if 0%{?with_devel}
|
|
|
|
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
|
|
|
|
|
|
|
|
echo "%%dir %%{gopath}/src/%%{import_path}/." >> devel.file-list
|
|
|
|
# find all *.go but no *_test.go files and generate devel.file-list
|
|
|
|
for file in $(find . \( -iname "*.go" -or -iname "*.s" \) \! -iname "*_test.go" | grep -v "vendor") ; do
|
|
|
|
dirprefix=$(dirname $file)
|
|
|
|
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$dirprefix
|
|
|
|
cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file
|
|
|
|
echo "%%{gopath}/src/%%{import_path}/$file" >> devel.file-list
|
|
|
|
|
|
|
|
while [ "$dirprefix" != "." ]; do
|
|
|
|
echo "%%dir %%{gopath}/src/%%{import_path}/$dirprefix" >> devel.file-list
|
|
|
|
dirprefix=$(dirname $dirprefix)
|
|
|
|
done
|
|
|
|
done
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# testing files for this project
|
|
|
|
%if 0%{?with_unit_test} && 0%{?with_devel}
|
|
|
|
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
|
|
|
|
# find all *_test.go files and generate unit-test-devel.file-list
|
|
|
|
for file in $(find . -iname "*_test.go" | grep -v "vendor") ; do
|
|
|
|
dirprefix=$(dirname $file)
|
|
|
|
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$dirprefix
|
|
|
|
cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file
|
|
|
|
echo "%%{gopath}/src/%%{import_path}/$file" >> unit-test-devel.file-list
|
|
|
|
|
|
|
|
while [ "$dirprefix" != "." ]; do
|
|
|
|
echo "%%dir %%{gopath}/src/%%{import_path}/$dirprefix" >> devel.file-list
|
|
|
|
dirprefix=$(dirname $dirprefix)
|
|
|
|
done
|
|
|
|
done
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if 0%{?with_devel}
|
|
|
|
sort -u -o devel.file-list devel.file-list
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%check
|
|
|
|
%if 0%{?with_check} && 0%{?with_unit_test} && 0%{?with_devel}
|
|
|
|
%if ! 0%{?with_bundled}
|
|
|
|
export GOPATH=%{buildroot}/%{gopath}:%{gopath}
|
|
|
|
%else
|
|
|
|
# Since we aren't packaging up the vendor directory we need to link
|
|
|
|
# back to it somehow. Hack it up so that we can add the vendor
|
|
|
|
# directory from BUILD dir as a gopath to be searched when executing
|
|
|
|
# tests from the BUILDROOT dir.
|
|
|
|
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
|
|
|
|
|
|
|
|
export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if ! 0%{?gotest:1}
|
|
|
|
%global gotest go test
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%gotest %{import_path}/cmd/%{name}
|
|
|
|
%gotest %{import_path}/libkpod
|
|
|
|
%gotest %{import_path}/libpod
|
|
|
|
%gotest %{import_path}/pkg/registrar
|
|
|
|
%endif
|
|
|
|
|
|
|
|
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
|
|
|
|
cp -pav test/system %{buildroot}/%{_datadir}/%{name}/test/
|
|
|
|
|
|
|
|
%triggerpostun -- %{name} < 1.1
|
|
|
|
%{_bindir}/%{name} system renumber
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
#define license tag if not already defined
|
|
|
|
%{!?_licensedir:%global license %doc}
|
|
|
|
|
|
|
|
%files -f podman.file-list
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md CONTRIBUTING.md pkg/hooks/README-hooks.md install.md transfer.md
|
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_datadir}/bash-completion/completions/*
|
|
|
|
# By "owning" the site-functions dir, we don't need to Require zsh
|
|
|
|
%dir %{_datadir}/zsh/site-functions
|
|
|
|
%{_datadir}/zsh/site-functions/_%{name}
|
|
|
|
%config(noreplace) %{_sysconfdir}/cni/net.d/87-%{name}-bridge.conflist
|
|
|
|
%{_unitdir}/%{name}.service
|
|
|
|
%{_unitdir}/%{name}.socket
|
|
|
|
%{_userunitdir}/%{name}.service
|
|
|
|
%{_userunitdir}/%{name}.socket
|
|
|
|
%{_unitdir}/io.%{name}.service
|
|
|
|
%{_unitdir}/io.%{name}.socket
|
|
|
|
%{_userunitdir}/io.%{name}.service
|
|
|
|
%{_userunitdir}/io.%{name}.socket
|
|
|
|
%{_tmpfilesdir}/%{name}.conf
|
|
|
|
|
|
|
|
%files docker
|
|
|
|
%{_bindir}/docker
|
|
|
|
%{_mandir}/man1/docker*.1*
|
|
|
|
%{_usr}/lib/tmpfiles.d/%{name}-docker.conf
|
|
|
|
|
|
|
|
%if 0%{?with_devel}
|
|
|
|
%files -n libpod-devel -f devel.file-list
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md CONTRIBUTING.md pkg/hooks/README-hooks.md install.md transfer.md
|
|
|
|
%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if 0%{?with_unit_test} && 0%{?with_devel}
|
|
|
|
%files unit-test-devel -f unit-test-devel.file-list
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md CONTRIBUTING.md pkg/hooks/README-hooks.md install.md transfer.md
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%files remote
|
|
|
|
%license LICENSE
|
|
|
|
%{_bindir}/%{name}-remote
|
|
|
|
%{_mandir}/man1/%{name}-remote*.1*
|
|
|
|
|
|
|
|
%files tests
|
|
|
|
%license LICENSE
|
|
|
|
%dir %{_datadir}/%{name}/test
|
|
|
|
%dir %{_datadir}/%{name}/test/system
|
|
|
|
%{_datadir}/%{name}/test/system/*
|
|
|
|
|
|
|
|
%files plugins
|
|
|
|
%license dnsname-%{commit_plugins}/LICENSE
|
|
|
|
%doc dnsname-%{commit_plugins}/{README.md,README_PODMAN.md}
|
|
|
|
%{_libexecdir}/cni/dnsname
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|