*** empty log message ***
[bpt/guile.git] / ANON-CVS
1 Anonymous CVS access to Guile ========================================
2
3 We make the current Guile sources available via anonymous CVS. Please
4 keep in mind that these sources are strictly experimental; they will
5 usually not be well-tested, and may not even compile on some systems.
6 They may contain interfaces which will change. They will usually not
7 be of sufficient quality for use by people not comfortable hacking the
8 innards of Guile. Caveat!
9
10 However, we're providing them anyway for several reasons. We'd like
11 to encourage people to get involved in developing Guile. People
12 willing to use the bleeding edge of development can get earlier access
13 to new, experimental features. Patches submitted relative to recent
14 sources will be easier for us to evaluate and install, since the
15 patch's original sources will be closer to what we're working with.
16 And it allows us to start testing features earlier.
17
18 Since the CVS tree is arranged for the convenience of the developers,
19 it requires GCC and GNU Make, which together support automatic
20 dependency management.
21
22 To check out a CVS working directory:
23
24 1) Install CVS version 1.9 or later on your system.
25 2) Log into the CVS server:
26 $ cvs -d :pserver:anoncvs@egcs.cygnus.com:/cvs/guile login
27 At the prompt for `CVS password:', type `anoncvs'.
28 Once you have logged in, your password is saved in ~/.cvspass, and you
29 will not need to enter it again.
30 3) Check out a module:
31 $ cvs -z 9 -d :pserver:anoncvs@egcs.cygnus.com:/cvs/guile checkout guile-core
32 This should create a new directory `guile-core' in your current
33 directory, and populate it with the current Guile sources.
34
35 The modules available for checkout are:
36 guile-core --- The scheme interpreter itself.
37 guile-doc --- Guile documentation-in-progress.
38 guile-tcltk --- An interface between Guile and Tcl/Tk.
39 guile-scsh --- An incomplete port of SCSH 0.4.4 to Guile.
40 guile-rgx-ctax --- This has been discontinued; use Andrew Archibald's
41 distribution instead:
42 ftp://ftp.red-bean.com/pub/guile/contrib/misc/guile-lang-allover-0.1.tar.gz
43
44 Once you have a working directory, you can bring it up to date easily
45 and efficiently:
46
47 1) Go to the top directory of the source tree. That is, your current
48 directory should be the one containing `configure.in', `README',
49 and so on.
50 2) Do the update:
51 $ cvs update
52
53 This will incorporate any changes the developers have made to Guile
54 since your last update into your source tree.
55
56 The EGCS Project is kindly lending us space, time, and bandwidth on
57 their CVS server. Thanks, folks!
58
59
60 Change Notification ==================================================
61
62 If you would like to receive mail when people commit changes to the
63 Guile CVS repository, you can subscribe to guile-cvs@egcs.cygnus.com
64 by sending a message to guile-cvs-subscribe@egcs.cygnus.com. Even
65 better, you can get daily digests of these commit messages by sending
66 a message to guile-cvs-digest-subscribe@egcs.cygnus.com.
67
68 If you want to subscribe an e-mail address other than the one that
69 appears in your From: header, say foo@bar.com, send a mail note to
70 guile-cvs-subscribe-foo=bar.com@egcs.cygnus.com.
71
72
73 Questions ============================================================
74
75 (I don't know if they'll be "frequently asked" or not yet!)
76
77 - It takes forever to do an update; what can I do to speed it up?
78
79 CVS tries to be smart about what it sends; it will transmit and
80 install only those files that have changed, and will sometimes
81 transmit and apply patches instead, to save transmission time.
82
83 It is also possible to have CVS compress transmitted data, using zlib.
84 Put the following line in your ~/.cvsrc file:
85
86 cvs -z 9
87
88 See the CVS documentation for more details.
89
90
91 - What happens if I've changed files in my working directory, and then
92 I do an update?
93
94 If you have made local changes to your sources, the `cvs update'
95 command will not overwrite them; instead, CVS will try to merge its
96 changes with your changes, as if you had applied a patch. Rejects are
97 marked in the sources.
98
99 - Why does the build process try to run autoconf, aclocal, or automake?
100
101 It shouldn't; if it does, that's a bug, I think. Those are the
102 tools we use to generate `configure', `aclocal.m4', and the
103 `Makefile.in' files from their respective sources. Ideally, you
104 shouldn't need to have them installed, if you don't want to change
105 those sources. If you do, see the section in `README' called
106 `Hacking It Yourself'.