From edb539b59ae058fa4aaa67427bc67beb9bfe4902 Mon Sep 17 00:00:00 2001 From: huangtianhua Date: Fri, 6 Aug 2021 01:18:41 +0000 Subject: [PATCH] Adds pip/pbr/pytest-runner as BuildRequires --- python-textfsm.spec | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/python-textfsm.spec b/python-textfsm.spec index 28e7e85..237a8e5 100644 --- a/python-textfsm.spec +++ b/python-textfsm.spec @@ -1,16 +1,13 @@ %global _empty_manifest_terminate_build 0 Name: python-textfsm Version: 1.1.0 -Release: 1 +Release: 2 Summary: Python module for parsing semi-structured text into python tables. License: ASL 2.0 URL: https://github.com/google/textfsm Source0: https://github.com/google/textfsm/archive/v%{version}.tar.gz BuildArch: noarch -Requires: python3-future -Requires: python3-six - %description Python module which implements a template based state machine for parsing semi-formatted text. Originally developed to allow programmatic access to @@ -31,9 +28,15 @@ licence for the benefit of the wider community. %package -n python3-textfsm Summary: Python module for parsing semi-structured text into python tables. Provides: python-textfsm +BuildRequires: python3-pip +BuildRequires: python3-pbr BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-six +BuildRequires: python3-pytest-runner +Requires: python3-future +Requires: python3-six +Requires: python3-pytest-runner %description -n python3-textfsm Python module which implements a template based state machine for parsing semi-formatted text. Originally developed to allow programmatic access to @@ -72,7 +75,7 @@ licence for the benefit of the wider community. [**See documentation for more details.**](https://github.com/google/textfsm/wiki/TextFSM) %prep -%autosetup -n textfsm-1.1.0 +%autosetup -n textfsm-%{version} %build %py3_build @@ -86,20 +89,20 @@ 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 + 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 + 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 + 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 + 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 + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . @@ -112,5 +115,8 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Fri Aug 6 2021 huangtianhua +- Adds pip/pbr/pytest-runner as BuildRequires + * Mon Mar 15 2021 Python_Bot - Package Spec generated -- Gitee