Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/devtodo/files: devtodo-0.1.20-gentoo.diff digest-devtodo-0.1.20
Date: Mon, 17 Sep 2007 10:30:07
Message-Id: E1IXDkG-0004jH-55@stork.gentoo.org
1 jokey 07/09/17 10:22:24
2
3 Added: devtodo-0.1.20-gentoo.diff digest-devtodo-0.1.20
4 Log:
5 Version bump for bug #191684 also bunch of bugs fixed upstream++
6 (Portage version: 2.1.3.9)
7
8 Revision Changes Path
9 1.1 app-misc/devtodo/files/devtodo-0.1.20-gentoo.diff
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/devtodo/files/devtodo-0.1.20-gentoo.diff?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/devtodo/files/devtodo-0.1.20-gentoo.diff?rev=1.1&content-type=text/plain
13
14 Index: devtodo-0.1.20-gentoo.diff
15 ===================================================================
16 --- devtodo-0.1.20.orig/doc/devtodo.1.in 2004-12-17 10:21:09.135350872 -0500
17 +++ devtodo-0.1.20/doc/devtodo.1.in 2004-12-17 10:21:34.050210242 -0500
18 @@ -20,9 +20,6 @@
19 .TP
20 \fBtdd \fI<indices>\fP\fP
21 Mark the specified items as being done.
22 -.TP
23 -\fBtdl [\-g \fI<index>\fP] \fI<database>\fP\fP
24 -Link the specified devtodo database into the current one, optionally grafting it as a child of the specified index.
25 .SH "DESCRIPTION"
26 .LP
27 \fBtodo\fP is a program aimed specifically at programmers (but usable by anybody at the terminal) to aid in day\-to\-day development.
28 @@ -372,6 +369,10 @@
29 .TP
30 \fB~/.todorc\fR
31 User-specific options are specified in this file. Please refer to the section \fBTODORC\fR for more information.
32 +.SH "BUGS"
33 +.LP
34 +Because of a conflict with app-misc/tdl, the tdl symbolic link and the tdl manual page have been removed.
35 +See \fIhttp://bugs.gentoo.org/show_bug.cgi?id=55371\fR for more information.
36 .SH "AUTHORS"
37 .LP
38 Alec Thomas \fI<alec@×××××××.org>\fR
39 --- devtodo-0.1.20.orig/doc/Makefile.am 2004-12-17 10:21:09.135350872 -0500
40 +++ devtodo-0.1.20/doc/Makefile.am 2004-12-17 10:21:34.050210242 -0500
41 @@ -1,5 +1,5 @@
42 man_MANS=devtodo.1
43 -manlinks=tda tdr tdd tde tdl todo
44 +manlinks=tda tdr tdd tde todo
45
46 install-data-local:
47 mkdir -p $(DESTDIR)$(mandir)/man1
48 --- devtodo-0.1.20.orig/src/TodoDB.cc 2004-12-17 10:21:09.136350706 -0500
49 +++ devtodo-0.1.20/src/TodoDB.cc 2004-12-17 10:21:34.054209577 -0500
50 @@ -949,7 +948,11 @@
51 if (out.bad())
52 throw exception("couldn't open TODO for generation");
53
54 - if (titleText != "") wraptext(out, titleText, 0, options.columns);
55 + if (titleText != "") {
56 + wraptext(out, titleText, 0, options.columns);
57 + out << endl << endl;
58 + }
59 +
60 if (options.verbose > 1)
61 cout << "todo: generating using format '" << options.format["verbose-generated"] << "'" << endl;
62 filterView();
63 --- devtodo-0.1.20/contrib/devtodo.bash-completion {cset 9b4d9f02-fdb7-4641-b07f-7359b794d6b0}
64 +++ devtodo-0.1.20/contrib/devtodo.bash-completion {local clone}
65 @@ -35,6 +35,6 @@ _devtodo() {
66 ;;
67 esac
68 }
69 -complete -o filenames -F _devtodo devtodo todo tda tde tdr tdd tdl
70 +complete -o filenames -F _devtodo devtodo todo tda tde tdr tdd
71
72 # vim: set ft=sh tw=80 sw=4 et :
73 --- devtodo-0.1.20/src/support.cc {cset 5f5bd9cb-18fb-4046-bff5-4f3dbd781e47}
74 +++ devtodo-0.1.20/src/support.cc {local clone}
75 @@ -289,11 +289,10 @@ enum { Help = -100, Remove, Version, Tit
76 << "Where <arguments> can be any of the following:" << endl;
77 args.displayHelp(cout, options.columns);
78 cout << endl
79 - << "In addition, there are five convenience symlinks. These are 'tda', 'tdr'," << endl
80 - << "'tdd', 'tde', and 'tdl'. For 'tde', 'tdd' and 'tdr' supply an index to edit," << endl
81 + << "In addition, there are four convenience symlinks. These are 'tda', 'tdr'," << endl
82 + << "'tdd', and 'tde'. For 'tde', 'tdd' and 'tdr' supply an index to edit," << endl
83 << "mark done and remove respectively. For 'tda' supply the text of the todo item" << endl
84 - << "item and optionally the priority. For 'tdl' supply the path to another todo" << endl
85 - << "file to link in to the current todo file." << endl
86 + << "item and optionally the priority." << endl
87 << "eg. tde 1" << endl;
88 exit(0);
89 break;
90 --- devtodo-0.1.20/src/Makefile.am 2007-09-17 12:12:55.000000000 +0200
91 +++ devtodo-0.1.20/src/Makefile.am 2007-09-17 12:13:43.000000000 +0200
92 @@ -1,7 +1,7 @@
93 bin_PROGRAMS=devtodo
94 devtodo_SOURCES=Todo.cc Todo.h TodoDB.cc TodoDB.h support.cc support.h \
95 main.cc todoterm.cc todoterm.h Loaders.cc Loaders.h todorl.h
96 -binlinks=tda tdr tdd tdl tde todo
97 +binlinks=tda tdr tdd tde todo
98
99 devtodo_LDADD=../util/libutil.la
100 INCLUDES=-I../util
101
102
103
104 1.1 app-misc/devtodo/files/digest-devtodo-0.1.20
105
106 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/devtodo/files/digest-devtodo-0.1.20?rev=1.1&view=markup
107 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/devtodo/files/digest-devtodo-0.1.20?rev=1.1&content-type=text/plain
108
109 Index: digest-devtodo-0.1.20
110 ===================================================================
111 MD5 4a6241437cb56f237f850bcd2233c3c4 devtodo-0.1.20.tar.gz 390935
112 RMD160 389201318faa5ff6d302bd5f8c8f8b094664b45c devtodo-0.1.20.tar.gz 390935
113 SHA256 379c6ac4499fc97e9676075188f7217e324e7ece3fb6daeda7bf7969c7093e09 devtodo-0.1.20.tar.gz 390935
114
115
116
117 --
118 gentoo-commits@g.o mailing list