-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi All,
As Design Suite, Games and Security Spins were not signed off[1]
for Beta they have been removed from F20. They will need to reapply for
inclusion in F21.
Dennis
[1] http://fedoraproject.org/wiki/Releases/20/Spins
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.22 (GNU/Linux)
iQIcBAEBAgAGBQJSfYtiAAoJEH7ltONmPFDR2ZMP/36WFbwSnE+uZ+TyV0kjg1R+
PCmCrbYIp2V8fsaHkXNGiKgm9UlD5N/q8IqwtduvjAqshB2ziRcuJFgD8IlDp3Y3
Dp9NfqmYEzcUx6kETB4A+Fhm4xZWvxaBJ9j4rb37MIGh4buYXMnx3AIhppBUUNqB
yrugdItbwSuaIkfF9Owx5UM9TLqtyy/cJo/5IAcZ4vDcPTeeZcoDI+OBwCiX4b8a
gObe7t7S+VgayPJxo4u+bQWTeg1zuGErfbw0h+0LrTeQarpOJfZuIArvQa4c0BcB
2Xw0FsA9A9r281ZbGPpdj0RtqmJD+x/u96gMjzLyTCouBcHJZCuIfFpiTejIcnxp
QVzA3wCwUyd2EpMQ7k/dEQRZI91Cx9F8B3HZYSWcqTe+1dwBMRlZVazaCUIAXXPc
ttluoaYif85yvc9DfxQhYWwkkC5x44CeTpjHg1dASQ2rpoxMlkUrChO9K+ywal+w
FC2apcXAvYDK1jOSffAO91R5SLdle6DwbVEmoP/UQIc/GUmkyx1YubQ1SPR73xgd
M3XmLQ1ZdAqd0PbJCwCZu8fyScRTJuL1zthvlQzaa1hAO/6f2tHJ+5BpgrkrnxnT
q8O+0xJBkwXaph5qrfz5csLyLGDrWOko+RLUjjZ3CUz/c1uTqfYvTr9YAimWKzLP
KkLvuj4JouH3tjVpRxIv
=1wrx
-----END PGP SIGNATURE-----
I wrote a small script which will print out the failing live cd builds:
from lxml import html
import requests
def main():
page = requests.get('http://koji.fedoraproject.org/koji/tasks?state=all&view=tree&method=livecd')
tree = html.fromstring(page.content)
a_class_failed = tree.xpath('//a[@class="taskfailed"]')
for image in a_class_failed:
print image.text
if __name__ == '__main__':
main()
To try it, install "requests" and "lxml" Python packages.
Hope someone else finds it useful too.
Best Wishes,
Amit.
--
http://echorand.me