2014-09-15 15:02:46 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-xmltodict
|
|
|
|
#
|
2016-09-07 08:42:31 +00:00
|
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
2014-09-15 15:02:46 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
2014-11-04 16:21:05 +00:00
|
|
|
#
|
2014-09-15 15:02:46 +00:00
|
|
|
|
|
|
|
|
2016-09-07 08:42:31 +00:00
|
|
|
%define use_build_checks 1
|
|
|
|
|
2014-09-15 15:02:46 +00:00
|
|
|
Name: python-xmltodict
|
2016-09-07 08:42:31 +00:00
|
|
|
Version: 0.10.2
|
2014-09-15 15:02:46 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: Makes working with XML feel like you are working with JSON
|
2014-11-04 16:21:05 +00:00
|
|
|
License: MIT
|
2014-09-15 15:02:46 +00:00
|
|
|
Group: Development/Languages/Python
|
2014-11-04 16:21:05 +00:00
|
|
|
Url: https://github.com/martinblech/xmltodict
|
2016-09-07 08:42:31 +00:00
|
|
|
Source: https://pypi.io/packages/source/x/xmltodict/xmltodict-%{version}.tar.gz
|
2014-09-15 15:02:46 +00:00
|
|
|
BuildRequires: python-devel
|
|
|
|
BuildRequires: python-setuptools
|
2016-09-07 08:42:31 +00:00
|
|
|
%if 0%{?use_build_checks}
|
|
|
|
BuildRequires: python-coverage
|
|
|
|
BuildRequires: python-nose
|
|
|
|
%endif
|
2014-11-27 15:58:33 +00:00
|
|
|
%if 0%{?suse_version}
|
2014-11-04 16:21:05 +00:00
|
|
|
BuildRequires: python-xml
|
|
|
|
%endif
|
2014-09-15 15:02:46 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
|
|
|
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
%else
|
|
|
|
BuildArch: noarch
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
xmltodict is a Python module that makes working with XML feel like you are
|
|
|
|
working with json, as in this
|
|
|
|
http://www.xml.com/pub/a/2006/05/31/converting-between-xml-and-json.html
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n xmltodict-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
python setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
|
2016-09-07 08:42:31 +00:00
|
|
|
%check
|
|
|
|
%if 0%{?use_build_checks}
|
|
|
|
nosetests -v
|
|
|
|
%endif
|
|
|
|
|
2014-09-15 15:02:46 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc README.md LICENSE
|
2016-09-07 08:42:31 +00:00
|
|
|
%{python_sitelib}/xmltodict*
|
|
|
|
%{python_sitelib}/xmltodict-%{version}-py%{py_ver}.egg-info
|
2014-09-15 15:02:46 +00:00
|
|
|
|
2014-11-04 16:21:05 +00:00
|
|
|
%changelog
|