mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-31 09:08:08 -07:00
* Inline patches from tarball in SRC_URI (404'd). We were already deleting some patches from it and there was a lot of fuzz in another (obsolete patch for interix). * EAPI 8 * Add support for ruby32 (comes with this release). * Drop old libutf8proc hack & depend on newer version so we can drop that hack. * Run tests in parallel which helps a fair bit. * Run tests with -Onone so it doesn't look like they're hanging. * Add misc. missing || dies. Closes: https://bugs.gentoo.org/919090 Signed-off-by: Sam James <sam@gentoo.org>
20 lines
688 B
Diff
20 lines
688 B
Diff
With newer versions of javadoc (since JDK-1.8), "make doc-javahl"
|
|
reports many errors, causing build failures. Add "-Xdoclint:none"
|
|
option to restore old, sloppy behavior.
|
|
|
|
Patch created for subversion-1.8.16, should work for other other
|
|
versions, too.
|
|
See <https://bugs.gentoo.org/show_bug.cgi?id=551094>
|
|
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -650,7 +650,7 @@
|
|
|
|
# Generate API documentation for the JavaHL package.
|
|
doc-javahl:
|
|
- $(JAVADOC) -d $(abs_builddir)/doc/javadoc \
|
|
+ $(JAVADOC) -Xdoclint:none -d $(abs_builddir)/doc/javadoc \
|
|
-sourcepath $(top_srcdir)/subversion/bindings/javahl/src \
|
|
-link http://java.sun.com/javase/6/docs/api/ \
|
|
org.tigris.subversion.javahl \
|