From cf0d31821b66ddeea08c275b7f0e0f55850c8655 Mon Sep 17 00:00:00 2001 From: Keri Harris Date: Fri, 8 Jun 2007 06:17:16 +0000 Subject: Version bump. (Portage version: 2.1.2.7) --- dev-lang/tuprolog/ChangeLog | 8 +- dev-lang/tuprolog/files/digest-tuprolog-2.1 | 3 + .../tuprolog/files/tuprolog-2.1-javadocs.patch | 165 +++++++++++++++++++++ dev-lang/tuprolog/tuprolog-2.1.ebuild | 56 +++++++ 4 files changed, 231 insertions(+), 1 deletion(-) create mode 100644 dev-lang/tuprolog/files/digest-tuprolog-2.1 create mode 100644 dev-lang/tuprolog/files/tuprolog-2.1-javadocs.patch create mode 100644 dev-lang/tuprolog/tuprolog-2.1.ebuild (limited to 'dev-lang/tuprolog') diff --git a/dev-lang/tuprolog/ChangeLog b/dev-lang/tuprolog/ChangeLog index bf2fa13c3f23..2b07d932b18d 100644 --- a/dev-lang/tuprolog/ChangeLog +++ b/dev-lang/tuprolog/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-lang/tuprolog # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/ChangeLog,v 1.14 2007/06/07 08:25:21 keri Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/ChangeLog,v 1.15 2007/06/08 06:17:16 keri Exp $ + +*tuprolog-2.1 (08 Jun 2007) + + 08 Jun 2007; keri +files/tuprolog-2.1-javadocs.patch, + +tuprolog-2.1.ebuild: + Version bump. 07 Jun 2007; keri files/tuprolog-2.0.1-javadocs.patch: Fix javadocs patch. Closes #176413. diff --git a/dev-lang/tuprolog/files/digest-tuprolog-2.1 b/dev-lang/tuprolog/files/digest-tuprolog-2.1 new file mode 100644 index 000000000000..b93d9cddb166 --- /dev/null +++ b/dev-lang/tuprolog/files/digest-tuprolog-2.1 @@ -0,0 +1,3 @@ +MD5 81493862beb2afed23193bef27504eb8 2p-2.1.zip 1833108 +RMD160 5065324deae2c59712e8054dd47902a418501a93 2p-2.1.zip 1833108 +SHA256 e0ff06ba2b453f82fc896d7163b09694636b23153673385f154af2d8059d629d 2p-2.1.zip 1833108 diff --git a/dev-lang/tuprolog/files/tuprolog-2.1-javadocs.patch b/dev-lang/tuprolog/files/tuprolog-2.1-javadocs.patch new file mode 100644 index 000000000000..65bd7fc48500 --- /dev/null +++ b/dev-lang/tuprolog/files/tuprolog-2.1-javadocs.patch @@ -0,0 +1,165 @@ +diff -ur src.orig/alice/tuprolog/ChoicePointStore.java src/alice/tuprolog/ChoicePointStore.java +--- src.orig/alice/tuprolog/ChoicePointStore.java 2007-04-23 10:10:38.000000000 +1200 ++++ src/alice/tuprolog/ChoicePointStore.java 2007-06-08 07:46:21.000000000 +1200 +@@ -35,7 +35,6 @@ + + /** + * Return the actual choice-point store +- * @return + */ + public ChoicePointContext getPointer() { + return pointer; +@@ -44,7 +43,6 @@ + /** + * Check if a choice point exists in the store. + * As a side effect, removes choice points which have been already used and are now empty. +- * @return + */ + protected boolean existChoicePoint() { + if (pointer == null) return false; +diff -ur src.orig/alice/tuprolog/ClauseStore.java src/alice/tuprolog/ClauseStore.java +--- src.orig/alice/tuprolog/ClauseStore.java 2007-04-23 10:10:38.000000000 +1200 ++++ src/alice/tuprolog/ClauseStore.java 2007-06-08 07:45:36.000000000 +1200 +@@ -58,8 +58,6 @@ + + /** + * Verify if there is a term in compatibleGoals compatible with goal. +- * @param goal +- * @param compGoals + * @return true if compatible or false otherwise. + */ + protected boolean existCompatibleClause() { +diff -ur src.orig/alice/tuprolog/EngineManager.java src/alice/tuprolog/EngineManager.java +--- src.orig/alice/tuprolog/EngineManager.java 2007-04-23 10:10:40.000000000 +1200 ++++ src/alice/tuprolog/EngineManager.java 2007-06-08 07:44:50.000000000 +1200 +@@ -85,7 +85,7 @@ + /** + * Solves a query + * +- * @param g the term representing the goal to be demonstrated ++ * @param query the term representing the goal to be demonstrated + * @return the result of the demonstration + * @see SolveInfo + **/ +diff -ur src.orig/alice/tuprolog/PrimitiveManager.java src/alice/tuprolog/PrimitiveManager.java +--- src.orig/alice/tuprolog/PrimitiveManager.java 2007-04-23 10:10:38.000000000 +1200 ++++ src/alice/tuprolog/PrimitiveManager.java 2007-06-08 07:44:07.000000000 +1200 +@@ -87,7 +87,7 @@ + * This involves identifying structs representing builtin + * predicates and functors, and setting up related structures and links + * +- * @parm term the term to be identified ++ * @param term the term to be identified + * @return term with the identified built-in directive + */ + public Term identifyDirective(Term term) { +diff -ur src.orig/alice/tuprolog/lib/BasicLibrary.java src/alice/tuprolog/lib/BasicLibrary.java +--- src.orig/alice/tuprolog/lib/BasicLibrary.java 2007-04-23 10:10:40.000000000 +1200 ++++ src/alice/tuprolog/lib/BasicLibrary.java 2007-06-08 07:42:23.000000000 +1200 +@@ -96,7 +96,7 @@ + /** + * Loads a library constructed from a theory. + * +- * @param theory theory text ++ * @param th theory text + * @param libName name of the library + * @return true if the library has been succesfully loaded. + */ +diff -ur src.orig/alice/tuprolog/lib/JavaLibrary.java src/alice/tuprolog/lib/JavaLibrary.java +--- src.orig/alice/tuprolog/lib/JavaLibrary.java 2007-04-23 10:10:38.000000000 +1200 ++++ src/alice/tuprolog/lib/JavaLibrary.java 2007-06-08 07:43:33.000000000 +1200 +@@ -1226,7 +1226,6 @@ + + /** + * Generates a fresh numeric identifier +- * @return + */ + protected Struct generateFreshId() { + return new Struct("$obj_" + id++); +diff -ur src.orig/alice/util/jedit/InputHandler.java src/alice/util/jedit/InputHandler.java +--- src.orig/alice/util/jedit/InputHandler.java 2007-04-23 10:10:38.000000000 +1200 ++++ src/alice/util/jedit/InputHandler.java 2007-06-07 21:20:15.000000000 +1200 +@@ -24,7 +24,7 @@ + * + * @author Slava Pestov + * @version $Id: InputHandler.java,v 1.14 1999/12/13 03:40:30 sp Exp $ +- * @see org.gjt.sp.jedit.textarea.DefaultInputHandler ++ * @see alice.util.jedit.DefaultInputHandler + */ + public abstract class InputHandler extends KeyAdapter + { +@@ -187,7 +187,7 @@ + /** + * Grabs the next key typed event and invokes the specified + * action with the key as a the action command. +- * @param action The action ++ * @param listener The action + */ + public void grabNextKeyStroke(ActionListener listener) + { +diff -ur src.orig/alice/util/jedit/JEditTextArea.java src/alice/util/jedit/JEditTextArea.java +--- src.orig/alice/util/jedit/JEditTextArea.java 2007-04-23 10:10:38.000000000 +1200 ++++ src/alice/util/jedit/JEditTextArea.java 2007-06-07 21:19:06.000000000 +1200 +@@ -1389,7 +1389,7 @@ + + /** + * Sets if the selection should be rectangular. +- * @param overwrite True if the selection should be rectangular, ++ * @param rectSelect True if the selection should be rectangular, + * false otherwise. + */ + public final void setSelectionRectangular(boolean rectSelect) +diff -ur src.orig/alice/util/jedit/KeywordMap.java src/alice/util/jedit/KeywordMap.java +--- src.orig/alice/util/jedit/KeywordMap.java 2007-04-23 10:10:38.000000000 +1200 ++++ src/alice/util/jedit/KeywordMap.java 2007-06-07 21:17:18.000000000 +1200 +@@ -75,7 +75,7 @@ + /** + * Adds a key-value mapping. + * @param keyword The key +- * @Param id The value ++ * @param id The value + */ + public void add(String keyword, byte id) + { +diff -ur src.orig/alice/util/jedit/TextAreaPainter.java src/alice/util/jedit/TextAreaPainter.java +--- src.orig/alice/util/jedit/TextAreaPainter.java 2007-04-23 10:10:38.000000000 +1200 ++++ src/alice/util/jedit/TextAreaPainter.java 2007-06-07 21:18:00.000000000 +1200 +@@ -75,7 +75,7 @@ + /** + * Returns the syntax styles used to paint colorized text. Entry n + * will be used to paint tokens with id = n. +- * @see org.gjt.sp.jedit.syntax.Token ++ * @see alice.util.jedit.Token + */ + public final SyntaxStyle[] getStyles() + { +@@ -86,7 +86,7 @@ + * Sets the syntax styles used to paint colorized text. Entry n + * will be used to paint tokens with id = n. + * @param styles The syntax styles +- * @see org.gjt.sp.jedit.syntax.Token ++ * @see alice.util.jedit.Token + */ + public final void setStyles(SyntaxStyle[] styles) + { +@@ -356,7 +356,7 @@ + + /** + * Repaints the text. +- * @param g The graphics context ++ * @param gfx The graphics context + */ + public void paint(Graphics gfx) + { +diff -ur src.orig/alice/util/jedit/TokenMarker.java src/alice/util/jedit/TokenMarker.java +--- src.orig/alice/util/jedit/TokenMarker.java 2007-04-23 10:10:40.000000000 +1200 ++++ src/alice/util/jedit/TokenMarker.java 2007-06-07 21:15:17.000000000 +1200 +@@ -24,7 +24,7 @@ + * @author Slava Pestov + * @version $Id: TokenMarker.java,v 1.32 1999/12/13 03:40:30 sp Exp $ + * +- * @see org.gjt.sp.jedit.syntax.Token ++ * @see alice.util.jedit.Token + */ + public abstract class TokenMarker + { diff --git a/dev-lang/tuprolog/tuprolog-2.1.ebuild b/dev-lang/tuprolog/tuprolog-2.1.ebuild new file mode 100644 index 000000000000..8044acb0eac8 --- /dev/null +++ b/dev-lang/tuprolog/tuprolog-2.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/tuprolog-2.1.ebuild,v 1.1 2007/06/08 06:17:16 keri Exp $ + +inherit eutils java-pkg-2 java-ant-2 + +MY_P="2p-${PV}" +MY_SRC_P="src-J2SE-${PV}" + +DESCRIPTION="tuProlog is a light-weight Prolog for Internet applications and infrastructures" +HOMEPAGE="http://www.alice.unibo.it/tuProlog/" +SRC_URI="mirror://sourceforge/tuprolog/2p-2.1.zip" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc test" + +DEPEND=">=virtual/jdk-1.4 + app-arch/unzip + dev-java/ant-core + test? ( dev-java/ant-tasks + dev-java/junit )" +RDEPEND=">=virtual/jdk-1.4" + +S="${WORKDIR}" + +src_unpack() { + unpack ${A} + epatch "${FILESDIR}"/${P}-javadocs.patch + + cd "${S}" + cp "${FILESDIR}"/build.xml "${S}" +} + +src_compile() { + eant jar $(use_doc) +} + +src_test() { + cd "${S}"/dist + java-pkg_jar-from junit + cd "${S}" + eant test || die "eant test failed" +} + +src_install() { + java-pkg_dojar dist/${PN}.jar + + if use doc ; then + java-pkg_dohtml -r docs/* + dodoc doc/*.pdf + fi + + dodoc CHANGELOG +} -- cgit v1.2.3-65-gdbad