Commit c87a8359 authored by Andreas Tille's avatar Andreas Tille
Browse files

Do not add specific packages maintained in other teams or by other maintainers...

Do not add specific packages maintained in other teams or by other maintainers but rather exclude some packages that are irrelevant for the wordcloud
parent 40c4870a
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -25,7 +25,14 @@ med_tasks = [
    'typesetting',
    ]

other = { }
exclude = {
            'gmic',
            'octave',
            'r-cran-foreign',
            'texlive-latex-extra',
            'texlive-science',
            'workrave',
          }

renaming = {
    'python-biopython': 'biopython',
@@ -66,7 +73,7 @@ for t in med_tasks:
        pt = c[name].versions[-1]
        srcname = pt.source_name
        maint = pt.record['maintainer']
        if 'med' in maint or srcname in other:
        if name not in exclude:
            # pp = popcon.package(name) # that's "install"
            pp = popcon.package_raw(name)
            srcname = renaming.get(srcname, srcname)
@@ -74,7 +81,6 @@ for t in med_tasks:
#            tt[srcname] = max(pp[name], tt[srcname])
            tt[srcname] += pp[name].vote * multiplier.get(srcname, 1)


frequencies = {}
tasks = {} # later to be used for color
for t, p in packages.items():
+22.9 KiB (507 KiB)
Loading image diff...