[Secure-testing-commits] r35172 - bin

Guido Guenther agx at moszumanska.debian.org
Fri Jun 26 11:47:54 UTC 2015


Author: agx
Date: 2015-06-26 11:47:54 +0000 (Fri, 26 Jun 2015)
New Revision: 35172

Modified:
   bin/lts-cve-triage.py
Log:
Revert "lts-cve-triage: allow to skip packages already in dla-needed.txt"

We wanted to wait for review feedback

This reverts commit 5b3a9ca8fbe9dd3a7dbd679ba37ee712c5334859.

Modified: bin/lts-cve-triage.py
===================================================================
--- bin/lts-cve-triage.py	2015-06-26 11:47:03 UTC (rev 35171)
+++ bin/lts-cve-triage.py	2015-06-26 11:47:54 UTC (rev 35172)
@@ -15,7 +15,6 @@
 # You should have received a copy of the GNU General Public License
 # along with this file.  If not, see <https://www.gnu.org/licenses/>.
 
-import argparse
 import collections
 
 from tracker_data import TrackerData, RELEASES
@@ -40,22 +39,13 @@
 
 lists = collections.defaultdict(lambda: collections.defaultdict(lambda: []))
 
-parser = argparse.ArgumentParser(
-    description='Find CVEs to triage')
-parser.add_argument('--skip-dla-needed', action='store_true',
-                    help='Skip packages already in dla-needed.txt')
-args = parser.parse_args()
 
-
 def add_to_list(key, pkg, issue):
     assert key in [l[0] for l in LIST_NAMES]
     lists[key][pkg].append(issue)
 
 
 for pkg in tracker.iterate_packages():
-    if args.skip_dla_needed and pkg in tracker.dla_needed.keys():
-        continue
-
     for issue in tracker.iterate_pkg_issues(pkg):
         status_in_lts = issue.get_status('lts')
         status_in_next_lts = issue.get_status('next_lts')




More information about the Secure-testing-commits mailing list