[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb: [373] trunk/utils



Revision: 373
          http://svn.sourceforge.net/ledger-smb/?rev=373&view=rev
Author:   jasonjayr
Date:     2006-10-28 21:55:06 -0700 (Sat, 28 Oct 2006)

Log Message:
-----------
Added the devel directory, for Builder + developer utilities

Added the find-use script, to locate all the perl modules we use that are not distributed with perl itself.

Added Paths:
-----------
    trunk/utils/devel/
    trunk/utils/devel/find-use

Added: trunk/utils/devel/find-use
===================================================================
--- trunk/utils/devel/find-use	                        (rev 0)
+++ trunk/utils/devel/find-use	2006-10-29 04:55:06 UTC (rev 373)
@@ -0,0 +1,59 @@
+#!/usr/bin/perl -w
+=head1 NAME
+
+find-use
+
+=head1 EXAMPLE
+
+ ~/ledgersmb # utils/devel/find-use
+ 0.000000 : HTML::Entities
+ 0.000000 : Locale::Maketext::Lexicon
+ 0.000000 : Module::Build
+ ...
+
+=head1 EXPLINATION
+
+This util is useful for package builders to identify all the CPAN dependencies we've made.  It required Module::CoreList (which is core, but is not yet in any stable
+release of perl)  to determine if a module is distributed with perl or not.  The output reports which version of perl the module is in.  If it reports 0.000000, then the
+module is not in core perl, and needs to be installed before LedgerSMB will operate.
+
+=head1 AUTHOR
+
+http://www.ledgersmb.org/ - The LedgerSMB team
+
+=head1 LICENSE
+
+Distributed under the terms of the LedgerSMB code.
+
+=cut
+
+
+use strict;
+use warnings;
+
+open GREP, "grep -r '^use ' . |";
+use Module::CoreList;
+
+my %uselines;
+while(<GREP>) { 
+	next if /LedgerSMB::/;
+	next if /use warnings/;
+	next if /use strict/;
+	next if /use vars/;
+	chomp;
+	my ($file, $useline) = m/^([^:]+):use\s(.*?)$/;
+	$uselines{$useline}||=[];
+	push @{$uselines{$useline}}, $file;
+}
+
+my %modules;
+foreach my $useline (keys %uselines) {
+
+	my ($module) = grep { $_ } $useline =~ /(?:base ['"]([a-z:]+)|([a-z:]+)(?:\s|;))/i;
+	my $version = Module::CoreList->first_release($module);
+	$modules{$module} = $version||0;
+}
+
+foreach my $mod (sort { $modules{$a} == 0 ? -1 : $modules{$b} == 0 ? 1 : 0  or $a cmp $b } keys %modules) { 
+	printf "%2.6f : %s\n", $modules{$mod}, $mod;
+}


Property changes on: trunk/utils/devel/find-use
___________________________________________________________________
Name: svn:executable
   + *


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.