Files
pebble/pebble.spec

80 lines
2.4 KiB
RPMSpec

#
# spec file for package pebble
#
# 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/
#
Name: pebble
Version: 3.2.1
Release: 0
Summary: Java Template Engine
License: BSD-3-Clause
Group: Development/Libraries/Java
URL: https://pebbletemplates.io/
Source0: https://github.com/PebbleTemplates/%{name}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: maven-local
BuildRequires: mvn(jakarta.servlet:jakarta.servlet-api)
BuildRequires: mvn(javax.servlet:servlet-api)
BuildRequires: mvn(org.apache.maven.plugins:maven-assembly-plugin)
BuildRequires: mvn(org.slf4j:slf4j-api)
BuildRequires: mvn(org.unbescape:unbescape)
BuildArch: noarch
%description
Pebble is a java templating engine inspired by Twig. It separates itself from
the crowd with its inheritance feature and its easy-to-read syntax. It ships
with built-in autoescaping for security, and it includes integrated support for
internationalization.
%package javadoc
Summary: API documentation for %{name}
Group: Documentation/HTML
%description javadoc
API documentation for %{name}.
%prep
%setup -q
rm pebble/src/main/java/io/pebbletemplates/pebble/cache/{template/CaffeineTemplateCache,tag/CaffeineTagCache}.java
%pom_disable_module %{name}-spring
%pom_remove_plugin org.sonatype.plugins:nexus-staging-maven-plugin
%pom_remove_plugin :maven-javadoc-plugin
%pom_remove_dep com.github.ben-manes.caffeine:caffeine %{name}
%build
%{mvn_build} -f -- \
%if %{?pkg_vcmp:%pkg_vcmp java-devel >= 9}%{!?pkg_vcmp:0}
-Dmaven.compiler.release=8
%else
-Dsource=8
%endif
%install
%mvn_install
%fdupes %{buildroot}%{_javadocdir}/%{name}
%files -f .mfiles
%license LICENSE
%doc README.md
%files javadoc -f .mfiles-javadoc
%license LICENSE
%changelog