From b0fcfd658e67fed86dd43c603ace2b077a154049 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Wed, 10 May 2023 06:19:59 +0000 Subject: automatic import of python-django-nap --- python-django-nap.spec | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 python-django-nap.spec (limited to 'python-django-nap.spec') 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 - 0.40.0-1 +- Package Spec generated -- cgit v1.2.3