15
0
Files
python-Chameleon/python-Chameleon.spec
Dirk Mueller dbba8aaccf - update to 4.2.0:
* An XML document provided as a string (i.e. decoded) now
    correctly has its content encoding parsed.
  * Boolean attributes are now automatically configured for
    templates in non-XML mode, presuming that we're being used
    to generate HTML.
  * This means that the same loading mechanism can be used for
    both XML-and HTML-based templates.
  * Boolean attributes (those configured using the optional
    `boolean_attributes` parameter) now work with $-expression
    interpolation.
  * Unlike content and regular attributes, a special check for a
    falsy value is now done for boolean attributes, such that
    boolean logic can be used for interpolation expressions
    (only a truthy value will include the attribute).
    This reverts a change in behavior introduced in 3.8.0.
  * Fix format spec applying for f-strings.
  * Drop support for Python 2.7, 3.5, 3.6.
  * Add support for set- and dict comprehensions
  * Remove the following functions resp. modules:
    ``.utils.text_()``
    ``.utils.unescape()``
    ``.compat``
  *  A RepeatDict no longer inherits from dict since it does not actually provide
  *  Added feature gate enable_comment_interpolation which controls whether
    Add option restricted_namespace which controls whether to
    restrict namespaces to those defined and used by the page
    Fixed attribute HTML entity escaping issue where an entity such
    Simplify exception tracking, reducing bytecode size
    Avoid checking if a static string is None during expression

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Chameleon?expand=0&rev=43
2023-10-02 07:22:17 +00:00

68 lines
2.1 KiB
RPMSpec

#
# spec file for package python-Chameleon
#
# Copyright (c) 2023 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-Chameleon
Version: 4.2.0
Release: 0
Summary: Fast HTML/XML Template Compiler
License: BSD-3-Clause AND BSD-4-Clause AND Python-2.0 AND ZPL-2.1
Group: Development/Languages/Python
URL: https://github.com/malthe/chameleon
Source: https://github.com/malthe/chameleon/archive/%{version}.tar.gz#/Chameleon-%{version}.tar.gz
BuildRequires: %{python_module devel >= 3.8}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-setuptools
BuildArch: noarch
%python_subpackages
%description
Chameleon is an HTML/XML template engine for Python. It uses the
*page templates* language.
You can use it in any Python web application with just about any
version of Python (2.5 and up, including 3.x and pypy).
%prep
%setup -q -n chameleon-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
# Don't ship testsuite
%python_expand rm -r %{buildroot}%{$python_sitelib}/chameleon/tests
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# doctest have not run at all so far
# AttributeError: '_DocTestSuite' object has no attribute 'test_exc'
%pytest -k 'not doctest'
%files %{python_files}
%license LICENSE.txt
%doc README.rst
%{python_sitelib}/*
%changelog