forked from pool/python-Tempita
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Tempita?expand=0&rev=21
59 lines
1.8 KiB
RPMSpec
59 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package python-Tempita
|
|
#
|
|
# Copyright (c) 2022 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-Tempita
|
|
Version: 0.5.2+git.1630978236.a30af77
|
|
Release: 0
|
|
Summary: A very small text templating language
|
|
License: MIT
|
|
URL: https://github.com/nsoranzo/tempita
|
|
Source: tempita-%{version}.tar.gz
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: %{python_module xml}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Tempita is a small templating language for text substitution.
|
|
|
|
This isn't meant to be the Next Big Thing in templating; it's just a
|
|
handy little templating language for when your project outgrows
|
|
string.Template or % substitution. It's small, it embeds
|
|
Python in strings, and it doesn't do much else.
|
|
|
|
%prep
|
|
%setup -q -n tempita-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%files %{python_files}
|
|
%{python_sitelib}/Tempita*
|
|
%{python_sitelib}/tempita*
|
|
|
|
%changelog
|