somehow the correct md5sum couldn't make it in the last commit
/reviewed-on !173
-
Owner
Did this happen after rebasing and you expected update-hash commit hook to fix the checksum ?
Normally, you should get a conflict anyway, in which case I typically:
- reset the buildout.hash.cfg file (the revision you choose to reset to only matters if entries were added/removed)
-
git commit
(required asgit rebase --continue
will also not run the commit hook) git rebase --continue
(repeat for each conflicting commit)
Likewise, when editing commits during a rebase, you cannot rely on
git rebase --continue
to edit your commits, you have to explicitely commit along the way. -
Hello,
I usually manually edit during the conflict but I will try to use the above workflow next time. I recently found out that the update-hash commit hook actually don't work for some software releases : software/powerdns and software/kvm are two examples, so I had to manually do it for them, I think the reason is that the hashes are not inside buildoutl.cfg but in software.cfg and common.cfg respectively. But I have to look deeper in the code to see if it is the real problem
-
Owner
I recently found out that the update-hash commit hook actually don't work for some software releases : software/powerdns and software/kvm are two examples
update-hash
only works onbuildout.hash.cfg
, it does not edit files it does not know. The whole puprpose ofbuildout.hash.cfg
, as stated in contained comment, it to contain only a minimal subset of buildout syntax so update-hash can safely rewrite it without destroying someone's change. As these SRs were not prepared for it,update-hash
does not touch these.Also,
buildout.hash.cfg
should only be created when one hasupdate-hash
hook enabled, or they will likely introduce a mistake which will annoy everybody with the hook enabled. It would be nice forupdate-hash
to only try to updatebuildout.hash.cfg
which do reference one of the files modified in any given commit, to reduce the annoyance spread. But the hope anyway is thatupdate-hash
will help everyone, so that everyone will eventually enable it... -
Thanks for the explanation, this makes sense to me. Hopefully things would be better when everyone will enable it :)