[packit] 1.8.7 upstream release
Upstream tag: 1.8.7 Upstream commit: 53a9996c If you need to do any change in this pull request, you need to locally fetch the source branch of it and push it (with a fix) to your fork (as it is not possible to push to the branch created in the Packit’s fork): ``` git fetch https://src.fedoraproject.org/forks/packit/rpms/crun.git refs/heads/*:refs/remotes/packit/* git checkout packit/1.8.7-rawhide-update-propose_downstream ```
This commit is contained in:
parent
b6961f245f
commit
0c54bceac8
1
.gitignore
vendored
1
.gitignore
vendored
@ -71,3 +71,4 @@ crun-0.1.1.tar.gz
|
|||||||
/crun-1.8.4.tar.xz
|
/crun-1.8.4.tar.xz
|
||||||
/crun-1.8.5.tar.xz
|
/crun-1.8.5.tar.xz
|
||||||
/crun-1.8.6.tar.xz
|
/crun-1.8.6.tar.xz
|
||||||
|
/crun-1.8.7.tar.xz
|
||||||
|
52
.packit.yaml
Normal file
52
.packit.yaml
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
# See the documentation for more information:
|
||||||
|
# https://packit.dev/docs/configuration/
|
||||||
|
|
||||||
|
specfile_path: rpm/crun.spec
|
||||||
|
|
||||||
|
srpm_build_deps:
|
||||||
|
- git-archive-all
|
||||||
|
- make
|
||||||
|
actions:
|
||||||
|
create-archive:
|
||||||
|
- "git-archive-all -v --force-submodules rpm/crun-HEAD.tar.xz"
|
||||||
|
- bash -c "ls -1 rpm/crun-HEAD.tar.xz"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
- job: copr_build
|
||||||
|
trigger: pull_request
|
||||||
|
# keep in sync with https://copr.fedorainfracloud.org/coprs/rhcontainerbot/podman-next
|
||||||
|
targets:
|
||||||
|
- fedora-all-x86_64
|
||||||
|
- fedora-all-aarch64
|
||||||
|
- fedora-eln-x86_64
|
||||||
|
- fedora-eln-aarch64
|
||||||
|
- centos-stream+epel-next-8-x86_64
|
||||||
|
- centos-stream+epel-next-8-aarch64
|
||||||
|
- centos-stream+epel-next-9-x86_64
|
||||||
|
- centos-stream+epel-next-9-aarch64
|
||||||
|
additional_repos:
|
||||||
|
- "copr://rhcontainerbot/podman-next"
|
||||||
|
|
||||||
|
# Run on commit to main branch
|
||||||
|
- job: copr_build
|
||||||
|
trigger: commit
|
||||||
|
branch: main
|
||||||
|
owner: rhcontainerbot
|
||||||
|
project: podman-next
|
||||||
|
|
||||||
|
- job: propose_downstream
|
||||||
|
trigger: release
|
||||||
|
update_release: false
|
||||||
|
dist_git_branches:
|
||||||
|
- fedora-all
|
||||||
|
|
||||||
|
- job: koji_build
|
||||||
|
trigger: commit
|
||||||
|
dist_git_branches:
|
||||||
|
- fedora-all
|
||||||
|
|
||||||
|
- job: bodhi_update
|
||||||
|
trigger: commit
|
||||||
|
dist_git_branches:
|
||||||
|
- fedora-branched # rawhide updates are created automatically
|
3
README.packit
Normal file
3
README.packit
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
This repository is maintained by packit.
|
||||||
|
https://packit.dev/
|
||||||
|
The file was generated using packit 0.79.0.post2+g93f33d9.
|
142
crun.spec
142
crun.spec
@ -1,82 +1,126 @@
|
|||||||
%global krun_opts %{nil}
|
%global krun_opts %{nil}
|
||||||
|
%global wasmedge_opts %{nil}
|
||||||
|
%global wasmtime_opts %{nil}
|
||||||
|
|
||||||
%if 0%{?fedora} >= 37
|
# krun and wasm[edge,time] support only on aarch64 and x86_64
|
||||||
%ifarch aarch64 || x86_64
|
%ifarch aarch64 || x86_64
|
||||||
%global krun_support enabled
|
%global wasm_support 1
|
||||||
|
|
||||||
|
# wasmedge not present on Fedora ELN environments
|
||||||
|
%if !0%{?eln}
|
||||||
|
%global wasmedge_support 1
|
||||||
|
%global wasmedge_opts --with-wasmedge
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# krun only exists on fedora
|
||||||
|
%if %{defined fedora}
|
||||||
|
%global krun_support 1
|
||||||
%global krun_opts --with-libkrun
|
%global krun_opts --with-libkrun
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
# wasmtime exists only on podman-next copr for now
|
||||||
|
%if %{defined copr_project} && "%{?copr_project}" == "podman-next"
|
||||||
|
%global wasmtime_support 1
|
||||||
|
%global wasmtime_opts --with-wasmtime
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?fedora}
|
|
||||||
# wasmedge built only for aarch64 and x86_64
|
|
||||||
%ifarch aarch64 || x86_64
|
|
||||||
%global wasm_support enabled
|
|
||||||
%global wasm_opts --with-wasmedge
|
|
||||||
%endif
|
%endif
|
||||||
%endif
|
|
||||||
|
|
||||||
%global built_tag 1.8.6
|
|
||||||
%global gen_version %(b=%{built_tag}; echo ${b/-/"~"})
|
|
||||||
|
|
||||||
Summary: OCI runtime written in C
|
Summary: OCI runtime written in C
|
||||||
Name: crun
|
Name: crun
|
||||||
Version: %{gen_version}
|
%if %{defined copr_username}
|
||||||
|
Epoch: 102
|
||||||
|
%endif
|
||||||
|
# DO NOT TOUCH the Version string!
|
||||||
|
# The TRUE source of this specfile is:
|
||||||
|
# https://github.com/containers/crun/blob/main/rpm/crun.spec
|
||||||
|
# If that's what you're reading, Version must be 0, and will be updated by Packit for
|
||||||
|
# copr and koji builds.
|
||||||
|
# If you're reading this on dist-git, the version is automatically filled in by Packit.
|
||||||
|
Version: 1.8.7
|
||||||
|
Release: %autorelease
|
||||||
URL: https://github.com/containers/%{name}
|
URL: https://github.com/containers/%{name}
|
||||||
# Fetched from upstream
|
|
||||||
Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.xz
|
Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.xz
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
Release: %autorelease
|
%if %{defined golang_arches_future}
|
||||||
ExclusiveArch: %{golang_arches_future}
|
ExclusiveArch: %{golang_arches_future}
|
||||||
|
%else
|
||||||
|
ExclusiveArch: aarch64 ppc64le riscv64 s390x x86_64
|
||||||
|
%endif
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: go-md2man
|
|
||||||
BuildRequires: libtool
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: git-core
|
BuildRequires: git-core
|
||||||
BuildRequires: python3
|
BuildRequires: gperf
|
||||||
BuildRequires: libcap-devel
|
BuildRequires: libcap-devel
|
||||||
BuildRequires: systemd-devel
|
%if %{defined krun_support}
|
||||||
BuildRequires: yajl-devel
|
|
||||||
BuildRequires: libgcrypt-devel
|
|
||||||
%if "%{krun_support}" == "enabled"
|
|
||||||
BuildRequires: libkrun-devel
|
BuildRequires: libkrun-devel
|
||||||
%endif
|
%endif
|
||||||
%if "%{wasm_support}" == "enabled"
|
BuildRequires: systemd-devel
|
||||||
BuildRequires: wasmedge-devel
|
BuildRequires: yajl-devel
|
||||||
%endif
|
|
||||||
BuildRequires: libseccomp-devel
|
BuildRequires: libseccomp-devel
|
||||||
BuildRequires: libselinux-devel
|
|
||||||
BuildRequires: python3-libmount
|
BuildRequires: python3-libmount
|
||||||
BuildRequires: make
|
BuildRequires: libtool
|
||||||
BuildRequires: glibc-static
|
|
||||||
BuildRequires: protobuf-c-devel
|
BuildRequires: protobuf-c-devel
|
||||||
%ifnarch %ix86
|
|
||||||
BuildRequires: criu-devel >= 3.17.1-2
|
BuildRequires: criu-devel >= 3.17.1-2
|
||||||
%endif
|
|
||||||
Recommends: criu >= 3.17.1
|
Recommends: criu >= 3.17.1
|
||||||
Recommends: criu-libs
|
Recommends: criu-libs
|
||||||
|
%if %{defined wasmedge_support}
|
||||||
|
BuildRequires: wasmedge-devel
|
||||||
|
%endif
|
||||||
|
%if %{defined wasmtime_support}
|
||||||
|
BuildRequires: wasmtime-c-api-devel
|
||||||
|
%endif
|
||||||
|
%if %{defined rhel} && 0%{?rhel} == 8
|
||||||
|
BuildRequires: python3
|
||||||
|
%else
|
||||||
|
BuildRequires: python
|
||||||
|
%endif
|
||||||
Provides: oci-runtime
|
Provides: oci-runtime
|
||||||
|
|
||||||
%description
|
%description
|
||||||
%{name} is a runtime for running OCI containers
|
%{name} is a OCI runtime
|
||||||
|
|
||||||
|
%if %{defined krun_support}
|
||||||
|
%package krun
|
||||||
|
Summary: %{name} with libkrun support
|
||||||
|
Requires: libkrun
|
||||||
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||||
|
Provides: krun = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||||
|
|
||||||
|
%description krun
|
||||||
|
krun is a symlink to the %{name} binary, with libkrun as an additional dependency.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{defined wasm_support}
|
||||||
|
%package wasm
|
||||||
|
Summary: %{name} with wasm support
|
||||||
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||||
|
Requires: wasm-library
|
||||||
|
Recommends: wasmedge
|
||||||
|
|
||||||
|
%description wasm
|
||||||
|
%{name}-wasm is a symlink to the %{name} binary, with wasm as an additional dependency.
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -Sgit %{name}-%{built_tag}
|
%autosetup -Sgit -n %{name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
%configure --disable-silent-rules %{krun_opts} %{wasm_opts}
|
./configure --disable-silent-rules %{krun_opts} %{wasmedge_opts} %{wasmtime_opts}
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install prefix=%{_prefix}
|
||||||
rm -rf %{buildroot}%{_prefix}/lib*
|
rm -rf %{buildroot}%{_prefix}/lib*
|
||||||
%if "%{krun_support}" == "enabled"
|
|
||||||
ln -s ../bin/%{name} %{buildroot}%{_bindir}/krun
|
%if %{defined krun_support}
|
||||||
|
ln -s %{_bindir}/%{name} %{buildroot}%{_bindir}/krun
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if "%{wasm_support}" == "enabled"
|
%if %{defined wasm_support}
|
||||||
ln -s ../bin/%{name} %{buildroot}%{_bindir}/%{name}-wasm
|
ln -s %{_bindir}/%{name} %{buildroot}%{_bindir}/%{name}-wasm
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -84,31 +128,15 @@ ln -s ../bin/%{name} %{buildroot}%{_bindir}/%{name}-wasm
|
|||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
%if "%{krun_support}" == "enabled"
|
%if %{defined krun_support}
|
||||||
%package krun
|
|
||||||
Summary: OCI Runtime providing Virtualization-based process isolation capabilities.
|
|
||||||
Provides: krun
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
Requires: libkrun
|
|
||||||
|
|
||||||
%description krun
|
|
||||||
%{name}-krun OCI Runtime providing Virtualization-based process isolation capabilities.
|
|
||||||
|
|
||||||
%files krun
|
%files krun
|
||||||
|
%license COPYING
|
||||||
%{_bindir}/krun
|
%{_bindir}/krun
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if "%{wasm_support}" == "enabled"
|
%if %{defined wasm_support}
|
||||||
%package wasm
|
|
||||||
Summary: wasm support for %{name}
|
|
||||||
Requires: wasm-library
|
|
||||||
Recommends: wasmedge
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description wasm
|
|
||||||
%{name}-wasm provides %{name} built with wasm support
|
|
||||||
|
|
||||||
%files wasm
|
%files wasm
|
||||||
|
%license COPYING
|
||||||
%{_bindir}/%{name}-wasm
|
%{_bindir}/%{name}-wasm
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (crun-1.8.6.tar.xz) = d527b58ce4d5a7937260cc1336e10997595fed774e0faf4fed90e783de1ff4e3f036d800c7b92173f7fcad8bb1c0d6ee01989534d9b43eb0b937eef46a335f7d
|
SHA512 (crun-1.8.7.tar.xz) = 74d9f406de40512fa1694f9a744563c7a0eb217da700298da4afea065bd2181d818dd1d25098164eb3dacc47c149a45a57fd79445f40865ffcced383297491a4
|
||||||
|
Loading…
Reference in New Issue
Block a user