Compare commits

...

No commits in common. "a10s" and "a8" have entirely different histories.
a10s ... a8

4 changed files with 2581 additions and 21 deletions

20
config-portable.yaml Normal file
View File

@ -0,0 +1,20 @@
parameters:
custom_target_branch: "a8-portable"
pre_clean: true
actions:
- run_script:
- script: "replace_spec.sh"
cwd: "rpms"
- add_files:
- type: "source"
name: "NEWS"
number: "Latest"
modify_spec: false
- changelog_entry:
- name: "eabdullin"
email: "eabdullin@almalinux.org"
line:
- "Portable build"

View File

@ -1,21 +0,0 @@
actions:
- replace:
- target: "spec"
find: |
%if 0%{?centos} == 0
%global portablesuffix el8
%else
%global portablesuffix el9
%endif
replace: "%global portablesuffix el8"
count: 1
- modify_release:
- suffix: ".alma.1"
enabled: true
- changelog_entry:
- name: "Eduard Abdullin"
email: "eabdullin@almalinux.org"
line:
- "Use el8 portable packages"

2557
files/NEWS Normal file

File diff suppressed because it is too large Load Diff

4
scripts/replace_spec.sh Normal file
View File

@ -0,0 +1,4 @@
pushd SPECS
rm java-17-openjdk.spec
ln -s ../SOURCES/java-17-openjdk-portable.specfile java-17-openjdk.spec
popd