(optdeps) Explicitly force group names to lower-case (for now)
Peter Rabbitson [Mon, 4 May 2015 13:44:00 +0000 (15:44 +0200)]
lib/DBIx/Class/Optional/Dependencies.pm

index 600a48e..425a3a1 100644 (file)
@@ -867,7 +867,7 @@ sub __envvar_group_desc {
   join '/', @res;
 }
 
-my $groupname_re = qr/ [A-Z_a-z][0-9A-Z_a-z]* /x;
+my $groupname_re = qr/ [a-z_] [0-9_a-z]* /x;
 my $modname_re = qr/ [A-Z_a-z] [0-9A-Z_a-z]* (?:::[0-9A-Z_a-z]+)* /x;
 my $modver_re = qr/ [0-9]+ (?: \. [0-9]+ )? /x;