update radmind to 1.10.0

from William Yodlowsky (MAINTAINER)
This commit is contained in:
jasper 2007-09-09 20:02:09 +00:00
parent b7c18dfa30
commit 5df8721a25
6 changed files with 36 additions and 36 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.9 2007/09/04 20:52:13 jasper Exp $
# $OpenBSD: Makefile,v 1.10 2007/09/09 20:02:09 jasper Exp $
COMMENT= remote administration software
DISTNAME= radmind-1.9.0
DISTNAME= radmind-1.10.0
CATEGORIES= sysutils
HOMEPAGE= http://rsug.itd.umich.edu/software/radmind/

View File

@ -1,5 +1,5 @@
MD5 (radmind-1.9.0.tar.gz) = PY61h5txVA7y5dyumj/1TQ==
RMD160 (radmind-1.9.0.tar.gz) = Fkj1tCP+h+E5avfTskAhkQZxhkw=
SHA1 (radmind-1.9.0.tar.gz) = VjJH5vnnlaPY8IaKomG6GKSiTVo=
SHA256 (radmind-1.9.0.tar.gz) = oQcL29J2L4sfjpyDGYQTk5zEJZT0SiFdqRfVq9HLuME=
SIZE (radmind-1.9.0.tar.gz) = 389258
MD5 (radmind-1.10.0.tar.gz) = rejdLi72jynxBWEeeTvTkw==
RMD160 (radmind-1.10.0.tar.gz) = pg561z99/xn2eujgjn6HsIqXjEE=
SHA1 (radmind-1.10.0.tar.gz) = AsPRo4Io4tTsTh4ouYkggTWLzs0=
SHA256 (radmind-1.10.0.tar.gz) = tKeSmykvQD1U8UPkeDXp2Z7y44ND4n9/cWkXLx69tiA=
SIZE (radmind-1.10.0.tar.gz) = 397065

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-Makefile_in,v 1.5 2007/09/04 20:52:13 jasper Exp $
--- Makefile.in.orig Mon Jun 18 17:02:05 2007
+++ Makefile.in Wed Jul 18 09:43:02 2007
$OpenBSD: patch-Makefile_in,v 1.6 2007/09/09 20:02:09 jasper Exp $
--- Makefile.in.orig Tue Jul 31 16:08:16 2007
+++ Makefile.in Sun Sep 9 21:59:52 2007
@@ -11,6 +11,7 @@ exec_prefix=@exec_prefix@
MANDIR=@mandir@
BINDIR=@bindir@
@ -18,7 +18,7 @@ $OpenBSD: patch-Makefile_in,v 1.5 2007/09/04 20:52:13 jasper Exp $
version.o : version.c
${CC} ${CFLAGS} \
@@ -254,6 +255,7 @@ rash : FRC
@@ -255,6 +256,7 @@ rash : FRC
-e 's@_RADMIND_COMMANDFILE@${COMMANDFILE}@g' \
-e 's@_RADMIND_VERSION@$(shell cat VERSION)@g' \
-e 's@_RADMIND_ECHO_PATH@${ECHO}@g' \
@ -26,7 +26,7 @@ $OpenBSD: patch-Makefile_in,v 1.5 2007/09/04 20:52:13 jasper Exp $
${srcdir}/ra.sh > tmp/ra.sh;
man : FRC
@@ -271,7 +273,7 @@ man : FRC
@@ -272,7 +274,7 @@ man : FRC
${srcdir}/man/$$i > tmp/man/$$i; \
done
@ -35,7 +35,7 @@ $OpenBSD: patch-Makefile_in,v 1.5 2007/09/04 20:52:13 jasper Exp $
-mkdir -p ${DESTDIR}/${exec_prefix}
-mkdir -p ${DESTDIR}/${SBINDIR}
${INSTALL} -m 0755 -c radmind ${DESTDIR}/${SBINDIR}/
@@ -298,6 +300,7 @@ install : all man rash
@@ -299,6 +301,7 @@ install : all man rash
-mkdir -p ${DESTDIR}/${PREAPPLYDIR}
-mkdir -p ${DESTDIR}/${POSTAPPLYDIR}
-mkdir -p ${DESTDIR}/${CERTDIR}

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-ktcheck_c,v 1.3 2007/09/04 20:52:13 jasper Exp $
--- ktcheck.c.orig Mon Jun 18 15:25:46 2007
+++ ktcheck.c Wed Jul 18 10:32:55 2007
@@ -238,7 +238,7 @@ clean_client_dir( void )
$OpenBSD: patch-ktcheck_c,v 1.4 2007/09/09 20:02:09 jasper Exp $
--- ktcheck.c.orig Tue Jul 31 04:55:36 2007
+++ ktcheck.c Sun Sep 9 21:59:53 2007
@@ -240,7 +240,7 @@ clean_client_dir( void )
* can't pass in kdir, since it has a trailing slash.
* bounds checking done when creating kdir in main().
*/
@ -10,7 +10,7 @@ $OpenBSD: patch-ktcheck_c,v 1.3 2007/09/04 20:52:13 jasper Exp $
if (( p = strrchr( dir, '/' )) != NULL ) {
*p = '\0';
}
@@ -282,7 +282,7 @@ getstat( SNET *sn, char *description, char *stats )
@@ -284,7 +284,7 @@ getstat( SNET *sn, char *description, char *stats )
fprintf( stderr, "%s: line too long\n", line );
return( -1 );
}
@ -19,7 +19,7 @@ $OpenBSD: patch-ktcheck_c,v 1.3 2007/09/04 20:52:13 jasper Exp $
if ( verbose ) printf( "<<< %s\n", stats );
@@ -433,7 +433,7 @@ check( SNET *sn, char *type, char *file )
@@ -435,7 +435,7 @@ check( SNET *sn, char *type, char *file )
fprintf( stderr, "%s: too long\n", type );
return( 2 );
}
@ -28,7 +28,7 @@ $OpenBSD: patch-ktcheck_c,v 1.3 2007/09/04 20:52:13 jasper Exp $
file = base_kfile;
@@ -442,7 +442,7 @@ check( SNET *sn, char *type, char *file )
@@ -444,7 +444,7 @@ check( SNET *sn, char *type, char *file )
fprintf( stderr, "%s: path too long\n", base_kfile );
return( 2 );
}
@ -37,7 +37,7 @@ $OpenBSD: patch-ktcheck_c,v 1.3 2007/09/04 20:52:13 jasper Exp $
}
if ( getstat( sn, (char *)&pathdesc, stats ) != 0 ) {
@@ -705,7 +705,7 @@ main( int argc, char **argv )
@@ -712,7 +712,7 @@ main( int argc, char **argv )
p++;
*p = (char)'\0';
}

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-lapply_c,v 1.4 2007/09/04 20:52:13 jasper Exp $
--- lapply.c.orig Mon Jun 18 15:25:46 2007
+++ lapply.c Wed Jul 18 09:41:16 2007
@@ -84,7 +84,7 @@ create_node( char *path, char *tline )
$OpenBSD: patch-lapply_c,v 1.5 2007/09/09 20:02:09 jasper Exp $
--- lapply.c.orig Tue Jul 31 04:55:36 2007
+++ lapply.c Sun Sep 9 21:59:53 2007
@@ -85,7 +85,7 @@ create_node( char *path, char *tline )
new_node = (struct node *) malloc( sizeof( struct node ));
new_node->path = strdup( path );
if ( tline != NULL ) {
@ -10,7 +10,7 @@ $OpenBSD: patch-lapply_c,v 1.4 2007/09/04 20:52:13 jasper Exp $
new_node->doline = 1;
} else {
new_node->doline = 0;
@@ -128,7 +128,7 @@ do_line( char *tline, int present, struct stat *st, SN
@@ -129,7 +129,7 @@ do_line( char *tline, int present, struct stat *st, SN
fprintf( stderr, "line %d: too long\n", linenum );
return( 1 );
}
@ -19,7 +19,7 @@ $OpenBSD: patch-lapply_c,v 1.4 2007/09/04 20:52:13 jasper Exp $
/* DOWNLOAD */
if ( *command == '+' ) {
@@ -137,7 +137,7 @@ do_line( char *tline, int present, struct stat *st, SN
@@ -138,7 +138,7 @@ do_line( char *tline, int present, struct stat *st, SN
linenum, *targv[ 0 ] );
return( 1 );
}
@ -28,7 +28,7 @@ $OpenBSD: patch-lapply_c,v 1.4 2007/09/04 20:52:13 jasper Exp $
if ( special ) {
if ( snprintf( pathdesc, MAXPATHLEN * 2, "SPECIAL %s",
@@ -463,7 +463,7 @@ main( int argc, char **argv )
@@ -473,7 +473,7 @@ main( int argc, char **argv )
fprintf( stderr, "line %d: too long\n", linenum );
goto error2;
}
@ -37,7 +37,7 @@ $OpenBSD: patch-lapply_c,v 1.4 2007/09/04 20:52:13 jasper Exp $
tac = acav_parse( acav, targvline, &targv );
@@ -473,7 +473,7 @@ main( int argc, char **argv )
@@ -483,7 +483,7 @@ main( int argc, char **argv )
}
if ( tac == 1 ) {
@ -46,7 +46,7 @@ $OpenBSD: patch-lapply_c,v 1.4 2007/09/04 20:52:13 jasper Exp $
len = strlen( transcript );
if ( transcript[ len - 1 ] != ':' ) {
fprintf( stderr, "%s: line %d: invalid transcript name\n",
@@ -515,7 +515,7 @@ main( int argc, char **argv )
@@ -525,7 +525,7 @@ main( int argc, char **argv )
fprintf( stderr, "line %d: too long\n", linenum );
return( 1 );
}
@ -55,7 +55,7 @@ $OpenBSD: patch-lapply_c,v 1.4 2007/09/04 20:52:13 jasper Exp $
/* Check transcript order */
if ( prepath != 0 ) {
@@ -530,7 +530,7 @@ main( int argc, char **argv )
@@ -539,7 +539,7 @@ main( int argc, char **argv )
transcript, linenum );
goto error2;
}

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-repo_c,v 1.1 2007/09/04 20:52:13 jasper Exp $
--- repo.c.orig Wed Jul 18 09:51:21 2007
+++ repo.c Wed Jul 18 09:52:10 2007
@@ -169,7 +169,7 @@ main( int argc, char *argv[] )
$OpenBSD: patch-repo_c,v 1.2 2007/09/09 20:02:09 jasper Exp $
--- repo.c.orig Tue Jul 31 04:55:37 2007
+++ repo.c Sun Sep 9 21:59:55 2007
@@ -173,7 +173,7 @@ main( int argc, char *argv[] )
fprintf( stderr, "%s: too long\n", argv[ optind ] );
exit( 2 );
}
@ -10,7 +10,7 @@ $OpenBSD: patch-repo_c,v 1.1 2007/09/04 20:52:13 jasper Exp $
/* Skip first token in message */
i = 1;
@@ -179,8 +179,8 @@ main( int argc, char *argv[] )
@@ -183,8 +183,8 @@ main( int argc, char *argv[] )
fprintf( stderr, "%s %s: too long\n", repodata, argv[ i ] );
exit( 2 );
}