forked from pool/checkstyle
117 lines
3.8 KiB
RPMSpec
117 lines
3.8 KiB
RPMSpec
#
|
|
# spec file for package checkstyle
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
# Copyright (c) 2000-2005, JPackage Project
|
|
#
|
|
# 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: checkstyle
|
|
Version: 9.3
|
|
Release: 0
|
|
Summary: Java source code checker
|
|
License: LGPL-2.1-or-later
|
|
Group: Development/Libraries/Java
|
|
URL: https://checkstyle.sourceforge.net/
|
|
Source0: %{name}-%{version}.tar.xz
|
|
Source2: %{name}.catalog
|
|
BuildRequires: fdupes
|
|
BuildRequires: maven-local
|
|
BuildRequires: mvn(com.google.guava:guava)
|
|
BuildRequires: mvn(commons-beanutils:commons-beanutils)
|
|
BuildRequires: mvn(info.picocli:picocli)
|
|
BuildRequires: mvn(net.sf.saxon:Saxon-HE)
|
|
BuildRequires: mvn(org.antlr:antlr4-maven-plugin)
|
|
BuildRequires: mvn(org.antlr:antlr4-runtime)
|
|
BuildRequires: mvn(org.apache.ant:ant)
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-failsafe-plugin)
|
|
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
|
|
BuildRequires: mvn(org.codehaus.mojo:exec-maven-plugin)
|
|
BuildRequires: mvn(org.reflections:reflections) >= 0.10.0
|
|
BuildRequires: mvn(org.sonatype.oss:oss-parent:pom:)
|
|
Requires: javapackages-tools
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
A tool for checking Java source code for adherence to a set of rules.
|
|
|
|
%package javadoc
|
|
Summary: Javadoc for %{name}
|
|
Group: Documentation/HTML
|
|
|
|
%description javadoc
|
|
API documentation for %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%pom_remove_plugin :nexus-staging-maven-plugin
|
|
%pom_remove_plugin :maven-enforcer-plugin
|
|
%pom_remove_plugin :xml-maven-plugin
|
|
%pom_remove_plugin :spotbugs-maven-plugin
|
|
%pom_remove_plugin :tidy-maven-plugin
|
|
%pom_remove_plugin :jacoco-maven-plugin
|
|
|
|
%build
|
|
%{mvn_file} : %{name}
|
|
|
|
%{mvn_build} -f -- \
|
|
-Dproject.build.outputTimestamp=$(date -u -d @${SOURCE_DATE_EPOCH:-$(date +%%s)} +%%Y-%%m-%%dT%%H:%%M:%%SZ)
|
|
|
|
%install
|
|
%mvn_install
|
|
%fdupes -s %{buildroot}%{_javadocdir}
|
|
|
|
# script
|
|
%jpackage_script com.puppycrawl.tools.checkstyle.Main "" "" checkstyle:antlr:apache-commons-beanutils:apache-commons-cli:apache-commons-logging:apache-commons-collections:guava checkstyle true
|
|
|
|
# dtds
|
|
install -Dm 644 %{SOURCE2} %{buildroot}%{_datadir}/xml/%{name}/catalog
|
|
cp -pa src/main/resources/com/puppycrawl/tools/checkstyle/*.dtd \
|
|
%{buildroot}%{_datadir}/xml/%{name}
|
|
|
|
# ant.d
|
|
install -dm 755 %{buildroot}%{_sysconfdir}/ant.d
|
|
cat > %{buildroot}%{_sysconfdir}/ant.d/%{name} << EOF
|
|
checkstyle antlr apache-commons-beanutils apache-commons-cli apache-commons-logging guava
|
|
EOF
|
|
|
|
%post
|
|
# Note that we're using a fully versioned catalog, so this is always ok.
|
|
if [ -x %{_bindir}/install-catalog -a -d %{_sysconfdir}/sgml ]; then
|
|
%{_bindir}/install-catalog --add \
|
|
%{_sysconfdir}/sgml/%{name}-%{version}-%{release}.cat \
|
|
%{_datadir}/xml/%{name}/catalog > /dev/null || :
|
|
fi
|
|
|
|
%postun
|
|
# Note that we're using a fully versioned catalog, so this is always ok.
|
|
if [ -x %{_bindir}/install-catalog -a -d %{_sysconfdir}/sgml ]; then
|
|
%{_bindir}/install-catalog --remove \
|
|
%{_sysconfdir}/sgml/%{name}-%{version}-%{release}.cat \
|
|
%{_datadir}/xml/%{name}/catalog > /dev/null || :
|
|
fi
|
|
|
|
%files -f .mfiles
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{_datadir}/xml/%{name}
|
|
%{_bindir}/%{name}
|
|
%config(noreplace) %{_sysconfdir}/ant.d/%{name}
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%license LICENSE
|
|
|
|
%changelog
|