2017-12-11 23:41:07 +00:00
|
|
|
import re, sys, os, collections
|
|
|
|
|
|
|
|
buildroot = sys.argv[1]
|
|
|
|
known_files = sys.stdin.read().splitlines()
|
|
|
|
known_files = {line.split()[-1]:line for line in known_files}
|
|
|
|
|
|
|
|
def files(root):
|
|
|
|
os.chdir(root)
|
|
|
|
todo = collections.deque(['.'])
|
|
|
|
while todo:
|
|
|
|
n = todo.pop()
|
|
|
|
files = os.scandir(n)
|
|
|
|
for file in files:
|
|
|
|
yield file
|
|
|
|
if file.is_dir() and not file.is_symlink():
|
|
|
|
todo.append(file)
|
|
|
|
|
|
|
|
o_libs = open('.file-list-libs', 'w')
|
|
|
|
o_udev = open('.file-list-udev', 'w')
|
2023-01-24 23:16:28 +00:00
|
|
|
o_ukify = open('.file-list-ukify', 'w')
|
2022-04-27 13:45:25 +00:00
|
|
|
o_boot = open('.file-list-boot', 'w')
|
2017-12-11 23:41:07 +00:00
|
|
|
o_pam = open('.file-list-pam', 'w')
|
2018-11-02 10:39:52 +00:00
|
|
|
o_rpm_macros = open('.file-list-rpm-macros', 'w')
|
2017-12-11 23:41:07 +00:00
|
|
|
o_devel = open('.file-list-devel', 'w')
|
|
|
|
o_container = open('.file-list-container', 'w')
|
2020-06-03 21:40:09 +00:00
|
|
|
o_networkd = open('.file-list-networkd', 'w')
|
2021-02-05 09:39:39 +00:00
|
|
|
o_oomd_defaults = open('.file-list-oomd-defaults', 'w')
|
2017-12-11 23:41:07 +00:00
|
|
|
o_remote = open('.file-list-remote', 'w')
|
2021-06-16 15:03:00 +00:00
|
|
|
o_resolve = open('.file-list-resolve', 'w')
|
2017-12-11 23:41:07 +00:00
|
|
|
o_tests = open('.file-list-tests', 'w')
|
2023-01-24 23:16:28 +00:00
|
|
|
o_standalone_repart = open('.file-list-standalone-repart', 'w')
|
2020-06-03 21:40:09 +00:00
|
|
|
o_standalone_tmpfiles = open('.file-list-standalone-tmpfiles', 'w')
|
|
|
|
o_standalone_sysusers = open('.file-list-standalone-sysusers', 'w')
|
2023-01-24 23:16:28 +00:00
|
|
|
o_standalone_shutdown = open('.file-list-standalone-shutdown', 'w')
|
2022-03-17 20:37:30 +00:00
|
|
|
o_main = open('.file-list-main', 'w')
|
2017-12-11 23:41:07 +00:00
|
|
|
for file in files(buildroot):
|
|
|
|
n = file.path[1:]
|
|
|
|
if re.match(r'''/usr/(share|include)$|
|
|
|
|
/usr/share/man(/man.|)$|
|
|
|
|
/usr/share/zsh(/site-functions|)$|
|
|
|
|
/usr/share/dbus-1$|
|
|
|
|
/usr/share/dbus-1/system.d$|
|
|
|
|
/usr/share/dbus-1/(system-|)services$|
|
|
|
|
/usr/share/polkit-1(/actions|/rules.d|)$|
|
|
|
|
/usr/share/pkgconfig$|
|
|
|
|
/usr/share/bash-completion(/completions|)$|
|
|
|
|
/usr(/lib|/lib64|/bin|/sbin|)$|
|
|
|
|
/usr/lib.*/(security|pkgconfig)$|
|
|
|
|
/usr/lib/rpm(/macros.d|)$|
|
|
|
|
/usr/lib/firewalld(/services|)$|
|
|
|
|
/usr/share/(locale|licenses|doc)| # no $
|
2017-12-12 06:49:18 +00:00
|
|
|
/etc(/pam\.d|/xdg|/X11|/X11/xinit|/X11.*\.d|)$|
|
2018-09-10 09:18:18 +00:00
|
|
|
/etc/(dnf|dnf/protected.d)$|
|
2017-12-11 23:41:07 +00:00
|
|
|
/usr/(src|lib/debug)| # no $
|
2020-04-01 17:42:04 +00:00
|
|
|
/run$|
|
2017-12-12 06:49:18 +00:00
|
|
|
/var(/cache|/log|/lib|/run|)$
|
2017-12-11 23:41:07 +00:00
|
|
|
''', n, re.X):
|
|
|
|
continue
|
2023-01-24 23:16:28 +00:00
|
|
|
|
|
|
|
if n.endswith('.standalone'):
|
|
|
|
if 'repart' in n:
|
|
|
|
o = o_standalone_repart
|
|
|
|
elif 'tmpfiles' in n:
|
|
|
|
o = o_standalone_tmpfiles
|
|
|
|
elif 'sysusers' in n:
|
|
|
|
o = o_standalone_sysusers
|
|
|
|
elif 'shutdown' in n:
|
|
|
|
o = o_standalone_shutdown
|
|
|
|
else:
|
|
|
|
assert False, 'Found .standalone not belonging to known packages'
|
|
|
|
|
|
|
|
elif '/security/pam_' in n or '/man8/pam_' in n:
|
2017-12-11 23:41:07 +00:00
|
|
|
o = o_pam
|
2020-02-07 15:34:30 +00:00
|
|
|
elif '/rpm/' in n:
|
2018-11-02 10:39:52 +00:00
|
|
|
o = o_rpm_macros
|
2017-12-11 23:41:07 +00:00
|
|
|
elif '/usr/lib/systemd/tests' in n:
|
|
|
|
o = o_tests
|
2023-01-24 23:16:28 +00:00
|
|
|
elif 'ukify' in n:
|
|
|
|
o = o_ukify
|
2022-03-29 20:07:50 +00:00
|
|
|
elif re.search(r'/libsystemd-(shared|core)-.*\.so$', n):
|
2022-03-17 20:37:30 +00:00
|
|
|
o = o_main
|
2022-03-18 12:35:22 +00:00
|
|
|
elif re.search(r'/libcryptsetup-token-systemd-.*\.so$', n):
|
2022-03-17 20:37:30 +00:00
|
|
|
o = o_udev
|
|
|
|
elif re.search(r'/lib.*\.pc|/man3/|/usr/include|\.so$', n):
|
2020-09-30 16:21:11 +00:00
|
|
|
o = o_devel
|
2017-12-11 23:41:07 +00:00
|
|
|
elif re.search(r'''journal-(remote|gateway|upload)|
|
|
|
|
systemd-remote\.conf|
|
2017-12-12 06:49:18 +00:00
|
|
|
/usr/share/systemd/gatewayd|
|
|
|
|
/var/log/journal/remote
|
2017-12-11 23:41:07 +00:00
|
|
|
''', n, re.X):
|
|
|
|
o = o_remote
|
2022-03-17 20:37:30 +00:00
|
|
|
|
2017-12-11 23:41:07 +00:00
|
|
|
elif re.search(r'''mymachines|
|
|
|
|
machinectl|
|
|
|
|
systemd-nspawn|
|
|
|
|
import-pubring.gpg|
|
|
|
|
systemd-(machined|import|pull)|
|
|
|
|
/machine.slice|
|
|
|
|
/machines.target|
|
|
|
|
var-lib-machines.mount|
|
|
|
|
org.freedesktop.(import|machine)1
|
|
|
|
''', n, re.X):
|
|
|
|
o = o_container
|
2022-03-17 20:37:30 +00:00
|
|
|
|
2020-11-30 11:46:17 +00:00
|
|
|
elif re.search(r'''/usr/lib/systemd/network/80-|
|
2020-09-30 16:21:11 +00:00
|
|
|
networkd|
|
|
|
|
networkctl|
|
2022-05-05 17:24:55 +00:00
|
|
|
org.freedesktop.network1|
|
2022-07-07 10:07:01 +00:00
|
|
|
sysusers\.d/systemd-network.conf|
|
2022-07-06 18:50:31 +00:00
|
|
|
tmpfiles\.d/systemd-network.conf|
|
|
|
|
systemd\.network|
|
|
|
|
systemd\.netdev
|
2020-09-30 16:21:11 +00:00
|
|
|
''', n, re.X):
|
|
|
|
o = o_networkd
|
2022-03-17 20:37:30 +00:00
|
|
|
|
2017-12-11 23:41:07 +00:00
|
|
|
elif '.so.' in n:
|
|
|
|
o = o_libs
|
2021-12-09 22:10:44 +00:00
|
|
|
|
2017-12-11 23:41:07 +00:00
|
|
|
elif re.search(r'''udev(?!\.pc)|
|
|
|
|
hwdb|
|
|
|
|
bootctl|
|
2021-12-12 12:01:40 +00:00
|
|
|
boot-update|
|
2020-02-28 12:41:05 +00:00
|
|
|
bless-boot|
|
|
|
|
boot-system-token|
|
2017-12-11 23:41:07 +00:00
|
|
|
kernel-install|
|
2023-09-15 08:57:19 +00:00
|
|
|
installkernel|
|
2017-12-11 23:41:07 +00:00
|
|
|
vconsole|
|
|
|
|
backlight|
|
|
|
|
rfkill|
|
|
|
|
random-seed|
|
|
|
|
modules-load|
|
2017-12-12 06:49:18 +00:00
|
|
|
timesync|
|
2021-12-09 22:10:44 +00:00
|
|
|
crypttab|
|
2021-11-30 20:00:44 +00:00
|
|
|
cryptenroll|
|
2017-12-11 23:41:07 +00:00
|
|
|
cryptsetup|
|
|
|
|
kmod|
|
|
|
|
quota|
|
2020-02-28 13:36:53 +00:00
|
|
|
pstore|
|
2017-12-11 23:41:07 +00:00
|
|
|
sleep|suspend|hibernate|
|
|
|
|
systemd-tmpfiles-setup-dev|
|
2023-02-02 17:09:03 +00:00
|
|
|
network/98-default-mac-none.link|
|
2017-12-11 23:41:07 +00:00
|
|
|
network/99-default.link|
|
2020-02-28 13:36:53 +00:00
|
|
|
growfs|makefs|makeswap|mkswap|
|
|
|
|
fsck|
|
|
|
|
repart|
|
2017-12-11 23:41:07 +00:00
|
|
|
gpt-auto|
|
2020-02-28 13:36:53 +00:00
|
|
|
volatile-root|
|
2021-12-09 22:10:44 +00:00
|
|
|
veritysetup|
|
|
|
|
integritysetup|
|
|
|
|
integritytab|
|
2020-02-28 13:36:53 +00:00
|
|
|
remount-fs|
|
2022-10-07 16:12:10 +00:00
|
|
|
/initrd|
|
|
|
|
systemd-pcrphase|
|
2022-10-09 13:20:23 +00:00
|
|
|
systemd-measure|
|
2017-12-11 23:41:07 +00:00
|
|
|
/boot$|
|
|
|
|
/kernel/|
|
|
|
|
/kernel$|
|
2021-12-09 22:10:44 +00:00
|
|
|
/modprobe.d|
|
|
|
|
binfmt|
|
|
|
|
sysctl|
|
|
|
|
coredump|
|
|
|
|
homed|home1|
|
|
|
|
portabled|portable1
|
|
|
|
''', n, re.X): # coredumpctl, homectl, portablectl are included in the main package because
|
|
|
|
# they can be used to interact with remote daemons. Also, the user could be
|
|
|
|
# confused if those user-facing binaries are not available.
|
2017-12-11 23:41:07 +00:00
|
|
|
o = o_udev
|
2021-12-09 22:10:44 +00:00
|
|
|
|
2023-03-01 13:09:03 +00:00
|
|
|
elif re.search(r'''/boot/efi|
|
2023-03-09 08:05:16 +00:00
|
|
|
/usr/lib/systemd/boot|
|
2023-03-01 13:09:03 +00:00
|
|
|
sd-boot|systemd-boot\.|loader.conf
|
|
|
|
''', n, re.X):
|
2022-04-27 13:45:25 +00:00
|
|
|
o = o_boot
|
|
|
|
|
2021-12-09 22:10:44 +00:00
|
|
|
elif re.search(r'''resolved|resolve1|
|
2021-06-16 15:03:00 +00:00
|
|
|
systemd-resolve|
|
|
|
|
resolvconf|
|
2021-12-09 22:10:44 +00:00
|
|
|
systemd\.(positive|negative)
|
|
|
|
''', n, re.X): # resolvectl and nss-resolve are in the main package.
|
2021-06-16 15:03:00 +00:00
|
|
|
o = o_resolve
|
2021-12-09 22:10:44 +00:00
|
|
|
|
2021-02-05 09:39:39 +00:00
|
|
|
elif re.search(r'10-oomd-.*defaults.conf|lib/systemd/oomd.conf.d', n, re.X):
|
|
|
|
o = o_oomd_defaults
|
2021-12-09 22:10:44 +00:00
|
|
|
|
2017-12-11 23:41:07 +00:00
|
|
|
else:
|
2022-03-17 20:37:30 +00:00
|
|
|
o = o_main
|
2017-12-11 23:41:07 +00:00
|
|
|
|
|
|
|
if n in known_files:
|
|
|
|
prefix = ' '.join(known_files[n].split()[:-1])
|
|
|
|
if prefix:
|
|
|
|
prefix += ' '
|
|
|
|
elif file.is_dir() and not file.is_symlink():
|
|
|
|
prefix = '%dir '
|
2021-03-31 08:03:27 +00:00
|
|
|
elif 'README' in n:
|
|
|
|
prefix = '%doc '
|
2017-12-11 23:41:07 +00:00
|
|
|
elif n.startswith('/etc'):
|
|
|
|
prefix = '%config(noreplace) '
|
|
|
|
else:
|
|
|
|
prefix = ''
|
|
|
|
|
|
|
|
suffix = '*' if '/man/' in n else ''
|
|
|
|
|
|
|
|
print(f'{prefix}{n}{suffix}', file=o)
|