diff --git a/python-beautifulsoup4.changes b/python-beautifulsoup4.changes index 4df5335..9f7877c 100644 --- a/python-beautifulsoup4.changes +++ b/python-beautifulsoup4.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jun 10 20:34:00 UTC 2013 - dmueller@suse.com + +- disable tests on SLE_11, fail due to too old python-lxml + ------------------------------------------------------------------- Sat May 18 13:30:00 UTC 2013 - toddrme2178@gmail.com diff --git a/python-beautifulsoup4.spec b/python-beautifulsoup4.spec index b3d4886..eb98586 100644 --- a/python-beautifulsoup4.spec +++ b/python-beautifulsoup4.spec @@ -26,8 +26,8 @@ Group: Development/Libraries/Python Url: http://www.crummy.com/software/BeautifulSoup/ Source: http://pypi.python.org/packages/source/b/beautifulsoup4/beautifulsoup4-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: python-devel >= 2.6 BuildRequires: python-Sphinx +BuildRequires: python-devel >= 2.6 BuildRequires: python-html5lib BuildRequires: python-lxml BuildRequires: python-nose @@ -71,8 +71,8 @@ Beautiful Soup. %package doc Summary: Documentation for %{name} -Recommends: %{name} = %{version} Group: Development/Libraries/Python +Recommends: %{name} = %{version} %description doc Documentation and help files for %{name} @@ -91,8 +91,10 @@ python setup.py install \ cd doc make html +%if 0%{?suse_version} >= 1140 %check nosetests +%endif %files %defattr(-,root,root) diff --git a/python3-beautifulsoup4.changes b/python3-beautifulsoup4.changes deleted file mode 100644 index 96ee300..0000000 --- a/python3-beautifulsoup4.changes +++ /dev/null @@ -1,76 +0,0 @@ -------------------------------------------------------------------- -Sat May 18 13:30:00 UTC 2013 - toddrme2178@gmail.com - -- Update to 4.2.0 - * The Tag.select() method now supports a much wider variety of CSS - selectors. - - Added support for the adjacent sibling combinator (+) and the - general sibling combinator (~). Tests by "liquider". [bug=1082144] - - The combinators (>, +, and ~) can now combine with any supported - selector, not just one that selects based on tag name. - - Added limited support for the "nth-of-type" pseudo-class. Code - by Sven Slootweg. [bug=1109952] - * The BeautifulSoup class is now aliased to "_s" and "_soup", making - it quicker to type the import statement in an interactive session - The alias may change in the future, so don't use this in code you're - going to run more than once. - * Added the 'diagnose' submodule, which includes several useful - functions for reporting problems and doing tech support. - - diagnose(data) tries the given markup on every installed parser, - reporting exceptions and displaying successes. If a parser is not - installed, diagnose() mentions this fact. - - lxml_trace(data, html=True) runs the given markup through lxml's - XML parser or HTML parser, and prints out the parser events as - they happen. This helps you quickly determine whether a given - problem occurs in lxml code or Beautiful Soup code. - - htmlparser_trace(data) is the same thing, but for Python's - built-in HTMLParser class. - * In an HTML document, the contents of a