108 lines
4.5 KiB
RPMSpec
108 lines
4.5 KiB
RPMSpec
#
|
|
# spec file for package perl-Tenjin
|
|
#
|
|
# Copyright (c) 2024 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/
|
|
#
|
|
|
|
|
|
%define cpan_name Tenjin
|
|
Name: perl-Tenjin
|
|
Version: 1.0.1
|
|
Release: 0
|
|
# 1.000001 -> normalize -> 1.0.1
|
|
%define cpan_version 1.000001
|
|
#Upstream: Tenjin is licensed under the MIT license. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. See http://dev.perl.org/licenses/ for more information.
|
|
License: MIT
|
|
Summary: Fast templating engine with support for embedded Perl
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/I/ID/IDOPEREL/%{cpan_name}-%{cpan_version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(HTML::Entities)
|
|
BuildRequires: perl(Try::Tiny)
|
|
Requires: perl(HTML::Entities)
|
|
Provides: perl(Tenjin) = %{version}
|
|
Provides: perl(Tenjin::Context) = %{version}
|
|
Provides: perl(Tenjin::Preprocessor) = %{version}
|
|
Provides: perl(Tenjin::Template) = %{version}
|
|
Provides: perl(Tenjin::Util) = %{version}
|
|
%undefine __perllib_provides
|
|
%{perl_requires}
|
|
# MANUAL BEGIN
|
|
BuildRequires: perl(Try::Tiny)
|
|
# MANUAL END
|
|
|
|
%description
|
|
Tenjin is a very fast and full-featured templating engine, implemented in
|
|
several programming languages, among them Perl.
|
|
|
|
The Perl version of Tenjin supports embedded Perl code, nestable layout
|
|
template, inclusion of other templates inside a template, capturing parts
|
|
of or the entire template output, file and memory caching, template
|
|
arguments and preprocessing.
|
|
|
|
The original version of Tenjin is developed by Makoto Kuwata. This CPAN
|
|
version is developed by Ido Perlmuter and differs from the original in a
|
|
few key aspects:
|
|
|
|
* * Code is entirely revised, packages are separated into modules, with
|
|
a smaller number of packages than the original version. In particular,
|
|
the
|
|
Tenjin::Engine module no longer exists, and is now instead just the
|
|
Tenjin
|
|
module (i.e. this one).
|
|
|
|
* * Support for rendering templates from non-file sources (such as
|
|
a database) is added.
|
|
|
|
* * Ability to set the encoding of your templates is added (Tenjin will
|
|
decode
|
|
template files according to this encoding; by default, Tenjin will decode
|
|
|
|
* * HTML is encoded and decoded using the HTML::Entities module,
|
|
instead of internally.
|
|
|
|
* * The 'pltenjin' script is not provided, at least for now.
|
|
|
|
To make it clear, the CPAN version of Tenjin might find itself diverting a
|
|
bit in the future from the original Tenjin's roadmap. Although my aim is to
|
|
be as compatible as possible (and this version is always updated with
|
|
features and changes from the original), I cannot guarantee it (but I'll do
|
|
my best). Please note that version 0.05 (and above) of this module is NOT
|
|
backwards compatible with previous versions.
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
%make_build
|
|
|
|
%check
|
|
make test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%doc Changes README
|
|
%license LICENSE
|
|
|
|
%changelog
|