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.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, and if you have a dependency on a new version of Mobule::Build to run it, then you fail the circular dependency.
Of course, I'd be happy to be proven wrong (with full test script).
Reply to This
Parent
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