PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: macros.fedora-misc Size: 2.76 KB
//lib/rpm/macros.d/macros.fedora-misc

# Some miscellaneous Fedora-related macros

# List files matching inclusion globs, excluding files matching exclusion blogs
# Optional parameters:
#  – -i "<globs>" inclusion globs
#  – -x "<globs>" exclusion globs
# Globs are space-separated lists of shell globs. Such lists require %{quote:}
# use for safe rpm argument passing.
# Alternatively, set the following rpm variables before calling the macro:
#  – “listfiles_include” inclusion globs
#  — “listfiles_exclude” exclusion globs
# Arguments passed to the macro without flags will be interpreted as inclusion
# globs.
%listfiles(i:x:) %{expand:
%if %{lua: print(string.len(rpm.expand("%{?-i*}%{?listfiles_include}%*")))}
  listfiles_include=$(realpath -e --relative-base=. %{?-i*} %{?listfiles_include} %* | sort -u)
  %if  %{lua: print(string.len(rpm.expand("%{?-x*}%{?listfiles_exclude}")))}
    while IFS= read -r finc ; do
      realpath -qe --relative-base=. %{?-x*} %{?listfiles_exclude} \\
        | sort -u | grep -q "${finc}" || echo "${finc}"
    done <<< "${listfiles_include}"
  %else
    echo "${listfiles_include}"
  %endif
%endif
}

# https://github.com/rpm-software-management/rpm/issues/581
# Write the contents of a list of rpm variables to a macro file.
# The target file must contain the corresponding anchors.
# For example %writevars -f myfile foo bar will replace:
#  @@FOO@@ with the rpm evaluation of %{foo} and
#  @@BAR@@ with the rpm evaluation of %{bar}
# in myfile
%writevars(f:) %{lua:
local    fedora = require "fedora.common"
local macrofile = rpm.expand("%{-f*}")
local   rpmvars = {}
for i = 1, rpm.expand("%#") do
  table.insert(rpmvars, rpm.expand("%" .. i))
end
fedora.writevars(macrofile,rpmvars)
}

# gpgverify verifies signed sources. There is documentation in the script.
%gpgverify(k:s:d:) %{lua:
local script = rpm.expand("%{_rpmconfigdir}/redhat/gpgverify ")
local keyring = rpm.expand("%{-k*}")
local signature = rpm.expand("%{-s*}")
local data = rpm.expand("%{-d*}")
print(script)
if keyring ~= "" then
  print(rpm.expand("--keyring='%{SOURCE" .. keyring ..  "}' "))
end
if signature ~= "" then
  print(rpm.expand("--signature='%{SOURCE" .. signature ..  "}' "))
end
if data ~= "" then
  print(rpm.expand("--data='%{SOURCE" .. data ..  "}' "))
end
}

# gpgverify verifies signed sources. There is documentation in the script.
%gpgverify(k:s:d:) %{lua:
local script = rpm.expand("%{_rpmconfigdir}/redhat/gpgverify ")
local keyring = rpm.expand("%{-k*}")
local signature = rpm.expand("%{-s*}")
local data = rpm.expand("%{-d*}")
print(script)
if keyring ~= "" then
  print(rpm.expand("--keyring='%{SOURCE" .. keyring ..  "}' "))
end
if signature ~= "" then
  print(rpm.expand("--signature='%{SOURCE" .. signature ..  "}' "))
end
if data ~= "" then
  print(rpm.expand("--data='%{SOURCE" .. data ..  "}' "))
end
}

Directory Contents

Dirs: 0 × Files: 30

Name Size Perms Modified Actions
1.76 KB lrw-r--r-- 2023-04-06 08:55:45
Edit Download
3.01 KB lrw-r--r-- 2021-04-08 10:38:23
Edit Download
75 B lrw-r--r-- 2020-07-30 12:13:34
Edit Download
2.76 KB lrw-r--r-- 2023-04-06 08:55:45
Edit Download
239 B lrw-r--r-- 2023-04-06 08:55:45
Edit Download
12.43 KB lrw-r--r-- 2023-04-06 08:55:45
Edit Download
414 B lrw-r--r-- 2018-08-12 10:37:49
Edit Download
7.17 KB lrw-r--r-- 2021-04-08 14:45:20
Edit Download
390 B lrw-r--r-- 2022-04-18 17:09:26
Edit Download
116 B lrw-r--r-- 2023-04-06 08:55:45
Edit Download
73 B lrw-r--r-- 2023-04-06 08:55:45
Edit Download
307 B lrw-r--r-- 2023-04-06 08:55:45
Edit Download
181 B lrw-r--r-- 2023-04-06 08:55:45
Edit Download
324 B lrw-r--r-- 2023-04-06 08:55:45
Edit Download
737 B lrw-r--r-- 2019-10-14 08:31:03
Edit Download
104 B lrw-r--r-- 2019-10-16 20:47:30
Edit Download
5.06 KB lrw-r--r-- 2025-07-28 08:01:58
Edit Download
794 B lrw-r--r-- 2019-10-13 14:18:38
Edit Download
886 B lrw-r--r-- 2023-05-16 12:55:39
Edit Download
3.36 KB lrw-r--r-- 2023-05-16 12:55:39
Edit Download
5.95 KB lrw-r--r-- 2023-05-16 12:55:39
Edit Download
3.63 KB lrw-r--r-- 2023-05-16 12:55:39
Edit Download
61 B lrw-r--r-- 2018-01-08 19:15:07
Edit Download
13.53 KB lrw-r--r-- 2023-04-01 16:10:31
Edit Download
6.61 KB lrw-r--r-- 2024-12-17 04:10:18
Edit Download
4.03 KB lrw-r--r-- 2026-01-26 09:29:53
Edit Download
206 B lrw-r--r-- 2023-10-14 13:06:48
Edit Download
127 B lrw-r--r-- 2023-04-06 08:55:45
Edit Download
40 B lrw-r--r-- 2025-10-12 00:16:44
Edit Download
228 B lrw-r--r-- 2023-04-06 08:55:45
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI