Update to 0.24.9. Changes since the previous release include:
* cvsup2cvsync, which is a utility to convert a CVSup(R) scanfile into a cvsync counterpart, has been added. When the upstream server is using CVSup and you want to redistribute the contents using CVSync, this tool is your friend. * Support poll() instead of select() if available (server/client). * cvsync(1) now supports "refuse" file. Using the refuse file, you can prevent files/directories in a collection from adding/updating/removing on the client side.
This commit is contained in:
parent
7475c2231d
commit
1d4216996a
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.28 2003/10/09 21:06:59 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.29 2003/10/29 14:32:47 naddy Exp $
|
||||
|
||||
COMMENT= "portable CVS repository synchronization utility"
|
||||
|
||||
DISTNAME= cvsync-0.24.8
|
||||
DISTNAME= cvsync-0.24.9
|
||||
CATEGORIES= net
|
||||
HOMEPAGE= http://www.cvsync.org/
|
||||
|
||||
@ -27,7 +27,6 @@ EXAMPLESDIR= ${PREFIX}/share/examples/cvsync
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/samples/cvsync.conf ${EXAMPLESDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/samples/cvsyncd.conf ${EXAMPLESDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/samples/* ${EXAMPLESDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (cvsync-0.24.8.tar.gz) = f99b2fcfff983b7ee29069c6310bc740
|
||||
RMD160 (cvsync-0.24.8.tar.gz) = 1271e57946ec79f2418e3de5c763d5557966f861
|
||||
SHA1 (cvsync-0.24.8.tar.gz) = 9ed18cfdc137cad90397f8dca0fc0d322b51a2ac
|
||||
MD5 (cvsync-0.24.9.tar.gz) = 3abd164391a29a96d2ed5783095e6579
|
||||
RMD160 (cvsync-0.24.9.tar.gz) = 4c95310dd9a08a3cd50d5878f34c0c670c267b6e
|
||||
SHA1 (cvsync-0.24.9.tar.gz) = a19028e2f5ec788b3e81a4e9e57616aba676f81c
|
||||
|
@ -1,19 +0,0 @@
|
||||
$OpenBSD: patch-common_hash_native_h,v 1.1 2003/07/31 17:15:02 naddy Exp $
|
||||
--- common/hash_native.h.orig 2003-07-31 17:25:43.000000000 +0200
|
||||
+++ common/hash_native.h 2003-07-31 17:26:22.000000000 +0200
|
||||
@@ -59,15 +59,6 @@
|
||||
|
||||
#endif /* defined(HAVE_SHA1) */
|
||||
|
||||
-#if defined(__OpenBSD__)
|
||||
-#include <pthread.h>
|
||||
-
|
||||
-static pthread_mutex_t __mtx_sha1_lock = PTHREAD_MUTEX_INITIALIZER;
|
||||
-
|
||||
-#define SHA1_LOCK pthread_mutex_lock(&__mtx_sha1_lock);
|
||||
-#define SHA1_UNLOCK pthread_mutex_unlock(&__mtx_sha1_lock);
|
||||
-#endif /* defined(__OpenBSD__) */
|
||||
-
|
||||
#ifndef SHA1_LOCK
|
||||
#define SHA1_LOCK
|
||||
#endif /* SHA1_LOCK */
|
@ -1,4 +1,2 @@
|
||||
A CVS repository syncer (client and server), written in portable C.
|
||||
It is similar to cvsup, but not compatible with it.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
||||
|
@ -1,14 +1,18 @@
|
||||
@comment $OpenBSD: PLIST,v 1.2 2003/04/22 00:41:31 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.3 2003/10/29 14:32:47 naddy Exp $
|
||||
bin/cvscan
|
||||
bin/cvsup2cvsync
|
||||
bin/cvsync
|
||||
bin/cvsyncd
|
||||
bin/rcscan
|
||||
bin/rcscmp
|
||||
man/man1/cvscan.1
|
||||
man/man1/cvsup2cvsync.1
|
||||
man/man1/cvsync.1
|
||||
man/man1/cvsyncd.1
|
||||
man/man1/rcscan.1
|
||||
man/man1/rcscmp.1
|
||||
share/examples/cvsync/cvsync.conf
|
||||
share/examples/cvsync/cvsyncd-NetBSD.conf
|
||||
share/examples/cvsync/cvsyncd-OpenBSD.conf
|
||||
share/examples/cvsync/cvsyncd.conf
|
||||
@dirrm share/examples/cvsync
|
||||
|
Loading…
Reference in New Issue
Block a user