b85b77
# RHEL8: disable building python2 in the python39 module
b85b77
%bcond_with     python2
b0d693
b0d693
Name:           PyYAML
b85b77
Version:        5.4.1
4fb3e1
Release:        1%{?dist}
b0d693
%global uversion %{version}
b0d693
Summary:        YAML parser and emitter for Python
b0d693
b0d693
License:        MIT
b0d693
URL:            https://github.com/yaml/pyyaml
b85b77
Source0:        https://github.com/yaml/pyyaml/archive/%{uversion}.tar.gz
b0d693
b0d693
# Exclude i686 arch. Due to a modularity issue it's being added to the
b0d693
# x86_64 compose of CRB, but we don't want to ship it at all.
b0d693
# See: https://projects.engineering.redhat.com/browse/RCM-72605
b0d693
ExcludeArch: i686
b0d693
b0d693
BuildRequires:  gcc
b0d693
BuildRequires:  libyaml-devel
b0d693
b0d693
%if %{with python2}
b0d693
BuildRequires:  python2-devel
b0d693
BuildRequires:  python2-setuptools
b0d693
%endif
b0d693
b0d693
BuildRequires:  python%{python3_pkgversion}-devel
b85b77
BuildRequires:  python%{python3_pkgversion}-rpm-macros
b0d693
BuildRequires:  python%{python3_pkgversion}-setuptools
b0d693
BuildRequires:  python%{python3_pkgversion}-Cython
b0d693
b0d693
b0d693
%global _description\
b0d693
YAML is a data serialization format designed for human readability and\
b0d693
interaction with scripting languages.  PyYAML is a YAML parser and\
b0d693
emitter for Python.\
b0d693
\
b0d693
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle\
b0d693
support, capable extension API, and sensible error messages.  PyYAML\
b0d693
supports standard YAML tags and provides Python-specific tags that\
b0d693
allow to represent an arbitrary Python object.\
b0d693
\
b0d693
PyYAML is applicable for a broad range of tasks from complex\
b0d693
configuration files to object serialization and persistence.
b0d693
b0d693
%description %_description
b0d693
b0d693
b0d693
%if %{with python2}
b0d693
%package -n python2-pyyaml
b0d693
Summary:        %summary
b0d693
Provides:       python-yaml = %{version}-%{release}
b0d693
Provides:       python-yaml%{?_isa} = %{version}-%{release}
b0d693
Provides:       python2-yaml = %{version}-%{release}
b0d693
Provides:       python2-yaml%{?_isa} = %{version}-%{release}
b85b77
Provides:       PyYAML = %{version}-%{release}
b85b77
Provides:       PyYAML%{?_isa} = %{version}-%{release}
b0d693
%{?python_provide:%python_provide python2-pyyaml}
b0d693
b0d693
%description -n python2-pyyaml %_description
b0d693
%endif
b0d693
b0d693
%package -n python%{python3_pkgversion}-pyyaml
b0d693
Summary:        %summary
b0d693
Provides:       python%{python3_pkgversion}-yaml = %{version}-%{release}
b0d693
Provides:       python%{python3_pkgversion}-yaml%{?_isa} = %{version}-%{release}
b0d693
%{?python_provide:%python_provide python%{python3_pkgversion}-pyyaml}
b0d693
Provides:       python%{python3_pkgversion}-PyYAML = %{version}-%{release}
b0d693
Provides:       python%{python3_pkgversion}-PyYAML%{?_isa} = %{version}-%{release}
b0d693
b0d693
%description -n python%{python3_pkgversion}-pyyaml %_description
b0d693
b0d693
b0d693
%prep
b85b77
%setup -q -n pyyaml-%{uversion}
b0d693
chmod a-x examples/yaml-highlight/yaml_hl.py
b0d693
b0d693
# remove pre-generated file
b0d693
rm -rf ext/_yaml.c
b0d693
b0d693
b0d693
%build
b0d693
%py3_build
b0d693
b0d693
%if %{with python2}
b0d693
# py2_build reuses Cython output from py3_build
b0d693
%py2_build
b0d693
%endif
b0d693
b0d693
b0d693
%install
b0d693
%if %{with python2}
b0d693
%py2_install
b0d693
%endif
b0d693
%py3_install
b0d693
b0d693
b0d693
%check
b0d693
%if %{with python2}
b0d693
%{__python2} setup.py test
b0d693
%endif
b0d693
%{__python3} setup.py test
b0d693
b0d693
b0d693
%if %{with python2}
b0d693
%files -n python2-pyyaml
b0d693
%license LICENSE
b0d693
%doc CHANGES README examples
b0d693
%{python2_sitearch}/*
b0d693
%endif
b0d693
b0d693
%files -n python%{python3_pkgversion}-pyyaml
b0d693
%license LICENSE
b0d693
%doc CHANGES README examples
b0d693
%{python3_sitearch}/*
b0d693
b0d693
b0d693
%changelog
b85b77
* Tue Mar 23 2021 Tomas Orsava <torsava@redhat.com> - 5.4.1-1
b85b77
- Rebase to version 5.4.1 to fix CVE-2020-14343
b85b77
- Resolves: rhbz#1860466
b85b77
b85b77
* Mon Jan 18 2021 Tomas Orsava <torsava@redhat.com> - 5.3.1-6
b85b77
- Add PyYAML to the python39 module in RHEL8
b85b77
- Resolves: rhbz#1877430
b85b77
b85b77
* Mon Nov 23 2020 Miro Hrončok <mhroncok@redhat.com> - 5.3.1-5
b85b77
- Disable Python 2 build on RHEL 9+
b85b77
b85b77
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.1-4
b85b77
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
b85b77
b85b77
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 5.3.1-3
b85b77
- Rebuilt for Python 3.9
b85b77
b85b77
* Mon May 18 2020 John Eckersberg <eck@redhat.com> - 5.3.1-2
b85b77
- Fix fedora conditional macro (rhbz#1836656)
b85b77
b85b77
* Thu Mar 19 2020 John Eckersberg <eck@redhat.com> - 5.3.1-1
b85b77
- New upstream release 5.3.1 (rhbz#1814882)
b85b77
- Fixes CVE-2020-1747 (rhbz#1807367,1809011)
b85b77
b85b77
* Tue Mar 10 2020 Kalev Lember <klember@redhat.com> - 5.3-4
b85b77
- Add back PyYAML provides on F31 and older
b85b77
b85b77
* Mon Mar  2 2020 John Eckersberg <eck@redhat.com> - 5.3-3
b85b77
- Fix python2 on Fedora < 32 (rhbz#1808812)
b85b77
b85b77
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.3-2
b85b77
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
4fb3e1
b85b77
* Mon Jan  6 2020 John Eckersberg <eck@redhat.com> - 5.3-1
b85b77
- New upstream release 5.3
b0d693
b85b77
* Tue Dec  3 2019 John Eckersberg <eck@redhat.com> - 5.2-1
b85b77
- New upstream release 5.2
b0d693
b85b77
* Fri Nov 22 2019 John Eckersberg <eck@redhat.com> - 5.1.2-4
b85b77
- Build without python2 by default (rhbz#1775075)
b0d693
b0d693
* Thu Sep 19 2019 Miro Hrončok <mhroncok@redhat.com> - 5.1.2-3
b0d693
- Stop providing PyYAML from python2-pyyaml, Python now means Python 3
b0d693
b0d693
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 5.1.2-2
b0d693
- Rebuilt for Python 3.8
b0d693
b0d693
* Wed Jul 31 2019 John Eckersberg <eck@redhat.com> - 5.1.2-1
b0d693
- New upstream release 5.1.2
b0d693
b0d693
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.1-3
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b0d693
b0d693
* Mon Jul 15 2019 Petr Viktorin <pviktori@redhat.com> - 5.1.1-2
b0d693
- Remove build dependency on python2-Cython
b0d693
b0d693
* Fri Jun  7 2019 John Eckersberg <eck@redhat.com> - 5.1.1-1
b0d693
- New upstream release 5.1.1 (rhbz#1718110)
b0d693
b0d693
* Wed Mar 13 2019 John Eckersberg <eck@redhat.com> - 5.1-1
b0d693
- New upstream release 5.1 (rhbz#1688414)
b0d693
- Fixes CVE-2017-18342 (rhbz#1595744)
b0d693
b0d693
* Fri Mar  8 2019 John Eckersberg <eck@redhat.com> - 5.1-0.1.b6
b0d693
- New upstream beta release 5.1b6 (rhbz#1686643)
b0d693
b0d693
* Thu Feb 28 2019 John Eckersberg <eck@redhat.com> - 5.1-0.1.b3
b0d693
- New upstream beta release 5.1b3 (rhbz#1683884)
b0d693
b0d693
* Mon Feb 25 2019 John Eckersberg <eck@redhat.com> - 5.1-0.1.b1
b0d693
- New upstream beta release 5.1b1 (rhbz#1680457)
b0d693
- Typo fix (rhbz#1680463)
b0d693
b0d693
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.2-0.2.b4
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
b0d693
b0d693
* Fri Jul 13 2018 John Eckersberg <eck@redhat.com> - 4.2-0.1.b4
b0d693
- New upstream beta release 4.2b4
b0d693
- Replaces 4.1 which was retracted upstream
b0d693
  See https://mail.python.org/pipermail/python-announce-list/2018-June/011977.html
b0d693
- Add BuildRequires for gcc
b0d693
  See https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot
b0d693
b0d693
* Thu Jul 12 2018 Miro Hrončok <mhroncok@redhat.com> - 4.1-5
b0d693
- Rename python3-PyYAML to python3-pyyaml
b0d693
- Modernize spec
b0d693
- Fix python2 invocation
b0d693
b0d693
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-4
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
b0d693
b0d693
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 4.1-3
b0d693
- Rebuilt for Python 3.7
b0d693
b0d693
* Mon Jul 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.1-2
b0d693
- Rebuilt for Python 3.7
b0d693
b0d693
* Wed Jun 27 2018 John Eckersberg <eck@redhat.com> - 4.1-1
b0d693
- New upstream release 4.1
b0d693
b0d693
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 3.12-11
b0d693
- Rebuilt for Python 3.7
b0d693
b0d693
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-10
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b0d693
b0d693
* Mon Dec 11 2017 Iryna Shcherbina <ishcherb@redhat.com> - 3.12-9
b0d693
- Fix ambiguous Python 2 dependency declarations
b0d693
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
b0d693
b0d693
* Wed Sep 27 2017 Troy Dawson <tdawson@redhat.com> - 3.12-8
b0d693
- Cleanup spec file conditionals
b0d693
b0d693
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.12-7
b0d693
- Add Provides for the old name without %%_isa
b0d693
b0d693
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.12-6
b0d693
- Python 2 binary package renamed to python2-pyyaml
b0d693
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
b0d693
b0d693
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-5
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b0d693
b0d693
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-4
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b0d693
b0d693
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-3
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b0d693
b0d693
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 3.12-2
b0d693
- Rebuild for Python 3.6
b0d693
b0d693
* Mon Aug 29 2016 John Eckersberg <eck@redhat.com> - 3.12-1
b0d693
- New upstream release 3.12 (RHBZ#1371150)
b0d693
b0d693
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11-13
b0d693
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
b0d693
b0d693
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-12
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b0d693
b0d693
* Tue Dec  8 2015 John Eckersberg <eck@redhat.com> - 3.11-11
b0d693
- Add provides for python3-yaml (RHBZ#1288807)
b0d693
b0d693
* Tue Nov 03 2015 Robert Kuska <rkuska@redhat.com> - 3.11-10
b0d693
- Rebuilt for Python3.5 rebuild
b0d693
b0d693
* Fri Jul 17 2015 John Eckersberg <eck@redhat.com> - 3.11-9
b0d693
- Add provides for python2-yaml (RHBZ#1241678)
b0d693
b0d693
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11-8
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b0d693
b0d693
* Mon Mar 23 2015 John Eckersberg <eck@redhat.com> - 3.11-7
b0d693
- Add patch for CVE-2014-9130 (bug 1204829)
b0d693
b0d693
* Mon Sep 15 2014 Jakub Čajka <jcajka@redhat.com> - 3.11-6
b0d693
- fixed typecast issues using debian patch(int->size_t)(BZ#1140189)
b0d693
- spec file cleanup
b0d693
b0d693
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11-5
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b0d693
b0d693
* Mon Aug  4 2014 Tom Callaway <spot@fedoraproject.org> - 3.11-4
b0d693
- fix license handling
b0d693
b0d693
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11-3
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b0d693
b0d693
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 3.11-2
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
b0d693
b0d693
* Mon Apr 21 2014 John Eckersberg <jeckersb@redhat.com> - 3.11-1
b0d693
- New upstream release 3.11 (BZ#1081521)
b0d693
b0d693
* Thu Aug  8 2013 John Eckersberg <jeckersb@redhat.com> - 3.10-9
b0d693
- Add check section and run test suite
b0d693
b0d693
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-8
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b0d693
b0d693
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-7
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b0d693
b0d693
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 3.10-6
b0d693
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
b0d693
b0d693
* Wed Aug  1 2012 David Malcolm <dmalcolm@redhat.com> - 3.10-5
b0d693
- remove rhel logic from with_python3 conditional
b0d693
b0d693
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-4
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b0d693
b0d693
* Fri Apr 27 2012 John Eckersberg <jeckersb@redhat.com> - 3.10-3
b0d693
- Add Provides for python-yaml (BZ#740390)
b0d693
b0d693
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-2
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b0d693
b0d693
* Thu Jun 23 2011 John Eckersberg <jeckersb@redhat.com> - 3.10-1
b0d693
- New upstream release 3.10
b0d693
b0d693
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.09-8
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b0d693
b0d693
* Wed Feb  2 2011 John Eckersberg <jeckersb@redhat.com> - 3.09-7
b0d693
- Add support to build for python 3
b0d693
b0d693
* Tue Jul 27 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 3.09-6
b0d693
- Bump release number for upgrade path
b0d693
b0d693
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 3.09-3
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
b0d693
b0d693
* Fri Oct 02 2009 John Eckersberg <jeckersb@redhat.com> - 3.09-1
b0d693
- New upstream release 3.09
b0d693
b0d693
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.08-6
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b0d693
b0d693
* Wed Jul 22 2009 - John Eckersberg <jeckersb@redhat.com> - 3.08-5
b0d693
- Minor tweaks to spec file aligning with latest Fedora packaging guidelines
b0d693
- Enforce inclusion of libyaml in build with --with-libyaml option to setup.py
b0d693
- Deliver to %%{python_sitearch} instead of %%{python_sitelib} due to _yaml.so
b0d693
- Thanks to Gareth Armstrong <gareth.armstrong@hp.com>
b0d693
b0d693
* Tue Mar 3 2009 John Eckersberg <jeckersb@redhat.com> - 3.08-4
b0d693
- Correction, change libyaml to libyaml-devel in BuildRequires
b0d693
b0d693
* Mon Mar 2 2009 John Eckersberg <jeckersb@redhat.com> - 3.08-3
b0d693
- Add libyaml to BuildRequires
b0d693
b0d693
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.08-2
b0d693
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b0d693
b0d693
* Wed Feb 18 2009 John Eckersberg <jeckersb@redhat.com> - 3.08-1
b0d693
- New upstream release
b0d693
b0d693
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 3.06-2
b0d693
- Rebuild for Python 2.6
b0d693
b0d693
* Fri Oct 24 2008 John Eckersberg <jeckersb@redhat.com> - 3.06-1
b0d693
- New upstream release
b0d693
b0d693
* Wed Jan 02 2008 John Eckersberg <jeckersb@redhat.com> - 3.05-2
b0d693
- Remove explicit dependency on python >= 2.3
b0d693
- Remove executable on example script in docs
b0d693
b0d693
* Mon Dec 17 2007 John Eckersberg <jeckersb@redhat.com> - 3.05-1
b0d693
- Initial packaging for Fedora