[84] | 1 | $Id: README 281 2007-05-06 11:54:58Z peter $ |
---|
[26] | 2 | |
---|
[281] | 3 | This directory contains the 0.6 release of svndigest. |
---|
[84] | 4 | |
---|
[281] | 5 | svndigest is a tool to extract development information and statistics |
---|
| 6 | from a subversion repository. |
---|
[84] | 7 | |
---|
[281] | 8 | See the file NEWS for the user-visible changes from previous releases. |
---|
| 9 | In addition, there have been bugs fixed. |
---|
[84] | 10 | |
---|
[281] | 11 | For general building and installation instructions, see the file INSTALL. |
---|
[84] | 12 | |
---|
[281] | 13 | svndigest is free software. See the file COPYING for copying conditions. |
---|
[84] | 14 | |
---|
| 15 | |
---|
[281] | 16 | Downloading |
---|
| 17 | ----------- |
---|
[221] | 18 | |
---|
[281] | 19 | svndigest can be obtained from |
---|
[185] | 20 | |
---|
[281] | 21 | http://lev.thep.lu.se/trac/svndigest |
---|
[221] | 22 | |
---|
| 23 | |
---|
[281] | 24 | Documentation |
---|
| 25 | ------------- |
---|
[185] | 26 | |
---|
[281] | 27 | For documentation see the file doc/readme.txt. |
---|
[185] | 28 | |
---|
[26] | 29 | |
---|
[281] | 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 | |
---|
[162] | 68 | ia) Subversion development files, i.e., header files and program |
---|
[136] | 69 | libraries, version 1.4 or later. |
---|
| 70 | |
---|
[162] | 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 | |
---|
[136] | 76 | ii) Gnuplot. |
---|
| 77 | |
---|
[149] | 78 | iii) A standard C++ compliant compiler with one extension: svndigest |
---|
[136] | 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 |
---|
[162] | 81 | underlying libraries, APR, is using 'long long'. APR is written in |
---|
[136] | 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 | |
---|
[281] | 89 | ====================================================================== |
---|
| 90 | Copyright (C) 2005, 2006 Jari Häkkinen |
---|
| 91 | Copyright (C) 2007 Peter Johansson |
---|
[136] | 92 | |
---|
[281] | 93 | This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest |
---|
[136] | 94 | |
---|
[281] | 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. |
---|
[136] | 99 | |
---|
[281] | 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. |
---|
[136] | 104 | |
---|
[281] | 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 | ====================================================================== |
---|
[185] | 110 | |
---|
| 111 | |
---|