summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2019-08-30 11:29:43 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2019-08-30 12:40:46 +0200
commit187f7774249540e29b910478737045bedc41d11f (patch)
treeafba7cede96a3401d36c21472706e1f93d705d49
parent72b94db8f39f590f0906ee438532cecef13b7712 (diff)
bin/contact-maintainers: Provide mail template for LTS updates of minor issues.
As the LTS team also sometimes works on packages with only <no-dsa> issues open, it might be good to also inform package maintainers about this. This adds an ltsp-update-planned-minor.txt mail template plus a command line option (--minor) that LTS front desk people can use if they choose to add a package to dla-needed.txt with <no-dsa> issues only.
-rwxr-xr-xbin/contact-maintainers5
-rw-r--r--templates/lts-update-planned-minor.txt40
2 files changed, 44 insertions, 1 deletions
diff --git a/bin/contact-maintainers b/bin/contact-maintainers
index feb9148024..6aa0cadf6c 100755
--- a/bin/contact-maintainers
+++ b/bin/contact-maintainers
@@ -73,6 +73,8 @@ parser.add_argument('--lts', action='store_true',
help='Act as a member of the LTS team')
parser.add_argument('--no-dsa', dest='no_dsa', action='store_true',
help='Say that issues are low severity (no need for DSA/DLA)')
+parser.add_argument('--minor', dest='minor_issues', action='store_true',
+ help='Say that issues are low severity and someone will work on them (LTS team only)')
parser.add_argument('--mailer', action='store', default='mutt -H {}',
help='Command executed. Must contain {} to be replaced '
'by the filename of the draft contact mail')
@@ -83,7 +85,8 @@ args = parser.parse_args()
cc = 'debian-lts@lists.debian.org' if args.lts else 'team@security.debian.org'
team = 'lts' if args.lts else 'sec'
model = 'no-dsa' if args.no_dsa else 'update-planned'
-template_file = 'templates/{}-{}.txt'.format(team, model)
+minor = '-minor' if args.minor_issues and args.lts else ''
+template_file = 'templates/{}-{}{}.txt'.format(team, model, minor)
# Basic check
instructions = "packages/{}.txt".format(args.package)
diff --git a/templates/lts-update-planned-minor.txt b/templates/lts-update-planned-minor.txt
new file mode 100644
index 0000000000..b564e6634f
--- /dev/null
+++ b/templates/lts-update-planned-minor.txt
@@ -0,0 +1,40 @@
+Content-Type: text/plain; charset=utf-8
+To: {{ to }}
+Cc: {{ cc }}
+Subject: Jessie update of {{ package }} (minor security issues)?
+
+The Debian LTS team recently reviewed the security issue(s) affecting your
+package in Jessie:
+{%- if cve -%}
+{% for entry in cve %}
+https://security-tracker.debian.org/tracker/{{ entry }}
+{%- endfor -%}
+{%- else %}
+https://security-tracker.debian.org/tracker/source-package/{{ package }}
+{%- endif %}
+
+We decided that a member of the LTS team should take a look at this
+package, although the security impact of still open issues is low. When
+resources are available on our side, one of the LTS team members will
+start working on fixes for those minor security issues, as we think that
+the jessie users would most certainly benefit from a fixed package.
+
+If you'd rather want to work on such an update yourself, you're welcome
+to do so. Please send us a short notification to the debian-lts mailing
+list (debian-lts@lists.debian.org), expressing your intention to work on
+issues yourself. Otherwise, no action is required from your side.
+
+When working on issues, please try to follow the workflow we have defined
+here: https://wiki.debian.org/LTS/Development
+
+If that workflow is a burden to you, feel free to just prepare an
+updated source package and send it to debian-lts@lists.debian.org (via a
+debdiff, or with an URL pointing to the source package, or even with a
+pointer to your packaging repository), and the members of the LTS team
+will take care of the rest. However please make sure to submit a tested
+package.
+
+Thank you very much.
+
+{{ sender }},
+ on behalf of the Debian LTS team.

© 2014-2024 Faster IT GmbH | imprint | privacy policy