diff options
author | gehenna <gehenna@pkgsrc.org> | 2003-04-01 08:43:12 +0000 |
---|---|---|
committer | gehenna <gehenna@pkgsrc.org> | 2003-04-01 08:43:12 +0000 |
commit | 126169395779decd49829d954ab7a6df1e82305a (patch) | |
tree | 580a6597e7f1ec9e598a2e45d78b3144600de5ab /devel/cvsync/Makefile | |
parent | 92fb1d476ad5c925ee56c275539810c3af807a14 (diff) | |
download | pkgsrc-126169395779decd49829d954ab7a6df1e82305a.tar.gz |
cvsync-0.18.0
ChangeLog:
2003-04-01 MAEKAWA Masahide <maekawa@daemon-systems.org>
* 0.18.0
* Implement a new keyword 'super', which allows to define
sub-collections of a collection. For example:
collection {
name netbsd release rcs
prefix /cvsroot
...
}
collection {
name netbsd-pkgsrc release rcs
prefix /cvsroot/pkgsrc
super netbsd
}
For the collection `netbsd-pkgsrc', a client gets only
/cvsroot/pkgsrc part of the whole of NetBSD CVS repository
(/cvsroot). When `super' is specified as shown above, 'nofollow'
and 'umask' of the collection `netbsd-pkgsrc' with `super' are
inherited from the collection `netbsd'. When a scanfile is
also specified in the collection `netbsd', the collection
`netbsd-pkgsrc' employs the corresponding entries in the parent's
scanfile. Thus, using `super' keyword, only a scanfile for the
top of sub-collections is needed to use the scanfile functionality
when sub-collections of a collection are defined. It makes the use
of a scanfile more efficient.
'super' can be specified recursively (i.e. a sub-collection can
be the parent of another sub-collection).
(Thanks hrs AT FreeBSD DOT org)
Diffstat (limited to 'devel/cvsync/Makefile')
-rw-r--r-- | devel/cvsync/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/cvsync/Makefile b/devel/cvsync/Makefile index a36f6f1d747..f31a5d64f97 100644 --- a/devel/cvsync/Makefile +++ b/devel/cvsync/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.17 2003/03/30 23:40:52 gehenna Exp $ +# $NetBSD: Makefile,v 1.18 2003/04/01 08:43:12 gehenna Exp $ # -DISTNAME= cvsync-0.17.2 +DISTNAME= cvsync-0.18.0 CATEGORIES= devel MASTER_SITES= http://www.daemon-systems.org/cvsync/ EXTRACT_SUFX= .tgz |