mirror of
https://github.com/django/django.git
synced 2025-08-22 03:24:21 +00:00
Removed obsolete rpm-related install code.
This commit is contained in:
parent
05f124348e
commit
edcf8532ff
2 changed files with 0 additions and 32 deletions
|
@ -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
|
|
@ -50,10 +50,6 @@ console_scripts =
|
|||
argon2 = argon2-cffi >= 19.1.0
|
||||
bcrypt = bcrypt
|
||||
|
||||
[bdist_rpm]
|
||||
doc_files = docs extras AUTHORS INSTALL LICENSE README.rst
|
||||
install_script = scripts/rpm-install.sh
|
||||
|
||||
[flake8]
|
||||
exclude = build,.git,.tox,./tests/.env
|
||||
extend-ignore = E203
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue