Gentoo Archives: gentoo-commits

From: "Petteri Räty" <betelgeuse@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/libbash:master commit in: src/, src/builtins/tests/, src/core/, test/, src/core/tests/, utils/, ...
Date: Thu, 02 Jun 2011 11:49:06
Message-Id: e34dbb92557c29135a79d6ec65f8785670a40104.betelgeuse@gentoo
1 commit: e34dbb92557c29135a79d6ec65f8785670a40104
2 Author: Mu Qiao <qiaomuf <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 2 09:20:21 2011 +0000
4 Commit: Petteri Räty <betelgeuse <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 2 11:41:14 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/libbash.git;a=commit;h=e34dbb92
7
8 Coding standard: git log for author information
9
10 The author information can be found from git so just refer people
11 from that.
12
13 ---
14 coding_standard/coding_standard.tex | 3 +--
15 src/builtins/builtin_exceptions.h | 1 -
16 src/builtins/continue_builtin.cpp | 1 -
17 src/builtins/declare_builtin.cpp | 1 -
18 src/builtins/declare_builtin.h | 1 -
19 src/builtins/echo_builtin.cpp | 1 -
20 src/builtins/echo_builtin.h | 1 -
21 src/builtins/eval_builtin.cpp | 1 -
22 src/builtins/eval_builtin.h | 1 -
23 src/builtins/inherit_builtin.cpp | 1 -
24 src/builtins/inherit_builtin.h | 1 -
25 src/builtins/let_builtin.cpp | 1 -
26 src/builtins/return_builtin.cpp | 1 -
27 src/builtins/shopt_builtin.cpp | 1 -
28 src/builtins/source_builtin.cpp | 1 -
29 src/builtins/source_builtin.h | 1 -
30 src/builtins/tests/declare_tests.cpp | 1 -
31 src/builtins/tests/echo_tests.cpp | 1 -
32 src/builtins/unset_builtin.cpp | 1 -
33 src/common.h | 1 -
34 src/core/bash_ast.cpp | 1 -
35 src/core/bash_ast.h | 1 -
36 src/core/bash_condition.cpp | 1 -
37 src/core/bash_condition.h | 1 -
38 src/core/interpreter.cpp | 1 -
39 src/core/interpreter.h | 1 -
40 src/core/interpreter_exception.h | 1 -
41 src/core/symbols.hpp | 1 -
42 src/core/tests/bash_ast_test.cpp | 1 -
43 src/core/tests/bash_condition_test.cpp | 1 -
44 src/core/tests/interpreter_test.cpp | 1 -
45 src/core/tests/symbols_test.cpp | 1 -
46 src/core/unset_exception.h | 1 -
47 src/cppbash_builtin.cpp | 1 -
48 src/cppbash_builtin.h | 1 -
49 src/libbash.cpp | 1 -
50 src/libbash.h | 1 -
51 test/api_test.cpp | 1 -
52 test/post_check.cpp | 1 -
53 test/test.cpp | 1 -
54 test/test.h | 1 -
55 test/walker_test.cpp | 1 -
56 utils/metadata.cpp | 1 -
57 utils/metadata.h | 1 -
58 utils/metadata_generator.cpp | 1 -
59 utils/variable_printer.cpp | 1 -
60 46 files changed, 1 insertions(+), 47 deletions(-)
61
62 diff --git a/coding_standard/coding_standard.tex b/coding_standard/coding_standard.tex
63 index 4d663a1..469c523 100644
64 --- a/coding_standard/coding_standard.tex
65 +++ b/coding_standard/coding_standard.tex
66 @@ -55,11 +55,10 @@ Implementation files will NEVER be included by another file. Files with the ext
67 \section{Comments}
68 We only add comments for public members and methods. Comments for protected/private members and methods are not required.
69 \subsection{File comments}
70 -At the top of every file that has not been automatically generated, a comment block containing the file name, author name, brief description in the following form (Doxygen style commenting) after the licence comment block:
71 +At the top of every file that has not been automatically generated, a comment block containing the file name, brief description in the following form (Doxygen style commenting) after the licence comment block:
72 \begin{verbatim}
73 ///
74 /// \file: filename.h
75 -/// \author: author name
76 /// \brief description of the file
77 ///
78 \end{verbatim}
79
80 diff --git a/src/builtins/builtin_exceptions.h b/src/builtins/builtin_exceptions.h
81 index a5cc28b..d6eded4 100644
82 --- a/src/builtins/builtin_exceptions.h
83 +++ b/src/builtins/builtin_exceptions.h
84 @@ -18,7 +18,6 @@
85 */
86 ///
87 /// \file builtin_exceptions.h
88 -/// \author Mu Qiao
89 /// \brief implementations for builtin exceptions
90 ///
91
92
93 diff --git a/src/builtins/continue_builtin.cpp b/src/builtins/continue_builtin.cpp
94 index 87dd59a..07c269a 100644
95 --- a/src/builtins/continue_builtin.cpp
96 +++ b/src/builtins/continue_builtin.cpp
97 @@ -18,7 +18,6 @@
98 */
99 ///
100 /// \file continue_builtin.h
101 -/// \author Mu Qiao
102 /// \brief implementation for the continue builtin
103 ///
104 #include <boost/lexical_cast.hpp>
105
106 diff --git a/src/builtins/declare_builtin.cpp b/src/builtins/declare_builtin.cpp
107 index 90b127f..2a1d300 100644
108 --- a/src/builtins/declare_builtin.cpp
109 +++ b/src/builtins/declare_builtin.cpp
110 @@ -18,7 +18,6 @@
111 */
112 ///
113 /// \file declare_builtin.cpp
114 -/// \author Mu Qiao
115 /// \brief class that implements the declare builtin
116 ///
117 #include <algorithm>
118
119 diff --git a/src/builtins/declare_builtin.h b/src/builtins/declare_builtin.h
120 index 8a3b1ed..971933a 100644
121 --- a/src/builtins/declare_builtin.h
122 +++ b/src/builtins/declare_builtin.h
123 @@ -18,7 +18,6 @@
124 */
125 ///
126 /// \file declare_builtin.h
127 -/// \author Mu Qiao
128 /// \brief class that implements the declare builtin
129 ///
130
131
132 diff --git a/src/builtins/echo_builtin.cpp b/src/builtins/echo_builtin.cpp
133 index 0e21707..8d703ff 100644
134 --- a/src/builtins/echo_builtin.cpp
135 +++ b/src/builtins/echo_builtin.cpp
136 @@ -18,7 +18,6 @@
137 */
138 ///
139 /// \file echo_builtin.cpp
140 -/// \author Nathan Eloe
141 /// \brief class that implements the echo builtin
142 ///
143
144
145 diff --git a/src/builtins/echo_builtin.h b/src/builtins/echo_builtin.h
146 index df9d015..6de6475 100644
147 --- a/src/builtins/echo_builtin.h
148 +++ b/src/builtins/echo_builtin.h
149 @@ -18,7 +18,6 @@
150 */
151 ///
152 /// \file echo_builtin.h
153 -/// \author Nathan Eloe
154 /// \brief class that implements the echo builtin
155 ///
156
157
158 diff --git a/src/builtins/eval_builtin.cpp b/src/builtins/eval_builtin.cpp
159 index 5e5a61b..cf5d8fd 100644
160 --- a/src/builtins/eval_builtin.cpp
161 +++ b/src/builtins/eval_builtin.cpp
162 @@ -18,7 +18,6 @@
163 */
164 ///
165 /// \file eval_builtin.h
166 -/// \author Mu Qiao
167 /// \brief class that implements the eval builtin
168 ///
169
170
171 diff --git a/src/builtins/eval_builtin.h b/src/builtins/eval_builtin.h
172 index 87746e9..ea2222c 100644
173 --- a/src/builtins/eval_builtin.h
174 +++ b/src/builtins/eval_builtin.h
175 @@ -18,7 +18,6 @@
176 */
177 ///
178 /// \file eval_builtin.h
179 -/// \author Mu Qiao
180 /// \brief class that implements the eval builtin
181 ///
182
183
184 diff --git a/src/builtins/inherit_builtin.cpp b/src/builtins/inherit_builtin.cpp
185 index 4793d5c..e7597df 100644
186 --- a/src/builtins/inherit_builtin.cpp
187 +++ b/src/builtins/inherit_builtin.cpp
188 @@ -18,7 +18,6 @@
189 */
190 ///
191 /// \file inherit_builtin.cpp
192 -/// \author Mu Qiao
193 /// \brief class that implements the inherit builtin
194 ///
195
196
197 diff --git a/src/builtins/inherit_builtin.h b/src/builtins/inherit_builtin.h
198 index 6a2dc49..0e7f6ef 100644
199 --- a/src/builtins/inherit_builtin.h
200 +++ b/src/builtins/inherit_builtin.h
201 @@ -18,7 +18,6 @@
202 */
203 ///
204 /// \file inherit_builtin.h
205 -/// \author Mu Qiao
206 /// \brief class that implements the inherit function from Portage
207 ///
208
209
210 diff --git a/src/builtins/let_builtin.cpp b/src/builtins/let_builtin.cpp
211 index 43f28a3..04eb857 100644
212 --- a/src/builtins/let_builtin.cpp
213 +++ b/src/builtins/let_builtin.cpp
214 @@ -18,7 +18,6 @@
215 */
216 ///
217 /// \file let_builtin.h
218 -/// \author Mu Qiao
219 /// \brief implementation for the let builtin
220 ///
221 #include <sstream>
222
223 diff --git a/src/builtins/return_builtin.cpp b/src/builtins/return_builtin.cpp
224 index 3180345..161e530 100644
225 --- a/src/builtins/return_builtin.cpp
226 +++ b/src/builtins/return_builtin.cpp
227 @@ -18,7 +18,6 @@
228 */
229 ///
230 /// \file return_builtin.h
231 -/// \author Mu Qiao
232 /// \brief implementation for the return builtin
233 ///
234
235
236 diff --git a/src/builtins/shopt_builtin.cpp b/src/builtins/shopt_builtin.cpp
237 index 9d60d74..b3b8aac 100644
238 --- a/src/builtins/shopt_builtin.cpp
239 +++ b/src/builtins/shopt_builtin.cpp
240 @@ -18,7 +18,6 @@
241 */
242 ///
243 /// \file shopt_builtin.cpp
244 -/// \author Mu Qiao
245 /// \brief implementation for the shopt builtin
246 ///
247
248
249 diff --git a/src/builtins/source_builtin.cpp b/src/builtins/source_builtin.cpp
250 index 5f78177..4103576 100644
251 --- a/src/builtins/source_builtin.cpp
252 +++ b/src/builtins/source_builtin.cpp
253 @@ -18,7 +18,6 @@
254 */
255 ///
256 /// \file source_builtin.h
257 -/// \author Mu Qiao
258 /// \brief class that implements the source builtin
259 ///
260
261
262 diff --git a/src/builtins/source_builtin.h b/src/builtins/source_builtin.h
263 index 964d214..d599824 100644
264 --- a/src/builtins/source_builtin.h
265 +++ b/src/builtins/source_builtin.h
266 @@ -18,7 +18,6 @@
267 */
268 ///
269 /// \file source_builtin.h
270 -/// \author Mu Qiao
271 /// \brief class that implements the source builtin
272 ///
273
274
275 diff --git a/src/builtins/tests/declare_tests.cpp b/src/builtins/tests/declare_tests.cpp
276 index 4697aed..95c0949 100644
277 --- a/src/builtins/tests/declare_tests.cpp
278 +++ b/src/builtins/tests/declare_tests.cpp
279 @@ -19,7 +19,6 @@
280 ///
281 /// \file declare_tests.cpp
282 /// \brief series of unit tests for declare built in
283 -/// \author Mu Qiao Eloe
284 ///
285 #include <iostream>
286 #include <sstream>
287
288 diff --git a/src/builtins/tests/echo_tests.cpp b/src/builtins/tests/echo_tests.cpp
289 index bee9be5..7b38422 100644
290 --- a/src/builtins/tests/echo_tests.cpp
291 +++ b/src/builtins/tests/echo_tests.cpp
292 @@ -19,7 +19,6 @@
293 ///
294 /// \file echo_tests.cpp
295 /// \brief series of unit tests for echo built in
296 -/// \author Nathan Eloe
297 ///
298 #include <iostream>
299 #include <sstream>
300
301 diff --git a/src/builtins/unset_builtin.cpp b/src/builtins/unset_builtin.cpp
302 index 1490013..8266e9e 100644
303 --- a/src/builtins/unset_builtin.cpp
304 +++ b/src/builtins/unset_builtin.cpp
305 @@ -18,7 +18,6 @@
306 */
307 ///
308 /// \file unset_builtin.h
309 -/// \author Mu Qiao
310 /// \brief implementation for the unset builtin
311 ///
312 #include <functional>
313
314 diff --git a/src/common.h b/src/common.h
315 index ffc6492..537e8d8 100644
316 --- a/src/common.h
317 +++ b/src/common.h
318 @@ -18,7 +18,6 @@
319 */
320 ///
321 /// \file common.h
322 -/// \author Mu Qiao
323 /// \brief common macros and includes
324 ///
325
326
327 diff --git a/src/core/bash_ast.cpp b/src/core/bash_ast.cpp
328 index 8c23850..8033022 100644
329 --- a/src/core/bash_ast.cpp
330 +++ b/src/core/bash_ast.cpp
331 @@ -18,7 +18,6 @@
332 */
333 ///
334 /// \file bash_ast.cpp
335 -/// \author Mu Qiao
336 /// \brief a wrapper class that helps interpret from istream and string
337 ///
338 #include <fstream>
339
340 diff --git a/src/core/bash_ast.h b/src/core/bash_ast.h
341 index 5469d95..077a46a 100644
342 --- a/src/core/bash_ast.h
343 +++ b/src/core/bash_ast.h
344 @@ -18,7 +18,6 @@
345 */
346 ///
347 /// \file bash_ast.h
348 -/// \author Mu Qiao
349 /// \brief a class that helps interpret from istream and string
350 ///
351
352
353 diff --git a/src/core/bash_condition.cpp b/src/core/bash_condition.cpp
354 index 48b523e..9c3127f 100644
355 --- a/src/core/bash_condition.cpp
356 +++ b/src/core/bash_condition.cpp
357 @@ -18,7 +18,6 @@
358 */
359 ///
360 /// \file bash_condition.cpp
361 -/// \author Mu Qiao
362 /// \brief implementation for Bash Conditional Expressions
363 ///
364 #include <ctime>
365
366 diff --git a/src/core/bash_condition.h b/src/core/bash_condition.h
367 index 8723c28..a47a460 100644
368 --- a/src/core/bash_condition.h
369 +++ b/src/core/bash_condition.h
370 @@ -18,7 +18,6 @@
371 */
372 ///
373 /// \file bash_condition.h
374 -/// \author Mu Qiao
375 /// \brief implementation for Bash Conditional Expressions
376 ///
377 #ifndef LIBBASH_CORE_BASH_CONDITION_H_
378
379 diff --git a/src/core/interpreter.cpp b/src/core/interpreter.cpp
380 index fc12a7a..0518860 100644
381 --- a/src/core/interpreter.cpp
382 +++ b/src/core/interpreter.cpp
383 @@ -18,7 +18,6 @@
384 */
385 ///
386 /// \file interpreter.cpp
387 -/// \author Mu Qiao
388 /// \brief implementations for bash interpreter (visitor pattern).
389 ///
390
391
392 diff --git a/src/core/interpreter.h b/src/core/interpreter.h
393 index 46c3d6a..d564279 100644
394 --- a/src/core/interpreter.h
395 +++ b/src/core/interpreter.h
396 @@ -18,7 +18,6 @@
397 */
398 ///
399 /// \file interpreter.h
400 -/// \author Mu Qiao
401 /// \brief implementation for bash interpreter (visitor pattern)
402 ///
403
404
405 diff --git a/src/core/interpreter_exception.h b/src/core/interpreter_exception.h
406 index ae795dc..bc66a96 100644
407 --- a/src/core/interpreter_exception.h
408 +++ b/src/core/interpreter_exception.h
409 @@ -18,7 +18,6 @@
410 */
411 ///
412 /// \file interpreter_exception.h
413 -/// \author Mu Qiao
414 /// \brief implementation for interpreter_exception
415 ///
416
417
418 diff --git a/src/core/symbols.hpp b/src/core/symbols.hpp
419 index 8ceb25a..9ecff43 100644
420 --- a/src/core/symbols.hpp
421 +++ b/src/core/symbols.hpp
422 @@ -18,7 +18,6 @@
423 */
424 ///
425 /// \file symbols.hpp
426 -/// \author Mu Qiao
427 /// \brief template implementation for symbols and symbol table
428 ///
429
430
431 diff --git a/src/core/tests/bash_ast_test.cpp b/src/core/tests/bash_ast_test.cpp
432 index b2376fb..d335d80 100644
433 --- a/src/core/tests/bash_ast_test.cpp
434 +++ b/src/core/tests/bash_ast_test.cpp
435 @@ -18,7 +18,6 @@
436 */
437 ///
438 /// \file bash_ast_test.cpp
439 -/// \author Mu Qiao
440 /// \brief series of unit tests for interpreter.
441 ///
442
443
444 diff --git a/src/core/tests/bash_condition_test.cpp b/src/core/tests/bash_condition_test.cpp
445 index de56fee..58e9ce7 100644
446 --- a/src/core/tests/bash_condition_test.cpp
447 +++ b/src/core/tests/bash_condition_test.cpp
448 @@ -18,7 +18,6 @@
449 */
450 ///
451 /// \file bash_condition_test.cpp
452 -/// \author Mu Qiao
453 /// \brief series of unit tests for interpreter.
454 ///
455 #include <fcntl.h>
456
457 diff --git a/src/core/tests/interpreter_test.cpp b/src/core/tests/interpreter_test.cpp
458 index 6a39591..b023533 100644
459 --- a/src/core/tests/interpreter_test.cpp
460 +++ b/src/core/tests/interpreter_test.cpp
461 @@ -18,7 +18,6 @@
462 */
463 ///
464 /// \file interpreter_test.cpp
465 -/// \author Mu Qiao
466 /// \brief series of unit tests for interpreter.
467 ///
468
469
470 diff --git a/src/core/tests/symbols_test.cpp b/src/core/tests/symbols_test.cpp
471 index 358f5b6..cf24cf0 100644
472 --- a/src/core/tests/symbols_test.cpp
473 +++ b/src/core/tests/symbols_test.cpp
474 @@ -18,7 +18,6 @@
475 */
476 ///
477 /// \file symbols_test.cpp
478 -/// \author Mu Qiao
479 /// \brief series of unit tests for symbols and symbol table.
480 ///
481
482
483 diff --git a/src/core/unset_exception.h b/src/core/unset_exception.h
484 index 7ee6c03..7924512 100644
485 --- a/src/core/unset_exception.h
486 +++ b/src/core/unset_exception.h
487 @@ -18,7 +18,6 @@
488 */
489 ///
490 /// \file unset_exception.h
491 -/// \author Mu Qiao
492 /// \brief implementation for unset_exception
493 ///
494
495
496 diff --git a/src/cppbash_builtin.cpp b/src/cppbash_builtin.cpp
497 index a66622e..a0299a9 100644
498 --- a/src/cppbash_builtin.cpp
499 +++ b/src/cppbash_builtin.cpp
500 @@ -18,7 +18,6 @@
501 */
502 ///
503 /// \file cppbash_builtin.cpp
504 -/// \author Nathan Eloe
505 /// \brief Implementation of class to inherit builtins from
506 ///
507
508
509 diff --git a/src/cppbash_builtin.h b/src/cppbash_builtin.h
510 index 11c1edb..96d80a0 100644
511 --- a/src/cppbash_builtin.h
512 +++ b/src/cppbash_builtin.h
513 @@ -18,7 +18,6 @@
514 */
515 ///
516 /// \file cppbash_builtin.h
517 -/// \author Nathan Eloe
518 /// \brief Base class for builtin functions in bash
519 ///
520
521
522 diff --git a/src/libbash.cpp b/src/libbash.cpp
523 index bc94433..27ca38d 100644
524 --- a/src/libbash.cpp
525 +++ b/src/libbash.cpp
526 @@ -18,7 +18,6 @@
527 */
528 ///
529 /// \file libbash.cpp
530 -/// \author Mu Qiao
531 /// \brief implementation for libbash interface
532 ///
533
534
535 diff --git a/src/libbash.h b/src/libbash.h
536 index 05c5758..ab3a630 100644
537 --- a/src/libbash.h
538 +++ b/src/libbash.h
539 @@ -18,7 +18,6 @@
540 */
541 ///
542 /// \file libbash.h
543 -/// \author Mu Qiao
544 /// \brief public interface for libbash
545 ///
546
547
548 diff --git a/test/api_test.cpp b/test/api_test.cpp
549 index a724401..7744ebf 100644
550 --- a/test/api_test.cpp
551 +++ b/test/api_test.cpp
552 @@ -18,7 +18,6 @@
553 */
554 ///
555 /// \file api_test.cpp
556 -/// \author Mu Qiao
557 /// \brief series of unit tests for the public interface
558 ///
559
560
561 diff --git a/test/post_check.cpp b/test/post_check.cpp
562 index f7feebd..2a411f8 100644
563 --- a/test/post_check.cpp
564 +++ b/test/post_check.cpp
565 @@ -18,7 +18,6 @@
566 */
567 ///
568 /// \file post_check.cpp
569 -/// \author Mu Qiao
570 /// \brief series of unit tests for generated source files.
571 ///
572
573
574 diff --git a/test/test.cpp b/test/test.cpp
575 index da4bc9e..e460fc1 100644
576 --- a/test/test.cpp
577 +++ b/test/test.cpp
578 @@ -18,7 +18,6 @@
579 */
580 ///
581 /// \file test.cpp
582 -/// \author Mu Qiao
583 /// \brief helper functions for tests
584 ///
585 #include <cstdlib>
586
587 diff --git a/test/test.h b/test/test.h
588 index 18a1a31..ba5cd1f 100644
589 --- a/test/test.h
590 +++ b/test/test.h
591 @@ -18,7 +18,6 @@
592 */
593 ///
594 /// \file test.h
595 -/// \author Mu Qiao
596 /// \brief helper functions for tests
597 ///
598 #ifndef LIBBASH_TEST_H_
599
600 diff --git a/test/walker_test.cpp b/test/walker_test.cpp
601 index 41a4fc4..bfdba83 100644
602 --- a/test/walker_test.cpp
603 +++ b/test/walker_test.cpp
604 @@ -18,7 +18,6 @@
605 */
606 ///
607 /// \file lib_test.cpp
608 -/// \author Mu Qiao
609 /// \brief series of unit tests for generated walker.
610 ///
611
612
613 diff --git a/utils/metadata.cpp b/utils/metadata.cpp
614 index 899ef80..e200ab3 100644
615 --- a/utils/metadata.cpp
616 +++ b/utils/metadata.cpp
617 @@ -18,7 +18,6 @@
618 */
619 ///
620 /// \file metadata.cpp
621 -/// \author Mu Qiao
622 /// \brief a helper for printing metadata content
623 ///
624 #include <set>
625
626 diff --git a/utils/metadata.h b/utils/metadata.h
627 index cb7f559..7071ce0 100644
628 --- a/utils/metadata.h
629 +++ b/utils/metadata.h
630 @@ -18,7 +18,6 @@
631 */
632 ///
633 /// \file metadata.h
634 -/// \author Mu Qiao
635 /// \brief a helper for printing metadata content
636 ///
637 #include <iostream>
638
639 diff --git a/utils/metadata_generator.cpp b/utils/metadata_generator.cpp
640 index 14602f2..8951044 100644
641 --- a/utils/metadata_generator.cpp
642 +++ b/utils/metadata_generator.cpp
643 @@ -18,7 +18,6 @@
644 */
645 ///
646 /// \file metadata_generator.cpp
647 -/// \author Mu Qiao
648 /// \brief a simple utility for generating metadata
649 ///
650 #include <iostream>
651
652 diff --git a/utils/variable_printer.cpp b/utils/variable_printer.cpp
653 index 4a66d70..001e75e 100644
654 --- a/utils/variable_printer.cpp
655 +++ b/utils/variable_printer.cpp
656 @@ -18,7 +18,6 @@
657 */
658 ///
659 /// \file variable_printer.cpp
660 -/// \author Mu Qiao
661 /// \brief a program to write variables in a script into standard output
662 ///