What about co maintained pkgs?
---
TS
http://southofheaven.org
Chaos is the beginning and end, try dealing with the rest.

On 8-Jan-04, at 7:09 AM, Daniel Macks wrote:

Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1:/tmp/cvs-serv3215

Modified Files:
ChangeLog Validation.pm
Log Message:
Be anal about format of Maintainer (so can parsed according to its documentation).


Index: ChangeLog =================================================================== RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v retrieving revision 1.509 retrieving revision 1.510 diff -u -d -r1.509 -r1.510 --- ChangeLog 8 Jan 2004 11:52:56 -0000 1.509 +++ ChangeLog 8 Jan 2004 14:09:25 -0000 1.510 @@ -2,6 +2,7 @@

        * Validation.pm: Warning for DescDetail and DescUsage that will
        look bad in Terminal window (long lines and non-ASCII chars).
+       Warning for oddly formatted Maintainer.

2004-01-06 Max Horn <[EMAIL PROTECTED]>


Index: Validation.pm
===================================================================
RCS file: /cvsroot/fink/fink/perlmod/Fink/Validation.pm,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -d -r1.93 -r1.94
--- Validation.pm 8 Jan 2004 11:59:17 -0000 1.93
+++ Validation.pm 8 Jan 2004 14:09:25 -0000 1.94
@@ -367,6 +367,13 @@
$looks_good = 0;
}

+ # Make sure Maintainer is in the correct format: Joe Bob <[EMAIL PROTECTED]>
+ $value = $properties->{maintainer};
+ if ($value !~ /^[^<>@]+\s+<[EMAIL PROTECTED]>$/) {
+ print "Warning: Malformed value for \"maintainer\". ($filename)\n";
+ $looks_good = 0;
+ }
+
# License should always be specified, and must be one of the allowed set
$value = $properties->{license};
if ($value) {




------------------------------------------------------- This SF.net email is sponsored by: Perforce Software. Perforce is the Fast Software Configuration Management System offering advanced branching capabilities and atomic changes on 50+ platforms. Free Eval! http://www.perforce.com/perforce/loadprog.html _______________________________________________ Fink-commits mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-commits

Attachment: PGP.sig
Description: This is a digitally signed message part



Reply via email to