diff --git a/sasutils-el7.spec b/sasutils-el7.spec index 645350d..59cfffd 100644 --- a/sasutils-el7.spec +++ b/sasutils-el7.spec @@ -1,21 +1,19 @@ Name: sasutils -Version: 0.3.8 +Version: 0.3.9 Release: 1%{?dist} Summary: Serial Attached SCSI (SAS) utilities -Group: System Environment/Base License: ASL 2.0 URL: https://github.com/stanford-rc/sasutils Source0: https://files.pythonhosted.org/packages/source/s/%{name}/%{name}-%{version}.tar.gz BuildArch: noarch -BuildRequires: python34-devel -BuildRequires: python34-setuptools -Requires: python34-setuptools +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: python%{python3_pkgversion}-setuptools +Requires: python%{python3_pkgversion}-setuptools Requires: sg3_utils Requires: smp_utils -Provides: python34-%{name} = %{version} %{?python_provide:%python_provide python-sasutils} %description @@ -53,6 +51,17 @@ install -p -m 0644 doc/man/man1/ses_report.1 %{buildroot}/%{_mandir}/man1/ %license LICENSE.txt %changelog +* Tue Aug 29 2017 Stephane Thiell 0.3.9-1 +- update version + +* Tue Aug 29 2017 Stephane Thiell 0.3.8-3 +- build for Python 3.4 in EPEL7 + +* Tue Aug 22 2017 Stephane Thiell 0.3.8-2 +- always remove shebang from Python modules +- removed unwanted Group tag +- removed useless/duplicate Provides tag + * Fri Aug 18 2017 Stephane Thiell 0.3.8-1 - added man pages diff --git a/sasutils.spec b/sasutils.spec index 37efe91..d602156 100644 --- a/sasutils.spec +++ b/sasutils.spec @@ -1,9 +1,8 @@ Name: sasutils -Version: 0.3.8 +Version: 0.3.9 Release: 1%{?dist} Summary: Serial Attached SCSI (SAS) utilities -Group: System Environment/Base License: ASL 2.0 URL: https://github.com/stanford-rc/sasutils Source0: https://files.pythonhosted.org/packages/source/s/%{name}/%{name}-%{version}.tar.gz @@ -15,7 +14,6 @@ Requires: python3-setuptools Requires: sg3_utils Requires: smp_utils -Provides: python3-%{name} = %{version} %{?python_provide:%python_provide python-sasutils} %description @@ -53,6 +51,14 @@ install -p -m 0644 doc/man/man1/ses_report.1 %{buildroot}/%{_mandir}/man1/ %license LICENSE.txt %changelog +* Tue Aug 29 2017 Stephane Thiell 0.3.9-1 +- update version + +* Tue Aug 22 2017 Stephane Thiell 0.3.8-2 +- always remove shebang from Python modules +- removed unwanted Group tag +- removed useless/duplicate Provides tag + * Fri Aug 18 2017 Stephane Thiell 0.3.8-1 - added man pages diff --git a/setup.py b/setup.py index f138473..9afcb52 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ from setuptools import setup, find_packages -VERSION = '0.3.8' +VERSION = '0.3.9' setup(name='sasutils', version=VERSION,