NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
In Your Build.PL (Score:1)
Alternately, stick the dependency in
build_requires.Reply to This
Re:In Your Build.PL (Score:1)
As far as I'm aware, that doesn't ensure that Module::Build is upgraded, it just crashes the installer with an obscure error message that will be buried somewhere in the middle of 3000 lines of CPAN.pm output.
If you are doing a one-off install and running Build.PL directly, and you understand error messages, then maybe in that small case it's good enough. but of course almost nobody does that.
As for the build_requires dependency, the Build.PL needs to be run in order to confirm that
Re:In Your Build.PL (Score:1)
I don't have a distribution with a custom
Module::Buildsubclass where thebuild_requirestrick won't work, but if theuseline doesn't, how about printing the same error message? M::B and CPAN.pm communicate somehow, so I see no reason why following that protocol won't make this scheme work.Re:In Your Build.PL (Score:1)
There's a fairly good chance that the user will never see it, being buried deep in a larger installation.
Any solution which involves wetware (the user having to think) is no solution at all.
"M::B and CPAN.pm communicate somehow, so I see no reason why following that protocol won't make this scheme work."
As I said, Module::Build hasn't solved this problem yet.
The solution, as I've mentioned before, requires CPAN clients to have the capability t
Re:In Your Build.PL (Score:1)
You are not paying attention. Let me explain very slowly.
CPAN.pm and CPANPLUS both somehow detect when a distribution has unfulfilled dependencies. Both offer to install those dependencies.
Both MakeMaker and
Module::Buildsomehow indicate unfulfilled dependencies to the installer. I don't know if it's screenscraping or an API or whatever. I skimmed CPAN.pm this morning, but couldn't find it in two minutes.Now if there's an API or if there's a particular error message being scraped and detected and
Re:In Your Build.PL (Score:1)
There are three different conceptual code elements involved in a distribution.
The Installer.
The Build Process.
The Installed Module.
CPAN.pm detects the Installed Module has unfulfilled dependencies, and is informed of them by executing the installer.
This can theoretically be shortcut for static dependencies in a setset of cases, but in practice nobody ever sets that flag and so the installer MUST be run.
CPAN.pm detects the Build Process has unfulfilled
Re:In Your Build.PL (Score:1)
"This can theoretically shortcut for static dependencies in a subset of cases"
Re:In Your Build.PL (Score:1)
I am suggesting that, in those cases where the installation program depends on a specific minimum version of the installer module (and in several years of maintaining a couple of dozen of publicly available modules, I can think of one case where this was necessary), the author should do precisely that.
There already exists a perfectly good mechanism to mark and install dependencies through both of the installer shells. Why complicate the process?
I can
Re:In Your Build.PL (Score:1)
That is certainly an acceptable partial solution for the cases where dependencies are static, and one that individual authors can use today.
However, unfortunately, not all dependencies are static, and there is
Re:In Your Build.PL (Score:1)
I'm still not sure I've explained myself well.
I mean, "Authors of distributions that rely on a specific version of the bundling module should be able to mark that dependency in such a way that the installer can detect that dependency immediately." Whether that means adding a new entry in META.yml or running a little bit of code at the start of Build.PL or Makefile.PL, I don't particularly care.
The latter seems easiest.
The point is, I believe you can run just enough of the bundling program to flag an
Re:In Your Build.PL (Score:1)
There SHOULD be a way of doing it
I can see a number of ways in which it could be done, a few of which you have described.
It's just that the situation remains that despite what should be possible, it still hasn't been written, and what I try to keep pointing out is that there needs to be, and that whatever the solution is, it needs to be completed and working before we can consider M:B to be stable and suitable for the core.
The fact that Module::Build is in the core is what I wo
Re:In Your Build.PL (Score:1)
That is all reasonable; I quite agree.
Is the best place to discuss this on p5p or at a BOF somewhere?
Re:In Your Build.PL (Score:1)
By the way, I'm glad the two of you agree now. I was really waiting for you (two) to realize you were not even contradicting each other.
Steffen
Additional correction: (Score:1)
Even users only need to upgrade their M::B when they’re about to install something. And CPAN.pm could check if there is an upgrade to M::B and suggest doing it just like what it already does for updates to itself.
Seems much more tenable than the M::I model to me.
I mean, look at that list – good luck getting all 83 authors to push out 469 new releases total, just to fix their installers. And that’s now that M::I is relatively new – what will the situation look like when the CPAN i
Re:Additional correction: (Score:1)
Installers should always assume the user is completely clueless, or doesn't even exist because they've been replaced by a small shell script.
Yes, CPAN.pm could check and force-upgrade. I've had this conversation with Ken, and there's an RT ticket in the CPAN.pm queue that says "auto-upgrade a specific set of named modules". But it DOESN'T.
And no amount of handwaving about how other people (users or Andreas) could fix Module::Build's problem doesn'
Re:Additional correction: (Score:1)
If only there were some way CPAN or CPANPLUS could know about dependencies during an installation... yeah, that'd be SWEET.
Re:Additional correction: (Score:1)
Until you learn how the Perl installation process works, it's pointless to continue this too and fro.
Re:Additional correction: (Score:1)
You're right, it was a rude and unhelpful statement. Please accept my apology.