-
Notifications
You must be signed in to change notification settings - Fork 19
Create a Alien::Base::ModuleBuild::Repository::Git to handle downloading source from Git repos #124
Comments
I had this in the back of my mind for a while now too. We can use something like |
On Tue, May 26, 2015 at 7:21 AM Graham Ollis notifications@github.com
|
@jberger I am not sure what you are referring to as I did not suggest pulling from master. I was discussing how to specify git itself as a prerequisite reliably. I have had good experience with using |
No, you didn't say anything about that, I was just mentioning it off the On Tue, May 26, 2015 at 9:28 AM Graham Ollis notifications@github.com
|
I usually just add my Git-interaction module as a "recommends" and then:
I think it'd be better to have it as a separate dist because the author of the CPAN module using the Git version would need to explicitly depend on either it, or the Git module you use. |
Does not solve this entirely but I also did want to just mention that github based projects can be downloaded (by tag, branch sha, etc) through the http interface: https://github.com/Perl5-Alien/Alien-Base/archive/69d75834c73b8982df1af9f12684454a42a67c55.zip a ::Repository::GitHub could find the most recent tag using the GitHub API and then download that one via the http interface. The advantage here is that you don't have a dep on git. Obviously the disadvantage is that it only supports github hosted projects. |
I wanted to add a note that @jberger and I were talking about AB at YAPC::NA this week and I said that I thought the fetch mechanism needed an overhaul and he agreed (or at least agreed that would be okay). I am going to try and take a stab at it in the next couple of months and will likely use git support as a use case for the plugability aspect. |
Here is an example of how you could use git as a package source using use alienfile;
probe sub { 'share' };
share {
download [
[ "git clone --bare https://github.com/Perl5-Alien/dontpanic.git" ]
];
extract [
[ "git clone %{alien.install.download}" ]
];
plugin 'Build::Autoconf' => ();
build [
'git checkout v1.00',
'bash autogen.sh',
'%{configure} --disable-shared --prefix=%{alien.install.prefix}',
'%{make}',
'%{make} install',
];
}; |
I'd like as much as possible to use other people's work for this stuff - is it possible to use |
@mohawk2 Not sure, I suspect that it is that it is perl/cpan specific, but if someone can point me to an API we can evaluate it. The point here is less "hey look I can use Alien::Build to download from git" and more "hey look I can use Alien::Build to download as long as there is a command to do it." |
An example of this that I had in mind was CastXML. It has no release tags. |
This example works with CastXML for the download, although the build fails: https://github.com/plicease/Alien-Build-Git/blob/master/examples/alienfile.castxml I am going to release Alien-Build-Git probably later today or tomorrow. I consider this issue addressed. |
Some projects only release their code via Git and it might be useful to have a way to specify a Git repo along with a Git commit SHA or a version tag.
The text was updated successfully, but these errors were encountered: