summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2024-01-05 06:03:19 +0100
committernessita <124304+nessita@users.noreply.github.com>2025-05-05 11:46:49 -0300
commit35c34ed2d0039db98a871da300531514bb0cbac0 (patch)
tree926215770671ad214ea8f4085956aefcd488c8e0 /scripts
parent93973d4f88b46fe72e806361711eeefa83f8e535 (diff)
[4.2.x] Removed obsolete rpm-related install code.
Backport of edcf8532ffda006bc125d9c93fca59f9037f490f from main.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/rpm-install.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/scripts/rpm-install.sh b/scripts/rpm-install.sh
deleted file mode 100644
index 89cf4dd049..0000000000
--- a/scripts/rpm-install.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /bin/sh
-#
-# This file becomes the install section of the generated spec file.
-#
-
-# This is what dist.py normally does.
-%{__python} setup.py install --root=${RPM_BUILD_ROOT} --record="INSTALLED_FILES"
-
-# Sort the filelist so that directories appear before files. This avoids
-# duplicate filename problems on some systems.
-touch DIRS
-for i in `cat INSTALLED_FILES`; do
- if [ -f ${RPM_BUILD_ROOT}/$i ]; then
- echo $i >>FILES
- fi
- if [ -d ${RPM_BUILD_ROOT}/$i ]; then
- echo %dir $i >>DIRS
- fi
-done
-
-# Make sure we match foo.pyo and foo.pyc along with foo.py (but only once each)
-sed -e "/\.py[co]$/d" -e "s/\.py$/.py*/" DIRS FILES >INSTALLED_FILES
-
-mkdir -p ${RPM_BUILD_ROOT}/%{_mandir}/man1/
-cp docs/man/* ${RPM_BUILD_ROOT}/%{_mandir}/man1/
-cat << EOF >> INSTALLED_FILES
-%doc %{_mandir}/man1/*"
-EOF