Submitting a new package OBS-URL: https://build.opensuse.org/request/show/1274599 OBS-URL: https://build.opensuse.org/package/show/Java:packages/sinclude?expand=0&rev=1
82 lines
2.3 KiB
RPMSpec
82 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package sinclude
|
|
#
|
|
# Copyright (c) 2025 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: sinclude
|
|
Version: 5.2.4
|
|
Release: 0
|
|
Summary: Saxon XInclude processor
|
|
License: Apache-2.0
|
|
Group: Development/Libraries/Java
|
|
URL: https://%{name}.nwalsh.com/
|
|
Source0: https://github.com/ndw/%{name}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
Source1: https://repo1.maven.org/maven2/com/nwalsh/%{name}/%{version}/%{name}-%{version}.pom
|
|
Source2: https://www.apache.org/licenses/LICENSE-2.0.txt
|
|
BuildRequires: fdupes
|
|
BuildRequires: maven-local
|
|
BuildRequires: mvn(net.sf.saxon:Saxon-HE:12)
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This is an XInclude processor. It operates on the Saxon data model; it is not a
|
|
streaming processor.
|
|
|
|
%package javadoc
|
|
Summary: API documentation for %{name}
|
|
Group: Documentation/HTML
|
|
|
|
%description javadoc
|
|
API documentation for %{name}.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
cp %{SOURCE1} pom.xml
|
|
cp %{SOURCE2} .
|
|
|
|
%pom_change_dep net.sf.saxon:Saxon-HE ::12:compile
|
|
|
|
cat <<__JAVA__ >src/main/java/com/nwalsh/BuildConfig.java
|
|
package com.nwalsh;
|
|
|
|
final public class BuildConfig
|
|
{
|
|
public static final String TITLE="Saxon XInclude";
|
|
public static final String VERSION="%{version}";
|
|
public static final String SAXON_VERSION="12";
|
|
}
|
|
__JAVA__
|
|
|
|
%{mvn_file} : %{name}
|
|
|
|
%build
|
|
%{mvn_build} -f -- \
|
|
-Dproject.build.outputTimestamp=$(date -u -d @${SOURCE_DATE_EPOCH:-$(date +%%s)} +%%Y-%%m-%%dT%%H:%%M:%%SZ)
|
|
|
|
%install
|
|
%mvn_install
|
|
%fdupes %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
%files -f .mfiles
|
|
%license LICENSE-2.0.txt
|
|
%doc README.org
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%license LICENSE-2.0.txt
|
|
|
|
%changelog
|