forked from hypermail-project/hypermail
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.CVS
91 lines (60 loc) · 3.27 KB
/
README.CVS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[ DEPRECATED We're now using github : https://github.com/hypermail-project/hypermail ]
Hypermail CVS Server Access
----
Hypermail Development has a CVS server, where we (try to) keep the
latest changes (usually hot out of the oven) and anyone is welcome to
use it. Thanks to Elliot Lee <[email protected]> for helping with
setting it up, Daniel Stenberg <[email protected]> with his
contributions. And many thanks to Ashley M. Kirchner <[email protected]>
for hosting and managing the hypermail CVS server.
------------------------------------
Setting up the CVS software locally:
If you system does not have cvs installed on it already then you
need to do the following to install the client locally.
- Obtain the cvs source at ftp://ftp.cvshome.org/pub/
For more information on CVS stop by http://www.cvshome.org/
- Compile and install the client (you can disable the server with
the --disable-server during the 'configure' command. Read the
INSTALL file once you're uncompressed the archive)
------------------------------------
General information on accessing the Hypermail CVS repository:
Hypermail CVS Archive Address:
:pserver:[email protected]:/CVS
The 'cvs' user doesn't have a password, so just hit return when it
asks you for one. The cvs user is setup for read access only.
------------------------------------
Step by Step information on accessing the Hypermail CVS repository:
Aftering installing the CVS software:
- Set your CVSROOT enviroment:
For sh, bash and ksh users, execute the following commands:
CVSROOT=:pserver:[email protected]:/CVS
export CVSROOT
(or you can stick them in your .profile and/or .bash_profile file)
For C shell users (csh, tcsh), you can do the following:
setenv CVSROOT :pserver:[email protected]:/CVS
(or stick it in your .cshrc and/or .login file)
- From here you can login to the server with:
$ cvs login
(Logging in to [email protected])
CVS password: <-- hit RETURN (cvs user password is blank)
- Now you're ready to grab the source
$ cvs checkout hypermail
This will create a mirror of the sources in your account/on your
machine called 'hypermail' that you can then compile and play
with.
- Once done, don't forget to log out:
$ cvs logout
All of the above commands can be performed without having to set a
CVSROOT enviroment if you want, it's just a lot more to type in since
you'll have to specify the directory every time with:
-d :pserver:[email protected]:/CVS
For example, you would need to use the following to execute the login
command
cvs -d :pserver:[email protected]:/CVS login
cvs -d :pserver:[email protected]:/CVS checkout hypermail
cvs -d :pserver:[email protected]:/CVS logout
------------------------------------
Browsing the Hypermail CVS Archive:
You can also browse the repository at:
http://cvsweb.hypermail.org/
----