!4 Upgrade package to version 2.1.0
From: @jxy_git Reviewed-by: @shinwell_hu Signed-off-by: @shinwell_hu
This commit is contained in:
commit
0cc0a2d67b
25
0001-add-setup.py.patch
Normal file
25
0001-add-setup.py.patch
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
From 343f2b3e776fe7742727f806fb3424a7c9a7851d Mon Sep 17 00:00:00 2001
|
||||||
|
From: jxy_git <jiangxinyu@kylinos.cn>
|
||||||
|
Date: Mon, 7 Nov 2022 15:23:19 +0800
|
||||||
|
Subject: [PATCH] add setup.py
|
||||||
|
|
||||||
|
---
|
||||||
|
setup.py | 6 ++++++
|
||||||
|
1 file changed, 6 insertions(+)
|
||||||
|
create mode 100644 setup.py
|
||||||
|
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000..30c1b7b
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -0,0 +1,6 @@
|
||||||
|
+#!/usr/bin/env python
|
||||||
|
+
|
||||||
|
+from setuptools import setup
|
||||||
|
+
|
||||||
|
+if __name__ == "__main__":
|
||||||
|
+ setup()
|
||||||
|
--
|
||||||
|
2.37.1
|
||||||
|
|
||||||
Binary file not shown.
BIN
django-debreach-2.1.0.tar.gz
Normal file
BIN
django-debreach-2.1.0.tar.gz
Normal file
Binary file not shown.
@ -1,19 +1,23 @@
|
|||||||
|
%global _empty_manifest_terminate_build 0
|
||||||
%global pypi_name django-debreach
|
%global pypi_name django-debreach
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 2.0.1
|
Version: 2.1.0
|
||||||
Release: 2
|
Release: 1
|
||||||
Summary: Basic/extra mitigation against the BREACH attack for Django projects
|
Summary: Basic/extra mitigation against the BREACH attack for Django projects
|
||||||
|
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
URL: http://github.com/lpomfrey/django-debreach
|
URL: http://github.com/lpomfrey/django-debreach
|
||||||
Source0: https://files.pythonhosted.org/packages/source/d/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/1f/1a/2bc5970d6b848c7ff4ab2932493a8e25bbed47f7668e4c3338152defc01a/django-debreach-2.1.0.tar.gz
|
||||||
|
Patch0: 0001-add-setup.py.patch
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-Django
|
BuildRequires: python3-Django
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python3-sphinx
|
||||||
|
BuildRequires: python3-pip
|
||||||
|
BuildRequires: python3-wheel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Basic/extra mitigation against the BREACH attack for Django projects.
|
Basic/extra mitigation against the BREACH attack for Django projects.
|
||||||
@ -35,25 +39,54 @@ protection against the BREACH attack.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{pypi_name}-%{version}
|
%autosetup -n %{pypi_name}-%{version}
|
||||||
|
%patch0
|
||||||
# Remove bundled egg-info
|
# Remove bundled egg-info
|
||||||
rm -rf %{pypi_name}.egg-info
|
rm -rf %{pypi_name}.egg-info
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_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 .
|
||||||
|
|
||||||
%check
|
%check
|
||||||
PYTHONPATH=. %{__python3} setup.py test
|
PYTHONPATH=. %{__python3} setup.py test
|
||||||
|
|
||||||
%files -n python3-%{pypi_name}
|
%files -n python3-%{pypi_name} -f filelist.lst
|
||||||
%license LICENSE
|
%dir %{python3_sitelib}/*
|
||||||
%doc README.rst
|
%{_docdir}/python-%{pypi_name}/docs/*
|
||||||
%{python3_sitelib}/debreach
|
|
||||||
%{python3_sitelib}/django_debreach-%{version}-py%{python3_version}.egg-info
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 07 2022 jiangxinyu <jiangxinyu@kylinos.cn> - 2.1.0-1
|
||||||
|
- Upgrade package to version 2.1.0
|
||||||
|
|
||||||
* Wed May 11 2022 yangping <yangping69@h-partners> - 2.0.1-2
|
* Wed May 11 2022 yangping <yangping69@h-partners> - 2.0.1-2
|
||||||
- License compliance rectification
|
- License compliance rectification
|
||||||
|
|
||||||
* Wed Jan 29 2021 liusheng <liusheng2048@gmail.com> - 2.0.1-1
|
* Fri Jan 29 2021 liusheng <liusheng2048@gmail.com> - 2.0.1-1
|
||||||
- Init package for python-django-debreach
|
- Init package for python-django-debreach
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user