68 lines
1.4 KiB
RPMSpec
68 lines
1.4 KiB
RPMSpec
|
Name: python-django
|
||
|
Version: 3.0.7
|
||
|
Release: 0%{?dist}
|
||
|
Summary: A high-level Python Web framework
|
||
|
License: BSD
|
||
|
URL: https://www.djangoproject.com/
|
||
|
Source0: %{pypi_source Django}
|
||
|
BuildArch: noarch
|
||
|
|
||
|
BuildRequires: pyproject-rpm-macros
|
||
|
BuildRequires: python3-devel
|
||
|
|
||
|
%description
|
||
|
This package contains lang files.
|
||
|
Building this tests that lang files are marked with %%lang in filelist.
|
||
|
|
||
|
|
||
|
%package -n python3-django
|
||
|
Summary: %{summary}
|
||
|
|
||
|
%description -n python3-django
|
||
|
...
|
||
|
|
||
|
|
||
|
%prep
|
||
|
%autosetup -p1 -n Django-%{version}
|
||
|
%py3_shebang_fix django/conf/project_template/manage.py-tpl django/bin/django-admin.py
|
||
|
|
||
|
%if 0%{?fedora} < 32 && 0%{?rhel} < 9
|
||
|
# Python RPM dependency generator doesn't support ~= yet
|
||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1758141
|
||
|
sed -i 's/asgiref ~= /asgiref >= /' setup.py
|
||
|
%endif
|
||
|
|
||
|
|
||
|
%generate_buildrequires
|
||
|
%pyproject_buildrequires
|
||
|
|
||
|
|
||
|
%build
|
||
|
%pyproject_wheel
|
||
|
|
||
|
|
||
|
%install
|
||
|
%pyproject_install
|
||
|
%pyproject_save_files django
|
||
|
|
||
|
# remove .po files
|
||
|
find %{buildroot} -name "*.po" | xargs rm -f
|
||
|
|
||
|
|
||
|
%check
|
||
|
# Internal check if generated lang entries are same as
|
||
|
# the ones generated using %%find_lang
|
||
|
%find_lang django
|
||
|
%find_lang djangojs
|
||
|
|
||
|
grep '^%%lang' %{pyproject_files} | sort > tested.lang
|
||
|
sort django.lang djangojs.lang > expected.lang
|
||
|
diff tested.lang expected.lang
|
||
|
|
||
|
|
||
|
%files -n python3-django -f %{pyproject_files}
|
||
|
%doc README.rst
|
||
|
%license LICENSE
|
||
|
%{_bindir}/django-admin
|
||
|
%{_bindir}/django-admin.py
|