Blame SPECS/osbuild-composer.spec

e0dbf8
# Do not build with tests by default
e0dbf8
# Pass --with tests to rpmbuild to override
e0dbf8
%bcond_with tests
e0dbf8
e0dbf8
%global goipath         github.com/osbuild/osbuild-composer
e0dbf8
089c3f
Version:        28
e0dbf8
e0dbf8
%gometa
e0dbf8
e0dbf8
%global common_description %{expand:
e0dbf8
An image building service based on osbuild
e0dbf8
It is inspired by lorax-composer and exposes the same API.
e0dbf8
As such, it is a drop-in replacement.
e0dbf8
}
e0dbf8
e0dbf8
Name:           osbuild-composer
e0dbf8
Release:        1%{?dist}
e0dbf8
Summary:        An image building service based on osbuild
e0dbf8
e0dbf8
# osbuild-composer doesn't have support for building i686 images
e0dbf8
# and also RHEL and Fedora has now only limited support for this arch.
e0dbf8
ExcludeArch:    i686
e0dbf8
e0dbf8
# Upstream license specification: Apache-2.0
e0dbf8
License:        ASL 2.0
e0dbf8
URL:            %{gourl}
e0dbf8
Source0:        %{gosource}
e0dbf8
e0dbf8
e0dbf8
BuildRequires:  %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
e0dbf8
BuildRequires:  systemd
089c3f
BuildRequires:  krb5-devel
089c3f
BuildRequires:  python3-docutils
089c3f
BuildRequires:  make
e0dbf8
%if 0%{?fedora}
e0dbf8
BuildRequires:  systemd-rpm-macros
e0dbf8
BuildRequires:  git
e0dbf8
BuildRequires:  golang(github.com/aws/aws-sdk-go)
e0dbf8
BuildRequires:  golang(github.com/Azure/azure-sdk-for-go)
e0dbf8
BuildRequires:  golang(github.com/Azure/azure-storage-blob-go/azblob)
e0dbf8
BuildRequires:  golang(github.com/BurntSushi/toml)
e0dbf8
BuildRequires:  golang(github.com/coreos/go-semver/semver)
e0dbf8
BuildRequires:  golang(github.com/coreos/go-systemd/activation)
089c3f
BuildRequires:  golang(github.com/deepmap/oapi-codegen/pkg/codegen)
089c3f
BuildRequires:  golang(github.com/go-chi/chi)
e0dbf8
BuildRequires:  golang(github.com/google/uuid)
e0dbf8
BuildRequires:  golang(github.com/julienschmidt/httprouter)
089c3f
BuildRequires:  golang(github.com/getkin/kin-openapi/openapi3)
089c3f
BuildRequires:  golang(github.com/kolo/xmlrpc)
089c3f
BuildRequires:  golang(github.com/labstack/echo/v4)
e0dbf8
BuildRequires:  golang(github.com/gobwas/glob)
e0dbf8
BuildRequires:  golang(github.com/google/go-cmp/cmp)
e0dbf8
BuildRequires:  golang(github.com/gophercloud/gophercloud)
e0dbf8
BuildRequires:  golang(github.com/stretchr/testify/assert)
089c3f
BuildRequires:  golang(github.com/ubccr/kerby)
089c3f
BuildRequires:  golang(github.com/vmware/govmomi)
e0dbf8
%endif
e0dbf8
089c3f
Requires: %{name}-core = %{version}-%{release}
e0dbf8
Requires: %{name}-worker = %{version}-%{release}
e0dbf8
Requires: systemd
e0dbf8
e0dbf8
Provides: weldr
e0dbf8
e0dbf8
%if 0%{?rhel}
089c3f
Obsoletes: lorax-composer <= 29
e0dbf8
Conflicts: lorax-composer
e0dbf8
%endif
e0dbf8
089c3f
# Remove when we stop releasing into Fedora 35
089c3f
%if 0%{?fedora} >= 34
089c3f
# lorax 34.3 is the first one without the composer subpackage
089c3f
Obsoletes: lorax-composer < 34.3
089c3f
%endif
089c3f
e0dbf8
# remove in F34
e0dbf8
Obsoletes: golang-github-osbuild-composer < %{version}-%{release}
e0dbf8
Provides:  golang-github-osbuild-composer = %{version}-%{release}
e0dbf8
089c3f
# remove when F34 is EOL
089c3f
Obsoletes: osbuild-composer-koji <= 23
089c3f
e0dbf8
%description
e0dbf8
%{common_description}
e0dbf8
e0dbf8
%prep
e0dbf8
%if 0%{?rhel}
e0dbf8
%forgeautosetup -p1
e0dbf8
%else
e0dbf8
%goprep
e0dbf8
%endif
e0dbf8
089c3f
%if 0%{?fedora} && 0%{?fedora} <= 32
089c3f
# Fedora 32 and older ships different kolo/xmlrpc and azure/azblob APIs. We
089c3f
# cannot specify build tags in gobuild macro because the macro itself
089c3f
# specifies build tags and -tags argument cannot be used more than once.
089c3f
# Therefore, this ugly hack with build tags switcharoo is required.
089c3f
# Remove when F32 is EOL.
089c3f
089c3f
# Remove the build constraint from the wrappers of the old APIs
089c3f
sed -i "s$// +build kolo_xmlrpc_oldapi$// +build !kolo_xmlrpc_oldapi$" internal/upload/koji/xmlrpc-response-oldapi.go
089c3f
sed -i "s$// +build azblob_oldapi$// +build !azblob_oldapi$" internal/upload/azure/page_blob_url_oldapi.go
089c3f
089c3f
# Add a build constraint to the wrappers of the new APIs
089c3f
sed -i "s$// +build !kolo_xmlrpc_oldapi$// +build kolo_xmlrpc_oldapi$" internal/upload/koji/xmlrpc-response.go
089c3f
sed -i "s$// +build !azblob_oldapi$// +build azblob_oldapi$" internal/upload/azure/page_blob_url.go
089c3f
%endif
089c3f
e0dbf8
%build
e0dbf8
%if 0%{?rhel}
e0dbf8
GO_BUILD_PATH=$PWD/_build
e0dbf8
install -m 0755 -vd $(dirname $GO_BUILD_PATH/src/%{goipath})
e0dbf8
ln -fs $PWD $GO_BUILD_PATH/src/%{goipath}
e0dbf8
cd $GO_BUILD_PATH/src/%{goipath}
e0dbf8
install -m 0755 -vd _bin
e0dbf8
export PATH=$PWD/_bin${PATH:+:$PATH}
e0dbf8
export GOPATH=$GO_BUILD_PATH:%{gopath}
e0dbf8
export GOFLAGS=-mod=vendor
e0dbf8
%endif
e0dbf8
e0dbf8
%gobuild -o _bin/osbuild-composer %{goipath}/cmd/osbuild-composer
e0dbf8
%gobuild -o _bin/osbuild-worker %{goipath}/cmd/osbuild-worker
e0dbf8
089c3f
make man
e0dbf8
e0dbf8
%if %{with tests} || 0%{?rhel}
e0dbf8
e0dbf8
# Build test binaries with `go test -c`, so that they can take advantage of
e0dbf8
# golang's testing package. The golang rpm macros don't support building them
e0dbf8
# directly. Thus, do it manually, taking care to also include a build id.
e0dbf8
#
e0dbf8
# On Fedora, also turn off go modules and set the path to the one into which
e0dbf8
# the golang-* packages install source code.
e0dbf8
%if 0%{?fedora}
e0dbf8
export GO111MODULE=off
e0dbf8
export GOPATH=%{gobuilddir}:%{gopath}
e0dbf8
%endif
e0dbf8
e0dbf8
TEST_LDFLAGS="${LDFLAGS:-} -B 0x$(od -N 20 -An -tx1 -w100 /dev/urandom | tr -d ' ')"
e0dbf8
089c3f
go test -c -tags=integration -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-composer-cli-tests %{goipath}/cmd/osbuild-composer-cli-tests
e0dbf8
go test -c -tags=integration -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-dnf-json-tests %{goipath}/cmd/osbuild-dnf-json-tests
e0dbf8
go test -c -tags=integration -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-weldr-tests %{goipath}/internal/client/
e0dbf8
go test -c -tags=integration -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-image-tests %{goipath}/cmd/osbuild-image-tests
089c3f
go test -c -tags=integration -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-auth-tests %{goipath}/cmd/osbuild-auth-tests
089c3f
go test -c -tags=integration -ldflags="${TEST_LDFLAGS}" -o _bin/osbuild-koji-tests %{goipath}/cmd/osbuild-koji-tests
089c3f
go build -tags=integration -ldflags="${TEST_LDFLAGS}" -o _bin/cloud-cleaner %{goipath}/cmd/cloud-cleaner
e0dbf8
e0dbf8
%endif
e0dbf8
e0dbf8
%install
089c3f
install -m 0755 -vd                                             %{buildroot}%{_libexecdir}/osbuild-composer
089c3f
install -m 0755 -vp _bin/osbuild-composer                       %{buildroot}%{_libexecdir}/osbuild-composer/
089c3f
install -m 0755 -vp _bin/osbuild-worker                         %{buildroot}%{_libexecdir}/osbuild-composer/
089c3f
install -m 0755 -vp dnf-json                                    %{buildroot}%{_libexecdir}/osbuild-composer/
089c3f
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/osbuild-composer/repositories
089c3f
install -m 0644 -vp repositories/*                              %{buildroot}%{_datadir}/osbuild-composer/repositories/
e0dbf8
089c3f
install -m 0755 -vd                                             %{buildroot}%{_unitdir}
089c3f
install -m 0644 -vp distribution/*.{service,socket}             %{buildroot}%{_unitdir}/
e0dbf8
089c3f
install -m 0755 -vd                                             %{buildroot}%{_sysusersdir}
089c3f
install -m 0644 -vp distribution/osbuild-composer.conf          %{buildroot}%{_sysusersdir}/
e0dbf8
089c3f
install -m 0755 -vd                                             %{buildroot}%{_localstatedir}/cache/osbuild-composer/dnf-cache
e0dbf8
089c3f
install -m 0755 -vd                                             %{buildroot}%{_mandir}/man7
089c3f
install -m 0644 -vp docs/*.7                                    %{buildroot}%{_mandir}/man7/
e0dbf8
e0dbf8
%if %{with tests} || 0%{?rhel}
e0dbf8
089c3f
install -m 0755 -vd                                             %{buildroot}%{_libexecdir}/osbuild-composer-test
089c3f
install -m 0755 -vp _bin/osbuild-composer-cli-tests             %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp _bin/osbuild-weldr-tests                    %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp _bin/osbuild-dnf-json-tests                 %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp _bin/osbuild-image-tests                    %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp _bin/osbuild-auth-tests                     %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp _bin/osbuild-koji-tests                     %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp _bin/cloud-cleaner                          %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp tools/provision.sh                          %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp tools/gen-certs.sh                          %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp tools/image-info                            %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp tools/run-koji-container.sh                 %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp tools/koji-compose.py                       %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vp tools/libvirt_test.sh                       %{buildroot}%{_libexecdir}/osbuild-composer-test/
089c3f
install -m 0755 -vd                                             %{buildroot}%{_libexecdir}/tests/osbuild-composer
089c3f
install -m 0755 -vp test/cases/*                                %{buildroot}%{_libexecdir}/tests/osbuild-composer/
089c3f
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/ansible
089c3f
install -m 0644 -vp test/data/ansible/*                         %{buildroot}%{_datadir}/tests/osbuild-composer/ansible/
089c3f
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/azure
089c3f
install -m 0644 -vp test/data/azure/*                           %{buildroot}%{_datadir}/tests/osbuild-composer/azure/
089c3f
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/manifests
089c3f
install -m 0644 -vp test/data/manifests/*                       %{buildroot}%{_datadir}/tests/osbuild-composer/manifests/
e0dbf8
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/cloud-init
089c3f
install -m 0644 -vp test/data/cloud-init/*                      %{buildroot}%{_datadir}/tests/osbuild-composer/cloud-init/
e0dbf8
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/composer
089c3f
install -m 0644 -vp test/data/composer/*                        %{buildroot}%{_datadir}/tests/osbuild-composer/composer/
e0dbf8
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/repositories
089c3f
install -m 0644 -vp test/data/repositories/*                    %{buildroot}%{_datadir}/tests/osbuild-composer/repositories/
089c3f
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/kerberos
089c3f
install -m 0644 -vp test/data/kerberos/*                        %{buildroot}%{_datadir}/tests/osbuild-composer/kerberos/
089c3f
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/keyring
089c3f
install -m 0644 -vp test/data/keyring/id_rsa.pub                %{buildroot}%{_datadir}/tests/osbuild-composer/keyring/
089c3f
install -m 0600 -vp test/data/keyring/id_rsa                    %{buildroot}%{_datadir}/tests/osbuild-composer/keyring/
089c3f
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/koji
089c3f
install -m 0644 -vp test/data/koji/*                            %{buildroot}%{_datadir}/tests/osbuild-composer/koji/
089c3f
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/x509
089c3f
install -m 0644 -vp test/data/x509/*                            %{buildroot}%{_datadir}/tests/osbuild-composer/x509/
089c3f
089c3f
%if 0%{?rhel}
089c3f
install -m 0755 -vd                                             %{buildroot}%{_datadir}/tests/osbuild-composer/vendor
089c3f
install -m 0644 -vp test/data/vendor/87-podman-bridge.conflist  %{buildroot}%{_datadir}/tests/osbuild-composer/vendor/
089c3f
install -m 0755 -vp test/data/vendor/dnsname                    %{buildroot}%{_datadir}/tests/osbuild-composer/vendor/
089c3f
%endif
e0dbf8
e0dbf8
%endif
e0dbf8
e0dbf8
%check
e0dbf8
%if 0%{?rhel}
e0dbf8
export GOFLAGS=-mod=vendor
e0dbf8
export GOPATH=$PWD/_build:%{gopath}
089c3f
# cd inside GOPATH, otherwise go with GO111MODULE=off ignores vendor directory
089c3f
cd $PWD/_build/src/%{goipath}
e0dbf8
%gotest ./...
e0dbf8
%else
e0dbf8
%gocheck
e0dbf8
%endif
e0dbf8
e0dbf8
%post
089c3f
%systemd_post osbuild-composer.service osbuild-composer.socket osbuild-composer-api.socket osbuild-remote-worker.socket
e0dbf8
e0dbf8
%preun
089c3f
%systemd_preun osbuild-composer.service osbuild-composer.socket osbuild-composer-api.socket osbuild-remote-worker.socket
e0dbf8
e0dbf8
%postun
089c3f
%systemd_postun_with_restart osbuild-composer.service osbuild-composer.socket osbuild-composer-api.socket osbuild-remote-worker.socket
e0dbf8
e0dbf8
%files
e0dbf8
%license LICENSE
e0dbf8
%doc README.md
089c3f
%{_mandir}/man7/%{name}.7*
e0dbf8
%{_unitdir}/osbuild-composer.service
e0dbf8
%{_unitdir}/osbuild-composer.socket
089c3f
%{_unitdir}/osbuild-composer-api.socket
089c3f
%{_unitdir}/osbuild-local-worker.socket
e0dbf8
%{_unitdir}/osbuild-remote-worker.socket
e0dbf8
%{_sysusersdir}/osbuild-composer.conf
e0dbf8
089c3f
%package core
089c3f
Summary:    The core osbuild-composer binary
e0dbf8
089c3f
%description core
089c3f
The core osbuild-composer binary. This is suitable both for spawning in containers and by systemd.
e0dbf8
089c3f
%files core
089c3f
%{_libexecdir}/osbuild-composer/osbuild-composer
089c3f
%{_libexecdir}/osbuild-composer/dnf-json
089c3f
%{_datadir}/osbuild-composer/
e0dbf8
e0dbf8
%package worker
e0dbf8
Summary:    The worker for osbuild-composer
e0dbf8
Requires:   systemd
089c3f
Requires:   qemu-img
089c3f
Requires:   osbuild >= 24
089c3f
Requires:   osbuild-ostree >= 24
e0dbf8
e0dbf8
# remove in F34
e0dbf8
Obsoletes: golang-github-osbuild-composer-worker < %{version}-%{release}
e0dbf8
Provides:  golang-github-osbuild-composer-worker = %{version}-%{release}
e0dbf8
e0dbf8
%description worker
e0dbf8
The worker for osbuild-composer
e0dbf8
e0dbf8
%files worker
e0dbf8
%{_libexecdir}/osbuild-composer/osbuild-worker
e0dbf8
%{_unitdir}/osbuild-worker@.service
e0dbf8
%{_unitdir}/osbuild-remote-worker@.service
e0dbf8
e0dbf8
%post worker
e0dbf8
%systemd_post osbuild-worker@.service osbuild-remote-worker@.service
e0dbf8
e0dbf8
%preun worker
e0dbf8
# systemd_preun uses systemctl disable --now which doesn't work well with template services.
e0dbf8
# See https://github.com/systemd/systemd/issues/15620
e0dbf8
# The following lines mimicks its behaviour by running two commands:
e0dbf8
e0dbf8
# disable and stop all the worker services
e0dbf8
systemctl --no-reload disable osbuild-worker@.service osbuild-remote-worker@.service
e0dbf8
systemctl stop "osbuild-worker@*.service" "osbuild-remote-worker@*.service"
e0dbf8
e0dbf8
%postun worker
e0dbf8
# restart all the worker services
e0dbf8
%systemd_postun_with_restart "osbuild-worker@*.service" "osbuild-remote-worker@*.service"
e0dbf8
e0dbf8
%if %{with tests} || 0%{?rhel}
e0dbf8
e0dbf8
%package tests
e0dbf8
Summary:    Integration tests
e0dbf8
Requires:   %{name} = %{version}-%{release}
e0dbf8
Requires:   composer-cli
e0dbf8
Requires:   createrepo_c
e0dbf8
Requires:   genisoimage
e0dbf8
Requires:   qemu-kvm-core
089c3f
Requires:   systemd-container
089c3f
Requires:   jq
089c3f
Requires:   unzip
089c3f
Requires:   container-selinux
089c3f
Requires:   dnsmasq
089c3f
Requires:   krb5-workstation
089c3f
Requires:   podman
089c3f
Requires:   python3
089c3f
Requires:   sssd-krb5
089c3f
Requires:   libvirt-client libvirt-daemon
089c3f
Requires:   libvirt-daemon-config-network
089c3f
Requires:   libvirt-daemon-config-nwfilter
089c3f
Requires:   libvirt-daemon-driver-interface
089c3f
Requires:   libvirt-daemon-driver-network
089c3f
Requires:   libvirt-daemon-driver-nodedev
089c3f
Requires:   libvirt-daemon-driver-nwfilter
089c3f
Requires:   libvirt-daemon-driver-qemu
089c3f
Requires:   libvirt-daemon-driver-secret
089c3f
Requires:   libvirt-daemon-driver-storage
089c3f
Requires:   libvirt-daemon-driver-storage-disk
089c3f
Requires:   libvirt-daemon-kvm
089c3f
Requires:   qemu-img
089c3f
Requires:   qemu-kvm
089c3f
Requires:   virt-install
089c3f
Requires:   expect
089c3f
Requires:   python3-lxml
089c3f
Requires:   httpd
089c3f
Requires:   openssl
089c3f
%if 0%{?fedora}
089c3f
Requires:   podman-plugins
089c3f
# koji and ansible are not in RHEL repositories. Depending on them breaks RHEL
089c3f
# gating (see OSCI-1541). The test script must enable EPEL and install those
089c3f
# packages manually.
089c3f
Requires:   koji
089c3f
Requires:   ansible
089c3f
%endif
e0dbf8
%ifarch %{arm}
e0dbf8
Requires:   edk2-aarch64
e0dbf8
%endif
e0dbf8
e0dbf8
%description tests
e0dbf8
Integration tests to be run on a pristine-dedicated system to test the osbuild-composer package.
e0dbf8
e0dbf8
%files tests
089c3f
%{_libexecdir}/osbuild-composer-test/
e0dbf8
%{_libexecdir}/tests/osbuild-composer/
e0dbf8
%{_datadir}/tests/osbuild-composer/
e0dbf8
e0dbf8
%endif
e0dbf8
089c3f
e0dbf8
%changelog
089c3f
* Sat Feb 20 2021 Martin Sehnoutka <msehnout@redhat.com> - 28-1
089c3f
- New upstream release
089c3f
089c3f
* Fri Feb 05 2021 Ondrej Budai <obudai@redhat.com> - 27-1
089c3f
- New upstream release
089c3f
089c3f
* Thu Dec 17 2020 Ondrej Budai <obudai@redhat.com> - 26-1
089c3f
- New upstream release
089c3f
089c3f
* Mon Nov 30 2020 Ondrej Budai <obudai@redhat.com> - 25-1
089c3f
- New upstream release 25 (rhbz#1883481)
089c3f
089c3f
* Thu Sep 03 2020 Tom Gundersen <tgunders@redhat.com> - 20.1-1
089c3f
- New upstream release 20.1 (rhbz#1872370)
089c3f
089c3f
* Sun Aug 23 2020 Tom Gundersen <tgunders@redhat.com> - 20-1
089c3f
- New upstream release 20 (rhbz#1871184 and rhbz#1871179)
089c3f
089c3f
* Thu Aug 13 2020 Tom Gundersen <tgunders@redhat.com> - 19-1
089c3f
- New upstream release 19 (rhbz#1866015 and rhbz#1866013)
089c3f
089c3f
* Thu Jul 09 2020 Ondrej Budai <obudai@redhat.com> - 17-1
089c3f
- New upstream release 17 (rhbz#1831653)
089c3f
- Obsolete lorax-composer in favor of osbuild-composer (rhbz#1836844)
089c3f
e0dbf8
* Mon Jun 29 2020 Ondrej Budai <obudai@redhat.com> - 16-1
e0dbf8
- New upstream release 16 (rhbz#1831653)
e0dbf8
e0dbf8
* Fri Jun 12 2020 Ondrej Budai <obudai@redhat.com> - 15-1
e0dbf8
- New upstream release 15 (rhbz#1831653)
e0dbf8
e0dbf8
* Thu Jun 04 2020 Ondrej Budai <obudai@redhat.com> - 14-1
e0dbf8
- New upstream release 14 (rhbz#1831653)
e0dbf8
e0dbf8
* Thu May 28 2020 Ondrej Budai <obudai@redhat.com> - 13-1
e0dbf8
- New upstream release 13 (rhbz#1831653)
e0dbf8
e0dbf8
* Tue May 05 2020 Ondrej Budai <obudai@redhat.com> - 11-1
e0dbf8
- Initial package (renamed from golang-github-osbuild-composer) (rhbz#1771887)