1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup perl5 1.0 |
---|
6 | |
---|
7 | perl5.branches 5.8 5.10 5.12 5.14 5.16 |
---|
8 | perl5.setup Moo 1.003001 ../by-authors/id/M/MS/MSTROUT |
---|
9 | |
---|
10 | platforms darwin |
---|
11 | maintainers nomaintainer |
---|
12 | license {Artistic-1 GPL} |
---|
13 | |
---|
14 | supported_archs noarch |
---|
15 | |
---|
16 | description Moo - Minimalist Object Orientation (with Moose compatiblity) |
---|
17 | |
---|
18 | long_description This module is an extremely light-weight subset of Moose \ |
---|
19 | optimised for rapid startup and \"pay only for what you \ |
---|
20 | use\". \ |
---|
21 | \ |
---|
22 | It also avoids depending on any XS modules to allow simple \ |
---|
23 | deployments. The name Moo is based on the idea that it \ |
---|
24 | provides almost -- but not quite -- two thirds of Moose. \ |
---|
25 | \ |
---|
26 | Unlike Mouse this module does not aim at full \ |
---|
27 | compatibility with Moose's surface syntax, preferring \ |
---|
28 | instead of provide full interoperability via the metaclass \ |
---|
29 | inflation capabilities described in \"MOO AND MOOSE\". |
---|
30 | |
---|
31 | checksums sha256 51ffe9d5129b78582c9eac3de70803cf14ff526a9df4a0c394b48bc69fd7c250 \ |
---|
32 | rmd160 b695ae0bd384d7a64087f6cb26a5f29303ffd006 |
---|
33 | |
---|
34 | if {${perl5.major} != ""} { |
---|
35 | depends_lib-append port:p${perl5.major}-devel-globaldestruction \ |
---|
36 | port:p${perl5.major}-strictures \ |
---|
37 | port:p${perl5.major}-role-tiny \ |
---|
38 | port:p${perl5.major}-dist-checkconflicts \ |
---|
39 | port:p${perl5.major}-module-runtime \ |
---|
40 | port:p${perl5.major}-class-method-modifiers |
---|
41 | depends_build-append port:p${perl5.major}-test-fatal |
---|
42 | } |
---|