Gentoo Archives: gentoo-commits

From: "Keri Harris (keri)" <keri@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/tuprolog/files: tuprolog-2.3.0_alpha-javadocs.patch build.xml
Date: Wed, 08 Sep 2010 08:35:41
Message-Id: 20100908083535.8592A20051@flycatcher.gentoo.org
1 keri 10/09/08 08:35:35
2
3 Modified: build.xml
4 Added: tuprolog-2.3.0_alpha-javadocs.patch
5 Log:
6 Version bump
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-lang/tuprolog/files/build.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/build.xml?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/build.xml?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/build.xml?r1=1.2&r2=1.3
15
16 Index: build.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/files/build.xml,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- build.xml 1 Feb 2007 09:19:08 -0000 1.2
23 +++ build.xml 8 Sep 2010 08:35:35 -0000 1.3
24 @@ -21,7 +21,13 @@
25
26 <!-- compile everything -->
27 <target depends="init" name="compile">
28 - <javac classpath="${classpath}" deprecation="on" destdir="${build.dir}" encoding="ISO-8859-1" source="1.4" srcdir="${src.dir}" target="1.4"/>
29 + <javac classpath="${gentoo.classpath}"
30 + deprecation="off"
31 + destdir="${build.dir}"
32 + encoding="ISO-8859-1"
33 + source="1.5"
34 + srcdir="${src.dir}"
35 + target="1.5"/>
36 <copy todir="${build.dir}">
37 <fileset dir="${src.dir}">
38 <exclude name="**/*.java"/>
39 @@ -36,7 +42,17 @@
40
41 <!-- generate javadocs -->
42 <target depends="init" name="javadoc">
43 - <javadoc author="true" destdir="${docs.dir}" encoding="ISO-8859-1" packagenames="alice.*" source="1.4" sourcepath="${src.dir}" use="true" version="true" windowtitle="${ant.project.name} API"/>
44 + <javadoc classpath="${gentoo.classpath}"
45 + author="true"
46 + destdir="${docs.dir}"
47 + encoding="ISO-8859-1"
48 + packagenames="alice.*"
49 + source="1.5"
50 + sourcepath="${src.dir}"
51 + use="true"
52 + version="true"
53 + windowtitle="${ant.project.name}
54 + API"/>
55 </target>
56
57 <!-- clean up -->
58 @@ -54,7 +70,13 @@
59 <include name="*.jar"/>
60 </fileset>
61 </path>
62 - <javac classpathref="dist.classpath" deprecation="on" destdir="${test.build.dir}" encoding="ISO-8859-1" source="1.4" srcdir="${test.dir}" target="1.4"/>
63 + <javac classpathref="dist.classpath"
64 + deprecation="off"
65 + destdir="${test.build.dir}"
66 + encoding="ISO-8859-1"
67 + source="1.5"
68 + srcdir="${test.dir}"
69 + target="1.5"/>
70 <junit haltonfailure="on" showoutput="no" printsummary="yes">
71 <classpath>
72 <path refid="dist.classpath"/>
73
74
75
76 1.1 dev-lang/tuprolog/files/tuprolog-2.3.0_alpha-javadocs.patch
77
78 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/tuprolog-2.3.0_alpha-javadocs.patch?rev=1.1&view=markup
79 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/tuprolog-2.3.0_alpha-javadocs.patch?rev=1.1&content-type=text/plain
80
81 Index: tuprolog-2.3.0_alpha-javadocs.patch
82 ===================================================================
83 diff -ur tuprolog.orig/src/alice/tuprolog/ChoicePointStore.java tuprolog/src/alice/tuprolog/ChoicePointStore.java
84 --- tuprolog.orig/src/alice/tuprolog/ChoicePointStore.java 2010-01-21 21:29:24.000000000 +1300
85 +++ tuprolog/src/alice/tuprolog/ChoicePointStore.java 2010-09-08 20:02:31.000000000 +1200
86 @@ -35,7 +35,6 @@
87
88 /**
89 * Return the actual choice-point store
90 - * @return
91 */
92 public ChoicePointContext getPointer() {
93 return pointer;
94 @@ -44,7 +43,6 @@
95 /**
96 * Check if a choice point exists in the store.
97 * As a side effect, removes choice points which have been already used and are now empty.
98 - * @return
99 */
100 protected boolean existChoicePoint() {
101 if (pointer == null) return false;
102 diff -ur tuprolog.orig/src/alice/tuprolog/ClauseStore.java tuprolog/src/alice/tuprolog/ClauseStore.java
103 --- tuprolog.orig/src/alice/tuprolog/ClauseStore.java 2010-01-21 21:29:24.000000000 +1300
104 +++ tuprolog/src/alice/tuprolog/ClauseStore.java 2010-09-08 20:04:18.000000000 +1200
105 @@ -58,8 +58,6 @@
106
107 /**
108 * Verify if there is a term in compatibleGoals compatible with goal.
109 - * @param goal
110 - * @param compGoals
111 * @return true if compatible or false otherwise.
112 */
113 protected boolean existCompatibleClause() {
114 diff -ur tuprolog.orig/src/alice/tuprolog/EngineManager.java tuprolog/src/alice/tuprolog/EngineManager.java
115 --- tuprolog.orig/src/alice/tuprolog/EngineManager.java 2010-01-21 21:29:24.000000000 +1300
116 +++ tuprolog/src/alice/tuprolog/EngineManager.java 2010-09-08 20:05:24.000000000 +1200
117 @@ -87,7 +87,7 @@
118 /**
119 * Solves a query
120 *
121 - * @param g the term representing the goal to be demonstrated
122 + * @param query the term representing the goal to be demonstrated
123 * @return the result of the demonstration
124 * @see SolveInfo
125 **/
126 diff -ur tuprolog.orig/src/alice/tuprolog/PrimitiveManager.java tuprolog/src/alice/tuprolog/PrimitiveManager.java
127 --- tuprolog.orig/src/alice/tuprolog/PrimitiveManager.java 2010-01-21 21:29:24.000000000 +1300
128 +++ tuprolog/src/alice/tuprolog/PrimitiveManager.java 2010-09-08 20:06:12.000000000 +1200
129 @@ -87,7 +87,7 @@
130 * This involves identifying structs representing builtin
131 * predicates and functors, and setting up related structures and links
132 *
133 - * @parm term the term to be identified
134 + * @param term the term to be identified
135 * @return term with the identified built-in directive
136 */
137 public Term identifyDirective(Term term) {
138 diff -ur tuprolog.orig/src/alice/tuprolog/lib/BasicLibrary.java tuprolog/src/alice/tuprolog/lib/BasicLibrary.java
139 --- tuprolog.orig/src/alice/tuprolog/lib/BasicLibrary.java 2010-05-28 10:11:46.000000000 +1200
140 +++ tuprolog/src/alice/tuprolog/lib/BasicLibrary.java 2010-09-08 20:06:48.000000000 +1200
141 @@ -109,7 +109,7 @@
142 /**
143 * Loads a library constructed from a theory.
144 *
145 - * @param theory
146 + * @param th
147 * theory text
148 * @param libName
149 * name of the library
150 diff -ur tuprolog.orig/src/alice/tuprolog/lib/IOLibrary.java tuprolog/src/alice/tuprolog/lib/IOLibrary.java
151 --- tuprolog.orig/src/alice/tuprolog/lib/IOLibrary.java 2010-02-09 19:56:58.000000000 +1300
152 +++ tuprolog/src/alice/tuprolog/lib/IOLibrary.java 2010-09-08 20:07:27.000000000 +1200
153 @@ -372,7 +372,7 @@
154 /**
155 * Sets an arbitrary seed for the Random object.
156 *
157 - * @param seed Seed to use
158 + * @param t Seed to use
159 * @return true if seed Term has a valid long value, false otherwise
160 */
161 public boolean set_seed_1(Term t) throws PrologError {
162 diff -ur tuprolog.orig/src/alice/tuprolog/lib/JavaLibrary.java tuprolog/src/alice/tuprolog/lib/JavaLibrary.java
163 --- tuprolog.orig/src/alice/tuprolog/lib/JavaLibrary.java 2010-01-21 21:29:24.000000000 +1300
164 +++ tuprolog/src/alice/tuprolog/lib/JavaLibrary.java 2010-09-08 20:08:01.000000000 +1200
165 @@ -1390,8 +1390,6 @@
166
167 /**
168 * Generates a fresh numeric identifier
169 - *
170 - * @return
171 */
172 protected Struct generateFreshId() {
173 return new Struct("$obj_" + id++);
174 diff -ur tuprolog.orig/src/alice/tuprologx/ide/LibraryDialogFrame.java tuprolog/src/alice/tuprologx/ide/LibraryDialogFrame.java
175 --- tuprolog.orig/src/alice/tuprologx/ide/LibraryDialogFrame.java 2010-01-21 21:29:22.000000000 +1300
176 +++ tuprolog/src/alice/tuprologx/ide/LibraryDialogFrame.java 2010-09-08 20:09:36.000000000 +1200
177 @@ -317,7 +317,6 @@
178 displayLibraryManagerStatus();
179 }
180
181 - /** @see alice.tuprologx.ide.SwingFrame#onClose()*/
182 public void closeLibraryDialog()
183 {
184 onClose();
185 diff -ur tuprolog.orig/src/alice/tuprologx/ide/ToolBar.java tuprolog/src/alice/tuprologx/ide/ToolBar.java
186 --- tuprolog.orig/src/alice/tuprologx/ide/ToolBar.java 2010-01-21 21:29:22.000000000 +1300
187 +++ tuprolog/src/alice/tuprologx/ide/ToolBar.java 2010-09-08 20:10:48.000000000 +1200
188 @@ -232,8 +232,6 @@
189
190 /**
191 * Set the tuProlog config frame
192 - *
193 - * @param libraryManager a libraryManager to associate to the libraryDialog
194 */
195 public void setPrologConfig(PrologConfigFrame configFrame)
196 {
197 diff -ur tuprolog.orig/src/alice/tuprologx/pj/lib/PJLibrary.java tuprolog/src/alice/tuprologx/pj/lib/PJLibrary.java
198 --- tuprolog.orig/src/alice/tuprologx/pj/lib/PJLibrary.java 2010-01-21 21:29:48.000000000 +1300
199 +++ tuprolog/src/alice/tuprologx/pj/lib/PJLibrary.java 2010-09-08 20:13:15.000000000 +1200
200 @@ -1252,7 +1252,6 @@
201
202 /**
203 * Generates a fresh numeric identifier
204 - * @return
205 */
206 protected Struct generateFreshId() {
207 return new Struct("$obj_" + id++);
208 diff -ur tuprolog.orig/src/alice/util/jedit/InputHandler.java tuprolog/src/alice/util/jedit/InputHandler.java
209 --- tuprolog.orig/src/alice/util/jedit/InputHandler.java 2010-01-21 21:29:24.000000000 +1300
210 +++ tuprolog/src/alice/util/jedit/InputHandler.java 2010-09-08 20:22:49.000000000 +1200
211 @@ -24,7 +24,7 @@
212 *
213 * @author Slava Pestov
214 * @version $Id: tuprolog-2.3.0_alpha-javadocs.patch,v 1.1 2010/09/08 08:35:35 keri Exp $
215 - * @see org.gjt.sp.jedit.textarea.DefaultInputHandler
216 + * @see alice.util.jedit.DefaultInputHandler
217 */
218 public abstract class InputHandler extends KeyAdapter
219 {
220 @@ -187,7 +187,7 @@
221 /**
222 * Grabs the next key typed event and invokes the specified
223 * action with the key as a the action command.
224 - * @param action The action
225 + * @param listener The action
226 */
227 public void grabNextKeyStroke(ActionListener listener)
228 {
229 diff -ur tuprolog.orig/src/alice/util/jedit/JEditTextArea.java tuprolog/src/alice/util/jedit/JEditTextArea.java
230 --- tuprolog.orig/src/alice/util/jedit/JEditTextArea.java 2010-01-21 21:29:24.000000000 +1300
231 +++ tuprolog/src/alice/util/jedit/JEditTextArea.java 2010-09-08 20:16:23.000000000 +1200
232 @@ -1389,7 +1389,7 @@
233
234 /**
235 * Sets if the selection should be rectangular.
236 - * @param overwrite True if the selection should be rectangular,
237 + * @param rectSelect True if the selection should be rectangular,
238 * false otherwise.
239 */
240 public final void setSelectionRectangular(boolean rectSelect)
241 diff -ur tuprolog.orig/src/alice/util/jedit/KeywordMap.java tuprolog/src/alice/util/jedit/KeywordMap.java
242 --- tuprolog.orig/src/alice/util/jedit/KeywordMap.java 2010-01-21 21:29:22.000000000 +1300
243 +++ tuprolog/src/alice/util/jedit/KeywordMap.java 2010-09-08 20:16:52.000000000 +1200
244 @@ -75,7 +75,7 @@
245 /**
246 * Adds a key-value mapping.
247 * @param keyword The key
248 - * @Param id The value
249 + * @param id The value
250 */
251 public void add(String keyword, byte id)
252 {
253 diff -ur tuprolog.orig/src/alice/util/jedit/TextAreaPainter.java tuprolog/src/alice/util/jedit/TextAreaPainter.java
254 --- tuprolog.orig/src/alice/util/jedit/TextAreaPainter.java 2010-01-21 21:29:24.000000000 +1300
255 +++ tuprolog/src/alice/util/jedit/TextAreaPainter.java 2010-09-08 20:18:43.000000000 +1200
256 @@ -75,7 +75,7 @@
257 /**
258 * Returns the syntax styles used to paint colorized text. Entry <i>n</i>
259 * will be used to paint tokens with id = <i>n</i>.
260 - * @see org.gjt.sp.jedit.syntax.Token
261 + * @see alice.util.jedit.Token
262 */
263 public final SyntaxStyle[] getStyles()
264 {
265 @@ -86,7 +86,7 @@
266 * Sets the syntax styles used to paint colorized text. Entry <i>n</i>
267 * will be used to paint tokens with id = <i>n</i>.
268 * @param styles The syntax styles
269 - * @see org.gjt.sp.jedit.syntax.Token
270 + * @see alice.util.jedit.Token
271 */
272 public final void setStyles(SyntaxStyle[] styles)
273 {
274 @@ -356,7 +356,7 @@
275
276 /**
277 * Repaints the text.
278 - * @param g The graphics context
279 + * @param gfx The graphics context
280 */
281 public void paint(Graphics gfx)
282 {
283 diff -ur tuprolog.orig/src/alice/util/jedit/TokenMarker.java tuprolog/src/alice/util/jedit/TokenMarker.java
284 --- tuprolog.orig/src/alice/util/jedit/TokenMarker.java 2010-01-21 21:29:22.000000000 +1300
285 +++ tuprolog/src/alice/util/jedit/TokenMarker.java 2010-09-08 20:19:08.000000000 +1200
286 @@ -24,7 +24,7 @@
287 * @author Slava Pestov
288 * @version $Id: tuprolog-2.3.0_alpha-javadocs.patch,v 1.1 2010/09/08 08:35:35 keri Exp $
289 *
290 - * @see org.gjt.sp.jedit.syntax.Token
291 + * @see alice.util.jedit.Token
292 */
293 public abstract class TokenMarker
294 {