2.1.4 is out Reproducible: Always Steps to Reproduce:
Created attachment 33190 [details, diff] patch to the 2.1.3 ebuild here's a patch that works for me
Created attachment 33191 [details] hibernate-2.1.4.ebuild in case it's easier for someone, here's the new ebuild
Closing, it is in portage in another 2 hours or so. Thanx for reporting. :)
This is really fast service. Excellent, thanks! However, next time you touch the ebuild I think you should use the suggested use-the-first-three-characters-from-$PV approach: S=${WORKDIR}/${PN}-${PV:0:3} in favour of the current remove-a-substring-from-$PV approach: S=${WORKDIR}/${PN}-${PV/.3} (now updated to S=${WORKDIR}/${PN}-${PV/.4}) I know this is nitpicking, and I apologize for that, but the remove-a-substring-from-$PV approach is a O(n) waste of your time, as the substring has to be changed by hand for each(!) new version of hibernate :) Here is the relevant section from BASH(1): ${parameter:offset:length} Substring Expansion. Expands to up to length characters of parameter starting at the character specified by offset. If length is omitted, expands to the substring of parameter start- ing at the character specified by offset. length and offset are arithmetic expressions (see ARITHMETIC EVALUATION below). length must evaluate to a number greater than or equal to zero. If offset evaluates to a number less than zero, the value is used as an offset from the end of the value of parameter. If parameter is @, the result is length positional parameters beginning at offset. If parameter is an array name indexed by @ or *, the result is the length members of the array beginning with ${parameter[offset]}. Substring indexing is zero-based unless the positional parameters are used, in which case the indexing starts at 1.