1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
distro-info (1.0+deb11u1) bullseye; urgency=medium
* python:
- Assert that Python version is PEP440 compliant
- Handle more Debian versions correctly in make_pep440_compliant
* Update tests for distro-info-data 0.51+deb11u5, which adjusted Debian 7's
EoL (Closes: #1054946)
-- Stefano Rivera <stefanor@debian.org> Sun, 29 Oct 2023 14:48:16 +0200
distro-info (1.0) unstable; urgency=medium
[ Debian Janitor ]
* Mark libdistro-info-perl as Multi-Arch: foreign.
[ Stefano Rivera ]
* Bump standards-Version to 4.5.1, no changes needed.
* Bump copyright years.
* Re-black Python.
* Add support for Debian LTS (Closes: #782685)
* Depend on distro-info-data (>= 0.46), with extra columns for
Debian LTS and Ubuntu ESM.
* Ignore W503 warnings from flake8, they are PEP-8 incompatible.
* Handle currently unknown columns in CSV data.
* Drop old Breaks+Replaces on ubuntu-dev-tools, no longer needed.
* Reorganise help into a slightly more logical order.
* Add support for Debian ELTS.
* Update tests to match old date adjustments in distro-info-data 0.46.
[ Brian Murray ]
* Provide support for the milestone eol-esm and add filters for
supported-esm to ubuntu-distro-info along with the python and perl
modules. (LP: #1808038)
* Only include LTS releases when filtering by supported-esm.
[ Steve Langasek ]
* Override uninteresting flake8 warnings about imports and doc strings.
* Don't run tests over the distro_info_test directory, which is pointless
and recursive.
-- Stefano Rivera <stefanor@debian.org> Fri, 29 Jan 2021 13:35:30 -0700
distro-info (0.24) unstable; urgency=medium
* Fix issues found by pylint 2.6.0 (Closes: #971094)
* Blacken Python code
* python: Define sets directly
* Bump Standards-Version to 4.5.0
* Switch to debhelper 13
-- Benjamin Drung <bdrung@debian.org> Mon, 28 Sep 2020 19:36:32 +0200
distro-info (0.23) unstable; urgency=medium
* Drop python2 support; Closes: #943052, #936408
-- Sandro Tosi <morph@debian.org> Wed, 08 Jan 2020 23:06:26 -0500
distro-info (0.22) unstable; urgency=medium
* Drop testing Python 2 code with Pylint
* Rename build dependency pylint3 to pylint (Closes: #940178)
* Switch to debhelper 12
* Bump Standards-Version to 4.4.0 (no changes needed)
-- Benjamin Drung <bdrung@debian.org> Sat, 14 Sep 2019 15:44:13 +0200
distro-info (0.21) unstable; urgency=medium
[ Benjamin Drung ]
* Fix spelling mistake of exactly.
Thanks to Brian Murray <brian@ubuntu.com> (Closes: #921581)
* Bump Standards-Version to 4.3.0 (no changes needed)
[ Balint Reczey ]
* Support getting release version by codename in the Perl and Python API
(Closes: #896640)
-- Benjamin Drung <bdrung@debian.org> Sun, 10 Feb 2019 00:29:24 +0100
distro-info (0.20) unstable; urgency=medium
* Fix build failure with LC_ALL=POSIX by explicitly opening
debian/changelog as UTF-8 in setup.py.
-- Benjamin Drung <bdrung@debian.org> Fri, 12 Oct 2018 12:00:35 +0200
distro-info (0.19) unstable; urgency=medium
[ Stefano Rivera ]
* Migrate VCS to salsa.debian.org.
[ Ondřej Nový ]
* d/control: Remove ancient X-Python-Version field
* d/control: Remove ancient X-Python3-Version field
[ Iain Lane ]
* Fix pylint issues (Closes: #909987):
+ Allow useless-object-inheritance so we can stay PY2/3 bilingual.
- This is correctly an unknown option when linting python 2, so we need
to whitelist unknown overrides too.
+ Refactor a useless if/return/elif... chain into a sequence of `if`s
instead.
+ Use chained comparison x <= y <= z instead of x <= y and y <= z.
[ Benjamin Drung ]
* Update pylint/flake8 unittests to latest version from
https://github.com/bdrung/snippets
* Support running tests against installed binaries and libraries
* Add autopkgtest test suite
* Set Rules-Requires-Root: no
* Bump Standards-Version to 4.2.1
* Do not install distro_info_test into Python libraries
* Do not install test-*-distro-info scripts
-- Benjamin Drung <bdrung@debian.org> Fri, 12 Oct 2018 01:30:13 +0200
distro-info (0.18) unstable; urgency=medium
* Update Python unittests to support pylint 1.8 (Closes: #889537)
* Bump debhelper to version 11
* Bump Standards-Version to 4.1.3 (no changes needed)
* Update copyright year and format spec URL to https
-- Benjamin Drung <bdrung@debian.org> Sun, 04 Feb 2018 20:42:26 +0100
distro-info (0.17) unstable; urgency=medium
* python: Strip trailing summary from pylint output
(to fix build failure on Ubuntu 17.10)
-- Benjamin Drung <bdrung@debian.org> Fri, 21 Jul 2017 17:49:07 +0200
distro-info (0.16) unstable; urgency=medium
* python: Introduce DistroRelease object and support returning it
(steps to fix LP #1253208)
* Add dh-python to build dependencies
* Bump Standards-Version to 4.0.0 (no changes needed)
-- Benjamin Drung <bdrung@debian.org> Thu, 20 Jul 2017 12:08:34 +0200
distro-info (0.15) unstable; urgency=medium
[ Mike Miller ]
* debian-distro-info: Support oldstable with --alias. (Closes: #784284)
[ Benjamin Drung ]
* Fix flake8 and pylint issues found in Python code
* Run flake8 and pylint checks on Python code in test suite
* Python: Add DistroInfo.get_all() method
* Bump Standard-Version to 3.9.8 (no changes required)
* Use https for Vcs-Git and Vcs-Browser URLs
-- Benjamin Drung <bdrung@debian.org> Fri, 28 Apr 2017 19:45:36 +0200
distro-info (0.14) unstable; urgency=medium
* Fix days in month calculation for leap years (Closes: #766142)
* Bump Standards-Version to 3.9.6
-- Benjamin Drung <bdrung@debian.org> Tue, 21 Oct 2014 10:09:57 +0200
distro-info (0.13) unstable; urgency=medium
[ Benjamin Drung ]
* ubuntu-distro-info: Add --latest option. Use this option instead of --devel
if you want to fallback to --stable for outdated data. (LP: #1309591)
* distro_info_test/test_help.py: Close file descriptors at the end.
[ Dimitri John Ledkov ]
* Add --series lookup.
-- Benjamin Drung <bdrung@debian.org> Sat, 10 May 2014 20:55:33 +0200
distro-info (0.12) unstable; urgency=medium
* Fix Ubuntu EOL test cases (The EOL date of raring is two days later).
(Closes: #735801)
* Bump Standards-Version to 3.9.5.
-- Benjamin Drung <bdrung@debian.org> Sat, 18 Jan 2014 11:45:43 +0100
distro-info (0.11) unstable; urgency=low
* Added ability to specify --days[=MILESTONE] option.
Thanks to James Hunt for implementing it.
* Use canonical URLs for Vcs fields.
* Bump Standards-Version to 3.9.4 (no changes needed).
* Switch to debhelper 9.
-- Benjamin Drung <bdrung@debian.org> Fri, 02 Aug 2013 23:35:40 +0200
distro-info (0.10) unstable; urgency=low
* Provide more useful errors (pointing to a README in distro-info-data) when
the data is outdated.
* Actually test with Python 3 (typo)
* libdistro-info-perl: Print a warning and return 0 when data is out of
date, rather than dying.
* Use dpkg-buildflags and enable hardening.
-- Stefano Rivera <stefanor@debian.org> Fri, 01 Jun 2012 18:36:12 +0200
distro-info (0.9) unstable; urgency=low
* debian-distro-info: Add an --alias option. Thanks to Antonio Ospite
for the work. (Closes: #645171)
* Make Python code valid Python 2 and 3 code and add a Python 3 module.
* Fix one memmory leak in main() function.
-- Benjamin Drung <bdrung@debian.org> Fri, 13 Apr 2012 16:02:40 +0200
distro-info (0.8.2) unstable; urgency=low
* Drop liblist-compare-perl from Build-Depends. Use our own list comparison
functions in the test suite.
-- Stefano Rivera <stefanor@debian.org> Thu, 05 Apr 2012 11:39:55 +0200
distro-info (0.8.1) unstable; urgency=low
* Fix build failure due to wrong variable type.
-- Benjamin Drung <bdrung@debian.org> Tue, 03 Apr 2012 13:02:26 +0200
distro-info (0.8) unstable; urgency=low
* Run shell scripts with 'set -f' (LP: #965378).
* Rewrite scripts in C. The binaries are 2.3 times bigger than the shell
scripts, but they are between four and six times faster. Forking the process
takes longer than executing it. The plain execution time is around 25 times
faster than the shell scripts.
* Extend command line test cases.
-- Benjamin Drung <bdrung@debian.org> Tue, 03 Apr 2012 01:24:23 +0200
distro-info (0.7.1) unstable; urgency=low
* Use shunit2 for testing the command line scripts instead of using an own
custom test framework and install the test cases.
* test-ubuntu-distro-info: Fix i386 build failure due to year 2038 problem.
-- Benjamin Drung <bdrung@debian.org> Mon, 26 Mar 2012 01:43:16 +0200
distro-info (0.7) unstable; urgency=low
* Rewrite scripts in Shell. The scripts are smaller than the Haskell binaries
and the speed is about the same. This was done because Haskell is not in
Ubuntu main. Thanks to Scott Moser for his work. (LP: #963062)
-- Benjamin Drung <bdrung@debian.org> Sat, 24 Mar 2012 11:17:54 +0100
distro-info (0.6) unstable; urgency=low
* Put data into separate source package to avoid a full source rebuild for
just updating the data.
-- Benjamin Drung <bdrung@debian.org> Fri, 23 Mar 2012 00:16:02 +0100
distro-info (0.5.1) unstable; urgency=low
[ Stefano Rivera ]
* Bump Standards-Version to 3.9.3, no changes needed.
* Update machine-readable copyright Format to 1.0.
[ Benjamin Drung ]
* DebianDistroInfo.hs, UbuntuDistroInfo.hs: Replace System import by
System.Environment and System.Exit import to fix build failure.
-- Benjamin Drung <bdrung@debian.org> Sat, 25 Feb 2012 16:11:25 +0100
distro-info (0.5) unstable; urgency=low
* Allow retrieving the release version and full name with the Python module.
(Closes: #647951)
-- Benjamin Drung <bdrung@debian.org> Mon, 23 Jan 2012 19:18:50 +0100
distro-info (0.4) unstable; urgency=low
[ Stefano Rivera ]
* Add is_lts method to UbuntuDistroInfo
[ Benjamin Drung ]
* Enable optimization for Haskell code.
* Break old ubuntu-dev-tools package instead of recommending
python-distro-info.
-- Benjamin Drung <bdrung@debian.org> Tue, 25 Oct 2011 23:19:56 +0200
distro-info (0.3) unstable; urgency=low
[ Stefano Rivera ]
* Add basic Perl module, API-compatible with the Python one.
* Add liblist-compare-perl as a Build-Dependency for the Perl test suite.
[ Benjamin Drung ]
* Improve speed by rewriting scripts in Haskell (LP: #796317).
* Allow printing of release version and full name (LP: #807644).
* Split scripts, Perl and Python libraries in separate binary packages.
-- Benjamin Drung <bdrung@debian.org> Tue, 11 Oct 2011 23:55:18 +0200
distro-info (0.2.3) unstable; urgency=low
* "old" is not a Debian suite alias, but "oldstable" is.
* Add myself to Uploaders.
-- Stefano Rivera <stefanor@debian.org> Fri, 07 Oct 2011 22:24:08 +0200
distro-info (0.2.2) unstable; urgency=low
* Add 12.04 LTS "Precise Pangolin" to Ubuntu list.
-- Benjamin Drung <bdrung@debian.org> Thu, 06 Oct 2011 01:07:36 +0200
distro-info (0.2.1) unstable; urgency=low
* Correct release and EOL dates of old Ubuntu releases by reviewing
ubuntu-announce emails.
-- Benjamin Drung <bdrung@debian.org> Sat, 23 Jul 2011 15:55:23 +0200
distro-info (0.2) unstable; urgency=low
* Make sure all DistroInfo classes have a .codename method.
* Add experimental to list of Debian distributions.
* Bump Breaks and Replaceses for ubuntu-dev-tools.
-- Benjamin Drung <bdrung@debian.org> Sat, 25 Jun 2011 16:30:59 +0200
distro-info (0.1) unstable; urgency=low
* Initial release (Closes: #559761)
-- Benjamin Drung <bdrung@debian.org> Sun, 19 Jun 2011 00:08:57 +0200
|