Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
debian-packages
Tar
Commits
63a2b079
Commit
63a2b079
authored
Mar 22, 2014
by
Bdale Garbee
Browse files
patch for tarman handling of multi-line descriptions
parent
ee7f2ed4
Changes
2
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
63a2b079
...
...
@@ -2,8 +2,10 @@ tar (1.27.1-2) unstable; urgency=low
*
patch
from
David
Gilman
adds
watch
file
with
signature
verification
,
closes
:
#
742351
*
patch
from
David
Gilman
fixes
problem
with
multi
-
line
descriptions
,
closes
:
#
593149
--
Bdale
Garbee
<
bdale
@
gag
.
com
>
Sat
,
22
Mar
2014
1
3
:
31
:
0
9
-
0600
--
Bdale
Garbee
<
bdale
@
gag
.
com
>
Sat
,
22
Mar
2014
1
5
:
55
:
0
3
-
0600
tar
(
1.27.1
-
1
)
unstable
;
urgency
=
low
...
...
debian/tarman
View file @
63a2b079
...
...
@@ -94,6 +94,15 @@ while (<>) {
$$lastoperation{'description'} .= $c3[1];
}
}
if (!$nflag && !/\}/) {
while (<>) {
my @extended_desc = split('"', $_);
$$lastoperation{'description'} .= $extended_desc[1];
if (/\}/) {
last;
}
}
}
}
}
if ($mode == 3 ) {
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment