copy-jdk-configs-4.0-1.oe2309>  <@PT@7!.ܶujG7oe yopeneuler@compass-ci.com G7o -LB#:BF1Q:쒟aU V)4 I. [#%R2J"tLG9|-A+5fZ ݺ:3UY _I+boZ%SV!؈W{~[mahw21fa506010383e9a4a0848b7e74d67bc8de51eb9fefd994d9530873e1795ddd6a860d049d1da9eb7ecefc3812bfa1fcbfb98ee1aYS]QXR}zT>A<?<d  8 $*4L X d |  D\p  B (k8t9|:F(GHH`IxXY\]^ubdefltuv0wxyz;;;;;;<@ - 4.0-1gulining - 3.7-3- Upgrade 4.0 to fix Packaging scriptlets assume global 'arg' in Lua environment- Pakcage initdc-64g.compass-ci 16953164024.0-1.oe23090-metadata_list-compact_tlv-copy-jdk-configs-4.0-1.oe2309.noarch0-metadata_list-compact-copy-jdk-configs-4.0-1.oe2309.noarchcopy_jdk_configs.luacopy_jdk_configs_fixFiles.shcopy-jdk-configsLICENSE/etc/ima/digest_lists.tlv//etc/ima/digest_lists//usr/libexec//usr/share/licenses//usr/share/licenses/copy-jdk-configs/-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protectioncpioxz2noarch-openEuler-linux-gnuLua script, ASCII text executableBourne-Again shell script, ASCII text executabledirectoryASCII textRRF jC2Afunction createPretransScript() os.execute("mkdir -p /var/lib/rpm-state") temp_path="/var/lib/rpm-state/copy_jdk_configs.lua" 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 if pcall(createPretransScript) then -- ok else -- print("Error running copy-jdk-configs pretrans.") endrm "%{rpm_state_dir}/copy_jdk_configs.lua" 2> /dev/null || :/bin/shutf-89413e6ccb00dbdb1a183c1d2fa47bcd74d2d27158ace052d48ab592d18ab1124b0a4d7a6e5c8cfb541dbbf806b13bf0f69c91e2ee732ab6638cb11ec86d3b948?7zXZ !#,T] b2u Q{LWW4y zGK`BHcI9thA2tQ 'F%R3嫘[X{ x[<,$ŧdnDh&2 C9!j$6՚3MUu]<{ufD:wIz{O;WZ}e՘ +(^\i(H:3Ǿ{\|O*ܶT/tۘ2kp= 曕p_inBP<|nD<0o 7kTU=V[h~&L[P7 tԬe1ʙE$yA5 \oY֋A; V6Y~(*`} ҁb~UҽdxCeaNi1G{'~hIŽorpt4\nֻeg꾝h'V&cx"}`cq .he<$Vh_(Juy p Ȃv%Z|T Rzb$~F@T-)ۤ-ޤ1QŽn¢ $l8"Ǟ^rԭu̝6W$7rm{F.5dcoD~ֻ| X|z kȽ6AQ:w[=+Xmۇk\$.K$:D(eDϜ^oHC/漢 V@LȢJRTKb5ڙcNL!葀NX>K|8>wƘ@&!,EBC{Rي-W9M2%m$p]|<_Umu%Ynda;\앺Pe۲[}vvzY53P 78D04Y7.~6y Yy2 eNfBFaİ 7NH4p[_2W~S~եd_a }4jDP Koe(cWE*B`{vG"o~Zh{lIqz_Yg7e&uH'bȱ@ 2̜':>19bpm?թ"iT _+ݭ rАYbj])p(Ot#K`QbHG&'BMzNZMG󏬋T.:nos̡E>x|<8&ץ-^J8ir~ǩݜ{\%ze↸B̸SX6Ztf Iy'jr~Pe{-g\{Ph*-aF_#S_w4}ct@.ۋP& VcQ7=fq!l=Z?Tp뎭4 (Xfwk+?]^Ar,p)#r1x+ tOLՄ%>㡂;XB&0UT 0V':{1- R؏\S(scYUW{eJlLΐLc[LHo|%v{B̤)b&90U/C)7KȻ!=,CRo+j?݀Ծb0@US/tbw+ͳ%uηiX@ `şL6KhRb͐XIP] 5} ]$V `vֽUfrHxKmY7Wf$@er&ܑwd]i)xmOevցIaPЗ8GK2 *BB^lLpxM|p>Xp2\'{:Uj m$quJ?Wg6mPޅɩ n󰤁_й!tO+mpn5zBt ;$jwSr6 ɤ |GEbP|E Yԁ Iv7`RKBT2<ϙV_i*霏Շ\ &m""wL[ =aㅕ8E$<&-Pfc4"!^ɪ]VC0r6?3B˺T;-.D!l)#yW\DU;4G:^7km pHHSeӚ>v?pY@޳I/jnTߙOz#LySF1m [ sGe[Uf PAzfݞza{>쐱.F[3 L7DBtFܮ]+^(ĹH18叴0d ԓUx,n{ȺC#Chs6 UM Jh<~Kq on `F r.gtLAHW_.Ka؏ #pD54gσ͹"\-dr Qu@锒cm;Tʂ&;x+ZQbPj.oSRQ6DZMAI0Rw(DʣԊV\uzS>nUYB]{HAhH@J}Co39jџxaFRtI.5@V%/\||@ nv1<3 VQw̒JHيqs>I!wdSM]8STl&~'t7QϢm*g* ]&N,5 L)T ٖC=ov 0SyMM S6P.'s%! ~SLN@!( IȬB8sQ~X*˘!HW5 $OX xRicH&'i]/qӨSUv|S8tl] UWpGMѪ~zE{p>Җ. ^ IJGK)`Gn.i DiIh%T %Wէj;)j9+%XVY9ZePu/fp*N3chsZ/.|t3]4;~LhLH{IEsV&y H F[en EĆO]S%,vq'J-g[j6haɏV>yL-MgGni-,sai9/:h5lEYlhFHB}yP mq9i9lAp-$ }dPݒnBF3OVpjv*S|-$|"&w{x9x^qFxG!7lVRPbŏ 3T4[T?Stغ}ػCmtGi?'Z3kqj~MD/cR ,%B&Ӻe4?X [(g |t T A7f( ry@DxqeUrgIN2f+FP2.Nh#oPL8:<ߢd{p)K^<'V\Fؤp?J%W Ҩ: ot%y-+*z5nj$NfzԖǜ Y0`STt>V#Urq'/C!W. "k#K-R|rJDEw,'PPBnY вL}̽LYz #"^~6hӜaýHr$\Sz1wzgnoP an] 7I=V6}bRrN^Rnonr(t6aѲҤZY!nB@#'5!!zM^'ES]vs9(oㅉ.2+e>ѷW4_09g{ 5vG&6$o6T1ҝmv.DD"ٵf=_ʗ(upwնr@CV$M<!@go [ fQQ[RĂ׭Q$檿HzKlQ&5ښ%MߦPPn'ㅆR<"U"*`S 1!,IvVoC`)e4v/yFwdۃ8̀J= ! .i~FC"U:ΥU~"{9l^7őjr= {sOJ$Xޜ^RAgS[1'T,MEpBZ'7)4A]G%\R=O צϵAۿki.2f8ӹH1xG YZ