|
56 | 56 | # Debian EOL https://wiki.debian.org/LTS/
|
57 | 57 | # Ubuntu EOL https://wiki.ubuntu.com/Releases
|
58 | 58 | # Mint EOL https://linuxmint.com/download_all.php
|
59 |
| - "debian/7" => [ |
60 |
| - "debian/wheezy", # EOL 31st May 2018 |
61 |
| - "ubuntu/precise" # ESM April 2019 |
62 |
| - ], |
63 | 59 | "debian/8" => [
|
64 | 60 | "debian/jessie", # EOL June 30, 2020
|
65 | 61 | "linuxmint/qiana", # EOL April 2019
|
|
72 | 68 | ],
|
73 | 69 | "debian/9" => [
|
74 | 70 | "debian/stretch", # EOL June 2022
|
75 |
| - "debian/buster", # Current |
76 | 71 | "linuxmint/sarah", # EOL April 2021
|
77 | 72 | "linuxmint/serena", # EOL April 2021
|
78 | 73 | "linuxmint/sonya", # EOL April 2021
|
|
87 | 82 | "ubuntu/cosmic", # EOL July 2019
|
88 | 83 | "ubuntu/disco", # EOL April 2020
|
89 | 84 | ],
|
| 85 | + "debian/10" => [ |
| 86 | + "debian/buster", # Current |
| 87 | + ] |
90 | 88 | }
|
91 | 89 |
|
92 | 90 | # caches distro id lookups
|
@@ -129,12 +127,12 @@ def distro_names_for(filename)
|
129 | 127 | next if full_path.include?("SRPM") || full_path.include?("i386") || full_path.include?("i686")
|
130 | 128 | next unless full_path =~ /\/git-lfs[-|_]\d/
|
131 | 129 | os, distro = case full_path
|
132 |
| - when /debian\/7/ then ["Debian 7", "debian/wheezy"] |
133 |
| - when /debian\/8/ then ["Debian 8", "debian/jessie"] |
134 |
| - when /debian\/9/ then ["Debian 9", "debian/stretch"] |
135 |
| - when /centos\/5/ then ["RPM RHEL 5/CentOS 5", "el/5"] |
136 |
| - when /centos\/6/ then ["RPM RHEL 6/CentOS 6", "el/6"] |
137 |
| - when /centos\/7/ then ["RPM RHEL 7/CentOS 7", "el/7"] |
| 130 | + when /debian\/8/ then ["Debian 8", "debian/jessie"] |
| 131 | + when /debian\/9/ then ["Debian 9", "debian/stretch"] |
| 132 | + when /debian\/10/ then ["Debian 10", "debian/buster"] |
| 133 | + when /centos\/5/ then ["RPM RHEL 5/CentOS 5", "el/5"] |
| 134 | + when /centos\/6/ then ["RPM RHEL 6/CentOS 6", "el/6"] |
| 135 | + when /centos\/7/ then ["RPM RHEL 7/CentOS 7", "el/7"] |
138 | 136 | end
|
139 | 137 |
|
140 | 138 | next unless os
|
|
0 commit comments