diff options
author | gehenna <gehenna> | 2003-04-01 08:43:12 +0000 |
---|---|---|
committer | gehenna <gehenna> | 2003-04-01 08:43:12 +0000 |
commit | dee363495d5b91d2e68fcf540c578f7188709d7d (patch) | |
tree | 580a6597e7f1ec9e598a2e45d78b3144600de5ab | |
parent | ed0fbb9ff9d56e0bd22dcf5cc4279fe99f7b6160 (diff) | |
download | pkgsrc-dee363495d5b91d2e68fcf540c578f7188709d7d.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)
-rw-r--r-- | devel/cvsync/Makefile | 4 | ||||
-rw-r--r-- | devel/cvsync/distinfo | 6 |
2 files changed, 5 insertions, 5 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 diff --git a/devel/cvsync/distinfo b/devel/cvsync/distinfo index 026fba5fd4d..fb14521887d 100644 --- a/devel/cvsync/distinfo +++ b/devel/cvsync/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.14 2003/03/30 23:40:52 gehenna Exp $ +$NetBSD: distinfo,v 1.15 2003/04/01 08:43:12 gehenna Exp $ -SHA1 (cvsync-0.17.2.tgz) = 7d4e4498a8c4373174ce426c06bbf7f30a461627 -Size (cvsync-0.17.2.tgz) = 76101 bytes +SHA1 (cvsync-0.18.0.tgz) = 769e3bb9ad40202e5dc1468395615861075336df +Size (cvsync-0.18.0.tgz) = 78037 bytes |