summaryrefslogtreecommitdiffstats
path: root/tags/d/dfsg-version-with-period.tag
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:42:30 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:42:30 +0000
commit75808db17caf8b960b351e3408e74142f4c85aac (patch)
tree7989e9c09a4240248bf4658a22208a0a52d991c4 /tags/d/dfsg-version-with-period.tag
parentInitial commit. (diff)
downloadlintian-75808db17caf8b960b351e3408e74142f4c85aac.tar.xz
lintian-75808db17caf8b960b351e3408e74142f4c85aac.zip
Adding upstream version 2.117.0.upstream/2.117.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tags/d/dfsg-version-with-period.tag')
-rw-r--r--tags/d/dfsg-version-with-period.tag13
1 files changed, 13 insertions, 0 deletions
diff --git a/tags/d/dfsg-version-with-period.tag b/tags/d/dfsg-version-with-period.tag
new file mode 100644
index 0000000..ed5e9ae
--- /dev/null
+++ b/tags/d/dfsg-version-with-period.tag
@@ -0,0 +1,13 @@
+Tag: dfsg-version-with-period
+Severity: info
+Check: fields/version/repack/period
+Explanation: The version contains the string <code>.dfsg</code>.
+ That versioning may harbor a subtle sorting issue, namely: <code>1.2.dfsg1</code>
+ is a more recent version than <code>1.2.1</code>. It will therefore be difficult
+ to find a nice version string for the next upstream release if it gains another
+ dotted digit at the end.
+ .
+ It is better to use <code>+dfsg</code> instead. The plus sign <code>+</code> sorts
+ before <code>.</code>, so the sorting that is usually desired can take place:
+ .
+ <code>1.2</code> &lt; <code>1.2+dfsg</code> &lt; <code>1.2.1</code>