Initial import to RHEL 8.
Avoid dependency on python-pbr, conditionalize docs build, to allow building in RHEL. Inspired by python-sushy. Update to 1.5.29. Resolves: rhbz1878679
This commit is contained in:
parent
c3fa48d0f1
commit
1dd30fe369
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@
|
|||||||
/pyghmi-1.2.16.tar.gz
|
/pyghmi-1.2.16.tar.gz
|
||||||
/pyghmi-1.5.14.tar.gz
|
/pyghmi-1.5.14.tar.gz
|
||||||
/pyghmi-1.5.19.tar.gz
|
/pyghmi-1.5.19.tar.gz
|
||||||
|
/pyghmi-1.5.29.tar.gz
|
||||||
|
12
nopbr.patch
Normal file
12
nopbr.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -up pyghmi-1.5.14/pyghmi/version.py~ pyghmi-1.5.14/pyghmi/version.py
|
||||||
|
--- pyghmi-1.5.14/pyghmi/version.py~ 2020-04-22 22:23:43.000000000 +0200
|
||||||
|
+++ pyghmi-1.5.14/pyghmi/version.py 2021-08-06 10:59:41.595820434 +0200
|
||||||
|
@@ -13,6 +13,6 @@
|
||||||
|
# License for the specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
|
||||||
|
-import pbr.version
|
||||||
|
+#import pbr.version
|
||||||
|
|
||||||
|
-version_info = pbr.version.VersionInfo('pyghmi')
|
||||||
|
+version_info = "@@REDHATVERSION@@"
|
@ -18,9 +18,15 @@ incorporate the pyghmi library into a Python application.
|
|||||||
%global with_python2 1
|
%global with_python2 1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%if %{lua: if (string.find(rpm.expand("%{?dist}"), "ost") == nil) then print(0) else print(1) end}
|
||||||
|
%bcond_without docs
|
||||||
|
%else
|
||||||
|
%bcond_with docs
|
||||||
|
%endif
|
||||||
|
|
||||||
Summary: %{common_summary}
|
Summary: %{common_summary}
|
||||||
Name: python-%{sname}
|
Name: python-%{sname}
|
||||||
Version: %{?version:%{version}}%{!?version:1.5.19}
|
Version: %{?version:%{version}}%{!?version:1.5.29}
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Source0: https://tarballs.opendev.org/x/%{sname}/%{sname}-%{version}.tar.gz
|
Source0: https://tarballs.opendev.org/x/%{sname}/%{sname}-%{version}.tar.gz
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
@ -28,6 +34,9 @@ Prefix: %{_prefix}
|
|||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Url: https://git.openstack.org/cgit/openstack/pyghmi
|
Url: https://git.openstack.org/cgit/openstack/pyghmi
|
||||||
|
|
||||||
|
Patch0: nopbr.patch
|
||||||
|
Patch1: setup.patch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
%{common_desc}
|
%{common_desc}
|
||||||
|
|
||||||
@ -38,7 +47,7 @@ Summary: %{common_summary}
|
|||||||
|
|
||||||
BuildRequires: openstack-macros
|
BuildRequires: openstack-macros
|
||||||
BuildRequires: python2-devel
|
BuildRequires: python2-devel
|
||||||
BuildRequires: python2-pbr
|
#BuildRequires: python2-pbr
|
||||||
BuildRequires: python2-setuptools
|
BuildRequires: python2-setuptools
|
||||||
|
|
||||||
Requires: python2-cryptography >= 2.1
|
Requires: python2-cryptography >= 2.1
|
||||||
@ -64,7 +73,7 @@ Summary: %{common_summary}
|
|||||||
%{?python_provide:%python_provide python3-%{sname}}
|
%{?python_provide:%python_provide python3-%{sname}}
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-pbr
|
#BuildRequires: python3-pbr
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
|
|
||||||
Requires: python3-cryptography >= 2.1
|
Requires: python3-cryptography >= 2.1
|
||||||
@ -83,11 +92,13 @@ Requires: python3-%{sname} = %{version}-%{release}
|
|||||||
|
|
||||||
%endif # with_python3
|
%endif # with_python3
|
||||||
|
|
||||||
|
%if %{with docs}
|
||||||
|
|
||||||
%package -n python-%{sname}-doc
|
%package -n python-%{sname}-doc
|
||||||
Summary: The pyghmi library documentation
|
Summary: The pyghmi library documentation
|
||||||
|
|
||||||
%if 0%{?with_python2}
|
%if 0%{?with_python2}
|
||||||
BuildRequires: python2-sphinx
|
BuildRequires: python-sphinx
|
||||||
BuildRequires: python2-openstackdocstheme
|
BuildRequires: python2-openstackdocstheme
|
||||||
%else
|
%else
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python3-sphinx
|
||||||
@ -97,23 +108,36 @@ BuildRequires: python3-openstackdocstheme
|
|||||||
%description -n python-%{sname}-doc
|
%description -n python-%{sname}-doc
|
||||||
Documentation for the pyghmi library
|
Documentation for the pyghmi library
|
||||||
|
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -qn %{sname}-%{version}
|
%setup -qn %{sname}-%{version}
|
||||||
|
%patch0 -p1
|
||||||
|
%patch1 -p1
|
||||||
|
|
||||||
# NOTE(dtantsur): pyghmi is actual fine with older dateutil, 2.8.1 is missing
|
# NOTE(dtantsur): pyghmi is actual fine with older dateutil, 2.8.1 is missing
|
||||||
# from both Fedora and CentOS currently. See
|
# from both Fedora and CentOS currently. See
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1835084
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1835084
|
||||||
sed -i 's/python-dateutil.*/python-dateutil>=2.6.1/' requirements.txt
|
sed -i 's/python-dateutil.*/python-dateutil>=2.6.1/' requirements.txt
|
||||||
|
|
||||||
|
sed -i s/@@REDHATVERSION@@/%{version}/ pyghmi/version.py
|
||||||
|
# If not PBR, use the setup.py.tmpl
|
||||||
|
sed -e "s/#VERSION#/%{version}/" setup.py.tmpl > setup.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
%py3_build
|
%py3_build
|
||||||
|
%if %{with docs}
|
||||||
%{__python3} setup.py build_sphinx -b html
|
%{__python3} setup.py build_sphinx -b html
|
||||||
|
%endif
|
||||||
%endif # with_python3
|
%endif # with_python3
|
||||||
|
|
||||||
%if 0%{?with_python2}
|
%if 0%{?with_python2}
|
||||||
%py2_build
|
%py2_build
|
||||||
|
%if %{with docs}
|
||||||
%{__python2} setup.py build_sphinx -b html
|
%{__python2} setup.py build_sphinx -b html
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# remove the sphinx-build leftovers
|
# remove the sphinx-build leftovers
|
||||||
rm -rf doc/build/html/.{doctrees,buildinfo}
|
rm -rf doc/build/html/.{doctrees,buildinfo}
|
||||||
@ -173,11 +197,20 @@ popd
|
|||||||
%{python2_sitelib}/%{sname}/tests
|
%{python2_sitelib}/%{sname}/tests
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%if %{with docs}
|
||||||
|
|
||||||
%files -n python-%{sname}-doc
|
%files -n python-%{sname}-doc
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc doc/build/html README.md
|
%doc doc/build/html README.md
|
||||||
|
|
||||||
|
%endif # with docs
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Aug 6 2021 Pavel Cahyna <pcahyna@redhat.com> - 1.5.29-1
|
||||||
|
- Updated to 1.5.29.
|
||||||
|
- Avoid dependency on python-pbr, conditionalize docs build, to allow building in RHEL.
|
||||||
|
Inspired by python-sushy.
|
||||||
|
|
||||||
* Fri Nov 06 2020 Joel Capitao <jcapitao@redhat.com> - 1.5.19-1
|
* Fri Nov 06 2020 Joel Capitao <jcapitao@redhat.com> - 1.5.19-1
|
||||||
- Updated to 1.5.19.
|
- Updated to 1.5.19.
|
||||||
|
|
||||||
|
21
setup.patch
Normal file
21
setup.patch
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
diff -up pyghmi-1.5.14/.orig.orig pyghmi-1.5.14/.orig
|
||||||
|
diff -up pyghmi-1.5.14/setup.py.tmpl.orig pyghmi-1.5.14/setup.py.tmpl
|
||||||
|
--- pyghmi-1.5.14/setup.py.tmpl.orig 2021-08-06 11:44:02.618240604 +0200
|
||||||
|
+++ pyghmi-1.5.14/setup.py.tmpl 2021-08-06 11:44:35.586675599 +0200
|
||||||
|
@@ -26,6 +26,15 @@ setuptools.setup(
|
||||||
|
packages=['pyghmi', 'pyghmi.util', 'pyghmi.ipmi', 'pyghmi.cmd',
|
||||||
|
'pyghmi.redfish', 'pyghmi.ipmi.private', 'pyghmi.ipmi.oem',
|
||||||
|
'pyghmi.ipmi.oem.lenovo', 'pyghmi.redfish.oem',
|
||||||
|
- 'pyghmi.redfish.oem.lenovo'],
|
||||||
|
+ 'pyghmi.redfish.oem.lenovo', 'pyghmi.tests'],
|
||||||
|
+ entry_points={
|
||||||
|
+ 'console_scripts': [
|
||||||
|
+ 'pyghmicons=pyghmi.cmd.pyghmicons:main',
|
||||||
|
+ 'pyghmiutil=pyghmi.cmd.pyghmiutil:main',
|
||||||
|
+ 'virshbmc=pyghmi.cmd.virshbmc:main',
|
||||||
|
+ 'fakebmc=pyghmi.cmd.fakebmc:main',
|
||||||
|
+ ],
|
||||||
|
+ },
|
||||||
|
+
|
||||||
|
license='Apache License, Version 2.0')
|
||||||
|
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (pyghmi-1.5.19.tar.gz) = 2d94f3abcae9a45b08e40ab779e0f8f2434e3eea260772dc49007deb8382cc7dc75b10c91f952c26e220d7f937c2d3d8d663a0dc54337d3e2a59c6bfe6929f72
|
SHA512 (pyghmi-1.5.29.tar.gz) = 3e3ecbf4efa179b872d8cc24774e81f6946fa122bb5f3b5de3598e17b448eb5010d6bf6f783b7c27422b71e4739e8b34127ff1c3b5dfec341382f49b2b691c29
|
||||||
|
Loading…
Reference in New Issue
Block a user