Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Module-Starter CPAN distribution.

Report information
The Basics
Id: 43602
Status: resolved
Priority: 0/
Queue: Module-Starter

People
Owner: Nobody in particular
Requestors: dolmen [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 1.50
Fixed in: (no value)



Subject: Add Build.bat to .cvsignore
Add Build.bat (generated by Build.PL) to the list of files to ignore when storing files in a source code repository.
If you provide me a patch that adds Build.bat if it's a Windows machine, I'll add it.
Le Lun. Jul. 27 02:02:54 2009, PETDANCE a écrit : Show quoted text
> If you provide me a patch that adds Build.bat if it's a Windows machine, > I'll add it.
'Build.bat' should be added whatever the system on which Module::Starter is run. Because the initial development may be on one platform and continue on another. Think to one committer/releaser on multiple platforms or multiple committers/releasers.
Subject: [PATCH] Add Build.bat to .cvsignore
Le Lun. Jul. 27 02:02:54 2009, PETDANCE a écrit : Show quoted text
> If you provide me a patch that adds Build.bat if it's a Windows machine, > I'll add it.
Here is the patch.
# RT43602 Ignore Build.bat # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # STEP 2: Run the 'patch' program with this file as input. # #### End of Preamble #### #### Patch data follows #### diff -urp --binary "Module-Starter-1.52\lib\Module\Starter\Simple.pm" "Module-Starter-1.52.RT43602\lib\Module\Starter\Simple.pm" Index: ./lib/Module/Starter/Simple.pm --- ./lib/Module/Starter/Simple.pm Mon Jul 27 08:24:34 2009 +++ ./lib/Module/Starter/Simple.pm Thu Aug 13 18:32:22 2009 @@ -1021,12 +1021,14 @@ blib* Makefile Makefile.old Build +Build.bat _build* pm_to_blib* *.tar.gz .lwpcookies $self->{distro}-* cover_db +pod2htm*.tmp HERE } #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Thu Aug 13 18:38:26 2009 # Generated by : makepatch 2.03 # Recurse directories : Yes # Excluded files : (\A|/).*\~\Z # (\A|/).*\.a\Z # (\A|/).*\.bak\Z # (\A|/).*\.BAK\Z # (\A|/).*\.elc\Z # (\A|/).*\.exe\Z # (\A|/).*\.gz\Z # (\A|/).*\.ln\Z # (\A|/).*\.o\Z # (\A|/).*\.obj\Z # (\A|/).*\.olb\Z # (\A|/).*\.old\Z # (\A|/).*\.orig\Z # (\A|/).*\.rej\Z # (\A|/).*\.so\Z # (\A|/).*\.Z\Z # (\A|/)\.del\-.*\Z # (\A|/)\.make\.state\Z # (\A|/)\.nse_depinfo\Z # (\A|/)core\Z # (\A|/)tags\Z # (\A|/)TAGS\Z # p "lib/Module/Starter/Simple.pm" 30624 1250181142 0100666 #### End of ApplyPatch data #### #### End of Patch kit [created: Thu Aug 13 18:38:26 2009] #### #### Patch checksum: 53 1725 41663 #### #### Checksum: 71 2373 29604 ####
Well, I wanted it only if it was Windows, but this will do. Thanks! xoxo, Andy