Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
SOURCES/osbuild-composer-101.4.tar.gz
|
SOURCES/osbuild-composer-149.tar.gz
|
||||||
SOURCES/osbuild-composer-101.tar.gz
|
|
||||||
|
@ -1,2 +1 @@
|
|||||||
ce93c5ab93c03de154e13611670b63e764377b52 SOURCES/osbuild-composer-101.4.tar.gz
|
ea59dc56a63899e6efb74dbc8b82ffa25012fbe3 SOURCES/osbuild-composer-149.tar.gz
|
||||||
0feb86b5dcd146ce5b87816ae482eb50ed507c16 SOURCES/osbuild-composer-101.tar.gz
|
|
||||||
|
@ -8,11 +8,11 @@
|
|||||||
%bcond_with relax_requires
|
%bcond_with relax_requires
|
||||||
|
|
||||||
# The minimum required osbuild version
|
# The minimum required osbuild version
|
||||||
%global min_osbuild_version 109
|
%global min_osbuild_version 157
|
||||||
|
|
||||||
%global goipath github.com/osbuild/osbuild-composer
|
%global goipath github.com/osbuild/osbuild-composer
|
||||||
|
|
||||||
Version: 101.4
|
Version: 149
|
||||||
|
|
||||||
%gometa
|
%gometa
|
||||||
|
|
||||||
@ -36,6 +36,7 @@ License: Apache-2.0
|
|||||||
URL: %{gourl}
|
URL: %{gourl}
|
||||||
Source0: %{gosource}
|
Source0: %{gosource}
|
||||||
|
|
||||||
|
|
||||||
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
|
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
BuildRequires: krb5-devel
|
BuildRequires: krb5-devel
|
||||||
@ -84,11 +85,10 @@ export PATH=$PWD/_bin${PATH:+:$PATH}
|
|||||||
export GOPATH=$GO_BUILD_PATH:%{gopath}
|
export GOPATH=$GO_BUILD_PATH:%{gopath}
|
||||||
export GOFLAGS+=" -mod=vendor"
|
export GOFLAGS+=" -mod=vendor"
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?fedora}
|
|
||||||
# Fedora disables Go modules by default, but we want to use them.
|
# Fedora and RHEL versions disable Go modules by default, but we want to use them.
|
||||||
# Undefine the macro which disables it to use the default behavior.
|
# Unconditionally undefine the macro which disables it to use the default behavior.
|
||||||
%undefine gomodulesmode
|
%undefine gomodulesmode
|
||||||
%endif
|
|
||||||
|
|
||||||
# btrfs-progs-devel is not available on RHEL
|
# btrfs-progs-devel is not available on RHEL
|
||||||
%if 0%{?rhel}
|
%if 0%{?rhel}
|
||||||
@ -105,8 +105,7 @@ export LDFLAGS="${LDFLAGS} -X 'github.com/osbuild/osbuild-composer/internal/comm
|
|||||||
|
|
||||||
%gobuild ${GOTAGS:+-tags=$GOTAGS} -o _bin/osbuild-composer %{goipath}/cmd/osbuild-composer
|
%gobuild ${GOTAGS:+-tags=$GOTAGS} -o _bin/osbuild-composer %{goipath}/cmd/osbuild-composer
|
||||||
%gobuild ${GOTAGS:+-tags=$GOTAGS} -o _bin/osbuild-worker %{goipath}/cmd/osbuild-worker
|
%gobuild ${GOTAGS:+-tags=$GOTAGS} -o _bin/osbuild-worker %{goipath}/cmd/osbuild-worker
|
||||||
%gobuild ${GOTAGS:+-tags=$GOTAGS} -o _bin/osbuild-jobsite-manager %{goipath}/cmd/osbuild-jobsite-manager
|
%gobuild ${GOTAGS:+-tags=$GOTAGS} -o _bin/osbuild-worker-executor %{goipath}/cmd/osbuild-worker-executor
|
||||||
%gobuild ${GOTAGS:+-tags=$GOTAGS} -o _bin/osbuild-jobsite-builder %{goipath}/cmd/osbuild-jobsite-builder
|
|
||||||
|
|
||||||
make man
|
make man
|
||||||
|
|
||||||
@ -115,20 +114,16 @@ make man
|
|||||||
# Build test binaries with `go test -c`, so that they can take advantage of
|
# Build test binaries with `go test -c`, so that they can take advantage of
|
||||||
# golang's testing package. The golang rpm macros don't support building them
|
# golang's testing package. The golang rpm macros don't support building them
|
||||||
# directly. Thus, do it manually, taking care to also include a build id.
|
# directly. Thus, do it manually, taking care to also include a build id.
|
||||||
#
|
|
||||||
# On Fedora, also turn off go modules and set the path to the one into which
|
|
||||||
# the golang-* packages install source code.
|
|
||||||
%if 0%{?fedora}
|
|
||||||
export GO111MODULE=off
|
|
||||||
export GOPATH=%{gobuilddir}:%{gopath}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
TEST_LDFLAGS="${LDFLAGS:-} -B 0x$(od -N 20 -An -tx1 -w100 /dev/urandom | tr -d ' ')"
|
TEST_LDFLAGS="${LDFLAGS:-} -B 0x$(od -N 20 -An -tx1 -w100 /dev/urandom | tr -d ' ')"
|
||||||
|
|
||||||
|
%if 0%{?rhel}
|
||||||
|
GOTAGS="${GOTAGS:+$GOTAGS,}rhel%{rhel}"
|
||||||
|
%endif
|
||||||
|
|
||||||
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-composer-cli-tests %{goipath}/cmd/osbuild-composer-cli-tests
|
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-composer-cli-tests %{goipath}/cmd/osbuild-composer-cli-tests
|
||||||
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-dnf-json-tests %{goipath}/cmd/osbuild-dnf-json-tests
|
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-dnf-json-tests %{goipath}/cmd/osbuild-dnf-json-tests
|
||||||
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-weldr-tests %{goipath}/internal/client/
|
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-weldr-tests %{goipath}/internal/client/
|
||||||
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-image-tests %{goipath}/cmd/osbuild-image-tests
|
|
||||||
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-auth-tests %{goipath}/cmd/osbuild-auth-tests
|
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-auth-tests %{goipath}/cmd/osbuild-auth-tests
|
||||||
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-koji-tests %{goipath}/cmd/osbuild-koji-tests
|
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-koji-tests %{goipath}/cmd/osbuild-koji-tests
|
||||||
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-composer-dbjobqueue-tests %{goipath}/cmd/osbuild-composer-dbjobqueue-tests
|
go test -c -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-composer-dbjobqueue-tests %{goipath}/cmd/osbuild-composer-dbjobqueue-tests
|
||||||
@ -141,32 +136,51 @@ go build -tags="integration${GOTAGS:+,$GOTAGS}" -ldflags="${TEST_LDFLAGS}" -o _b
|
|||||||
install -m 0755 -vd %{buildroot}%{_libexecdir}/osbuild-composer
|
install -m 0755 -vd %{buildroot}%{_libexecdir}/osbuild-composer
|
||||||
install -m 0755 -vp _bin/osbuild-composer %{buildroot}%{_libexecdir}/osbuild-composer/
|
install -m 0755 -vp _bin/osbuild-composer %{buildroot}%{_libexecdir}/osbuild-composer/
|
||||||
install -m 0755 -vp _bin/osbuild-worker %{buildroot}%{_libexecdir}/osbuild-composer/
|
install -m 0755 -vp _bin/osbuild-worker %{buildroot}%{_libexecdir}/osbuild-composer/
|
||||||
install -m 0755 -vp _bin/osbuild-jobsite-manager %{buildroot}%{_libexecdir}/osbuild-composer/
|
install -m 0755 -vp _bin/osbuild-worker-executor %{buildroot}%{_libexecdir}/osbuild-composer/
|
||||||
install -m 0755 -vp _bin/osbuild-jobsite-builder %{buildroot}%{_libexecdir}/osbuild-composer/
|
|
||||||
|
|
||||||
# Only include repositories for the distribution and release
|
# Only include repositories for the distribution and release
|
||||||
install -m 0755 -vd %{buildroot}%{_datadir}/osbuild-composer/repositories
|
install -m 0755 -vd %{buildroot}%{_datadir}/osbuild-composer/repositories
|
||||||
|
|
||||||
# CentOS also defines rhel so we check for centos first
|
# CentOS also defines rhel so we check for centos first
|
||||||
%if 0%{?centos}
|
%if 0%{?centos}
|
||||||
|
|
||||||
# CentOS 9 supports building for CentOS 8 and later
|
# Latest CentOS supports building all CentOS versions
|
||||||
%if 0%{?centos} >= 9
|
%if 0%{?centos} >= 10
|
||||||
install -m 0644 -vp repositories/centos-* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
install -m 0644 -vp vendor/github.com/osbuild/images/data/repositories/centos-* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
||||||
%else
|
|
||||||
# CentOS 8 only supports building for CentOS 8
|
|
||||||
install -m 0644 -vp repositories/centos-%{centos}* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
|
||||||
install -m 0644 -vp repositories/centos-stream-%{centos}* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
|
||||||
|
|
||||||
|
%else
|
||||||
|
# All other CentOS versions support building for the same version
|
||||||
|
install -m 0644 -vp vendor/github.com/osbuild/images/data/repositories/centos-%{centos}* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
||||||
|
# centos-stream-* are symlinks
|
||||||
|
cp -a repositories/centos-stream-%{centos}* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
||||||
%endif
|
%endif
|
||||||
%else
|
|
||||||
%if 0%{?rhel}
|
|
||||||
# RHEL 9 supports building for RHEL 8 and later
|
|
||||||
%if 0%{?rhel} >= 9
|
|
||||||
install -m 0644 -vp repositories/rhel-* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
|
||||||
|
|
||||||
%else
|
%else
|
||||||
# RHEL 8 only supports building for 8
|
|
||||||
install -m 0644 -vp repositories/rhel-%{rhel}* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
%if 0%{?rhel}
|
||||||
|
# RHEL 10 supports building all RHEL versions
|
||||||
|
%if 0%{?rhel} >= 10
|
||||||
|
for REPO_FILE in $(ls vendor/github.com/osbuild/images/data/repositories/rhel-* ); do
|
||||||
|
install -m 0644 -vp ${REPO_FILE} %{buildroot}%{_datadir}/osbuild-composer/repositories/$(basename ${REPO_FILE})
|
||||||
|
done
|
||||||
|
|
||||||
|
# RHEL-8 auxiliary key is signed using SHA-1, which is not enabled by default on RHEL-10 and later
|
||||||
|
for REPO_FILE in $(ls repositories/rhel-8*-no-aux-key.json); do
|
||||||
|
install -m 0644 -vp ${REPO_FILE} %{buildroot}%{_datadir}/osbuild-composer/repositories/$(basename ${REPO_FILE} | sed 's/-no-aux-key//g')
|
||||||
|
done
|
||||||
|
|
||||||
|
%else
|
||||||
|
# All other RHEL versions support building for the same version
|
||||||
|
for REPO_FILE in $(ls vendor/github.com/osbuild/images/data/repositories/rhel-%{rhel}* ); do
|
||||||
|
install -m 0644 -vp ${REPO_FILE} %{buildroot}%{_datadir}/osbuild-composer/repositories/$(basename ${REPO_FILE})
|
||||||
|
done
|
||||||
|
|
||||||
|
# RHEL 9 supports building also for RHEL 8
|
||||||
|
%if 0%{?rhel} == 9
|
||||||
|
for REPO_FILE in $(ls vendor/github.com/osbuild/images/data/repositories/rhel-8* ); do
|
||||||
|
install -m 0644 -vp ${REPO_FILE} %{buildroot}%{_datadir}/osbuild-composer/repositories/$(basename ${REPO_FILE})
|
||||||
|
done
|
||||||
|
%endif
|
||||||
|
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
@ -174,7 +188,7 @@ install -m 0644 -vp repositories/rhel-%{rhel}* %{buildroot}%
|
|||||||
|
|
||||||
# Fedora can build for all included fedora releases
|
# Fedora can build for all included fedora releases
|
||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
install -m 0644 -vp repositories/fedora-* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
install -m 0644 -vp vendor/github.com/osbuild/images/data/repositories/fedora-* %{buildroot}%{_datadir}/osbuild-composer/repositories/
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
install -m 0755 -vd %{buildroot}%{_unitdir}
|
install -m 0755 -vd %{buildroot}%{_unitdir}
|
||||||
@ -194,7 +208,6 @@ install -m 0755 -vd %{buildroot}%
|
|||||||
install -m 0755 -vp _bin/osbuild-composer-cli-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp _bin/osbuild-composer-cli-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp _bin/osbuild-weldr-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp _bin/osbuild-weldr-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp _bin/osbuild-dnf-json-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp _bin/osbuild-dnf-json-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp _bin/osbuild-image-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
|
||||||
install -m 0755 -vp _bin/osbuild-auth-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp _bin/osbuild-auth-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp _bin/osbuild-koji-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp _bin/osbuild-koji-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp _bin/osbuild-composer-dbjobqueue-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp _bin/osbuild-composer-dbjobqueue-tests %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
@ -204,7 +217,6 @@ install -m 0755 -vp tools/define-compose-url.sh %{buildroot}%
|
|||||||
install -m 0755 -vp tools/provision.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp tools/provision.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp tools/gen-certs.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp tools/gen-certs.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp tools/gen-ssh.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp tools/gen-ssh.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp tools/image-info %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
|
||||||
install -m 0755 -vp tools/run-koji-container.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp tools/run-koji-container.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp tools/koji-compose.py %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp tools/koji-compose.py %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
install -m 0755 -vp tools/libvirt_test.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
install -m 0755 -vp tools/libvirt_test.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
|
||||||
@ -228,9 +240,6 @@ install -m 0644 -vp test/data/ansible/* %{buildroot}%
|
|||||||
install -m 0755 -vd %{buildroot}%{_datadir}/tests/osbuild-composer/azure
|
install -m 0755 -vd %{buildroot}%{_datadir}/tests/osbuild-composer/azure
|
||||||
install -m 0644 -vp test/data/azure/* %{buildroot}%{_datadir}/tests/osbuild-composer/azure/
|
install -m 0644 -vp test/data/azure/* %{buildroot}%{_datadir}/tests/osbuild-composer/azure/
|
||||||
|
|
||||||
install -m 0755 -vd %{buildroot}%{_datadir}/tests/osbuild-composer/manifests
|
|
||||||
install -m 0644 -vp test/data/manifests/* %{buildroot}%{_datadir}/tests/osbuild-composer/manifests/
|
|
||||||
|
|
||||||
install -m 0755 -vd %{buildroot}%{_datadir}/tests/osbuild-composer/cloud-init
|
install -m 0755 -vd %{buildroot}%{_datadir}/tests/osbuild-composer/cloud-init
|
||||||
install -m 0644 -vp test/data/cloud-init/* %{buildroot}%{_datadir}/tests/osbuild-composer/cloud-init/
|
install -m 0644 -vp test/data/cloud-init/* %{buildroot}%{_datadir}/tests/osbuild-composer/cloud-init/
|
||||||
|
|
||||||
@ -259,22 +268,20 @@ install -m 0644 -vp test/data/x509/* %{buildroot}%
|
|||||||
install -m 0755 -vd %{buildroot}%{_datadir}/tests/osbuild-composer/schemas
|
install -m 0755 -vd %{buildroot}%{_datadir}/tests/osbuild-composer/schemas
|
||||||
install -m 0644 -vp pkg/jobqueue/dbjobqueue/schemas/* %{buildroot}%{_datadir}/tests/osbuild-composer/schemas/
|
install -m 0644 -vp pkg/jobqueue/dbjobqueue/schemas/* %{buildroot}%{_datadir}/tests/osbuild-composer/schemas/
|
||||||
|
|
||||||
install -m 0755 -vd %{buildroot}%{_datadir}/tests/osbuild-composer/upgrade8to9
|
install -m 0755 -vd %{buildroot}%{_datadir}/tests/osbuild-composer/rhel-upgrade
|
||||||
install -m 0644 -vp test/data/upgrade8to9/* %{buildroot}%{_datadir}/tests/osbuild-composer/upgrade8to9/
|
install -m 0644 -vp test/data/rhel-upgrade/* %{buildroot}%{_datadir}/tests/osbuild-composer/rhel-upgrade/
|
||||||
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
export GOFLAGS="-buildmode=pie"
|
export GOFLAGS="-buildmode=pie"
|
||||||
%if 0%{?rhel}
|
%if 0%{?rhel}
|
||||||
export GOFLAGS+=" -mod=vendor -tags=exclude_graphdriver_btrfs"
|
export GOFLAGS+=" -tags=exclude_graphdriver_btrfs"
|
||||||
|
%endif
|
||||||
|
|
||||||
export GOPATH=$PWD/_build:%{gopath}
|
export GOPATH=$PWD/_build:%{gopath}
|
||||||
# cd inside GOPATH, otherwise go with GO111MODULE=off ignores vendor directory
|
# cd inside GOPATH, otherwise go with GO111MODULE=off ignores vendor directory
|
||||||
cd $PWD/_build/src/%{goipath}
|
cd $PWD/_build/src/%{goipath}
|
||||||
%gotest ./...
|
|
||||||
%else
|
|
||||||
%gocheck
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%systemd_post osbuild-composer.service osbuild-composer.socket osbuild-composer-api.socket osbuild-composer-prometheus.socket osbuild-remote-worker.socket
|
%systemd_post osbuild-composer.service osbuild-composer.socket osbuild-composer-api.socket osbuild-composer-prometheus.socket osbuild-remote-worker.socket
|
||||||
@ -300,6 +307,9 @@ cd $PWD/_build/src/%{goipath}
|
|||||||
%package core
|
%package core
|
||||||
Summary: The core osbuild-composer binary
|
Summary: The core osbuild-composer binary
|
||||||
Requires: osbuild-depsolve-dnf >= %{min_osbuild_version}
|
Requires: osbuild-depsolve-dnf >= %{min_osbuild_version}
|
||||||
|
# This version needs to get bumped everytime the osbuild-depsolve-dnf json
|
||||||
|
# API changes in incompatible ways
|
||||||
|
Requires: osbuild-dnf-json-api = 8
|
||||||
Provides: %{name}-dnf-json = %{version}-%{release}
|
Provides: %{name}-dnf-json = %{version}-%{release}
|
||||||
Obsoletes: %{name}-dnf-json < %{version}-%{release}
|
Obsoletes: %{name}-dnf-json < %{version}-%{release}
|
||||||
|
|
||||||
@ -327,8 +337,7 @@ The worker for osbuild-composer
|
|||||||
|
|
||||||
%files worker
|
%files worker
|
||||||
%{_libexecdir}/osbuild-composer/osbuild-worker
|
%{_libexecdir}/osbuild-composer/osbuild-worker
|
||||||
%{_libexecdir}/osbuild-composer/osbuild-jobsite-manager
|
%{_libexecdir}/osbuild-composer/osbuild-worker-executor
|
||||||
%{_libexecdir}/osbuild-composer/osbuild-jobsite-builder
|
|
||||||
%{_unitdir}/osbuild-worker@.service
|
%{_unitdir}/osbuild-worker@.service
|
||||||
%{_unitdir}/osbuild-remote-worker@.service
|
%{_unitdir}/osbuild-remote-worker@.service
|
||||||
|
|
||||||
@ -394,7 +403,11 @@ Requires: httpd
|
|||||||
Requires: mod_ssl
|
Requires: mod_ssl
|
||||||
Requires: openssl
|
Requires: openssl
|
||||||
Requires: firewalld
|
Requires: firewalld
|
||||||
|
# podman-plugins has been deprecated since podman version 5.0.0,
|
||||||
|
# which is in Fedora 40+ and in c10s / el10
|
||||||
|
%if (0%{?rhel} && 0%{?rhel} < 10) || (0%{?fedora} && 0%{?fedora} < 40)
|
||||||
Requires: podman-plugins
|
Requires: podman-plugins
|
||||||
|
%endif
|
||||||
Requires: dnf-plugins-core
|
Requires: dnf-plugins-core
|
||||||
Requires: skopeo
|
Requires: skopeo
|
||||||
Requires: make
|
Requires: make
|
||||||
@ -421,21 +434,107 @@ Integration tests to be run on a pristine-dedicated system to test the osbuild-c
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Jul 17 2025 Achilleas Koutsou <achilleas@redhat.com> - 101.4-1
|
* Thu Aug 21 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 149-1
|
||||||
- Resolves: RHEL-95416
|
- New upstream release
|
||||||
|
|
||||||
* Tue Jun 24 2025 Ondřej Budai <obudai@redhat.com> - 101-4
|
* Wed Aug 06 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 147-1
|
||||||
- Resolves: RHEL-89279 (CVE-2025-22871)
|
- New upstream release
|
||||||
|
|
||||||
* Tue Apr 22 2025 Tomáš Hozza <thozza@redhat.com> - 101-3
|
* Wed Jul 23 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 146-1
|
||||||
- Resolve RHEL-84643 (CVE-2025-30204)
|
- New upstream release
|
||||||
|
|
||||||
* Wed Sep 25 2024 Tomáš Hozza <thozza@redhat.com> - 101-2
|
* Sat Jul 12 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 145-1
|
||||||
- Rebuilt to fix:
|
- New upstream release
|
||||||
- CVE-2024-34156
|
|
||||||
- CVE-2024-1394
|
* Wed Jun 25 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 144-1
|
||||||
- RHEL-24303
|
- New upstream release
|
||||||
- RHEL-57905
|
|
||||||
|
* Wed Jun 11 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 143-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Thu Jun 05 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 142-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Mon May 19 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 141-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Apr 23 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 139-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Apr 16 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 138-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Thu Apr 03 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 137-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Mon Mar 31 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 136-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Mar 05 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 135-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Thu Feb 13 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 132-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 131-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Jan 08 2025 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 128-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Dec 11 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 127-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Nov 27 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 126-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Thu Nov 14 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 125-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Fri Nov 01 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 124-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Oct 16 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 123-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Oct 02 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 122-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Mon Sep 30 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 121-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Fri Aug 23 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 118-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Aug 21 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 117-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Thu Aug 15 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 116-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Aug 07 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 115-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Jul 24 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 114-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Fri Jul 12 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 113-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Jun 12 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 110-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Tue Jun 04 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 109-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Fri May 17 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 108-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Apr 03 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 104-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Mar 06 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 102-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
* Mon Feb 26 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 101-1
|
* Mon Feb 26 2024 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 101-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
@ -467,9 +566,6 @@ Integration tests to be run on a pristine-dedicated system to test the osbuild-c
|
|||||||
* Wed Oct 04 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 91-1
|
* Wed Oct 04 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 91-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Thu Sep 21 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 90-1
|
|
||||||
- New upstream release
|
|
||||||
|
|
||||||
* Wed Sep 06 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 89-1
|
* Wed Sep 06 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 89-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
@ -500,6 +596,9 @@ Integration tests to be run on a pristine-dedicated system to test the osbuild-c
|
|||||||
* Wed Mar 08 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 77-1
|
* Wed Mar 08 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 77-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Mar 01 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 76-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
* Wed Feb 22 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 75-1
|
* Wed Feb 22 2023 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 75-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
@ -524,6 +623,9 @@ Integration tests to be run on a pristine-dedicated system to test the osbuild-c
|
|||||||
* Wed Nov 16 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 68-1
|
* Wed Nov 16 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 68-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
|
* Thu Nov 03 2022 Tomas Hozza <thozza@redhat.com> - 67-2
|
||||||
|
- Fix functional tests to make them pass in RHEL-9.2 gating
|
||||||
|
|
||||||
* Wed Nov 02 2022 imagebuilder-bots+imagebuilder-bot@redhat.com <imagebuilder-bot> - 67-1
|
* Wed Nov 02 2022 imagebuilder-bots+imagebuilder-bot@redhat.com <imagebuilder-bot> - 67-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
@ -533,13 +635,13 @@ Integration tests to be run on a pristine-dedicated system to test the osbuild-c
|
|||||||
* Wed Aug 24 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 60-1
|
* Wed Aug 24 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 60-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Thu Aug 11 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 59-1
|
* Wed Aug 10 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 59-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Thu Jul 28 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 58-1
|
* Thu Jul 28 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 58-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Mon Jul 18 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 57-1
|
* Wed Jul 13 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 57-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Wed Jun 15 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 55-1
|
* Wed Jun 15 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 55-1
|
||||||
@ -548,81 +650,139 @@ Integration tests to be run on a pristine-dedicated system to test the osbuild-c
|
|||||||
* Wed Jun 01 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 54-1
|
* Wed Jun 01 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 54-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Mon May 23 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 53-1
|
* Fri May 20 2022 imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> - 53-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Wed May 04 2022 Ondřej Budai <ondrej@budai.cz> - 51-1
|
* Wed May 04 2022 Ondřej Budai <ondrej@budai.cz> - 51-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Tue Mar 01 2022 Ondřej Budai <ondrej@budai.cz> - 46-1
|
* Mon Feb 28 2022 Simon Steinbeiss <simon.steinbeiss@redhat.com> - 46-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Sat Feb 19 2022 Ondřej Budai <ondrej@budai.cz> - 45-1
|
* Fri Feb 18 2022 Ondřej Budai <ondrej@budai.cz> - 45-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Mon Feb 14 2022 Thomas Lavocat <tlavocat@redhat.com> - 44-1
|
* Fri Feb 11 2022 Thomas Lavocat <tlavocat@redhat.com> - 44-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Mon Feb 07 2022 Thomas Lavocat <tlavocat@redhat.com> - 43-1
|
* Wed Jan 26 2022 Thomas Lavocat <tlavocat@redhat.com> - 43-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Tue Jan 18 2022 Thomas Lavocat <tlavocat@redhat.com> - 42-1
|
* Wed Jan 12 2022 Thomas Lavocat <tlavocat@redhat.com> - 42-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Dec 22 2021 Ondřej Budai <ondrej@budai.cz> - 41-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Thu Dec 09 2021 Ondřej Budai <ondrej@budai.cz> - 40-1
|
* Thu Dec 09 2021 Ondřej Budai <ondrej@budai.cz> - 40-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Fri Oct 15 2021 Achilleas Koutsou <achilleas@redhat.com> - 37-1
|
* Wed Nov 24 2021 Chloe Kaubisch <chloe.kaubisch@gmail.com> - 39-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Fri Oct 15 2021 Achilleas Koutsou <achilleas@redhat.com> - 36-1
|
* Fri Nov 12 2021 'Diaa Sami' <'<disami@redhat.com>'> - 38-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 lavocatt - 37-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Thu Oct 14 2021 Achilleas Koutsou <achilleas@redhat.com> - 36-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Mon Aug 30 2021 Tom Gundersen <teg@jklm.no> - 33-1
|
* Mon Aug 30 2021 Tom Gundersen <teg@jklm.no> - 33-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Sun Aug 29 2021 Tom Gundersen <teg@jklm.no> - 32-2
|
* Sun Aug 29 2021 Tom Gundersen <teg@jklm.no> - 32-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Thu Aug 12 2021 Ondřej Budai <ondrej@budai.cz> - 31-1
|
* Sun Aug 15 2021 Ondřej Budai <ondrej@budai.cz> - 31-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 30-2
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Jul 02 2021 Ondřej Budai <ondrej@budai.cz> - 30-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 29-3
|
||||||
|
- Rebuilt for RHEL 9 BETA for openssl 3.0
|
||||||
|
Related: rhbz#1971065
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 29-2
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Fri Mar 05 2021 Martin Sehnoutka <msehnout@redhat.com> - 29-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Sat Feb 20 2021 Martin Sehnoutka <msehnout@redhat.com> - 28-1
|
* Sat Feb 20 2021 Martin Sehnoutka <msehnout@redhat.com> - 28-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Fri Feb 05 2021 Ondrej Budai <obudai@redhat.com> - 27-1
|
* Thu Feb 04 2021 Ondrej Budai <obudai@redhat.com> - 27-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 26-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 17 2020 Ondrej Budai <obudai@redhat.com> - 26-2
|
||||||
|
- Fix the compatibility with a new golang-github-azure-storage-blob 0.12
|
||||||
|
|
||||||
* Thu Dec 17 2020 Ondrej Budai <obudai@redhat.com> - 26-1
|
* Thu Dec 17 2020 Ondrej Budai <obudai@redhat.com> - 26-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
* Mon Nov 30 2020 Ondrej Budai <obudai@redhat.com> - 25-1
|
* Thu Nov 19 2020 Ondrej Budai <obudai@redhat.com> - 25-1
|
||||||
- New upstream release 25 (rhbz#1883481)
|
- New upstream release
|
||||||
|
|
||||||
* Thu Sep 03 2020 Tom Gundersen <tgunders@redhat.com> - 20.1-1
|
* Thu Nov 12 2020 Ondrej Budai <obudai@redhat.com> - 24-1
|
||||||
- New upstream release 20.1 (rhbz#1872370)
|
- New upstream release
|
||||||
|
|
||||||
* Sun Aug 23 2020 Tom Gundersen <tgunders@redhat.com> - 20-1
|
* Fri Nov 06 2020 Ondrej Budai <obudai@redhat.com> - 23-1
|
||||||
- New upstream release 20 (rhbz#1871184 and rhbz#1871179)
|
- New upstream release
|
||||||
|
|
||||||
* Thu Aug 13 2020 Tom Gundersen <tgunders@redhat.com> - 19-1
|
* Fri Oct 16 2020 Ondrej Budai <obudai@redhat.com> - 22-1
|
||||||
- New upstream release 19 (rhbz#1866015 and rhbz#1866013)
|
- New upstream release
|
||||||
|
|
||||||
* Thu Jul 09 2020 Ondrej Budai <obudai@redhat.com> - 17-1
|
* Sun Aug 23 2020 Tom Gundersen <teg@jklm.no> - 20-1
|
||||||
- New upstream release 17 (rhbz#1831653)
|
- New upstream release
|
||||||
- Obsolete lorax-composer in favor of osbuild-composer (rhbz#1836844)
|
|
||||||
|
* Tue Aug 11 2020 Tom Gundersen <teg@jklm.no> - 19-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 18-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 22 2020 Ondrej Budai <obudai@redhat.com> - 18-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Jul 08 2020 Ondrej Budai <obudai@redhat.com> - 17-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
* Mon Jun 29 2020 Ondrej Budai <obudai@redhat.com> - 16-1
|
* Mon Jun 29 2020 Ondrej Budai <obudai@redhat.com> - 16-1
|
||||||
- New upstream release 16 (rhbz#1831653)
|
- New upstream release
|
||||||
|
|
||||||
* Fri Jun 12 2020 Ondrej Budai <obudai@redhat.com> - 15-1
|
* Fri Jun 12 2020 Ondrej Budai <obudai@redhat.com> - 15-1
|
||||||
- New upstream release 15 (rhbz#1831653)
|
- New upstream release
|
||||||
|
|
||||||
* Thu Jun 04 2020 Ondrej Budai <obudai@redhat.com> - 14-1
|
* Thu Jun 04 2020 Ondrej Budai <obudai@redhat.com> - 14-1
|
||||||
- New upstream release 14 (rhbz#1831653)
|
- New upstream release
|
||||||
|
|
||||||
|
* Fri May 29 2020 Ondrej Budai <obudai@redhat.com> - 13-2
|
||||||
|
- Add missing osbuild-ostree dependency
|
||||||
|
|
||||||
* Thu May 28 2020 Ondrej Budai <obudai@redhat.com> - 13-1
|
* Thu May 28 2020 Ondrej Budai <obudai@redhat.com> - 13-1
|
||||||
- New upstream release 13 (rhbz#1831653)
|
- New upstream release
|
||||||
|
|
||||||
* Tue May 05 2020 Ondrej Budai <obudai@redhat.com> - 11-1
|
* Thu May 14 2020 Ondrej Budai <obudai@redhat.com> - 12-1
|
||||||
- Initial package (renamed from golang-github-osbuild-composer) (rhbz#1771887)
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Apr 29 2020 Ondrej Budai <obudai@redhat.com> - 11-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Apr 15 2020 Ondrej Budai <obudai@redhat.com> - 10-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Wed Apr 01 2020 Ondrej Budai <obudai@redhat.com> - 9-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Mon Mar 23 2020 Ondrej Budai <obudai@redhat.com> - 8-1
|
||||||
|
- Initial package (renamed from golang-github-osbuild-composer)
|
||||||
|
Loading…
Reference in New Issue
Block a user