Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
bin/lts-missing-uploads.py: Update for new LTS distribution.
· 1cb7c3d5
Chris Lamb
authored
Jun 01, 2018
1cb7c3d5
bin/tracker_data.py: Update definitions (used elsewhere too) for new LTS distribution.
· ef6df61f
Chris Lamb
authored
Jun 01, 2018
ef6df61f
bin/lts-needs-forward-port.py: Update comment for new LTS distribution.
· fdad2751
Chris Lamb
authored
Jun 01, 2018
fdad2751
Show whitespace changes
Inline
Side-by-side
bin/lts-missing-uploads.py
View file @
fdad2751
...
...
@@ -28,7 +28,7 @@ from debian.debian_support import Version
class
LTSMissingUploads
(
object
):
MONTHS
=
6
SOURCES
=
'
http://security.debian.org/dists/
wheezy
/updates/main/source/Sources.gz
'
SOURCES
=
'
http://security.debian.org/dists/
jessie
/updates/main/source/Sources.gz
'
re_line
=
re
.
compile
(
r
'
(?P<suffix>msg\d+.html).*\[DLA (?P<dla>[\d-]+)\] (?P<source>[^\s]+) security update.*
'
...
...
bin/lts-needs-forward-port.py
View file @
fdad2751
...
...
@@ -22,7 +22,7 @@ import sys
from
tracker_data
import
TrackerData
,
RELEASES
# lts is currently
wheezy
, next_lts
jessie
# lts is currently
jessie
, next_lts
stretch
LIST_NAMES
=
(
(
'
needs_fix_in_next_lts
'
,
(
'
Issues that are unfixed in {next_lts} but fixed in {lts}
'
...
...
bin/tracker_data.py
View file @
fdad2751
...
...
@@ -29,8 +29,8 @@ RELEASES = {
'
unstable
'
:
'
sid
'
,
'
experimental
'
:
'
experimental
'
,
# LTS specific aliases
'
lts
'
:
'
wheezy
'
,
'
next_lts
'
:
'
jessie
'
,
'
lts
'
:
'
jessie
'
,
'
next_lts
'
:
'
stretch
'
,
}
...
...