15
0
Files
python-Chameleon/python-Chameleon.spec
Tomáš Chvátal 8d2d9e2f2e Accepting request 794801 from home:mcalabkova:branches:devel:languages:python
- Update to 3.7.0
  *  Fixed garbage collection issue with variable scope objects (issue #301).
  *  Fixed issue where setting a global variable would not be available locally.
  *  A RepeatDict no longer inherits from dict since it does not actually provide 
     that interface in a meaningful way.
  *  Added feature gate enable_comment_interpolation which controls whether 
     expression interpolation is enabled inside HTML comments (default is enabled).
  *  Added support for Python 3.6+ f-strings (issue #294).

OBS-URL: https://build.opensuse.org/request/show/794801
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Chameleon?expand=0&rev=31
2020-04-17 08:11:45 +00:00

64 lines
1.9 KiB
RPMSpec

#
# spec file for package python-Chameleon
#
# Copyright (c) 2020 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-Chameleon
Version: 3.7.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 setuptools}
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
%python_build
%install
%python_install
# Don't ship testsuite
%python_expand rm -r %{buildroot}%{$python_sitelib}/chameleon/tests
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
export PYTHONDONTWRITEBYTECODE=1
%python_exec setup.py test
%files %{python_files}
%license LICENSE.txt
%doc README.rst
%{python_sitelib}/*
%changelog