MODGNOME_HELP_FILES is set to yes.
* add a build_depends on gnome-doc-utils if MODGNOME_HELP_FILES is set
to yes
* add rarian as a run_depends for gnome-doc-utils (will help with older
ports that will never be updated from using deprecated scrollkeeper)
* remove build+run_depends on gnome-doc-utils and rarian for ports that
have MODGNOME_HELP_FILES as they are now implied.
* bump where needed
This should help in having all required build dependencies for
gnome-related ports and it greatly simplifies things.
"thanks for cleaning this mess" and ok jasper@
used by the multi-instance support and without them "postfix set-permissions",
run at installation time, fails before it sets postdrop and postqueue to the
correct gid and mode, causing a problem for local deliveries. discussed
with Brad and Jakob, ok jakob@ (maintainer).
Fixes a few bugs and clarifies the license.
Minor library bump.
Update HOMEPAGE and MASTER_SITES.
Many thanks to the upstream developers for the quick response.
ok naddy@
it's installed by our dynamips port. bump package.
- remove NO_BUILD, it does actually carry out some steps in the build
stage. if they're left until fake-install, root-owned files in the work
directory prevent "make clean" from working.
ok Jonathan Armani (maintainer).
CouchRest provides a simple interface on top of CouchDB's RESTful
HTTP API, as well as including some utility scripts for managing
views and attachments.
- change HOMEPAGE, tweak COMMENT and reorder Makefile
I doubt this works since our libgtop2 is next to unusable but at least
it gives a better base to work on.
An extension to PEAK-Rules to prioritize methods in order to to
avoid AmbiguousMethods situations
This module provides four decorators:
prioritized_when
prioritized_around
prioritized_before
prioritized_after
ok fgs@
PEAK-Rules is a highly-extensible framework for creating and using
generic functions, from the very simple to the very complex. Out
of the box, it supports multiple-dispatch on positional arguments
using tuples of types, full predicate dispatch using strings
containing Python expressions, and CLOS-like method combining. (But
the framework allows you to mix and match dispatch engines and
custom method combinations, if you need or want to.)
ok fgs@
The peak.util.extremes module provides a production-quality
implementation of the Min and Max objects from PEP 326. While PEP
326 was rejected for inclusion in the language or standard library,
the objects described in it are useful in a variety of applications.
In PEAK, they have been used to implement generic functions (in
RuleDispatch and PEAK-Rules), as well as to handle scheduling and
time operations in the Trellis. Because this has led to each project
copying the same code, we've now split the module out so it can be
used independently.
input, ok fgs@
Installing SymbolType gives you access to the peak.util.symbols
module, previously available only by installing the full PEAK
toolkit. peak.util.symbols provides a Symbol type and two built-in
symbols that are used by PEAK: NOT_FOUND and NOT_GIVEN.
input, ok fgs@
peak.util.assembler is a simple bytecode assembler module that
handles most low-level bytecode generation details like jump offsets,
stack size tracking, line number table generation, constant and
variable name index tracking, etc. That way, you can focus your
attention on the desired semantics of your bytecode instead of on
these mechanical issues.
input, ok fgs@
Separating concerns into different objects makes it easier
to write reusable and separately-testable components. The AddOns
package (``peak.util.addons``) lets you manage concerns using
``AddOn`` classes.
input, ok fgs@