2013-01-14 09:39:44 +01:00
|
|
|
#
|
|
|
|
# spec file for package python-cssselect
|
|
|
|
#
|
2017-03-29 14:22:29 +02:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2013-01-14 09:39:44 +01: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/
|
2013-03-29 22:26:08 +01:00
|
|
|
#
|
2013-01-14 09:39:44 +01:00
|
|
|
|
|
|
|
|
2017-03-29 14:22:29 +02:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2013-01-14 09:39:44 +01:00
|
|
|
Name: python-cssselect
|
2017-03-29 14:22:29 +02:00
|
|
|
Version: 1.0.1
|
2013-01-14 09:39:44 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: CSS3 selectors for Python
|
2013-03-29 22:26:08 +01:00
|
|
|
License: BSD-3-Clause
|
2013-01-14 09:39:44 +01:00
|
|
|
Group: Development/Languages/Python
|
2013-03-29 22:26:08 +01:00
|
|
|
Url: http://packages.python.org/cssselect/
|
2017-03-29 14:22:29 +02:00
|
|
|
Source: https://pypi.io/packages/source/c/cssselect/cssselect-%{version}.tar.gz
|
|
|
|
BuildRequires: %{python_module devel}
|
|
|
|
BuildRequires: python-rpm-macros
|
2013-01-14 09:39:44 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildArch: noarch
|
2017-03-29 14:22:29 +02:00
|
|
|
|
|
|
|
%python_subpackages
|
2013-01-14 09:39:44 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
cssselect parses CSS3 Selectors and translates them to XPath 1.0
|
|
|
|
expressions. Such expressions can be used in lxml or another XPath engine to
|
|
|
|
find the matching elements in an XML or HTML document.
|
|
|
|
|
|
|
|
This module used to live inside of lxml as lxml.cssselect before it was
|
|
|
|
extracted as a stand-alone project.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n cssselect-%{version}
|
|
|
|
|
|
|
|
%build
|
2017-03-29 14:22:29 +02:00
|
|
|
%python_build
|
2013-01-14 09:39:44 +01:00
|
|
|
|
|
|
|
%install
|
2017-03-29 14:22:29 +02:00
|
|
|
%python_install
|
2013-01-14 09:39:44 +01:00
|
|
|
|
2017-03-29 14:22:29 +02:00
|
|
|
%files %python_files
|
2013-01-14 09:39:44 +01:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{python_sitelib}/*
|
2013-11-23 19:15:20 +01:00
|
|
|
%doc README.rst LICENSE CHANGES AUTHORS
|
2013-01-14 09:39:44 +01:00
|
|
|
|
|
|
|
%changelog
|