diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-10 06:19:59 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 06:19:59 +0000 |
| commit | b0fcfd658e67fed86dd43c603ace2b077a154049 (patch) | |
| tree | 79bee9cd5f68037123c0927d3e0793532a25bf3d | |
| parent | 626a9e5139f9b7b3378b19a4f017545e817325c3 (diff) | |
automatic import of python-django-nap
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-django-nap.spec | 81 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 83 insertions, 0 deletions
@@ -0,0 +1 @@ +/django-nap-0.40.0.tar.gz diff --git a/python-django-nap.spec b/python-django-nap.spec new file mode 100644 index 0000000..3d8cbae --- /dev/null +++ b/python-django-nap.spec @@ -0,0 +1,81 @@ +%global _empty_manifest_terminate_build 0 +Name: python-django-nap +Version: 0.40.0 +Release: 1 +Summary: A light REST tool for Django +License: BSD License +URL: http://github.com/funkybob/django-nap +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/f0/9b/5bb2b2c8b362cf0d063f2ff13b091c92ca8b30f0ab262bea2438f97dde2e/django-nap-0.40.0.tar.gz +BuildArch: noarch + + +%description +Read The Docs: https://django-nap.readthedocs.io/en/latest/ +Change log: https://django-nap.readthedocs.io/en/latest/changelog.html +An API library for Django +A minimalist approach to object de/serialisers, RESTful views, and RPC views. + +%package -n python3-django-nap +Summary: A light REST tool for Django +Provides: python-django-nap +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-django-nap +Read The Docs: https://django-nap.readthedocs.io/en/latest/ +Change log: https://django-nap.readthedocs.io/en/latest/changelog.html +An API library for Django +A minimalist approach to object de/serialisers, RESTful views, and RPC views. + +%package help +Summary: Development documents and examples for django-nap +Provides: python3-django-nap-doc +%description help +Read The Docs: https://django-nap.readthedocs.io/en/latest/ +Change log: https://django-nap.readthedocs.io/en/latest/changelog.html +An API library for Django +A minimalist approach to object de/serialisers, RESTful views, and RPC views. + +%prep +%autosetup -n django-nap-0.40.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-nap -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.40.0-1 +- Package Spec generated @@ -0,0 +1 @@ +74e2da5b861a1244e2c23d4347cb9aa4 django-nap-0.40.0.tar.gz |
