make version comparision more similar to that of dpkg#1509
Merged
neolynx merged 3 commits intoaptly-dev:masterfrom Dec 26, 2025
Merged
make version comparision more similar to that of dpkg#1509neolynx merged 3 commits intoaptly-dev:masterfrom
neolynx merged 3 commits intoaptly-dev:masterfrom
Conversation
Initially found by automated repository health checks used by Termux in termux/termux-packages#27472 The root problem was 4.3.5a comparing less than 4.3.5-rc1-1 by aptly According to debian "4.3.5a" > "4.3.5-rc1-1" This is because dpkg splits hyphen for revision at the first hyphen, whereas aptly was splitting at the last hyphen which is different from dpkg's behaviour. dpkg behaviour: https://git.dpkg.org/cgit/dpkg/dpkg.git/tree/lib/dpkg/parsehelp.c#n242 Perhaps this wasn't detected as there was broken tests in the repository since the initial commit of aptly. This also fixes those tests
Cause I'm nice :)
Contributor
Author
|
I'd be very greatful to get a review on this, it's been 2 weeks since I created this PR. Thanks in advance! |
Member
|
Thanks for the PR ! Unfortunately my day job didn't allow me to contribute more time for aptly, it will have to wait until Christmas break... |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1509 +/- ##
==========================================
- Coverage 74.87% 74.54% -0.33%
==========================================
Files 160 160
Lines 18518 18518
==========================================
- Hits 13865 13805 -60
- Misses 3502 3566 +64
+ Partials 1151 1147 -4 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey maintainer of @termux here. Found this out during routine repository health checks for one of the apt repository: termux/termux-packages#27472
Description of the Change
Details in commit message(s) about the changes.
Checklist
AUTHORS