Compare commits
No commits in common. "c9s" and "a10s-portable" have entirely different histories.
c9s
...
a10s-porta
@ -1,7 +1,7 @@
|
|||||||
# recipients: java-qa
|
# recipients: java-qa
|
||||||
--- !Policy
|
--- !Policy
|
||||||
product_versions:
|
product_versions:
|
||||||
- rhel-9
|
- rhel-10
|
||||||
decision_context: osci_compose_gate
|
decision_context: osci_compose_gate
|
||||||
rules:
|
rules:
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||||
|
|||||||
@ -451,6 +451,11 @@
|
|||||||
%define jreportablearchive() %{expand:%{jreportablenameimpl -- %%{1}}.tar.xz}
|
%define jreportablearchive() %{expand:%{jreportablenameimpl -- %%{1}}.tar.xz}
|
||||||
%define jdkportablearchive() %{expand:%{jdkportablenameimpl -- %%{1}}.tar.xz}
|
%define jdkportablearchive() %{expand:%{jdkportablenameimpl -- %%{1}}.tar.xz}
|
||||||
%define staticlibsportablearchive() %{expand:%{staticlibsportablenameimpl -- %%{1}}.tar.xz}
|
%define staticlibsportablearchive() %{expand:%{staticlibsportablenameimpl -- %%{1}}.tar.xz}
|
||||||
|
# RPM 4.19 no longer accept our double percentaged %%{nil} passed to %%{1}
|
||||||
|
# so we have to pass in "" but evaluate it, otherwise files record will include it
|
||||||
|
%define jreportablearchiveForFiles() %(echo %{jreportablearchive -- ""})
|
||||||
|
%define jdkportablearchiveForFiles() %(echo %{jdkportablearchive -- ""})
|
||||||
|
%define staticlibsportablearchiveForFiles() %(echo %{staticlibsportablearchive -- ""})
|
||||||
%define jreportablename() %{expand:%{jreportablenameimpl -- %%{1}}}
|
%define jreportablename() %{expand:%{jreportablenameimpl -- %%{1}}}
|
||||||
%define jdkportablename() %{expand:%{jdkportablenameimpl -- %%{1}}}
|
%define jdkportablename() %{expand:%{jdkportablenameimpl -- %%{1}}}
|
||||||
# Intentionally use jdkportablenameimpl here since we want to have static-libs files overlayed on
|
# Intentionally use jdkportablenameimpl here since we want to have static-libs files overlayed on
|
||||||
@ -1878,8 +1883,8 @@ done
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
# main package builds always
|
# main package builds always
|
||||||
%{_jvmdir}/%{jreportablearchive -- %%{nil}}
|
%{_jvmdir}/%{jreportablearchiveForFiles}
|
||||||
%{_jvmdir}/%{jreportablearchive -- %%{nil}}.sha256sum
|
%{_jvmdir}/%{jreportablearchiveForFiles}.sha256sum
|
||||||
%else
|
%else
|
||||||
%files
|
%files
|
||||||
# placeholder
|
# placeholder
|
||||||
@ -1888,15 +1893,15 @@ done
|
|||||||
%if %{include_normal_build}
|
%if %{include_normal_build}
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_jvmdir}/%{jdkportablearchive -- %%{nil}}
|
%{_jvmdir}/%{jdkportablearchiveForFiles}
|
||||||
%{_jvmdir}/%{jdkportablearchive -- .debuginfo}
|
%{_jvmdir}/%{jdkportablearchive -- .debuginfo}
|
||||||
%{_jvmdir}/%{jdkportablearchive -- %%{nil}}.sha256sum
|
%{_jvmdir}/%{jdkportablearchiveForFiles}.sha256sum
|
||||||
%{_jvmdir}/%{jdkportablearchive -- .debuginfo}.sha256sum
|
%{_jvmdir}/%{jdkportablearchive -- .debuginfo}.sha256sum
|
||||||
|
|
||||||
%if %{include_staticlibs}
|
%if %{include_staticlibs}
|
||||||
%files static-libs
|
%files static-libs
|
||||||
%{_jvmdir}/%{staticlibsportablearchive -- %%{nil}}
|
%{_jvmdir}/%{staticlibsportablearchiveForFiles}
|
||||||
%{_jvmdir}/%{staticlibsportablearchive -- %%{nil}}.sha256sum
|
%{_jvmdir}/%{staticlibsportablearchiveForFiles}.sha256sum
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files unstripped
|
%files unstripped
|
||||||
|
|||||||
2997
java-21-openjdk.spec
2997
java-21-openjdk.spec
File diff suppressed because it is too large
Load Diff
1
java-21-openjdk.spec
Symbolic link
1
java-21-openjdk.spec
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
java-21-openjdk-portable.specfile
|
||||||
Loading…
Reference in New Issue
Block a user