Modern Perl programs use several modules to enable additional features of Perl
and of the CPAN. Instead of copying and pasting all of these use lines, instead
write only one:
use Modern::Perl;
This enables the strict and warnings pragmas, as well as all of the features
available in Perl 5.10. It also enables C3 method resolution order as
documented in perldoc mro and loads IO::File and IO::Handle so that you may
call methods on filehandles. In the future, it may include additional core
modules and pragmas.
From MAINTAINER edward # rdtan / net, ok sthen@
add / change BUILD_DEPENDS for all ports using camlp4.
Findlib is changed because it won't use camlp4 and doesn't install
the Bytes module anymore, which is now included in OCaml 4.02.
ok avsm@
This will work with OCaml 4.02. Always use -enable-pcre,
because Netstring_str will now use the builtin Str module,
while Netstring_pcre will use ocaml-pcre.
ok avsm@
This library provides GObjects and helper methods to make it easy to
read and write AppStream metadata. It also provides a simple DOM
implementation that makes it easy to edit nodes and convert to and from
the standardized XML representation.
<...>
ok jasper@
- A fix for the SPARC float handling. Adding the missing & to the field allows
the backend feature flag to be passed back which it was not without it.
- Add some patches to enable the integrated assembler on PowerPC / SPARC.
I left these out before as I thought because Clang was not obeying this
setting and had its own similar bits they were not necessary but turns
out the backend has some code that does obey this setting.
ok sthen@
need an upgrade, too.
* react uses opam without findlib as build system. Therefore call
ocamlbuild directly. And roll a custom do-install.
* lwt will need camlp4.
* zed has moved to github.
* utop, too.
* lambda-term, too. Also will it need camlp4.
OK jca@