Compare commits

...

No commits in common. "c8" and "c9s" have entirely different histories.
c8 ... c9s

4 changed files with 60 additions and 56 deletions

4
.gitignore vendored
View File

@ -1 +1,3 @@
SOURCES/blinker-1.3.tar.gz
/blinker-1.1.zip
/blinker-1.3.tar.gz
/blinker-1.4.tar.gz

View File

@ -1 +1 @@
8b9cce8010f47014c86cf8a6eb16f840123a1dba SOURCES/blinker-1.3.tar.gz
4d3db2e1866a30687479d163a05ae6b1a0598fea blinker-1.4.tar.gz

View File

@ -1,32 +1,17 @@
%global mod_name blinker
%global with_python3 1
%if 0%{?rhel} > 7
# Disable python2 build by default
%bcond_with python2
%else
%bcond_without python2
%endif
Name: python-blinker
Version: 1.3
Version: 1.4
Release: 14%{?dist}
Summary: Fast, simple object-to-object and broadcast signaling
Group: Development/Libraries
License: MIT
URL: http://discorporate.us/projects/Blinker/
URL: https://pythonhosted.org/blinker/
Source0: http://pypi.python.org/packages/source/b/%{mod_name}/%{mod_name}-%{version}.tar.gz
BuildArch: noarch
%if %{with python2}
BuildRequires: python2-devel
BuildRequires: python2-setuptools
%endif # with python2
%if 0%{?with_python3}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%endif
%global _description\
Blinker provides a fast dispatching system that allows any number\
@ -34,15 +19,6 @@ of interested parties to subscribe to events, or "signals".
%description %_description
%if %{with python2}
%package -n python2-blinker
Summary: %summary
%{?python_provide:%python_provide python2-blinker}
%description -n python2-blinker %_description
%endif # with python2
%if 0%{?with_python3}
%package -n python3-blinker
Summary: Fast, simple object-to-object and broadcast signaling
%{?python_provide:%python_provide python3-blinker}
@ -50,50 +26,75 @@ Summary: Fast, simple object-to-object and broadcast signaling
%description -n python3-blinker
Blinker provides a fast dispatching system that allows any number
of interested parties to subscribe to events, or "signals".
%endif
%prep
%setup -q -n %{mod_name}-%{version}
%build
%if %{with python2}
%py2_build
%endif # with python2
%if 0%{?with_python3}
%build
%py3_build
%endif
%install
%if 0%{?with_python3}
%py3_install
%endif
%if %{with python2}
%py2_install
%endif # with python2
%if %{with python2}
%files -n python2-blinker
%license LICENSE
%doc docs/ CHANGES README PKG-INFO
%{python2_sitelib}/*.egg-info
%{python2_sitelib}/%{mod_name}
%endif # with python2
%if 0%{?with_python3}
%files -n python3-blinker
%license LICENSE
%doc docs/ CHANGES README PKG-INFO
%doc docs/ CHANGES LICENSE README.md PKG-INFO
%{python3_sitelib}/*.egg-info
%{python3_sitelib}/%{mod_name}
%endif
%changelog
* Tue Jun 19 2018 Charalampos Stratakis <cstratak@redhat.com> - 1.3-14
- Conditionalize the python2 subpackage
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.4-14
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.4-13
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 1.4-10
- Rebuilt for Python 3.9
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.4-8
- Rebuilt for Python 3.8.0rc1 (#1748018)
* Fri Aug 30 2019 Miro Hrončok <mhroncok@redhat.com> - 1.4-7
- Subpackage python2-blinker has been removed
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1.4-6
- Rebuilt for Python 3.8
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 1.4-2
- Rebuilt for Python 3.7
* Sat Jun 16 2018 Itamar Reis Peixoto <itamar@ispbrasil.com.br> - 1.4-1
- new version
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 1.3-15
- Rebuilt for Python 3.7
* Sun Feb 11 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.3-14
- Update Python 2 dependency declarations to new packaging standards
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (blinker-1.4.tar.gz) = 2f5f71b05c7cc27f5761ba698b05c78c8a491f5285c120e532d24be0c8256daa14e075f3f30e15fb18e7c3f16579af9378a155d058f170e3af9ffdb89e49f56e