Commit graph

12875 commits

Author SHA1 Message Date
dholland
7958d58243 Turn off py33 until py-amqp supports py33; fixes pbulk resolve failure. 2014-01-02 04:49:16 +00:00
bsiegert
7de5dce736 Fix MirBSD build. 2014-01-01 16:06:58 +00:00
wiz
e03c03b6dc Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
rodent
46897f9800 README.rst would go better in share/doc. 2013-12-31 20:02:38 +00:00
rodent
40b7932b26 +py-socketpool 2013-12-31 19:57:16 +00:00
rodent
ee8109690a Import py27-socketpool-0.5.3 as net/py-socketpool.
Socket pool is a simple socket pool that suports multiple factories and
backends. It can easily be used by gevent, eventlet or any other library.
2013-12-31 19:56:19 +00:00
wiz
5889401244 Remove packages that were either BROKEN for more than a year or
BROKEN and explicitly scheduled to be removed after 2013Q4.
2013-12-31 17:08:08 +00:00
rodent
450954d60b Depend on py-amqp>=1.3.3. Only accept python versions 33, 27, 26. Both as
per documentation. Updated to latest release, 3.0.8. From Changelog:

3.0.8
=====
- Serializer: loads and dumps now wraps exceptions raised into
  :exc:`~kombu.exceptions.DecodeError` and
  :exc:`kombu.exceptions.EncodeError` respectively.
- Redis: Would attempt to read from the wrong connection if a
  select/epoll/kqueue exception event happened.
- Redis: Disabling ack emulation now works properly.
- Redis: :exc:`IOError` and :exc:`OSError` are now treated as recoverable
  connection errors.
- SQS: Improved performance by reading messages in bulk.
- Connection Pool: Attempting to acquire from a closed pool will now
  raise :class:`RuntimeError`.

3.0.7
=====
- Fixes Python 2.6 compatibility.
- Redis: Fixes 'bad file descriptor' issue.

3.0.6
=====
- Timer: No longer attempts to hash keyword arguments (Issue #275).
- Async: Did not account for the long type for file descriptors.
- PyPy: kqueue support was broken.
- Redis: Bad pub/sub payloads no longer crashes the consumer.
- Redis: Unix socket URLs can now specify a virtual host by including
  it as a query parameter.
- ``kombu.VERSION`` is now a named tuple.

3.0.5
=====
- Now depends on :mod:`amqp` 1.3.3.
- Redis: Fixed Python 3 compatibility problem (Issue #270).
- MongoDB: Fixed problem with URL parsing when authentication used.
- pyamqp: Fixed small issue when publishing the message and
  the property dictionary was set to None.
- Fixed problem in ``repr(LaxBoundedSemaphore)``.
- Tests now passing on Python 3.3.

3.0.4
=====
- common.QoS: ``decrement_eventually`` now makes sure the value
  does not go below 1 if a prefetch count is enabled.

3.0.3
=====
- SQS: Properly reverted patch that caused delays between messages.
- select: Clear all registerd fds on poller.cloe
- Eventloop: unregister if EBADF raised.

3.0.2
=====
- Now depends on :mod:`amqp` version 1.3.2.
- select: Fixed problem where unregister did not properly remove
  the fd.

3.0.1
=====
- Now depends on :mod:`amqp` version 1.3.1.
- Redis: New option ``fanout_keyprefix``
    This transport option is recommended for all users as it ensures
    that broadcast (fanout) messages sent is only seen by the current
    virtual host:

        Connection('redis://', transport_options={'fanout_keyprefix': True})

    However, enabling this means that you cannot send or receive messages
    from older Kombu versions so make sure all of your participants
    are upgraded and have the transport option enabled.

    This will be the default behavior in Kombu 4.0.
- Distribution: Removed file ``requirements/py25.txt``.
- MongoDB: Now disables ``auto_start_request``.
- MongoDB: Enables ``use_greenlets`` if eventlet/gevent used.
- Pidbox: Fixes problem where expires header was None,
  which is a value not supported by the amq protocol.
- ConsumerMixin: New ``consumer_context`` method for starting
  the consumer without draining events.

3.0.0
=====

- Now depends on :mod:`amqp` version 1.3.
- No longer supports Python 2.5
    The minimum Python version supported is now Python 2.6.0 for Python2,
    and Python 3.3 for Python3.
- Dual codebase supporting both Python 2 and 3.
    No longer using ``2to3``, making it easier to maintain support for
    both versions.
- pickle, yaml and msgpack deserialization is now disabled by default.
    This means that Kombu will by default refuse to handle any content type
    other than json.
- kombu.async: Experimental event loop implementation.
- Utility function ``kombu.common.ipublish`` has been removed.
    Use ``Producer(..., retry=True)`` instead.
- Utility function ``kombu.common.isend_reply`` has been removed
    Use ``send_reply(..., retry=True)`` instead.
- ``kombu.common.entry_to_queue`` and ``kombu.messaging.entry_to_queue``
  has been removed.
    Use ``Queue.from_dict(name, **options)`` instead.
- Redis: Messages are now restored at the end of the list.
- ``StdConnectionError`` and ``StdChannelError`` is removed
    and :exc:`amqp.ConnectionError` and :exc:`amqp.ChannelError` is used
    instead.
- Message object implementation has moved to :class:`kombu.message.Message`.
- Serailization: Renamed functions encode/decode to
  :func:`~kombu.serialization.dumps` and :func:`~kombu.serialization.loads`.
    For backward compatibility the old names are still available as aliases.
- The ``kombu.log.anon_logger`` function has been removed.
    Use :func:`~kombu.log.get_logger` instead.
- ``queue_declare`` now returns namedtuple with ``queue``, ``message_count``,
  and ``consumer_count`` fields.
- LamportClock: Can now set lock class
- :mod:`kombu.utils.clock`: Utilities for ordering events added.
- :class:`~kombu.simple.SimpleQueue` now allows you to override
  the exchange type used.
- Zookeeper transport updated to support new changes in the :mod:`kazoo`
  library.
- pyamqp/librabbitmq: Transport options are now forwarded as keyword arguments
    to the underlying connection (Issue #214).
- Transports may now distinguish between recoverable and irrecoverable
  connection and channel errors.
- ``kombu.utils.Finalize`` has been removed: Use
  :mod:`multiprocessing.util.Finalize` instead.
- Memory transport now supports the fanout exchange type.
- Experimental new `Pyro`_ transport (:mod:`kombu.transport.pyro`).
.. _`Pyro`: http://pythonhosted.org/Pyro
- Experimental new `SoftLayer MQ`_ transport (:mod:`kombu.transport.SLMQ`).
.. _`SoftLayer MQ`: http://www.softlayer.com/services/additional/message-queue
- Eventio: Kqueue breaks in subtle ways so select is now used instead.
- SQLAlchemy transport: Can now specify table names using the
  ``queue_tablename`` and ``message_tablename`` transport options.
Redis transport: Now supports using local UNIX sockets to communicate with the
  Redis server (Issue #1283)
    To connect using a UNIX socket you have to use the ``redis+socket``
    URL-prefix: ``redis+socket:///tmp/redis.sock``.
    This functionality was merged from the `celery-redis-unixsocket`_ project.
    Contributed by Maxime Rouyrre.
ZeroMQ transport: drain_events now supports timeout.
.. _`celery-redis-unixsocket`:
    https://github.com/piquadrat/celery-redis-unixsocket

2.5.16
======

- Python3: Fixed problem with dependencies not being installed.

2.5.15
======
- Declaration cache: Now only keeps hash of declaration
  so that it does not keep a reference to the channel.
- Declaration cache: Now respects ``entity.can_cache_declaration``
  attribute.
- Fixes Python 2.5 compatibility.
- Fixes tests after python-msgpack changes.
- ``Queue.get``: Now supports ``accept`` argument.

2.5.14
======

- safe_str did not work properly resulting in
  :exc:`UnicodeDecodeError` (Issue #248).

2.5.13
======
- Now depends on :mod:`amqp` 1.0.13
- Fixed typo in Django functional tests.
- safe_str now returns Unicode in Python 2.x
- amqp: Transport options are now merged with arguments
  supplied to the connection.
- Tests no longer depends on distribute, which was deprecated
  and merged back into setuptools.
- ConsumerMixin now also restarts on channel related errors.
2013-12-31 14:12:17 +00:00
rodent
6f91afb793 +py-amqp 2013-12-31 14:03:22 +00:00
rodent
eab48ade38 Import py27-amqp-1.3.3 as net/py-amqp.
This is a fork of amqplib which was originally written by Barry Pederson. It is
maintained by the Celery project, and used by kombu as a pure python alternative
when librabbitmq is not available.

This library should be API compatible with librabbitmq.
2013-12-31 14:02:07 +00:00
schwarz
772f7dca63 updated to 4.0.4.27a 2013-12-31 10:42:59 +00:00
ryoon
7a91e00aff Update 1.9.4
* Switch to 1.9.x branch
* Fix CVE-2013-7106 and CVE-2013-7108

Changelog:
1.9.4 - 13/12/2013

FIXES
* classic ui: fix status output in JSON format not including short and long plugin output properly #5217 - RB
* classic ui: fix possible buffer overflows #5250 - RB
* classic ui: fix Off-by-one memory access in process_cgivars() #5251 - RB


1.9.3 - 07/07/2013

FIXES
* core: fix init script status exit codes on not running daemon and present pid file #4243 - MF

* idoutils: fix workaround on libdbi fetch_next_row() bug applied for postgresql too, causing faulty queries #4367 - MF


1.9.2 - 30/06/2013

FIXES
* core: fix bug with non-ASCII (> 127) illegal macro output characters on char-to-int cast (Jason Young) #4211 - MF
* core: bail early if main config file cannot be read - MF

* classic ui: fixed searching hostgroup results in wrong 'all' view filter urls #4206 - RB
* classic ui: fix URL construction issue in icinga_reload_scroll_position() javascript (Karsten Sühring) #4233 - MF

* idoutils: fix mysql: output/perfdata limits cut escaped string leaving '\' at the end (Yannik Charton) #4196 - MF
* idoutils: bugfixes for socket queue, transactions and libdbi handling #4049 - GB
* idoutils: fix ido2db gradually consumes more and more CPU time with time #4210 - CF
* idoutils: fix wrong clob freeing in eventhandlers #4357 - TD


1.9.1 - 22/05/2013

FIXES
* core: fix objects.cache does not get updated on (re)start, but config verify (Christian Ruppert) #4155 - MF

* classic ui: fixed UNICODE characters in JSON output from getting discarded #4193 - RB

* idoutils: fix segfaults on reload with multiple neb modules of the same binary #4033 - MF


1.9.0 - 07/05/2013

NOTES
* idoutils uses a socket queue and transactions for large object dumps! #3527 #3533
* ido2db.cfg enable_sla is now deprecated! #3450
* icinga.cfg event_profiling_enabled is now deprecated! #4054

ENHANCEMENTS
* core: increase performance with hash comparing hosts/services on config read #3722 - GB
* core: introduce warning level -vv on config verification #3510 - MF
* core: refuse to start if neb modules fail to load (Andreas Ericsson, op5 Team) #3812 - MF
* core: keep logfile open, reducing open/close performance decreases (Andreas Ericsson, op5 Team) #3390 - MF
* core: enhance illegal macro character processing performance (Andreas Ericsson, op5 Team) #3389 - MF
* core: add the notification type by string to debug logs; set CUSTOM=8, STALKING=9 (Andreas Ericsson, op5 Team) #3818 - MF
* core: skip writing status.dat if explicitely set to /dev/null (e.g. when using alternate data retrieval methods like IDOUtils) (Andreas Ericsson, op5 Team) #3819 - MF
* core: avoid writing objects.cache if set to /dev/null (Andreas Ericsson, op5 Team) #3819 - MF
* core: increase performance on host->service relation counter (config reading, flapping) #3820 - MF
* core: fix unable to exclude hostgroups when using nested hostgroups (Alexander Sulfrian) #2619 - MF

* classic ui: increase performance with hash comparing hosts/services to show/filter #3722 - GB
* classic ui: Add "set_expire_ack_by_default" to cgi configuration #3476 - CF
* classic ui: Add "send_ack_notifications" to cgi configuration (TheCry) #3467 - CF
* classic ui: Changed field size for hours to 4 when setting flexible downtime #3484 - RB
* classic ui: Added process status to JSON response #3172 - RB
* classic ui: Added date/time selection to 'log file navigation' #3168 - RB
* classic ui: Added setting focus to main frame on first site load #3202 - RB
* classic ui: Made sort buttons larger #3814 - RB
* classic ui: Made classic ui work standalone #3869 - RB
* classic ui: add 'executed command' to extinfo.cgi linking to command expander #3901 - MF

* idoutils: use transactions for large object dumps #3527 - GB
* idoutils: add socket queue proxy addressing core reload problems #3533 - GB
* idoutils: add more indexes for sla reporting #3649 - MF
* idoutils: Oracle - change output fields to clob #3412 - TD

* install: set --enable-idoutils/event-broker to true as default configure flags #3813 - MF
* install: add lighttp config samples to contrib/lighttp #2253 - RB
* install: add --with-httpd-conf-file to allow specific apache config to be installed #3962 - MF
* install: make install-webconf-auth installs htpasswd.users automatically, allowing default icingaadmin login out-of-the-box #3963 - MF
* install: add 'make classicui-standalone' and 'make install-classicui-standalone' #3963 - MF

* docs: Temporary files should mention temp_file option in icinga.cfg #3748 - WN
* docs: add upgrade/troubleshooting notes about invisible icinga web cronks/modules after upgrade #3939 - WN
* docs: make install-webconf-auth installs htpasswd.user with icingaadmin credentials #3964 - WN
* docs: icinga web 1.9: new menu style (smaller icons) #3944 - MF
* docs: icinga web 1.9: new filtering methods #3947 - MF
* docs: add userpreferences.xml to icinga web configs #3991 - WN
* docs: add web gui comparison to beginners #3907 - WN


FIXES
* core: fix faulty macro cleaning, replacing spaces with pluses where they shouldn't be cleaned #3397 - MF
* core: fix macro escaping logs incorrect warning for $$escapes #3404 - MF
* core: fix wrong escalation notification due to state based escalation range behaviour changes #3441 - MF
* core: change ownership of (debug) log file before dropping privileges (Andreas Ericsson, op5 Team) #3521 - MF
* core: fix keep_unknown_macros still exposes wrong warnings to logs #3725 - MF
* core: fix host_check, last_check == next_check wrong in scheduling queue #2195 - MF
* core: fix triggered downtimes for child hosts are missing after icinga restart (thx Michael Lucka) #3390 - MF
* core: fix services with empty hostgroups aren't processed even if it has host_name specified (allow_empty_hostgroups=1) (thx Viranch Metha) #3736 - MF
* core: revamp USE_LTDL definitions in nebmods (Andreas Ericsson, op5 Team) #3817 - MF
* core: fix checkresult reaper cleanup fails due to relative file path #3937 - MaF
* core: do not export host/servicegroupmembers as environment macros in large installations #3859 - MF
* core: set default permissions to icinga/ido2db binaries to 755 #3902 - GB

* classic ui: fix cmd.cgi does not honor commandpipe location; overwrites from empty environment variable #3418 - MF
* classic ui: fixed Double-listed host dependencies in host extinfo.cgi #3295 - RB
* classic ui: fixed sort_icinga_logfiles_by_name() in readlogs.c fails to take NULL pointers into consideration #3398 - CF
* classic ui: fixed committing acknowledgement cmd negates flags for send_notification and sticky_ack #3329 - RB
* classic ui: fixed backtrack_archives only getting calculated on a daily log rotation basis #3416 - RB
* classic ui: fixed invalid freeing of last_check in 'scheduling queue' for first time checks #3444 - RB
* classic ui: fixed Warning and Unknown States are mixed up in Alert Summary Report #3488 - RB
* classic ui: fixed extinfo.cgi shows localtime(0) instead of "NOT SET" when global notifications are not set to expire #3482 - RB
* classic ui: fixed CGIs generating invalid html code/ json when throwing error #3507 - RB
* classic ui: fixed JSON output is insufficiently escaped #3541 - RB
* classic ui: fixed segfault when reading malformed log entries #3528 - RB
* classic ui: "fixed" Incorrect positioning status popup in statusmap #3861 - RB
* classic ui: fixed possible NULL dereference-bug in summary.c #3740 - RB
* classic ui: fixed Command expansion problem with percentage signs #3929 - RB
* classic ui: cleaned up the jquery-ui includes to allow debian pkg dependencies #3808 - RB
* classic ui: fixed Trigger Time in Scheduled Downtime displaying 01-01-1970 01:00:00 when not triggered #3980 - RB
* classic-ui: fixed host and service names are not allowed to have a '+' included #1843 - RB

* idoutils: fix many memory leaks in ido2db on dbi_result_free and others (thx Klaus Wagner) #3406 - MF
* idoutils: fix ido2db crashes when Oracle queries fail #3324 - GB
* idoutils: fix ORA-1461 writing data to varchar2 exceeding field size limit output, command_arg and commandline data written to Oracle #3324 #3325 - TD
* idoutils: fix unsafe handling of dbi_conn_sequence_last, rewrite last_insert_id/sequence fetching #3408 - MF
* idoutils: fix ido2db does not cleanly exit the client on wrong schema version check in db_hello #3419 - MF
* idoutils: fix FROM_UNIXTIME(NULL) does not work with MySQL 5.0.x #3399 #3466 - CF
* idoutils: fix unknown column contactaddress_id (thx fmbiete) #3483 - MF
* idoutils: fix empty output/perfdata segfaults for mysql string truncate #3516 - MF
* idoutils: unlink leftover socket on startup, if using unix sockets - MF
* idoutils: fix long output data causes wrong data in database #2342 - MF
* idoutils: fix idomod leaks memory on core reload #3749 - GB
* idoutils: add workaround fix for num_rows_affected broken in libdbi/mariadb, returned ids are 0 #3728 - MF

* install: drop unused daemon-init-readhat script (spec uses daemon-init) #3402 - MF
* install: fix broken configure ssl detection for idoutils on ubuntu/debian (Oliver Skibbe) #3413 - MF
* install: fix ido2db initscript uses same chkconfig line as icinga (Dirk Götz) #3490 - MF
* install: fix configure does not detect AIX6/7 properly #3895 - MF
* install: fix STATEDIR creation during make install #3869 - MF

* docs: add missing cmd_mod description in cgi params #3438 - MF
* docs: search_string as cgi GET param works also for status.cgi #3451 - MF
* docs: fix typo pqsql -> pgsql #3461 - WN
* docs: recurring downtimes: should tell about dev/experimental state living in contrib/ better #3647 - WN
* docs: middle-clicking on TOC links doesn't open pages in new tab #3561 - WN

* icinga.spec: add idoutils as transitional package (thx Stefan Marx, Michael Grüner) #3640 - MF
* icinga.spec: fix double %{logdir}/gui/ definitions in icinga and icinga-gui (thx René Koch) #3802 - MF

CHANGES

* ido2db.cfg: enable_sla is now deprecated! #3450
* icinga.cfg: event_profiling_enabled is now deprecated! #4054

* icinga.cfg: enable_state_based_escalation_ranges=0 (disabled if not set) fix for #3441
* icinga.cfg: set status_file=/dev/null to disable its creation #3819
* icinga.cfg: set object_cache_file=/dev/null to disable its creation #3819

* idoutils: use transactions for large object dumps #3527
* idoutils: add socket queue proxy addressing core reload problems #3533

* core: -v param can be used more than once #3510
* core: 'Warning: Host ... has no service associated with it!' now happens only in icinga -vv icinga.cfg #3510
* core: refuse to start if neb modules fail to load #3812
* core: notification type nr CUSTOM=8 and STALKING=9 (reflected in idoutils tables) #3818
* core: using nested hostgroups you can exclude (!) hostgroup_members #2619
* core: host/servicegroupmembers are not exported as environment macros #3859
	** if enable_environment_macros=1
	** and use_large_installation_tweaks=1


* icinga.spec: add idoutils as transitional package #3640

* install: set --enable-idoutils/event-broker to true as default configure flags #3813
* install: add --with-httpd-conf-file to allow specific apache config to be installed #3962
	** this is important when installing standalone classic ui for e.g. Icinga2
* install: make install-webconf-auth installs htpasswd.users, allowing default icingaadmin login out-of-the-box #3963
* install: add --enable-classicui-standalone #3869
	** sets cgi.cfg standalone_installation=1
* install: add 'make classicui-standalone' and 'make install-classicui-standalone' #3963
	** this will install classic ui standalone, if enabled
* install: default permissions for icinga/ido2db binaries are now 755 #3902
2013-12-31 03:28:39 +00:00
ryoon
ea95622c3a Fix typo in filename 2013-12-31 03:24:25 +00:00
jaapb
47658fe3d9 Moved pre-configure to Makefile.common so it will get applied by both
net/mldonkey and net/mldonkey-gui. Fix for PR pkg/48461.
2013-12-28 11:03:26 +00:00
jaapb
b53a4404d3 Moved call to autotools to Makefile.common in mldonkey. In response to
PR pkg/48461.
2013-12-26 12:03:23 +00:00
jaapb
ecfad77af7 Modified package to call autotools from Makefile.common to properly rebuild
configure script (was for mldonkey-gui only, now needed for mldonkey as
well). In response to PR pkg/48461.
2013-12-26 12:02:39 +00:00
pettai
e2b8211b4f Install all scripts in same bindir 2013-12-25 14:59:10 +00:00
pettai
56c97cdcd4 ExaBGP Christmas release (version 3.2.19)
* Fix: bug when displaying EOR
 * Fix: invalid check on next-hop for multi-line routes
 * Fix: badly parsing command line for run option
 * Fix: allow the creation of 'allow' flows
 * Fix: bad JSON encoding for EOR
 * Fix: API message encoding
 * Improvement: allow digit:digit in extended communities
 * Improvement: healtcheck.py, python 2.6 and community support
2013-12-24 11:21:55 +00:00
wiz
d33dfdeb7c Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
tron
60c3a33e23 Update "wireshark" package to version 1.10.5. Changes since 1.10.4:
- The following bugs have been fixed:
  * Wireshark stops showing new packets but dumpcap keeps
    writing them to the temp file. (Bug 9571)
  * Wireshark 1.10.4 shuts down when promiscuous mode is
    unchecked. (Bug 9577)
  * Homeplug dissector bug: STATUS_ACCESS_VIOLATION: dissector
    accessed an invalid memory address. (Bug 9578)
- Updated Protocol Support
  GSM BSSMAP, GSM BSSMAP LE, GSM SMS, Homeplug, NAS-EPS, and SGSAP
2013-12-22 09:55:48 +00:00
tsutsui
9be1e05512 Update DEPENDS gem versions per tw.gemspec file.
Note both ruby-args_parser-0.2.0 and ruby-parallel-0.8.2 were updated
in September.
2013-12-21 17:29:30 +00:00
jaapb
662b468842 Patched configure 2013-12-21 10:42:29 +00:00
bsiegert
839c540093 Use SPECIAL_PERMS on MirBSD, too. Fix build. 2013-12-19 20:27:24 +00:00
sborrill
8a346649c3 Make KEYMAP_PATH match the directory keymaps are installed in. Hi prlw1! 2013-12-19 09:34:28 +00:00
tron
0295b9af86 Update "wireshark" package to version 1.10.4. Changes since version 1.10.3:
- Bug Fixes
   The following vulnerabilities have been fixed.
     * wnpa-sec-2013-66
       The SIP dissector could go into an infinite loop.
       Discovered by Alain Botti. (Bug 9388)
       Versions affected: 1.10.0 to 1.10.3, 1.8.0 to 1.8.11
       CVE-2013-7112
     * wnpa-sec-2013-67
       The BSSGP dissector could crash. Discovered by Laurent
       Butti. (Bug 9488)
       Versions affected: 1.10.0 to 1.10.3
       CVE-2013-7113
     * wnpa-sec-2013-68
       The NTLMSSP v2 dissector could crash. Discovered by Garming
       Sam.
       Versions affected: 1.10.0 to 1.10.3, 1.8.0 to 1.8.11
       CVE-2013-7114
   The following bugs have been fixed:
     * "On-the-wire" packet lengths are limited to 65535 bytes.
       (Bug 8808, ws-buglink:9390)
     * Tx MCS set is not interpreted properly in WLAN beacon
       frame. (Bug 8894)
     * VoIP Graph Analysis window - some calls are black. (Bug
       8966)
     * Wireshark fails to decode single-line, multiple Contact:
       URIs in SIP responses. (Bug 9031)
     * epan/follow.c - Incorrect "bytes missing in capture file"
       in "check_fragments" due to an unsigned int wraparound?.
       (Bug 9112)
     * gsm_map doesn't decode MAPv3 reportSM-DeliveryStatus
       result. (Bug 9382)
     * Incorrect NFSv4 FATTR4_SECURITY_LABEL value. (Bug 9383)
     * Timestamp decoded for Gigamon trailer is not padded
       correctly. (Bug 9433)
     * SEL Fast Message Bug-fix for Signed 16-bit Integer Fast
       Meter Messages. (Bug 9435)
     * DNP3 Bug Fix for Analog Data Sign Bit Handling. (Bug
       9442)
     * GSM SMS User Data header fill bits are wrong when using a 7
       bits ASCII / IA5 encoding. (Bug 9478)
     * WCDMA RLC dissector cannot assemble PDUs with SNs skipped
       and wrap-arounded. (Bug 9505)
     * DTLS: fix buffer overflow in mac check. (Bug 9512)
     *  Correct data length in SCSI_DATA_IN packets (within
       iSCSI). (Bug 9521)
     * GSM SMS UDH EMS control expects 4 octets instead of 3 with
       OPTIONAL 4th. (Bug 9550)
     * Fix "decode as ..." for packet-time.c. (Bug 9563)
- Updated Protocol Support
  ANSI IS-637-A, BSSGP, DNP3, DVB-BAT, DVB-CI, GSM MAP, GSM SMS,
  IEEE 802.11, iSCSI, NFSv4, NTLMSSP v2, RLC, SEL FM, SIP, and Time
2013-12-18 11:52:25 +00:00
prlw1
6174cbe42b Don't segfault when using PKG_OPTIONS.libVNCServer=-inet6 2013-12-17 16:27:18 +00:00
pettai
8f1637ce94 + exabgp 2013-12-15 22:24:06 +00:00
pettai
1d729f522b Unlike BIRD or Quagga, ExaBGP was not designed to transform a general purpose
server into a router, but to allow engineers to control their BGP (rfc4271)
network easily. Think of it as Software Defined Networking for people with
"commodity" routers.

ExaBGP transform BGP (rfc4271) messages into friendly plain text or JSON
which can be easily manipulate by scripts.

It allows the creation of tools such as:
 * advanced looking glass graphically display the routing of prefix
 * high availability tool which automatically isolate broken services
 * DDOS mitigation
 * an anycasted server
2013-12-15 22:22:44 +00:00
joerg
e33cecb477 Require qt4-tools to make cmake happy. 2013-12-15 19:42:46 +00:00
wen
8f3f73ee07 Update to 1.053
Upstream changelog please visit:
http://search.cpan.org/src/RCAPUTO/POE-Component-Client-DNS-1.053/CHANGES
2013-12-15 13:27:45 +00:00
tsutsui
f04135e956 Update ruby-tw to 0.5.2.
(Note newer tw-1.0.2 has been released already, but it requires
 recent tw-twitter 5.x.y which requires much more gems not in pkgsrc)

Changes from History.txt:

=== 0.5.2 2013-09-19

* do not show dialogue with "--yes" option
2013-12-14 14:58:23 +00:00
jakllsch
fc1d48b280 Add isc_dhcpd6 rc.d script for running isc-dhcpd in DHCPv6 mode.
Bump pkgrev.
2013-12-13 16:34:17 +00:00
jperkin
beecc883bb Don't play games with CFLAGS/CPPFLAGS and munging -isystem, fixes SunOS. 2013-12-13 10:42:57 +00:00
jperkin
ed546fc0df Fix variable name, fixes build on SunOS. 2013-12-12 18:13:17 +00:00
obache
acfe4fc57d + cacti-spine 2013-12-11 03:03:04 +00:00
obache
8d1321c796 Import cacti-spine-0.8.8b as net/cacti-spine from pkgsrc-wip.
Originally packaged by Fredrik Pettai, updated by Nils Ratusznik and
requested with PR pkg/48436.

Spine, formally Cactid, is a poller for Cacti that primarily strives to be
as fast as possible. For this reason it is written in native C, makes use of
POSIX threads, and is linked directly against the net-snmp library for minmumal
SNMP polling overhead. Spine is a replacement for the default cmd.php poller
so you must decide if using Spine makes sense for your installation.
2013-12-11 03:01:57 +00:00
jperkin
ec2156594e Add SIOCGLIFHWADDR support on newer SunOS. Bump PKGREVISION. 2013-12-10 17:56:23 +00:00
jperkin
08fc3605d1 Add socket libraries on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 14:04:31 +00:00
jperkin
e34d848a83 Add socket libraries and inttypes on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 14:03:30 +00:00
jperkin
f3cc889f1c Add socket libraries on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 14:01:49 +00:00
jperkin
7c067d394f Fix build on SunOS. Patches from Sebastian Wiedenroth. 2013-12-10 13:59:16 +00:00
jperkin
f11aa1e99b Add socket libraries on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 12:37:32 +00:00
jperkin
5d1ec5e6a1 Fix inttypes on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 12:36:35 +00:00
tron
4a909207eb Update "youtube-dl" package to version 2013.12.09.4. A list of
change since the last release is not available unfortunately.
2013-12-10 10:53:53 +00:00
obache
9b57b4605a Fix/Update DEPENDS paterns for perl CORE modules, with some trivial fixes.
Bump PKGREVISION for runtime dependency pattern changed packages.
2013-12-09 14:17:41 +00:00
taca
858cabba26 Update samba to 3.6.22; Security fix for CVE-2012-6150.
Changes since 3.6.21:
---------------------

o   Jeremy Allison <jra@samba.org>
    * BUG 10185: CVE-2013-4408: Correctly check DCE-RPC fragment length field.


o   Stefan Metzmacher <metze@samba.org>
    * BUG 10185: CVE-2013-4408: Correctly check DCE-RPC fragment length field.


o   Noel Power <noel.power@suse.com>
    * BUGs 10300, 10306: CVE-2012-6150: Fail authentication if user isn't
      member of *any* require_membership_of specified groups.


Changes since 3.6.20:
---------------------

o   Jeremy Allison <jra@samba.org>
    * BUG 10139: Valid utf8 filenames cause "invalid conversion error"
      messages.
    * BUG 10167: s3-smb2 server: smb2 breaks "smb encryption = mandatory".
    * BUG 10187: Missing talloc_free can leak stackframe in error path.
    * BUG 10247: xattr: Fix listing EAs on *BSD for non-root users.


o   Korobkin <korobkin+samba@gmail.com>
    * BUG 10118: Raise debug level for being unable to open a printer.


o   Volker Lendecke <vl@samba.org>
    * BUG 10195: nsswitch: Fix short writes in winbind_write_sock.


o   Arvid Requate <requate@univention.de>
    * BUG 10267: Fix Windows 8 printing via local printer drivers.


o   Andreas Schneider <asn@cryptomilk.org>
    * BUG 10194: Make offline logon cache updating for cross child domain
      group membership.
2013-12-09 10:44:22 +00:00
dholland
0a3ec058c4 Disable iso (and isis) on NetBSD, as it's been removed in -current and
this therefore was not building. PKGREVISION++.

While in theory it could be left enabled for earlier NetBSD releases,
there really isn't any point.
2013-12-08 03:55:43 +00:00
obache
be92ec41be Removed net/ruby-tweetstream.
No package depend on this one anymore, and no advantage to maintain pure ruby
gem with pkgsrc.
2013-12-07 09:05:11 +00:00
wiz
d27248c606 Update to 0.4.21:
v0.4.21  (2013-11-30) / Toni Gundogdu

Toni Gundogdu:
  - FIX: website/101greatgoals: redirect: Add URL scheme [d1313ea]
  - FIX: website/arte: Reimpl. support [7084f63]
  - FIX: website/beeg: title pattern [6dd0013]
  - FIX: website/cbsnews: Adapt to website changes [cda2d12]
  - FIX: website/publicsenat: Reimpl. support [e33d3f9]
  - FIX: website/senat: Reimpl. support [cf3210c]
  - FIX: website/spankwire: Reimpl. support [33745ae]
  - FIX: website/vimeo: Reimpl. support [ac21fa0]
  - Mark website/imdb as "FIXME" [a3e6fb3]
  - Mark website/justintv as "FIXME" [f50dc23]
  - Mark website/wdrmaus as "FIXME" [547ba93]
  - quvi/util: Add json_get function [43d2654]
  - quvi/util: Add xml_get [e24824c]
  - website/canalplus.lua: Add support for {d8,d17} [a505772]

 44 files changed, 539 insertions(+), 542 deletions(-)


v0.4.20  (2013-11-04) / Toni Gundogdu

Toni Gundogdu:
  - Add website/dorkly.lua for dorkly.com [6528f5d]
  - FIX: website/collegehumor.lua [168d954]
  - FIX: website/redtube.lua: media stream URL pattern [ed756ef]
  - FIX: website/tcmag.lua: Media stream URL pattern [e90c00d]
  - website/arte.lua: Mark as FIXME [a823ef0]
  - website/vimeo.lua: Mark as FIXME [a2279ff]

 14 files changed, 202 insertions(+), 189 deletions(-)


v0.4.19  (2013-10-04) / Toni Gundogdu

Toni Gundogdu:
  - FIX: website/funnyordie.lua: Media stream pattern (PORTpt9) [3160719]
  - FIX: website/liveleak.lua: media stream URL pattern [bba8e1f]

 2 files changed, 8 insertions(+), 6 deletions(-)


v0.4.18  (2013-09-03) / Toni Gundogdu

Tobias Gruetzmacher:
  - FIX: website/dailymotion.lua: sequence pattern (no match: sequence) [3d71c75]
Toni Gundogdu:
  - FIX: website/funnyordie.lua: Media stream URL pattern (PORTpt9) [84c83f7]

 2 files changed, 4 insertions(+), 5 deletions(-)
2013-12-05 23:31:35 +00:00
drochner
3691f7671d update to 0.8.8
changes: minor feature additions and fixes
2013-12-04 12:49:18 +00:00
drochner
295434e720 update to 0.12.4
changes: minor feature additions and fixes
2013-12-04 12:47:41 +00:00
drochner
c3a0e47873 update to 0.20.8
changes: minor feature additions and fixes
2013-12-04 12:45:36 +00:00
drochner
fdd5e0ecb5 update to 0.14.6
changes: minor feature additions and fixes
2013-12-04 12:44:03 +00:00
drochner
0306d17bbc reset PKGREV for base pkg update 2013-12-04 11:37:45 +00:00
tonnerre
1d5de3fc2c Update net/tinc to version 1.0.23.
Changes since version 1.0.22:
 - Check for writability when waiting for a socket to finish connecting.
 - Don't send PING requests on connections which are not active yet.
 - Fix segfault when Name = $HOST but $HOST is not set.
 - Fix typos in the documentation.
 - Modernize the build system.
 - Get rid of the splay tree implementation.
 - Add description of IffOneQueue and MaxTimeout to the info manual.
 - Clean up child processes from proxy type exec.
2013-12-01 20:18:29 +00:00
ryoon
bb355093b5 Revbump from devel/apr update 2013-12-01 10:18:02 +00:00
wiz
cd22325ec0 IO has been a part of perl core since 5.6.
The latest version distributed outside the perl core is as old as perl-5.10.

Remove p5-IO dependencies in preparation for removal of package.
2013-12-01 09:01:47 +00:00
wiz
f028275f2f Fix python interpreter path in installed file.
Bump PKGREVISION.
2013-11-30 09:40:00 +00:00
wiz
b6c1cbb932 Set EGG_NAME for simpler PLISTs. 2013-11-30 00:01:34 +00:00
wiz
e27e536eb3 Update to 1.3:
I had a few bugs in 1.2 and I figured I'd just pack them up and
release again.

        * Fix -import exit value
        * Fix version number reported by serve
        * Rename '.egg' file calypso.egg
2013-11-29 16:58:33 +00:00
joerg
db4b45e6c3 Fix build on -current, functionality is untested. 2013-11-29 12:59:51 +00:00
fhajny
58f4589933 Remove rc.d bits that are already handled by pkgsrc. 2013-11-28 11:04:42 +00:00
roy
4ff1b36ab9 Punt the not needed patch 2013-11-28 09:31:52 +00:00
agc
4911cbb946 Correct the PLIST for other versions of python, too. 2013-11-26 23:25:36 +00:00
drochner
841a95d33f +py-dropbox 2013-11-26 20:33:20 +00:00
drochner
81448d9f83 add py-dropbox-1.6, the official Python SDK for Dropbox calls 2013-11-26 20:32:24 +00:00
wiz
bd9eea67da PKGREVISION bump for json-c shlib rename. 2013-11-25 12:00:45 +00:00
taca
b8d27e3467 Bump PKGREVISION for json version handling change. 2013-11-24 14:07:50 +00:00
obache
0c52eb358a Update mikutter to 0.2.2.1430.
* fix: lack of some or all tweets and notification with UserStream
* fix: long delay receiving tweets with UserStream
2013-11-24 13:27:21 +00:00
pettai
07d05f4f01 take over the maintainership 2013-11-24 09:39:44 +00:00
jaapb
1a64952741 Added libcmis subdirectory to category Makefile 2013-11-23 17:12:29 +00:00
jaapb
dd4255558d Added net/libcmis at version 0.4.1. This package is a C++ client library for
the CMIS interface. This allows C++ applications to connect to any ECM
behaving as a CMIS server like Alfresco, Nuxeo for the open source ones.
2013-11-23 17:11:05 +00:00
ryoon
f5bcdfbe3e PKGREVISION really bumped 2013-11-23 03:00:18 +00:00
ryoon
c1b4277487 Bump PKGREVISION
* To prepare config file destination directory, MAKE_DIRS should be used.
2013-11-23 02:59:20 +00:00
ryoon
4a9be5c7fe Fix COMMENT, thank you, wiz@. 2013-11-22 12:50:52 +00:00
ryoon
a17614f914 Add mirall 2013-11-22 12:12:54 +00:00
ryoon
fc45bb206c Import mirall-1.4.2 as net/mirall.
Mirall is a tool to synchronize files from ownCloud Server with
your computer. It uses OCSync as its syncing backend.
2013-11-22 12:11:49 +00:00
ryoon
265eb0b2dc Add ocsync 2013-11-22 12:05:35 +00:00
ryoon
bc650487db Import ocsync-0.90.4 as net/ocsync.
OwnCloud edition of csync command. This is a part of owncloud client.
2013-11-22 12:01:13 +00:00
obache
e16eeb83a0 Update libupnp to 1.6.19.
bug fixes
2013-11-21 08:07:55 +00:00
adam
81059da3bd Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
obache
be6a7bf66d recursive bump from boost-lib shlib major bump. 2013-11-20 13:23:41 +00:00
minskim
8d50c36a10 Make tcpreplay build on Darwin 2013-11-19 03:07:49 +00:00
pettai
47e620926a Unbound 1.4.21
Features:

* Implement max-udp-size config option, default 4096 with fix#524 for
  nonEDNS0 queries.
* add unbound-control insecure_add and insecure_remove for the administration
  of negative trust anchors.
* install copy of unbound-control.8 man page for unbound-control-setup.
* code improve for minimal responses, small speed increase.
* max include of 100.000 files (depth and globbed at one time).
  This is to preserve system memory in bug cases, or endless cases.
* unbound.h header file has UNBOUND_VERSION_MAJOR define.
* get_option, set_option, unbound-checkconf -o and libunbound getoption() and
  setoption() support cache-min-ttl and cache-max-ttl. Also log-time-ascii,
  python-script, val-sig-skew-min and val-sig-skew-max. log-time-ascii takes
  effect immediately. The others are mostly useful for libunbound users.
* configure --disable-flto option.
* streamtcp man page.
* Make reverse zones easier by documenting the nodefault statements
  commented-out in the example config file.

Bug Fixes:

* committed libunbound version 4:1:2 for binary API updated in 1.4.20
* Fix for 2038, with time_t instead of uint32_t.
* Fix resolve of names that use a mix of public and private addresses.
* [bugzilla: 492 ] Fix endianness detection, revert to older lookup3.c
  detection and put new detect lines after previous tests, to avoid
  regressions but allow new detections to succeed.
  And add detection for machine/endian.h to it.
* Fix queries leaking up for stubs and forwards, if the configured
  nameservers all fail to answer.
* unbound-anchor review: BIO_write can return 0 successfully if it has
  successfully appended a zero length string.
* Fix so that for a configuration line of include: "*.conf" it is not an
  error if there are no files matching the glob pattern.
* own implementation of compat/snprintf.c.
* [bugzilla: 491 ] pick program name (0th argument) as syslog identity.
* Fixup snprintf return value usage, fixed libunbound_get_option.
* Robust checks on dname validity from rdata for dname compare.
* iana portlist update.
* Fix round-robin doesn't work with some Windows clients.
* [bugzilla: 500 ] use on non-initialised values on socket bind failures.
* [bugzilla: 499 ] use-after-free in out-of-memory handling code.
* Explain bogus and secure flags in libunbound more.
* Update acx_pthreads.m4 to ax_pthreads.4 (2013-03-29), and apply patch to it
  to not fail when -Werror is also specified, from the autoconf-archives.
* Fixup manpage syntax.
* Fix for const string literals in C++ for libunbound.
* Squelch sendto-permission denied errors when the network is not connected,
  to avoid spamming syslog.
* libunbound documentation on how to avoid openssl race conditions.
* [bugzilla: 512 ] NSS returned arrays out of setup function to be statics.
* [bugzilla: 516 ] dnssec lameness detection for answers that are improper.
* [bugzilla: 519 ] ub_ctx_delete may hang in some scenarios (libunbound).
* [bugzilla: 520 ] Errors found by static analysis
2013-11-17 22:57:38 +00:00
shattered
1d0dd03a73 Update to 0.4.17 (released 2012). Changes:
-   Integrated NetBSD ioctl driver (modified) from Rui Paulo.
-   Fixed buffer overflow in draw_rate, exposed in 64 sistems due
    to extended precision in floating point values.
-   Include Becker's changes for trend support and set trend support on by
    default.
-   Integrate FreeBSD's driver patch.
-   Do not blink leds when an interface is offline
-   Do not require 'link_up' in solaris_kstat (but use it if present),
    since on OpenSolaris many nic drivers seem to be broken.
-   Fix the installation path of wmndrc.
2013-11-16 07:17:24 +00:00
apb
467efd09fe Update COMMENT and DESCR to describe new features added between
sslh-1.7a and 1.15.
2013-11-14 08:01:01 +00:00
adam
3ab07fe868 Changes 13.2.0:
* Twisted now includes a HostnameEndpoint implementation which uses IPv4 and IPv6 in parallel, speeding up the connection by using whichever connects first (the 'Happy Eyeballs'/RFC 6555 algorithm).
* Improved support for Cancellable Deferreds by kaizhang, our GSoC student.
* Improved Twisted.Mail documentation by shira, our Outreach Program for Women intern.
* twistd now waits for the application to start successfully before exiting after daemonization.
* SSL server endpoint string descriptions now support the specification of chain certificates.
* Over 70 closed tickets since 13.1.0.
2013-11-13 07:06:58 +00:00
wen
1c8fc1f357 Update to 1.08
Upstream changes:
1.08 November 8, 2013
    ! #15703 add no_index for examples to prevent CPAN pollution [githumb.com/sergeyromanov]

1.07 November 7, 2013
    ! #89948 Remove warning when Content-Id is not present
2013-11-12 13:31:38 +00:00
roy
8c77fdb85c Update to 2.67 2013-11-12 12:12:45 +00:00
adam
629d4cf916 Changes 3.6.20:
These are security releases in order to address CVE-2013-4475 (ACLs are not checked on opening an alternate data stream on a file or directory) and CVE-2013-4476 (Private key in key.pem world readable).
2013-11-12 11:30:01 +00:00
dholland
f44d6915fc Fix MAKE_JOBS build. Wouldn't it be nice if automake emitted correct
makefiles?
2013-11-11 06:48:02 +00:00
pettai
7112241e99 v1.3.3 - Oct 28, 2013
--------------------------
Bugfixes:
        * Improved zone loading error messages
        * Correct control socket permissions
        * Improved log syntax documentation
        * Fixed wrong assertions in DDNS prerequisites checking
        * Fixed processing of some malformed DNS packets
        * Fixed notify messages being ignored in some cases

v1.3.2 - Sep 30, 2013
---------------------
Bugfixes:
        * Configuration option for EDNS0 max UDP payload.
        * Max UDP payload from EDNS0 affected TCP responses.
        * Fixed build on SLE 10.
        * knotc reload did not close files included from config.
2013-11-09 22:17:45 +00:00
markd
0f70d4a2f8 Add the kde packages split out of kdenetwork 2013-11-08 22:02:48 +00:00
joerg
5deba8ea46 Match client version found in reality. 2013-11-08 21:17:01 +00:00
joerg
10cc3891d1 On NetBSD, SIOCGIFINDEX exists, but ip_mreqn doesn't. 2013-11-08 21:16:43 +00:00
joerg
ef1fd30aaa -kdenetwork4. 2013-11-08 21:16:02 +00:00
obache
8f3720cedc Upate sslh to 1.15.
Based on PR pkg/48320 by Nils Ratusznik.

Pkgsrc change:
* add startup script.

ChangeLog:
v1.15:	27JUL2013
	Added --transparent option for transparent proxying.
	See README for iptables magic and capability
	management.

	Fixed bug in sslh-select: if number of opened file
	descriptor became bigger than FD_SETSIZE, bad things
	would happen.

	Fixed bug in sslh-select: if socket dropped while
	defered_data was present, sslh-select would crash.

	Increased FD_SETSIZE for Cygwin, as the default 64
	is too low for even moderate load.

v1.14: 21DEC2012
	Corrected OpenVPN probe to support pre-shared secret
	mode (OpenVPN port-sharing code is... wrong). Thanks
	to Kai Ellinger for help in investigating and
	testing.

	Added an actual TLS/SSL probe.

	Added configurable --on-timeout protocol
	specification.

	Added a --anyprot protocol probe (equivalent to what
	--ssl was).

	Makefile respects the user's compiler and CFLAG
	choices (falling back to the current values if
	undefined), as well as LDFLAGS.
	(Michael Palimaka)

	Added "After" and "KillMode" to systemd.sslh.service
	(Thomas Weißschuh).

	Added LSB tags to etc.init.d.sslh
	(Thomas Varis).

v1.13: 18MAY2012
	Write PID file before dropping privileges.

	Added --background, which overrides 'foreground'
	configuration file setting.

	Added example systemd service file from Archlinux in
	scripts/
	https://projects.archlinux.org/svntogit/community.git/tree/trunk/sslh.service?h=packages/sslh
	(Sébastien Luttringer)

v1.12: 08MAY2012
	Added support for configuration file.

	New protocol probes can be defined using regular
	expressions that match the first packet sent by the
	client.

	sslh now connects timed out connections to the first
	configured protocol instead of 'ssh' (just make sure
	ssh is the first defined protocol).

	sslh now tries protocols in the order in which they
	are defined (just make sure sslh is the last defined
	protocol).

v1.11: 21APR2012
	WARNING: defaults have been removed for --user and
	--pidfile options, update your start-up scripts!

	No longer stop sslh when reverse DNS requests fail
	for logging.

	Added HTTP probe.

	No longer create new session if running in
	foreground.

	No longer default to changing user to 'nobody'. If
	--user isn't specified, just run as current user.

	No longer create PID file by default, it should be
	explicitely set with --pidfile.

	No longer log to syslog if in foreground. Logs are
	instead output to stderr.

	The four changes above make it straightforward to
	integrate sslh with systemd, and should help with
	launchd.

v1.10: 27NOV2011
	Fixed calls referring to sockaddr length so they work
	with FreeBSD.

	Try target addresses in turn until one works if
	there are several (e.g. "localhost:22" resolves to
	an IPv6 address and an IPv4 address and sshd does
	not listen on IPv6).

	Fixed sslh-fork so killing the head process kills
	the listener processes.

	Heavily cleaned up test suite. Added stress test
	t_load script. Added coverage (requires lcov).

	Support for XMPP (Arnaud Gendre).

	Updated README.MacOSX (Aaron Madlon-Kay).

v1.9: 02AUG2011
	WARNING: This version does not work with FreeBSD and
	derivatives!

	WARNING: Options changed, you'll need to update your
	start-up scripts! Log format changed, you'll need to
	update log processing scripts!

	Now supports IPv6 throughout (both on listening and
	forwarding)

	Logs now contain IPv6 addresses, local forwarding
	address, and resolves names (unless --numeric is
	specified).

	Introduced long options.

	Options -l, -s and -o replaced by their long
	counterparts.

	Defaults for SSL and SSH options suppressed (it's
	legitimate to want to use sslh to mux OpenVPN and
	tinc while not caring about SSH nor SSL).

	Bind to multiple addresses with multiple -p options.

	Support for tinc VPN (experimental).

	Numeric logging option.

v1.8: 15JUL2011
	Changed log format to make it possible to link
	connections to subsequent logs from other services.

	Updated CentOS init.d script (Andre Krajnik).

	Fixed zombie issue with OpenBSD (The SA_NOCLDWAIT flag is not
	propagated to the child process, so we set up signals after
	the fork.) (François FRITZ)

	Added -o "OpenVPN" and OpenVPN probing and support.

	Added single-threaded, select(2)-based version.

	Added support for "Bold" SSH clients (clients that speak first)
	Thanks to Guillaume Ricaud for spotting a regression
	bug.

	Added -f "foreground" option.

	Added test suite. (only tests connexions. No test for libwrap,
	setsid, setuid and so on) and corresponding 'make
	test' target.

	Added README.MacOSX (thanks Aaron Madlon-Kay)

	Documented use with proxytunnel and corkscrew in
	README.
2013-11-08 13:33:55 +00:00
markd
ed9cdc8090 Update to KDE SC 4.11.3
bugfixes, many new features, improved stability and performance.
2013-11-07 13:03:07 +00:00
taca
e2dbdc4ca6 Update bind99 to 9.9.4pl1 (BIND 9.9.4-P1).
Security Fixes

   Treat an all zero netmask as invalid when generating the localnets
   acl. A Winsock library call on some Windows systems can return
   an incorrect value for an interface's netmask, potentially
   causing unexpected matches to BIND's built-in "localnets" Access
   Control List. (CVE-2013-6230) [RT #34687]
2013-11-07 04:23:58 +00:00
taca
0d279042ad Update bind98 to 9.8.6pl1 (BIND 9.8.6-P1).
Security Fixes

   Treat an all zero netmask as invalid when generating the localnets
   acl. A Winsock library call on some Windows systems can return
   an incorrect value for an interface's netmask, potentially causing
   unexpected matches to BIND's built-in "localnets" Access Control
   List. (CVE-2013-6230) [RT #34687]
2013-11-07 04:22:22 +00:00
taca
df26ce9f08 Update bind96 to 9.6.3.1.ESV.10pl1 (BIND 9.6-ESV-R10-P1).
Security Fixes

   Treat an all zero netmask as invalid when generating the localnets
   acl. A Winsock library call on some Windows systems can return
   an incorrect value for an interface's netmask, potentially causing
   unexpected matches to BIND's built-in "localnets" Access Control
   List. (CVE-2013-6230) [RT #34687]
2013-11-07 04:20:33 +00:00
joerg
0254337910 Link explicitly against libm. 2013-11-06 13:31:38 +00:00
joerg
7ed51d4967 Match PLIST expection for the gconf schema location 2013-11-06 13:31:21 +00:00
joerg
f90d488a07 Link agent.so correctly against libperl.so. 2013-11-05 17:40:30 +00:00
obache
68135a1b2f Update mikutter to 0.2.2.1410.
* Image preview
  * catch up Tumblr spec chane
* Fixes 100% CPU when network is disconnected.
* Fixes display past tweets in threads.
* Fixes rare crash handling list.
2013-11-05 11:15:28 +00:00
joerg
770e0b11b4 Wants ncurses.h. 2013-11-04 16:40:09 +00:00
tron
721c4457af Update "wireshark" package to version 1.10.3. Changes since 1.10.2:
- Bug Fixes
  The following vulnerabilities have been fixed.
    * wnpa-sec-2013-61
      The IEEE 802.15.4 dissector could crash. (Bug 9139)
      Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10
      CVE-2013-6336
    * wnpa-sec-2013-62
      The NBAP dissector could crash. Discovered by Laurent
      Butti. (Bug 9168)
      Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10
      CVE-2013-6337
    * wnpa-sec-2013-63
      The SIP dissector could crash. (Bug 9228)
      Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10
      CVE-2013-6338
    * wnpa-sec-2013-64
      The OpenWire dissector could go into a large loop.
      Discovered by Murali. (Bug 9248)
      Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10
      CVE-2013-6339
    * wnpa-sec-2013-65
      The TCP dissector could crash. (Bug 9263)
      Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10
      CVE-2013-6340
- The following bugs have been fixed:
    * new_packet_list: EAP-TLS reassemble does not happen when
      NEW_PACKET_LIST is toggled. (Bug 5349)
    * TLS decryption fails with XMPP start_tls. (Bug 8871)
    * Wrong Interpretation of GTS starting slot. (Bug 8946)
    * "Follow TCP Stream" shows only the first HTTP req+res.
      (Bug 9044)
    * The value of SEND_TO_UE in the DIAMETER Gx dictionary for
      Packet-Filter-Usage AVP is 0 instead of 1. (Bug 9126)
    * Crash then try to delete the same entry (length range)
      twice. (Bug 9129)
    * Crash if wrong "packet lengths range" entered. (Bug
      9130)
    * Bssgp => SGSN-INVOKE-TRACE use the wrong function...
      (Bug 9157)
    * Minor correction to dissection of DLR frames in Ethernet/IP
      dissector. (Bug 9186)
    * WebSphere MQ V7 Bug Fix 8322 TSHM_EBCDIC. (Bug 9198)
    * EDNS0 "Higher bits in extended RCODE" incorrectly decoded
      in packet-dns.c. (Bug 9199)
    * Files with pcap-ng Simple Packet Blocks can't be read.
      (Bug 9200)
    * Bug in RTP dissector if RTP extension is present. (Bug
      9204)
    * Improve "eHRPD Indicator" NVSE dissection in 3GPP2 A11
      Registration Request. (Bug 9206)
    * "make debian-package" fails, missing wsicon32.xpm. (Bug
      9209)
    * Fix typo in MODCOD list of DVB-S2 dissector. (Bug 9218)
    * Ring buffer crash when tshark gets too far behind dumpcap.
      (Bug 9258)
    * PTP Dissector Wrongfully Reports Malformed Packet. (Bug
      9262)
    * Wireshark lua dissector unable to load for
      media_type=application/octet-stream. (Bug 9296)
    * Wireshark crash when dissecting packet with NTLMSSP.
      (Bug 9299)
    * Padding in uint64 field in DCERPC protocol wrongly
      reported. (Bug 9300)
    * DCERPC data_blobs are not correctly dissected when NDR64
      encoding is used. (Bug 9301)
    * Multiple PDUs in the same DCERPC packet are not correctly
      decrypted. (Bug 9302)
    * The tshark summary line doesn't display the frame number or
      displays it sporadically. (Bug 9317)
    * Bluetooth: SDP improvements and minor fixes. (Bug 9327)
    * Duplicate IRC header field abbreviation breaks filter
      (example: irc.response.command). (Bug 9360)
- Updated Protocol Support
  3GPP2 A11, Bluetooth SDP, BSSGP, DCERPC, DCERPC NDR, DCERPC NT,
  DIAMETER, DNS, DVB-S2, Ethernet, EtherNet/IP, H.225, IEEE
  802.15.4, IRC, NBAP, NTLMSSP, OpenWire, PTP, RTP, SIP, TCP,
  WiMax, and XMPP
2013-11-02 10:30:00 +00:00
jperkin
88784a83cb Substitute SPREAD_* variables in source and example configs.
Bump PKGREVISION.
2013-11-01 13:26:53 +00:00
jaapb
15a89b35db Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
jaapb
5862c47be8 Updated net/ocamlnet to its latest version, 3.7.3 (and changed maintainer
e-mail address). Changes include:

        * Shell.to_file: implement the append flag as documented
        * The libraries netcamlbox and netmulticore are now only built
          if completely supported.
        * Porting netcamlbox and netmulticore to ocaml-4.01:
          There are new implementations in OCaml for caml_modify and
          caml_initialize that are incompatible with our usage here.
          Fortunately, these symbols are now weak, and we can override
          them. This is done in netsys.outofheap, and for the time being
          we just use the old implementation from ocaml-4.00.
        * Porting netsys to ocaml-4.01: O_CLOEXEC is now supported
          if found
        * Netsys_sem: fix for systems that don't have
          Netsys_posix.sysconf_open_max (e.g. Win32).
        * Http_fs: read method: fixing a problem with resent messages
        * Http_client: better reaction after "100" responses
        * Http_client: implementing verbose_response_header, and
          verbose_response_contents again
        * Uq_ssl: debugging of payload data (Uq_ssl.Debug.dump_data)
        * Http_fs: fixing chunked encoding for PUT (this is already done
          in Http_client)
        * Nethttp: new function base_code
        * Http_client: handling the case better that an unknown status
					code is returned by the server. Before, [response_status] simply
          raised [Not_found]. Now, the base status is returned instead.
        * Extending ocamlrpcgen: It supports now six new directives,
          _lowercase, _uppercase, _capitalize, _prefix, _equals,
          and _tuple (see documentation).
2013-11-01 11:11:18 +00:00
jperkin
645e163d98 Fix PKG_USERS usage. 2013-10-31 15:58:30 +00:00
minskim
bd1746ca4c Update tcpreplay to 3.4.4.
Changes:
- Set default timing method to either gtod or abstime (#404)
- Fix IPv6 parsing of CIDR's (#405)
- Add support for preloading the memory cache (#410)
- Generate more useful error when packets are too small (#411)
- Update to libopts/Autogen 5.9.9 (#412)
- Ship Win32Readme.txt file (#413)
- Update copyright notice to 2010 (#416)
- Dramatically enhance --portmap option (#417)
- Update autotools (#423)
- Add support for printing statistics periodically during the run (#424)
- Warn user when pcap snaplen < 65535 (#425)
- Add 802.1q processing support tcpprep (#428)
- Link libnl when newer versions of libpcap require it (#397)
- Ship m4 directory (#398)
- Upgrade to latest autotools scripts (#400)
- Fix error message when running autogen.sh (#401)
- Added extensive IPv6 support to tcprewrite & tcpreplay-edit (#11)
- Add IPv6 fragroute support (#388)
- Add IPv6 decoding support to tcpprep (#11)
- Fix compile time error in err.h (#390)
- Add --endpoints support in tcpreplay-edit (#393)
2013-10-31 02:25:16 +00:00
wiz
92f4339d94 Make glib2 optional, but leave it default-on to stay as before.
Based on patch by Jean-Yves Moulin <jym@baaz.fr> with slight changes.
2013-10-31 00:38:20 +00:00
dholland
2d5ff4445e Bump PKGREVISION of packages whose Lua depends changed form, but whose
own PKGNAME is unchanged.
2013-10-30 06:49:53 +00:00
pettai
e7fe55dde5 NSD 4.0.0
Features:
* documented in doc/NSD-4-features. Change configuration without restart,
  direct nameserver control with nsd-control, support a higher number of zones.
  Higher performance (compared to NSD3).
* nsdc is gone. Use kill -HUP for reload (also checks if zonefiles have
  changed and rereads them), and kill -TERM for quit. Or use nsd-control
  for detailed control.
* cron job for nsdc patch is gone. nsd-control write creates zonefiles.
* nsd.db has a new format that compacts itself when it is changed,
  thus nsdc patch is no longer necessary.
* nsd.db is memory mapped, NSD needs (part of) that mmap in ram.
* tcp-count can go above 1000; epoll/kqueue support with libevent.
* nsd-control reconfig for updates with no restart (zones, keys, ..)
* nsd-control-setup to create keys for nsd-control (enable nsd-control
  with remote-control: yes in nsd.conf).
2013-10-29 15:13:34 +00:00
jperkin
7300bbffb4 USE_LANGUAGES=c99, fixes build on SunOS. 2013-10-29 10:54:38 +00:00
jperkin
2f938b368e USE_LANGUAGES=c99 and add socket libs to fix build on SunOS. 2013-10-29 10:51:01 +00:00
asau
4ae096a9e3 Follow declared prototype. 2013-10-26 00:28:02 +00:00
jperkin
966bee2921 Fix build on SunOS. Add LICENSE. Patch from Thomas Merkel. 2013-10-25 09:43:20 +00:00
jperkin
846e1277e9 Fix build on OSX. 2013-10-24 21:19:12 +00:00
jperkin
4cb8e51b6d Update puf to 1.0.0. Changeset from Thomas Merkel.
Changes since puf-0.93.2a:

1.0.0 (16 Oct 2005)
    - Fixed command line parsing error that caused -d to be taken as -dc
    - -r[+[+]] doesn't imply -p any more, but it advances -p to -pr[+[+]]
    - The scope of URL-based switches can be limited with brackets now
    - The file supplied to -i is now interpreted as a generic command file
      with one command line switch (incl. argument) or URL per line
    - Dropped SPEC format - use -O and the new -xy/-xyy switches instead
    - $http_proxy is now obeyed if no proxies are specified with -y/-iy
    - Scope of -O switch unified with other URL-based switches
    - Made -O buffer output when dumping multiple sources to one target
    - Added support for "-O -"
    - Added -A, -R, -D, -Dl, -Dr, -xr, -xu, -xs, -xo and -xO switches
    - Removed -xe switch
    - -xE now enumerates per occurrence of -P
    - Vast performance improvements of large downloads
    - Automatically %-escape [invalid] spaces in URLs
    - Various bug fixes
    - Change of versioning scheme to something more reasonable

0.93.3 (20 May 2004)
    - Don't retry after HTTP errors 403 and 404. Added -xT switch to
      enforce the old behaviour (for some really broken servers)
    - Don't spawn a separate process for every DNS lookup, but use a
      pool of DNS helper processes instead
    - Added -xh and -dc switches
    - Fixed file corruption on CygWin
2013-10-24 11:00:49 +00:00
wiz
f2af607bad Mark remaining packages not support DESTDIR as BROKEN as decided
by pkgsrc-pmc.

If you are interested in one of these, please fix it before 2013Q4.
2013-10-24 10:31:02 +00:00
jperkin
798cecb7f0 Add libnsl on SunOS. Fix from Thomas Merkel. 2013-10-24 09:49:22 +00:00
jperkin
b9ad1d7b09 Fix build on SunOS. Patch from Sebastian Wiedenroth. 2013-10-24 09:48:00 +00:00
jperkin
85d237f6e0 Fix PLIST for pgsql option. 2013-10-23 15:46:22 +00:00
fhajny
d207c603ec Update miniupnpd to 1.8.20130730 (thanks to Sebastian Wiedenroth).
Way too many changes, see full changelog at:

https://github.com/miniupnp/miniupnp/blob/master/miniupnpd/Changelog.txt
2013-10-21 10:06:57 +00:00
fhajny
0c40d9ce27 Update socat to 1.7.2.2 (thanks Sebastian Wiedenroth).
Changes:
- Fix for CVE-2013-3571.
2013-10-21 09:54:11 +00:00
fhajny
128d3f18f5 Update ipv6calc to 0.94.1, patches by Sebastian Wiedenroth.
Too many changes, see full changelog at:

http://cvs.deepspace6.net/cgi-bin/cvsweb.cgi/ipv6calc/ChangeLog?rev=1.293
2013-10-21 09:22:43 +00:00
fhajny
25c862721f Fix build on SunOS 2013-10-21 09:01:20 +00:00
fhajny
0888e843c5 Fix build on SunOS. 2013-10-21 08:57:33 +00:00
joerg
a94c5655a0 Prefix rpath options with -Wl. 2013-10-20 18:00:57 +00:00
joerg
937f44095c curses from modernish NetBSD is fine. Don't (incorrectly) hard-code
/usr/pkg references for NetBSD.
2013-10-20 17:59:30 +00:00
wen
8befc2abc9 Update to 0.11
Add missing DEPENDS

Upstream changes:
0.11  2012-02-13
        - needs to actually depend on Path::Class

0.10  2012-02-12
        - Fix ::FileHandle on pre-5.14 perls

0.09  2012-02-12
        - oops, missed rafl's upload, rerelease with the correct version number
2013-10-19 13:56:50 +00:00
adam
63c018902c Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
bsiegert
11eb68bbc8 Fix a common mistake in many different packages: POSIX says that when using
pax -rw, the destination directory must exist. pax in NetBSD creates it if
not, pax in MirBSD complains. I read through all pkgsrc Makefiles that use
pax and added an entry to INSTALLATION_DIRS, or an INSTALL_DATA_DIR
invocation.

I did not test all the changes but they should be fairly safe. If you notice
any breakage because of this change, please contact me.
2013-10-18 11:41:17 +00:00
wiz
2bf30a5d14 Update to 0.20.7:
0.20.7
======

Changes since 0.20.6:
- Fix GCC warnings about local includes.
- Do not hand out libxml2-allocated strings.
- Fix a crash when a notification host was not available.
- Always call action call-back asynchronously, even when there was an error.
- Add performance measurement options to light-server/-client.

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=669729
 - https://bugzilla.gnome.org/show_bug.cgi?id=703263
 - https://bugzilla.gnome.org/show_bug.cgi?id=708162
 - https://bugzilla.gnome.org/show_bug.cgi?id=708575
 - https://bugzilla.gnome.org/show_bug.cgi?id=708751

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Andrzej Bieniek <andyhelp@gmail.com>
 - Emanuele Aina <emanuele.aina@collabora.com>

0.20.6
======

Changes since 0.20.5:
 - Don't do excessive network rescans.

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=706996

All contributors to this release:
 - Ludovic Ferrandis <ludovic.ferrandis@intel.com>
 - Jens Georg <mail@jensge.org>

0.20.5
======

Changes since 0.20.4:
 - Add some missing G_{BEGIN,END}_DECLS guards.
 - Fix uninitialized variable use introduced in previous version.
 - Add simple network device whitelisting infrastructure.
 - Port gupnp-binding-tool so it's usable with python3.
 - Minor code fixes.
 - Fix crashes in NetworkManager context manager during some async calls.
 - Fix a small memory leak in the unix and windows CM.
 - Always enable GTest tests.
 - Upgrade gtk-doc stuff.
 - Fix the service example in documentation.
 - Remove the test for inverted arguments in the GUPnPContext tests.

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=694454
 - https://bugzilla.gnome.org/show_bug.cgi?id=704094
 - https://bugzilla.gnome.org/show_bug.cgi?id=704383
 - https://bugzilla.gnome.org/show_bug.cgi?id=705712
 - https://bugzilla.gnome.org/show_bug.cgi?id=706326

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Ludovic Ferrandis <ludovic.ferrandis@intel.com>
 - Olivier Crête <olivier.crete@collabora.com>
 - Bohuslav Kabrda <bkabrda@redhat.com>
2013-10-17 08:01:02 +00:00
wiz
7d737cd785 recursive bump for audio/taglib shlib major bump 2013-10-17 07:56:39 +00:00
taca
c084bd7e56 Fix php-socket with php55.
- Use USE_PHP_EXT_PATCHES in net/php-sockets.
- Make AI_V4MAPPED noop if platform dosen't have it.

It is poor assumption that AI_V4MAPPED is always defined and V4 mapped
address is always available.
2013-10-15 15:46:37 +00:00
joerg
5df498dfef Don't use tr1/memory for libc++ or any C++11 compiler. 2013-10-15 14:46:07 +00:00
wen
6bd2c53251 Update to 1.132870
Upstream changes:
1.132870 2013-10-14
    - Updated database: Mon Oct 14 06:40:01 2013 UTC.

1.131650 2013-06-14
    - Updated database: Fri Jun 14 06:40:02 2013 UTC.
2013-10-15 14:11:12 +00:00
tonnerre
c0ecc5698c Update tinc to version 1.0.22.
Changes since version 1.0.13:
 * Better optional argument handling.
 * Set $NAME when calling host-up/down and subnet-up/down scripts.
 * Don't echo broadcast packets back when Broadcast = direct.
 * Update copyright notices.
 * Fix combination of Mode = router and DeviceType = tap on Linux.
 * Drop packets forwarded via TCP if they are too big (CVE-2013-1428).
 * Use /dev/tap0 by default on FreeBSD and NetBSD when using Mode = switch.
 * Document how to load the tap driver on FreeBSD.
 * Update THANKS file.
 * Also clarify hostnames=[yes|no] in tinc.conf(5).
 * Attribution for Vil Brekin and some code style cleanups.
 * Don't ignore Makefile.am.
 * Fix links in documenation.
 * Attribution for Martin Schürrer.
 * Add strict checks to hex to binary conversions.
 * Clear connection options and status fields in free_connection_partially().
 * Fix warnings from cppcheck.
 * Clear Ethernet header when reading packets from a tun device.
 * Clear status and options fields of unreachable nodes.
 * Fix warnings from groff.
 * Using alloca() for a constant sized buffer is very silly.
 * Make sure PMTU discovery works in switch mode with VLAN tags.
 * Mention in the manual that support for LZO and zlib can be disabled.
 * Fix configure script help text for --enable options.
 * Don't take the address of a variable whose scope is about to disappear.
 * Send broadcast packets using a random socket, and properly support IPv6.
 * Remove text saying you must have one of PrivateKey or PrivateKeyFile in tinc.conf.
 * Fix support for tunemu on iOS devices.
 * Make sure PriorityInheritance also works in switch mode.
 * Detect increases in PMTU.
 * Fix a compiler warning.
 * Fix segmentation fault when trying to connect via a SOCKS5 proxy.
 * Don't send proxy requests for incoming connections.
 * Fix compiler warnings on Windows.
 * Fix detection of rejected SOCKS5 proxy requests.
 * Basic patch for android cross-compilation.
 * Replace hard-code with new ScriptsInterpreter configuration property.
 * Add basic .gitignore file, cleaning (most) files generated by autotools.
 * Use __ANDROID__ define rather than dirty hard-code to allow android NDK cross-compilation.
 * Android cross-compilation instructions.
 * Output details of encryption errors
 * Minor clarification, tinc.conf hostnames=[yes|no] variable only resolves names for logging purposes.
 * Support :: in IPv6 Subnets.
 * Remove newline from log message.
 * Add support for systemd style socket activation.
 * Allow environment variables to be used for Name.
 * Allow broadcast packets to be sent directly instead of via the MST.
 * Add basic support for SOCKS 4 and HTTP CONNECT proxies.
 * Add support for SOCKS 5 proxies.
 * Add support for proxying through an external command.
 * Document new proxy types.
 * Small fixes in proxy code.
 * Fix compiler warnings.
 * Fix crash when using Broadcast = direct.
 * configure.in: fix AC_ARG_ENABLE and AC_ARG_WITH
 * add (errnum) in front of windows error messages
 * Always try next Address when an outgoing connection fails to authenticate.
 * Allow a port to be specified in BindToAddress statements.
 * Add support for multicast communication with UML/QEMU/KVM.
 * Set default value of DecrementTTL to "no".
 * Add #ifdefs in case not all platforms support IPv4 and IPv6 multicast.
 * Allow scoped addresses to be used for IPv6 multicast socket.
 * Fix compiler warnings.
 * Fix return value type of vde_send().
 * Fix some more compiler warnings.
 * Document OpenBSD "ifconfig link0" and Linux "ip tuntap" commands.
 * Fix return type of vde_recv() as well.
 * Mark DecrementTTL option experimental.
 * Prevent read_rsa_public_key() from returning an uninitialized RSA structure.
 * Return false instead of void when there is an error.
 * Fix compilation of VDE and UML interfaces.
 * Add vde/device.c to the tarball.
 * Fix a few small memory leaks.
 * Allow linking with multiple device drivers.
 * Set FD_CLOEXEC flag on all sockets.
 * Allow multiple BindToAddress statements.
 * Merge branch 'master' of black:tinc
 * Send packets back using the same socket as they were received on.
 * Allow setting DeviceType to tun or tap on Linux.
 * Merge branch 'master' of black:tinc
 * Only compile raw socket code when it is supported on that platform.
 * Decrement TTL of incoming packets.
 * Don't bind outgoing TCP sockets anymore.
 * Rename connection_t *broadcast to everyone.
 * Allow disabling of broadcast packets.
 * Move initialization of char *priority up to prevent freeing an uninitialized pointer.
 * Document the command line flag -o and provide --option as well.
 * Fix a bug that caused tinc to ignore all but the last listening socket.
 * Fix check for raw socket support.
 * Pass index into listen_socket[] to handle_incoming_vpn_data().
 * Add LocalDiscovery option which tries to detect peers on the local network.
 * Don't send ICMP Time Exceeded messages for other Time Exceeded messages.
 * Stricter checks against routing loops.
 * Only use broadcast at the start of the PMTU discovery phase.
 * Only log errors sending UDP packets when debug level >= 5.
 * Accept Subnets passed with the -o option when StrictSubnets = yes.
 * Add missing ICMP6 message type definitions.
 * Make sure disabling old RSA keys works on Windows.
 * Update copyright notices.
 * Add missing ICMP message type definitions.
 * Make code to detect two nodes with the same Name less triggerhappy.
 * Flush output buffer in send_tcppacket().
 * Use usleep() instead of sleep(), MinGW complained.
 * Reorder checks for libraries to allow ./configure LDFLAGS=-static.
 * Make return value of SetPriorityClass() behave the same as setpriority().
 * Fix sparse warnings and add an extra sprinkling of const.
 * Remove newlines from log messages.
 * Remove a few unnecessary #includes.
 * Attribution for Loïc Grenié.
 * Improved --logfile option.
 * Remove redundant @CFLAGS@ from AM_CFLAGS.
 * Nearly tickless tinc.
 * Fix reading configuration files that do not end with a newline. Again.
 * Define WINVER before including any other header file on Windows.
 * Use intptr_t instead of long to store a pointer.
 * OpenSSL 1.0.0 compiled for 64 bit Windows requires linking with -lcrypt32.
 * Fix all warnings when compiling with mingw64.
 * Use strrchr() insteaad of rindex().
 * Detect and prevent two nodes with the same Name being on the VPN simultaneously.
 * Use 64 bit counters to keep track of bytes sent/received from the virtual network interface.
 * Do not append an address to ANS_KEY messages if we don't know any address.
 * Merge local host configuration with server configuration.
 * Remove duplicate command-line option parsing.
 * Attribution for Julien Muchembled.
 * Attribution for Timothy Redaelli.
 * Ensure there is a newline character before a PEM key is written.
 * Abort disabling old PEM keys on I/O errors.
 * Remove unused variables.
 * Quit when there are too many consecutive errors on the tun/tap device.
 * Read error counter must be static.
 * Add short options -R and -U to the tincd(8) manpage.
 * Don't use strlen() on a NULL pointer.
 * Provide usleep() for Windows.
 * Use variable length arrays instead of alloca().
 * Fix warning message when setting SO_RCVBUF or SO_SNDBUF fails.
 * Free replay window when freeing a node_t.
 * Fix variable length array declaration.
 * Attribution for Brandon Black.
 * Use setpriority() instead of nice() on UNIX-like systems.
 * Always send MTU probes at least once every PingInterval.
 * Close all filedescriptors in Solaris close_device().
 * Limit field width when scanning PID file.
 * Replace bogus #else with #endif.
 * Remove unused variables.
 * Document the behavior of "-n."
 * Update the manual.
 * Update the NEWS.
 * Proper check and dropin replacement for usleep().
 * Fix typo spotted by Andrew Scheller.
 * Add support for VDE through libvdeplug.
 * Fix spurious misidentification of incoming UDP packets.
 * Prevent anything from updating our own UDP address.
 * Do not set indirect flag on edges from nodes with multiple addresses.
 * Increase threshold for detecting two nodes with the same Name.
 * Always use the default signal handler for ABRT signals.
 * Check for EVP_EncryptInit_ex instead of SHA1_Version in OpenSSL.
 * Update THANKS and copyright information.
 * Ensure proper linking with OpenSSL with recent versions of MinGW.
 * Include <inttypes.h> when using intptr_t.
 * Experimental IFF_ONE_QUEUE support for Linux
 * Configurable SO_RCVBUF/SO_SNDBUF for the UDP socket
 * Configurable ReplayWindow size, zero disables
 * Improved handling of queue-jumping packets on receive
 * New '-o' option to configure server or hosts from command line
 * Fix command-line '-o' option for host configuration
 * Fix warnings showed using -D_FORTIFY_SOURCE=2
 * Fix warnings under BSD
 * Treat netname="." in a special way.
 * DragonFlyBSD support
2013-10-14 18:27:54 +00:00
sbd
9f542e38a7 Always use time_t as the argument to ctime().
On systems where time_t is 64 bit supplying a 32 bit integer to ctime()
may cause problems.

Bump PKGREVISION
2013-10-13 21:52:44 +00:00
sbd
8418b413c0 USE_TOOLS+=lex 2013-10-13 20:42:54 +00:00
tron
1ef78c3b81 pdate "youtube-dl" package to version 2013.10.09. A list of changes
since version 2013.08.17 is not available unfortunately.
2013-10-12 14:28:03 +00:00
wiz
e3cae3f49b Fix path to default config file.
Requested by Jean-Yves Moulin <jym@baaz.fr>

Bump PKGREVISION.
2013-10-11 09:59:54 +00:00
ryoon
3fba1a52dd Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
jnemeth
c5c0782f56 sort 2013-10-10 03:33:43 +00:00
joerg
535b1324d3 Fix inline use. 2013-10-10 00:09:07 +00:00
joerg
ad44a6e12a Spell TOOL_DEPENDS correctly. 2013-10-10 00:08:40 +00:00
joerg
c51b9f3e7e Check in std for manipulators. 2013-10-10 00:08:19 +00:00
wiz
6068eaecf6 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
taca
98825d7fa6 Update samba to 3.6.19.
Changes since 3.6.18:
---------------------

o   Jeremy Allison <jra@samba.org>
    * BUG 5917: Make Samba work on site with Read Only Domain Controller.


o   Christian Ambach <ambi@samba.org>
    * BUG 8955: NetrServerPasswordSet2 timeout is too short.


o   Günther Deschner <gd@samba.org>
    * BUG 9899: Fix fallback to ncacn_np in cm_connect_lsat().
    * BUG 9615: Fix fallback to ncacn_np in cm_connect_lsat().
    * BUG 10127: Fix 'smbstatus' as non-root user.


o   Volker Lendecke <vl@samba.org>
    * BUG 8955: Give machine password changes 10 minutes of time.
    * BUG 10106: Honour output buffer length set by the client for SMB2 GetInfo
      requests.
    * BUG 10114: Handle Dropbox (write-only-directory) case correctly in
      pathname lookup.


o   Karolin Seeger <kseeger@samba.org>
    * BUG 10076: Fix variable list in man vfs_crossrename.


o   Andreas Schneider <asn@samba.org>
    * BUG 9994: s3-winbind: Do not delete an existing valid credential cache.
    * BUG 10073: 'net ads join': Fix segmentation fault in
      create_local_private_krb5_conf_for_domain.


o   Richard Sharpe <realrichardsharpe@gmail.com>
    * BUG 10097: MacOSX 10.9 will not follow path-based DFS referrals handed
      out by Samba.
2013-10-09 14:46:35 +00:00
adam
95cff9e769 Changes 2.13:
* Not known.
2013-10-09 09:35:42 +00:00
shattered
10e8e43f34 Update to 1.21. Changes:
- Fix memory leak caused by latcp -d & llogin -d
- Loads of protocol fixes and speed enhancements
  NOTE: There are known problems with DECserver 90L terminal servers
- Add better support for DS90L servers reverse LAT
- Fix REQID message in moprc so it works with more servers.
2013-10-08 19:46:15 +00:00
wiz
f1e04617aa Add missing dependency on libquvi-scripts. Bump PKGREVISION. 2013-10-08 12:55:22 +00:00
obache
7e7ffbc3bb Some patches originally included in PR pkg/48269 are required to build with
NtBSD-current.
2013-10-08 12:31:22 +00:00
obache
ac01ffe746 PKGMANDIR fix 2013-10-08 12:14:03 +00:00
wiz
c1ed834100 Drop maintainership. 2013-10-08 08:51:30 +00:00
obache
649949d7b4 + freerdp 2013-10-07 12:55:08 +00:00
obache
b0cf804418 Import freerdp-1.0.2 as net/freerdp.
Based on PR pkg/48269 by Gianni D'Aprile, with various fixes and improvements.

FreeRDP is a free implementation of the Remote Desktop Protocol (RDP),
released under the Apache license.
2013-10-07 12:53:20 +00:00
wiz
773d287466 Recursive bump for serf shlib major downgrade. 2013-10-06 16:46:54 +00:00
obache
ece3fb3523 Update libnids to 1.24.
Based on PR pkg/48217 by Leonardo Taccari.

Changes:
v1.24 Mar 14 2010
- fixed another remotely triggerable NULL dereference in ip_fragment.c
- unofficial patch that enables tracking of already established TCP connections
- missing reset of some tcp_* variables upon nids_exit
- correct calculation of radiotap header
- compilation warning fixes with newer gcc
- use pcap_get_selectable_fd() instead of pcap_fileno()
2013-10-06 08:25:37 +00:00
mspo
f6a9bd3fa7 add uftp, a multicast file transfer tool, to the net Makefile 2013-10-05 17:41:42 +00:00
mspo
2dee4f6ba7 add uftp, a multicast file transfer tool 2013-10-05 17:40:38 +00:00
joerg
6ee02451fe Missing input for timeval definition. 2013-10-04 18:36:54 +00:00
joerg
20fb046c57 Add explicit sh invocation in case the checkout is missing the
executable bit on errlist.sh.
2013-10-03 01:25:51 +00:00
adam
2d0ef8f373 Changes 3.1.0:
OUTPUT CHANGES:

- Output numbers in 3-digit groups by default (e.g. 1,234,567).  See the
  --human-readable option for a way to turn it off.  See also the daemon's
  "log format" parameter and related command-line options (including
  --out-format) for a modifier that can be used to request digit-grouping
  or human-readable output in log escapes. (Note that log output is
  unchanged by default.)

- The --list-only option is now affected by the --human-readable setting.
  It will display digit groupings by default, and unit suffixes if higher
  levels of readability are requested.  Also, the column width for the size
  output has increased from 11 to 14 characters when human readability is
  enabled.  Use --no-h to get the old-style output and column size.

- The output of the --progress option has changed:  the string "xfer" was
  shortened to "xfr", and the string "to-check" was shortened to "to-chk",
  both designed to make room for the (by default) wider display of file
  size numbers without making the total line-length longer.  Also, when
  incremental recursion is enabled, the string "ir-chk" will be used
  instead of "to-chk" up until the incremental-recursion scan is done,
  letting you know that the value to check and the total value will still
  be increasing as new files are found.

- Enhanced the --stats output: 1) to mention how many files were created
  (protocol >= 28), 2) to mention how many files were deleted (a new line
  for protocol 31, but only output when --delete is in effect), and 3) to
  follow the file-count, created-count, and deleted-count with a subcount
  list that shows the counts by type.  The wording of the transferred count
  has also changed so that it is clearer that it is only a count of regular
  files.

More...
2013-10-02 18:06:19 +00:00
mspo
61c7843e9f update to 1.80
1.80: 2012-02-26

    -- FLV streaming plugin (Gosuke Miyashita <gosukenator@gmail.com>)

    -- New Throttle plugin (Adam Thomason <thomason@reticulatedsplines.net>)

    -- Force keepalives off when we haven't finished reading a request body, but we
       are already sending a response. (Jonathan Steinert <hachi@kuiki.net>)

    -- Add support for Content-MD5 checking on PUT requests to web server services.
       (Eric Wong <normalperson@yhbt.net>)

    -- Include an XFFExtras plugin that can add X-Forwarded-Port and X-Forwarded-Proto
       headers to help proxy backends construct canonical URLs with less configuration.
       (RT 60260) (Jonathan Steinert <hachi@kuiki.net>)

    -- Fix perlbal-check's age calculation to get the maximum age of queues across all
       Perlbals. (Abe Hassan <ahassan@saymedia.com>)

    -- Add DEFAULT command to allow setting default values for later service tunables
       (Mark Smith <mark@qq.is>)

    -- Change IO::Socket::SSL version requirement error to reflect what we actually
       require. (Jonathan Steinert <hachi@kuiki.net>)

    -- Completely redo the deps list for perlbal. This addresses an issue exposed when
       LWP was split into component modules (RT 68490) , plus other subtle issues we've
       been ignoring or unaware of. (Jonathan Steinert <hachi@kuiki.net>)

    -- Stop loading Storable, we don't use it (Jonathan Steinert <hachi@kuiki.net>)

    -- Switch Devel::Peek to an optional requirement (Jonathan Steinert <hachi@kuiki.net>)

    -- Change perlbal-check to use IO::Socket::INET, not just IO::Socket
       (Jonathan Steinert <hachi@kuiki.net>)

    -- Can use PERLBAL_REMOVE_FIELDS=1 to disable fields and improve performance
       (Nicolas Rochelemagne <nicolas.rochelemagne@cpanel.net>)

    -- Optimize handling of SET for bool values
       (Nicolas Rochelemagne <nicolas.rochelemagne@cpanel.net>)
2013-10-02 00:13:10 +00:00
manu
98af8bb49c Add nagios-plugin-milter 2013-10-01 03:37:54 +00:00
manu
b98f855913 milter monitoring pluging for nagios 2013-10-01 03:37:15 +00:00
wiz
db48141da0 + cclive. 2013-09-30 21:10:03 +00:00
wiz
88b4cc8ccd Import cclive-0.7.16 as net/cclive, packaged for wip by zecrazytux,
ryo-on, and myself.

cclive is a command line video extraction utility similar to clive
but with lower requirements.  Its features are few and essential.
Supports Youtube, Googlevideo, Break, Liveleak, Sevenload, Evisortv
and Dailymotion.
2013-09-30 21:09:53 +00:00
obache
832fe28e06 Update zeromq to 3.2.4.
0MQ version 3.2.4 stable, released on 2013/09/20
================================================

* LIBZMQ-84  (Windows) Assertion failed: Address already in use at signaler.cpp:80
* LIBZMQ-456 ZMQ_XPUB_VERBOSE does not propagate in a tree of XPUB/XSUB devices
* LIBZMQ-532 (Windows) critical section not released on error
* LIBZMQ-569 Detect OpenPGM 5.2 system library
* LIBZMQ-563 Subscribers sometimes stopped receiving messages (aka LIBZMQ-541)
* LIBZMQ-XXX Added support for Travis Continuous Integration
* LIBZMQ-XXX Several improvements to MSVC support
2013-09-30 12:54:11 +00:00
wiz
bd8d9967c1 Update to 1.2:
chrysn and Joe Nahmias have done a bunch of work on Calypso, and I even
managed to fix a couple of bugs. I've merged their stuff in and pushed
out a version 1.2 release this afternoon, along with an updated debian
package. A this point, all reported Debian bugs are closed (surely that
can't last through more than one release).

The only piece unmerged was the ForkingMixin stuff as that means that
each connection has to re-read the entire database at startup as there's
no persistent in-memory state. I'd love to figure out how to use the
ThreadingMixin instead, providing the same multi-session support along
with caching.
2013-09-30 09:35:55 +00:00
wiz
ee6ded1aac Update to 0.8:
0.8 - Rainbow
=============

* New authentication and rights management modules (by Matthias Jordan)
* Experimental database storage
* Command-line option for custom configuration file (by Mark Adams)
* Root URL not at the root of a domain (by Clint Adams, Fabrice Bellet, Vincent Untz)
* Improved support for iCal, CalDAVSync, CardDAVSync, CalDavZAP and CardDavMATE
* Empty PROPFIND requests handled (by Christoph Polcin)
* Colon allowed in passwords
* Configurable realm message
2013-09-30 09:34:18 +00:00
obache
faa105cc53 Update mikutter to 0.2.2.1373.
* Prevent to show "Retweet" command for protected account
* Change permanent link for tweets in Activity tab.
* Add icon for Activity.
2013-09-28 09:20:42 +00:00
drochner
cc1486d902 fix build on systems without builtin lua (with lua option disabled,
so that no pkgsrc lua is pulled in)
tested by John Klos
2013-09-24 21:29:20 +00:00
jperkin
423b8944bc Support the 'memconf' script on SunOS. 2013-09-24 09:57:04 +00:00
tsutsui
a8b21ea609 Update ruby-tw to 0.5.1. (leaf package update)
Changes from History.txt:

=== 0.5.1 2013-09-18

* tweet with file  % tw 'yummy!!' --file=food.jpg
2013-09-23 05:16:22 +00:00
obache
b39a5e84f5 Update p5-Net-Amazon to 0.62.
0.62 (01/26/2013)
   (dc) Add support for HTTP compression where available, enabled by default.
   (cb) Add support for EAN to the US locale, as reported by Jacob Turino.
   (cb) Add Spain and Italy locales, as implemented by Menno Blom.
   (cb) Add some new departments in Amazon.co.jp, as implemented Naoya Ito.
2013-09-22 12:24:22 +00:00
pettai
ad11ea30d3 NSD 3.2.16
Features:
* New config option "ip-transparent:" to allow NSD to bind to non local
  addresses. Default no.
* Use IPV6 minimum MTU settings with TCP to reduce failures that are caused
  by delays in learning working PMTU when communicating through a tunnel.
* Bugfix #496: Support for EUI48 and EUI64 RR types. Experimental,
  turned off by default. Enable with --enable-draft-rrtypes.
* New config option "rrl-slip:" to set the average number of packets
  discarded before we send back a truncated response.
* New config option "rrl-ipv4-prefix-length:" and "rrl-ipv6-prefix-length:"
  to set the prefix lengths.
* Improved RRL logging, also print triggering query src address and QTYPE.
* Provide RRL documentation in nsd.conf.sample.

Bugfixes:
* Bugfix #357: Parent process waits until children closed down sockets,
  to prevent NSD failing to bind to sockets when restarting.
* Bugfix #487: lookup3.c determine endianness for BSD systems.
* Bugfix #491: pick program name (0th argument) as syslog identity.
* Bugfix #494: Exit with return code 1 if socket code fails.
* Bugfix #495: Wrong bufsize in dname_to_string for root.
* Fix outgoing-interface: Don't fail if family is IPv6 but only IPv4
  outgoing-interface is set, or vice versa.
* RRtypes ASFDB, RP, RT should not compress dnames.
* Check that zone directory is within chroot directory.
* Better XFR checking, fallback to AXFR (if allowed) if three malformed
  XFR packets have been seen.
2013-09-21 22:37:22 +00:00
taca
5ec84352c2 Update bind99 to 9.9.4 (BIND 9.9.4).
(CVE-2013-4854 and CVE-2013-3919 were already fixed in pkgsrc).

Security Fixes

   Previously an error in bounds checking on the private type
   'keydata' could be used to deny service through a deliberately
   triggerable REQUIRE failure (CVE-2013-4854).  [RT #34238]

   Prevents exploitation of a runtime_check which can crash named
   when satisfying a recursive query for particular malformed zones.
   (CVE-2013-3919) [RT #33690]

New Features

   Added Response Rate Limiting (RRL) functionality to reduce the
   effectiveness of DNS as an amplifier for reflected denial-of-service
   attacks by rate-limiting substantially-identical responses. [RT
   #28130]

Feature Changes

   rndc status now also shows the build-id. [RT #20422]

   Improved OPT pseudo-record processing to make it easier to support
   new EDNS options. [RT #34414]

   "configure" now finishes by printing a summary of optional BIND
   features and whether they are active or inactive. ("configure
   --enable-full-report" increases the verbosity of the summary.)
   [RT #31777]

   Addressed compatibility issues with newer versions of Microsoft
   Visual Studio. [RT #33916]

   Improved the 'rndc' man page. [RT #33506]

   'named -g' now no longer works with an invalid logging configuration.
   [RT #33473]

   The default (and minimum) value for tcp-listen-queue is now 10
   instead of 3.  This is a subtle control setting (not applicable
   to all OS   environments).  When there is a high rate of inbound
   TCP connections, it   controls how many connections can be queued
   before they are accepted by named.  Once this limit is exceeded,
   new TCP connections will be rejected.  Note however that a value
   of 10 does not imply a strict limit of 10 queued TCP connections
   - the impact of changing this configuration setting will be
   OS-dependent.  Larger values for tcp-listen queue will permit
   more pending tcp connections, which may be needed where there
   is a high rate of TCP-based traffic (for example in a dynamic
   environment where there are frequent zone updates and transfers).
   For most production servers the new default value of 10 should
   be adequate.  [RT #33029]

   Added support for OpenSSL versions 0.9.8y, 1.0.0k, and 1.0.1e
   with PKCS#11. [RT #33463]

   Added logging messages on slave servers when they forward DDNS
   updates to a master. [RT #33240]

   Changed the logging category for RRL events from 'queries' to
   'query-errors'. [RT #33540]

Bug Fixes

   Fixed the "allow-query-on" option to correctly check the destination
   address. [RT #34590]

   Fix forwarding for  forward only "zones" beneath automatic empty
   zones. [RT #34583]

   Fix DNSSEC auto maintenance so signatures can be removed from a
   zone with only KSK keys for an algorithm. [RT #34439]

   Fix DNSSEC auto maintenance so signatures from newly inactive
   keys are removed (when publishing a new key while deactivating
   another key at the same time). [RT #32178]

   Remove bogus warning log message about missing signatures when
   receiving a query for a SIG record. [RT #34600]

   Fix Response Policy Zones on slave servers so new RPZ changes
   take effect. [RT #34450]

   Fix the "zone-statistics" option to work with the default
   traditional statistics (not new "--enable-newstats" feature).
   [RT #34466]

   named could crash when deleting inline-signing zones with "rndc
   delzone". [RT #34066]

   Improved resistance to a theoretical authentication attack based
   on differential timing.  [RT #33939]

   named was failing to answer queries during "rndc reload" [RT
   #34098]

   win32: Some executables had been omitted from the installer. [RT
   #34116]

   fixed a broken 'Invalid keyfile' error message in dnssec-keygen.
   [RT #34045]

   The build of BIND now installs isc/stat.h so that it's available
   to /isc/file.h when building other applications that reference
   these header files - for example dnsperf (see Debian bug ticket
   #692467).  [RT #33056]

   Better handle failures building XML for stats channel responses.
   [RT #33706]

   Fixed a memory leak in GSS-API processing. [RT #33574]

   Fixed an acache-related race condition that could cause a crash.
   [RT #33602]

   rndc now properly fails when given an invalid '-c' argument. [RT
   #33571]

   Fixed an issue with the handling of zero TTL records that could
   cause improper SERVFAILs. [RT #33411]

   Fixed a crash-on-shutdown race condition with DNSSEC validation.
   [RT #33573]

   Corrected the way that "rndc addzone" and "rndc delzone" handle
   non-standard characters in zone names. [RT #33419]

   Adjusted RRL behavior for recursive queries to defer rate-limiting
   until after recursion is complete.  Also uses correct rcode for
   slipped NXDOMAIN responses. [RT #33604]

   Previously, BIND could erroneously report a missing file
   specification when using inline slave zones.  [RT #33662]
2013-09-21 16:00:34 +00:00
taca
598ec39872 Update bind98 to 9.8.6 (BIND 9.8.6).
(CVE-2013-4854 and CVE-2013-3919 were already fixed in pkgsrc.)

Security Fixes

   Previously an error in bounds checking on the private type
   'keydata' could be used to deny service through a deliberately
   triggerable REQUIRE failure (CVE-2013-4854).  [RT #34238]

   Prevents exploitation of a runtime_check which can crash named
   when satisfying a recursive query for particular malformed zones.
   (CVE-2013-3919) [RT #33690]

Feature Changes

   rndc status now also shows the build-id. [RT #20422]

   Improved OPT pseudo-record processing to make it easier to support
   new EDNS options. [RT #34414]

   "configure" now finishes by printing a summary of optional BIND
   features and whether they are active or inactive. ("configure
   --enable-full-report" increases the verbosity of the summary.)
   [RT #31777]

   Addressed compatibility issues with newer versions of Microsoft
   Visual Studio. [RT #33916]

   Improved the 'rndc' man page. [RT #33506]

   'named -g' now no longer works with an invalid logging configuration.
   [RT #33473]

   The default (and minimum) value for tcp-listen-queue is now 10
   instead of 3.  This is a subtle control setting (not applicable
   to all OS environments).  When there is a high rate of inbound
   TCP connections, it controls how many connections can be queued
   before they are accepted by named.  Once this limit is exceeded,
   new TCP connections will be rejected.  Note however that a value
   of 10 does not imply a strict limit of 10 queued TCP connections
   - the impact of changing this configuration setting will be
   OS-dependent.  Larger values for tcp-listen queue will permit
   more pending tcp connections, which may be needed where there
   is a high rate of TCP-based traffic (for example in a dynamic
   environment where there are frequent zone updates and transfers).
   For most production servers the new default value of 10 should
   be adequate.  [RT #33029]

   Added support for OpenSSL versions 0.9.8y, 1.0.0k, and 1.0.1e
   with PKCS#11. [RT #33463]

   Added logging messages on slave servers when they forward DDNS
   updates to a master. [RT #33240]

Bug Fixes

   Fixed the "allow-query-on" option to correctly check the destination
   address. [RT #34590]

   Fix DNSSEC auto maintenance so signatures can be removed from a
   zone with only KSK keys for an algorithm. [RT #34439]

   Fix forwarding for forward only "zones" beneath automatic empty
   zones. [RT #34583]

   Fix DNSSEC auto maintenance so signatures from newly inactive
   keys are removed (when publishing a new key while deactivating
   another key at the same time). [RT #32178]

   Remove bogus warning log message about missing signatures when
   receiving a query for a SIG record. [RT #34600]

   Fix Response Policy Zones on slave servers so new RPZ changes
   take effect. [RT #34450]

   Improved resistance to a theoretical authentication attack based
   on differential timing.  [RT #33939]

   named was failing to answer queries during "rndc reload" [RT
   #34098]

   Fixed a broken 'Invalid keyfile' error message in dnssec-keygen.
   [RT #34045]

   The build of BIND now installs isc/stat.h so that it's available
   to /isc/file.h when building other applications that reference
   these header files - for example dnsperf (see Debian bug ticket
   #692467).  [RT #33056]

   Better handle failures building XML for stats channel responses.
   [RT #33706]

   Fixed a memory leak in GSS-API processing. [RT #33574]

   Fixed an acache-related race condition that could cause a crash.
   [RT #33602]

   rndc now properly fails when given an invalid '-c' argument. [RT
   #33571]

   Fixed an issue with the handling of zero TTL records that could
   cause improper SERVFAILs. [RT #33411]

   Fixed a crash-on-shutdown race condition with DNSSEC validation.
   [RT #33573]

   Corrected the way that "rndc addzone" and "rndc delzone" handle
   non-standard characters in zone names. [RT #33419]
2013-09-21 15:59:00 +00:00
taca
8a3cd4b630 Update bind96 to bind-9.6.3.1.ESV.10 (BIND 9.6-ESV-R10).
(CVE-2013-3919 is already fixed in pkgsrc).

Security Fixes

   Prevents exploitation of a runtime_check which can crash named
   when satisfying a recursive query for particular malformed zones.
   (CVE-2013-3919) [RT #33690]

Feature Changes

   rndc status now also shows the build-id. [RT #20422]

   Improved OPT pseudo-record processing to make it easier to support
   new EDNS options. [RT #34414]

   "configure" now finishes by printing a summary of optional BIND
   features and whether they are active or inactive. ("configure
   --enable-full-report" increases the verbosity of the summary.)
   [RT #31777]

   Addressed compatibility issues with newer versions of Microsoft
   Visual Studio. [RT #33916]

   Improved the 'rndc' man page. [RT #33506]

   'named -g' now no longer works with an invalid logging configuration.
   [RT #33473]

   The default (and minimum) value for tcp-listen-queue is now 10
   instead of 3.  This is a subtle control setting (not applicable
   to all OS environments).  When there is a high rate of inbound
   TCP connections, it controls how many connections can be queued
   before they are accepted by named.  Once this limit is exceeded,
   new TCP connections will be rejected.  Note however that a value
   of 10 does not imply a strict limit of 10 queued TCP connections
   - the impact of changing this configuration setting will be
   OS-dependent.  Larger values for tcp-listen queue will permit
   more pending tcp connections, which may be needed where there
   is a high rate of TCP-based traffic (for example in a dynamic
   environment where there are frequent zone updates and transfers).
   For most production servers the new default value of 10 should
   be adequate.  [RT #33029]

Bug Fixes

   Fixed the "allow-query-on" option to correctly check the destination
   address. [RT #34590]

   Fix forwarding for forward only "zones" beneath automatic empty
   zones. [RT #34583]

   Remove bogus warning log message about missing signatures when
   receiving a query for a SIG record. [RT #34600]

   Improved resistance to a theoretical authentication attack based
   on differential timing.  [RT #33939]

   The build of BIND now installs isc/stat.h so that it's available
   to /isc/file.h when building other applications that reference
   these header files - for example dnsperf (see Debian bug ticket
   #692467).  [RT #33056]

   Better handle failures building XML for stats channel responses.
   [RT #33706]

   Fixed a memory leak in GSS-API processing. [RT #33574]

   Fixed an acache-related race condition that could cause a crash.
   [RT #33602]

   rndc now properly fails when given an invalid '-c' argument. [RT
   #33571]

   Fixed an issue with the handling of zero TTL records that could
   cause improper SERVFAILs. [RT #33411]

   Fixed a crash-on-shutdown race condition with DNSSEC validation.
   [RT #33573]
2013-09-21 15:57:50 +00:00
joerg
bdcf7354aa Don't use gethostbyname_r on NetBSD. 2013-09-20 23:06:49 +00:00
obache
8a5aea14e2 Note p5-SOAP-Transport-TCP as SUPERSEDES, merged back since 1.0. 2013-09-19 11:03:53 +00:00
obache
bca6df70d0 Remove net/p5-SOAP-Transport-TCP from pkgsrc.
Merged SOAP::Transport::TCP back into SOAP::Lite (for 1.0)

approved by wiz@.
2013-09-19 11:00:19 +00:00
obache
ecbefc1cc6 Add CONFLICTS with p5-SOAP-Lite>=1.0, mergeed back. 2013-09-19 09:41:25 +00:00
joerg
862b1a2289 Restore Clang support with libc++. Additional changes to deal with the
inability of old GCC versions to cast to int implicitly. Bump revision.
2013-09-18 16:33:08 +00:00
joerg
f16b7e6c9e Restore support for Clang with libc++11. Bump revision. 2013-09-18 16:32:05 +00:00
joerg
eaea9799f9 Fix inline use. 2013-09-17 21:14:37 +00:00
joerg
99a773ebb2 Fix a header guard. Remove non-portable comparision to NULL iterator.
Be explicit about using the custom hash.
2013-09-17 21:13:45 +00:00
abs
bf4c78e89b Updated net/darkstat to 3.0.717
(leaf package, mainly bugfixes, checked with MAINTAINER)

v3.0.717 (14 August 2013)
	- (OS X only) Work around lack of clock_gettime().
	- Fix crash due to str_appendf() not understanding %ld.

v3.0.716 (8 August 2013)
	- Implement support for multiple capture interfaces.
	- Support multiple local IPs on an interface.
	- Only error out if we fail to create all HTTP sockets.
	  In particular, this helps on IPv6-incapable platforms.
	- Use monotonic time over wall time where appropriate.
	- Portability fixes for NetBSD and OpenBSD.
2013-09-16 17:42:09 +00:00
taca
b4d74239da Add and enable ruby-em-socksify. 2013-09-15 18:47:46 +00:00
taca
0204fbe4e0 Add ruby-em-socksify pacakge version 0.3.0.
EM-Socksify: Transparent SOCKS support for any EventMachine protocol

Dealing with SOCKS proxies is pain. EM-Socksify provides a simple shim to
setup & negotiate a SOCKS5 connection for any EventMachine protocol. To add
SOCKS support, all you have to do is include the module and provide your
destination address.
2013-09-15 18:46:56 +00:00
taca
6d46e63e15 Update ruby-amqp to 1.0.2.
Exact changes aren't available.  Please refer change log in github.
2013-09-15 18:30:48 +00:00
taca
e4dd0cb3f2 Update ruby-amq-client to 1.0.2.
Exact changes aren't available.  Please refer change log in github.
2013-09-15 18:30:05 +00:00
taca
3be70290a6 Update ruby-amq-protocol to 1.2.0.
Exact changes aren't available.  Please refer change log in github.
2013-09-15 18:29:19 +00:00
taca
e9815a8fce Update ruby-rubytter to 1.5.1.
* Switch to Twitter API v1.1.
2013-09-15 14:37:54 +00:00
taca
21a3d728c6 Update ruby-domain_name to 0.5.13.
* Update the eTLD database to 2013-08-15T11:01:26Z.
2013-09-15 14:33:41 +00:00