js.h wants to include machine/joystick.h for analog joystick support.
other platforms don't have such support, so hide it with an arch define.
this allows us to use the "portable game librarys" on more than one arch.
OK MANTAINER
Algorithm::CurveFit implements a nonlinear least squares curve fitting
algorithm. That means, it fits a curve of known form (sine-like,
exponential, polynomial of degree n, etc.) to a given set of data
points.
from Markus Bergkvist (MAINTAINER), with a tweak by me
port-modules(5) will be tweaked accordingly when all ports are converted
to using this new module.
"i like the idea" wcmaier@
"i like it" landry@
some input and ok jasper@
- sky is blue, grass is green and examples get installed under
%D/share/examples/prognam/, stating the obvious doesn't help, remove
MESSAGE
Stuart, whatever you were smoking at the time of the import, I want some!
This python module provides access to the serial port, with backends for
standard Python running on Windows, Linux, BSD (possibly any POSIX
compilant system), Jython and IronPython. The module named "serial"
automatically selects the appropriate backend.
Port by MAINTAINER (Daniel Gruber <daniel at tydirium dot org>) with
tweaks from me.
SDL_perl is a package of perl modules that provides both functional
and object orient interfaces to the Simple DirectMedia Layer for Perl
5. This package does take some liberties with the SDL API, and
attempts to adhere to the spirit of both the SDL and Perl. For the
object oriented programming interface please see the documentation
provided on a per class basis.
Pod::ToDemo allows you to write POD-only modules that serve as
tutorials which can write out demo programs if you invoke them
directly. That is, while SDL::Tutorial is a tutorial on writing
beginner SDL applications with Perl, you can invoke it as:
$ perl -MSDL::Tutorial=sdl_demo.pl -e 1
and it will write a bare-bones demo program called sdl_demo.pl based
on the tutorial.
- sync patches with OpenJDK's bsd_port project
- require a pre-installed package for native_bootstrap
- The new 1.7 class java.nio.channels.spi.AsynchronousChannelProvider
is not implemented yet on BSD.
- The new 1.7 package java.nio.sctp is not included and not supported on
OpenBD
Rack::Test is a small, simple testing API for Rack apps.
It can be used on its own or as a reusable starting point
for Web frameworks and testing libraries to build on.
Most of its initial functionality is an extraction of
Merb 1.0's request helpers feature.
minitest/unit is a small and fast replacement for ruby's huge and slow
test/unit. This is meant to be clean and easy to use both as a regular test
writer and for language implementors that need a minimal set of methods to
bootstrap a working unit test suite.
Okay bernd@
Also:
- install gitweb and related stuff (from Simon Kuhnle)
- fix paths in some manpages (noticed by mk@)
- 64bit for date.c fix went upstream
Thanks guys!
jdk/1.7 package to bootstrap
- prevent users from using native_bootstrap or jdk17_bootstrap when
the required package is not pre-installed
"looks good" sthen@
Out of the box Moose only provides very barebones cloning support in
order to maximize flexibility.
This role provides a clone method that makes use of the low level
cloning support already in Moose and adds selective deep cloning based
on introspection on top of that. Attributes with the Clone trait will
handle cloning of data within the object, typically delegating to the
attribute value's own clone method.
Hash::Util::FieldHash using perltie. When Hash::Util::FieldHash is
available it will use that instead.
This way code requiring field hashes can benefit from fast, robust field
hashes on Perl 5.10 and newer, but still run on older perls that don't
ship with that module.
Vstr is a string library designed for network communication. Its
design uses blocks of ptr+length data, so adding, substituting, and
deleting data are all fast operations. It has a full API of all the
usual string tasks: searching, comparing, splitting, substitution,
converting between upper and lower case, and parsing numbers and
strings. Has a full POSIX and ISO 9899:1999 compliant printf()
implementation including gcc warning compatible custom formatters.
The YAML specification is huge. Really, really huge. It contains all
the functionality of XML, except with flexibility and choice, which
makes it easier to read, but with a formal specification that is more
complex than XML.
The original pure-Perl implementation YAML costs just over 4 megabytes
of memory to load. Just like with Windows .ini files (3 meg to load)
and CSS (3.5 meg to load) the situation is just asking for a YAML::Tiny
module, an incomplete but correct and usable subset of the
functionality, in as little code as possible.
This module lets you defer actions that will take place when the control
flow returns into an upper scope. Currently, you can hook an upper
scope end, or localize variables, array/hash values or deletions of
elements in higher contexts. You can also return to an upper level and
know which context was in use then.
DateTime::Set is a module for datetime sets. It can be used to handle
two different types of sets:
* Fixed sets of predefined datetime objects. For example, if we wanted
to create a set of datetimes containing the birthdays of people in
our family.
* Recurring sets, such as "every Wednesday", or "noon on the 15th day
of every month". This type of set can have fixed starting and ending
datetimes, but neither is required.
Set::Infinite is a Set Theory module for infinite sets.
A set is a collection of objects. The objects that belong to a set are
called its members, or "elements". As objects we allow (almost)
anything: reals, integers, and objects (such as dates).
Note that there is no account for
- the order of elements. For example, {1,2} = {2,1}.
- repetition of elements. For example, {1,2,2} = {1,1,1,2} = {1,2}.
dot.conf is a simple-to-use and powerful configuration-file parser
library written in C. The configuration files created for dot.conf look
very similar to those used by the Apache Webserver.
Upstream bug (now fixed) sets MODPY_EGG_VERSION=unknown, so we have to
use that for now. Also, locale stuffs moved to i18n module. No bump
because it didn't package anyway. Sigh.
* Fixed rendering of fonts with 2 bit and 4 bit embedded graymaps
* Fixed bug in solid bold glyph rendering
* Updated to build with the latest version of FreeType
* Fixed crash when passing NULL to TTF_CloseFont()
Python-distutils-extra allows to easily integrate themable icons,
scrollkeeper based documentation and gettext based translations in your
python install and build tools. It can be used with python's distutils
or the enhanced setuptools.
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@
Split it into -main and -gnome, the latter providing gnome-specific
libsoup library. While here, prettify Makefile and set HOMEPAGE.
Tested in a bulk build by and ok jasper@