summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-31 07:44:52 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-31 07:44:52 +0000
commitb45d10c1cabf5ed2a3e3ab43f984bd3c7194bc90 (patch)
tree7c888a6ec48af4851a943d0ea71cef2f7e6c9bff
parentb12f033bbeee0703ab5063890fe787cf1cf0c5cb (diff)
automatic import of python-yet-another-django-profiler
-rw-r--r--.gitignore1
-rw-r--r--python-yet-another-django-profiler.spec86
-rw-r--r--sources1
3 files changed, 88 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..916503a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/yet-another-django-profiler-1.1.0.tar.gz
diff --git a/python-yet-another-django-profiler.spec b/python-yet-another-django-profiler.spec
new file mode 100644
index 0000000..85b8648
--- /dev/null
+++ b/python-yet-another-django-profiler.spec
@@ -0,0 +1,86 @@
+%global _empty_manifest_terminate_build 0
+Name: python-yet-another-django-profiler
+Version: 1.1.0
+Release: 1
+Summary: Django middleware for performance profiling directly from the browser
+License: GNU Lesser General Public License v3 or later (LGPLv3+)
+URL: http://github.com/safarijv/yet-another-django-profiler
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/7f/3b/b84d9d9237aedf9dffc73981001746d8333a2b9b4a4175971b85dda3dff7/yet-another-django-profiler-1.1.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-Django
+Requires: python3-mock
+
+%description
+Yet Another Django Profiler attempts to combine the best features of assorted
+other Django profiling utilities that have been created over the years.
+(For more background information, see my
+`blog post <http://blog.safariflow.com/2013/11/21/profiling-django-via-middleware/>`_
+on the topic.)
+
+%package -n python3-yet-another-django-profiler
+Summary: Django middleware for performance profiling directly from the browser
+Provides: python-yet-another-django-profiler
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-yet-another-django-profiler
+Yet Another Django Profiler attempts to combine the best features of assorted
+other Django profiling utilities that have been created over the years.
+(For more background information, see my
+`blog post <http://blog.safariflow.com/2013/11/21/profiling-django-via-middleware/>`_
+on the topic.)
+
+%package help
+Summary: Development documents and examples for yet-another-django-profiler
+Provides: python3-yet-another-django-profiler-doc
+%description help
+Yet Another Django Profiler attempts to combine the best features of assorted
+other Django profiling utilities that have been created over the years.
+(For more background information, see my
+`blog post <http://blog.safariflow.com/2013/11/21/profiling-django-via-middleware/>`_
+on the topic.)
+
+%prep
+%autosetup -n yet-another-django-profiler-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-yet-another-django-profiler -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 1.1.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..af0da23
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+4c5235623f728bf4d481603a9a048bfe yet-another-django-profiler-1.1.0.tar.gz