diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-11 16:29:36 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-11 16:29:36 +0000 |
commit | de47fc9e4272103f0f572fcb0e64b2bd4f16e8d8 (patch) | |
tree | 92120bf96debb3b42c920c106fb0f6738f8ac475 | |
parent | ee208bdd36b57227b93eb18357cae6753be8b685 (diff) |
automatic import of python-django-logentry-adminopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-django-logentry-admin.spec | 73 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 75 insertions, 0 deletions
@@ -0,0 +1 @@ +/django-logentry-admin-1.1.0.tar.gz diff --git a/python-django-logentry-admin.spec b/python-django-logentry-admin.spec new file mode 100644 index 0000000..78cad3a --- /dev/null +++ b/python-django-logentry-admin.spec @@ -0,0 +1,73 @@ +%global _empty_manifest_terminate_build 0 +Name: python-django-logentry-admin +Version: 1.1.0 +Release: 1 +Summary: Show all LogEntry objects in the Django admin site. +License: ISC +URL: https://github.com/yprez/django-logentry-admin +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5e/fe/529328451657a429cf1ea8c8c3789d0001a711d1c39706c9cca09fd742d3/django-logentry-admin-1.1.0.tar.gz +BuildArch: noarch + +Requires: python3-Django + +%description + + +%package -n python3-django-logentry-admin +Summary: Show all LogEntry objects in the Django admin site. +Provides: python-django-logentry-admin +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-django-logentry-admin + + +%package help +Summary: Development documents and examples for django-logentry-admin +Provides: python3-django-logentry-admin-doc +%description help + + +%prep +%autosetup -n django-logentry-admin-1.1.0 + +%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-logentry-admin -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.1.0-1 +- Package Spec generated @@ -0,0 +1 @@ +729a43a3df8d5a0b201f763ff34880d7 django-logentry-admin-1.1.0.tar.gz |