|
|
|
@ -1,34 +1,28 @@
|
|
|
|
|
# Disable the growpart subpackage in EPEL, as RHEL ships it on its own
|
|
|
|
|
%if 0%{?epel}
|
|
|
|
|
%bcond_with growpart
|
|
|
|
|
%else
|
|
|
|
|
%bcond_without growpart
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Summary: Cloud image management utilities
|
|
|
|
|
Name: cloud-utils
|
|
|
|
|
Version: 0.33
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
License: GPLv3
|
|
|
|
|
URL: https://github.com/canonical/cloud-utils/
|
|
|
|
|
|
|
|
|
|
Source0: cloud-utils-0.33.tar.gz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Don't build the cloud-utils main package on EPEL architectures that don't
|
|
|
|
|
# have qemu-img. Which means we need to make it a no-noarch package for EPEL
|
|
|
|
|
# for this to work properly.
|
|
|
|
|
%define BuildMainPackage 1
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
# don't build debuginfo packages
|
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
%ifarch i686 ppc64
|
|
|
|
|
%define BuildMainPackage 0
|
|
|
|
|
%endif
|
|
|
|
|
%else
|
|
|
|
|
Release: 11%{?dist}
|
|
|
|
|
License: GPL-3.0-only
|
|
|
|
|
URL: https://github.com/canonical/%{name}
|
|
|
|
|
|
|
|
|
|
Source: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Requires: cloud-utils-growpart
|
|
|
|
|
Requires: gawk
|
|
|
|
|
Requires: e2fsprogs
|
|
|
|
|
Requires: file
|
|
|
|
|
Requires: python3
|
|
|
|
|
Requires: qemu-img
|
|
|
|
|
Requires: util-linux
|
|
|
|
|
Requires: %{name}-growpart
|
|
|
|
|
Requires: %{name}-cloud-localds
|
|
|
|
|
Requires: %{name}-write-mime-multipart
|
|
|
|
|
Requires: %{name}-ec2metadata
|
|
|
|
|
Requires: %{name}-resize-part-image
|
|
|
|
|
Requires: %{name}-mount-image-callback
|
|
|
|
|
Requires: %{name}-vcs-run
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This package provides a useful set of utilities for managing cloud images.
|
|
|
|
@ -38,218 +32,194 @@ cloud-utils package provides several scripts that wrap the complicated tasks
|
|
|
|
|
with a much simpler interface.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with growpart}
|
|
|
|
|
%package growpart
|
|
|
|
|
Summary: Script for growing a partition
|
|
|
|
|
Summary: A script for growing a partition
|
|
|
|
|
|
|
|
|
|
Requires: gawk
|
|
|
|
|
# gdisk is only required for resizing GPT partitions and depends on libicu
|
|
|
|
|
# (25MB). We don't make this a hard requirement to save some space in non-GPT
|
|
|
|
|
# systems.
|
|
|
|
|
#Requires: gdisk
|
|
|
|
|
Requires: util-linux
|
|
|
|
|
Recommends: lvm2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description growpart
|
|
|
|
|
This package provides the growpart script for growing a partition. It is
|
|
|
|
|
primarily used in cloud images in conjunction with the dracut-modules-growroot
|
|
|
|
|
package to grow the root partition on first boot.
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
%package cloud-localds
|
|
|
|
|
Summary: A script for creating a nocloud configuration disk for cloud-init
|
|
|
|
|
|
|
|
|
|
Recommends: tar
|
|
|
|
|
Recommends: dosfstools
|
|
|
|
|
Recommends: mtools
|
|
|
|
|
Recommends: genisoimage
|
|
|
|
|
Recommends: qemu-img
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%description cloud-localds
|
|
|
|
|
This package provides the cloud-localds script, which creates a disk-image
|
|
|
|
|
with user-data and/or meta-data for cloud-init.
|
|
|
|
|
|
|
|
|
|
# Create the target directories
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1
|
|
|
|
|
|
|
|
|
|
%if %{BuildMainPackage}
|
|
|
|
|
# Install binaries and manpages
|
|
|
|
|
cp bin/* $RPM_BUILD_ROOT/%{_bindir}/
|
|
|
|
|
cp man/* $RPM_BUILD_ROOT/%{_mandir}/man1/
|
|
|
|
|
%package write-mime-multipart
|
|
|
|
|
Summary: A utilty for creating mime-multipart files
|
|
|
|
|
|
|
|
|
|
# Exclude Ubuntu-specific tools
|
|
|
|
|
rm $RPM_BUILD_ROOT/%{_bindir}/*ubuntu*
|
|
|
|
|
|
|
|
|
|
# Exclude the cloud-run-instances manpage
|
|
|
|
|
rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/cloud-run-instances.*
|
|
|
|
|
%description write-mime-multipart
|
|
|
|
|
This package provides the write-mime-multipart script, which creates
|
|
|
|
|
mime multipart files that can be consumed by cloud-init as user-data.
|
|
|
|
|
|
|
|
|
|
# Exclude euca2ools wrappers and manpages
|
|
|
|
|
rm -f $RPM_BUILD_ROOT/%{_bindir}/cloud-publish-*
|
|
|
|
|
rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/cloud-publish-*
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# Install the growpart binary and man page
|
|
|
|
|
cp bin/growpart $RPM_BUILD_ROOT/%{_bindir}/
|
|
|
|
|
cp man/growpart.* $RPM_BUILD_ROOT/%{_mandir}/man1/
|
|
|
|
|
%package ec2metadata
|
|
|
|
|
Summary: A script to query and display EC2 AMI instance metadata
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Files for the main package
|
|
|
|
|
%if %{BuildMainPackage}
|
|
|
|
|
%files
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/cloud-localds
|
|
|
|
|
%{_bindir}/write-mime-multipart
|
|
|
|
|
%{_bindir}/ec2metadata
|
|
|
|
|
%{_bindir}/resize-part-image
|
|
|
|
|
%{_bindir}/mount-image-callback
|
|
|
|
|
%{_bindir}/vcs-run
|
|
|
|
|
%doc %{_mandir}/man1/resize-part-image.*
|
|
|
|
|
%doc %{_mandir}/man1/write-mime-multipart.*
|
|
|
|
|
%doc %{_mandir}/man1/cloud-localds.*
|
|
|
|
|
%endif
|
|
|
|
|
%description ec2metadata
|
|
|
|
|
This package provides the ec2metadata script, which can be used to query and
|
|
|
|
|
display EC2 instance metadata rekated to an AMI instance.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Files for the growpart subpackage
|
|
|
|
|
%files growpart
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/growpart
|
|
|
|
|
%doc %{_mandir}/man1/growpart.*
|
|
|
|
|
%package resize-part-image
|
|
|
|
|
Summary: A script for resizing cloud images
|
|
|
|
|
|
|
|
|
|
Requires: file
|
|
|
|
|
Requires: gzip
|
|
|
|
|
Requires: e2fsprogs
|
|
|
|
|
Requires: gawk
|
|
|
|
|
Requires: tar
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Wed Oct 19 2022 Camilla Conte <cconte@redhat.com> - 0.33-1
|
|
|
|
|
- Rebase to 0.33
|
|
|
|
|
Resolves: bz#2133248
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.31-10
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 0.31-9
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.31-8
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
%description resize-part-image
|
|
|
|
|
This package provides the resize-part-image script, which can be used to
|
|
|
|
|
resize a partition image and the contained filesystem to a new size.
|
|
|
|
|
|
|
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.31-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.31-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
%package mount-image-callback
|
|
|
|
|
Summary: A script to run commands over cloud image contents
|
|
|
|
|
|
|
|
|
|
* Thu Oct 24 2019 Juerg Haefliger <juergh@gmail.com> - 0.31-5
|
|
|
|
|
- Bump the release number to differentiate from the previous version which didn't build.
|
|
|
|
|
Requires: gawk
|
|
|
|
|
Requires: util-linux
|
|
|
|
|
Recommends: qemu-img
|
|
|
|
|
|
|
|
|
|
* Thu Oct 24 2019 Juerg Haefliger <juergh@gmail.com> - 0.31-4
|
|
|
|
|
- Drop euca2ools dependency (retired package) and wrapper scripts [bz#1762325].
|
|
|
|
|
|
|
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.31-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
%description mount-image-callback
|
|
|
|
|
This package provides the mount-image-callback script, which mounts a cloud
|
|
|
|
|
image to a temporary mountpoint and runs a specified command on the contents.
|
|
|
|
|
|
|
|
|
|
* Mon Mar 18 2019 Juerg Haefliger <juergh@gmail.com> - 0.31-2
|
|
|
|
|
- Add new cloud-utils-0.31.tar.gz sources.
|
|
|
|
|
|
|
|
|
|
* Mon Mar 18 2019 Juerg Haefliger <juergh@gmail.com> - 0.31-1
|
|
|
|
|
- Requires python3 instead of python2 [bz#1530224].
|
|
|
|
|
- Drop python2-paramiko dependency (no longer required).
|
|
|
|
|
- Drop cloud-run-instances manpage (script no longer included).
|
|
|
|
|
- Rebase to upstream release 0.31
|
|
|
|
|
- mount-image-callback: mount with -o 'rw' or -o 'ro' (LP: #1663722)
|
|
|
|
|
- mount-image-callback: run blockdev and udevadm settle on nbd devices. (LP: #1741096, 1741300)
|
|
|
|
|
- mount-image-callback: Drop support for mounting lxd containers. (LP: #1715994)
|
|
|
|
|
- growpart: fix bug that stopped GPT disks from being grown past 2TB. (LP: #1762748)
|
|
|
|
|
- mount-image-callback: mention --help and -C/--cd-mountpoint in Usage
|
|
|
|
|
- growpart: fix bug when resizing a middle partition with sgdisk (LP: #1706751) [Fred De Backer]
|
|
|
|
|
- growpart: Resolve symbolic links before operating. [Kevin Locke] (LP: #1744406)
|
|
|
|
|
- growpart: fix bug occurring if start sector and size were the same. [Lars Kellogg-Stedman] (LP: #1807171)
|
|
|
|
|
- debian/control: drop Suggests on lxc1
|
|
|
|
|
- debian/tests/control: add test growpart-start-matches-size.
|
|
|
|
|
- White space cleanup. Remove trailing space and tabs.
|
|
|
|
|
%package vcs-run
|
|
|
|
|
Summary: Script to run commands over a VCS repository contents
|
|
|
|
|
|
|
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
Recommends: breezy
|
|
|
|
|
Recommends: git-core
|
|
|
|
|
Recommends: mercurial
|
|
|
|
|
Recommends: wget
|
|
|
|
|
|
|
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Feb 07 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.30-3
|
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
%description vcs-run
|
|
|
|
|
This package provides the vcs-run script, which fetches a code repository
|
|
|
|
|
into a temporary directory and runs a user-specified command in it.
|
|
|
|
|
|
|
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Dec 12 2017 Sinny Kumari <sinnykumari@fedoraproject.org> - 0.30-1
|
|
|
|
|
- Rebase to upstream release 0.30
|
|
|
|
|
- Resolves RHBZ#1515835 - growpart fails to resize partition on aarch64
|
|
|
|
|
- Remove patches in spec file because they are already available in 0.30
|
|
|
|
|
- Fix rpmlint issues on spec file
|
|
|
|
|
- Remove LICENSE file, already shipped with 0.30 source tar
|
|
|
|
|
- cloud-run-instances binary has been dropped in 0.28
|
|
|
|
|
- mount-image-callback and vcs-run binaries has been introduced in 0.28
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.27-18
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.27-17
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
%install
|
|
|
|
|
|
|
|
|
|
* Fri Jun 03 2016 Adam Williamson <awilliam@redhat.com> - 0.27-16
|
|
|
|
|
- backport fix for RHBZ #1327337 (growpart fail with newer util-linux-ng)
|
|
|
|
|
# Create the target directories
|
|
|
|
|
install -d %{buildroot}%{_bindir}
|
|
|
|
|
install -d %{buildroot}%{_mandir}/man1
|
|
|
|
|
|
|
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.27-15
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
# Install binaries and manpages
|
|
|
|
|
install -pm 0755 bin/* %{buildroot}%{_bindir}/
|
|
|
|
|
install -pm 0644 man/* %{buildroot}%{_mandir}/man1/
|
|
|
|
|
|
|
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.27-14
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
# Exclude Ubuntu-specific tools
|
|
|
|
|
rm %{buildroot}%{_bindir}/*ubuntu*
|
|
|
|
|
|
|
|
|
|
* Wed Mar 25 2015 Juerg Haefliger <juergh@gmail.com> - 0.27-13
|
|
|
|
|
- [1197894] sfdisk dropped --show-pt-geometry option
|
|
|
|
|
# Exclude the cloud-run-instances manpage
|
|
|
|
|
rm -f %{buildroot}%{_mandir}/man1/cloud-run-instances.*
|
|
|
|
|
|
|
|
|
|
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 0.27-12
|
|
|
|
|
- fix license handling
|
|
|
|
|
# Exclude euca2ools wrappers and manpages
|
|
|
|
|
rm -f %{buildroot}%{_bindir}/cloud-publish-*
|
|
|
|
|
rm -f %{buildroot}%{_mandir}/man1/cloud-publish-*
|
|
|
|
|
|
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.27-11
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
%if %{without growpart}
|
|
|
|
|
rm -f %{buildroot}%{_bindir}/growpart
|
|
|
|
|
rm -f %{buildroot}%{_mandir}/man1/growpart.*
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
* Fri Nov 22 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-10
|
|
|
|
|
- [966574] growpart spits out a non-fatal error
|
|
|
|
|
|
|
|
|
|
* Fri Aug 16 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-9
|
|
|
|
|
- Prevent building of debuginfo packages.
|
|
|
|
|
- Fix 32-bit arch type.
|
|
|
|
|
%files
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%license LICENSE
|
|
|
|
|
|
|
|
|
|
* Fri Aug 16 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-8
|
|
|
|
|
- Make the package a no-noarch package on EPEL so that the build of the main
|
|
|
|
|
package can be prevented for the arches that don't support it [bz#986809].
|
|
|
|
|
|
|
|
|
|
* Tue Aug 06 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-7
|
|
|
|
|
- Build the growpart subpackage on all EPEL architectures [bz#986809].
|
|
|
|
|
%if %{with growpart}
|
|
|
|
|
%files growpart
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/growpart
|
|
|
|
|
%doc %{_mandir}/man1/growpart.*
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.27-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jun 17 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-5
|
|
|
|
|
- Don't make gdisk a hard requirement for cloud-utils-growpart to save some
|
|
|
|
|
space on systems that don't use GPT partitions.
|
|
|
|
|
%files cloud-localds
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/cloud-localds
|
|
|
|
|
%doc %{_mandir}/man1/cloud-localds.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jun 17 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-4
|
|
|
|
|
- Break out the growpart script into its own subpackage to prevent pulling a
|
|
|
|
|
boatload of unnecessary dependencies into a cloud image.
|
|
|
|
|
%files write-mime-multipart
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/write-mime-multipart
|
|
|
|
|
%doc %{_mandir}/man1/write-mime-multipart.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files ec2metadata
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/ec2metadata
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files resize-part-image
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/resize-part-image
|
|
|
|
|
%doc %{_mandir}/man1/resize-part-image.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files mount-image-callback
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/mount-image-callback
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files vcs-run
|
|
|
|
|
%doc ChangeLog
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_bindir}/vcs-run
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 0.33-11
|
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
|
|
|
|
|
* Mon Apr 8 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-3
|
|
|
|
|
- 3rd attempt to fix the spec file to only build on x86_64 for EPEL.
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.33-10
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Apr 5 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-2
|
|
|
|
|
- Yet another spec file fix to only build on x86_64 for EPEL.
|
|
|
|
|
* Wed Jun 12 2024 Miroslav Rezanina <mrezanin@redhat.com> - 0.33-9
|
|
|
|
|
- cu-Drop-obsolete-gdisk-soft-dependency.patch [RHEL-36095]
|
|
|
|
|
- Resolves: RHEL-36095
|
|
|
|
|
(Remove cloud-utils-growpart dependency on obsolete gdisk)
|
|
|
|
|
|
|
|
|
|
* Tue Apr 2 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-1
|
|
|
|
|
- Update to upstream release 0.27.
|
|
|
|
|
- Fix spec file to only build on x86_64 for EPEL.
|
|
|
|
|
|
|
|
|
|
* Tue Feb 12 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-0.2.bzr216
|
|
|
|
|
- Add GPL-3 license.
|
|
|
|
|
- Exclude Ubuntu-specific tools.
|
|
|
|
|
- Fix some spec file issues per reviewers comments.
|
|
|
|
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.33-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Feb 5 2013 Juerg Haefliger <juergh@gmail.com> - 0.27-0.1.bzr216
|
|
|
|
|
- Initial build based on upstream revision bzr216.
|
|
|
|
|