Le 01/07/2020 à 17:04, Mattia Rizzolo a écrit :
> On Wed, Jul 01, 2020 at 04:34:32PM +0200, Xavier wrote:
>> --- a/scripts/origtargz.pl
>> +++ b/scripts/origtargz.pl
>> @@ -343,6 +343,7 @@ sub unpack_tarball (@) {
>>
>> for my $origtar (@origtar) {
>> my $tmpdir = File::Temp->newdir(DIR => ".", CLEANUP => 1);
>> + next if $origtar =~ /\.(?:asc|sig)$/;
>> print "Unpacking $origtar\n";
>> my $cmp = ($origtar =~ /orig(?:-([\w\-]+))?\.tar/)[0] || '';
>> if ($cmp) {
>
>
> Mh, but I doubt it does what this bug is about: it should *extract* the
> .asc files from pristine-tar if they matches the version. I suppose it
> needs to somehow check whether the .asc is present and if it pass it via
> the -s option of `pristine-tar checkout` (at line 255).
>
> Perhaps indeed we also need this bit you proposed, though I admit I
> never used --unpack :D
In a previous comment, the bug was related to --path option (which
currently fail with a .asc file since it tries to extract it)