b6413c
%if 0%{?fedora} || 0%{?rhel} >= 8
b6413c
%bcond_without python3
b6413c
%else
b6413c
%bcond_with python3
b6413c
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
b6413c
%endif
b6413c
b6413c
Name:           PyYAML
b6413c
Version:        3.12
c15070
Release:        16%{?dist}
b6413c
Summary:        YAML parser and emitter for Python
b6413c
b6413c
Group:          Development/Libraries
b6413c
License:        MIT
b6413c
URL:            http://pyyaml.org/
b6413c
Source0:        http://pyyaml.org/download/pyyaml/%{name}-%{version}.tar.gz
b6413c
BuildRequires:  gcc
b6413c
BuildRequires:  python2-devel
b6413c
BuildRequires:  python2-setuptools
b6413c
BuildRequires:  python2-Cython
b6413c
BuildRequires:  libyaml-devel
b6413c
%if %{with python3}
b6413c
BuildRequires: python3-devel
b6413c
BuildRequires: python3-setuptools
b6413c
BuildRequires: python3-Cython
b6413c
%endif
b6413c
b6413c
%global _description\
b6413c
YAML is a data serialization format designed for human readability and\
b6413c
interaction with scripting languages.  PyYAML is a YAML parser and\
b6413c
emitter for Python.\
b6413c
\
b6413c
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle\
b6413c
support, capable extension API, and sensible error messages.  PyYAML\
b6413c
supports standard YAML tags and provides Python-specific tags that\
b6413c
allow to represent an arbitrary Python object.\
b6413c
\
b6413c
PyYAML is applicable for a broad range of tasks from complex\
b6413c
configuration files to object serialization and persistance.
b6413c
b6413c
%description %_description
b6413c
b6413c
%package -n python2-pyyaml
b6413c
Summary: %summary
b6413c
Provides:       python2-yaml = %{version}-%{release}
b6413c
Provides:       python2-yaml%{?_isa} = %{version}-%{release}
b6413c
%{?python_provide:%python_provide python2-pyyaml}
b6413c
Obsoletes: PyYAML < %{version}-%{release}
b6413c
b6413c
%description -n python2-pyyaml %_description
b6413c
b6413c
%if %{with python3}
b6413c
%package -n python3-PyYAML
b6413c
Summary: YAML parser and emitter for Python
b6413c
Group: Development/Libraries
b6413c
Provides: python3-yaml = %{version}-%{release}
b6413c
Provides: python3-yaml%{?_isa} = %{version}-%{release}
b6413c
b6413c
%description -n python3-PyYAML
b6413c
YAML is a data serialization format designed for human readability and
b6413c
interaction with scripting languages.  PyYAML is a YAML parser and
b6413c
emitter for Python.
b6413c
b6413c
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
b6413c
support, capable extension API, and sensible error messages.  PyYAML
b6413c
supports standard YAML tags and provides Python-specific tags that
b6413c
allow to represent an arbitrary Python object.
b6413c
b6413c
PyYAML is applicable for a broad range of tasks from complex
b6413c
configuration files to object serialization and persistance.
b6413c
%endif
b6413c
b6413c
b6413c
%prep
b6413c
%setup -q -n %{name}-%{version}
b6413c
chmod a-x examples/yaml-highlight/yaml_hl.py
b6413c
b6413c
# remove pre-generated file
b6413c
rm -rf ext/_yaml.c
b6413c
b6413c
b6413c
%build
b6413c
# regenerate ext/_yaml.c
b6413c
CFLAGS="${RPM_OPT_FLAGS}" %{__python2} setup.py --with-libyaml build_ext
b6413c
b6413c
%if %{with python3}
b6413c
rm -rf %{py3dir}
b6413c
# ext/_yaml.c is needed
b6413c
cp -a . %{py3dir}
b6413c
pushd %{py3dir}
b6413c
CFLAGS="${RPM_OPT_FLAGS}" %{__python3} setup.py --with-libyaml build
b6413c
popd
b6413c
%endif
b6413c
b6413c
CFLAGS="${RPM_OPT_FLAGS}" %{__python2} setup.py --with-libyaml build
b6413c
b6413c
b6413c
%install
b6413c
%{__python2} setup.py install -O1 --skip-build --root %{buildroot}
b6413c
b6413c
%if %{with python3}
b6413c
pushd %{py3dir}
b6413c
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
b6413c
popd
b6413c
%endif
b6413c
b6413c
b6413c
%check
b6413c
%{__python2} setup.py test
b6413c
b6413c
%if %{with python3}
b6413c
pushd %{py3dir}
b6413c
%{__python3} setup.py test
b6413c
popd
b6413c
%endif
b6413c
b6413c
b6413c
%files -n python2-pyyaml
b6413c
%{!?_licensedir:%global license %%doc}
b6413c
%license LICENSE
b6413c
%doc CHANGES PKG-INFO README examples
b6413c
%{python2_sitearch}/*
b6413c
b6413c
%if %{with python3}
b6413c
%files -n python3-PyYAML
b6413c
%{!?_licensedir:%global license %%doc}
b6413c
%license LICENSE
b6413c
%doc CHANGES PKG-INFO README examples
b6413c
%{python3_sitearch}/*
b6413c
%endif
b6413c
b6413c
b6413c
%changelog
c15070
* Wed Apr 03 2019 Tomas Orsava <torsava@redhat.com> - 3.12-16
c15070
- Bumping due to problems with modular RPM upgrade path (#1695587)
c15070
- Related: rhbz#1693974
c15070
b6413c
* Tue Oct 09 2018 Lumír Balhar <lbalhar@redhat.com> - 3.12-15
b6413c
- Remove unversioned provides
b6413c
- Resolves: rhbz#1628242
b6413c
b6413c
* Fri Oct 05 2018 Lumír Balhar <lbalhar@redhat.com> - 3.12-14
b6413c
- Remove unversioned provides
b6413c
- Resolves: rhbz#1628242
b6413c
b6413c
* Tue Oct 02 2018 Lumír Balhar <lbalhar@redhat.com> - 3.12-13
b6413c
- Fix unversioned requires/buildrequires
b6413c
- Resolves: rhbz#1628242
b6413c
b6413c
* Tue Jul 31 2018 Lumír Balhar <lbalhar@redhat.com> - 3.12-12
b6413c
- Switch python3 coditions to bcond
b6413c
b6413c
* Mon Jun 25 2018 Tomas Orsava <torsava@redhat.com> - 3.12-11
b6413c
- Use python2 macros instead of unversioned python macros
b6413c
b6413c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-10
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b6413c
b6413c
* Mon Dec 11 2017 Iryna Shcherbina <ishcherb@redhat.com> - 3.12-9
b6413c
- Fix ambiguous Python 2 dependency declarations
b6413c
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
b6413c
b6413c
* Wed Sep 27 2017 Troy Dawson <tdawson@redhat.com> - 3.12-8
b6413c
- Cleanup spec file conditionals
b6413c
b6413c
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.12-7
b6413c
- Add Provides for the old name without %%_isa
b6413c
b6413c
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.12-6
b6413c
- Python 2 binary package renamed to python2-pyyaml
b6413c
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
b6413c
b6413c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-5
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b6413c
b6413c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-4
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b6413c
b6413c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-3
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b6413c
b6413c
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 3.12-2
b6413c
- Rebuild for Python 3.6
b6413c
b6413c
* Mon Aug 29 2016 John Eckersberg <eck@redhat.com> - 3.12-1
b6413c
- New upstream release 3.12 (RHBZ#1371150)
b6413c
b6413c
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11-13
b6413c
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
b6413c
b6413c
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-12
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b6413c
b6413c
* Tue Dec  8 2015 John Eckersberg <eck@redhat.com> - 3.11-11
b6413c
- Add provides for python3-yaml (RHBZ#1288807)
b6413c
b6413c
* Tue Nov 03 2015 Robert Kuska <rkuska@redhat.com> - 3.11-10
b6413c
- Rebuilt for Python3.5 rebuild
b6413c
b6413c
* Fri Jul 17 2015 John Eckersberg <eck@redhat.com> - 3.11-9
b6413c
- Add provides for python2-yaml (RHBZ#1241678)
b6413c
b6413c
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11-8
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b6413c
b6413c
* Mon Mar 23 2015 John Eckersberg <eck@redhat.com> - 3.11-7
b6413c
- Add patch for CVE-2014-9130 (bug 1204829)
b6413c
b6413c
* Mon Sep 15 2014 Jakub Čajka <jcajka@redhat.com> - 3.11-6
b6413c
- fixed typecast issues using debian patch(int->size_t)(BZ#1140189)
b6413c
- spec file cleanup
b6413c
b6413c
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11-5
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b6413c
b6413c
* Mon Aug  4 2014 Tom Callaway <spot@fedoraproject.org> - 3.11-4
b6413c
- fix license handling
b6413c
b6413c
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11-3
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b6413c
b6413c
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 3.11-2
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
b6413c
b6413c
* Mon Apr 21 2014 John Eckersberg <jeckersb@redhat.com> - 3.11-1
b6413c
- New upstream release 3.11 (BZ#1081521)
b6413c
b6413c
* Thu Aug  8 2013 John Eckersberg <jeckersb@redhat.com> - 3.10-9
b6413c
- Add check section and run test suite
b6413c
b6413c
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-8
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b6413c
b6413c
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-7
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b6413c
b6413c
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 3.10-6
b6413c
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
b6413c
b6413c
* Wed Aug  1 2012 David Malcolm <dmalcolm@redhat.com> - 3.10-5
b6413c
- remove rhel logic from with_python3 conditional
b6413c
b6413c
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-4
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b6413c
b6413c
* Fri Apr 27 2012 John Eckersberg <jeckersb@redhat.com> - 3.10-3
b6413c
- Add Provides for python-yaml (BZ#740390)
b6413c
b6413c
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-2
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b6413c
b6413c
* Thu Jun 23 2011 John Eckersberg <jeckersb@redhat.com> - 3.10-1
b6413c
- New upstream release 3.10
b6413c
b6413c
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.09-8
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b6413c
b6413c
* Wed Feb  2 2011 John Eckersberg <jeckersb@redhat.com> - 3.09-7
b6413c
- Add support to build for python 3
b6413c
b6413c
* Tue Jul 27 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 3.09-6
b6413c
- Bump release number for upgrade path
b6413c
b6413c
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 3.09-3
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
b6413c
b6413c
* Fri Oct 02 2009 John Eckersberg <jeckersb@redhat.com> - 3.09-1
b6413c
- New upstream release 3.09
b6413c
b6413c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.08-6
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b6413c
b6413c
* Wed Jul 22 2009 - John Eckersberg <jeckersb@redhat.com> - 3.08-5
b6413c
- Minor tweaks to spec file aligning with latest Fedora packaging guidelines
b6413c
- Enforce inclusion of libyaml in build with --with-libyaml option to setup.py
b6413c
- Deliver to %%{python_sitearch} instead of %%{python_sitelib} due to _yaml.so
b6413c
- Thanks to Gareth Armstrong <gareth.armstrong@hp.com>
b6413c
b6413c
* Tue Mar 3 2009 John Eckersberg <jeckersb@redhat.com> - 3.08-4
b6413c
- Correction, change libyaml to libyaml-devel in BuildRequires
b6413c
b6413c
* Mon Mar 2 2009 John Eckersberg <jeckersb@redhat.com> - 3.08-3
b6413c
- Add libyaml to BuildRequires
b6413c
b6413c
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.08-2
b6413c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b6413c
b6413c
* Wed Feb 18 2009 John Eckersberg <jeckersb@redhat.com> - 3.08-1
b6413c
- New upstream release
b6413c
b6413c
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 3.06-2
b6413c
- Rebuild for Python 2.6
b6413c
b6413c
* Fri Oct 24 2008 John Eckersberg <jeckersb@redhat.com> - 3.06-1
b6413c
- New upstream release
b6413c
b6413c
* Wed Jan 02 2008 John Eckersberg <jeckersb@redhat.com> - 3.05-2
b6413c
- Remove explicit dependency on python >= 2.3
b6413c
- Remove executable on example script in docs
b6413c
b6413c
* Mon Dec 17 2007 John Eckersberg <jeckersb@redhat.com> - 3.05-1
b6413c
- Initial packaging for Fedora