Add bootc proper package to -dev

Because the rpm-ostree bootc wrapping breaks `bootc install`
This commit is contained in:
Colin Walters 2023-09-21 18:40:50 -04:00
parent 6a19fc44a9
commit 1f673cb118
4 changed files with 20 additions and 5 deletions

10
copr-fedora-bootc.repo Normal file
View File

@ -0,0 +1,10 @@
[copr-fedora-bootc]
name=Copr repo for bootc owned by rhcontainerbot
baseurl=https://download.copr.fedorainfracloud.org/results/rhcontainerbot/bootc/fedora-$releasever-$basearch/
type=rpm-md
skip_if_unavailable=True
gpgcheck=1
gpgkey=https://download.copr.fedorainfracloud.org/results/rhcontainerbot/bootc/pubkey.gpg
repo_gpgcheck=0
enabled=1
enabled_metadata=1

View File

@ -2,3 +2,7 @@
repos: repos:
- copr-fedora-coreos-continuous - copr-fedora-coreos-continuous
- copr-fedora-bootc
packages:
- bootc

View File

@ -1,4 +1,3 @@
include: fedora-tier-1-38.yaml include:
- fedora-tier-1-38.yaml
repos: - fedora-dev.yaml
- copr-fedora-coreos-continuous

View File

@ -17,4 +17,6 @@ exclude-packages:
postprocess: postprocess:
- | - |
#!/usr/bin/env bash #!/usr/bin/env bash
ln -sr /usr/bin/{rpm-ostree,bootc} if test ! -x /usr/bin/bootc && test -x /usr/bin/rpm-ostree; then
ln -sr /usr/bin/{rpm-ostree,bootc}
fi