Changes:
* Make this compile with TenDRA.
* Make this compile on Solaris7.
* New utility: cvsync2cvsup
This converts a scanfile from the cvsync style to the CVSup(R) style.
It is useful for mirror maintainers to distribute the CVS repositories
via both CVSup and CVSync protocols.
* Improve robustness. (client)
Changes:
* New utility: cvsup2cvsync
This converts a scanfile from the CVSup(R) style to the cvsync style.
It is useful for mirror maintainers to distribute the CVS repositries
via both CVSup and CVSync protocols.
* Use poll() instead of select() if available. (server/client)
* New feature: refuse (client)
It provides the way to refuse to add/update/remove files or
directories.
Changes:
* New feature: specify configurations in command line. (client)
URI Syntax:
cvsync://<hostname>[:<port>][/[<name>/release/[?<aux>]]]
Samples:
cvsync://some.where/
Retrieves the collections list.
cvsync://some.where/foo/rcs/?prefix=/localsrc
Retrieves the collection foo/rcs under /localsrc.
The documentation is not prepared yet.
* Fix a bug to fail to execute in background when use an option -p
to specify a file name to store a PID number and it is a relative
path. (server)
* Add samples to distribute NetBSD/OpenBSD CVS repositories.
ChangeLog:
* Fix a bug that the 'SetAttrs' request for directories was issued in
a wrong order.
* New feature: loose
Background:
Proper CVS repositories don't have files with same file name
inside/outside 'Attic' directory of the same directory. If both exist
accidentally, it is very difficult to determine which file is the
right one. So in the past, cvsync exits abnormaly with the
'inconsistency' error message. But some CVS repositories has this
inconsistency. It is unhappy for CVS repositories mirror sites to
redistribute them.
The 'loose' option provides a workaround for bogus CVS repositories.
When cvsync detects a inconsistency, cvsync assumes that the a file
with more recent modification time is right and don't exit.
This feature is optional. The best way is to remove the
inconsistencies from master sites, of course.
* Fix a bug that when move a RCS file from inside/outside Attic to
outside/inside Attic without chaging modifition time and permissions,
cvsync can't detect the action.