calm: mksetupini doesn't allow non-empty source but empty install files for an obsolete package

Jon Turney jon.turney@dronecode.org.uk
Thu May 25 22:11:00 GMT 2017


On 23/05/2017 19:16, Ken Brown wrote:
> On 5/23/2017 12:55 PM, Jon Turney wrote:
>> On 23/05/2017 14:44, Ken Brown wrote:
>>> I've created an obsolete package (as discussed starting at 
>>> https://sourceware.org/ml/cygwin-apps/2017-05/msg00084.html).  But 
>>> mksetupini doesn't like it:
>>>
>>> mksetupini: package 'texlive-collection-htmlxml' version '20170520-1' 
>>> source has no non-empty install tarfiles
>>> mksetupini: package set has errors, not writing setup.ini
>>>
>>> I thought the following would fix it:
>>>
>>> --- a/calm/package.py
>>> +++ b/calm/package.py
>>> @@ -636,6 +636,9 @@ def validate_packages(args, packages):
>>>               if 
>>> packages[p].tars[packages[p].vermap[v]['source']].is_empty:
>>>                   continue
>>
>> This should be being caught by this case (source is empty), but it 
>> isn't, I guess because it's got a .keep file due to other problems 
>> previously discussed.
> 
> The source contains a .cygport file and a fake upstream source tarball.

Of course it does.  Doh!

>>> +            if '_obsolete' in packages[p].vermap[v].get('category', 
>>> ''):
>>> +                continue
>>
>> I think this maybe needs to be 
>> packages[p].version_hints[v].get('category', '') ?
> 
> Yes, that fixes it, thanks.  Patch attached.

Thanks, applied.



More information about the Cygwin-apps mailing list