copy-jdk-configs-3.7-3.oe1 >  A _W^^fC<n$>ڥoB6s?14 (TAqӸn|Sšl0Ém Ujcb45b03ddeb30428815b905e792eb797f75369f0d358be3d5d5579d14da399855af7994a7800eb1de0b579dbefe49925bad1067c8dI܉_W^^f*MVc~.#445hXhh(8Ixmo#q&ipGϕN\K0u?XԨz/CطAOWC7hBwcRS)Ѡ4R6(c筵 1IDh>pC/?/xd  5 -9\bl|    ` dt   (89:F"G<HLI\X`Yd\p]^bcdefltuvw0x@yPzXh.///(/,/2/tCcopy-jdk-configs3.73.oe1JDKs Configuration FileUtility script for transferring JDK configuration files when updating or archiving. Repair rpmnew file created by error by using scrip_fobs-worker-008AopenEuler:20.03:LTS:SP1 / standard_aarch64http://openeuler.orgBSDhttp://openeuler.orgUnspecifiedhttps://pagure.io/copy_jdk_configslinuxnoarch&ArӁA큤_f_f_f]Aa6affc066935f57bc54f3a9a1f0b6cfcbbe9e3914a05d847f6fa331bdb55a6398085523323d639dacc45ee2e8b8dfc225e0609786a8b78b71067d965b62298a8e386eaf71633bf096e6c17471f50e867dabdf14d38a157ca27a0425dc583eb9ferootrootrootrootrootrootrootrootcopy-jdk-configs-3.7-3.oe1.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]߶gulining - 3.7-3- Pakcage initobs-worker-008 16085627903.7-3.oe1copy_jdk_configs.luacopy_jdk_configs_fixFiles.shcopy-jdk-configsLICENSE/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 -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/openEuler/openEuler-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protectionobs://private/openEuler:20.03:LTS:SP1/standard_aarch64/cd6b7b383ed792c3cc560a7f74ed1c65-copy-jdk-configscpioxz2noarch-openEuler-linux-gnuLua script, ASCII text executableBourne-Again shell script, ASCII text executabledirectoryASCII textRR jz@Vifunction 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 -- lua -- copy_jdk_configs.lua --currentjvm "%{uniquesuffix %{nil}}" --jvmdir "%{_jvmdir %{nil}}" --origname "%{name}" --origjavaver "%{javaver}" --arch "%{_arch}" --debug true --test call --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" --debug true --jvmDestdir /home/jvanek/Desktop 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", "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 debug = false; 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") 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 local function debugOneLinePrint(string) if (debug) then print(string) end; end --trasnform substitute names to lua patterns local name = string.gsub(string.gsub(origname, "%-", "%%-"), "%.", "%%.") local javaver = string.gsub(origjavaver, "%.", "%%.") local jvms = { } 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 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 "..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]]) 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-88520d587c5a25683399be2425d240b17953ae26c26f7fd0351f4bc67e9b4dafb?7zXZ !#,Dg] b2u y-iSqisdg{ "Jk6gMF$<|;Xxaw<0bF}l+Ak=P8 ߳5 + .m$5)@D_ h oF묉:%~a#[jefwzL =p `^ & }E(r&nkDhӿɓ-w;x9Q泒 +cx4 :> N򂖁PP i7ȸ8E1cogyZYk 8+̄b+QRQ"$u#|_h?vZ҅(Xm7P&71l.Ő|[st.n^Fg,c{~\ֶICͣ)wmv5Ա`[H1H2 )0>kGj\9S V@vaFIdC QÍNDLr Dw䢥ۧG*9*5ROzH*71AuHT5S:߳^jk׈oh<~^Kø@,+ vڍ&3g^ l !7B&.Ce]2\ԳO&9wGc@7ߙ#P)n߻.@ZC* `=&T*jSL+y= 9| zX2>pz5DB#C÷Iɘ69YUpp4u+oV@ڇ/ZNK&͖ W\Uy Ɓ>?K6'^o+^|#w17~4.okf8ma]n A@ ?˦jw$^ 3e=mVjb|wGWc^P@HXzyhMql7 U 4S>f`Ak؍IНmR!n~m% |# X($IFrRCzLPl5˨o<Z/c_Bўj{9afcT 2SbHL!O"OL١"'_Gю_*:Pͧ0ݐz!IJaa3jCeܺ&5FS%6Rd;~[vij.ܢ8/x~o~P;ouv ɷKnJ\aZ{ Ln:o4A[*%10,$%x7Ҟ,=/~! GzTmY <΅TҒ}Jv`YG#_…H$(pܽv$NhH9WLg#j\٫ޯ2A~^M6cRtjFæ Q#|S,9BR $x ?.E{xXKݷg=#M)p`w)_lݛ`hZ2y*'oLE:[b]uuFi6OuU'38a LZU085XZV`\ddUPAM`ٚ(PB#z:\j3Nx+ZM8V&m#J )W$oþ ʑ WQ 2iv}.T"~u";OR ,VHp1EoĎd;cV ؄է|hEnia< L.P|QC>tsr!/DmPS3&{eD(.@cG]Ժ^4dU|\ rF<%BY% z b["-}YM\"SjΕhO0MPlԎAnCZv(S&}Ob>A9Ki_Wbc7~}i P?Y̡J rX8 ًQ1p(e{ìWcCd`!ϿG>}?s;it{%ۑu!62'm_ z,k)mmr|0z 6'b *uya`!|^HH4jR<]ܠ"=j*0t){}oyb|)7y`͗pt8≷j):DHЊ+8[S s^=?ũʍF$g9Ī?XQds΀177co|O!anF}kU8N= HY& ^ʅht_Z#wbLF {TdHn}zXOF +j~JV@͗(J , YxSa^Ff,$w rRJ+ 2ڤ?8b?PAݮ\}X_BQvj-wBƊi ;;"V$bMp.ܙЋ1gƤ$3Uʯy׾ N͈yyѬIYE]Mguo(xW; i!߷$f8X'^kst)IH4.ˤq$ZU9{])7^0 Apej[O8+s=hf%-ֳ}vG;Y @An$T c/1aI9 ԗ&ԧ }]yMb`'J8KᕆH;כUVs1e޻ϑoЪ!.,*GtOndf ڙzq]'9 -T1{MP4IpK{9[.;a.ckw iwJ-6Z_G_CKW7=d,B/`JD]Aain%Xf.}Ƣh1 PO\AԻSV~ \ Q *` EG 2 M=G6V(u-vDRaڧFva FU#Sغ=nJ]p )Qzd{cDW-@^ "&. KE(._cF[vxSYW`xV]+wH,$K})o -ӡ6мIH ~$MijȊfMZx݉r!( ^rvJ%r 1Z@$d'QTb D rũR^h:J6B*™ä>7}dJ:i6}9Em yL1gJV*q#A~EnsghZ}Ϣ6l-r6$hguňfuDR!\.{bAE-ו`9_; n}aZ"Yɫҟ@`j#&d-QEC7G3{J:{ Z&fzx)nDYZʔVyL-5 YuOlzB!)0 |Mu-w6o;26Xib,.5\` _!^2lk'}!ֻ 7L/ӥcw\\7S-if ig{ R.5"r4Zˀ!rz8iShLHHܨ`hzi/l<}&:m{fAf)Uu7Z++uF 9۫ رkc4]$3 :_p,%~_xLחXSMvu`]- "ƓuQRkNGIv~/Ӧ1 l -UՒ׆`>-@ ~#ŭlVTn$i34g4"0asn}1" ~AQጵrG{Lg,Ǧ=UUaJcK"@CSh9طW]4$4YmG:)j!% %]TjUog>-H+dmA| =XWƢ@ J68&ȳ:Em$˜ܜavy$в_Y(=Vx| @GϺ8_n|*>ZgHC"^؂ AI}.)N^n]cvδҿE!e01`Vz]Rr@TP ̻!+@WP&۟+1qw YZ