- Require leapp-framework 6.0+ - Update leapp-deps package to satisfy leapp-framework-dependencies 6 - Add dependency on libdb-utils - Enable upgrade for systems with LUKS bound to Clevis with TPM 2.0 token - Adjust resource limitations for leapp to be able to perform the upgrade - Cap max size of the sparse files to 1TiB for storage with large amount of free space - Check that detected Intel CPU microarchitecture is supported on target system - Fix the report when handling broken parsing of kernel cmdline - Generate proper error message instead of ModelViolationError when parsing invalid repository definition - Handle default kernel cmdline when multiple boot entries for the default kernel are defined - Migrate Ruby IRB during the upgrade - Migrate pam_userdb backend during the upgrade - Skip checking of (PKI) `directory-hash` dir to speedup the upgrade process and clean logs - Update leapp upgrade data files - Resolves: RHEL-57043
32 lines
1.3 KiB
Diff
32 lines
1.3 KiB
Diff
From 87db66c863104fea824a4406732cbe233ffee412 Mon Sep 17 00:00:00 2001
|
|
From: Petr Stodulka <pstodulk@redhat.com>
|
|
Date: Wed, 13 Nov 2024 15:05:50 +0100
|
|
Subject: [PATCH 33/40] spec: drop .gitkeep files from the RPM
|
|
|
|
We have several .gitkeep files in the repo as we want to have some
|
|
directories present in git however these directories are empty
|
|
otherwise. This is common hack to achieve this, but we do not want
|
|
to have these files really in the resulting RPMs. So we just remove
|
|
them.
|
|
---
|
|
packaging/leapp-repository.spec | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/packaging/leapp-repository.spec b/packaging/leapp-repository.spec
|
|
index 828355bf..2bb52505 100644
|
|
--- a/packaging/leapp-repository.spec
|
|
+++ b/packaging/leapp-repository.spec
|
|
@@ -272,6 +272,9 @@ rm -rf %{buildroot}%{repositorydir}/common/actors/testactor
|
|
find %{buildroot}%{repositorydir}/common -name "test.py" -delete
|
|
rm -rf `find %{buildroot}%{repositorydir} -name "tests" -type d`
|
|
find %{buildroot}%{repositorydir} -name "Makefile" -delete
|
|
+# .gitkeep file is used to have a directory in the repo. but we do not want these
|
|
+# files in the resulting RPM
|
|
+find %{buildroot} -name .gitkeep -delete
|
|
|
|
for DIRECTORY in $(find %{buildroot}%{repositorydir}/ -mindepth 1 -maxdepth 1 -type d);
|
|
do
|
|
--
|
|
2.47.0
|
|
|