Per bug 190429 jump fails a single test addFailure(testValueOf_double, expected:<4.9E-324> but was:<0.0>) Went ahead and stabilized the package but still should be resolved at some point. :)
NumberCentralTests line 233: assertEquals(Double.MIN_VALUE, NumberCentral.valueOf(Double.MIN_VALUE).doubleValue(), 0.0); Fail because the conversions introduce a normal imprecision. Proposed Correction: Two values are equal if the separation is <= minimal value assertEquals(Double.MIN_VALUE, NumberCentral.valueOf(Double.MIN_VALUE).doubleValue(), Double.MIN_VALUE); ------------------------------------------------------- NumberCentralTests line 234: assertEquals(Double.MIN_VALUE, NumberCentral.valueOf(Double.MAX_VALUE).doubleValue(), 0.0); Proposed Correction: idem previous and typo correction to test MAX vs MAX and not MIN vs Max assertEquals(Double.MAX_VALUE, NumberCentral.valueOf(Double.MAX_VALUE).doubleValue(), Double.MIN_VALUE);
Created attachment 133032 [details, diff] jump-0.5.patch
Created attachment 133034 [details] jump-0.5.ebuild add patch to apply previous proposed correction
(In reply to comment #2) > Created an attachment (id=133032) [edit] > jump-0.5.patch > Patch committed. Thanks for it. Sorry about the delay.