- Fix insecure permissions for directories in distfile build tree. CVE-2009-4029
- Fix insecure permissions used for the top of the distfile build tree. CVE-2012-3386
This was already tested in a bulk build by me as part of a larger diff
from brad
ok aja@ sthen@ espie@
The greenlet package is a spin-off of Stackless, a version of CPython
that supports micro-threads called "tasklets". Tasklets run
pseudo-concurrently (typically in a single or a few OS-level threads)
and are synchronized with data exchanges on "channels".
Dependency of the just-imported py-gevent.
ok rpointel@
gevent is a Python networking library that uses greenlet to provide
synchronous API on top of libevent event loop.
* Fast event loop based on libevent.
* Lightweight execution units based on greenlet.
* Familiar API that re-uses concepts from the Python standard library.
* Cooperative sockets with ssl support.
* DNS queries performed through libevent-dns.
* Ability to use standard library and 3rd party modules written for
standard blocking sockets
* Fast WSGI server based on libevent-http.
Requirement of upcoming firefox sync port.
ok rpointel@
Node-gir is node bindings to the girepository library making it possible
to make automatic and dynamic calls to any library that has GI
annotations installed.
This will make it possible to script a GNOME desktop system entirely
from Node much in the way it's done today with Seed, GJS or pygtk.
ok sthen@
s module is useful for writers of daemons and other processes that
need to tell whether they are already running, in order to prevent
multiple process instances. The module accomplishes this via *nix-style
pidfiles, which are files that store a process identifier.
tested on i386 and macppc, merdely on amd64
OK merdely