diff options
author | Dylan Carlson <absinthe@gentoo.org> | 2003-04-15 22:25:56 +0000 |
---|---|---|
committer | Dylan Carlson <absinthe@gentoo.org> | 2003-04-15 22:25:56 +0000 |
commit | 2ebb747c0f79cc344186e70cd10a029f170812e1 (patch) | |
tree | 1982e4c51350b71e75a10935803b3220475f5bde /app-arch/bsdsfv/files | |
parent | Removed old crusty ebuilds, moved pine-4.50-maildir.patch to distfiles (diff) | |
download | historical-2ebb747c0f79cc344186e70cd10a029f170812e1.tar.gz historical-2ebb747c0f79cc344186e70cd10a029f170812e1.tar.bz2 historical-2ebb747c0f79cc344186e70cd10a029f170812e1.zip |
Version bump; masked for testing. Closes #18214.
Diffstat (limited to 'app-arch/bsdsfv/files')
-rw-r--r-- | app-arch/bsdsfv/files/bsdsfv-1.14-gentoo.diff | 114 | ||||
-rw-r--r-- | app-arch/bsdsfv/files/digest-bsdsfv-1.14 | 3 |
2 files changed, 117 insertions, 0 deletions
diff --git a/app-arch/bsdsfv/files/bsdsfv-1.14-gentoo.diff b/app-arch/bsdsfv/files/bsdsfv-1.14-gentoo.diff new file mode 100644 index 000000000000..d09b0dc6472c --- /dev/null +++ b/app-arch/bsdsfv/files/bsdsfv-1.14-gentoo.diff @@ -0,0 +1,114 @@ +--- bsdsfv.c 2003-03-17 00:26:16.000000000 -0800 ++++ bsdsfv.c.pj 2003-03-26 04:41:44.000000000 -0800 +@@ -37,9 +37,18 @@ + + #define FNAMELEN 250 + #define MAXSFVFILE 1024 +-#define BSDSFV_VERSION "BSDSFV for UNiX, $Revision: 1.1 $" ++#define BSDSFV_VERSION "BSDSFV for UNiX, $Revision: 1.1 $" + #define MISSINGTAG ".missing" + #define BADTAG ".bad" ++#define OPENBRACKET "\e[34;01m[\e[0m" ++#define CLOSEBRACKET "\e[34;01m]\e[0m" ++#define OKCOLOR "\e[32;01m" ++#define OKMSG "OK" ++#define BADCOLOR "\e[31;01m" ++#define BADMSG "BAD" ++#define MISSINGCOLOR "\e[33;01m" ++#define MISSINGMSG "MISSING" ++ + + typedef struct sfvtable + { +@@ -523,7 +532,7 @@ + + if (listedcrc == mycrc) + { +- printf ("OK\n"); ++ printf ("%s %s%s %s\n", OPENBRACKET, OKCOLOR, OKMSG, CLOSEBRACKET); + if (glftpdmode) + { + sprintf (crap, "%s%s", sfvTable[0].filename, +@@ -535,7 +544,7 @@ + } + else + { +- printf ("BAD\n"); ++ printf ("%s %s%s %s\n", OPENBRACKET, BADCOLOR, BADMSG, CLOSEBRACKET); + badfiles++; + if (glftpdmode) + { +@@ -549,16 +558,18 @@ + } + else + { +- printf ("MISSING\n"); ++ printf ("%s %s%s %s\n", OPENBRACKET, MISSINGCOLOR, MISSINGMSG, CLOSEBRACKET); + missingfiles++; + } + numfiles++; + paramcnt++; + } + +- printf ("\n%d file(s) tested - %d OK - %d bad - %d missing...\n", +- numfiles, numfiles - badfiles - missingfiles, badfiles, +- missingfiles); ++ printf ("\n%d file(s) tested - %s %s%d %s %s - %s %s%d %s %s - %s %s%d %s %s ...\n\n", ++ numfiles, ++ OPENBRACKET, OKCOLOR, numfiles - (badfiles + missingfiles), OKMSG, CLOSEBRACKET, ++ OPENBRACKET, BADCOLOR, badfiles, BADMSG, CLOSEBRACKET, ++ OPENBRACKET, MISSINGCOLOR, missingfiles, MISSINGMSG, CLOSEBRACKET); + + if (badfiles || missingfiles) + return 1; +@@ -635,18 +646,18 @@ + + if (mycrc == sfvTable[cnt].crc) + { +- printf ("OK\n"); ++ printf ("%s %s%s %s\n", OPENBRACKET, OKCOLOR, OKMSG, CLOSEBRACKET); + } + else + { + if (mycrc == 0xffffffff) + { +- printf ("MISSING\n"); ++ printf ("%s %s%s %s\n", OPENBRACKET, MISSINGCOLOR, MISSINGMSG, CLOSEBRACKET); + missingfiles++; + } + else + { +- printf ("BAD\n"); ++ printf ("%s %s%s %s\n", OPENBRACKET, BADCOLOR, BADMSG, CLOSEBRACKET); + badfiles++; + } + } +@@ -668,8 +679,9 @@ + } + else + { +- printf ("Testing %s ... listed = 0x%08X ... Local = MISSING", +- sfvTable[cnt].filename, sfvTable[cnt].crc); ++ printf ("Testing %s ... listed = 0x%08X ... local = ... %s %s%s %s\n", ++ sfvTable[cnt].filename, sfvTable[cnt].crc, ++ OPENBRACKET, MISSINGCOLOR, MISSINGMSG, CLOSEBRACKET); + missingfiles++; + if (glftpdmode) + { +@@ -714,10 +726,12 @@ + } + printf ("Completion Status: %s\n", NEWTAG); + } +- +- printf ("\n%d file(s) tested - %d OK - %d bad - %d missing ...\n\n", +- numfiles, numfiles - (badfiles + missingfiles), badfiles, +- missingfiles); ++ ++ printf ("\n%d file(s) tested - %s %s%d %s %s - %s %s%d %s %s - %s %s%d %s %s ...\n\n", ++ numfiles, ++ OPENBRACKET, OKCOLOR, numfiles - (badfiles + missingfiles), OKMSG, CLOSEBRACKET, ++ OPENBRACKET, BADCOLOR, badfiles, BADMSG, CLOSEBRACKET, ++ OPENBRACKET, MISSINGCOLOR, missingfiles, MISSINGMSG, CLOSEBRACKET); + + if (missingfiles) + return 2; diff --git a/app-arch/bsdsfv/files/digest-bsdsfv-1.14 b/app-arch/bsdsfv/files/digest-bsdsfv-1.14 new file mode 100644 index 000000000000..013aa661d9f6 --- /dev/null +++ b/app-arch/bsdsfv/files/digest-bsdsfv-1.14 @@ -0,0 +1,3 @@ +MD5 7c07c2b69a5d29e31929e0085a3fecca /files/bsdsfv-1.14-gentoo.diff 3572 +MD5 bf6c82ca339f22dc0333d07c1fd62b44 /bsdsfv-1.14.ebuild 620 +MD5 67caa8503a2506b68aaf53aa655a9f04 bsdsfv.1.14.tar.gz 13327 |