2014-06-02 11:05:03 +02:00
|
|
|
#
|
|
|
|
# spec file for package python-bleach
|
|
|
|
#
|
2017-04-06 19:57:05 +02:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2014-06-02 11:05:03 +02: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/
|
2015-08-08 17:05:21 +02:00
|
|
|
#
|
2014-06-02 11:05:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
Name: python-bleach
|
2017-12-13 15:12:06 +01:00
|
|
|
Version: 2.1.1
|
2014-06-02 11:05:03 +02:00
|
|
|
Release: 0
|
2017-12-13 15:12:06 +01:00
|
|
|
Summary: An easy safelist-based HTML-sanitizing tool
|
2015-08-08 17:05:21 +02:00
|
|
|
License: Apache-2.0
|
2014-06-02 11:05:03 +02:00
|
|
|
Group: Development/Languages/Python
|
2017-12-13 15:12:06 +01:00
|
|
|
Url: https://github.com/mozilla/bleach
|
|
|
|
Source: https://pypi.python.org/packages/source/b/bleach/bleach-%{version}.tar.gz
|
|
|
|
BuildRequires: python-devel
|
|
|
|
BuildRequires: python-setuptools
|
2014-06-02 11:05:03 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2017-12-13 15:12:06 +01:00
|
|
|
%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
|
2014-06-02 11:05:03 +02:00
|
|
|
BuildArch: noarch
|
2017-12-13 15:12:06 +01:00
|
|
|
%endif
|
2014-06-02 11:05:03 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n bleach-%{version}
|
|
|
|
|
|
|
|
%build
|
2017-12-13 15:12:06 +01:00
|
|
|
python setup.py build
|
2014-06-02 11:05:03 +02:00
|
|
|
|
|
|
|
%install
|
2017-12-13 15:12:06 +01:00
|
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
2014-06-02 11:05:03 +02:00
|
|
|
|
2017-12-13 15:12:06 +01:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2014-06-02 11:05:03 +02:00
|
|
|
%{python_sitelib}/*
|
|
|
|
|
|
|
|
%changelog
|
2017-12-13 15:12:06 +01:00
|
|
|
|