o Use SUB_FILES infrastructure to full effect simplifying the
port's Makefile logic.
- Switch from files/amphetadesk.sh to files/amphetadesk.in
2) Bump PORTREVISION since there was a PLIST change due to the new
rc.d script name.
PR: 117082 [1]
- Fixes a bug causing only one instance of a sensor type to be added
PR: ports/118916
Submitted by: Pietro Cerutti <gahr_at_gahr.ch> with modification
Tested by: TAKANO Yuji <takachan_at_icmpv6.org>
This creates a new HTML::FormFu object, passing as it's argument
the contents of the "constructor" config value.
Use with Catalyst MVC
PR: ports/118997
Submitted by: az@
HTML::FormFu is a HTML form framework which aims to be as easy as possible to use for basic
web forms, but with the power and flexibility to do anything else you might want to do
(as long as it involves forms).
You can configure almost any part of formfu's behaviour and output. By default formfu renders
"XHTML 1.0 Strict" compliant markup, with as little extra markup as possible, but with
sufficient CSS class names to allow for a wide-range of output styles to be generated by
changing only the CSS.
PR: ports/118994
Submitted by: az@
A problem that I have found with the qr// operator is that the Regexp objects that
it creates are is impossible to dereference. This causes problems if you want to
change the data in the regexp without losing the reference to it.
Its impossible. Regexp::Copy allows you to change the Regexp by copying one object
created through qr// to another.
PR: ports/118991
Submitted by: az@
doesn't build there anyway. This is affecting the release builds.
This is a workaround: sparc64 video drivers probably need more exclusions.
Briefly discussed with: flz
- add the WITH_SPAMFOLDER knob from Alex Dupre's PR;
- fix lots of bugs in the new vlist code;
- fix a couple of bugs in MySQL's "valias -n" implementation;
- actually implement "valias -n" for PostgreSQL;
- fix a couple of directory descriptor leaks and other buglets.
PR: 117321 (the WITH_SPAMFOLDER knob)
Submitted by: ale
database is a simple data file containing records, each is a pair of a
key and a value. Every key and value is serial bytes with variable
length. Both binary data and character string can be used as a key and
a value. There is neither concept of data tables nor data types.
Records are organized in hash table or B+ tree.
WWW: http://tokyocabinet.sourceforge.net/
PR: ports/118947
Submitted by: Gea-Suan Lin <gslin at gslin.org>