Gentoo Archives: gentoo-perl

From: antoine.raillon@××××××.net
To: gentoo-perl@l.g.o
Subject: [gentoo-perl] r37 - in trunk: bin extra-docs
Date: Mon, 30 May 2005 14:00:52
Message-Id: 20050530135953.3964A8280E6@gredin.dragou.net
1 Author: mcummings
2 Date: 2005-05-30 15:59:52 +0200 (Mon, 30 May 2005)
3 New Revision: 37
4
5 Modified:
6 trunk/bin/g-cpan.pl
7 trunk/extra-docs/Changes
8 trunk/extra-docs/TODO
9 Log:
10 Cleanup for -r1 release, per bugs on bugs.g.o
11
12
13
14 Modified: trunk/bin/g-cpan.pl
15 ===================================================================
16 --- trunk/bin/g-cpan.pl 2005-05-20 16:05:01 UTC (rev 36)
17 +++ trunk/bin/g-cpan.pl 2005-05-30 13:59:52 UTC (rev 37)
18 @@ -437,7 +437,7 @@
19 $dir =~ s/Module-Build/module-build/;
20 }
21 if ( $dir =~ m/PathTools/i ) {
22 - $dir = ">=dev-perl/File-Spec-3.01";
23 + $dir = ">=perl-core/File-Spec-3.01";
24 } # Will need to fix once File-Spec is moved to perl-core - mcummings
25 next if $dir eq "perl";
26 if ( ( !$dup_check{$dir} ) && ( !module_check($dir) ) ) {
27 @@ -883,8 +883,10 @@
28 rmtree( ["$tmp_overlay_dir"] );
29 }
30 #if ($tmp_overlay_dir =~ m/^$ENV{TMPDIR}/) { rmtree( ["$tmp_overlay_dir"] ) }
31 - print_info("Removing cpan build dir") if $verbose;
32 - rmtree( ["$ENV{HOME}/.cpan/build"]) if ( -d "$ENV{HOME}/.cpan/build" );
33 + #print_info("Removing cpan build dir") if $verbose;
34 + # Removing this block for now - it's causing weird errors, and the default config we setup for CPAN allows CPAN
35 + # to remove contents from this directory as needed anyway. We never manually do anything in .cpan/build - its strictly CPAN's domain
36 + #if ( -d "$ENV{HOME}/.cpan/build" ) { rmtree( ["$ENV{HOME}/.cpan/build"]) }
37 }
38
39 # cab - nice help message ! ;)
40
41 Modified: trunk/extra-docs/Changes
42 ===================================================================
43 --- trunk/extra-docs/Changes 2005-05-20 16:05:01 UTC (rev 36)
44 +++ trunk/extra-docs/Changes 2005-05-30 13:59:52 UTC (rev 37)
45 @@ -1,3 +1,8 @@
46 +30/05/2005 - mcummings
47 +
48 +- Commented out the rmdir of .cpan/build - this was causing weird random (harmless) error messages. Reviewing the code, we don't actually use this dir ourselves, but point to it for CPAN's build area. Since the default config for CPAN cleans this up itself, lets leave it at that for now.
49 +- Corrected dev-perl/File-Spec to perl-core/File-Spec following the perl-core migration last week. Releasing this as -r1 in portage since its a minor change, not a major update.
50 +
51 20/05/2005 - mcummings
52
53 - Moved color block so I could invoke it outside the usage function
54
55 Modified: trunk/extra-docs/TODO
56 ===================================================================
57 --- trunk/extra-docs/TODO 2005-05-20 16:05:01 UTC (rev 36)
58 +++ trunk/extra-docs/TODO 2005-05-30 13:59:52 UTC (rev 37)
59 @@ -1,3 +1,8 @@
60 +TODO's for v 0.14
61 +- Dependancy VERSION checking, ie not just that we dep on Module-Foo and whether we have it, but that where appropriate that we depend on Module-Foo-5 and whether we have -5 available and/or installed
62 +- We need to get a bug tracker for this project. I truly have appreciated cab's donated svn space, but don't want to burden him with further needs. Maybe we should consider pushing this project onto a common project server with bug tracking, etc?
63 +
64 +General/Remaining TODO's
65 - Heavy testing !
66 - Some work on the overlays - possibility to use ~/.cpan
67 - clean_the_mess / clean_up to improve/merge
68
69
70 --
71 gentoo-perl@g.o mailing list

Replies

Subject Author
Re: [gentoo-perl] r37 - in trunk: bin extra-docs Antoine Raillon <antoine.raillon@××××××.net>