copy-jdk-configs-4.1-6.fc41 >t 6 6_ ԉ3!Flض zE>b$bjfF b$bjы%Sn|,(DW1#-xG4h8wBD."AҒgsS{VfcCadYMB[i2H yV&~ P{,ʣP+3t}IyiN86f6b5882cfb3971ad876594dd75560f7c09fc0d57bfe12f97338411493140707c52bf295db19faf94760e7615790798cfe0a2c6f030204876d74350047304502207e7e27ab4899d8d707629956f1d2cabf510eaaacbd5b812f9d5a573f439aab2b022100f0b687139de18d780351ea33dd58b1eaabd395528f8eeeea5cfb0e1237f8374f030204876d74350046304402205ae2ba28b424a4e5b65af340ef591200f7be502a389678c8420fc6a3c79649080220751f690d721566cbd8f64ba0a95f6ee5caf87c41853a1d3de8c48f2372ba5396030204876d74350048304602210095cbeecffb7bad86a900e5a02f776523d1c8e58ee0307c10b7ccca0f1fcf75050221008698dbdb200c6a7822112810aa675fccffd10491f0196a543ca3b24264dba439Q]Y~9םzl\rH8S>`EA?Ad  ># 2>agp    d hx   (89$:G<HLI\X`Yd\p]^b d e f l t (u 8v Hw x y  @ @@@@@@@@AADAHCcopy-jdk-configs4.16.fc41JDKs configuration files copierUtility script to transfer JDKs configuration files between updates or for archiving. With script to fix incorrectly created rpmnew filesf#buildvm-x86-30.iad2.fedoraproject.orgQFedora ProjectFedora ProjectBSD-4.3TAHOEFedora ProjectUnspecifiedhttps://pagure.io/copy_jdk_configslinuxnoarch1ӁA큤f f f f 8a81cc8d2d07d525c97b56f4bf5d1457ce716b3c1de1e103e6acb4c9a1ffd5a448cc059a99fd4617b9b24a64413c734705fa31f87c018f848ea65bb633818fb4386eaf71633bf096e6c17471f50e867dabdf14d38a157ca27a0425dc583eb9ferootrootrootrootrootrootrootrootcopy-jdk-configs-4.1-6.fc41.src.rpmcopy-jdk-configs @@     /bin/sh/usr/bin/bash/usr/bin/luafindutilslualua-posixrpmlib(BuiltinLuaScripts)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsZstd)4.2.2-13.0.4-14.6.0-14.0-15.4.18-14.19.92f@eed@d@c0c5c47@b@Fedora Release Engineering - 4.1-6Fedora Release Engineering - 4.1-5Fedora Release Engineering - 4.1-4Fedora Release Engineering - 4.1-3Fedora Release Engineering - 4.1-2Fedora Release Engineering - 4.1-1Fedora Release Engineering - 4.1-0Fedora Release Engineering - 4.0-4- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild- update to attempt to solve bug which could delete empty dirs in /etc- update to attempt to solve bug which could delete empty dirs in /etc- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild4.1-6.fc41copy_jdk_configs.luacopy_jdk_configs_fixFiles.shcopy-jdk-configsLICENSE/usr/libexec//usr/share/licenses//usr/share/licenses/copy-jdk-configs/-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointercpiozstd19noarch-redhat-linux-gnuLua script, ASCII text executableBourne-Again shell script, ASCII text executabledirectoryASCII textRRfunction createPretransScript() -- the sript must be available during pretrans, so multiply it to tmp os.execute("mkdir -p /var/lib/rpm-state") temp_path="/var/lib/rpm-state/copy_jdk_configs.lua" -- print("generating " .. temp_path) file = io.open(temp_path, "w") file:write([[#!/usr/bin/lua -- rpm call -- debug=true lua -- copy_jdk_configs.lua --currentjvm "%{uniquesuffix %{nil}}" --jvmdir "%{_jvmdir %{nil}}" --origname "%{name}" --origjavaver "%{javaver}" --arch "%{_arch}" --test call -- debug=true lua -- copy_jdk_configs.lua --currentjvm "java-1.8.0-openjdk-1.8.0.65-3.b17.fc22.x86_64" --jvmdir "/usr/lib/jvm" --origname "java-1.8.0-openjdk" --origjavaver "1.8.0" --arch "x86_64" --jvmDestdir /home/jvanek/Desktop local M = {} if (os.getenv("debug") == "true") then debug = true; else debug = false; end local function debugOneLinePrint(string) if (debug) then print(string) end ; end function getPath(str, sep) sep = sep or '/' return str:match("(.*" .. sep .. ")") end function splitToTable(source, pattern) local i1 = string.gmatch(source, pattern) local l1 = {} for i in i1 do table.insert(l1, i) end return l1 end local function slurp(path) local f = io.open(path) local s = f:read("*a") f:close() return s end function trim(s) return (s:gsub("^%s*(.-)%s*$", "%1")) end local function dirWithParents(path) local s = "" local dirs = splitToTable(path, "[^/]+") for i, d in pairs(dirs) do if (i == #dirs) then break end s = s .. "/" .. d local stat2 = posix.stat(s, "type"); if (stat2 == nil) then debugOneLinePrint(s .. " does not exists, creating") if (not dry) then posix.mkdir(s) end else debugOneLinePrint(s .. " exists,not creating") end end end -- main function, -- formelry main body -- move to function resolved -- https://bugzilla.redhat.com/show_bug.cgi?id=1892224 -- for readability not indented, todo, indent once tuned function M.mainProgram(arg) debugOneLinePrint("cjc: lua debug on") local caredFiles = { "jre/lib/calendars.properties", "jre/lib/content-types.properties", "jre/lib/flavormap.properties", "jre/lib/logging.properties", "jre/lib/net.properties", "jre/lib/psfontj2d.properties", "jre/lib/sound.properties", "jre/lib/deployment.properties", "jre/lib/deployment.config", "jre/lib/security/US_export_policy.jar", "jre/lib/security/unlimited/US_export_policy.jar", "jre/lib/security/limited/US_export_policy.jar", "jre/lib/security/policy/unlimited/US_export_policy.jar", "jre/lib/security/policy/limited/US_export_policy.jar", "jre/lib/security/java.policy", "jre/lib/security/java.security", "jre/lib/security/local_policy.jar", "jre/lib/security/unlimited/local_policy.jar", "jre/lib/security/limited/local_policy.jar", "jre/lib/security/policy/unlimited/local_policy.jar", "jre/lib/security/policy/limited/local_policy.jar", "jre/lib/security/nss.cfg", "jre/lib/security/cacerts", "jre/lib/security/blacklisted.certs", "jre/lib/security/jssecacerts", "jre/lib/security/trusted.certs", "jre/lib/security/trusted.jssecerts", "jre/lib/security/trusted.clientcerts", "jre/lib/ext", "jre/lib/security/blacklist", "jre/lib/security/javaws.policy", "jre/lib/security/nss.fips.cfg", "lib/security", "conf", "lib/ext" } -- before import to allow run from spec if (arg[1] == "--list") then for i, file in pairs(caredFiles) do print(file) end return 0; end -- yum install lua-posix local posix = require "posix" -- the one we are installing local currentjvm = nil local jvmdir = nil local jvmDestdir = nil local origname = nil local origjavaver = nil local arch = nil local temp = nil; local dry = false; for i = 1, #arg, 2 do if (arg[i] == "--help" or arg[i] == "-h") then print("all but jvmDestdir and debug are mandatory") print(" --currentjvm") print(" NVRA of currently installed java") print(" --jvmdir") print(" Directory where to find this kind of virtual machine. Generally /usr/lib/jvm") print(" --origname") print(" convinient switch to determine jdk. Generally java-1.X.0-vendor") print(" --origjavaver") print(" convinient switch to determine jdk's version. Generally 1.X.0") print(" --arch") print(" convinient switch to determine jdk's arch") print(" --jvmDestdir") print(" Migration/testing switch. Target Mostly same as jvmdir, but you may wont to copy ouside it.") print(" --debug or $debug") print(" Enables printing out whats going on. true/false. False by default") print(" --temp") print(" optional file to save intermediate result - directory configs were copied from") print(" --dry") print(" true/fase if true, then no changes will be written to disk except one tmp file. False by default") print(" **** specil parasm ****") print(" --list") print(" if present on cmdline, list all cared files and exists") os.exit(0) end if (arg[i] == "--currentjvm") then currentjvm = arg[i + 1] end if (arg[i] == "--jvmdir") then jvmdir = arg[i + 1] end if (arg[i] == "--origname") then origname = arg[i + 1] end if (arg[i] == "--origjavaver") then origjavaver = arg[i + 1] end if (arg[i] == "--arch") then arch = arg[i + 1] end if (arg[i] == "--jvmDestdir") then jvmDestdir = arg[i + 1] end if (arg[i] == "--debug") then --no string, boolean, workaround if (arg[i + 1] == "true") then debug = true end end if (arg[i] == "--dry") then --no string, boolean, workaround if (arg[i + 1] == "true") then dry = true end end if (arg[i] == "--temp") then temp = arg[i + 1] end end if (jvmDestdir == nil) then jvmDestdir = jvmdir end if (debug) then print("--currentjvm:"); print(currentjvm); print("--jvmdir:"); print(jvmdir); print("--jvmDestdir:"); print(jvmDestdir); print("--origname:"); print(origname); print("--origjavaver:"); print(origjavaver); print("--arch:"); print(arch); print("--debug:"); print(debug); end --trasnform substitute names to lua patterns local name = string.gsub(string.gsub(origname, "%-", "%%-"), "%.", "%%.") local javaver = string.gsub(origjavaver, "%.", "%%.") local jvms = { } debugOneLinePrint("started") foundJvms = posix.dir(jvmdir); if (foundJvms == nil) then debugOneLinePrint("no, or nothing in " .. jvmdir .. " exit") return end debugOneLinePrint("found " .. #foundJvms .. " jvms") for i, p in pairs(foundJvms) do -- regex similar to %{_jvmdir}/%{name}-%{javaver}*%{_arch} bash command if (string.find(p, name .. "%-" .. javaver .. ".*" .. arch) ~= nil) then debugOneLinePrint("matched: " .. p) if (currentjvm == p) then debugOneLinePrint("this jdk is already installed. exiting lua script") return end ; if (string.match(p, ".*-debug$")) then print(p .. " matched but seems to be debug variant. Skipping") else table.insert(jvms, p) end else debugOneLinePrint("NOT matched: " .. p) end end if (#jvms <= 0) then debugOneLinePrint("no matching jdk in " .. jvmdir .. " exit") return end ; 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 table.sort(jvms, function(a, b) -- version-sort -- split on non word: . - local l1 = splitToTable(a, "[^%.-]+") local l2 = splitToTable(b, "[^%.-]+") for x = 1, math.min(#l1, #l2) do local l1x = tonumber(l1[x]) local l2x = tonumber(l2[x]) if (l1x ~= nil and l2x ~= nil) then --if hunks are numbers, go with them if (l1x < l2x) then return true; end if (l1x > l2x) then return false; end else if (l1[x] < l2[x]) then return true; end if (l1[x] > l2[x]) then return false; end end -- if hunks are equals then move to another pair of hunks end return a < b end) if (debug) then print("sorted lsit of jvms") for i, file in pairs(jvms) do print(file) end end latestjvm = jvms[#jvms] if (temp ~= nil) then src = jvmdir .. "/" .. latestjvm debugOneLinePrint("temp declared as " .. temp .. " saving used dir of " .. src) file = io.open(temp, "w") file:write(src) file:close() end local readlinkOutput = os.tmpname() for i, file in pairs(caredFiles) do local SOURCE = jvmdir .. "/" .. latestjvm .. "/" .. file local DEST = jvmDestdir .. "/" .. currentjvm .. "/" .. file debugOneLinePrint("going to copy " .. SOURCE) debugOneLinePrint("to " .. DEST) local stat1 = posix.stat(SOURCE, "type"); if (stat1 ~= nil) then debugOneLinePrint(SOURCE .. " exists") dirWithParents(DEST) -- Copy with -a to keep everything intact local exe = "cp" .. " -ar " .. SOURCE .. " " .. DEST local linkExe = "readlink" .. " -f " .. SOURCE .. " > " .. readlinkOutput debugOneLinePrint("executing " .. linkExe) os.remove(readlinkOutput) os.execute(linkExe) local link = trim(slurp(readlinkOutput)) debugOneLinePrint(" ...link is " .. link) if (not ((link) == (SOURCE))) then debugOneLinePrint("WARNING link " .. link .. " where file " .. SOURCE .. " expected!") debugOneLinePrint("Will try to copy link target rather then link itself!") --replacing any NVRA by future NVRA (still execting to have NVRA for any multiple-installable targets -- 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) debugOneLinePrint("attempting to copy " .. link .. " to " .. linkDest) if (link == linkDest) then debugOneLinePrint("Those are identical files! Nothing to do!") else local exe2 = "cp" .. " -ar " .. link .. " " .. linkDest dirWithParents(linkDest) debugOneLinePrint("executing " .. exe2) if (not dry) then os.execute(exe2) end end else debugOneLinePrint("executing " .. exe) if (not dry) then os.execute(exe) end end else debugOneLinePrint(SOURCE .. " does not exists") end end end --unindented main function 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 else M.mainProgram(arg) end return M]]) file:close() end -- in netinst, the above call may fail. pcall should save instalation (as there is nothing to copy anyway) -- https://bugzilla.redhat.com/show_bug.cgi?id=1295701 -- todo, decide whether to check for {rpm_state_dir} and skip on not-existing, or keep creating if pcall(createPretransScript) then -- ok else -- print("Error running copy-jdk-configs pretrans.") end# remove file created in pretrans # echo "removing /var/lib/rpm-state/copy_jdk_configs.lua" || : rm "/var/lib/rpm-state/copy_jdk_configs.lua" 2> /dev/null || :/bin/shhttps://bugz.fedoraproject.org/copy-jdk-configsfindutilsutf-8300bee4d79892a5a40b5308d007753602f1a88e28b2385f230b48f08a7fb2567f6ddc90dbbc059f66868b7a12393b130a14cbeaabd9d012ed3b768512c4ccea8?(/h:.=km6Rn˚cwz(=txG*'Ĉ #iT7p'6=->0.P!S9v7&5Zj/Ps%yes((W0زo䉽/C}B[n!٧:LQV֭*ݫoy?/Gz*]kcv3m55Wz:2Ry;Wrp*kh(|P\ևZ7eLZ2a~7[ O2*zJl4TZ 5}+VTVbyP?m9Ṝ N/z~I 9%g#nW? ֿdg_ѕP.s۟J;!r$ODLqE(4Tpx'ۗ\I탏̇FE\>\Xjv)0?tl;pڨ("iZo *}ckaD@B4BX1a#hMAta4ЀxL$d<2QcBG+"CCȰ5!0|a3&S9>4X Ñ ad *-W7au!}͹`T #FaGF-.mdsjD8 T\݈|`62T[D H`3 `Q 9#Lba8" ]ӛldc0mPCR G>z}PMUm?έR^"""Hd8$lht4و8AY@Eڭٵ9׏Bj20Y*UTYTA/mO}'SZjQ,GCEZ![Ą^rڭh8طu}cOKz9ÄQxR(c~x>>,$$ #qj2d`TR[TXiI0$CIuLՌH$@"4MYsRjP(0!b !8""##ҤQPr#T%tLV5|(r"7WrAVP"*hI{Fz45}@"Kd=攍guG8X.m:xa*BA68ʆ|xۘUuo#B\z^5} D?hZ7.] [;3dbCG_/"H,3R`_[r T(nzX܈DZ+0 g[5Igߖ}B=`\8xk af*Rr_z3ξx2k]] ̆-ml4" &yS5)~Zqs/GQ cFlMRJ2v#Qn4$ 4i:dgeP3%~ c*YrJ.OT<\հۏޕ9hrV'z[lwC:tFAj ̎m?T *iV3^#F\RtAbhX\UjDS} sFieӑf D^ 2?FL2PXJ],d0]LA:n`J9X2C+^?E"fE/&idϧ”xA$J̍fZQ C!p/5eȵG}ö@S-i$KQ@X.Hӌ%1j/Mdۙ5뵥= l1,Pm}e5[~ߕտȔWxrhM;qL$\*E IeZMS9LH,Ot]ʆȾnm-8E?OZ~4߿MG!Vd&_{y9{]#F_skAw3F|`v v%,f3%5(w-Iť⪺* >н7.S  csL YzJQfg@G&p3+a*[p  Jq¿sABk9(d-XykBǠ E,yW.qeT96eG6Zb"m0vUK\:¶K/ս9D3 {n!USW~F~114qTryV}[|iɱR(,˴J;хY9X$~wcL Th z-HӿS6擅VӸl0Reb]#qtjV IWGd'C8`OFA:l~+"MgRQq!8SQutX`ݰ̄1۠+v\gV,=wT`c|)ܷ=Rg:l D"aTWJ( oo3QL! <r8ƵH /DXapQ gXrA eI ų豒_I CxEKU'ߏr+4mv티|w߶Klܣ{=EDX}u(Ѝk: :P*(؞ BjӐGd ;%%1ӚI =Y #]udZ @qДuRpP,W,:Г^,rЗ?V_9EL>yFALL_^Z0ÂLאn t/qIr3_K@Ȳ`?0: xnWweV./Rg<1d6/|*XWt]qa00.x01O({'(}ND3?"ec!Ldi`qۖ&a8mK&{ v(DATFv _ 4$ΐyXr[C?{Y1~=yq,IizH:`8PɾR>J˩vIWQpnPcq'7h.n(.KP8 ;eHs^) @I$s x-OY gҼ[G|W@n(ow0\L@g