14 day thresholds for some packages in Bodhi #13251
Labels
No labels
after freeze
automation
backlog
blocked
change-ack
change-nak
change-noreleng
changes
Closed As
Can't Fix
Closed As
Duplicate
Closed As
Fixed
Closed As
Fixed with Explanation
Closed As
Get back later
Closed As
Grooming
Closed As
Insufficient data
Closed As
Invalid
Closed As
It's all good
Closed As
taiga
Closed As
upstream
day-to-day
dev
docs
easyfix
epel
f26
f27
f28
f29
f30
f31
f32
f33
f34
f35
f36
f37
f38
f39
f40
f41
f42
f43
f44
f45
fedora
groomed
high-gain
high-trouble
in-progress
in-review
investigation
legal
low-gain
low-trouble
mass rebuild
medium-gain
medium-trouble
meeting
mini-initiative
new_artifact
ops
pdc_retirement
rawhide
RCA
review
script
sidetarget
sprint-0
sprint-1
sprint-2
sprint-3
sprint-4
sprint-5
unfrozen
waiting on external
Backlog Status
Needs Review
Backlog Status
Ready
chore
documentation
points
01
points
02
points
03
points
05
points
08
points
13
Priority
High
Priority
Low
Priority
Medium
Sprint Status
Blocked
Sprint Status
Done
Sprint Status
In Progress
Sprint Status
Review
Sprint Status
To Do
Technical Debt
Work Item
Bug
Work Item
Epic
Work Item
Spike
Work Item
Task
Work Item
User Story
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
releng/tickets#13251
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hello,
I've pushed some updates for various packages over time, and some packages / branch combination have a weird staging time in Bodhi; I can't figure out the logic behind it, where this is set and how to change it.
Example:
dpkg- 14 days for Stable infc42/fc43/fc44branches,epelbranches have 7 days.egl-wayland- 14 days in Stable forfc42only, all the other branches have 7 days.None of those packages is critical or particularly special.
dpkgis used only to manipulate deb packages for inspection (and was also abandoned before I started updating it), the second one is a small library used only by the proprietary NVIDIA driver, so it's never installed as part of anything else.Thanks.
This is due to them being in the critical path. dpkg for lots of releases, egl-wayland for just f42.
I am not sure why they are listed, you can look at
https://forge.fedoraproject.org/releng/tooling/src/branch/main/quality-assurance/critpath/critpath.py
Where is the actual critical path list defined? I've tried
dnf group infoon all the groups listed at https://forge.fedoraproject.org/releng/tooling/src/branch/main/quality-assurance/critpath/critpath.py#L39, but the packages are not there.It's all the things in the indicated groups in that script and their dependencies.
I am not sure where these specific ones are coming from. They definitely seem wrong. ;)
Perhaps @adamwill has some better way to debug this?
Not really, you just have to do detective work.
I suspect the cause in the
dpkgcase is thatkiwi-systemdepsrequireskiwi-systemdeps-core, andkiwi-systemdeps-corerecommendsdpkg. critpath.py doesn't explicitly specify whether or not to include soft dependencies; it goes with whatever the Pythondnflibrary default behavior is. I think the default is to include recommends. I can look at tweaking it to not include those and see how the output would differ.Thanks. I remember there were more packages in this condition, but I don't remember right now.
It's a bit weird that
dpkgis in the critical path, it was basically abandoned for a long time before I picked it up. I use it for some simple manipulation in pipelines running on Fedora at work.Regarding
egl-wayland, would be nice to have that as well out of the critical path. Once upon a time, it was used at build time to provide EGLStream path for the NVIDIA driver in Xwayland and mutter, but that has long gone. The EGLStream code path was last used in NVIDIA driver 470, and that has long gone EOL. Any newer version did not use that, so I pushed to get it unlinked in Fedora and CentOS Stream/RHEL 10 (during the beta). I think the leftover critical path is due to its past use for this.Whenever we push a new NVIDIA driver out (I work for NVIDIA), I'm updating as well the EGL libraries (
egl-ex11/egl-gbm/egl-wayland/egl-wayland2) in Fedora/EPEL to match, and waiting 2 weeks between a driver release and it's supporting libraries it's suboptimal.Thanks.