forked from rpms/leapp-repository
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
|
|
|