summaryrefslogtreecommitdiffstats
path: root/pym/portage/sets/security.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/sets/security.py')
-rw-r--r--pym/portage/sets/security.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pym/portage/sets/security.py b/pym/portage/sets/security.py
index cf4af0940..3bc9cbca4 100644
--- a/pym/portage/sets/security.py
+++ b/pym/portage/sets/security.py
@@ -13,6 +13,8 @@ class SecuritySet(PackageSet):
_operations = ["merge"]
_skip_applied = False
+ description = "package set that includes all packages possibly affected by a GLSA"
+
def __init__(self, name, settings, vardbapi, portdbapi):
super(SecuritySet, self).__init__(name)
self._settings = settings
@@ -53,10 +55,14 @@ class SecuritySet(PackageSet):
class NewGlsaSet(SecuritySet):
_skip_applied = True
+ description = "Package set that includes all packages possibly affected by an unapplied GLSA"
class AffectedSet(SecuritySet):
+ description = "Package set that includes all packages affected by an unapplied GLSA"
+
def useGlsa(self, myglsa):
return myglsa.isVulnerable()
class NewAffectedSet(AffectedSet):
_skip_applied = True
+ description = "Package set that includes all packages affected by an unapplied GLSA"