summaryrefslogtreecommitdiff
path: root/python-polarion-docstrings.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-06-20 09:21:56 +0000
committerCoprDistGit <infra@openeuler.org>2023-06-20 09:21:56 +0000
commit61f9c467ad5e6010c1074763945b5101365b7517 (patch)
tree821318cdf8f080d9854c89866ec7a3c192397791 /python-polarion-docstrings.spec
parent43819c46654678263a201d6ecceb6eda3eb3e2a8 (diff)
automatic import of python-polarion-docstringsopeneuler20.03
Diffstat (limited to 'python-polarion-docstrings.spec')
-rw-r--r--python-polarion-docstrings.spec74
1 files changed, 74 insertions, 0 deletions
diff --git a/python-polarion-docstrings.spec b/python-polarion-docstrings.spec
new file mode 100644
index 0000000..b29f235
--- /dev/null
+++ b/python-polarion-docstrings.spec
@@ -0,0 +1,74 @@
+%global _empty_manifest_terminate_build 0
+Name: python-polarion-docstrings
+Version: 0.26.0
+Release: 1
+Summary: Reads Polarion docstrings and validates them using flake8
+License: MIT
+URL: https://gitlab.com/mkourim/polarion_docstrings
+Source0: https://mirrors.aliyun.com/pypi/web/packages/a9/f2/811abe9dd8b6ca700f565c1241cf116f83e1892a2b914b1fa265ce0e23b7/polarion-docstrings-0.26.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-pyyaml
+Requires: python3-polarion-tools-common
+
+%description
+
+
+%package -n python3-polarion-docstrings
+Summary: Reads Polarion docstrings and validates them using flake8
+Provides: python-polarion-docstrings
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-polarion-docstrings
+
+
+%package help
+Summary: Development documents and examples for polarion-docstrings
+Provides: python3-polarion-docstrings-doc
+%description help
+
+
+%prep
+%autosetup -n polarion-docstrings-0.26.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-polarion-docstrings -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.26.0-1
+- Package Spec generated