package init

This commit is contained in:
chengzihan2 2021-01-20 16:58:36 +08:00
parent 3f49f6184f
commit 220ede43d7
3 changed files with 80 additions and 0 deletions

BIN
2.2.3.tar.gz Normal file

Binary file not shown.

76
python-django.spec Normal file
View File

@ -0,0 +1,76 @@
%global _empty_manifest_terminate_build 0
Name: python-django
Version: 2.2.3
Release: 1
Summary: A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
License: BSD-3-Clause and OFL-1.1 and Apache-2.0 and MIT
URL: https://github.com/django/django
Source0: https://github.com/django/django/archive/%{version}.tar.gz
BuildArch: noarch
Requires: python3-asgiref
Requires: python3-pytz
Requires: python3-sqlparse
Requires: python3-argon2-cffi
Requires: python3-bcrypt
%description
A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
%package -n python3-Django
Summary: A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
Provides: python-Django
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%description -n python3-Django
A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
%package help
Summary: Development documents and examples for Django
Provides: python3-Django-doc
%description help
Development documents and examples for Django
%prep
%autosetup -n django-%{version}
%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
* Fri Jan 08 2021 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated

4
python-django.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: github
src_repo: django/django
tag_prefix: "^"
separator: "."