mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-06 13:02:18 +00:00
trivial: drop the flatpak target
We don't use it for dependency building at all.
This commit is contained in:
parent
05a3ee1fc8
commit
0c77e34c73
@ -1508,16 +1508,6 @@
|
||||
<package />
|
||||
</distro>
|
||||
</dependency>
|
||||
<dependency type="build" id="flatpak-builder">
|
||||
<distro id="flatpak">
|
||||
<package />
|
||||
</distro>
|
||||
</dependency>
|
||||
<dependency type="build" id="tree">
|
||||
<distro id="flatpak">
|
||||
<package />
|
||||
</distro>
|
||||
</dependency>
|
||||
<dependency type="build" id="libtss2-dev">
|
||||
<distro id="arch">
|
||||
<package>tpm2-tss</package>
|
||||
|
@ -55,7 +55,7 @@ if __name__ == "__main__":
|
||||
"-o",
|
||||
"--os",
|
||||
default=target,
|
||||
choices=["fedora", "centos", "flatpak", "debian", "ubuntu", "arch"],
|
||||
choices=["fedora", "centos", "debian", "ubuntu", "arch"],
|
||||
help="dependencies for OS",
|
||||
)
|
||||
args = parser.parse_args()
|
||||
|
@ -52,7 +52,7 @@ with open("Dockerfile", "w") as wfd:
|
||||
replace = ""
|
||||
wfd.write(line.replace("%%%ARCH_PREFIX%%%", replace))
|
||||
elif line == "%%%INSTALL_DEPENDENCIES_COMMAND%%%\n":
|
||||
if OS == "fedora" or OS == "flatpak":
|
||||
if OS == "fedora":
|
||||
wfd.write("RUN dnf --enablerepo=updates-testing -y install \\\n")
|
||||
elif OS == "centos":
|
||||
wfd.write("RUN yum -y install \\\n")
|
||||
|
Loading…
Reference in New Issue
Block a user