blob: 15075f7260437c8883365f43a6a980a6864b254e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# SPDX-License-Identifier: LGPL-2.1-or-later
# This is a settings file for OS image generation using mkosi (https://github.com/systemd/mkosi).
# Symlink this file to mkosi.default in the project root directory and invoke "mkosi" to build an OS image.
# We use python3*dist() throughout this file because we need to make sure the python3.9dis() packages are
# installed on CentOS Stream 8. mkosi doesn't support release specific configuration yet so we use the globs
# to get the necessary packages on both CentOS Stream 8 and CentOS Stream 9.
[Distribution]
Distribution=centos
Repositories=epel
[Content]
Packages=
alsa-lib
audit
cryptsetup
dhcp-server
dnf
fuse
glib2
glibc-minimal-langpack
glibc.i686
gnutls
iproute
iproute-tc
kernel-modules-extra
libasan
libbpf
libcap-ng
libcap-ng-utils
libfido2
libmicrohttpd
libmnl
libubsan
libxcrypt
libxkbcommon
netcat
numactl-libs
p11-kit
pam
passwd
polkit
popt
procps-ng
python3*dist(pefile)
python3*dist(pluggy) # python39-pluggy is a pytest dependency that's not installed for some reason.
python3*dist(pytest)
python39
quota
tpm2-tss
vim-common
BuildPackages=
bpftool
docbook-xsl
dwarves
glibc-devel.i686
glibc-static
glibc-static.i686
gnu-efi-devel
libgcrypt-devel # CentOS Stream 8 libgcrypt-devel doesn't ship a pkg-config file.
libxslt
pam-devel
perl-interpreter
pkgconfig(alsa)
pkgconfig(audit)
pkgconfig(blkid)
pkgconfig(bzip2)
pkgconfig(dbus-1)
pkgconfig(fdisk)
pkgconfig(fuse)
pkgconfig(glib-2.0)
pkgconfig(gnutls)
pkgconfig(libacl)
pkgconfig(libbpf)
pkgconfig(libcap-ng)
pkgconfig(libcap)
pkgconfig(libcryptsetup)
pkgconfig(libcurl)
pkgconfig(libdw)
pkgconfig(libfido2)
pkgconfig(libidn2)
pkgconfig(libkmod)
pkgconfig(libmicrohttpd)
pkgconfig(libmnl)
pkgconfig(libpcre2-8)
pkgconfig(libqrencode)
pkgconfig(libseccomp)
pkgconfig(libselinux)
pkgconfig(libzstd)
pkgconfig(mount)
pkgconfig(numa)
pkgconfig(openssl)
pkgconfig(p11-kit-1)
pkgconfig(popt)
pkgconfig(pwquality)
pkgconfig(tss2-esys)
pkgconfig(tss2-mu)
pkgconfig(tss2-rc)
pkgconfig(valgrind)
pkgconfig(xkbcommon)
python3*dist(docutils)
python3*dist(jinja2)
python3*dist(lxml)
|