forked from pool/stringtemplate
OBS-URL: https://build.opensuse.org/package/show/Java:packages/stringtemplate?expand=0&rev=11
94 lines
2.8 KiB
RPMSpec
94 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package stringtemplate
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
Name: stringtemplate
|
|
Version: 3.2.1
|
|
Release: 0
|
|
Summary: A Java template engine
|
|
License: BSD-3-Clause
|
|
Group: Development/Libraries/Java
|
|
URL: https://www.stringtemplate.org/
|
|
Source0: http3://www.stringtemplate.org/download/stringtemplate-%{version}.tar.gz
|
|
# Build jUnit tests + make the antlr2 generated code before preparing sources
|
|
Patch0: stringtemplate-3.1-build-junit.patch
|
|
Patch1: stringtemplate-3.2.1-sourcetarget.patch
|
|
Patch2: stringtemplate-ambiguous.patch
|
|
BuildRequires: ant
|
|
BuildRequires: ant-antlr
|
|
BuildRequires: ant-junit
|
|
BuildRequires: antlr
|
|
BuildRequires: fdupes
|
|
BuildRequires: java-devel >= 1.8
|
|
BuildRequires: javapackages-local >= 6
|
|
Requires: mvn(antlr:antlr)
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
StringTemplate is a java template engine (with ports for
|
|
C# and Python) for generating source code, web pages,
|
|
emails, or any other formatted text output. StringTemplate
|
|
is particularly good at multi-targeted code generators,
|
|
multiple site skins, and internationalization/localization.
|
|
|
|
%package javadoc
|
|
Summary: API documentation for %{name}
|
|
Group: Documentation/HTML
|
|
Requires: java-javadoc
|
|
|
|
%description javadoc
|
|
API documentation for package %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch -P 0
|
|
%patch -P 1 -p1
|
|
%patch -P 2 -p1
|
|
|
|
%build
|
|
rm -rf lib target
|
|
ant \
|
|
-Dant.build.javac.source=1.8 -Dant.build.javac.target=1.8 \
|
|
jar
|
|
ant \
|
|
-Dant.build.javac.source=1.8 -Dant.build.javac.target=1.8 \
|
|
-Dpackages= -Djavadocs.additionalparam= \
|
|
javadocs
|
|
|
|
%install
|
|
#jar
|
|
install -dm 0755 %{buildroot}%{_javadir}
|
|
install -pm 0644 build/stringtemplate.jar %{buildroot}%{_javadir}/%{name}.jar
|
|
|
|
install -dm 0755 %{buildroot}%{_mavenpomdir}
|
|
%{mvn_install_pom} pom.xml %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
|
|
%add_maven_depmap JPP-%{name}.pom %{name}.jar
|
|
|
|
install -dm 0755 %{buildroot}%{_javadocdir}/%{name}
|
|
cp -pR docs/api/* %{buildroot}%{_javadocdir}/%{name}
|
|
%fdupes -s %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
%files -f .mfiles
|
|
%license LICENSE.txt
|
|
%doc README.txt
|
|
|
|
%files javadoc
|
|
%license LICENSE.txt
|
|
%{_javadocdir}/%{name}
|
|
|
|
%changelog
|