AminetAminet
Search:
84782 packages online
About
Recent
Browse
Search
Upload
Setup
Services

dev/misc/cvs-1.11.4.lha

Mirror:Random
Showing: i386-aros icongeneric icon
No screenshot available
Short:CVS 1.11.4 - Concurrent Versions System (AmigaOS/MorphOS port)
Author:"Olaf Barthel" olsen at sourcery.han.de "Jens Langner" Jens.Langner at light-speed.de
Uploader:Jens Langner <Jens Langner light-speed de>
Type:dev/misc
Version:1.11.4
Architecture:m68k-amigaos,ppc-morphos
Date:2005-02-13
Replaces:util/gnu/cvs-1.11.4.lha
Download:dev/misc/cvs-1.11.4.lha - View contents
Readme:dev/misc/cvs-1.11.4.readme
Downloads:1187

CVS 1.11.4 AmigaOS/MorphOS port (18 November 2004)
==================================================

Introduction
------------
This is a somewhat rough port of GNU CVS 1.11.4, a version control system,
which allows you to keep old versions of files (usually source code), keep a
log of who, when, and why changes occurred, etc., like RCS or SCCS. It handles
multiple developers, multiple directories, triggers to enable/log/control
various operations, and can work over a wide area network. The following tasks
are not included; they can be done in conjunction with CVS but will tend to
require some script-writing and software other than CVS: bug-tracking, build
management (that is, make and make-like tools), and automated testing. (Quoted
from the CVS documentation.)

I call this a 'rough port' since it is not as polished as, say Heinz Wrobel's
excellent 'RCS' port. It does what it needs to do, but a few features are
sorely lacking, such as full support for Amiga file protection bits. On the other
hand, however, you get everything, and perhaps more, you got with the previous
Amiga ports of CVS: this port does not require 'ixemul.library' to work and it
does not require an RCS installation because it is completely self contained.
The port would also probably win a price as the largest 'pure' executable; it
can be made resident.


What's in this package?
-----------------------
This distribution contains the Amiga port, the Amiga specific source code and
most of the original GNU CVS 1.11.4 distribution. 'Most' in this case means
that only the original source code has been omitted in order to keep the
distribution archive small; the documentation and support files are all
provided. The original source code can be downloaded from the Internet at
'ftp://ftp.cvshome.org/pub/cvs-1.11.4/cvs-1.11.4.tar.gz'. I have added two
more files which are converted from the original Unix man pages, namely
'cvs.1.man' and 'cvs.5.man' whose sources can be found in the
'cvs-1.11.4/man' directory.


Installation; the easy part
---------------------------
Almost everything you need to get CVS up and running is contained in the
archive which also includes the 'README.AMIGA' file you are currently reading.
And that means the 'cvs' executable. You will also need a working
'queue-handler' (the one that ships with Workbench 3.1 and beyond is,
unfortunately, broken) which can be found on Aminet (you can find the archive
at 'http://us.aminet.net/pub/aminet/util/sys/HWGQueue.lha'). A TCP/IP stack
like Miami or AmiTCP is supported but not strictly required: you can perfectly
well keep your CVS repository on your local machine. Since CVS may ask you to
edit the log entries associated with the files to store, you may want to
configure the 'EDITOR' environment variable. Last, but not least, you must set
up an environment variable which allows CVS to associate you with the changes
you made; this should be the 'USER', 'LOGUSER' or 'USERNAME' variable.

Most importantly, this port requires Kickstart 2.04 or higher.

Here is how you could set up CVS on your machine. We start by creating two
drawers on the 'Work:' volume:

   MakeDir Work:CVS-Root
   MakeDir Work:CVS-Home

Next, we add two lines to the 'S:User-Startup' file:

   Assign CVSHOME: Work:CVS-Home
   Path CVSHOME: Add

The CVS program will need to be copied:

   Copy cvs Work:CVS-Home CLONE

And the path to the CVS repository needs to be set:

   SetEnv CVSROOT :local:Work:CVS-Root
   Copy ENV:CVSROOT ENVARC:

Two environment variables need to be set up. Most importantly, CVS will need
your ID to write it into the log and revision files it creates. The Amiga port
will query three environment variables for that information, in the following
order: 'USER', 'LOGUSER' and 'USERNAME'. This means if the variable 'USER' is
not set, it will proceed to check whether 'LOGUSER' is set, and so forth. You
may have already configured these variables, but if you haven't, I suggest you
set up the 'LOGUSER' variable, like this:

   SetEnv LOGUSER <Your ID here>
   Copy ENV:LOGUSER ENVARC:

Note that <Your ID here> should be replaced by a mnemonic, nick name or short
name that must not contain any blank space characters. This means for example
that "Fred Flintstone" will not work, but "Fred_Flintstone" will.

You may want to configure the 'EDITOR' environment variable to invoke your
preferred text editor when CVS requests that log messages are added for an
update. If this variable is not set, CVS will default to invoke the 'Ed'
editor. This can be problematic if you have installed 'CygnusEd' whose 'Ed'
program detaches from the Shell that invoked it. When CVS invokes the editor,
it expects it to return only when the user has finished editing the respective
file. Here is an example configuration for CygnusEd:

   SetEnv EDITOR Ed -keepio

And here is one for TurboText:

   SetEnv EDITOR TTX WAIT

Don't forget to save the environment variable setting to make it permanent,
like this:

   Copy ENV:EDITOR ENVARC:

Finally, install the 'queue-handler' from Aminet and reboot your machine. When
the system is again up and running, initialize the CVS repository like this:

   cvs init

And that's all. Well, maybe you want to add a few default options to the
configuration file CVS reads upon startup. That file should be placed in the
'CVSHOME:' directory and called '.cvsrc'.


Networked operation and SSH
---------------------------
This CVS port includes built-in remote shell (rsh) and secure shell (ssh)
client code, which allows you to exchange files with networked, non-local CVS
repositories. To use a remote repository, you will need to change the name of
the CVS root directory. For a local repository, you would use the following
commands to set it up, like this:

   SetEnv CVSROOT :local:Work:CVS-Root
   Copy ENV:CVSROOT ENVARC:

But if the repository were on a remote machine, you would use something like
this:

   SetEnv CVSROOT :server:login@host:/usr/local/cvsroot
   Copy ENV:CVSROOT ENVARC:

In that example, you would replace 'login' with your account name on the
networked machine called 'host'; the '/usr/local/cvsroot' refers to the fully
qualified name of the CVS root directory. Note that for this to work, you need
to have a shell login account on the remote machine, and that machine must be
configured to allow for remote shell login. Because the remote shell login is
rather risky and insecure, most sites will have it disabled. Bad luck, but
there is an alternative: secure shell. This feature allows you to connect to a
remote repository as with a remote shell login, except that the connection is
made in a much more secure fashion using encrypted data channels. This process
requires that you have a login password handy, for which the CVS port will
prompt you before it connects to the remote. To activate the secure shell
feature, you would set an environment variable, like this:

   SetEnv CVS_RSH ssh

This will cause the built-in secure shell (ssh) client to be used in place of
the remote shell (rsh) client. The secure shell client implementation is a
stripped down, simplified version of the real thing, the full-blown version,
which supports more different and more secure encryption algorithms. What this
version can do is just about the bare minimum, which means that it supports
only two block cipher algorithms ('Triple DES' and 'Blowfish') and that the
initial public key exchange is not as fast as it could be. It supports only
version 1.5 of the secure shell protocol.

By default, the ssh client will resort to 'Triple DES' for encryption and
decryption, which is not particularly fast. To choose the 'Blowfish' algorithm
instead (which runs faster than 'Triple DES'), use the following environment
variable:

   SetEnv CVS_SSH_CIPHER blowfish

Not all secure shell server implementations support the 'Blowfish' algorithm,
but all servers are required to support 'Triple DES'. Thus, if you cannot
connect to a server which aborts the protocol negotiation, it may be that it
does not understand the choice of the encryption algorithm.

CAUTION: The majority of the CVS documentation I know recommends to use the
         keyword ':ext:' in place of ':server:' for communicating with a
         networked CVS installation -- this will *NOT* work with this Amiga
         port. What does work are the built-in rsh and ssh clients, and these
         require that you use the ':server:' keyword when specifying the name
         of the CVS root directory. Therefore the :ext: method is disabled
         in this port!

By default, the SSH client will attempt to connect to the server on port 22.
This is not always desirable, especially for custom SSH configurations. You
can override this default choice of the port number using yet another
environment variable, like this:

   SetEnv CVS_SSH_PORT 33194

By default the built-in ssh client will prompt you to enter the password to
authenticate with the remote server. By public request, a special feature was
added to this CVS port which will cause server name, login and password to be
stored in a local file for use with ssh.

If you want to use this feature you have would set up the following
environment variable:

    SetEnv CVS_SSH_PASSFILE CVSHOME:.sshpass

We do not recommend that you use this feature because it compromises system
security. You may want to use this feature only if you do not care about
security and are prepared to face the consequences. We suggest that you store
the ssh password file in a place different from the one you keep the passwords
used by the :pserver: access method in. Do not mix the two files; undefined
CVS behaviour may result.

All these settings and more can be stored in a configuration file which the
ssh client will use with regard to which server is involved. The configuration
file name must be set as an environment variable, like this:

   SetEnv CVS_SSH_PASSFILE CVSHOME:.sshconfig

In the "CVSHOME:.sshconfig" you would store the following:

   Host   <First host name>
   Port   <First Port number>
   User   <First User name>
   Cipher <First Cipher name>

   Host   <Second host name>
   Port   <Second Port number>
   User   <Second User name>
   Cipher <Second Cipher name>

   ...

In place of <First host name> you would write the name of the server, as you
would use it in the "cvs -d :server:" specification. The port number and
cipher correspond to the environment variable values CVS_SSH_PORT and
CVS_SSH_CIPHER, respectively. You can also provide a default name, if you
don't provide one on the command line. Note that all these settings are relevant
only for the server you configured them for. Multiple configuration sections
may be specified, if necessary. Make sure to introduce a configuration
section with a "Host" line.

Last but not least, a word on data compression. The SSH specification allows
for data to be compressed before it is encrypted. This functionality is not
implemented in the reduced SSH implementation which is part of this Amiga CVS
port. This sounds like a disadvantage, but it need not to be. In fact, CVS can
use data compression for data exchange, and the SSH layer on top of it could
not have compressed this data any further. That's entropy for you...


Usage
-----
I personally found the default CVS documentation to be rather confusing. If
you don't know rather well what CVS is good for, then the examples, the
terminology, all this doesn't seem to make great sense. My introduction to CVS
followed with Karl Fogel's book "Open Source Development with CVS" which
describes in compact form what CVS is and how it may be used. I suggest that
you consult the book (portions of which are available from 'www.coriolis.com')
and/or the CVS documentation (which has been included with this archive in the
'cvs-1.11.4/doc' drawer) for hints and ideas on how to use the program. I would
definitely not recommend that you spend any money on the CVS pocket reference
manual written by Gregor N. Purdy, published by O'Reilly until *after* you
have read an introductory book like Karl Fogel's. By its very nature, even a
good pocket reference manual can only refresh your memory on concepts you have
learned before -- if there is nothing to be refreshed in the first place, it
will not be of any help to you.

What many people fail to realize and what keeps them from using CVS in place
of the revision control system they have used for years is that you do not
need a networked CVS repository in order to use CVS. A local repository will
do. In fact, I switched over most of my current software development projects
to use a single local repository after I realized that CVS does much better
what I had previously used RCS for.

Further documentation and information CVS can be found on the CVS home page:

   http://www.cvshome.org/

For a good tutorial have a look at:

   http://cvsbook.red-bean.com/cvsbook.html


Notes on the implementation
---------------------------
The Amiga port implements only the client side of the CVS system. This means
that you can check out projects on remote servers but your local Amiga cannot
be a CVS server itself. This feature was omitted deliberately since I could
not find a safe and useful way to make CVS server mode work on the Amiga.
AmigaOS is not a server operating system and shoehorning the code to make it
work somehow would not have helped. If you need a CVS server, try a dedicated
solution using, for example, 'NetBSD'. The Amiga port can communicate with the
server using the remote shell (rsh) and secure shell (ssh) protocols, and I
have verified that the process works reasonably well with, for example, the
public 'Samba' CVS repository.

CVS does not have a very sophisticated porting layer. Its file name semantics
all stem from the Unix world and the 'OS/2', 'VMS' and 'Windows NT' ports
merely resort to flipping slashes in file names, if necessary, when it comes
to make a name fit the local system's semantics. I had to find a similar way
to make the semantics work on the Amiga. What I did was to add a translation
service in the Amiga specific code which knows how to translate names like '.'
or '..'. But that's where it ends. Any more sophisticated naming schemes like
'foo/.././bar' may fail to translate properly. But then, those complex
patterns should be pretty rare anyway.

Unlike Heinz Wrobel's excellent 'RCS' port, this CVS port does not preserve
Amiga file protection bits for files checked in. When you check in a project
and check it out again, all file and directory protection bits will default to
'rwed', losing the 'archived', 'pure' and 'script' bits.

The Amiga port will expand wild card patterns for file and directory names
specified as command line parameters, such as "#?.c". The wild card pattern
syntax is that of AmigaDOS. It is *not* the syntax of the standard regular
expressions other GNU tools will use.

You can access remote CVS repositories by means of a properly configured
TCP/IP stack. This port requires that the stack complies to the AmiTCP V3 API
definition, which all modern Amiga TCP/IP stacks do. It does not work with the
INet-225 TCP/IP stack, though.

When CVS resorts to calling external programs, a working 'PIPE:' device is
required, which is not yet part of the AmigaOS Workbench distribution. Do not
underestimate this. The program will fail or behave erratically without a
working 'PIPE:' device. It is strongly recommended to download a working
'queue-handler', such as from Aminet.

The source code for the Amiga port is included in this distribution. All you
need to know before you can recompile this CVS port is described in the file
'README.SRC' which you can find in the 'source' directory.

This is a 'single user' CVS port. There is just one single home directory
(referred to as 'CVSHOME:') and your login name and ID are assumed to be the
same (set in the 'USER', 'LOGUSER' or 'USERNAME' environment variables).

There is no 'cvsbug' shell script or program included with this port.


Known problems and issues
-------------------------

1) Problems with time zones

This port completely ignores the "ENVARC:TZ" time zone variable and uses your
locale time zone configuration instead. While this should normally be the most
transparent solution, daylight savings time is not taken into account. You may
have to change your locale preferences accordingly.

2) File names longer than supported by the file system

Another issue that can produce problems while working with CVS on the Amiga
involves remote repositories (:pserver: or :server: method) which contain
files and directories whose names are longer than the Amiga file system allows
for. These names will be truncated when the respective files and directories
are checked out, which has the unpleasant effect that you may not be able to
check the files in again.

3) .cvspass error message with :pserver:

If you use the :pserver: method with CVS a message like the following can
appear:

--- cut here ---
DH0: > cvs login
Logging in to :pserver:damato@linux:2401/data/cvsroot/amiga
CVS password:
cvs login: failed to open CVSHOME:.cvspass for reading: No such file or directory
cvs [login aborted]: fatal error: exiting
--- cut here ---

The solution for this problem is quite simple. Just create an empty ".cvspass"
file in your CVSHOME: directory (e.g. "Echo >CVSHOME:.cvspass noline") and
next time CVS will use this file to store the passwords. This is normal CVS
behaviour like in other ports.


Contacting the authors
----------------------
If you have any further questions on this port, feel free to contact us:

   Olaf Barthel
   Gneisenaustr. 43
   D-31275 Lehrte
   Federal Republic of Germany

   olsen@sourcery.han.de

   Jens Langner
   Lannerstrasse 1
   D-01219 Dresden
   Federal Republic of Germany

   Jens.Langner@light-speed.de


History
-------

2004-11-18 Olaf Barthel <olsen@sourcery.han.de>

 * Recursive deletion of directory contents now works as
   it should. Previously, this prevented commands such as
   "cvs upd -d -P" to work correctly.

 * Added an option to load SSH client configuration settings
   from a configuration file.

... more history in the included ChangeLog file.


Contents of dev/misc/cvs-1.11.4.lha
PERMISSION  UID  GID    PACKED    SIZE  RATIO METHOD CRC     STAMP     NAME
---------- ----------- ------- ------- ------ ---------- ------------ ----------
[generic]               264439  502172  52.7% -lh5- 5cc9 Nov 18  2004 cvs-1.11.4/bin/cvs
[generic]               325937  756672  43.1% -lh5- 749a Jan  9  2003 cvs-1.11.4/bin/cvs.morphos
[generic]                81260  127716  63.6% -lh5- 1e0d Nov 18  2004 cvs-1.11.4/bin/cvs000.pch
[generic]                21190   35506  59.7% -lh5- 9b4a Nov 18  2004 cvs-1.11.4/bin/cvs030.pch
[generic]                27391   43513  62.9% -lh5- 8954 Nov 18  2004 cvs-1.11.4/bin/cvs040.pch
[generic]                25492   41900  60.8% -lh5- 6d49 Nov 18  2004 cvs-1.11.4/bin/cvs060.pch
[generic]                13020   21448  60.7% -lh5- 13d1 Sep  6  2002 cvs-1.11.4/bin/GPatch
[generic]                  671    1462  45.9% -lh5- 3989 Jan  8  2003 cvs-1.11.4/bin/README.CPU
[generic]                 3303    8018  41.2% -lh5- a375 Nov 18  2004 cvs-1.11.4/ChangeLog.AMIGA
[generic]                 7701   20501  37.6% -lh5- f62f Apr 17  2002 cvs-1.11.4/contrib/ChangeLog
[generic]                 1430    3344  42.8% -lh5- b522 Jul 22  2002 cvs-1.11.4/contrib/clmerge
[generic]                  923    1925  47.9% -lh5- 9c8b Jul 22  2002 cvs-1.11.4/contrib/cln_hist
[generic]                 2233    5520  40.5% -lh5- 12aa Jul 22  2002 cvs-1.11.4/contrib/commit_prep
[generic]                 1793    4530  39.6% -lh5- b99d Jul 22  2002 cvs-1.11.4/contrib/cvs2vendor
[generic]                 1793    4530  39.6% -lh5- b99d Feb 12  1997 cvs-1.11.4/contrib/cvs2vendor.sh
[generic]                 2861    6663  42.9% -lh5- f1f4 Jul 22  2002 cvs-1.11.4/contrib/cvs_acls
[generic]                  841    2264  37.1% -lh5- 0e41 Jul 22  2002 cvs-1.11.4/contrib/cvscheck
[generic]                  696    1389  50.1% -lh5- de3e Feb 12  1997 cvs-1.11.4/contrib/cvscheck.man
[generic]                  841    2264  37.1% -lh5- 0e41 Feb 12  1997 cvs-1.11.4/contrib/cvscheck.sh
[generic]                 5121   14003  36.6% -lh5- 5318 Feb 12  1997 cvs-1.11.4/contrib/cvshelp.man
[generic]                 1724    4456  38.7% -lh5- 9544 Jul 22  2002 cvs-1.11.4/contrib/debug_check_log
[generic]                 1724    4456  38.7% -lh5- 9544 Oct 23  2000 cvs-1.11.4/contrib/debug_check_log.sh
[generic]                 1224    2447  50.0% -lh5- 44df Feb 12  1997 cvs-1.11.4/contrib/descend.man
[generic]                  968    2532  38.2% -lh5- 7599 Feb 12  1997 cvs-1.11.4/contrib/descend.sh
[generic]                 4224   11398  37.1% -lh5- e46a Jul 10  1995 cvs-1.11.4/contrib/dirfns.shar
[generic]                 1764    4002  44.1% -lh5- 0bfe Jun  8  1995 cvs-1.11.4/contrib/intro.doc
[generic]                 2022    4885  41.4% -lh5- 66cb Jul 22  2002 cvs-1.11.4/contrib/log
[generic]                 5026   14694  34.2% -lh5- 8a27 Jul 22  2002 cvs-1.11.4/contrib/log_accum
[generic]                 3424   11979  28.6% -lh5- 6da2 Jul 22  2002 cvs-1.11.4/contrib/Makefile
[generic]                 1310    3222  40.7% -lh5- 3375 Mar 22  2002 cvs-1.11.4/contrib/Makefile.am
[generic]                 1002    1877  53.4% -lh5- bd12 Jul 22  2002 cvs-1.11.4/contrib/mfpipe
[generic]                12667   38926  32.5% -lh5- 4545 Jul 22  2002 cvs-1.11.4/contrib/pvcs2rcs
[generic]                 1842    4647  39.6% -lh5- 583d Jul 22  2002 cvs-1.11.4/contrib/rcs-to-cvs
[generic]                 1842    4647  39.6% -lh5- 583d Feb 28  2001 cvs-1.11.4/contrib/rcs-to-cvs.sh
[generic]                 7471   18913  39.5% -lh5- ca93 Jul 22  2002 cvs-1.11.4/contrib/rcs2log
[generic]                 6942   17623  39.4% -lh5- 5040 Apr 19  2001 cvs-1.11.4/contrib/rcs2log.sh
[generic]                 1276    3946  32.3% -lh5- 35b0 Feb 28  2001 cvs-1.11.4/contrib/rcs2sccs.sh
[generic]                 2787    6575  42.4% -lh5- b07f Apr 30  2001 cvs-1.11.4/contrib/rcslock
[generic]                 2365    5029  47.0% -lh5- 1eaf Apr 19  2001 cvs-1.11.4/contrib/README
[generic]                 3013    8344  36.1% -lh5- d4e7 Apr 30  2001 cvs-1.11.4/contrib/sccs2rcs
[generic]                 4982   12559  39.7% -lh5- 293b Apr 19  2001 cvs-1.11.4/man/COPYING
[generic]                 9300   25337  36.7% -lh5- 903f Apr 19  2001 cvs-1.11.4/man/COPYING.LIB
[generic]                23208   80207  28.9% -lh5- d3b0 Feb  3  2001 cvs-1.11.4/man/cvs.1.man
[generic]                 5120   17517  29.2% -lh5- e81f Feb  3  2001 cvs-1.11.4/man/cvs.5.man
[generic]                  607    1115  54.4% -lh5- 17fa Jul 22  2002 cvs-1.11.4/man/README.DOCU
[generic]                 7317   17817  41.1% -lh5- ddd8 Nov 18  2004 cvs-1.11.4/README.AMIGA
[generic]                 9445   33512  28.2% -lh5- da7a Jan  8  2003 cvs-1.11.4/source/amiga.diffs
[generic]                 2080    7941  26.2% -lh5- 16dc Nov  6  2002 cvs-1.11.4/source/amiga/_assert.c
[generic]                 1376    4205  32.7% -lh5- e75e Nov  5  2002 cvs-1.11.4/source/amiga/_assert.h
[generic]                18775   66805  28.1% -lh5- b451 Nov 18  2004 cvs-1.11.4/source/amiga/amiga.c
[generic]                 2713    9281  29.2% -lh5- 2f32 Oct 11  2003 cvs-1.11.4/source/amiga/amiga.h
[generic]                  709    1364  52.0% -lh5- 5747 May  8  2002 cvs-1.11.4/source/amiga/include/grp.h
[generic]                  783    1643  47.7% -lh5- 3058 Nov  7  2002 cvs-1.11.4/source/amiga/include/pwd.h
[generic]                  729    1406  51.8% -lh5- fed1 May  8  2002 cvs-1.11.4/source/amiga/include/signal.h
[generic]                  293     587  49.9% -lh5- e675 May  8  2002 cvs-1.11.4/source/amiga/include/sys/commifmt.h
[generic]                  576     970  59.4% -lh5- 736c May  8  2002 cvs-1.11.4/source/amiga/include/sys/file.h
[generic]                  639    1232  51.9% -lh5- 8f4a May  8  2002 cvs-1.11.4/source/amiga/include/sys/wait.h
[generic]                  678    1307  51.9% -lh5- 027d May  8  2002 cvs-1.11.4/source/amiga/include/utime.h
[generic]                 1000    1831  54.6% -lh5- e7d7 Nov  6  2002 cvs-1.11.4/source/amiga/Makefile
[generic]                 1097    2073  52.9% -lh5- 3356 Nov 21  2002 cvs-1.11.4/source/amiga/Makefile.MorphOS
[generic]                 1557    4143  37.6% -lh5- 8eb8 Nov  9  2002 cvs-1.11.4/source/amiga/SDI_compiler.h
[generic]                 1266    2431  52.1% -lh5- 3af4 May  9  2002 cvs-1.11.4/source/amiga/smakefile
[generic]                 7414   17224  43.0% -lh5- cebc May  8  2002 cvs-1.11.4/source/amiga/ssh/blowfish.c
[generic]                  349    1065  32.8% -lh5- 4cbb May  8  2002 cvs-1.11.4/source/amiga/ssh/blowfish.h
[generic]                 3288    6810  48.3% -lh5- 414e May  8  2002 cvs-1.11.4/source/amiga/ssh/crc.c
[generic]                  152     446  34.1% -lh5- ce3b May  8  2002 cvs-1.11.4/source/amiga/ssh/crc.h
[generic]                 7658   26120  29.3% -lh5- 77ae May  8  2002 cvs-1.11.4/source/amiga/ssh/des.c
[generic]                  292     990  29.5% -lh5- 1833 May  8  2002 cvs-1.11.4/source/amiga/ssh/des.h
[generic]                  363    1405  25.8% -lh5- fb4f May  8  2002 cvs-1.11.4/source/amiga/ssh/macros.h
[generic]                 1009    1838  54.9% -lh5- 020c Nov  6  2002 cvs-1.11.4/source/amiga/ssh/Makefile
[generic]                 1115    2151  51.8% -lh5- e575 Nov  6  2002 cvs-1.11.4/source/amiga/ssh/Makefile.MorphOS
[generic]                 2003    6530  30.7% -lh5- 31be May  8  2002 cvs-1.11.4/source/amiga/ssh/md5.c
[generic]                  304     928  32.8% -lh5- 6301 May  8  2002 cvs-1.11.4/source/amiga/ssh/md5.h
[generic]                 3002    9286  32.3% -lh5- 6923 May  8  2002 cvs-1.11.4/source/amiga/ssh/rsa.c
[generic]                  247     763  32.4% -lh5- a9ca May  8  2002 cvs-1.11.4/source/amiga/ssh/rsa.h
[generic]                 1271    2380  53.4% -lh5- 39d4 May  8  2002 cvs-1.11.4/source/amiga/ssh/smakefile
[generic]                 1443    5557  26.0% -lh5- 4c80 May  8  2002 cvs-1.11.4/source/amiga/ssh/ssh.h
[generic]                 6612   24314  27.2% -lh5- 62f4 Nov  6  2002 cvs-1.11.4/source/amiga/ssh/ssh_protocol.c
[generic]                  405    1224  33.1% -lh5- 6c3b May  8  2002 cvs-1.11.4/source/amiga/ssh/ssh_protocol.h
[generic]                 2095    5339  39.2% -lh5- a6b7 Nov  7  2002 cvs-1.11.4/source/amiga/time.c
[generic]                 4835   16213  29.8% -lh5- 954d Jan  5  2003 cvs-1.11.4/source/config.h
[generic]                 1065    1949  54.6% -lh5- 3fa7 Nov  6  2002 cvs-1.11.4/source/diff/Makefile
[generic]                 1099    2111  52.1% -lh5- 051c Nov  6  2002 cvs-1.11.4/source/diff/Makefile.MorphOS
[generic]                 1350    2588  52.2% -lh5- 62d8 May  8  2002 cvs-1.11.4/source/diff/smakefile
[generic]                 1075    1973  54.5% -lh5- fc49 Nov  6  2002 cvs-1.11.4/source/lib/Makefile
[generic]                 1111    2135  52.0% -lh5- f3df Nov  6  2002 cvs-1.11.4/source/lib/Makefile.MorphOS
[generic]                 1359    2592  52.4% -lh5- c149 May  8  2002 cvs-1.11.4/source/lib/smakefile
[generic]                 1274    2858  44.6% -lh5- 3a87 Nov  9  2002 cvs-1.11.4/source/Makefile
[generic]                 1322    3180  41.6% -lh5- 940a Nov  8  2002 cvs-1.11.4/source/Makefile.MorphOS
[generic]                  894    1753  51.0% -lh5- c336 Jan  8  2003 cvs-1.11.4/source/README.SRC
[generic]                 1063    6140  17.3% -lh5- e142 May  8  2002 cvs-1.11.4/source/smakefile
[generic]                 1282    2452  52.3% -lh5- b3f7 Nov  6  2002 cvs-1.11.4/source/src/Makefile
[generic]                 1322    2755  48.0% -lh5- 98eb Nov  6  2002 cvs-1.11.4/source/src/Makefile.MorphOS
[generic]                 1855    3879  47.8% -lh5- 35de May  8  2002 cvs-1.11.4/source/src/smakefile
[generic]                 1064    1972  54.0% -lh5- 4209 Nov  5  2002 cvs-1.11.4/source/zlib/Makefile
[generic]                 1114    2158  51.6% -lh5- 9ad0 Nov  6  2002 cvs-1.11.4/source/zlib/Makefile.MorphOS
[generic]                 1477    3278  45.1% -lh5- 82b1 May  8  2002 cvs-1.11.4/source/zlib/smakefile
---------- ----------- ------- ------- ------ ---------- ------------ ----------
 Total        97 files 1011386 2249577  45.0%            Feb 13  2005
Page generated in 0.02 seconds
Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>