Bug 991985
| Summary: | aqute-bnd: FTBFS in rawhide | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Dennis Gilmore <dennis> | ||||
| Component: | aqute-bnd | Assignee: | Jaromír Cápík <jcapik> | ||||
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
| Severity: | unspecified | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 20 | CC: | dmorganec, java-sig-commits, jcapik, mizdebsk, ovasik, puntogil | ||||
| Target Milestone: | --- | Keywords: | Patch, Triaged | ||||
| Target Release: | --- | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2014-05-09 17:21:58 UTC | Type: | --- | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Bug Depends On: | |||||||
| Bug Blocks: | 991858, 1009784, 1051573 | ||||||
| Attachments: |
|
||||||
|
Description
Dennis Gilmore
2013-08-05 03:03:44 UTC
*** Bug 979498 has been marked as a duplicate of this bug. *** Created attachment 792593 [details] fix rhbz#991985, add source compatibility with ant 1.9 - fix rhbz#991985 - add source compatibility with ant 1.9 - remove and rebuild from source aQute.runtime.jar - update to current packaging guidelines Task info: http://koji.fedoraproject.org/koji/taskinfo?taskID=5878867 This bug appears to have been reported against 'rawhide' during the Fedora 20 development cycle. Changing version to '20'. More information and reason for this action is here: https://fedoraproject.org/wiki/BugZappers/HouseKeeping/Fedora20 (In reply to gil cattaneo from comment #2) > Created attachment 792593 [details] > fix rhbz#991985, add source compatibility with ant 1.9 I this patch, but it doesn't apply cleanly. http://koji.fedoraproject.org/koji/taskinfo?taskID=5954759 *** Bug 1015119 has been marked as a duplicate of this bug. *** Still fails to build: http://koji.fedoraproject.org/koji/taskinfo?taskID=6373255 I'll look into it soon. i confirm this fixes the build. I merged the patch and fixed the rejected hunks, but the build still fails on Base64 ambiguity. (In reply to Jaromír Cápík from comment #8) > I merged the patch and fixed the rejected hunks, but the build still fails > on Base64 ambiguity. build.log is available? otherwise can you try to change import aQute.lib.base64.*; with import aQute.lib.base64.Base64; to the following files: aQute/bnd/signing/Signer.java thus is a java8 issues regards I've already patched that ... closing and thanks for the patch. The following is the correct solution: - ps.print(new Base64(digest)); + ps.print(new aQute.lib.base64.Base64(digest)); ... - + new Base64(digest) + "\r\n"; + + new aQute.lib.base64.Base64(digest) + "\r\n"; |