From 49504555c936274414ab01618b7f4ba06284ac6a Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 11 Apr 2023 04:59:00 +0000 Subject: automatic import of python-robotremoteserver --- python-robotremoteserver.spec | 90 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 python-robotremoteserver.spec (limited to 'python-robotremoteserver.spec') diff --git a/python-robotremoteserver.spec b/python-robotremoteserver.spec new file mode 100644 index 0000000..53d4c1d --- /dev/null +++ b/python-robotremoteserver.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-robotremoteserver +Version: 1.1.1 +Release: 1 +Summary: Robot Framework remote server implemented with Python +License: Apache License 2.0 +URL: https://github.com/robotframework/PythonRemoteServer +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ab/7f/ca08c86a23bf4ea260ba640855db95e6daf044942e2e51bda0d59ed81573/robotremoteserver-1.1.1.tar.gz +BuildArch: noarch + + +%description +`Robot Framework`_ remote servers allow hosting test libraries on different +processes or machines than Robot Framework itself is running on. This project +implements a generic remote server using the Python_ programming language. +See the `remote library interface documentation`_ for more information about +the remote interface in general as well as for a list of remote server +implementations in other programming languages. +This project is hosted on GitHub_ and downloads are available on PyPI_. + +%package -n python3-robotremoteserver +Summary: Robot Framework remote server implemented with Python +Provides: python-robotremoteserver +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-robotremoteserver +`Robot Framework`_ remote servers allow hosting test libraries on different +processes or machines than Robot Framework itself is running on. This project +implements a generic remote server using the Python_ programming language. +See the `remote library interface documentation`_ for more information about +the remote interface in general as well as for a list of remote server +implementations in other programming languages. +This project is hosted on GitHub_ and downloads are available on PyPI_. + +%package help +Summary: Development documents and examples for robotremoteserver +Provides: python3-robotremoteserver-doc +%description help +`Robot Framework`_ remote servers allow hosting test libraries on different +processes or machines than Robot Framework itself is running on. This project +implements a generic remote server using the Python_ programming language. +See the `remote library interface documentation`_ for more information about +the remote interface in general as well as for a list of remote server +implementations in other programming languages. +This project is hosted on GitHub_ and downloads are available on PyPI_. + +%prep +%autosetup -n robotremoteserver-1.1.1 + +%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-robotremoteserver -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot - 1.1.1-1 +- Package Spec generated -- cgit v1.2.3