Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
J
javatools
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Java Maintainers
javatools
Commits
df0eda52
Unverified
Commit
df0eda52
authored
6 years ago
by
Niels Thykier
Browse files
Options
Downloads
Patches
Plain Diff
jh_installibs: Correct VERSION_STRIP regex
Signed-off-by:
Niels Thykier
<
niels@thykier.net
>
parent
9af5c014
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/changelog
+2
-0
2 additions, 0 deletions
debian/changelog
jh_installlibs
+1
-1
1 addition, 1 deletion
jh_installlibs
with
3 additions
and
1 deletion
debian/changelog
+
2
−
0
View file @
df0eda52
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
...
...
This diff is collapsed.
Click to expand it.
jh_installlibs
+
1
−
1
View file @
df0eda52
...
...
@@ -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
(?:
f
g)
?
[0-9]*$
';
my
$VERSION_STRIP
=
'
[\.+~-](?:
ds|dfs
g)[0-9]*$
';
init
(
options
=>
{
'
upstream-version=s
'
=>
\
$UPSTREAM_VERSION
,
'
no-mangle
'
=>
\
$NO_MANGLE
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment