2021-01-20 16:58:36 +08:00
|
|
|
%global _empty_manifest_terminate_build 0
|
|
|
|
|
Name: python-django
|
2024-08-08 11:33:05 +08:00
|
|
|
Version: 4.2.15
|
2024-12-09 10:24:52 +08:00
|
|
|
Release: 3
|
2021-01-20 16:58:36 +08:00
|
|
|
Summary: A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
|
2022-07-05 17:23:06 +08:00
|
|
|
License: Apache-2.0 and Python-2.0 and BSD-3-Clause
|
2021-07-12 14:30:03 +08:00
|
|
|
URL: https://www.djangoproject.com/
|
2024-07-12 15:19:51 +08:00
|
|
|
Source0: https://files.pythonhosted.org/packages/source/d/Django/Django-%{version}.tar.gz
|
2024-10-10 11:46:57 +08:00
|
|
|
Patch0: CVE-2024-45230.patch
|
|
|
|
|
Patch1: CVE-2024-45231.patch
|
2024-12-09 10:24:52 +08:00
|
|
|
Patch2: CVE-2024-53907.patch
|
|
|
|
|
Patch3: CVE-2024-53908.patch
|
2022-04-21 11:11:20 +08:00
|
|
|
|
2021-07-12 14:30:03 +08:00
|
|
|
BuildArch: noarch
|
2021-01-20 16:58:36 +08:00
|
|
|
%description
|
|
|
|
|
A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
|
|
|
|
|
|
2021-07-12 14:30:03 +08:00
|
|
|
|
2021-01-20 16:58:36 +08:00
|
|
|
%package -n python3-Django
|
|
|
|
|
Summary: A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
|
2021-02-08 08:47:55 +00:00
|
|
|
Provides: python-Django, python3-django
|
2021-01-20 16:58:36 +08:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: python3-setuptools
|
2021-07-12 14:30:03 +08:00
|
|
|
Requires: python3-pytz
|
|
|
|
|
Requires: python3-sqlparse
|
|
|
|
|
Requires: python3-argon2-cffi
|
|
|
|
|
Requires: python3-bcrypt
|
2021-01-20 16:58:36 +08:00
|
|
|
%description -n python3-Django
|
|
|
|
|
A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
|
|
|
|
|
|
2021-07-12 14:30:03 +08:00
|
|
|
|
2021-01-20 16:58:36 +08:00
|
|
|
%package help
|
|
|
|
|
Summary: Development documents and examples for Django
|
|
|
|
|
Provides: python3-Django-doc
|
|
|
|
|
%description help
|
|
|
|
|
Development documents and examples for Django
|
|
|
|
|
|
|
|
|
|
%prep
|
2023-07-07 01:57:56 +08:00
|
|
|
%autosetup -n Django-%{version} -p1
|
2021-01-20 16:58:36 +08:00
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%py3_install
|
|
|
|
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
|
|
|
|
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
pushd %{buildroot}
|
|
|
|
|
if [ -d usr/lib ]; then
|
|
|
|
|
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
|
|
|
|
fi
|
|
|
|
|
if [ -d usr/lib64 ]; then
|
|
|
|
|
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
|
|
|
|
|
fi
|
|
|
|
|
if [ -d usr/bin ]; then
|
|
|
|
|
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
|
|
|
|
|
fi
|
|
|
|
|
if [ -d usr/sbin ]; then
|
|
|
|
|
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
|
|
|
|
|
fi
|
|
|
|
|
touch doclist.lst
|
|
|
|
|
if [ -d usr/share/man ]; then
|
|
|
|
|
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
|
|
|
|
|
fi
|
|
|
|
|
popd
|
|
|
|
|
mv %{buildroot}/filelist.lst .
|
|
|
|
|
mv %{buildroot}/doclist.lst .
|
|
|
|
|
|
|
|
|
|
%files -n python3-Django -f filelist.lst
|
|
|
|
|
%dir %{python3_sitelib}/*
|
|
|
|
|
|
|
|
|
|
%files help -f doclist.lst
|
|
|
|
|
%{_docdir}/*
|
|
|
|
|
|
|
|
|
|
%changelog
|
2024-12-09 10:24:52 +08:00
|
|
|
* Mon Dec 09 2024 wangkai <13474090681@163.com> - 4.2.15-3
|
|
|
|
|
- Fix CVE-2024-53907 CVE-2024-53908
|
|
|
|
|
|
2024-10-10 11:46:57 +08:00
|
|
|
* Thu Oct 10 2024 zhangxianting <zhangxianting@uniontech.com> - 4.2.15-2
|
|
|
|
|
- Fix CVE-2024-45230 CVE-2024-45231
|
|
|
|
|
|
2024-08-08 11:33:05 +08:00
|
|
|
* Thu Aug 08 2024 yaoxin <yao_xin001@hoperun.com> - 4.2.15-1
|
|
|
|
|
- Update to 4.2.15
|
|
|
|
|
* CVE-2024-41989: Memory exhaustion in ``django.utils.numberformat.floatformat()``
|
|
|
|
|
* CVE-2024-41990: Potential denial-of-service vulnerability in ``django.utils.html.urlize()``
|
|
|
|
|
* CVE-2024-41991: Potential denial-of-service vulnerability in ``django.utils.html.urlize()`` and ``AdminURLFieldWidget``
|
|
|
|
|
* CVE-2024-42005: Potential SQL injection in ``QuerySet.values()`` and ``values_list()``
|
|
|
|
|
* Fixed a regression in Django 4.2.14 that caused a crash in ``LocaleMiddleware`` when processing a language code over 500 characters
|
|
|
|
|
|
2024-07-12 15:19:51 +08:00
|
|
|
* Fri Jul 12 2024 yaoxin <yao_xin001@hoperun.com> - 4.2.14-1
|
|
|
|
|
- Update to 4.2.14
|
|
|
|
|
* CVE-2024-38875: Potential denial-of-service vulnerability in django.utils.html.urlize()
|
|
|
|
|
* CVE-2024-39329: Username enumeration through timing difference for users with unusable passwords
|
|
|
|
|
* CVE-2024-39330: Potential directory-traversal via Storage.save()
|
|
|
|
|
* CVE-2024-39614: Potential denial-of-service vulnerability in get_supported_language_variant()
|
|
|
|
|
|
2024-03-05 15:27:21 +08:00
|
|
|
* Tue Mar 05 2024 yaoxin <yao_xin001@hoperun.com> - 4.2.3-7
|
|
|
|
|
- Fix CVE-2024-27351
|
|
|
|
|
|
2024-02-07 11:03:20 +08:00
|
|
|
* Wed Feb 07 2024 yaoxin <yao_xin001@hoperun.com> - 4.2.3-6
|
|
|
|
|
- Fix CVE-2024-24680
|
|
|
|
|
|
2023-12-15 15:33:46 +08:00
|
|
|
* Fri Sep 15 2023 xu_ping <707078654@qq.com> - 4.2.3-5
|
|
|
|
|
- Fix changelog bad date
|
|
|
|
|
|
2023-11-06 14:06:02 +08:00
|
|
|
* Mon Nov 06 2023 yaoxin <yao_xin001@hoperun.com> - 4.2.3-4
|
|
|
|
|
- Fix CVE-2023-46695
|
|
|
|
|
|
2023-10-08 11:18:39 +08:00
|
|
|
* Sun Oct 08 2023 yaoxin <yao_xin001@hoperun.com> - 4.2.3-3
|
|
|
|
|
- Fix CVE-2023-43665
|
|
|
|
|
|
2023-09-14 14:38:28 +08:00
|
|
|
* Thu Sep 14 2023 wangkai <13474090681@163.com> - 4.2.3-2
|
|
|
|
|
- Fix CVE-2023-41164
|
|
|
|
|
|
2023-07-07 01:57:56 +08:00
|
|
|
* Tue Jul 11 2023 chenzixuan <chenzixuan@kylinos.cn> - 4.2.3-1
|
|
|
|
|
- Update to 4.2.3
|
|
|
|
|
|
2023-05-16 11:27:02 +08:00
|
|
|
* Tue May 16 2023 yaoxin <yao_xin001@hoperun.com> - 4.1.7-2
|
|
|
|
|
- Fix CVE-2023-31047
|
|
|
|
|
|
2023-04-11 10:34:23 +08:00
|
|
|
* Tue Apr 11 2023 yaoxin <yao_xin001@hoperun.com> - 4.1.7-1
|
|
|
|
|
- Update to 4.1.7
|
|
|
|
|
|
2023-02-25 16:20:33 +08:00
|
|
|
* Sat Feb 25 2023 yaoxin <yaoxin30@h-partners.com> - 4.1.4-3
|
|
|
|
|
- Fix CVE-2023-24580
|
|
|
|
|
|
2023-02-13 19:40:11 +08:00
|
|
|
* Mon Feb 13 2023 yaoxin <yaoxin30@h-partners.com> - 4.1.4-2
|
|
|
|
|
- Fix CVE-2023-23969
|
|
|
|
|
|
2022-12-09 13:40:42 +08:00
|
|
|
* Fri Dec 09 2022 chendexi <chendexi@kylinos.cn> - 4.1.4-1
|
|
|
|
|
- Upgrade package to version 4.1.4
|
|
|
|
|
|
2022-08-09 09:49:14 +08:00
|
|
|
* Tue Aug 09 2022 huangduirong <huangduirong@huawei.com> - 3.2.12-3
|
|
|
|
|
- Type: bugfix
|
|
|
|
|
- CVE: CVE-2022-36359
|
|
|
|
|
- SUG: NA
|
|
|
|
|
- DESC: Fix CVE-2022-36359
|
|
|
|
|
|
2022-07-05 17:23:06 +08:00
|
|
|
* Tue Jul 05 2022 yaoxin <yaoxin30@h-partners.com> - 3.2.12-2
|
|
|
|
|
- Fix CVE-2022-34265
|
|
|
|
|
|
2022-05-18 18:31:21 +08:00
|
|
|
* Wed May 18 2022 xigaoxinyan <xigaoxinyan@h-partners.com> - 3.2.12-1
|
|
|
|
|
- Update to 3.2.12
|
|
|
|
|
|
2022-04-21 11:11:20 +08:00
|
|
|
* Thu Apr 21 2022 yaoxin <yaoxin30@h-partners.com> - 2.2.27-2
|
|
|
|
|
- Fix CVE-2022-28346 CVE-2022-28347
|
|
|
|
|
|
2022-02-10 17:00:03 +08:00
|
|
|
* Thu Feb 10 2022 houyingchao <houyingchao@huawei.com> - 2.2.27-1
|
|
|
|
|
- Upgrade to 2.2.27
|
|
|
|
|
- Fix CVE-2021-45115 CVE-2021-45116 CVE-2021-45452 CVE-2022-22818 CVE-2022-23833
|
|
|
|
|
|
2021-07-12 14:30:03 +08:00
|
|
|
* Fri Jul 09 2021 openstack-sig <openstack@openeuler.org>
|
|
|
|
|
- Update to 2.2.19
|
|
|
|
|
|
2023-12-15 15:33:46 +08:00
|
|
|
* Tue Feb 09 2021 wangxiyuan <wangxiyuan1007@gmail.com> - 2.2.3-2
|
2021-02-08 08:47:55 +00:00
|
|
|
- Add python3-django for correct package name. Due to backward compatibility, the python3-Django is kept and it should be removed in the future.
|
|
|
|
|
|
2023-12-15 15:33:46 +08:00
|
|
|
* Fri Jan 08 2021 Python_Bot <Python_Bot@openeuler.org> - 2.2.3-1
|
2021-01-20 16:58:36 +08:00
|
|
|
- Package Spec generated
|