copy-jdk-configs-4.0-1> )lp 0761127195ed4b76e319e675f9b95597a2f84c7555b365a1c16e4e50bcea44303c2e844706db82b9a2a7449fe0c7bf7b5af7043eV80<`u̿pQ>?9?9xd  1   $ , <  (<\l  R ({89:F8GPH`IpXtYx\]^b$d2e7f:l<tXuhvxwxyz899 9(9,929tCcopy-jdk-configs4.01JDKs Configuration FileUtility script for transferring JDK configuration files when updating or archiving. Repair rpmnew file created by error by using scripblocalhostNBSDUnspecifiedhttps://pagure.io/copy_jdk_configslinuxnoarch1>A큤bbb]8a81cc8d2d07d525c97b56f4bf5d1457ce716b3c1de1e103e6acb4c9a1ffd5a463e5ebdd6bc16626b0b985f74d5de92c3dc06ab12f42ead06d353e15489064cff66dc905b7c6a8a5ec49ddb479ab7339c161e305c40e36ddd8445add16bf7355rootrootrootrootrootrootrootrootcopy-jdk-configs-4.0-1.src.rpmcopy-jdk-configs@ @     /bin/bash/bin/sh/usr/bin/lualualua-posixrpmlib(BuiltinLuaScripts)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)4.2.2-13.0.4-14.6.0-14.0-15.2-14.15.1^!@]߶xu_ping - 4.0-1gulining - 3.7-3- Upgrade 4.0 to fix Packaging scriptlets assume global 'arg' in Lua environment- Pakcage initlocalhost 16444868834.0-1copy_jdk_configs.luacopy_jdk_configs_fixFiles.shcopy-jdk-configsLICENSE/usr/libexec//usr/share/licenses//usr/share/licenses/copy-jdk-configs/-O2 -g -mieeecpioxz2noarch-openEuler-linux-gnuLua script, ASCII text executableBourne-Again shell script, ASCII text executabledirectoryASCII textRR }[#;Cfunction 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-8f6d02dde561af0a0dc472868fcfc945c74521ef20caaeb50020347ac2322cf9d?7zXZ !#,Q'] b2u y-iSqj̻A㼺!֢59+g\}\9솢,6J'a۵EF$B Ycm~EA>!0_h٫oW!}6m|VuFra5ײki%Ox;YZ[,/[A`h=d*ʦ?%wAґ H+)"ǩ( 7n0&ĔA cWݛU&tM)Vj.ӾzʏKṀ.߱^/{yooAWVȀZYT*ca%;T'qu=" 4kKoB;߅PGeCu m퀜~-\@t0VAd?=kj*GN 9`4 ]U5}J)^YG}j2&{rS|f* 4Ś/dc;YC}8H;->hL7^wD!S&.$:Jvo{NX-Z' @{+s-L#M ,LT3"g \HCk0e;Ω, P `?tKβռxQ~OlCnJ2bu,)01e[S;G yGU f5&DwYbF*Z{OH&rgF9+K$WxctЃ[eS@o&uMN]R3fw8,=vIUe~NfOp &$u+F7Q7&4c :7N19dD\l[pu\LZWE01IHysI&rq5!+l>,2)&6 ;{8RX}3m} .4 '\eCqi`B'6ŪSŎ>d) 1kоdaQg ( ojkqG5^@<[^IiT3dYS CC'" ޑ7AUF-f`;Z4~ yɒ ߘoT0,X&qZqK7@B^`zZ0xYӜȁQre|Z№̽ߣf=xn|8WwmЈ|,fj=j( SY?ྫ%)<{G(+(ND^"&/%513+ànÿ?Էi^)}Zx 4 @Y:&e5'R,Y-/.D͠{ qn hPEYU6ȽӺ|=&XyUd(uU;w@}5a=`eʐ&f8X ~LV5)K tK=0Y*8$Pܙ9LEC;!MbSIz.Rbx﷤ʦ{9|&2}G)]"IfoM帾RWS*]2J$Pq9\HB"˘_Yq<)y@i$Lz| {Y ']16Af-;pyS(fA)%Z!ag26S^_oT[ɓHٷ TI}{. ILx϶~1oI'yp'[Irg(\erj1L4@Se_epADڊ"_ԬӖAIɇYh#U?Ů k]9D^]rՋlf屘7Pwli ՋvL*~(J4?gz[`#oiy604R{RtZ$myEA>שEOFCqmBEqBnv͏|G}N.ypW] Y?wi$:<-aѝ--+Hep]u )x?bRnfS- 祡8/PkFgOAK,iKC1Jw9-Vs X \EK䨕r}y$ LI2q2Phh ѨSŪk!\!){t-IdSE-OOL>=[6hwk-;e"}S\(vd&Cu&^*^ 24 4^-xIJZ_|ػ>R#IpJD j8h|ha+"*{ f:Wp -IE&.s$NL<*!Idg/z2-Y~_oD\̜7xe|c̞jO*긂Jl5.6(dѰ?Wn'~V^u1OHއ6ŤO" F"!fPl&ѩ޿8 (LV-l^77[ q,nA6f5*6:G xcgju*@C(wV)E~ҚbhX[ͨh2w;> G$P]s@O 4EaJ:+/!iSDe| ]B(C vik5-]㵳tܔ Ԥ$.ɼx ja]-]lF"EY\W4λycP@[XnG7KV,lZ~ka&0m-!ddF7t9q١:H"Z$#2TTlԷ%* ">*b}{|Baj)Rj!Z{֮3X9@t_-r!QEֹ>{!;Ific)&B(JS  ~v[N!V7̵#X/qk m.:fM%[rIA,CKcE =nO`;:Q[-wD@k#J?vԃV4Qi’(bPIIF+Gl95 4gxHw~F˂k|SdҮٱOl//jrdL7={ԛ̨<5x$p!hQڪ~t%-X 2wm\ huF9#*g]sjmN9`>ؾӉ[H ӾZ;Yfp0xjr>,hAW[-^sIʏl_Ueĕ2hǥ ]5W ͗ƻ-5K mF*ӗS}v=A+!Δd]8=XCwi-?X%/9or,_D҃& sьD37OtyTlفFm T߻'6]sAԬt_/f~UZק}i{YK߿L]zC^sBHM W |-($;e*ԽAzM;!J6J^|6W3mhODn6V$ftvkS[G~"@[l%$"Nrd}gO_6#ٔmλ'7g=A2N֟tQUQ@bWx=# Vg$*CE29I{G|퐳ٓ${Nik $|E|E& I#MAW{ly훡e{Q-D+;:O_