import bugzilla import sys import time from datetime import datetime TRACKER = 2168845 # F39FailsToInstall JUDGEMENT_DAY = datetime.fromisoformat("2023-08-15") bzapi = bugzilla.Bugzilla("bugzilla.redhat.com") fields = ["component", "creation_time"] query = bzapi.build_query(product="Fedora", include_fields=fields) query["blocks"] = TRACKER query["status"] = "NEW" query["limit"] = 1000 bugzillas = bzapi.query(query) assert len(bugzillas) < 1000 def is_reminder(c): return (c["creator"].startswith("mhroncok@") and "reminder" in c["text"] or c["creator"].startswith("fti-bugs@") and "reminder" in c["text"]) def two_reminders(bug): return sum(is_reminder(c) for c in bug.getcomments()) >= 2 retire_ids = [] retire_packages = [] for bug in bugzillas: creation_time = datetime.fromtimestamp(time.mktime(bug.creation_time.timetuple())) delta = JUDGEMENT_DAY - creation_time symbol = "\N{GREEN HEART}" if delta.days >= 8 * 7 and two_reminders(bug): symbol = "\N{SKULL}" retire_ids.append(bug.id) retire_packages.append(bug.component) print(bug.component, f"{delta.days // 7} weeks", symbol, file=sys.stderr) print( "https://bugzilla.redhat.com/buglist.cgi?bug_id=" + ",".join(str(b) for b in retire_ids) ) print(" ".join(retire_packages))
$ python fedora-fti-8-weeks-new.py appliance-tools 43 weeks π awake 34 weeks π golang-github-lucas-clemente-quic 23 weeks π pykka 20 weeks π androguard 12 weeks π erlang-esip 12 weeks π erlang-hyper 12 weeks π erlang-stringprep 12 weeks π erlang-xmpp 12 weeks π wings 12 weeks π python-aioguardian 10 weeks π golang-github-coredns-corefile-migration 10 weeks π pcb2gcodeGUI 9 weeks π antlr32 9 weeks π python-syrupy 6 weeks π Mayavi 5 weeks π RBTools 5 weeks π aiodnsbrute 5 weeks π andriller 5 weeks π androwarn 5 weeks π asv 5 weeks π b43-tools 5 weeks π botan2 5 weeks π brd 5 weeks π btest 5 weeks π buildstream 5 weeks π classification-banner 5 weeks π dlrn 5 weeks π electrum 5 weeks π eric 5 weeks π fedora-gather-easyfix 5 weeks π gfal2-python 5 weeks π libssh2-python 5 weeks π manafirewall 5 weeks π noggin 5 weeks π oct2spec 5 weeks π pico-wizard 5 weeks π postfix-mta-sts-resolver 5 weeks π pyflowtools 5 weeks π pyftpdlib 5 weeks π pygsl 5 weeks π python-AppTools 5 weeks π python-acora 5 weeks π python-actdiag 5 weeks π python-adext 5 weeks π python-aioodbc 5 weeks π python-aiozeroconf 5 weeks π python-airthings 5 weeks π python-alarmdecoder 5 weeks π python-autopep8 5 weeks π python-blockdiag 5 weeks π python-bluepy 5 weeks π python-btlewrap 5 weeks π python-click-spinner 5 weeks π python-convertdate 5 weeks π python-cypari2 5 weeks π python-dominate 5 weeks π python-elpy 5 weeks π python-envisage 5 weeks π python-ephem 5 weeks π python-flask-bootstrap 5 weeks π python-flufl-bounce 5 weeks π python-fpylll 5 weeks π python-gccinvocation 5 weeks π python-grako 5 weeks π python-guizero 5 weeks π python-interfile 5 weeks π python-iowait 5 weeks π python-ipgetter 5 weeks π python-jsonrpc-server 5 weeks π python-lacrosse 5 weeks π python-lazr-smtptest 5 weeks π python-leveldb 5 weeks π python-liblarch 5 weeks π python-logging-tree 5 weeks π python-lsp-black 5 weeks π python-lsp-server 5 weeks π python-magnumclient 5 weeks π python-manilaclient 5 weeks π python-mathics3 5 weeks π python-mathicsscript 5 weeks π python-mne-bids 5 weeks π python-mygpoclient 5 weeks π python-neutronclient 5 weeks π python-nmap 5 weeks π python-nose_fixes 5 weeks π python-notario 5 weeks π python-nwdiag 5 weeks π python-octaviaclient 5 weeks π python-oslo-log 5 weeks π python-parsley 5 weeks π python-pathtools 5 weeks π python-petlink 5 weeks π python-protego 5 weeks π python-py9p 5 weeks π python-pyaes 5 weeks π python-pybv 5 weeks π python-pydiffx 5 weeks π python-pyface 5 weeks π python-pyls-spyder 5 weeks π python-pytenable 5 weeks π python-pytest-metadata 5 weeks π python-pytest-virtualenv 5 weeks π python-qdarkstyle 5 weeks π python-restfly 5 weeks π python-rosinstall 5 weeks π python-saharaclient 5 weeks π python-seqdiag 5 weeks π python-simplewrap 5 weeks π python-sklearn-genetic-opt 5 weeks π python-slip 5 weeks π python-smart-gardena 5 weeks π python-sphinxcontrib-actdiag 5 weeks π python-stdio-mgr 5 weeks π python-tackerclient 5 weeks π python-tambo 5 weeks π python-textual 5 weeks π python-troveclient 5 weeks π python-uinput 5 weeks π python-upoints 5 weeks π python-uri-templates 5 weeks π python-uvloop 5 weeks π python-vcstools 5 weeks π python-visionegg-quest 5 weeks π python-yamlordereddictloader 5 weeks π python-yourls 5 weeks π python-zaqarclient 5 weeks π python-zuul-client 5 weeks π python3-saml 5 weeks π python3-script 5 weeks π pyutil 5 weeks π sagemath 5 weeks π spyder 5 weeks π sword 5 weeks π transmageddon 5 weeks π xonsh 5 weeks π breeze-icon-theme 5 weeks π perl-LMDB_File 4 weeks π pvs-sbcl 4 weeks π php-ocramius-generated-hydrator 4 weeks π php-symfony4 4 weeks π python-pymc3 2 weeks π golang-github-alicebob-miniredis 2 weeks π belle-sip 0 weeks π ghc-aeson-compat 0 weeks π ghc-cabal-file-th 0 weeks π ghc-union-find 0 weeks π golang-gioui 0 weeks π htmltest 0 weeks π ortp 0 weeks π python-xeddsa 0 weeks π budgie-desktop 0 weeks π rust-gix-object 0 weeks π https://bugzilla.redhat.com/buglist.cgi?bug_id=2135410,2173916,2208494,2208978,2208982,2208989,2208990,2208997,2210958,2211332,2213110,2214043 appliance-tools golang-github-lucas-clemente-quic androguard erlang-esip erlang-hyper erlang-stringprep erlang-xmpp wings python-aioguardian golang-github-coredns-corefile-migration pcb2gcodeGUI antlr32
Metadata Update from @phsmoura: - Issue tagged with: medium-gain, medium-trouble, ops
awake 34 weeks π golang-github-lucas-clemente-quic 23 weeks π pykka 20 weeks π androguard 12 weeks π erlang-esip 12 weeks π erlang-hyper 12 weeks π erlang-stringprep 12 weeks π erlang-xmpp 12 weeks π wings 12 weeks π python-aioguardian 10 weeks π golang-github-coredns-corefile-migration 10 weeks π pcb2gcodeGUI 9 weeks π antlr32 9 weeks π ... https://bugzilla.redhat.com/buglist.cgi?bug_id=2155027,2173916,2208494,2208978,2208982,2208989,2208990,2208997,2210958,2211332,2213110,2214043 awake golang-github-lucas-clemente-quic androguard erlang-esip erlang-hyper erlang-stringprep erlang-xmpp wings python-aioguardian golang-github-coredns-corefile-migration pcb2gcodeGUI antlr32
Metadata Update from @churchyard: - Issue close_status updated to: Fixed - Issue status updated to: Closed (was: Open)