是否有适用于 Perl 6 的类似 CPAN/CPAN6 的项目?
我最近在玩 Rakudo Perl 6,并正在寻找类似于 CPAN 的项目。我找到了 CPAN 6,但我认为还没有 Perl 6 代码。
因此,我正在寻找一些替代方案,它不一定旨在成为长期解决方案,但能够维护模块并用 Perl 6 编写。
随着 Rakudo 开发的进行,很快就有可能创建更复杂的 Perl 6 代码。
I'm playing around with Rakudo Perl 6 lately and was searching for a project similar to CPAN. I found CPAN 6, but I think there is no Perl 6 code yet.
So I'm looking for some alternative that does not necessarily aim to be a long term solution, but is capable of maintaining modules and is written in Perl 6.
As Rakudo development goes it might be possible to create more complex Perl 6 code soon.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Perl 6 模块的第一站应该是 https://modules.raku.org/。
模块应使用 zef 安装。
Your first stop for Perl 6 modules should be https://modules.raku.org/.
Modules should be installed with zef.
Markov 拥有 cpan6.org 并断断续续地工作了几年。与我交谈过的大多数人都因为各种原因不太看好这个项目。大多数现有 Perl 6 代码位于 modules.raku.org(以前称为 proto.perl.org)。
cpan-workers
上有人讨论以某种规范的方式简单地扩展存档结构,使其更适合其他语言,解决方案在 7 年后出现。Markov owns cpan6.org and worked on-and-off for some years on it. Most people I've talked don't regard this project well for various reasons. Most existing Perl 6 code lives at modules.raku.org, formerly proto.perl.org.
There's been talk on
cpan-workers
to simply extend the archive structure in some canonical way to make it more suitable for other languages, a solution arrived 7 years later.新的热点是 zef。这将查询 Perl 6 网站上可用的模块。它配备了最新版本的 Rakudo *,并且使用起来非常简单。
The new hotness is zef. This will query modules available on the Perl 6 website. It comes with the latest version of Rakudo * and is very simple to use.
截至 2018 年 3 月,
zef
是安装 Perl 的首选方式6 个模块,它利用两个不同的存储库,modules.perl.org 中的模块列表,并且有效地 < a href="https://search.cpan.org" rel="nofollow noreferrer">CPAN,最终将成为 Perl 6 模块的唯一位置。As of today, March 2018,
zef
is the preferred way of installing Perl 6 modules and it taps two different repositories, the list of modules in modules.perl.org and, effectively, CPAN, which will eventually become the only place for Perl 6 modules.