-
Notifications
You must be signed in to change notification settings - Fork 2
/
rpmfusion-update-report
executable file
·38 lines (34 loc) · 1.09 KB
/
rpmfusion-update-report
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
#!/bin/bash
# rpmfusion-updates-report
echo "RPM Fusion update report"
echo "------------------------"
echo ""
for f in free nonfree ; do
echo "Section $f:"
echo "-------------"
for r in 40 41; do
echo "Fedora $r"
echo "-------------"
echo "Pushed to testing: "
koji-rpmfusion list-tagged f${r}-${f}-updates-candidate --quiet | awk '{print $1}'
echo ""
echo "Pushed to stable: "
koji-rpmfusion list-tagged f${r}-${f}-updates-testing --quiet | grep -v nvidia |grep -v chromium-libs-media-freeworld | awk '{print $1}'
echo ""
done
echo ""
for r in 8 9 ; do
echo "EL $r"
echo "-------------"
echo "Pushed to testing: "
koji-rpmfusion list-tagged el${r}-${f}-candidate --quiet | awk '{print $1}'
echo ""
echo "Pushed to stable: "
koji-rpmfusion list-tagged el${r}-${f}-testing --quiet |grep -v chromium-libs-media-freeworld | awk '{print $1}'
echo ""
done
done
echo ""
echo "Theses packages will be available in main mirror in a few hours. Wait for local mirrors to sync"
echo "Please report any issue to https://bugzilla.rpmfusion.org"
echo ""