1 | $Id: README 281 2007-05-06 11:54:58Z peter $ |
---|
2 | |
---|
3 | This directory contains the 0.6 release of svndigest. |
---|
4 | |
---|
5 | svndigest is a tool to extract development information and statistics |
---|
6 | from a subversion repository. |
---|
7 | |
---|
8 | See the file NEWS for the user-visible changes from previous releases. |
---|
9 | In addition, there have been bugs fixed. |
---|
10 | |
---|
11 | For general building and installation instructions, see the file INSTALL. |
---|
12 | |
---|
13 | svndigest is free software. See the file COPYING for copying conditions. |
---|
14 | |
---|
15 | |
---|
16 | Downloading |
---|
17 | ----------- |
---|
18 | |
---|
19 | svndigest can be obtained from |
---|
20 | |
---|
21 | http://lev.thep.lu.se/trac/svndigest |
---|
22 | |
---|
23 | |
---|
24 | Documentation |
---|
25 | ------------- |
---|
26 | |
---|
27 | For documentation see the file doc/readme.txt. |
---|
28 | |
---|
29 | |
---|
30 | Development |
---|
31 | ----------- |
---|
32 | |
---|
33 | The development of svndigest can be monitored through |
---|
34 | |
---|
35 | http://lev.thep.lu.se/trac/svndigest |
---|
36 | |
---|
37 | You can find most information concerning the development of svndigest at |
---|
38 | this site. |
---|
39 | |
---|
40 | |
---|
41 | Bug Reporting |
---|
42 | ------------- |
---|
43 | |
---|
44 | You can report svndigest bugs on |
---|
45 | |
---|
46 | http://lev.thep.lu.se/trac/svndigest/newticket |
---|
47 | |
---|
48 | Use user `svndigest' and password `svndigest'. |
---|
49 | |
---|
50 | |
---|
51 | Subversion Access |
---|
52 | ----------------- |
---|
53 | |
---|
54 | The svndigest source repository is available via anonymous subversion |
---|
55 | from the thep subversion server; issue: |
---|
56 | |
---|
57 | svn checkout http://lev.thep.lu.se/repository/svndigest/trunk svndigest |
---|
58 | |
---|
59 | See file README.svn for developer specific information. We make no |
---|
60 | guarantees about the contents or quality of the latest code in the |
---|
61 | subversion repository: it is not unheard of for code that is known to |
---|
62 | be broken to checked in. Use at your own risk. |
---|
63 | |
---|
64 | |
---|
65 | Prerequisites |
---|
66 | ------------- |
---|
67 | |
---|
68 | ia) Subversion development files, i.e., header files and program |
---|
69 | libraries, version 1.4 or later. |
---|
70 | |
---|
71 | ib) This item should not be an issue if item ia) is fulfilled; the |
---|
72 | Apache Portable Runtime (APR) should be available if the subversion |
---|
73 | API was succesfully compiled. Subversion depends on APR and in |
---|
74 | consequence, the dependency is inherited by svndigest. |
---|
75 | |
---|
76 | ii) Gnuplot. |
---|
77 | |
---|
78 | iii) A standard C++ compliant compiler with one extension: svndigest |
---|
79 | must be compiled with a C++ compiler that supports 'long long' |
---|
80 | types - GCC does this. This is due to the fact that one of the |
---|
81 | underlying libraries, APR, is using 'long long'. APR is written in |
---|
82 | C and the C standard allows 'long long'. |
---|
83 | |
---|
84 | Even though the source is compiled with the -pedantic flag (which |
---|
85 | should catch the non C++ standard 'long long') there is another |
---|
86 | flag to suppress 'long long' diagnostics, -Wno-long-long. |
---|
87 | |
---|
88 | |
---|
89 | ====================================================================== |
---|
90 | Copyright (C) 2005, 2006 Jari Häkkinen |
---|
91 | Copyright (C) 2007 Peter Johansson |
---|
92 | |
---|
93 | This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest |
---|
94 | |
---|
95 | svndigest is free software; you can redistribute it and/or modify it |
---|
96 | under the terms of the GNU General Public License as published by the |
---|
97 | Free Software Foundation; either version 2 of the License, or (at your |
---|
98 | option) any later version. |
---|
99 | |
---|
100 | svndigest is distributed in the hope that it will be useful, but |
---|
101 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
102 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
103 | General Public License for more details. |
---|
104 | |
---|
105 | You should have received a copy of the GNU General Public License |
---|
106 | along with this program; if not, write to the Free Software |
---|
107 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
---|
108 | USA. |
---|
109 | ====================================================================== |
---|
110 | |
---|
111 | |
---|