Compare commits
No commits in common. "c9s" and "c8" have entirely different histories.
13
LICENSE
13
LICENSE
@ -1,13 +0,0 @@
|
|||||||
Copyright (c) 2025 Red Hat Inc.
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms are permitted
|
|
||||||
provided that the above copyright notice and this paragraph are
|
|
||||||
duplicated in all such forms and that any documentation, advertising
|
|
||||||
materials, and other materials related to such distribution and use
|
|
||||||
acknowledge that the software was developed by Red Hat Inc. The name
|
|
||||||
of Red Hat Inc. may not be used to endorse or promote products derived
|
|
||||||
from this software without specific prior written permission. THIS
|
|
||||||
SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
||||||
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
||||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
14
SOURCES/LICENSE
Normal file
14
SOURCES/LICENSE
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
Copyright (c) 2015 Red Hat inc.
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms are permitted
|
||||||
|
provided that the above copyright notice and this paragraph are
|
||||||
|
duplicated in all such forms and that any documentation,
|
||||||
|
advertising materials, and other materials related to such
|
||||||
|
distribution and use acknowledge that the software was developed
|
||||||
|
by the Red Hat inc. The name of the Red Hat inc. may not be used
|
||||||
|
to endorse or promote products derived from this software without
|
||||||
|
specific prior written permission. THIS SOFTWARE IS PROVIDED
|
||||||
|
``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
|
||||||
|
WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE.
|
@ -53,29 +53,25 @@ local function dirWithParents(path)
|
|||||||
s = s .. "/" .. d
|
s = s .. "/" .. d
|
||||||
local stat2 = posix.stat(s, "type");
|
local stat2 = posix.stat(s, "type");
|
||||||
if (stat2 == nil) then
|
if (stat2 == nil) then
|
||||||
debugOneLinePrint(s .. " does not exist. Creating")
|
debugOneLinePrint(s .. " does not exists, creating")
|
||||||
if (not dry) then
|
if (not dry) then
|
||||||
posix.mkdir(s)
|
posix.mkdir(s)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
debugOneLinePrint(s .. " exists. Not creating")
|
debugOneLinePrint(s .. " exists,not creating")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function getVersion()
|
|
||||||
return ##VERSION##
|
|
||||||
end
|
|
||||||
|
|
||||||
-- main function,
|
-- main function,
|
||||||
-- formerly main body
|
-- formelry main body
|
||||||
-- moved to function resolved
|
-- move to function resolved
|
||||||
-- https://bugzilla.redhat.com/show_bug.cgi?id=1892224
|
-- https://bugzilla.redhat.com/show_bug.cgi?id=1892224
|
||||||
-- for readability not indented, todo, indent once tuned
|
-- for readability not indented, todo, indent once tuned
|
||||||
|
|
||||||
function M.mainProgram(arg)
|
function M.mainProgram(arg)
|
||||||
debugOneLinePrint("cjc: lua debug on")
|
debugOneLinePrint("cjc: lua debug on")
|
||||||
debugOneLinePrint("cjc version " .. getVersion())
|
|
||||||
local caredFiles = { "jre/lib/calendars.properties",
|
local caredFiles = { "jre/lib/calendars.properties",
|
||||||
"jre/lib/content-types.properties",
|
"jre/lib/content-types.properties",
|
||||||
"jre/lib/flavormap.properties",
|
"jre/lib/flavormap.properties",
|
||||||
@ -119,11 +115,6 @@ function M.mainProgram(arg)
|
|||||||
end
|
end
|
||||||
return 0;
|
return 0;
|
||||||
end
|
end
|
||||||
if (arg[1] == "--version") then
|
|
||||||
print(getVersion())
|
|
||||||
return 0;
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
-- yum install lua-posix
|
-- yum install lua-posix
|
||||||
local posix = require "posix"
|
local posix = require "posix"
|
||||||
@ -140,37 +131,28 @@ function M.mainProgram(arg)
|
|||||||
|
|
||||||
for i = 1, #arg, 2 do
|
for i = 1, #arg, 2 do
|
||||||
if (arg[i] == "--help" or arg[i] == "-h") then
|
if (arg[i] == "--help" or arg[i] == "-h") then
|
||||||
print("cjc version " .. getVersion())
|
print("all but jvmDestdir and debug are mandatory")
|
||||||
print("")
|
|
||||||
print("All but jvmDestdir and debug are mandatory")
|
|
||||||
print(" --currentjvm")
|
print(" --currentjvm")
|
||||||
print(" <name>-<version>-<release>.<arch> of currently installed java")
|
print(" NVRA of currently installed java")
|
||||||
print(" --jvmdir")
|
print(" --jvmdir")
|
||||||
print(" Directory where to find this virtual machine. Generally /usr/lib/jvm")
|
print(" Directory where to find this kind of virtual machine. Generally /usr/lib/jvm")
|
||||||
print(" --origname")
|
print(" --origname")
|
||||||
print(" convenient switch to specify full name of the JDK. Generally java-<version>-vendor")
|
print(" convinient switch to determine jdk. Generally java-1.X.0-vendor")
|
||||||
print(" --origjavaver")
|
print(" --origjavaver")
|
||||||
print(" convenient switch to specify the JDK's version. Generally X or 1.X.0")
|
print(" convinient switch to determine jdk's version. Generally 1.X.0")
|
||||||
print(" --arch")
|
print(" --arch")
|
||||||
print(" convenient switch to specify the JDK's architecture")
|
print(" convinient switch to determine jdk's arch")
|
||||||
print(" --jvmDestdir")
|
print(" --jvmDestdir")
|
||||||
print(" Migration/testing switch. Target mostly the same as jvmdir, but you may want to copy outside it.")
|
print(" Migration/testing switch. Target Mostly same as jvmdir, but you may wont to copy ouside it.")
|
||||||
print(" --debug or $debug")
|
print(" --debug or $debug")
|
||||||
print(" Enables printing out what is going on. true/false. False by default")
|
print(" Enables printing out whats going on. true/false. False by default")
|
||||||
print(" --temp")
|
print(" --temp")
|
||||||
print(" optional file to save intermediate result - directory configs were copied from")
|
print(" optional file to save intermediate result - directory configs were copied from")
|
||||||
print(" --dry")
|
print(" --dry")
|
||||||
print(" true/false. If true, then no changes will be written to disk except one tmp file. False by default")
|
print(" true/fase if true, then no changes will be written to disk except one tmp file. False by default")
|
||||||
print("")
|
print(" **** specil parasm ****")
|
||||||
print("**** Special Parameters ****")
|
|
||||||
print(" --list")
|
print(" --list")
|
||||||
print(" if present on cmdline, lists all cared files and exits")
|
print(" if present on cmdline, list all cared files and exists")
|
||||||
print(" --version")
|
|
||||||
print(" if present on cmdline, outputs the version and exits")
|
|
||||||
print("")
|
|
||||||
print("**** Example ****")
|
|
||||||
print(" --currentjvm java-1.8.0-openjdk-1.8.0.65-3.b17.fc22.x86_64 --jvmdir /usr/lib/jvm")
|
|
||||||
print(" --origname java-1.8.0-openjdk --origjavaver 1.8.0 --arch x86_64 --jvmDestdir /home/jvanek/Desktop")
|
|
||||||
os.exit(0)
|
os.exit(0)
|
||||||
end
|
end
|
||||||
if (arg[i] == "--currentjvm") then
|
if (arg[i] == "--currentjvm") then
|
||||||
@ -250,11 +232,11 @@ function M.mainProgram(arg)
|
|||||||
if (string.find(p, name .. "%-" .. javaver .. ".*" .. arch) ~= nil) then
|
if (string.find(p, name .. "%-" .. javaver .. ".*" .. arch) ~= nil) then
|
||||||
debugOneLinePrint("matched: " .. p)
|
debugOneLinePrint("matched: " .. p)
|
||||||
if (currentjvm == p) then
|
if (currentjvm == p) then
|
||||||
debugOneLinePrint("This jdk is already installed. Exiting lua script")
|
debugOneLinePrint("this jdk is already installed. exiting lua script")
|
||||||
return
|
return
|
||||||
end ;
|
end ;
|
||||||
if (string.match(p, ".*-debug$")) then
|
if (string.match(p, ".*-debug$")) then
|
||||||
print(p .. " matched but seems to be a debug variant. Skipping")
|
print(p .. " matched but seems to be debug variant. Skipping")
|
||||||
else
|
else
|
||||||
table.insert(jvms, p)
|
table.insert(jvms, p)
|
||||||
end
|
end
|
||||||
@ -264,11 +246,11 @@ function M.mainProgram(arg)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if (#jvms <= 0) then
|
if (#jvms <= 0) then
|
||||||
debugOneLinePrint("No matching jdk in " .. jvmdir .. " exit")
|
debugOneLinePrint("no matching jdk in " .. jvmdir .. " exit")
|
||||||
return
|
return
|
||||||
end ;
|
end ;
|
||||||
|
|
||||||
debugOneLinePrint("Matched " .. #jvms .. " jdk in " .. jvmdir)
|
debugOneLinePrint("matched " .. #jvms .. " jdk in " .. jvmdir)
|
||||||
|
|
||||||
--full names are like java-1.7.0-openjdk-1.7.0.60-2.4.5.1.fc20.x86_64
|
--full names are like java-1.7.0-openjdk-1.7.0.60-2.4.5.1.fc20.x86_64
|
||||||
table.sort(jvms, function(a, b)
|
table.sort(jvms, function(a, b)
|
||||||
@ -302,7 +284,7 @@ function M.mainProgram(arg)
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
if (debug) then
|
if (debug) then
|
||||||
print("Sorted list of jvms")
|
print("sorted lsit of jvms")
|
||||||
for i, file in pairs(jvms) do
|
for i, file in pairs(jvms) do
|
||||||
print(file)
|
print(file)
|
||||||
end
|
end
|
||||||
@ -312,7 +294,7 @@ function M.mainProgram(arg)
|
|||||||
|
|
||||||
if (temp ~= nil) then
|
if (temp ~= nil) then
|
||||||
src = jvmdir .. "/" .. latestjvm
|
src = jvmdir .. "/" .. latestjvm
|
||||||
debugOneLinePrint("Temp declared as " .. temp .. ". Saving used dir of " .. src)
|
debugOneLinePrint("temp declared as " .. temp .. " saving used dir of " .. src)
|
||||||
file = io.open(temp, "w")
|
file = io.open(temp, "w")
|
||||||
file:write(src)
|
file:write(src)
|
||||||
file:close()
|
file:close()
|
||||||
@ -340,35 +322,35 @@ function M.mainProgram(arg)
|
|||||||
if (not ((link) == (SOURCE))) then
|
if (not ((link) == (SOURCE))) then
|
||||||
debugOneLinePrint("WARNING link " .. link .. " where file " .. SOURCE .. " expected!")
|
debugOneLinePrint("WARNING link " .. link .. " where file " .. SOURCE .. " expected!")
|
||||||
debugOneLinePrint("Will try to copy link target rather then link itself!")
|
debugOneLinePrint("Will try to copy link target rather then link itself!")
|
||||||
-- replacing any NVRA by future NVRA (still expecting to have NVRA for any multiple-installable targets)
|
--replacing any NVRA by future NVRA (still execting to have NVRA for any multiple-installable targets
|
||||||
-- lua stubbornly consider dash as interval. Replacing by dot to match X-Y more correct as X.Y rather then not at all
|
-- lua stubbornly consider dash as inteval. Replacing by dot to match X-Y more correct as X.Y rather then not at all
|
||||||
local linkDest = string.gsub(link, latestjvm:gsub("-", "."), currentjvm)
|
local linkDest = string.gsub(link, latestjvm:gsub("-", "."), currentjvm)
|
||||||
debugOneLinePrint("attempting to copy " .. link .. " to " .. linkDest)
|
debugOneLinePrint("attempting to copy " .. link .. " to " .. linkDest)
|
||||||
if (link == linkDest) then
|
if (link == linkDest) then
|
||||||
debugOneLinePrint("These are identical files. Nothing to do.")
|
debugOneLinePrint("Those are identical files! Nothing to do!")
|
||||||
else
|
else
|
||||||
local exe2 = "cp" .. " -ar " .. link .. " " .. linkDest
|
local exe2 = "cp" .. " -ar " .. link .. " " .. linkDest
|
||||||
dirWithParents(linkDest)
|
dirWithParents(linkDest)
|
||||||
debugOneLinePrint("Executing " .. exe2)
|
debugOneLinePrint("executing " .. exe2)
|
||||||
if (not dry) then
|
if (not dry) then
|
||||||
os.execute(exe2)
|
os.execute(exe2)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
debugOneLinePrint("Executing " .. exe)
|
debugOneLinePrint("executing " .. exe)
|
||||||
if (not dry) then
|
if (not dry) then
|
||||||
os.execute(exe)
|
os.execute(exe)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
debugOneLinePrint(SOURCE .. " does not exist")
|
debugOneLinePrint(SOURCE .. " does not exists")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end --unindented main function
|
end --unindented main function
|
||||||
|
|
||||||
if (arg == nil) then
|
if (arg == nil) then
|
||||||
debugOneLinePrint("arg variable is nil. You have to call mainProgram manually") -- this can actually not be invoked, as the debug is set via arg
|
debugOneLinePrint("arg variable is nil, you have to call mainProgram manually") -- this can actually not be invoked, as the debug is set via arg
|
||||||
else
|
else
|
||||||
M.mainProgram(arg)
|
M.mainProgram(arg)
|
||||||
end
|
end
|
@ -7,23 +7,23 @@ Name: copy-jdk-configs
|
|||||||
|
|
||||||
# hash relevant to version tag
|
# hash relevant to version tag
|
||||||
%global htag 88d3ed89f30d8b0eb4877d860fa8d951f224f156
|
%global htag 88d3ed89f30d8b0eb4877d860fa8d951f224f156
|
||||||
Version: 4.1
|
Version: 4.0
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: JDKs configuration files copier
|
Summary: JDKs configuration files copier
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: https://pagure.io/%{project}
|
URL: https://pagure.io/%{project}
|
||||||
Source0: %{URL}/blob/%{htag}/f/%{file}.in
|
Source0: %{URL}/blob/%{htag}/f/%{file}
|
||||||
Source1: %{URL}/blob/%{htag}/f/LICENSE
|
Source1: %{URL}/blob/%{htag}/f/LICENSE
|
||||||
Source2: %{URL}/blob/%{htag}/f/%{fixFile}
|
Source2: %{URL}/blob/%{htag}/f/%{fixFile}
|
||||||
|
|
||||||
# we need to duplicate most of the percents in that script so they survive rpm expansion (even in that sed they have to be duplicated)
|
# we need to duplicate msot of the percents in that script so they survive rpm expansion (even in that sed they have to be duplicated)
|
||||||
%global pretrans_install %(cat %{SOURCE0} | sed s/%%/%%%%/g | sed s/\\^%%%%/^%%/g | sed "s|##VERSION##|%{version}|")
|
%global pretrans_install %(cat %{SOURCE0} | sed s/%%/%%%%/g | sed s/\\^%%%%/^%%/g)
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Requires: lua
|
Requires: lua
|
||||||
Requires: lua-posix
|
#Requires: lua-posix
|
||||||
# rh1965305 - copy-jdk-configs script uses find and xargs but RPM does not depend on them
|
# rh1965305 - copy-jdk-configs script uses find and xargs but RPM does not depend on them
|
||||||
Requires: findutils
|
Requires: findutils
|
||||||
OrderWithRequires: findutils
|
OrderWithRequires: findutils
|
||||||
@ -35,6 +35,7 @@ archiving. With script to fix incorrectly created rpmnew files
|
|||||||
%prep
|
%prep
|
||||||
cp -a %{SOURCE1} .
|
cp -a %{SOURCE1} .
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
#blob
|
#blob
|
||||||
|
|
||||||
@ -60,7 +61,8 @@ end
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_libexecdir}
|
mkdir -p $RPM_BUILD_ROOT/%{_libexecdir}
|
||||||
sed -e "s|##VERSION##|%{version}|" %{SOURCE0} > $RPM_BUILD_ROOT/%{_libexecdir}/%{file}
|
cp -a %{SOURCE0} $RPM_BUILD_ROOT/%{_libexecdir}/%{file}
|
||||||
|
chmod 644 $RPM_BUILD_ROOT/%{_libexecdir}/%{file}
|
||||||
cp -a %{SOURCE2} $RPM_BUILD_ROOT/%{_libexecdir}/%{fixFile}
|
cp -a %{SOURCE2} $RPM_BUILD_ROOT/%{_libexecdir}/%{fixFile}
|
||||||
|
|
||||||
%posttrans
|
%posttrans
|
||||||
@ -74,44 +76,27 @@ rm "%{rpm_state_dir}/%{file}" 2> /dev/null || :
|
|||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Jan 09 2025 Andrew Hughes <gnu.andrew@redhat.com> - 4.1-1
|
* Tue Jun 08 2021 Jiri Vanek <jvanek@redhat.com> - 4.0-2
|
||||||
- Provide programmatic access to the copy-jdk-configs version
|
- commented out requires lua-posix, it was always commented out in el8, never in fedora. IDK
|
||||||
- Resolves: RHEL-73278
|
- Resolves: rhbz#1953923
|
||||||
|
|
||||||
* Thu Jan 09 2025 Andrew Hughes <gnu.andrew@redhat.com> - 4.0-4
|
* Tue Jun 08 2021 Jiri Vanek <jvanek@redhat.com> - 4.0-1
|
||||||
- Cleanup typos and help output
|
- rebased to 4.0
|
||||||
- Related: RHEL-73278
|
- Resolves: rhbz#1953923
|
||||||
|
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4.0-3
|
* Thu Jul 09 2020 Jiri Vanek <jvanek@redhat.com> - 3.7-3
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- added link to http://hydra.brq.redhat.com:8080/view/c~j~c/#projectstatus
|
||||||
Related: rhbz#1991688
|
- removed source check from test.yaml
|
||||||
|
- added gating.yaml
|
||||||
|
- Resolves: rhbz#1855374
|
||||||
|
|
||||||
* Tue Jun 08 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-1
|
* Thu Jul 09 2020 Jiri Vanek <jvanek@redhat.com> - 3.7-3
|
||||||
- added requires and orderWithRequires of findutils to provide find and xargs (rh1965305)
|
- added gatnig placeholder
|
||||||
|
- Resolves: rhbz#1855374
|
||||||
|
|
||||||
* Thu Apr 29 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-0
|
* Thu Jul 09 2020 Jiri Vanek <jvanek@redhat.com> - 3.7-2
|
||||||
- bumped to 4.0 to resolve remvoed rpm 4.17 removing arg from global table
|
- added nss.fips.cfg to cared files
|
||||||
|
- Resolves: rhbz#1855374
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 30 2020 Andrew Hughes <gnu.andrew@redhat.com> - 3.7-6
|
|
||||||
- Rebuilt for lua 5.4.0.
|
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed May 02 2018 Jiri Vanek <jvanek@redhat.com> - 3.7-1
|
* Wed May 02 2018 Jiri Vanek <jvanek@redhat.com> - 3.7-1
|
||||||
- udpated to latst relase
|
- udpated to latst relase
|
||||||
@ -126,6 +111,7 @@ rm "%{rpm_state_dir}/%{file}" 2> /dev/null || :
|
|||||||
|
|
||||||
* Mon Apr 30 2018 Jiri Vanek <jvanek@redhat.com> - 3.3-10
|
* Mon Apr 30 2018 Jiri Vanek <jvanek@redhat.com> - 3.3-10
|
||||||
- added javaws.policy and blacklist
|
- added javaws.policy and blacklist
|
||||||
|
- fixed rhbz#1541838
|
||||||
|
|
||||||
* Tue Apr 03 2018 Jiri Vanek <jvanek@redhat.com> - 3.3-5
|
* Tue Apr 03 2018 Jiri Vanek <jvanek@redhat.com> - 3.3-5
|
||||||
- fixed rhbz#1541838
|
- fixed rhbz#1541838
|
@ -1,7 +0,0 @@
|
|||||||
# recipients: java-qa
|
|
||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-9
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
|
Loading…
Reference in New Issue
Block a user