public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mark Wright (gienah)" <gienah@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/kodkod: kodkod-1.5.2.ebuild ChangeLog
Date: Sun, 22 Jun 2014 13:52:20 +0000 (UTC)	[thread overview]
Message-ID: <20140622135220.3AB892004E@flycatcher.gentoo.org> (raw)

gienah      14/06/22 13:52:20

  Modified:             kodkod-1.5.2.ebuild ChangeLog
  Log:
  Use waf 1.7.16 instead of 1.7.6 in kodkod to try to fix Bug 513978. Specify the classpath to javadoc.  Use the javadoc -Xdoclint:none option for java 1.8 and later versions.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 618E971F)

Revision  Changes    Path
1.4                  sci-mathematics/kodkod/kodkod-1.5.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/kodkod/kodkod-1.5.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/kodkod/kodkod-1.5.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/kodkod/kodkod-1.5.2.ebuild?r1=1.3&r2=1.4

Index: kodkod-1.5.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/kodkod/kodkod-1.5.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kodkod-1.5.2.ebuild	11 Feb 2014 14:29:54 -0000	1.3
+++ kodkod-1.5.2.ebuild	22 Jun 2014 13:52:20 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/kodkod/kodkod-1.5.2.ebuild,v 1.3 2014/02/11 14:29:54 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/kodkod/kodkod-1.5.2.ebuild,v 1.4 2014/06/22 13:52:20 gienah Exp $
 
 EAPI="5"
 
@@ -11,7 +11,7 @@
 DESCRIPTION="a constraint solver for relational logic"
 HOMEPAGE="http://alloy.mit.edu/kodkod/index.html"
 SRC_URI="http://alloy.mit.edu/kodkod/${PV}/${P}.zip
-	http://waf.googlecode.com/files/waf-1.7.6"
+	http://waf.googlecode.com/files/waf-1.7.16"
 LICENSE="MIT"
 SLOT="0/${PV}"
 KEYWORDS="~amd64 ~x86"
@@ -85,7 +85,14 @@
 	waf-utils_src_compile
 	if has doc ${JAVA_PKG_IUSE} && use doc; then
 		pushd src/kodkod || die "Could not cd to src/kodkod"
-		javadoc $(find . -name \*.java -print) \
+		local doclint="-Xdoclint:none"
+		local jv="$(javac -version 2>&1 | cut -d' ' -f 2)"
+		if [[ "${jv}" == 1.6* ]] || [[ "${jv}" == 1.7* ]]; then
+			doclint=""
+		fi
+		javadoc ${doclint} -sourcepath "${S}"/src/kodkod:"${S}"/build/src/kodkod \
+			-classpath $(find "${PWD}" -name \*.jar -print | xargs | sed -e 's@ @:@g') \
+			$(find . -name \*.java -print) \
 			|| die "javadoc failed"
 		popd
 	fi



1.5                  sci-mathematics/kodkod/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/kodkod/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/kodkod/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/kodkod/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/kodkod/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	11 Feb 2014 14:29:54 -0000	1.4
+++ ChangeLog	22 Jun 2014 13:52:20 -0000	1.5
@@ -1,6 +1,11 @@
 # ChangeLog for sci-mathematics/kodkod
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/kodkod/ChangeLog,v 1.4 2014/02/11 14:29:54 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/kodkod/ChangeLog,v 1.5 2014/06/22 13:52:20 gienah Exp $
+
+  22 Jun 2014; Mark Wright <gienah@gentoo.org> kodkod-1.5.2.ebuild:
+  Use waf 1.7.16 instead of 1.7.6 in kodkod to try to fix Bug 513978. Specify
+  the classpath to javadoc.  Use the javadoc -Xdoclint:none option for java 1.8
+  and later versions.
 
   11 Feb 2014; Mark Wright <gienah@gentoo.org> kodkod-1.5.2.ebuild:
   Fix bug 458462 - sci-mathematics/kodkod-1.5.2: fails to build with





             reply	other threads:[~2014-06-22 13:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-22 13:52 Mark Wright (gienah) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-01-03 12:26 [gentoo-commits] gentoo-x86 commit in sci-mathematics/kodkod: kodkod-1.5.2.ebuild ChangeLog Michal Gorny (mgorny)
2014-02-11 14:29 Mark Wright (gienah)
2013-02-02 13:22 Mark Wright (gienah)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140622135220.3AB892004E@flycatcher.gentoo.org \
    --to=gienah@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox