#
# spec file for package timezone-java
#
# 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:           timezone-java
BuildRequires:  java
BuildRequires:  javazic
BuildRequires:  tzdb
Summary:        Time Zone Descriptions
License:        BSD-3-Clause AND SUSE-Public-Domain
Group:          System/Base
# COMMON-BEGIN
# COMMON-END
URL:            https://www.iana.org/time-zones
Requires(pre):  filesystem, coreutils
Provides:       tzdata-java = %{version}-%{release}
Provides:       tzdata-java8 = %{version}-%{release}
#!BuildIgnore:  tzdata-java tzdata-java8
BuildArch:      noarch

%description
These are configuration files that describe available time zones - this
package is intended for Java Virtual Machine based on OpenJDK.



%prep
%setup -c  -a 1
# COMMON-PREP-BEGIN
# COMMON-PREP-END

echo "tzdata%{version}" >> VERSION

%build
# Java 6/7 data
java \
%if %{?pkg_vcmp:%pkg_vcmp java >= 9}%{!?pkg_vcmp:0}
     --add-exports=java.base/sun.security.action=ALL-UNNAMED \
%endif
     -jar %{_javadir}/javazic.jar -V %{version} \
     -d javazi \
     africa antarctica asia australasia europe northamerica \
     southamerica backward etcetera  \
     %{_datadir}/javazic/tzdata_jdk/gmt \
     %{_datadir}/javazic/tzdata_jdk/jdk11_backward
# Java 8/9 data
java -jar %{_javadir}/tzdb.jar \
     -srcdir . -dstfile javazi/tzdb.dat \
     africa antarctica asia australasia europe northamerica \
     southamerica backward etcetera  \
     %{_datadir}/tzdb/tzdata_jdk/gmt \
     %{_datadir}/tzdb/tzdata_jdk/jdk11_backward

%install
install -d -m 0755 $RPM_BUILD_ROOT/%{_datadir}
cp -a javazi $RPM_BUILD_ROOT%{_datadir}

%files
%defattr(-,root,root)
%{_datadir}/javazi

%changelog