Compare commits
No commits in common. "imports/c9-beta/python-distro-1.5.0-7.el9" and "c8-stream-3.6" have entirely different histories.
imports/c9
...
c8-stream-
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/distro-1.5.0.tar.gz
|
SOURCES/distro-1.4.0.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
cb0e7d550a3c66c960a1914718e4f4dfe1228a19 SOURCES/distro-1.5.0.tar.gz
|
d72ac60844b2b472fc815441afe60fc1da728926 SOURCES/distro-1.4.0.tar.gz
|
||||||
|
@ -1,20 +1,13 @@
|
|||||||
%global pypi_name distro
|
%global pypi_name distro
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
|
||||||
%bcond_with python3
|
|
||||||
%bcond_without python2
|
|
||||||
%else
|
|
||||||
%bcond_without python3
|
|
||||||
%bcond_with python2
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 1.5.0
|
Version: 1.4.0
|
||||||
Release: 7%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Linux Distribution - a Linux OS platform information API
|
Summary: Linux Distribution - a Linux OS platform information API
|
||||||
|
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: https://github.com/nir0s/distro
|
URL: https://github.com/nir0s/distro
|
||||||
Source0: https://files.pythonhosted.org/packages/source/%(n=%{pypi_name}; echo ${n:0:1})/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
Source0: %{pypi_source}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%global _description \
|
%global _description \
|
||||||
@ -33,127 +26,55 @@ for more information.
|
|||||||
|
|
||||||
%description %{_description}
|
%description %{_description}
|
||||||
|
|
||||||
%if %{with python2}
|
|
||||||
%package -n python2-%{pypi_name}
|
|
||||||
Summary: %{summary}
|
|
||||||
%{?python_provide:%python_provide python2-%{pypi_name}}
|
|
||||||
BuildRequires: python2-devel
|
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
|
||||||
BuildRequires: python-setuptools
|
|
||||||
BuildRequires: pytest
|
|
||||||
%else
|
|
||||||
BuildRequires: python2-setuptools
|
|
||||||
BuildRequires: python2-pytest
|
|
||||||
%endif
|
|
||||||
%if 0%{?fedora}
|
|
||||||
Suggests: /usr/bin/lsb_release
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%description -n python2-%{pypi_name} %{_description}
|
|
||||||
|
|
||||||
Python 2 version.
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %{with python3}
|
|
||||||
%package -n python3-%{pypi_name}
|
%package -n python3-%{pypi_name}
|
||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
%{?python_provide:%python_provide python3-%{pypi_name}}
|
%{?python_provide:%python_provide python3-%{pypi_name}}
|
||||||
BuildRequires: python3-devel
|
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3-pytest
|
BuildRequires: python3-pytest
|
||||||
%if 0%{?fedora}
|
|
||||||
Suggests: /usr/bin/lsb_release
|
%if %{with python36_module}
|
||||||
|
BuildRequires: python36-devel
|
||||||
|
BuildRequires: python36-rpm-macros
|
||||||
|
%else
|
||||||
|
BuildRequires: python3-devel
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description -n python3-%{pypi_name} %{_description}
|
%description -n python3-%{pypi_name} %{_description}
|
||||||
|
|
||||||
Python 3 version.
|
Python 3 version.
|
||||||
%endif
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{pypi_name}-%{version}
|
%autosetup -n %{pypi_name}-%{version}
|
||||||
# Remove bundled egg-info
|
# Remove bundled egg-info
|
||||||
rm -rf %{pypi_name}.egg-info
|
rm -rf %{pypi_name}.egg-info
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if %{with python2}
|
|
||||||
%py2_build
|
|
||||||
%endif
|
|
||||||
%if %{with python3}
|
|
||||||
%py3_build
|
%py3_build
|
||||||
%endif
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%if %{with python2}
|
|
||||||
%py2_install
|
|
||||||
%endif
|
|
||||||
%if %{with python3}
|
|
||||||
%py3_install
|
%py3_install
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %{with python2}
|
|
||||||
%files -n python2-%{pypi_name}
|
|
||||||
%doc CHANGELOG.md CONTRIBUTORS.md README.md
|
|
||||||
%license LICENSE
|
|
||||||
%{python2_sitelib}/%{pypi_name}-*.egg-info/
|
|
||||||
%{python2_sitelib}/%{pypi_name}.py*
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %{with python3}
|
%check
|
||||||
|
%{__python3} -m pytest tests -v
|
||||||
|
|
||||||
|
|
||||||
%files -n python3-%{pypi_name}
|
%files -n python3-%{pypi_name}
|
||||||
%doc CHANGELOG.md CONTRIBUTORS.md README.md
|
%doc CHANGELOG.md CONTRIBUTORS.md README.md
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python3_sitelib}/%{pypi_name}-*.egg-info/
|
%{python3_sitelib}/%{pypi_name}-*.egg-info/
|
||||||
%{python3_sitelib}/%{pypi_name}.py
|
%{python3_sitelib}/%{pypi_name}.py
|
||||||
%{python3_sitelib}/__pycache__/%{pypi_name}.*
|
%{python3_sitelib}/__pycache__/%{pypi_name}.*
|
||||||
%endif
|
|
||||||
|
|
||||||
%{_bindir}/distro
|
%{_bindir}/distro
|
||||||
|
|
||||||
%check
|
|
||||||
%if %{with python2}
|
|
||||||
%{__python2} -m pytest tests -v
|
|
||||||
%endif
|
|
||||||
%if %{with python3}
|
|
||||||
%{__python3} -m pytest tests -v
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.0-7
|
* Tue Jun 04 2019 Tomas Orsava <torsava@redhat.com> - 1.4.0-2
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- Port from Fedora to RHEL8, part of the python36 module
|
||||||
Related: rhbz#1991688
|
- Resolves: rhbz#1678920
|
||||||
|
|
||||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.0-6
|
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 1.5.0-3
|
|
||||||
- Rebuilt for Python 3.9
|
|
||||||
|
|
||||||
* Mon May 11 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.5.0-2
|
|
||||||
- Fix Python configuration for ELN/RHEL 9
|
|
||||||
- Rework bconds for Python now that there are no Fedoras left that should
|
|
||||||
use Python2
|
|
||||||
|
|
||||||
* Tue Mar 31 2020 Marek Blaha <mblaha@redhat.com> - 1.5.0-1
|
|
||||||
- rebase to distro 1.5.0
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.4.0-4
|
|
||||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
||||||
|
|
||||||
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 1.4.0-3
|
|
||||||
- Rebuilt for Python 3.8
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Feb 04 2019 Marek Blaha <mblaha@redhat.com> - 1.4.0-1
|
* Mon Feb 04 2019 Marek Blaha <mblaha@redhat.com> - 1.4.0-1
|
||||||
- rebase to distro 1.4.0
|
- rebase to distro 1.4.0
|
||||||
|
Loading…
Reference in New Issue
Block a user