This commit is contained in:
Fabio Alessandro Locati 2016-01-07 16:16:08 +01:00
parent 9dfbd410c4
commit 9daded3b1d

View File

@ -2,7 +2,7 @@
Name: python-%{pypi_name} Name: python-%{pypi_name}
Version: 5.0.6 Version: 5.0.6
Release: 2%{?dist} Release: 3%{?dist}
Summary: Config file reading, writing, and validation Summary: Config file reading, writing, and validation
Group: System Environment/Libraries Group: System Environment/Libraries
@ -19,15 +19,16 @@ BuildArch: noarch
BuildRequires: python2-devel BuildRequires: python2-devel
BuildRequires: python-setuptools BuildRequires: python-setuptools
BuildRequires: python-six BuildRequires: python-six
BuildRequires: python-pytest %{?fc22:Requires: pytest}
%{!?fc22:Requires: python-pytest}
BuildRequires: python3-devel BuildRequires: python3-devel
BuildRequires: python3-setuptools BuildRequires: python3-setuptools
BuildRequires: python3-six BuildRequires: python3-six
BuildRequires: python3-pytest BuildRequires: python3-pytest
%description %description
ConfigObj is a simple but powerful configuration file reader and writer: an ini file ConfigObj is a simple but powerful configuration file reader and writer: an ini
round tripper. Its main feature is that it is very easy to use, with a file round tripper. Its main feature is that it is very easy to use, with a
straightforward programmer's interface and a simple syntax for config files. straightforward programmer's interface and a simple syntax for config files.
%package -n python2-%{pypi_name} %package -n python2-%{pypi_name}
@ -36,8 +37,8 @@ Summary: Config file reading, writing and validation
Requires: python-six Requires: python-six
%description -n python2-%{pypi_name} %description -n python2-%{pypi_name}
ConfigObj is a simple but powerful configuration file reader and writer: an ini file ConfigObj is a simple but powerful configuration file reader and writer: an ini
round tripper. Its main feature is that it is very easy to use, with a file round tripper. Its main feature is that it is very easy to use, with a
straightforward programmer's interface and a simple syntax for config files. straightforward programmer's interface and a simple syntax for config files.
%package -n python3-configobj %package -n python3-configobj
@ -46,8 +47,8 @@ Summary: Config file reading, writing, and validation for Python 3
Requires: python3-six Requires: python3-six
%description -n python3-configobj %description -n python3-configobj
ConfigObj is a simple but powerful configuration file reader and writer: an ini file ConfigObj is a simple but powerful configuration file reader and writer: an ini
round tripper. Its main feature is that it is very easy to use, with a file round tripper. Its main feature is that it is very easy to use, with a
straightforward programmer's interface and a simple syntax for config files. straightforward programmer's interface and a simple syntax for config files.
%prep %prep
@ -82,6 +83,10 @@ py.test-%{python3_version} tests
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info %{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
%changelog %changelog
* Thu Jan 07 2016 Fabio Alessandro Locati <fabio@locati.cc> - 5.0.6-3
- Fix descriptions
- Fix for F22
* Thu Jan 07 2016 Fabio Alessandro Locati <fabio@locati.cc> - 5.0.6-2 * Thu Jan 07 2016 Fabio Alessandro Locati <fabio@locati.cc> - 5.0.6-2
- Simplify spec file - Simplify spec file
- Improve spec file - Improve spec file