2016-12-13 07:25:41 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
|
|
|
%bcond_with python3
|
2014-07-30 10:07:00 +00:00
|
|
|
%else
|
2016-12-13 07:25:41 +00:00
|
|
|
%bcond_without python3
|
2014-07-30 10:07:00 +00:00
|
|
|
%endif
|
|
|
|
|
2016-01-02 22:26:54 +00:00
|
|
|
%global pypi_name jmespath
|
2014-07-30 10:07:00 +00:00
|
|
|
|
2016-01-02 22:26:54 +00:00
|
|
|
Name: python-%{pypi_name}
|
2018-09-08 21:01:16 +00:00
|
|
|
Version: 0.9.3
|
2019-02-02 07:24:13 +00:00
|
|
|
Release: 2%{?dist}
|
2016-01-02 22:26:54 +00:00
|
|
|
Summary: JSON Matching Expressions
|
2014-07-30 10:07:00 +00:00
|
|
|
|
2016-01-02 22:26:54 +00:00
|
|
|
License: MIT
|
|
|
|
URL: https://github.com/jmespath/jmespath.py
|
|
|
|
Source0: https://pypi.python.org/packages/source/j/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
2014-07-30 10:07:00 +00:00
|
|
|
BuildArch: noarch
|
2016-01-02 22:26:54 +00:00
|
|
|
|
2014-07-30 10:07:00 +00:00
|
|
|
%description
|
|
|
|
JMESPath allows you to declaratively specify how to extract elements from
|
|
|
|
a JSON document.
|
|
|
|
|
2016-01-02 22:26:54 +00:00
|
|
|
%package -n python2-%{pypi_name}
|
2014-07-30 10:07:00 +00:00
|
|
|
Summary: JSON Matching Expressions
|
2016-01-06 17:09:26 +00:00
|
|
|
%{?el6:Provides: python-%{pypi_name}}
|
2016-01-02 22:26:54 +00:00
|
|
|
%{?python_provide:%python_provide python2-%{pypi_name}}
|
2014-07-30 10:07:00 +00:00
|
|
|
|
2016-06-27 10:13:29 +00:00
|
|
|
BuildRequires: python2-devel
|
2016-12-26 07:13:26 +00:00
|
|
|
BuildRequires: python2-mock
|
2018-02-12 02:23:08 +00:00
|
|
|
BuildRequires: python2-nose
|
|
|
|
BuildRequires: python2-setuptools
|
2016-12-26 07:13:26 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 7
|
|
|
|
BuildRequires: python-ordereddict
|
|
|
|
# tests specifically import simplejson as json if python version is 2.6
|
|
|
|
BuildRequires: python-simplejson
|
|
|
|
BuildRequires: python-unittest2
|
|
|
|
%endif # rhel < 7
|
2016-06-27 10:13:29 +00:00
|
|
|
|
2016-01-02 22:26:54 +00:00
|
|
|
%description -n python2-%{pypi_name}
|
2014-07-30 10:07:00 +00:00
|
|
|
JMESPath allows you to declaratively specify how to extract elements from
|
|
|
|
a JSON document.
|
|
|
|
|
2016-12-13 07:25:41 +00:00
|
|
|
%if %{with python3}
|
2016-01-02 22:26:54 +00:00
|
|
|
%package -n python3-%{pypi_name}
|
|
|
|
Summary: JSON Matching Expressions
|
|
|
|
%{?python_provide:%python_provide python3-%{pypi_name}}
|
2014-07-30 10:07:00 +00:00
|
|
|
|
2016-06-27 10:13:29 +00:00
|
|
|
BuildRequires: python3-devel
|
2016-12-26 07:13:26 +00:00
|
|
|
BuildRequires: python3-mock
|
|
|
|
BuildRequires: python3-nose
|
2016-06-27 10:13:29 +00:00
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
|
2016-01-02 22:26:54 +00:00
|
|
|
%description -n python3-%{pypi_name}
|
|
|
|
JMESPath allows you to declaratively specify how to extract elements from
|
|
|
|
a JSON document.
|
2016-12-13 07:25:41 +00:00
|
|
|
%endif # with python3
|
2014-07-30 10:07:00 +00:00
|
|
|
|
|
|
|
%prep
|
2016-01-07 10:23:43 +00:00
|
|
|
%setup -q -n %{pypi_name}-%{version}
|
2016-01-02 22:26:54 +00:00
|
|
|
rm -rf %{pypi_name}.egg-info
|
2014-07-30 10:07:00 +00:00
|
|
|
|
|
|
|
%build
|
2016-01-02 22:26:54 +00:00
|
|
|
%py2_build
|
2016-12-26 07:13:26 +00:00
|
|
|
%if %{with python3}
|
2016-01-02 22:26:54 +00:00
|
|
|
%py3_build
|
2016-12-13 07:25:41 +00:00
|
|
|
%endif # with python3
|
2014-07-30 10:07:00 +00:00
|
|
|
|
|
|
|
%install
|
2016-12-13 07:25:41 +00:00
|
|
|
%if %{with python3}
|
2016-01-02 22:26:54 +00:00
|
|
|
%py3_install
|
2016-06-27 10:13:29 +00:00
|
|
|
mv %{buildroot}/%{_bindir}/jp.py %{buildroot}/%{_bindir}/jp.py-%{python3_version}
|
|
|
|
ln -sf %{_bindir}/jp.py-%{python3_version} %{buildroot}/%{_bindir}/jp.py-3
|
2016-12-13 07:25:41 +00:00
|
|
|
%endif # with python3
|
2014-07-30 10:07:00 +00:00
|
|
|
|
2016-01-02 22:26:54 +00:00
|
|
|
%py2_install
|
2016-06-27 10:13:29 +00:00
|
|
|
mv %{buildroot}/%{_bindir}/jp.py %{buildroot}/%{_bindir}/jp.py-%{python2_version}
|
|
|
|
ln -sf %{_bindir}/jp.py-%{python2_version} %{buildroot}/%{_bindir}/jp.py-2
|
|
|
|
ln -sf %{_bindir}/jp.py-%{python2_version} %{buildroot}/%{_bindir}/jp.py
|
2014-07-30 10:07:00 +00:00
|
|
|
|
2016-12-26 07:13:26 +00:00
|
|
|
%check
|
|
|
|
nosetests
|
|
|
|
%if %{with python3}
|
|
|
|
nosetests-%{python3_version}
|
|
|
|
%endif # with python3
|
2014-07-30 10:07:00 +00:00
|
|
|
|
2016-01-02 22:26:54 +00:00
|
|
|
%files -n python2-%{pypi_name}
|
2014-07-30 10:07:00 +00:00
|
|
|
%doc README.rst
|
2016-01-02 22:26:54 +00:00
|
|
|
%license LICENSE.txt
|
|
|
|
%{_bindir}/jp.py
|
|
|
|
%{_bindir}/jp.py-2
|
|
|
|
%{_bindir}/jp.py-%{python2_version}
|
|
|
|
%{python2_sitelib}/%{pypi_name}
|
|
|
|
%{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
|
|
|
|
2016-12-13 07:25:41 +00:00
|
|
|
%if %{with python3}
|
2016-01-02 22:26:54 +00:00
|
|
|
%files -n python3-%{pypi_name}
|
2014-07-30 10:07:00 +00:00
|
|
|
%doc README.rst
|
2016-01-02 22:26:54 +00:00
|
|
|
%license LICENSE.txt
|
|
|
|
%{_bindir}/jp.py-3
|
|
|
|
%{_bindir}/jp.py-%{python3_version}
|
|
|
|
%{python3_sitelib}/%{pypi_name}
|
|
|
|
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
2016-12-13 07:25:41 +00:00
|
|
|
%endif # with python3
|
2014-07-30 10:07:00 +00:00
|
|
|
|
|
|
|
%changelog
|
2019-02-02 07:24:13 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-09-08 21:01:16 +00:00
|
|
|
* Sat Sep 08 2018 Kevin Fenzi <kevin@scrye.com> - 0.9.3-1
|
|
|
|
- Upgrade to 0.9.3. Fixes bug #1588131
|
|
|
|
|
2018-07-14 00:41:17 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-19 09:06:18 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.9.0-11
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-02-12 02:23:08 +00:00
|
|
|
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.9.0-10
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-02-09 08:30:20 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-07-27 10:41:11 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-11 09:21:52 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-22 12:08:41 +00:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.9.0-6
|
2016-12-19 17:20:37 +00:00
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-07-19 10:09:35 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.0-5
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-06-27 10:13:29 +00:00
|
|
|
* Mon Jun 27 2016 Haïkel Guémar <hguemar@fedoraproject.org> - 0.9.0-4
|
|
|
|
- Fix python2 subpackage requiring python3 (RHBZ#1342501)
|
|
|
|
|
2016-02-04 19:58:03 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-12-13 07:25:41 +00:00
|
|
|
* Wed Jan 06 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.9.0-2
|
2016-01-06 11:10:39 +00:00
|
|
|
- Improve to set the Provides tag for EL6 too
|
|
|
|
|
2016-12-13 07:25:41 +00:00
|
|
|
* Tue Dec 29 2015 Fabio Alessandro Locati <fale@fedoraproject.org> - 0.9.0-1
|
2016-01-02 22:26:54 +00:00
|
|
|
- Upgrade to upstream current version
|
|
|
|
- Improve the spec file
|
|
|
|
- Make possible to build in EL6
|
|
|
|
|
2015-11-10 16:10:37 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-06-18 19:42:25 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-12-19 16:46:02 +00:00
|
|
|
* Fri Dec 19 2014 Lubomir Rintel <lkundrak@v3.sk> - 0.5.0-1
|
|
|
|
- New version
|
|
|
|
|
2014-07-30 10:07:00 +00:00
|
|
|
* Fri Jul 25 2014 Lubomir Rintel <lkundrak@v3.sk> - 0.4.1-2
|
|
|
|
- Add Python 3 support
|
|
|
|
|
|
|
|
* Fri Jul 25 2014 Lubomir Rintel <lkundrak@v3.sk> - 0.4.1-1
|
|
|
|
- Initial packaging
|