Skip to content
Snippets Groups Projects
Unverified Commit df0eda52 authored by Niels Thykier's avatar Niels Thykier
Browse files

jh_installibs: Correct VERSION_STRIP regex


Signed-off-by: default avatarNiels Thykier <niels@thykier.net>
parent 9af5c014
No related branches found
No related tags found
No related merge requests found
javatools (0.72) UNRELEASED; urgency=medium
* Remove obsolete fetch-eclipse-source script.
* jh_installlibs: Correct default version mangling regex which
failed to handle dfsg versions. (Closes: #914417)
-- Niels Thykier <niels@thykier.net> Thu, 22 Nov 2018 14:28:41 +0000
......
......@@ -89,7 +89,7 @@ debhelper options documented in L<debhelper(7)>.
my ($UPSTREAM_VERSION, $NO_MANGLE);
# Strip ds and dfsg in various forms by default.
my $VERSION_STRIP = '[\.+~-]ds(?:fg)?[0-9]*$';
my $VERSION_STRIP = '[\.+~-](?:ds|dfsg)[0-9]*$';
init(options => {
'upstream-version=s' => \$UPSTREAM_VERSION,
'no-mangle' => \$NO_MANGLE,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment