[Perl-win32-gui-cvscommit] Win32-GUI CHANGELOG, 1.135, 1.136 Makefile.PL, 1.29, 1.30

2008-02-02 Thread Robert May
This is an automatically generated mail from the syncmail system.  Do not reply 
directly to this email.  Further discussion should take place on the hackers 
list: [EMAIL PROTECTED]

Update of /cvsroot/perl-win32-gui/Win32-GUI
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2869

Modified Files:
CHANGELOG Makefile.PL 
Log Message:
Fix 'make ppm' for perl 5.10

Index: Makefile.PL
===
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Makefile.PL,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** Makefile.PL 1 Feb 2008 14:25:28 -   1.29
--- Makefile.PL 2 Feb 2008 12:50:23 -   1.30
***
*** 65,68 
--- 65,75 
}
else {
+   print STDERR <<"__OSUNSUPPORTED";
+ 
+ Building on OS '$^O' is unsupported. Only 'MSWin32' and 'Cygwin' are valid
+ build environments.
+ 
+ __OSUNSUPPORTED
+ 
# Attempt to stop CPAN Testers reporting build failures
# for OS's like linux!
***
*** 84,88 
print "$_\t($allowed{$_})\n" for (keys %allowed);
  
!   exit(1);
  }
  
--- 91,95 
print "$_\t($allowed{$_})\n" for (keys %allowed);
  
!   die("Build Environment unsupported\n");
  }
  
***
*** 97,101 
print "$_\t($allowed{$_})\n" for (keys %allowed);
  
!   exit(1);
  }
  
--- 104,108 
print "$_\t($allowed{$_})\n" for (keys %allowed);
  
!   die("Build Environment unsupported\n");
  }
  
***
*** 217,220 
--- 224,229 
  File::Find::find(sub { push @demos, $File::Find::name if $File::Find::name =~ 
/\.(pl|bmp|ico|cur)$/ }, 'samples');
  
+ (my $dist_ver = $Config{version}) =~ s/^(\d+\.\d+).*$/$1/;
+ 
  my %MakefileArgs = (
  NAME=> 'Win32::GUI',
***
*** 223,227 
  PREREQ_PM   => {
   'Test::More' => 0,
-  'File::Spec' => 0.9, # Needed on perl 5.8.0 as 0.82 
is broken
 },
  PM  => {
--- 232,235 
***
*** 246,250 
  macro   => {
   BUILD_TOOLS  => './build_tools',
!  PPMDISTVNAME => '$(DISTVNAME)-PPM-' . 
substr($Config{version},0,3),
   INST_DEMODIR => '$(INST_LIBDIR)/GUI/demos',
   DEMOS=> "@demos",
--- 254,258 
  macro   => {
   BUILD_TOOLS  => './build_tools',
!  PPMDISTVNAME => '$(DISTVNAME)-PPM-' . $dist_ver,
   INST_DEMODIR => '$(INST_LIBDIR)/GUI/demos',
   DEMOS=> "@demos",

Index: CHANGELOG
===
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/CHANGELOG,v
retrieving revision 1.135
retrieving revision 1.136
diff -C2 -d -r1.135 -r1.136
*** CHANGELOG   1 Feb 2008 14:25:28 -   1.135
--- CHANGELOG   2 Feb 2008 12:50:23 -   1.136
***
*** 6,26 
  Win32-GUI ChangeLog
  ===
  + [Robert May] : 1 February 2008 - Sample handling
  - Makefile.PL - change how we handle build of the samples
  
- Win32-GUI ChangeLog
- ===
  + [Robert May] : 1 February 2008 - Prepare for 1.06 release
  - Increment version numbers of changed modules. Set Win32::GUI version
to 1.05_90 in preparation for RC1
  
- Win32-GUI ChangeLog
- ===
  + [Robert May] : 1 February 2008 -  Fix compile with MinGW
  - Update most Makefile.PLs, add build_tools/MMUtil.pm and update
MANIFEST to add -mms-bitfields support for mingw-gcc.
  
- Win32-GUI ChangeLog
- ===
  + [Robert May] : 31 January 2008 -  Misc Fixes
  - Makefile.PL - another attempt to prevent spurous CPAN tester reports
--- 6,24 
  Win32-GUI ChangeLog
  ===
+ + [Robert May] : 2 February 2008 - Fix make PPM on 5.10
+ - Makefile.PL - change how we generate the version for PPM to fix for 5.10
+   and remove dependency on File::Spec 0.9, as is messes PPM installs
+ 
  + [Robert May] : 1 February 2008 - Sample handling
  - Makefile.PL - change how we handle build of the samples
  
  + [Robert May] : 1 February 2008 - Prepare for 1.06 release
  - Increment version numbers of changed modules. Set Win32::GUI version
to 1.05_90 in preparation for RC1
  
  + [Robert May] : 1 February 2008 -  Fix compile with MinGW
  - Update most Makefile.PLs, add build_tools/MMUtil.pm and update
MANIFEST to add -mms-bitfields support for mingw-gcc.
  
  + [Robert May] : 31 January 2008 -  Misc Fixes
  - Makefile.PL - another attempt to prevent spurous CPAN tester reports


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/d

[Perl-win32-gui-cvscommit] Win32-GUI CHANGELOG, 1.136, 1.137 MANIFEST, 1.23, 1.24

2008-02-02 Thread Robert May
This is an automatically generated mail from the syncmail system.  Do not reply 
directly to this email.  Further discussion should take place on the hackers 
list: [EMAIL PROTECTED]

Update of /cvsroot/perl-win32-gui/Win32-GUI
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15339

Modified Files:
CHANGELOG MANIFEST 
Log Message:
Add new Scintilla tests to MANIFEST

Index: CHANGELOG
===
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/CHANGELOG,v
retrieving revision 1.136
retrieving revision 1.137
diff -C2 -d -r1.136 -r1.137
*** CHANGELOG   2 Feb 2008 12:50:23 -   1.136
--- CHANGELOG   2 Feb 2008 13:25:57 -   1.137
***
*** 7,10 
--- 7,13 
  ===
  + [Robert May] : 2 February 2008 - Fix make PPM on 5.10
+ - MANIFEST - add new Scintilla test files.
+ 
+ + [Robert May] : 2 February 2008 - Fix make PPM on 5.10
  - Makefile.PL - change how we generate the version for PPM to fix for 5.10
and remove dependency on File::Spec 0.9, as is messes PPM installs

Index: MANIFEST
===
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/MANIFEST,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** MANIFEST1 Feb 2008 13:29:49 -   1.23
--- MANIFEST2 Feb 2008 13:25:57 -   1.24
***
*** 376,379 
--- 376,381 
  Win32-GUI-Scintilla/t/01_load.t
  Win32-GUI-Scintilla/t/02_new.t
+ Win32-GUI-Scintilla/t/03_LoadFile.t
+ Win32-GUI-Scintilla/t/55_crash.t
  Win32-GUI-Scintilla/t/98_pod.t
  Win32-GUI-Scintilla/t/99_pod_coverage.t


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Perl-win32-gui-cvscommit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-cvscommit
http://perl-win32-gui.sourceforge.net/


[Perl-win32-gui-cvscommit] Win32-GUI/docs/GUI/Reference Packages.pod, 1.2, 1.3 Packages_package.tpl, 1.4, 1.5

2008-02-02 Thread Robert May
This is an automatically generated mail from the syncmail system.  Do not reply 
directly to this email.  Further discussion should take place on the hackers 
list: [EMAIL PROTECTED]

Update of /cvsroot/perl-win32-gui/Win32-GUI/docs/GUI/Reference
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29453/docs/GUI/Reference

Modified Files:
Packages.pod Packages_package.tpl 
Log Message:
Documentation tidy-up

Index: Packages_package.tpl
===
RCS file: 
/cvsroot/perl-win32-gui/Win32-GUI/docs/GUI/Reference/Packages_package.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Packages_package.tpl16 Mar 2006 21:11:13 -  1.4
--- Packages_package.tpl2 Feb 2008 17:03:56 -   1.5
***
*** 2,3 
--- 2,4 
  
  =for comment $Id$
+ 

Index: Packages.pod
===
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/docs/GUI/Reference/Packages.pod,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Packages.pod16 Jul 2006 11:09:33 -  1.2
--- Packages.pod2 Feb 2008 17:03:56 -   1.3
***
*** 3,7 
  =head1 NAME
  
! Win32::GUI::Reference::Packages - Core packages
  
  =head1 DESCRIPTION
--- 3,7 
  =head1 NAME
  
! Win32::GUI::Reference::Packages - List of Win32::GUI packages.
  
  =head1 DESCRIPTION


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Perl-win32-gui-cvscommit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-cvscommit
http://perl-win32-gui.sourceforge.net/


[Perl-win32-gui-cvscommit] Win32-GUI/build_tools doPodDocs.pl, 1.5, 1.6

2008-02-02 Thread Robert May
This is an automatically generated mail from the syncmail system.  Do not reply 
directly to this email.  Further discussion should take place on the hackers 
list: [EMAIL PROTECTED]

Update of /cvsroot/perl-win32-gui/Win32-GUI/build_tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29453/build_tools

Modified Files:
doPodDocs.pl 
Log Message:
Documentation tidy-up

Index: doPodDocs.pl
===
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/build_tools/doPodDocs.pl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** doPodDocs.pl16 Mar 2006 21:11:12 -  1.5
--- doPodDocs.pl2 Feb 2008 17:03:56 -   1.6
***
*** 30,33 
--- 30,44 
  $SrcParser::DEBUG = 0;
  
+ my @packages_with_own_pod = qw(
+ Win32::GUI::AxWindow
+ Win32::GUI::BitmapInline
+ Win32::GUI::Constants
+ Win32::GUI::DIBitmap
+ Win32::GUI::DropFiles
+ Win32::GUI::Grid
+ Win32::GUI::GridLayout
+ Win32::GUI::Scintilla
+ );
+ 
  ##
  # (1) Parse the source fies for documentation.
***
*** 67,71 
my $packages = "";
  
!   for my $package (SrcParser::get_package_list()) {
  (my $link = $package) =~ s/^Win32::GUI$/Win32::GUI::Reference::Methods/; 
# special case for Win32::GUI
  BuildTools::macro_set("PKGNAME", $package);
--- 78,82 
my $packages = "";
  
!   for my $package (sort(SrcParser::get_package_list(), 
@packages_with_own_pod)) {
  (my $link = $package) =~ s/^Win32::GUI$/Win32::GUI::Reference::Methods/; 
# special case for Win32::GUI
  BuildTools::macro_set("PKGNAME", $package);


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Perl-win32-gui-cvscommit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-cvscommit
http://perl-win32-gui.sourceforge.net/


[Perl-win32-gui-cvscommit] Win32-GUI/docs GUI.pod,1.8,1.9

2008-02-02 Thread Robert May
This is an automatically generated mail from the syncmail system.  Do not reply 
directly to this email.  Further discussion should take place on the hackers 
list: [EMAIL PROTECTED]

Update of /cvsroot/perl-win32-gui/Win32-GUI/docs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29453/docs

Modified Files:
GUI.pod 
Log Message:
Documentation tidy-up

Index: GUI.pod
===
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/docs/GUI.pod,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** GUI.pod 1 Feb 2008 13:33:22 -   1.8
--- GUI.pod 2 Feb 2008 17:03:56 -   1.9
***
*** 58,64 
  =over
  
! =item * L
  
! Per package documentation for the core Win32::GUI packages.
  
  =item * L
--- 58,64 
  =over
  
! =item * L
  
! Per package documentation for Win32::GUI.
  
  =item * L
***
*** 77,122 
  =back
  
- =head2 Support Packages
- 
- =over
- 
- =item * L
- 
- Host AxticeX controls in Win32::GUI windows
- 
- =item * L
- 
- Load bitmaps from within your script, rather than a seperate
- file.
- 
- =item * L
- 
- Export any of over 1700 Win32 API constants for use with
- Win32::GUI functions and methods.
- 
- =item * L
- 
- Support for creating bitmaps from other graphics file formats
- and more image manipulation.  Can interact with the perl GD
- package if more complex image manipulation is required.
- 
- =item * L
- 
- Accept files dragged from the Windows shell to your application.
- 
- =item * L
- 
- Tabular data entry and display.
- 
- =item * L
- 
- A simple layout manager.
- 
- =item * L
- 
- An advanced source code editor control.
- 
- =back
- 
  =head1 Sample Code
  
--- 77,80 


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Perl-win32-gui-cvscommit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-cvscommit
http://perl-win32-gui.sourceforge.net/