目录

Alien::Build::Plugin::Download::GitLab static linux

Alien::Build plugin to download from GitLab

SYNOPSIS

use alienfile;

plugin 'Download::GitLab' => (
  gitlab_user    => 'plicease',
  gitlab_project => 'dontpanic',
);

DESCRIPTION

This plugin is designed for downloading assets from a GitLab instance.

PROPERTIES

gitlab_host

The host to fetch from https://gitlab.com by default.

gitlab_user

The user to fetch from.

gitlab_project

The project to fetch from.

type

The asset type to fetch. This must be one of source or link.

format

The expected format of the asset. This should be one that Alien::Build::Plugin::Extract::Negotiate understands. The default is tar.gz.

version_from

Where to compute the version from. This should be one of tag_name or name. The default is tag_name.

convert_version

This is an optional code reference, which can be used to modify the version. For example, if tags have a v prefix you could remove it like so:

plugin 'Download::GitLab' => (
  gitlab_user     => 'plicease',
  gitlab_project  => 'dontpanic',
  convert_version => sub {
    my $version = shift;
    $version =~ s/^v//;
    return $version;
  },
);

link_name

For link types, this is a regular expression that filters the asset filenames. For example, if there are multiple archive formats provided, you can get just the gzip’d tarball by setting this to qr/\.tar\.gz$/.

SEE ALSO

AUTHOR

Graham Ollis plicease@cpan.org

COPYRIGHT AND LICENSE

This software is copyright (c) 2022 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

关于

用于从GitLab下载资源的Perl Alien::Build插件

38.0 KB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9 京公网安备 11010802032778号