You can download Logtalk stable releases or the latest development version by connecting to the Logtalk CVS repository using a CVS client (available for most operating systems).
If you are using a CVS client with a GUI interface, please read the program documentation to learn how to configure it to access the CVS server with the following parameters:
- access method:
pserver
- server address:
cvs.logtalk.org
- cvsroot:
/usr/local/cvsroot
- module name:
logtalk
- username:
anonymous
- password: (none, leave the field blank)
If you are using MacOS X, Unix, BSD, or Linux, you can download the latest version typing the following commands at the command line. First change to the directory where you want to download the sources. Then log in to the CVS server by typing:
user% cvs -d :pserver:anonymous@cvs.logtalk.org:/usr/local/cvsroot login
Just hit Return when you are asked for a password. Next, download the source files:
user% cvs -d :pserver:anonymous@cvs.logtalk.org:/usr/local/cvsroot checkout -d lgtcvs logtalk
A directory named lgtcvs
will be created in your current working directory containing the latest versions of the Logtalk source files.
From now on, every time you want to update the Logtalk source files to the latest version you can type (from within the lgtcvs
directory, after logging in to the CVS server):
user% cvs -d :pserver:anonymous@cvs.logtalk.org:/usr/local/cvsroot update -d
Please use up to date CVS clients supporting client-server connections (the pserver
access method). The server itself is running on cvs
version 1.11.17
.
If you want to download a Logtalk stable version source files, you can use the following tags with your CVS client:
lgt2300
lgt2295
lgt2294
lgt2293
lgt2292
lgt2291
lgt2290
lgt2282
lgt2281
lgt2280
lgt2271
lgt2270
lgt2262
lgt2261
lgt2260
lgt2253
lgt2252
lgt2251
lgt2250
lgt2240
lgt2231
lgt2230
lgt2225
lgt2224
lgt2223
lgt2222
lgt2221
lgt2220
lgt2216
lgt2215
lgt2214
lgt2213
lgt2212
lgt2211
lgt2210
lgt2202
lgt2201
lgt2200
lgt2191
lgt2190
lgt2180
lgt2172
lgt2171
lgt2170
lgt2162
lgt2161
lgt2160
lgt2156
lgt2155
lgt2154
lgt2153
lgt2152
lgt2151
lgt2150
lgt2147
lgt2146
lgt2145
lgt2144
lgt2143
lgt2142
lgt2141
lgt2140
lgt2130
lgt2120
lgt2110
lgt2100
lgt293
lgt292
lgt291
For example, to download version 2.30.0 you can use the command:
user% cvs -d :pserver:anonymous@cvs.logtalk.org:/usr/local/cvsroot checkout -r lgt2300 -d lgtcvs logtalk
The command above will create a folder named lgtcvs
in your current working directory.