what should Bundle-Phalanx install ?

what should Bundle-Phalanx install ?

am 14.12.2003 22:11:06 von Jim Cromie

--------------030808090602060303010901
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Hi Steve,

thanks for the bundle.
attached patch makes a few changes;

1. change summary to: Bundle::Phalanx - A bundle to install modules
on the Phalanx-100 list.
2. drops direct include of 'Msql'.
3. change DBD::mysql to via Bundle::DBD::mysql,
4. calls it Phalanx100.pm, to avoid overwrites

*I ASSUME* bundle aggregation/delegation is the best way to do things,
it seems to work in this particular case.

Ive ccd DBD::mysql to hopefully get a recommendation. There is some
ambiguity,
but Ive patched to 1.

cpan> b /mysql/
Bundle Bundle::DBD::mysql
(J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz)
Bundle Bundle::Mysql
(J/JW/JWIED/Msql-Mysql-modules-1.1835.tar.gz)

Jochen,
do you want a patch to make one use the other ?
do you want to switch to a Bundle- filename ?
It seems that this would put the INST_FILE under (for me)
/usr/local/cpan/Bundle.
Or is that cuz its -multi dependent ?

cpan> b Bundle::DBD::mysql
Bundle id = Bundle::DBD::mysql
CPAN_USERID JWIED (Jochen Wiedmann )
CPAN_VERSION 2.0419
CPAN_FILE J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz
INST_FILE
/usr/local/lib/perl5/site_perl/5.8.1/i686-linux-thread-multi /Bundle/DBD/mysql.pm
INST_VERSION 2.9002

cpan> b Bundle::Phalanx
Bundle id = Bundle::Phalanx
CPAN_USERID SMPETERS (Steve Peters )
CPAN_VERSION 0.02
CPAN_FILE S/SM/SMPETERS/Bundle-Phalanx-0.02.tar.gz
MANPAGE Bundle::Phalanx - A bundle to install all modules used
for Phalanx project.
INST_FILE /usr/local/cpan/Bundle/Phalanx.pm
INST_VERSION 0.02



--------------030808090602060303010901
Content-Type: text/plain;
name="patch.phalanx"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="patch.phalanx"

--- Phalanx.pm Sun Dec 14 09:50:11 2003
+++ Phalanx100.pm Sun Dec 14 12:13:14 2003
@@ -1,6 +1,6 @@
-package Bundle::Phalanx;
+package Bundle::Phalanx100;

-$Bundle::Phalanx::VERSION = '0.02';
+$Bundle::Phalanx100::VERSION = '0.03';

1;

@@ -9,7 +9,7 @@

=head1 NAME

-Bundle::Phalanx - A bundle to install all modules used for Phalanx project.
+Bundle::Phalanx - A bundle to install modules on the Phalanx-100 project.

=head1 SYNOPSIS

@@ -23,7 +23,7 @@

DBI

-DBD::mysql
+Bundle::DBD::mysql

HTML::Parser

@@ -165,8 +165,6 @@

MP3::Info

-Msql
-
Net::Daemon

Net::SNMP


--------------030808090602060303010901
Content-Type: text/plain; charset=us-ascii

--
MySQL Perl Mailing List
For list archives: http://lists.mysql.com/perl
To unsubscribe: http://lists.mysql.com/perl?unsub=gcdmp-msql-mysql-modules@m .gmane.org
--------------030808090602060303010901--

Re: what should Bundle-Phalanx install ?

am 15.12.2003 04:14:35 von Steve Peters

Jim,

Thanks for the patch. I was hoping to work on this a bit more later
this week, and should have time to test it out then. As a preview, I do
have some changes to go in, as well, to change the order of the
installs. Currently, it is in the order shown on the website, which is
basically alphabetical. The new changes should push some of
prerequisites to other modules up the list. It will also include a
couple modules not listed as part of the Phalanx 100, but are
prerequisites to many of the modules (i.e. Digest::base and
Digest::MD5).

Thanks again, and if you have any more ideas, please let me know.

Steve Peters
steve@fisharerojo.org

On Sun, 2003-12-14 at 15:11, Jim Cromie wrote:
> Hi Steve,
>
> thanks for the bundle.
> attached patch makes a few changes;
>
> 1. change summary to: Bundle::Phalanx - A bundle to install modules
> on the Phalanx-100 list.
> 2. drops direct include of 'Msql'.
> 3. change DBD::mysql to via Bundle::DBD::mysql,
> 4. calls it Phalanx100.pm, to avoid overwrites
>
> *I ASSUME* bundle aggregation/delegation is the best way to do things,
> it seems to work in this particular case.
>
> Ive ccd DBD::mysql to hopefully get a recommendation. There is some
> ambiguity,
> but Ive patched to 1.
>
> cpan> b /mysql/
> Bundle Bundle::DBD::mysql
> (J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz)
> Bundle Bundle::Mysql
> (J/JW/JWIED/Msql-Mysql-modules-1.1835.tar.gz)
>
> Jochen,
> do you want a patch to make one use the other ?
> do you want to switch to a Bundle- filename ?
> It seems that this would put the INST_FILE under (for me)
> /usr/local/cpan/Bundle.
> Or is that cuz its -multi dependent ?
>
> cpan> b Bundle::DBD::mysql
> Bundle id = Bundle::DBD::mysql
> CPAN_USERID JWIED (Jochen Wiedmann )
> CPAN_VERSION 2.0419
> CPAN_FILE J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz
> INST_FILE
> /usr/local/lib/perl5/site_perl/5.8.1/i686-linux-thread-multi /Bundle/DBD/mysql.pm
> INST_VERSION 2.9002
>
> cpan> b Bundle::Phalanx
> Bundle id = Bundle::Phalanx
> CPAN_USERID SMPETERS (Steve Peters )
> CPAN_VERSION 0.02
> CPAN_FILE S/SM/SMPETERS/Bundle-Phalanx-0.02.tar.gz
> MANPAGE Bundle::Phalanx - A bundle to install all modules used
> for Phalanx project.
> INST_FILE /usr/local/cpan/Bundle/Phalanx.pm
> INST_VERSION 0.02
>
>
>
> ____________________________________________________________ __________
> --- Phalanx.pm Sun Dec 14 09:50:11 2003
> +++ Phalanx100.pm Sun Dec 14 12:13:14 2003
> @@ -1,6 +1,6 @@
> -package Bundle::Phalanx;
> +package Bundle::Phalanx100;
>
> -$Bundle::Phalanx::VERSION = '0.02';
> +$Bundle::Phalanx100::VERSION = '0.03';
>
> 1;
>
> @@ -9,7 +9,7 @@
>
> =head1 NAME
>
> -Bundle::Phalanx - A bundle to install all modules used for Phalanx project.
> +Bundle::Phalanx - A bundle to install modules on the Phalanx-100 project.
>
> =head1 SYNOPSIS
>
> @@ -23,7 +23,7 @@
>
> DBI
>
> -DBD::mysql
> +Bundle::DBD::mysql
>
> HTML::Parser
>
> @@ -165,8 +165,6 @@
>
> MP3::Info
>
> -Msql
> -
> Net::Daemon
>
> Net::SNMP


--
MySQL Perl Mailing List
For list archives: http://lists.mysql.com/perl
To unsubscribe: http://lists.mysql.com/perl?unsub=gcdmp-msql-mysql-modules@m .gmane.org

Re: what should Bundle-Phalanx install ?

am 15.12.2003 04:14:35 von Steve Peters

Jim,

Thanks for the patch. I was hoping to work on this a bit more later
this week, and should have time to test it out then. As a preview, I do
have some changes to go in, as well, to change the order of the
installs. Currently, it is in the order shown on the website, which is
basically alphabetical. The new changes should push some of
prerequisites to other modules up the list. It will also include a
couple modules not listed as part of the Phalanx 100, but are
prerequisites to many of the modules (i.e. Digest::base and
Digest::MD5).

Thanks again, and if you have any more ideas, please let me know.

Steve Peters
steve@fisharerojo.org

On Sun, 2003-12-14 at 15:11, Jim Cromie wrote:
> Hi Steve,
>
> thanks for the bundle.
> attached patch makes a few changes;
>
> 1. change summary to: Bundle::Phalanx - A bundle to install modules
> on the Phalanx-100 list.
> 2. drops direct include of 'Msql'.
> 3. change DBD::mysql to via Bundle::DBD::mysql,
> 4. calls it Phalanx100.pm, to avoid overwrites
>
> *I ASSUME* bundle aggregation/delegation is the best way to do things,
> it seems to work in this particular case.
>
> Ive ccd DBD::mysql to hopefully get a recommendation. There is some
> ambiguity,
> but Ive patched to 1.
>
> cpan> b /mysql/
> Bundle Bundle::DBD::mysql
> (J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz)
> Bundle Bundle::Mysql
> (J/JW/JWIED/Msql-Mysql-modules-1.1835.tar.gz)
>
> Jochen,
> do you want a patch to make one use the other ?
> do you want to switch to a Bundle- filename ?
> It seems that this would put the INST_FILE under (for me)
> /usr/local/cpan/Bundle.
> Or is that cuz its -multi dependent ?
>
> cpan> b Bundle::DBD::mysql
> Bundle id = Bundle::DBD::mysql
> CPAN_USERID JWIED (Jochen Wiedmann )
> CPAN_VERSION 2.0419
> CPAN_FILE J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz
> INST_FILE
> /usr/local/lib/perl5/site_perl/5.8.1/i686-linux-thread-multi /Bundle/DBD/mysql.pm
> INST_VERSION 2.9002
>
> cpan> b Bundle::Phalanx
> Bundle id = Bundle::Phalanx
> CPAN_USERID SMPETERS (Steve Peters )
> CPAN_VERSION 0.02
> CPAN_FILE S/SM/SMPETERS/Bundle-Phalanx-0.02.tar.gz
> MANPAGE Bundle::Phalanx - A bundle to install all modules used
> for Phalanx project.
> INST_FILE /usr/local/cpan/Bundle/Phalanx.pm
> INST_VERSION 0.02
>
>
>
> ____________________________________________________________ __________
> --- Phalanx.pm Sun Dec 14 09:50:11 2003
> +++ Phalanx100.pm Sun Dec 14 12:13:14 2003
> @@ -1,6 +1,6 @@
> -package Bundle::Phalanx;
> +package Bundle::Phalanx100;
>
> -$Bundle::Phalanx::VERSION = '0.02';
> +$Bundle::Phalanx100::VERSION = '0.03';
>
> 1;
>
> @@ -9,7 +9,7 @@
>
> =head1 NAME
>
> -Bundle::Phalanx - A bundle to install all modules used for Phalanx project.
> +Bundle::Phalanx - A bundle to install modules on the Phalanx-100 project.
>
> =head1 SYNOPSIS
>
> @@ -23,7 +23,7 @@
>
> DBI
>
> -DBD::mysql
> +Bundle::DBD::mysql
>
> HTML::Parser
>
> @@ -165,8 +165,6 @@
>
> MP3::Info
>
> -Msql
> -
> Net::Daemon
>
> Net::SNMP


--
MySQL Perl Mailing List
For list archives: http://lists.mysql.com/perl
To unsubscribe: http://lists.mysql.com/perl?unsub=gcdmp-msql-mysql-modules@m .gmane.org

Re: what should Bundle-Phalanx install ?

am 16.12.2003 01:24:06 von Rudy Lippan

On Sun, 14 Dec 2003, Steve Peters wrote:

> On Sun, 2003-12-14 at 15:11, Jim Cromie wrote:

> > Ive ccd DBD::mysql to hopefully get a recommendation. There is some
> > ambiguity,
> > but Ive patched to 1.
> >
> > cpan> b /mysql/
> > Bundle Bundle::DBD::mysql
> > (J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz)
> > Bundle Bundle::Mysql
> > (J/JW/JWIED/Msql-Mysql-modules-1.1835.tar.gz)
> >

Those are both old versions of DBD::mysql. I looked around on
search.capn and it seems that 1.835 is the last version of DBD::mysql to
include Bundle::Mysql; after 1.835, DBD::mysql was distributed with
Bundle::DBD::mysql.

The last version in the 1.x series is 1.2291. After that version the name
of the tarball changed from Msql-Mysql-modules to DBD-mysql and the
version number was bumped to 2.x.

The current version of DBD::mysql is 2.9003 unless you are looking to
support older mysql databases or to support msql databases, in which
case, you would want to use Msql-Mysql-modules-1.2219.tar.gz.


Rudy


--
MySQL Perl Mailing List
For list archives: http://lists.mysql.com/perl
To unsubscribe: http://lists.mysql.com/perl?unsub=gcdmp-msql-mysql-modules@m .gmane.org

Re: what should Bundle-Phalanx install ?

am 16.12.2003 01:24:06 von Rudy Lippan

On Sun, 14 Dec 2003, Steve Peters wrote:

> On Sun, 2003-12-14 at 15:11, Jim Cromie wrote:

> > Ive ccd DBD::mysql to hopefully get a recommendation. There is some
> > ambiguity,
> > but Ive patched to 1.
> >
> > cpan> b /mysql/
> > Bundle Bundle::DBD::mysql
> > (J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz)
> > Bundle Bundle::Mysql
> > (J/JW/JWIED/Msql-Mysql-modules-1.1835.tar.gz)
> >

Those are both old versions of DBD::mysql. I looked around on
search.capn and it seems that 1.835 is the last version of DBD::mysql to
include Bundle::Mysql; after 1.835, DBD::mysql was distributed with
Bundle::DBD::mysql.

The last version in the 1.x series is 1.2291. After that version the name
of the tarball changed from Msql-Mysql-modules to DBD-mysql and the
version number was bumped to 2.x.

The current version of DBD::mysql is 2.9003 unless you are looking to
support older mysql databases or to support msql databases, in which
case, you would want to use Msql-Mysql-modules-1.2219.tar.gz.


Rudy


--
MySQL Perl Mailing List
For list archives: http://lists.mysql.com/perl
To unsubscribe: http://lists.mysql.com/perl?unsub=gcdmp-msql-mysql-modules@m .gmane.org