summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2013-01-26Partial pkglint cleanup.wiz1-5/+4
2013-01-26automake-1.13 compat.wiz2-1/+17
2013-01-26Revbump after graphics/jpeg and textproc/icuadam86-155/+172
2013-01-26trying to use -O2 on alpha does not work.. :( Drop back to -O1.schnoebe1-2/+10
2013-01-26Update mikutter to 0.2.1.1125.obache2-6/+6
* fix rare crash with opening user profile * fix rare crash at startup * fix rare crash when timeline context menu is opened
2013-01-25increase BUILDLINK_ABI_DEPENDS.icu due to so change from 49 to 50.reed1-2/+2
Also bump PKGREVISION for a few packages using it. The packages I did this for: net/yaz lang/parrot misc/openoffice3 (where I noticed the run-time failure due to missing shared library) www/webkit-gtk sysutils/open-vm-tools inputmethod/ibus-qt I didn't do this recursively or for all packages using icu since I didn't know if they used the shared library directly, some use was optional. The list of packages I didn't touch: devel/devhelp databases/idzebra databases/sqlite3 devel/gnustep-base/ finance/gnucash games/openttd graphics/shotwell lang/mono meta-pkgs/boost misc/calibre misc/libreoffice news/tin textproc/php-intl www/deforaos-surfer www/epiphany www/liferea-current www/midori
2013-01-25automake-1.13 compatability.jperkin2-5/+25
2013-01-24Update py-zmq to 2.2.0.1.obache4-29/+45
================ Changes in PyZMQ ================ 2.2.0.1 ======= This is a tech-preview release, to try out some new features. It is expected to be short-lived, as there are likely to be issues to iron out, particularly with the new pip-install support. Experimental New Stuff ---------------------- These features are marked 'experimental', which means that their APIs are not set in stone, and may be removed or changed in incompatible ways in later releases. Threadsafe ZMQStream ******************** With the IOLoop inherited from tornado, there is exactly one method that is threadsafe: :meth:`.IOLoop.add_callback`. With this release, we are trying an experimental option to pass all IOLoop calls via this method, so that ZMQStreams can be used from one thread while the IOLoop runs in another. To try out a threadsafe stream: .. sourcecode:: python stream = ZMQStream(socket, threadsafe=True) pip install pyzmq ***************** PyZMQ should now be pip installable, even on systems without libzmq. In these cases, when pyzmq fails to find an appropriate libzmq to link against, it will try to build libzmq as a Python extension. This work is derived from `pyzmq_static <https://github.com/brandon-rhodes/pyzmq-static>`_. To this end, PyZMQ source distributions include the sources for libzmq (2.2.0) and libuuid (2.21), both used under the LGPL. zmq.green ********* The excellent `gevent_zeromq <https://github.com/traviscline/gevent_zeromq>`_ socket subclass which provides `gevent <http://www.gevent.org/>`_ compatibility has been merged as :mod:`zmq.green`. .. seealso:: :ref:`zmq_green` Bugs fixed ---------- * TIMEO sockopts are properly included for libzmq-2.2.0 * avoid garbage collection of sockets after fork (would cause ``assert (mailbox.cpp:79)``). 2.2.0 ===== Some effort has gone into refining the pyzmq API in this release to make it a model for other language bindings. This is principally made in a few renames of objects and methods, all of which leave the old name for backwards compatibility. .. note:: As of this release, all code outside ``zmq.core`` is BSD licensed (where possible), to allow more permissive use of less-critical code and utilities. Name Changes ------------ * The :class:`~.Message` class has been renamed to :class:`~.Frame`, to better match other zmq bindings. The old Message name remains for backwards-compatibility. Wherever pyzmq docs say "Message", they should refer to a complete zmq atom of communication (one or more Frames, connected by ZMQ_SNDMORE). Please report any remaining instances of Message==MessagePart with an Issue (or better yet a Pull Request). * All ``foo_unicode`` methods are now called ``foo_string`` (``_unicode`` remains for backwards compatibility). This is not only for cross-language consistency, but it makes more sense in Python 3, where native strings are unicode, and the ``_unicode`` suffix was wedded too much to Python 2. Other Changes and Removals -------------------------- * ``prefix`` removed as an unused keyword argument from :meth:`~.Socket.send_multipart`. * ZMQStream :meth:`~.ZMQStream.send` default has been changed to `copy=True`, so it matches Socket :meth:`~.Socket.send`. * ZMQStream :meth:`~.ZMQStream.on_err` is deprecated, because it never did anything. * Python 2.5 compatibility has been dropped, and some code has been cleaned up to reflect no-longer-needed hacks. * Some Cython files in :mod:`zmq.core` have been split, to reduce the amount of Cython-compiled code. Much of the body of these files were pure Python, and thus did not benefit from the increased compile time. This change also aims to ease maintaining feature parity in other projects, such as `pyzmq-ctypes <https://github.com/svpcom/pyzmq-ctypes>`_. New Stuff --------- * :class:`~.Context` objects can now set default options when they create a socket. These are set and accessed as attributes to the context. Socket options that do not apply to a socket (e.g. SUBSCRIBE on non-SUB sockets) will simply be ignored. * :meth:`~.ZMQStream.on_recv_stream` has been added, which adds the stream itself as a second argument to the callback, making it easier to use a single callback on multiple streams. * A :attr:`~Frame.more` boolean attribute has been added to the :class:`~.Frame` (née Message) class, so that frames can be identified as terminal without extra queires of :attr:`~.Socket.rcvmore`. Experimental New Stuff ---------------------- These features are marked 'experimental', which means that their APIs are not set in stone, and may be removed or changed in incompatible ways in later releases. * :mod:`zmq.web` added for load-balancing requests in a tornado webapp with zeromq.
2013-01-24Update zeromq to 2.2.0.obache2-6/+6
0MQ version 2.2.0 (Stable), released on 2012/04/04 ================================================== Changes ------- * Fixed issue 349, add send/recv timeout socket options. Bug fixes --------- * Fixed issue 301, fix builds on HP-UX 11iv3 when using either gcc or aCC. * Fixed issue 305, memory leakage when using dynamic subscriptions. * Fixed issue 332, libzmq doesn't compile on Android NDK. * Fixed issue 293, libzmq doesn't follow ZMTP/1.0 spec. * Fixed issue 342, cannot build against zmq.hpp under C++11.
2013-01-24use http as MASTER_SITES.obache1-3/+2
2013-01-21Remove obsolete BUILDLINK_API_DEPENDS.python25 lines (python25 was removed).wiz1-2/+1
2013-01-20Fix net/ocamlnet's patch checksums. Coulda sworn I did that already.riastradh1-2/+2
2013-01-19Fix net/ocamlnet's AT_* flag build breakage on NetBSD.riastradh2-6/+19
2013-01-19Add NetBSD /etc/dumpdates monitoring plugin for nagiosmanu5-1/+35
2013-01-19Add NetBSD RAIDframe monitoring plugin for nagiosmanu5-1/+39
2013-01-19Add NetBSD support in check_ide_smartmanu6-5/+556
Patch submitted upstream, but without much success
2013-01-17Add missing return values.joerg2-1/+33
2013-01-17Don't add default arguments at implementation time.joerg2-1/+15
2013-01-15Don't add default arguments during method implementation.joerg2-1/+15
2013-01-14Add p5-FusionInventory-Agent and p5-FusionInventory-Agent-Task-Networkbouyer1-1/+3
2013-01-14Import FusionInventory-Agent-Task-Network 2.2.7bouyer5-0/+98
This plugin for the agent provides two tasks that were previously distributed separatly: * the NetDiscovery task allows the agent to scan the network to find remote devices, through nmap, NetBios or SNMP, and to identify them * the NetInventory task allows the agent to extract various informations from a remote device through SNMP protocol
2013-01-14Import FusionInventory-Agent 2.2.7bouyer5-0/+359
The FusionInventory agent is a generic management agent. It can perform a certain number of tasks, according to its own execution plan, or on behalf of a GLPI server with fusioninventory plugin, acting as a control point. Two of these tasks are included in agent source distribution, local inventory and wake on lan. Other tasks are distributed separatly, excepted for binary distributions where they are bundled together.
2013-01-14Update ruby-domain_name to 0.5.7.taca2-6/+6
* Hold the date of the eTLD database and use it to detect modification. * Update the eTLD list.
2013-01-13Update mikutter to 0.2.1.1119, 0.2.1 official release.obache3-8/+10
2013-01-13Add bwping.ryoon1-1/+2
2013-01-13Import bwping-1.7 as net/bwping.ryoon4-0/+30
BWPing is a tool to measure bandwidth and response times between two hosts using Internet Control Message Protocol (ICMP) echo request/echo reply mechanism. It does not require any special software on the remote host. The only requirement is the ability to respond on ICMP echo request messages.
2013-01-12Fix PLIST error.ryoon2-8/+8
* Convert to use egg.mk. Thank you, joerg@.
2013-01-11Use plain tar for copying.joerg1-5/+5
2013-01-11fetch-1.8: Avoid non-literal format strings.joerg2-3/+3
2013-01-11Update ISC DHCP to 4.2.5.taca4-10/+12
Changes are too many to write here, please refer RELNOTES.
2013-01-11Requires _KMEMUSER and uvm/uvm_extern.h on NetBSD/current.joerg3-8/+34
2013-01-11Really fix inline usage.joerg3-6/+54
2013-01-11Explicitly include utmpx.h for NetBSD/current.joerg3-1/+27
2013-01-11Honour user CFLAGS.joerg2-6/+9
2013-01-11NetBSD/current needs sysctl/vmmeter.h explicitly included.joerg2-5/+23
2013-01-11Do not remove __attribute__, at the very least this way leads to badjoerg1-4/+1
syntax in system headers on NetBSD.
2013-01-11Fix void use. Add some missing prototypes and includes.joerg6-5/+92
2013-01-11PCAP handler callback is void.joerg4-11/+25
2013-01-11Fix inline.joerg3-1/+27
2013-01-10Update mikutter to 0.2.1.1117, aka pre2.obache3-9/+8
2013-01-06Update to 2.75:wiz1-2/+1
=== Transmission 2.75 (2012/12/13) === ==== Mac ==== * Fix crash on non-English localizations
2013-01-05Update mikutter to 0.2.1.1112.obache4-14/+20
support Twitter API 1.1 and Developer Displlay Requirements. pkgsrc changes: * drop dependency on desktop-file-utils, not register mime-type. * use extarnal typed-array module.
2013-01-03Insert rpath for BUILDLINK_PREFIX.libidn as well as using the one thatdholland2-7/+12
comes from Perl, so this will still build if libidn and Perl are installed in different trees. Belt-and-suspenders fix for PR 47187 on NetBSD, may also fix the problem seen on Dragonfly.
2013-01-03Add py-smbryoon1-1/+2
2013-01-03Import py27-smb-1.1.2 as net/py-smb.ryoon4-0/+103
pysmb is an experimental SMB/CIFS library written in Python. It implements the client-side SMB/CIFS protocol (SMB1 and SMB2) which allows your Python application to access and transfer files to/from SMB/CIFS shared folders like your Windows file sharing and Samba folders.
2013-01-02Update to 16.0.1ryoon2-6/+6
Changelog: aria2 1.16.1 ============ Release Note ------------ This release adds the ability to persist GID across sessions. The GID will be saved with --save-session. There are several restrictions how GID is persisted. See the manual for details. For this change, now GID is 64 bits binary data and represented by 16 characters hex string in RPC query. The disk cache feature was added, which may reduce disk activity. The console readout was redesigned. The warning displayed when --file-allocation=falloc is used on MinGW32 build was removed as a bug. Changes ------- * mingw32: Re-open files with read-only mode enabled on seeding On Mingw32 build, if aria2 opens file with GENERIC_WRITE access right, some programs cannot open the file aria2 is seeding. To avoid this situation, re-open files with read-only enabled when seeding is about to begin. * Save gid option with --save-session option * Added --gid option This option sets GID manually. aria2 identifies each download by the ID called GID. The GID must be hex string of 16 characters, thus [0-9a-zA-Z] are allowed and leading zeros must not be stripped. The GID all 0 is reserved and must not be used. The GID must be unique, otherwise error is reported and the download is not added. This option is useful when restoring the sessions saved using --save-session option. If this option is not used, new GID is generated by aria2. * Use 64 bits random bytes as GID This change replaces the current 64 bit sequential GID with 64 bits random bytes GID in an attempt to support persistent GID. Internally, the GID is stored as uint64_t. For human representation and RPC interface, GID is represented as 16 bytes hex string. For console readout, 16 bytes are too long, so it is abbreviated to first 6 bytes. When querying GID in RPC calls, user can speicfy the prefix of GID as long as the prefix is shared by more than 1 GID entries. * Fixed BitfieldMan::getOffsetCompletedLength overflow on 32-bit systems * mingw32: Use HANDLE only for MinGW32 build * Changed console readout, making it more compact "SIZE:" is removed because it is obvious. SEEDING, SEED, SPD and UP are now replaced with SEED, SD, DL and UL respectively. * Compact readout when more than 1 simultaneous downloads are going on If more than 1 simultaneous downloads are going on, use more compact format in readout. Currently, at most 5 download stats are displayed. util::abbrevSize() is rewritten to support "Gi" unit and provides more compact abbreviation. * Console color output Log level and download result string is now colored. * Logger: Simplified console output and change level format in log The date and time are now removed from console output. The log level is now formatted as "[LEVEL]". * Start to find faster host before the number of missing segments becomes 1 The old implementation starts to find faster host when the number of missing segment becomes 1. Because of --min-split-size option, before the number of missing segment becomes 1, the number of connection becomes 1 and it can be slow. In this case, we have to wait until the last segment is reached. The new implementation starts to find faster host when the remaining length is less than --min-split-size * 2, to mitigate the problem stated above. * Removed warning when --file-allocation=falloc is used in MinGW32 build The warning was just a mistake. SetFilePointerEx + SetEndOfFile actually allocate disk space. * Write data in 4K aligned offset in write with disk cache enabled This greatly reduces disk activity especially on Win + NTFS. Not so much difference on Linux. * mingw32: Removed FSCTL_SET_SPARSE set * Added --disk-cache option This option enables disk cache. If SIZE is 0, the disk cache is disabled. This feature caches the downloaded data in memory, which grows to at most SIZE bytes. The cache storage is created for aria2 instance and shared by all downloads. The one advantage of the disk cache is reduce the disk seek time because the data is written in larger unit and it is reordered by the offset of the file. If the underlying file is heavily fragmented it is not the case.
2013-01-01Needs pkg-configjoerg1-2/+2
2012-12-31Fix build on Linux (CentOS 6.3).ryoon2-4/+4
Add workaround not to try toinclude util.h on Linux. Configure should handle util.h properly.
2012-12-26Patch inline usage.dholland2-1/+17
2012-12-25Provide a deterministic return value from main. Bump revision.joerg5-2/+53