Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (0m)  pkgsrc-2024Q1 (8d)  pkgsrc-2023Q4 (55d)  pkgsrc-2023Q2 (88d)  pkgsrc-2023Q3 (167d) 

2024-05-26 12:47:28 UTC Now

2013-12-31 14:12:17 UTC MAIN commitmail json YAML

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.

(rodent)

2013-12-31 14:03:22 UTC MAIN commitmail json YAML

2013-12-31 14:02:23 UTC MAIN commitmail json YAML

Added net/py-amqp version 1.3.3

(rodent)

2013-12-31 14:02:07 UTC MAIN commitmail json YAML

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.

(rodent)

2013-12-31 13:56:35 UTC MAIN commitmail json YAML

Don't try to convert the SunStudio option "-mt". There is no GCC option
which is accepted by both the GCC bundled with Solaris 10 and the more
modern GCC versions availabe in "pkgsrc". Handling of POSIX thread
related options should be left to pkgsrc anyway.

Fix based on a suggestion by Richard Palo.

(tron)

2013-12-31 13:53:46 UTC MAIN commitmail json YAML

Commit a fix for packaging issues, supplied by the package maintainer
in PR pkg/48483.

(hauke)

2013-12-31 13:28:13 UTC MAIN commitmail json YAML

Updated parallel/py-billiard to 3.3.0.13

(rodent)

2013-12-31 13:27:51 UTC MAIN commitmail json YAML

Updated to latest release, 3.3.0.13. Note changes to some files in the
PLIST. From ChangeLog:

3.3.0.13 - 2013-12-13
---------------------

- Fixes compatability with Python < 2.7.6
- No longer attempts to handle ``SIGBUS``
- Non-thread based pool now only handles signals:
    ``SIGHUP``, ``SIGQUIT``, ``SIGTERM``, ``SIGUSR1``,
    ``SIGUSR2``.
- setup.py: Only show compilation warning for build related commands.

3.3.0.12 - 2013-12-09
---------------------

- Fixed installation for Python 3.
- Pool: Fixed bug with maxtasksperchild.
- Pool: Fixed bug in maintain_pool.

3.3.0.11 - 2013-12-03
---------------------

- Fixed Unicode error when installing the distribution (Issue #89).
- Daemonic processes are now allowed to have children.
    But note that it will not be possible to automatically
    terminate them when the process exits.
- Pool:  Would not always be able to detect that a process exited.

3.3.0.10 - 2013-12-02
---------------------

- Windows: Fixed problem with missing ``WAITABANDONED_0``
- Windows: PipeConnection can now be inherited.

3.3.0.9 - 2013-12-02
--------------------

- Temporary workaround for Celery maxtasksperchild issue.

3.3.0.8 - 2013-11-21
--------------------

- Now also sets ``multiprocessing.current_process`` for compatibility
  with loggings ``processName`` field.

3.3.0.7 - 2013-11-15
--------------------

- Fixed compatibility with PyPy 2.1 + 2.2.
- Fixed problem in pypy detection.
- Now uses ``ctypes.find_library`` instead of hardcoded path to find
  the OS X CoreServices framework.

3.3.0.6 - 2013-11-12
--------------------

- Now works without C extension again.
- New ``_billiard.read(fd, buffer, [len, ])` function
  implements os.read with buffer support (new buffer API)
- New pure-python implementation of ``Connection.send_offset``.

3.3.0.5 - 2013-11-11
--------------------

- All platforms except for Windows/PyPy/Jython now requires the C extension.

3.3.0.4 - 2013-11-11
--------------------

- Fixed problem with Python3 and setblocking.

3.3.0.3 - 2013-11-09
--------------------

- Now works on Windows again.

3.3.0.2 - 2013-11-08
--------------------

- ApplyResult.terminate() may be set to signify that the job
  must not be executed.  It can be used in combination with
  Pool.terminate_job.
- Pipe/_SimpleQueue: Now supports rnonblock/wnonblock arguments
  to set the read or write end of the pipe to be nonblocking.
- Pool: Log message included exception info but exception happened
  in another process so the resulting traceback was wrong.
- Pool: Worker process can now prepare results before they are sent
  back to the main process (using ``Worker.prepare_result``).

3.3.0.1 - 2013-11-04
--------------------

- Pool: New ``correlation_id`` argument to ``apply_async`` can be
  used to set a related id for the ``ApplyResult`` object returned:
    >>> r = pool.apply_async(target, args, kwargs, correlation_id='foo')
    >>> r.correlation_id
    'foo'
- Pool: New callback `on_process_exit` is called when a pool
  process exits, with signature ``(pid, exitcode)``.
- Pool: Improved the too many restarts detection.

3.3.0.0 - 2013-10-14
--------------------

- Dual code base now runs on Python 2.6+ and Python 3.
- No longer compatible with Python 2.5
- Includes many changes from multiprocessing in 3.4.
- Now uses ``time.monotonic`` when available, also including
  fallback implementations for Linux and OS X.
- No longer cleans up after receiving SIGILL, SIGSEGV or SIGFPE
- ``Finalize`` and ``register_after_fork`` is now aliases to multiprocessing.
    It's better to import these from multiprocessing directly now
    so that there aren't multiple registries.
- New `billiard.queues._SimpleQueue` that does not use semaphores.
- Pool: Can now be extended to support using multiple IPC queues.
- Pool: Can now use async I/O to write to pool IPC queues.
- Pool: New ``Worker.on_loop_stop`` handler can be used to add actions
  at pool worker process shutdown.
    Note that, like all finalization handlers, there is no guarantee that
    this will be executed.

(rodent)

2013-12-31 13:17:42 UTC MAIN commitmail json YAML

Updated games/solarus to 1.1.1

(rodent)

2013-12-31 13:17:00 UTC MAIN commitmail json YAML

Updated to latest release, 1.1.1. From ChangeLog:

* Fix a libmodplug compilation problem due to wrong sndfile.h (#324).
* Fix teletransporters activated while coming back from falling (#346).
* Fix a crash when changing the hero state in block:on_moved (#340).
* Fix enemy death detection when falling into hole, lava or water (#350).

(rodent)

2013-12-31 12:10:54 UTC MAIN commitmail json YAML

Updated databases/slony1 to 2.2.1

(adam)

2013-12-31 12:09:52 UTC MAIN commitmail json YAML

Changes 2.2.1:
Fixes to the UPDATE FUNCTIONS for upgrades from releases earlier than 2.2.0
Fixes to the FAILOVER logic
Fixes slon to avoid constant database connection & disconnection
Fixes to CLONE PREPARE processing

(adam)

2013-12-31 12:04:37 UTC MAIN commitmail json YAML

Updated www/squid3; www/curl; www/py-django

(adam)

2013-12-31 12:02:53 UTC MAIN commitmail json YAML

Changes 1.6.1:
Bug fixes
Fixed BCryptSHA256PasswordHasher with py-bcrypt and Python 3.
Fixed a regression that prevented a ForeignKey with a hidden reverse manager (related_name ending with ‘+’) from being used as a lookup for prefetch_related.
Fixed Queryset.datetimes raising AttributeError in some situations.
Fixed ModelBackend raising UnboundLocalError if get_user_model() raised an error.
Fixed a regression that prevented editable GenericRelation subclasses from working in ModelForms.
Added missing to_python method for ModelMultipleChoiceField which is required in Django 1.6 to properly detect changes from initial values.
Fixed django.contrib.humanize translations where the unicode sequence for the non-breaking space was returned verbatim.
Fixed loaddata error when fixture file name contained any dots not related to file extensions or when fixture path was relative but located in a subdirectory.
Fixed display of inline instances in formsets when parent has 0 for primary key.
Fixed a regression where custom querysets for foreign keys were overwritten if ModelAdmin had ordering set.
Removed mention of a feature in the --locale/-l option of the makemessages and compilemessages commands that never worked as promised: Support of multiple locale names separated by commas. It’s still possible to specify multiple locales in one run by using the option multiple times.
Fixed a regression that unnecessarily triggered settings configuration when importing get_wsgi_application.
Fixed test client logout() method when using the cookie-based session backend.
Fixed a crash when a GeometryField uses a non-geometric widget.
Fixed password hash upgrade when changing the iteration count.
Fixed a bug in the debug view when the URLconf only contains one element.
Re-added missing search result count and reset link in changelist admin view.
The current language is no longer saved to the session by LocaleMiddleware on every response, but rather only after a logout.
Fixed a crash when executing runserver on non-English systems and when the formatted date in its output contained non-ASCII characters.
Fixed a crash in the debug view after an exception occurred on Python ≥ 3.3.
Fixed a crash in ImageField on some platforms (Homebrew and RHEL6 reported).
Fixed a regression when using generic relations in ModelAdmin.list_filter.

(adam)

2013-12-31 11:54:32 UTC MAIN commitmail json YAML

Changes 3.4.2:
* Added missing header in client_side_reply.cc for clang
* Bug 3498: FTP PUT assertion Server.cc:246: 'r->body_pipe != NULL'
* Bug 3985: 60s limit introduced by balance_on_multiple_ip breaks bad IP recovery
* Fix \-unescaping in quoted strings from helpers
* WCCPv2: fix assertion 'Cannot convert non-IPv4 to IPv4' on FreeBSD
* Fix missing cast in rev.13162
* Bug 3980: FATAL ERROR due to max_user_ip -s option
* Fix linker errors "relocation R_X86_64_32 against .rodata"
* Regression in URL helper API
* Bug 3806: Caching responses with Vary header
* Set sslcrtvalidator_children concurrency option default value to 1
* Release notes: update HTML version

(adam)

2013-12-31 11:48:03 UTC MAIN commitmail json YAML

Changes 7.34.0:
SSL: protocol version can be specified more precisely
imap/pop3/smtp: Added graceful cancellation of SASL authentication
Add "Happy Eyeballs" for IPv4/IPv6 dual connect attempts
base64: Added validation of base64 input strings when decoding
curl_easy_setopt: Added the ability to set the login options separately
smtp: Added support for additional SMTP commands
curl_easy_getinfo: Added CURLINFO_TLS_SESSION for accessing TLS internals
nss: allow to use TLS > 1.0 if built against recent NSS
SECURITY: added this document to describe our security processes
parseconfig: warn if unquoted white spaces are detected

Bugfixes:
SECURITY VULNERABILITY: libcurl cert name check ignore with GnuTLS
darwinssl: un-break iOS build after PKCS/12 feature added
tool: use XFERFUNCTION to save some casts
usercertinmem: fix memory leaks
ssh: Handle successful SSH_USERAUTH_NONE
NSS: acknowledge the --no-sessionid/CURLOPT_SSL_SESSIONID_CACHE option
test906: Fixed failing test on some platforms
sasl: initialize NSS before using NTLM crypto
sasl: Fixed memory leak in OAUTH2 message creation
imap/pop3/smtp: Fixed QUIT / LOGOUT being sent when SSL connect fails
cmake: unbreak for non-Windows platforms
ssh: initialize per-handle data in ssh_connect()
glob: fix broken URLs
configure: check for long long when building with cyassl
CURLOPT_RESOLVE: mention they don't time-out
docs/examples/httpput.c: fix build for MSVC
FTP: make the data connection work when going through proxy
NSS: support for CERTINFO feature
curl_multi_wait: accept 0 from multi_timeout() as valid timeout
glob_range: pass the closing bracket for a-z ranges
tool_help: Updated --list-only description to include POP3
Curl_ssl_push_certinfo_len: don't %.*s non-zero-terminated string
cmake: fix Windows build with IPv6 support
ares: Fixed compilation under Visual Studio 2012
curl_easy_setopt.3: clarify CURLOPT_SSL_VERIFYHOST documentation
curl.1: mention that -O does no URL decoding
darwinssl: PKCS/12 import feature now requires Lion or later
darwinssl: check for SSLSetSessionOption() presence when toggling BEAST
configure: Fix test with -Werror=implicit-function-declaration
sigpipe: factor out sigpipe_reset from easy.c
curl_multi_cleanup: ignore SIGPIPE
globbing: curl glob counter mismatch with {} list use
parseconfig: dash options can't specified with colon or equals
digest: fix CURLAUTH_DIGEST_IE
curl.h: for OpenBSD
darwinssl: Fix #if 10.6.0 for SecKeychainSearch
TFTP: fix return codes for connect timeout
login options: remove the ;[options] support from CURLOPT_USERPWD
imap: Fixed incorrect fallback to clear text authentication
parsedate: avoid integer overflow
curl.1: document -J doesn't %-decode
multi: add timer inaccuracy margin to timeout/connecttimeout

(adam)

2013-12-31 11:37:49 UTC MAIN commitmail json YAML

Updated graphics/ruby-rcairo to 1.12.8

(obache)

2013-12-31 11:37:09 UTC MAIN commitmail json YAML

update ruby-rcairo to 1.12.8.

Release 1.12.8 (2013-12-23) Kouhei Sutou <kou@cozmixng.org>
===========================================================

Fixes
-----

  * Bundled missing libwinpthread-1.dll into gem for Windows.
    [Reported by Masafumi Yokoyama]

Thanks
------

  * Masafumi Yokoyama

Release 1.12.7 (2013-12-23) Kouhei Sutou <kou@cozmixng.org>
===========================================================

Improvements
------------

  * Added paper sizes of ISO B series and JIS B series.
    [Patch by 5.5]
  * Added Windows binary for Ruby 2.1.0.
  * Updated bundled cairo to 1.12.16 from 1.12.14 for Windows.

Fixes
-----

  * Fixed a bug that Cairo::ImageSurface.new(cloned_data, ...)
    changes both the original data and the cloned data.
    [Patch by Naoyuki Hirayama]

Thanks
------

  * 5.5
  * Naoyuki Hirayama

(obache)

2013-12-31 11:32:24 UTC MAIN commitmail json YAML

Updated devel/ruby-pkg-config to 1.1.5

(obache)

2013-12-31 11:32:04 UTC MAIN commitmail json YAML

Update ruby-pkg-config to 1.1.5.

* Add XQuartz's path for X11

(obache)

2013-12-31 11:13:43 UTC MAIN commitmail json YAML

Check for stdio.h in /usr/include test, as on upgrades the /usr/include
directory may still exist containing legacy application headers.

Noticed by schmonz.  Also add Mavericks to the version table while here.

(jperkin)

2013-12-31 11:07:24 UTC MAIN commitmail json YAML

Updated archivers/libzip to 0.11.2

(wiz)

2013-12-31 11:07:14 UTC MAIN commitmail json YAML

Update to 0.11.2:

0.11.2 [2013/12/19]

* Support querying/setting operating system and external attributes.
* For newly added files, set operating system to UNIX, permissions
  to 0666 (0777 for directories).
* Fix bug when writing zip archives containing files bigger than 4GB.

(wiz)

2013-12-31 11:06:39 UTC MAIN commitmail json YAML

Updated textproc/mdocml to 1.12.3

(wiz)

2013-12-31 11:06:30 UTC MAIN commitmail json YAML

Update to 1.12.3:

Changes in version 1.12.3, released on December 31, 2013

* In the mdoc(7) SYNOPSIS, line breaks and hanging indentation
  now work correctly for .Fo/.Fa/.Fc and .Fn blocks.
  Thanks to Franco Fichtner for doing part of the work.
* The mdoc(7) .Bk macro got some addititonal bugfixes.
* In mdoc(7) macro arguments, double quotes can now be quoted
  by doubling them, just like in man(7).
  Thanks to Tsugutomo ENAMI for the patch.
* At the end of man(7) macro lines, end-of-sentence spacing
  now works.  Thanks to Franco Fichtner for the patch.
* For backward compatibility, the man(7) parser now supports the
  man-ext .UR/.UE (uniform resource identifier) block macros.
* The man(7) parser now handles closing blocks that are not open
  more gracefully.
* The man(7) parser now ignores blank lines right after .SH and .SS.
* In the man(7) formatter, reset indentation when leaving a block,
  not just when entering the next one.
* The roff(7) .nr request now supports incrementing and decrementing
  number registers and stops parsing the number right before the
  first non-digit character.
* The roff(7) parser now supports the alternative escape sequence
  syntax \C'uXXXX' for Unicode characters.
* The roff(7) parser now parses and ignores the .fam (font family)
  and .hw (hyphenation points) requests and the \d and \u escape
  sequences.
* The roff(7) manual got a new ESCAPE SEQUENCE REFERENCE.

(wiz)

2013-12-31 11:03:34 UTC MAIN commitmail json YAML

Updated sysutils/bup to 0.25

(wiz)

2013-12-31 11:03:12 UTC MAIN commitmail json YAML

Update to 0.25:

This release includes a veritable ton of work, but the biggest change
is probably the addition of real (YMMV) metadata support, including
hardlinks, and the ability to directly save/restore trees without tar
and split/join.  See bup-index(1), bup-save(1), bup-restore(1),
bup-meta(1), bup-xstat(1), and the updated "Using bup" section in the
README.

Note though, that the metadata support really is our first pass, and
there are already things that we know need fixing (i.e. better support
for cross-filesystem-type save/restore (too noisy), etc.).  And check
the "Notes on ..." sections in the README for some platform-specific
limitations.

An incomplete list of other notable changes since 0.24b:

  - bup will no longer create ~/.bup implicitly; "bup init" is
    required.

  - "bup split" now supports a compression-level option (-#).

  - "bup tag" now supports "-f".

  - "bup ls" now supports "-a", "-s", "--human-readable", etc., and
    reports more information.

  - "bup web" now supports "--human-readable".

  - "bup import-rdiff-backup" has been added.

  - "bup cat-file" has been added.

  - The default "/usr" installation prefix can be overridden via PREFIX.

  - Python 2.4 is no longer supported.

And we have at least one (likely minor) known issue:

  - *Very* large (i.e. probably greater than MAX_LONG), or negative
    filesystem timestamps may not always be handled correctly at the
    moment.  We'll fix that soon.  And related -- some of the tests
    may fail on FUSE filesystems.

(wiz)

2013-12-31 10:42:59 UTC MAIN commitmail json YAML

2013-12-31 10:21:54 UTC MAIN commitmail json YAML

pkgsrc unfrozen

(wiz)

2013-12-31 10:20:23 UTC pkgsrc-2013Q4 commitmail json YAML

Add changes file for 2013Q4 branch.

(wiz)

2013-12-31 10:14:14 UTC MAIN commitmail json YAML

2013-12-31 05:53:09 UTC MAIN commitmail json YAML

Updated www/php-piwigo to 2.5.3

(ryoon)

2013-12-31 05:51:31 UTC MAIN commitmail json YAML

Update to 2.5.3 from 2.4.6

Changelog:
2.5.3:
Bugs Fixed

    0002967: [display] Album list management display enhancement, faster load
    0002964: [configuration] zero should be allowed for the recent period
    0002980: [other] Fatal error when renaming a group
    0002977: [albums] move a public album into a private album may create inconsistent permissions
    0002975: [template] Internet Explorer 7, album creation form is broken
    0002974: [configuration] avoid deprecated errors
    0002973: [metadata] missing characters from IPTC when using encoding windows-1252
    0002970: [other] Division by zero on batch manager
    0002934: [authentication] [Smartpocket ] Can't register

2.5.2:
Bugs Fixed

    0002921: [tags] Can't create tags with special chars like ( + [
    0002915: [synchronization] synchronization not really disabled
    0002894: [albums] set as album thumbnail on picture.php does not apply to all users
    0002895: [display] dark administration theme, plugins menu flashes
    0002907: [albums] wrong number of sub-albums
    0002917: [web API] [pwg.images.delete] if the photo is album thumbnail, blocking error on gallery
    0002909: [users & groups] give permission on an empty list of albums produces SQL error
    0002901: [photos] [Batch Manager] french, set author action, default value should disappear
    0002899: [metadata] ability to allow HTML in EXIF/IPTC
    0002896: [technical] Apply trigger render_element_description for thumbnail title (for picture description)

Technical changes

    0002922: [technical] Add caseSensitive option to TokenInput (web form for tag creation)
    0002929: [photos] [multiple size] strip metadata on configurable threshold
    0002925: [template] new function theme_delete

2.5.1:
Bugs Fixed

    0002892: [web API] [pwg.images.setInfo] empty tag_ids input parameter produces errors
    0002865: [database] [mysqli] support for mysql sockets and port number
    0002891: [navigation] unexpected flat parameter in home link on picture page breadcrumb
    0002864: [authentication] open_basedir restriction and new password generator
    0002887: [user comments] Comments accessible anonymously if comments author is known
    0002861: [installation & upgrade] invalid password on manual upgrade
    0002867: [template] [LocalFiles Editor] can't create new template-extension
    0002881: [web API] [pwg.images.addSimple] undefined constant tags-assumed "tags"

2.5.0
Many changes include
User features

    User comments: Email and Website added
    Tag duplication
    Pagination on albums
    Batch manager: filter on dimensions
    Group manager

    Better looking icons
    Connect with Facebook, Google, OpenID...
    Temporary image while loading
    51 languages
    Physical vs virtual albums

    Protection of original photos
    Tag exclusion in quick search
    IP address and sessions

Tecnical features

    New web API explorer
    increased security on passwords
    mysqli library for MySQL
    JSmin replaced by JavaScriptPacker

    Sprite for flags
    Sessions can store infos, errors and warnings
    Add triggers on all main pages
    Add template method to sort action buttons

    jquery 1.8.3, jquery.ui 1.10.1
    Earlier detection of mobile device
    Triggers for login system

2.4.7:
Bugs Fixed

    0002819: [template] Link problem in menu with smartpocket
    0002843: [security] [install.php on Windows] improved security on temporary config file download (reported by htbridge and fixed in collaboration with Gjoko Krstic)
    0002844: [security] increase security on LocalFiles Editor (reported by htbridge)
    0002793: [technical] Fatal error: Cannot redeclare PclZipUtilPathReduction
    0002797: [template] local css for "clear" impacts admin theme "clear"

(ryoon)

2013-12-31 05:44:29 UTC MAIN commitmail json YAML

Fix pasto, and change default mysql version.

(ryoon)

2013-12-31 03:30:03 UTC MAIN commitmail json YAML

Updated net/icinga-base to 1.9.4

(ryoon)

2013-12-31 03:28:39 UTC MAIN commitmail json YAML

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

(ryoon)

2013-12-31 03:24:25 UTC MAIN commitmail json YAML

Fix typo in filename

(ryoon)

2013-12-31 00:56:17 UTC MAIN commitmail json YAML

Correct comment as SunOS 5.11 not 5.1, thanks

(mef)

2013-12-31 00:55:14 UTC MAIN commitmail json YAML

Adjust install path for libiberty.a for SunOS  5.11.
It installs at amd64 directory instead of x86_64.
Notified at pkgsrc-bulk@, thanks.

(mef)

2013-12-31 00:48:48 UTC MAIN commitmail json YAML

Adjust install path for SunOS 5.1 ( it places at amd64 directory instead of xf86_64).
Should not affect other than SunOS 5.1 (64bit).
Discussed on pkgsrc-bulk@, thanks joerg@.

(mef)

2013-12-30 13:07:46 UTC MAIN commitmail json YAML

Update HOMEPAGE, old HOMEPAGE has no 2.2 information

(ryoon)

2013-12-30 11:49:48 UTC MAIN commitmail json YAML

2013-12-30 07:03:13 UTC MAIN commitmail json YAML

Updated lang/openjdk7 to 1.7.25nb3

(ryoon)

2013-12-30 07:02:28 UTC MAIN commitmail json YAML

2013-12-30 06:40:06 UTC MAIN commitmail json YAML

Update qt5-{qtbase,qtmultimedia} to 5.2.0nb1

(ryoon)

2013-12-30 06:37:11 UTC MAIN commitmail json YAML

2013-12-30 04:22:28 UTC MAIN commitmail json YAML

2013-12-30 04:21:59 UTC MAIN commitmail json YAML

Update to 0.61

Changelog:
* backup-files is rewritten by bash now
* Many bugfixes
* Many cleanups

(ryoon)

2013-12-30 01:34:43 UTC MAIN commitmail json YAML

lang/gcc-aux: Keep original bootstrap for NetBSD/i386

The last change to the Makefile was created months ago, and at the time
it was intended that new bootstraps would be made for both x86_64 and
i386 platforms.  The latter bootstrap was never created, so the previous
commit broke the build on i386.

Until a new bootstrap compiler is created, continue to use the old one.
It will continue to build on gcc-based NetBSD, but I do not expect it to
build on NetBSD-6.99/i386 with clang and no gcc libraries.

(marino)

2013-12-30 00:24:08 UTC MAIN commitmail json YAML

Update the COMMENTs for the firefox packages to include the upstream
version number, as suggested in PR 47418 a year ago. Also make sure
the localization packages claim they belong to the right corresponding
firefox packages, as a number of them were wrong.

(dholland)

2013-12-29 23:26:34 UTC MAIN commitmail json YAML

Note update of textproc/ruby-nokogiri package to 1.5.11.

(taca)

2013-12-29 23:26:04 UTC MAIN commitmail json YAML

Update ruby-nokogiri to 1.5.11, fixing security problem of CVE-2013-6461.
This problem is in JRuby only, but JRuby exists in pkgsrc-wip.

=== 1.5.11 / 2013-12-14

* Bugfixes

  * (JRuby) Fix out of memory bug when certain invalid documents are parsed.
  * (JRuby) Fix regression of billion-laughs vulnerability. #586

(taca)

2013-12-29 22:29:35 UTC MAIN commitmail json YAML

Remove obsolete MirBSD workaround, fix build.

(bsiegert)

2013-12-29 21:21:48 UTC pkgsrc-2013Q3 commitmail json YAML

2013-12-29 21:21:36 UTC pkgsrc-2013Q3 commitmail json YAML

Pullup ticket #4278 - requested by pettai
security/py-denyhosts: security patch

Revisions pulled up:
- security/py-denyhosts/Makefile                                1.9
- security/py-denyhosts/distinfo                                1.4-1.5
- security/py-denyhosts/patches/patch-af                        1.2

---
  Module Name:    pkgsrc
  Committed By:  pettai
  Date:          Thu Dec 26 23:30:41 UTC 2013

  Modified Files:
          pkgsrc/security/py-denyhosts: Makefile distinfo
          pkgsrc/security/py-denyhosts/patches: patch-af

  Log Message:
  Fix for CVE-2013-6890

---
  Module Name:    pkgsrc
  Committed By:  pettai
  Date:          Sun Dec 29 20:27:55 UTC 2013

  Modified Files:
          pkgsrc/security/py-denyhosts: distinfo

  Log Message:
  Fixed broken checksum

(tron)

2013-12-29 20:27:55 UTC MAIN commitmail json YAML

2013-12-29 19:26:36 UTC MAIN commitmail json YAML

Fix build under Mac OS X.

(tron)

2013-12-29 19:19:03 UTC MAIN commitmail json YAML

2013-12-29 19:16:53 UTC MAIN commitmail json YAML

lang/gcc-aux: Fix build for pure NetBSD/clang amd64 system

A new bootstrap was necesssary to allow gcc-aux to build on a NetBSD
system that has no gcc files on the system.  Other changes include:

* Remove support for NetBSD 5.99
* Remove defunct mirror site
* Restore action install stripped binaries (gcc bug fixed)

(marino)

2013-12-29 16:28:15 UTC MAIN commitmail json YAML

No -fvisibility=hidden on MirBSD.

Fixes the build of graphics/glu.

(bsiegert)

2013-12-29 13:28:10 UTC MAIN commitmail json YAML

Updated graphics/AfterShotPro to 1.1.0.30

(wiz)

2013-12-29 13:27:56 UTC MAIN commitmail json YAML

Update to 1.1.0.30. Changes not found, but that's the currently available
distfile.

(wiz)

2013-12-29 12:21:19 UTC MAIN commitmail json YAML

Note update of textproc/ruby-will-paginate package to 3.0.5.

(taca)

2013-12-29 12:20:41 UTC MAIN commitmail json YAML

Update ruby-will-paginate to 3.0.5, fixing security problem of CVE-2013-6459.

* important security fix that prevents XSS in generated pagination links
* always call html_safe if available on will_paginate result
* exclude reorder for count queries

(taca)

2013-12-29 12:11:18 UTC MAIN commitmail json YAML

Note update of www/squid3 package to 3.4.1nb3.

(taca)

2013-12-29 12:10:45 UTC MAIN commitmail json YAML

Explicitly disable CPU optimized instruction.  (--enable-arch-native is
default.)  Enabling CPU optimized instruction gains some performance, but
it lost portability of the binary package.

Bump PKGREVISION.

(taca)

2013-12-29 06:49:47 UTC MAIN commitmail json YAML

Updated devel/ruby-msgpack to 0.5.8

(obache)

2013-12-29 06:49:30 UTC MAIN commitmail json YAML

Update ruby-msgpack to 0.5.8.

2013-12-14 version 0.5.8:

* Fixed compatibility with Ruby 2.1.0
* Added :symbolize_keys option to MessagePack.load and Unpacker#initialize

(obache)

2013-12-29 06:46:24 UTC MAIN commitmail json YAML

Updated inputmethod/ibus-input-pad to 1.4.2

(obache)

2013-12-29 06:45:14 UTC MAIN commitmail json YAML

Update ibus-input-pad to 1.4.2.

* Removed shared_type tag in input-pad.xml, which is not upstreamed.

(obache)

2013-12-29 05:16:06 UTC MAIN commitmail json YAML

+xscrnsaver - one package in HEAD using this option now

(rodent)

2013-12-28 23:04:36 UTC MAIN commitmail json YAML

Remove "-thread" related part of the last change. This is not the
correct fix.

(tron)

2013-12-28 23:03:40 UTC MAIN commitmail json YAML

Remove last change. This is not the correct way to fix this.

(tron)

2013-12-28 22:44:23 UTC MAIN commitmail json YAML

2013-12-28 20:23:44 UTC MAIN commitmail json YAML

Fix build with GCC (4.8?) under Solaris.

This kind of build problem should probably be handled centrally in
"pkgsrc/mk/wrapper/transform-gcc". But I'm not sure how to check
for the platform in that file.

(tron)

2013-12-28 19:50:34 UTC MAIN commitmail json YAML

For PKG_OPTIONS.squid = -ssl, do not PLIST files that will not be
installed.

(hauke)

2013-12-28 19:19:12 UTC MAIN commitmail json YAML

Updated emulators/tme to 0.8nb23

(martin)

2013-12-28 19:16:48 UTC MAIN commitmail json YAML

Add patches from Matt Fredette to (a) avoid a diagnostic assertion when
emulating m68k read-modify-write cycles in debug versions and (b) fix
emulation of fmovl to the fpcr register with an immediate source value.

(martin)

2013-12-28 17:18:25 UTC MAIN commitmail json YAML

2013-12-28 16:47:22 UTC MAIN commitmail json YAML

Updated pkgtools/url2pkg to 2.18

(ryoon)

2013-12-28 16:46:30 UTC MAIN commitmail json YAML

Update to 2.18

* Partial fix for PR pkg/47335
** Define some variables
** Define empty function neatvalue
** Generate Makefile before custom MakeMaker.pm invocation
  to avoid no Makefile error.

(ryoon)

2013-12-28 16:26:06 UTC MAIN commitmail json YAML

Fix build under Solaris with GCC.

(tron)

2013-12-28 14:41:55 UTC MAIN commitmail json YAML

Fix build with GCC (4.8?) under Solaris.

(tron)

2013-12-28 11:03:26 UTC MAIN commitmail json YAML

Moved pre-configure to Makefile.common so it will get applied by both
net/mldonkey and net/mldonkey-gui. Fix for PR pkg/48461.

(jaapb)

2013-12-28 09:16:20 UTC MAIN commitmail json YAML

Update MASTER_SITES.

(obache)

2013-12-28 09:11:24 UTC MAIN commitmail json YAML

Don't use -reduce-relocations on SunOS, it is not supported.

(jperkin)

2013-12-28 09:02:52 UTC MAIN commitmail json YAML

Updated inputmethod/ibus-table to 1.5.0nb1

(obache)

2013-12-28 09:02:31 UTC MAIN commitmail json YAML

2013-12-28 08:52:17 UTC MAIN commitmail json YAML

int64_t is not used anywhere, and its redifinition produce only troubles
in system headers.

(obache)

2013-12-28 07:03:11 UTC MAIN commitmail json YAML

2013-12-28 05:00:52 UTC MAIN commitmail json YAML

Updated inputmethod/ibus-chewing to 1.4.4

(obache)

2013-12-28 04:59:36 UTC MAIN commitmail json YAML

Update ibus-chewing to 1.4.4.

PRJ_VER=1.4.4
SUMMARY=Fixed RHBZ 842856, 1027030; Added translations:fr_FR, ja_JP, ko_KR
REDHAT_BUGZILLA=842856, 1027030
[Changes]
- Resolves Bug 842856 - ibus-chewing 1.4.3-1 not built with $RPM_OPT_FLAGS
- Resolves Bug 1027030 - CVE-2013-4509 ibus-chewing: ibus: visible
  password entry flaw [fedora-all]
  Thanks czchen for the GitHub pull request 39.
- Added translations: fr_FR, ja_JP, ko_KR
- Adopt cmake-fedora-1.2.0

(obache)

2013-12-28 02:54:13 UTC MAIN commitmail json YAML

Updated graphics/py-Pillow to 2.2.1nb2

(obache)

2013-12-28 02:53:47 UTC MAIN commitmail json YAML

2013-12-28 01:16:02 UTC MAIN commitmail json YAML

fonts/ghostscript-cidfonts/Makefile now DEPENDS+= print/ghostscript only
and NOT including this file, thanks dholland@.

(mef)

2013-12-27 22:55:45 UTC MAIN commitmail json YAML

Updated www/php-ja-wordpress to 3.8

(ryoon)

2013-12-27 22:55:20 UTC MAIN commitmail json YAML

Update to 3.8

Changelog:
For WordPress 3.8 ja
* Update WP Multibyte Patch to 1.9

For WordPress 3.8
Highlights

    Introduces a new, modern admin design
        A fresh, uncluttered design
        Clean typography with Open Sans
        Superior contrast and large, comfortable type
        Responsive interfaces throughout
        Refined, theme management
        Smoother, click-to-add widget management

    New Default Theme - Twenty Fourteen
        Easily create a responsive magazine website with a sleek, modern design.
        Feature your favorite homepage content in either a grid or a slider.
        Use the three widget areas to customize your website, and change your content's layout with a full-width page template and a contributor page to show off your authors.

    For Developers
        External Libraries have been updated.
        Better RTL support

What's New
General

    Replace PNG-based plugins ratings stars with Dashicons for performance gains
    Improved help tab text in various screens
    Clicking "Check Again" on the Updates screen now provides more immediate feedback

Dashboard

    Consolidate several Dashboard widgets to improve readability
    Replace the 'Right Now' widget with the new and improved 'At a Glance' widget

Appearance

    Introduce 8 new admin color schemes
    Improved readability throughout using Open Sans typeface (where supported)
    Responsive Toolbar for smaller-screen devices
    Leverage Dashicons instead of icon sprites for crisper experience on all resolutions
    Big RTL improvements throughout
    Make the dashboard more usable on any size device with responsive all the things
    Improve the login screen experience for Internet Explorer 8 users
    Improve Quick Edit experience for non-English users
    Improve the Menus experience for mobile users

Themes

    New Default Theme -- Twenty Fourteen
    Make it possible to check for any post format assigned to a post with has_post_format()
    Better custom background theme support defaults, can now specify 'default-repeat', 'default-position-x', and 'default-attachment' arguments for background images.
    Tags for width changed to layout: responsive-layout, fluid-layout, and fixed-layout
    New tag: accessibility-ready to denote a theme is aware of accessibility best practices such as color contrast, keyboard navigation, and form/link focus. See WP theme accessibility guidelines.
    Theme screenshots' size have increased from 600x450 to 880x    660.

Widgets

    New click-to-add interface for adding widgets to sidebars
    Improved interface for devices of all resolutions
    Better drag-and-drop experience

Accessibility

    Make list table row actions keyboard accessible
    Improve color contrast throughout the admin

Multisite

    Improved performance when deleting users in Multisite

Under The Hood
General

    Heartbeat performance and API improvements
    A $taxonomy argument was added to each of the adjacent post functions.
    Define $is_nginx in vars.php
    Apply capital_P_dangit() to the wp_title filter
    Make sure ajaxurl is defined in the Customizer
    validate_active_plugins() now checks the manage_network_plugins capability instead of is_super_admin()
    Allow passing false for the meta_box_cb argument in register_taxonomy() to turn off the meta box display entirely
    Make it easier to target video shortcodes by adding a wp-video class to the parent container
    Add CSSMin, SASS, CSSJanus, and jsHint to build tools for core development

Bug Fixes

    Fix bug where top-level categories were only redirecting if they had no children
    Fix bug in wp_get_object_terms() where returned were strings not integers
    Fix a bug where passing a null value to meta_query resulted in wonkiness with the comparison operator
    Fix "'wp_signups' already exists for query" error after updating a Multisite network
    Fix bug in get_bookmarks() caused by missing parentheses
    Fix comment_notification_recipients filter behavior so that it is still respected even on comments left by the post author
    Fix a date comparison error in dashboard_relative_date()
    Fix keyboard accessibility for row actions in list tables.
    Fix no-js and accessibility modes in in the Widgets screen
    Fix a bug where menus could still be assigned to a non-existent theme location
    Silence jQuery Migrate errors in the General settings page

Multisite
Classes

    Introduce WP_Screen::remove_option()
    Introduce WP_Screen::remove_options()
    Introduce WP_Screen::get_options()

Functions

    Introduce wp_dashboard_quick_press()
    Introduce wp_dashboard_site_activity()
    Introduce wp_dashboard_recent_posts()
    Introduce wp_dashboard_recent_comments()
    Introduce wp_dashboard_primary_output()
    Introduce wp_heartbeat_set_suspension()
    Introduce wp_star_rating()
    Introduce get_theme_update_available()
    Introduce wp_prepare_themes_for_js()

Actions & Filters
Actions

    Introduce automatic_updates_complete

Filters

    Introduce automatic_updates_debug_email
    Introduce wp_prepare_themes_for_js

External Libraries

    Add a copyright notice to zxcvbn (password strength meter) script

Deprecated

    screen_icon()
    get_screen_icon()
    wp_dashboard_incoming_links_output()
    wp_dashboard_secondary_output()
    wp_dashboard_incoming_links()
    wp_dashboard_incoming_links_control()
    wp_dashboard_plugins()
    wp_dashboard_primary_control()
    wp_dashboard_recent_comments_control()
    wp_dashboard_secondary()
    wp_dashboard_secondary_control()
    no_update_actions()

Miscellaneous

    Many unused images were removed from core. See the full list

(ryoon)

2013-12-27 16:46:12 UTC MAIN commitmail json YAML

2013-12-27 16:42:46 UTC MAIN commitmail json YAML

Drop nonfunctional cups option, following upstream.

Upstream removed cups support and created a new "cups-filter" package
instead.  Since then, building ghostscript-agpl with the cups option
has failed.  This commit removes the cups option, and should result in
zero changes to packages built without the cups option, and hence does
not PKGREVISION++.

There is still some cups configure code, which is forced off (as it
was without the option).  It's not clear if this configure code should
also be removed (by upstream), or if it's a separate bit of cups
functionality.  Addressing this issue and adding a cups-filter package
is left for future work, after the branch.

(gdt)

2013-12-27 15:57:08 UTC MAIN commitmail json YAML

Updated www/php-owncloud to 6.0.0a

(ryoon)

2013-12-27 15:56:38 UTC MAIN commitmail json YAML

Update to 6.0.0a

* Switch to 6 branch
* Replace interpreters with REPLACE_*

Changelog:
Version 6.0.0a Dec 14th 2013

    Remove wrong warnings from logfile
    Fix LDAP authentication
    Fix LDAP configuration
    Fix Share dialog
    Fix migration under certain conditions
    Fix database encoding for old PHP versions
    Fix select all checkbox
    Fix migration with lucene search enabled
    Fix migration for postgresql

Version 6.0.0 Dec 11th 2013

    User Avatars
    Previews in files app and other places
    Updated design, less clutter and more whitespace
    Public gallery sharing
    Activities
    Better file conflict handling dialog
    Improved public App API
    Sharing API
    Example Files
    Share Email Notifications
    New Doctrine based database layer
    Plural translations
    Refactored OC.dialogs (both code and design wise)
    Priorize often used languages in personal-settings language selection
    Update jquery to 1.10.0 and add jquery-migrate 1.2.1
    Show a summary as the last filelist entry
    Improve app-management (more verbose error-messages)
    Show 窶弄ore apps窶� link to app administration directly in app navigation
    Templates for newly created files
    Add MB indicator to size column
    Google Drive external storage uses a new library
    New icons for shared and external folders
    File uploads conflicts dialog
    Possibility to prepopulate a new users home with a skeleton
    Public upload with encryption enabled
    Users now can decrypt the files again if their encryption app was enabled
    Many quota related fixes
    Total used space (with quota) now only counts user窶冱 own files
    Many external storage fixes, improved performance
    Improved file navigation performance by using Ajax calls (no full page reload for each folder)
    The file owner can now also restore deleted shared files
    New version drop-down with previews and the ability to downloading versions directly

(ryoon)

2013-12-27 12:47:07 UTC MAIN commitmail json YAML

The "Venus" operator for overload-ing is '0+', not '+0'. Quick fix;
upstream versions 2.106 and later have this already.

(is)

2013-12-27 11:08:04 UTC MAIN commitmail json YAML

also requires py-Tk (ride previous commit)

(dholland)

2013-12-27 10:03:18 UTC MAIN commitmail json YAML

2013-12-27 10:02:35 UTC MAIN commitmail json YAML

Make this build properly with native X: it doesn't find freetype in
/usr/X11R7 on its own, and then the PLIST doesn't match, so pass in
${BUILDLINK_PREFIX.freetype2} explicitly.

Also, because if you have tk installed it finds it and then fails
because it isn't buildlinked, pull in tk and add the tk library to the
PLIST.

PKGREVISION -> 1

(dholland)

2013-12-27 08:32:32 UTC MAIN commitmail json YAML

Updated converters/skf to 1.99.7

(obache)

2013-12-27 08:32:05 UTC MAIN commitmail json YAML

Update skf to 1.99.7.

skf (1.99.7)

  * ruby 2.1.0 support
  * fix bug in MIME encoding under early_mime_out mode
  * further nkf-compatibility
  * trim some terminal sequence sweep behaviors
  * UnicodeData undated to 6.3
  * fix nkf compatible option --cp932 behavior
  * fix some bugs

(obache)

2013-12-27 06:39:25 UTC MAIN commitmail json YAML

2013-12-27 05:56:49 UTC MAIN commitmail json YAML

Upstream made some changes without changing the version number.

Deal with that by bumping PKGREVISION, and using a DIST_SUBDIR.  The
DIST_SUBDIR name contains the date when upstream made the change, in
case they do it again.

The changes are small bug fixes (verified by comparing the
unpacked files).  I will also ask upstream not to do this again.

(apb)

2013-12-27 03:12:43 UTC MAIN commitmail json YAML

Not MAKE_JOBS_SAFE; with 6 jobs it tries to use libmlview.la before
creating it.

(dholland)

2013-12-27 03:06:44 UTC MAIN commitmail json YAML

This has been using SPECIAL_PERMS since 2009 and exhibits no signs of
needing NOT_FOR_UNPRIVILEGED any more.

XXX: In fact, most of the permission settings seem bogus; and also it
XXX: shouldn't be using /var/adm.

(dholland)

2013-12-27 02:21:40 UTC MAIN commitmail json YAML

+ avr-binutils-2.24 [wip]
+ fldigi-3.21.77 [wip]
+ gtkwave-3.3.53 [wip]
+ lldpd-0.7.7 [wip, perl module path]
+ nios2-binutils-2.24 [wip]
+ tc-hasida-table-0.8 [wip]
+ verilog-0.9.7 [wip]
+ verilog-current-20130827 [wip]

(mef)

2013-12-27 01:59:43 UTC MAIN commitmail json YAML

Update plist for latest python33; it seems that some stuff called
"venv" is copied wholesale from the python33 install, I guess via
the wonders of scons, and one of the files went away in the last
python33 update.

(dholland)

2013-12-27 00:11:38 UTC MAIN commitmail json YAML

Add Solaris 10 i386 and x86_64 as a supported platforms for "sun-jdk16".
This allows "pkgsrc" to detect the Java 1.6 bundled with recent
Solaris 10 update releases.

Change during freeze approved by Greg Troxel.

(tron)

2013-12-26 23:30:41 UTC MAIN commitmail json YAML

2013-12-26 19:19:32 UTC MAIN commitmail json YAML

2013-12-26 15:59:27 UTC MAIN commitmail json YAML

2013-12-26 15:59:20 UTC MAIN commitmail json YAML

2013-12-26 14:15:22 UTC MAIN commitmail json YAML

Updated editors/OmegaT to 3.0.8

(ryoon)

2013-12-26 14:14:56 UTC MAIN commitmail json YAML

Update to 3.0.8

Changelog:
----------------------------------------------------------------------
OmegaT 3.0.8
----------------------------------------------------------------------
  10 Enhancements
  4 Bug fixes
  1 Localisation update
----------------------------------------------------------------------
3.0.8 vs. 3.0.7

  Implemented requests:

  - Show XLIFF trans-unit note as a comment
  https://sourceforge.net/p/omegat/feature-requests/803/

  - Feedback on console for number of glossary entries fetched
  https://sourceforge.net/p/omegat/feature-requests/750/

  Other enhancements:

  - New debugging information about team projects available in the logs
(if org.omegat.level=FINEST is set in logger.properties)

  - A graphical version of the script check_same_segments.groovy was
added: show_same_segments.groovy

  - The ${diff} display is now "optimized" by concatenating consecutive
inserts or deletes separated only by whitespace. This makes the diff more
readable.

  - In addition to ${diff}, there is also now ${diffReversed} in the
Fuzzy Matches pane display options

  For the two points above, see
  - Missing part from matches not highlighted
  https://sourceforge.net/p/omegat/bugs/264/
and
  - Show where text has been added in match window
  https://sourceforge.net/p/omegat/feature-requests/183/

  - New option in the XLIFF filter: force shortcut to "f" for
<it pos="end"> tags

  - A new QA rule was added to check_rules.groovy. It will be triggered
if the target segment ends with a different punctuation sign (.!?;:) from
the one used in the source segment

  - In the XLIFF filter, segments containing only protected text
(e.g., <m0>Protected text only</m0>) now appear in the Editor

  - The background colour used (red) when a match is inserted from an "mt"
folder was hard to read. It was changed to "salmon red".

  Bug fixes:

  - Missing orion jar in lib folder
  https://sourceforge.net/p/omegat/bugs/639/

  - Not going to right note in projects containing several files
  https://sourceforge.net/p/omegat/bugs/644/

  - Hyperlinks in PowerPoint cannot be translated
  https://sourceforge.net/p/omegat/bugs/600/

  - Error: java.lang.IndexOutOfBoundsException on tag validation with custom tags
  https://sourceforge.net/p/omegat/bugs/638/

  Localisation updates:

  - Italian localisation updated to 3.0.7 (UI, documentation)

----------------------------------------------------------------------
OmegaT 3.0.7
----------------------------------------------------------------------
  7 Enhancements
  2 Bug fixes
  1 Localisation update
----------------------------------------------------------------------
3.0.7 vs. 3.0.6

  Implemented requests:

  - Keep relative addressing in *.project when possible
  https://sourceforge.net/p/omegat/feature-requests/734/

  - Validate tags: constrain to file
  https://sourceforge.net/p/omegat/feature-requests/669/

  - List number of files in project
  https://sourceforge.net/p/omegat/feature-requests/912/

  Other enhancements:

  - The auto-text file type is displayed in the file selector.

  - In the Editor, the tooltip is now the same as the title

  - There's a new report in Tools: Match Statistics per Files
It gives the same information as the match statistics for every file,
plus the total at the end, with the repetitions being split in two
lines:
"Repetitions within this file" lists repetitions for which the first
occurence is in this file.
"Repetitions from other files" list repetitions for which the first
occurence is in a previous file in the list.

  - When Ctrl+F (Cmd+F) is used in the search window, the focus goes
back to the search field

  Bug fixes:

  - After creating a new project, the message "Loading TMX files..."
remained displayed at the bottom of the window

  - In external TMXs, beginning <it> tags had a trailing '/' if
if the option "Use XML for standalone tags" was set. This was wrong
as beginning <it> tags are not standalone tags, but opening tags.

  Localisation updates:

  - Japanese localisation updated to 3.0.7 (UI, documentation)

----------------------------------------------------------------------
OmegaT 3.0.6
----------------------------------------------------------------------
  9 Enhancements
  3 Bug fixes
  2 Localisation updates
----------------------------------------------------------------------
3.0.6 vs. 3.0.5

  Implemented requests:

  - Add Hunspell-based tokenizer
  https://sourceforge.net/p/omegat/feature-requests/901/

  - Reduce automatically size of Project Properties and File Filter dialogs when they don't fit on screen
  https://sourceforge.net/p/omegat/feature-requests/899/

  - Add "Totals" row to match statistics
  https://sourceforge.net/p/omegat/feature-requests/592/

  - Creating Current Translated Document
  https://sourceforge.net/p/omegat/feature-requests/880/

  - Standardize on type of numbering in list for fuzzy matches
  https://sourceforge.net/p/omegat/feature-requests/897/

  Other enhancements:

  - More information is logged when plugins are loaded

  - Protected text (from the XLIFF filter currently) remains protected even
when Remove Tags is used

  - The speed of parsing source documents was improved

  - Better detection of untranslated entries for Android filter

  Bug fixes:

  - Ignore content of header in OmegaT's XLIFF filter
  https://sourceforge.net/p/omegat/bugs/625/

  - OmT saves XML with LF even if source file is CRLF
  https://sourceforge.net/p/omegat/bugs/326/

  - Filelist not sorted during creating translated files
  https://sourceforge.net/p/omegat/bugs/619/

  Localisation updates:

  - Italian localisation updated to 3.0.5 (UI, Documentation)
  - Japanese localisation updated to 3.0.6 (UI, Documentation)

(ryoon)

2013-12-26 13:22:13 UTC MAIN commitmail json YAML

Updated www/seamonkey-l10n to 2.23

(ryoon)

2013-12-26 13:21:32 UTC MAIN commitmail json YAML

2013-12-26 13:18:10 UTC MAIN commitmail json YAML

Updated www/seamonkey to 2.23

(ryoon)

2013-12-26 13:17:38 UTC MAIN commitmail json YAML

Update to 2.23

Changelog:
SeaMonkey-specific changes

    Download progress is now shown in the Mac OS X app dock icon.
    EXIF orientation is now being used when displaying attached images in MailNews.
    "This folder is being processed... to get messages." alerts on active MailNews folders now identify the account or folder.
    MailNews notifications have a new look.
    See the changes page for a more complete overview.

Mozilla platform changes

    All plugins, with the exception of recent Flash plugins, now default to click-to-play.
    The password manager now supports script-generated password fields.
    Support for H.264 on Linux is now available if the appropriate GStreamer plugins are installed.
    Support for MP3 decoding on Windows XP has been added, completing MP3 support across Windows OS versions.
    The CSP implementation now supports multiple policies, including the case of both an enforced and Report-Only policy, per the spec.
    There is no longer a prompt when websites use appcache.
    Support for the CSS image orientation property has been added.
    IndexedDB can now be used as an "optimistic" storage area so it does not require any prompts and data is stored in a pool with LRU eviction policy, in short temporary storage.
    When displaying a standalone images, the EXIF orientation information contained within the JPEG image is now matched (bug 298619).
    Page load times have been improved due to no longer decoding images that are not visible (bug 847223).
    Support for the AudioToolbox MP3 backend has been added on Mac OS X (bug 914479).
    Fixed several stability issues.

Fixed in SeaMonkey 2.23
MFSA 2013-117 Mis-issued ANSSI/DCSSI certificate
MFSA 2013-116 JPEG information leak
MFSA 2013-115 GetElementIC typed array stubs can be generated outside observed typesets
MFSA 2013-114 Use-after-free in synthetic mouse movement
MFSA 2013-113 Trust settings for built-in roots ignored during EV certificate validation
MFSA 2013-112 Linux clipboard information disclosure though selection paste
MFSA 2013-111 Segmentation violation when replacing ordered list elements
MFSA 2013-110 Potential overflow in JavaScript binary search algorithms
MFSA 2013-109 Use-after-free during Table Editing
MFSA 2013-108 Use-after-free in event listeners
MFSA 2013-107 Sandbox restrictions not applied to nested object elements
MFSA 2013-106 Character encoding cross-origin XSS attack
MFSA 2013-104 Miscellaneous memory safety hazards (rv:26.0 / rv:24.2)

(ryoon)

2013-12-26 13:12:06 UTC MAIN commitmail json YAML

Use absolute path for seamonkey and firefox.

(ryoon)

2013-12-26 12:03:23 UTC MAIN commitmail json YAML

Moved call to autotools to Makefile.common in mldonkey. In response to
PR pkg/48461.

(jaapb)

2013-12-26 12:02:40 UTC MAIN commitmail json YAML

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.

(jaapb)

2013-12-25 22:04:30 UTC MAIN commitmail json YAML

Add Solaris 10 SPARC as a support platform for "sun-jdk16". This allows
"pkgsrc" to detect the Java 1.6 bundled with Solaris 10. There are more
missing combinations e.g. Solaris 10 i386 but they would need testing.

Change during freeze approved by Thomas Klausner.

(tron)

2013-12-25 16:33:28 UTC MAIN commitmail json YAML

Updated x11/mlterm to 3.3.2

(tsutsui)

2013-12-25 16:32:32 UTC MAIN commitmail json YAML

Update mlterm to 3.3.2. (leaf package update, ok'ed wiz@)

pkgsrc changes:
- remove post-3.3.1 patches
- pull post-3.3.2 fixes for mlterm-fb from upstream:
  - 4d974f7: fix mlterm-fb scroll on >=8bpp framebuffers
  - 0b2987a: fix palette handling on 4bpp framebuffers

Changes from doc/en/ReleaseNote:

ver 3.3.2
* Support 4bpp framebuffer on NetBSD/luna68k.
* Desynchronize ssh negotiation on cygwin or mingw.
* "inner_border" option accepts "[horizontal border],[vertical border]" format value.
* Add "leftward_double_drawing" option which embolds medium fonts by drawing doubly at
  1 pixel leftward instead of rightward.
* Add vte_terminal_set_color_*_rgba() functions to libvte compatible library.
* Bug fixes:
  Fix memory leak when opening pty fails on win32gdi.
  Fix the bug which disabled to clear hidden input method window it if large
  value is specified for --border option.
  Fix the bug which disabled to paste UTF-8 string.
  Bitbucket pull request #1 (Thanks to Hayaki Saito san)
  Fix the bug which causes segfault in pasting text via win32 clipboard from x11
  applications over ssh x11 forwarding
  Fix segfault caused by zero column characters like 0x200e.

(tsutsui)

2013-12-25 14:59:10 UTC MAIN commitmail json YAML

2013-12-25 12:12:36 UTC MAIN commitmail json YAML

PR pkg/48479 Fix problem of:
ghostscript-cidfonts doesn't switch correctly ghostscript-agpl and -gpl
Thanks wiz@.

(mef)

2013-12-25 11:47:09 UTC MAIN commitmail json YAML

2013-12-25 11:04:28 UTC MAIN commitmail json YAML

Fix build with SunStudio C Compiler under Solaris 10.

(tron)

2013-12-25 02:26:48 UTC MAIN commitmail json YAML

Adjust PLIST only when following option is active.
  PKG_OPTIONS.ghostscript+=disable-compile-inits
No PKGREVISON++ (not packaged or binaries'd be the same before patch and after).
Discussed at thread starting
  http://mail-index.netbsd.org/pkgsrc-users/2013/12/23/msg019089.html

(mef)

2013-12-25 01:29:07 UTC MAIN commitmail json YAML

Corrected typo in COMMENT.

(rodent)

2013-12-24 15:29:44 UTC MAIN commitmail json YAML

Missing documentation update for the new default behaviour of "FETCH_USING".

(tron)

2013-12-24 15:21:38 UTC MAIN commitmail json YAML

Note update of the "xchat" package to version 2.8.8nb21.

(tron)

2013-12-24 15:21:24 UTC MAIN commitmail json YAML

Explicitely enable XFT support unless GTK+ was compiled without X11 support
under Mac OS X. This fixes the text output under Mac OS X if GTK+ was
actually compiled with X11 support.

(tron)

2013-12-24 15:00:44 UTC MAIN commitmail json YAML

>From https://github.com/erlang/otp/pull/46#issuecomment-21719585

"Since b29ecbd (OTP-10418, R15B03) Erlang does not compile anymore with
old versions of GCC that do not have atomic ops builtins on platforms
where there is no native ethread implementation (e.g. ARM): (...)

Please note however that I will be merging this branch as well,
which will mean that you have to explicitly tell configure that
you intend to use the fallback atomic operations though
--disable-native-ethr-impls or --disable-smp-require-native-atomics."

Translated: On NetBSD-5.1 (with gcc-4.1.3) the erlang package
didn't compile because of

>  ../include/internal/gcc/ethr_membar.h:49:4: error:
> #error "No __sync_val_compare_and_swap"

Adding the abovementioned option --disable-native-ethr-impls make the
Erlang runtime system use the original (now fallback) code. This should
maybe be an pkg option, but for now this has to do.

(is)

2013-12-24 11:22:42 UTC MAIN commitmail json YAML

Updated net/exabgp to 3.2.19

(pettai)

2013-12-24 11:21:55 UTC MAIN commitmail json YAML

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

(pettai)

2013-12-24 05:57:44 UTC MAIN commitmail json YAML

To get a working compiler on SunOS, a number of hardcoded gcc/linker
related paths are replaced.
http://article.gmane.org/gmane.comp.compilers.llvm.devel/63317
ok'd by wiz@

(richard)

2013-12-24 03:26:56 UTC MAIN commitmail json YAML

Note update of devel/transifex-client package to 0.10.

(taca)

2013-12-24 03:26:19 UTC MAIN commitmail json YAML

Update transifex-client to 0.10.  This is a leaf package and a warning mail
would be sent from Transifex when using old transifex-client.

Here is some of changes from commit log.

* Use urllib3 for the API call; it allows to have proper SSL certificate
  verification (see CVE-2013-2073) as well as drop a lot of code.
* Add --psuedo option.

(taca)

2013-12-23 23:58:35 UTC MAIN commitmail json YAML

Add cups-filters to suggested new package list.

(gdt)

2013-12-23 11:57:07 UTC MAIN commitmail json YAML

2013-12-23 03:15:57 UTC MAIN commitmail json YAML

Updated comms/asterisk to 11.6.1

(jnemeth)

2013-12-23 02:51:57 UTC MAIN commitmail json YAML

fix a typo in last change.

(obache)

2013-12-23 01:34:03 UTC MAIN commitmail json YAML

Update to Asterisk 11.6.1: this is a security fix update to fix
AST-2013-006 and AST-2013-007, and a minor bug fix update.

pkgsrc change: disable SRTP on NetBSD as it doesn't link

---- 11.6.1 ----

The Asterisk Development Team has announced security releases for Certified
Asterisk 1.8.15, 11.2, and Asterisk 1.8, 10, and 11. The available security
releases are released as versions 1.8.15-cert4, 11.2-cert3, 1.8.24.1, 10.12.4,
10.12.4-digiumphones, and 11.6.1.

The release of these versions resolve the following issues:

* A buffer overflow when receiving odd length 16 bit messages in app_sms. An
  infinite loop could occur which would overwrite memory when a message is
  received into the unpacksms16() function and the length of the message is an
  odd number of bytes.

* Prevent permissions escalation in the Asterisk Manager Interface. Asterisk
  now marks certain individual dialplan functions as 'dangerous', which will
  inhibit their execution from external sources.

  A 'dangerous' function is one which results in a privilege escalation. For
  example, if one were to read the channel variable SHELL(rm -rf /) Bad
  Things(TM) could happen; even if the external source has only read
  permissions.

  Execution from external sources may be enabled by setting 'live_dangerously'
  to 'yes' in the [options] section of asterisk.conf. Although doing so is not
  recommended.

These issues and their resolutions are described in the security advisories.

For more information about the details of these vulnerabilities, please read
security advisories AST-2013-006 and AST-2013-007, which were
released at the same time as this announcement.

For a full list of changes in the current releases, please see the ChangeLogs:

http://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-11.6.1

The security advisories are available at:

* http://downloads.asterisk.org/pub/security/AST-2013-006.pdf
* http://downloads.asterisk.org/pub/security/AST-2013-007.pdf

Thank you for your continued support of Asterisk!

----- 11.6.0 -----

The Asterisk Development Team has announced the release of Asterisk 11.6.0.

The release of Asterisk 11.6.0 resolves several issues reported by the
community and would have not been possible without your participation.
Thank you!

The following is a sample of the issues resolved in this release:

* --- Confbridge: empty conference not being torn down
  (Closes issue ASTERISK-21859. Reported by Chris Gentle)

* --- Let Queue wrap up time influence member availability
  (Closes issue ASTERISK-22189. Reported by Tony Lewis)

* --- Fix a longstanding issue with MFC-R2 configuration that
      prevented users
  (Closes issue ASTERISK-21117. Reported by Rafael Angulo)

* --- chan_iax2: Fix saving the wrong expiry time in astdb.
  (Closes issue ASTERISK-22504. Reported by Stefan Wachtler)

* --- Fix segfault for certain invalid WebSocket input.
  (Closes issue ASTERISK-21825. Reported by Alfred Farrugia)

For a full list of changes in this release, please see the ChangeLog:

http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-11.6.0

Thank you for your continued support of Asterisk!

(jnemeth)

2013-12-22 21:32:36 UTC MAIN commitmail json YAML

Fix build on NetBSD-5* using a patch from John D. Baker in PR 48469.

(wiz)

2013-12-22 19:47:41 UTC MAIN commitmail json YAML

2013-12-22 15:29:20 UTC MAIN commitmail json YAML

fvwm no longer requires xpmroot, so remove xpmroot.

(dholland)

2013-12-22 15:23:48 UTC MAIN commitmail json YAML

+ bup-0.25 [wiz], calibre-1.16, coreutils-8.22, curl-7.34.0, enlightenment-0.18,
  glade-3.16.1, glproto-1.4.17, gob2-2.0.20, gupnp-0.20.9,
  hicolor-icon-theme-0.13, itstool-2.0.2, libgcrypt-1.6.0,
  libgdata-0.14.1, libzip-0.11.2 [wiz], meld-1.8.3, memcached-1.4.17,
  monit-5.6 [pkg/48465], pcre-8.34, php-tt-rss-1.11, png-1.6.8,
  py-anki2-2.0.20, py-chardet-2.2.1, py-django-1.6.1, py-sphinx-1.2,
  rainbowcrack-1.5, raptor2-2.0.12, ruby-tw-1.0.2 [pkg/48447],
  serf-1.3.3, surfraw-2.2.9, wine-devel-1.7.9 [wait until NetBSD
  gains OSS 4 [kern/46611] or bring OSS 3 support back],
  x264-devel-20131221, xcb-proto-1.10, xscreensaver-5.24,
  yabause-0.9.13.

(wiz)

2013-12-22 13:42:01 UTC MAIN commitmail json YAML

2013-12-22 12:26:35 UTC MAIN commitmail json YAML

belatedly add x11-links update.

(mrg)

2013-12-22 09:56:17 UTC MAIN commitmail json YAML

Note update of the "wireshark" package to version 1.10.5.

(tron)

2013-12-22 09:55:48 UTC MAIN commitmail json YAML

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

(tron)

2013-12-21 19:46:25 UTC MAIN commitmail json YAML

Depend on php-iconv: updater for 1.9 complains:
"PHP support for iconv is required to handle multiple charsets."
Bump PKGREVISION.

(wiz)

2013-12-21 17:29:30 UTC MAIN commitmail json YAML

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.

(tsutsui)

2013-12-21 16:21:20 UTC MAIN commitmail json YAML

2013-12-21 15:24:15 UTC MAIN commitmail json YAML

Update HOMEPAGE, comment out domain-grabbed MASTER_SITES.

(wiz)

2013-12-21 12:40:46 UTC MAIN commitmail json YAML

2013-12-21 12:21:47 UTC MAIN commitmail json YAML

The syntax of the Configure architecture table changed recently. Our
entries for NetbSD architectures without assembler routines and Interix
containing ::::::... need to be updated, else -fPIC ends up in the
object-to-build list of crypto/modes. The correct entry snippet is
stored in ${no_asm}.
make test has run successfully in pkgsrc-current and -2013Q3 on
Shark (arm, asm-less) as well as i386 (with asm routines).

(is)

2013-12-21 11:31:33 UTC MAIN commitmail json YAML

Remove -soname and avoid stripping on Darwin.  Fixes build.

(jperkin)

2013-12-21 11:15:08 UTC MAIN commitmail json YAML

Remove GNU ld options on Darwin too.

(jperkin)

2013-12-21 11:05:23 UTC MAIN commitmail json YAML

2013-12-21 10:51:52 UTC MAIN commitmail json YAML

Disable visibility on Darwin, fixes build.

(jperkin)

2013-12-21 10:42:29 UTC MAIN commitmail json YAML

2013-12-21 08:59:41 UTC MAIN commitmail json YAML

Use PKGPATH instead of PKGNAME for check current package, because later variable
may not be defined yet and broken with old bmake in netbsd5.

(obache)

2013-12-21 02:47:39 UTC MAIN commitmail json YAML

Note update of www/contao32 and www/contao32-example packages to 3.2.3.

(taca)

2013-12-21 02:46:25 UTC MAIN commitmail json YAML

Update contao32 (and contao32-example) to 3.2.3 during the freeze to
fix a few trivial (but nasty) problems of this almost leaf package:
approved by gdt@.

Version 3.2.3 (2013-12-20)
--------------------------

### Fixed
Correctly resize the mediaboxAdvanced in IE11 (see #6504).

### Fixed
Set the correct status header for cached files (see #6585).

### Fixed
Correctly set the empty value depending on the DB field (fixes #6550, #6544).

### Fixed
Prevent saving of detached models (see #6506).

### Fixed
Correctly determine the ACE editor's height (see #6578).

### Fixed
Always fall back to English if a language does not exist (see #6581).

### Fixed
Correctly display repeated events in the event list (see #6555).

### Fixed
Correctly show the available layout columns in the article module (see #6548).

### Fixed
Correctly show the "read more" link in the news list modules (see #6439).

### Updated
Updated html5shiv to version 3.7.0 (see #6543).

### Fixed
Support browsers with both mouse and touch support in the back end (see #6520).

### Fixed
Correctly handle multiple `RadioTable` widgets on the same page (see #6389).

### Fixed
Fixed two issues with the SQL cache (see #6507).

### Fixed
Do not require a redirect page for newsletter channels (see #6521).

### Fixed
Use the related field instead of `id` in the model query builder (see #6540).

(taca)

2013-12-20 22:42:38 UTC MAIN commitmail json YAML

Deal with different library path of ffmpeg010 to fix build.

(joerg)

2013-12-20 17:17:43 UTC MAIN commitmail json YAML

Update netpgpverify and libnetpgpverify to version 20131219

(agc)

2013-12-20 17:16:48 UTC MAIN commitmail json YAML

Update netpgpverify and libnetpgpverify to version 20131219

Fix a call to mp_radix_size to use a pointer to the BIGNUM, not the
address of the pointer, when accessing.  Fixes a problem observed in
other software when using the same code.  The problem was obscured
from the compiler because of the use of __UNCONST().  This makes the
BN_dec2bn() and BN_hex2bn() functions (in libnetpgpverify) work
properly.

OK: wiz

(agc)

2013-12-20 15:50:09 UTC MAIN commitmail json YAML

Note update of www/fengoffice package to 2.4.0.6.

(taca)

2013-12-20 15:49:34 UTC MAIN commitmail json YAML

Update fengoffice to 2.4.0.6.  (This is a leaf package and this update
contains security fix.)

Since 2.4.0.5
- bugfix: Don't send notification when add mail.

Since 2.4.0.4
- bugfix: Deprecated functions usage.
- bugfix: Emtpy trash can was using a deprecated function with performance issues.
- bugfix: Missing parameters in function invocation.

Since 2.4.0.3
- bugfix: can't delete template task, permission denied.

Since 2.4.0.2
- bugfix: langs customer_folder and project_folder.
- bugfix: can't add contacts from mail.
- bugfix: on activity widget move action don't display.
- bugfix: when create user, notifications break mysql transaction.

Since 2.4.0.1
- bugfix: cron process to emtpy trash can does not delete members asociated to contacts.

Since 2.4.0
- bugfix: tab order fix in quick add task;
- bugfix: issue when create a subtask from task view;

Since 2.4-rc
- fetaure: error message improved when upload limit is reached.
- bugfix: on gantt, names of the tasks were not displayed completely.
- bugfix: on gantt, the time estimation for tasks was not displayed correctly.
- bugfix: date custom properties default value does not use user's timezone.
- bugfix: on people widget add user combo is not ordered by name.
- bugfix: on activity widget dates have gmt errors.
- bugfix: general search allways search for empty string.
- bugfix: url files are not saved correctly when url is not absolute.
- bugfix: imap fetch fixed when last email does not exists in server.
- bugfix: only invite automatically the "filtered user" when adding a new event, not when editing an existing one.
- bugfix: variable member_deleted uninitialized in a cycle, maintains the value of previous iterations and fills the log warnings.
- bugfix: don't display group-mailer button if user doesn't have an email account.
- bugfix: allow mail rules for all incoming messages, useful for autoreplies.
- bugfix: the invitations of the events created on google calendar will have the same special ID of the event.

Since 2.4-beta
- feature: alert users if they have mails in the outbox
- feature: contact custom reports - added columns for address, phones, webpages and im.
- feature: display time estimation in time reports when grouping by tasks
- feature: config option to add default permissions to users when creating a member.
- system: upgrade Swift Mailer from version 4.0.6 to 5.0.1, this improves and solves some issues when sending emails with exchange servers
- bugfix: on user login when save timezone don't change the update_on value
- bugfix: solved an issue when editing a repetitive task and changing its previous repetition value
- bugfix: solved when editing a template task can't remove a dimension member
- bugfix: solved using repeating tasks when applying a template
- bugfix: on tasks and timeslots reports, if grouped by task it diplay milestones
- bugfix: allow the creation of templates in the root (View all)
- bugfix: Users are now shown by default in the People tab.
- bugfix: when printing the task list view, tasks now display their progress and estimation
- bugfix: on general search prevent multiple form submit.

Since 2.3.2.1
- feature: templates have been greatly improved: they have changed completely for good!
- feature: remember selection on total task execution time report
- feature: when sending an email, if a word containing attach is found and no attachment if found, it triggers an alert.
- feature: new user config option to set how many members are shown in breadcrumbs
- feature: update plugins after running upgrade from console.
- feature: add root permission when creating executive or superior users.
- feature: contact edit form has been improved

- bugfix: when uploading avatars, if it is .png and its size is smaller than 128x128 the image is not resized
- bugfix: when sending an mail, the sender is now subscribed to it
- bugfix: when adding a file from an email attachment, its now set to be created by the account owner
- bugfix: reporting pagination fixed
- bugfix: custom reports, csv and pdf export only exports the active page..now it exports everything!
- bugfix: don't collapse task group after performing an action to the task when group is expanded.
- bugfix: email parsing removes enters and some emails were not shown correctly
- bugfix: people widget in french used to cause a syntax error
- bugfix: don't classify email in account's member if conversation is already classified.
- bugfix: task filtering by user has been improved: it loads faster and more accurate
- bugfix: the users selectbox for assignees has been improved: it loads faster and more accurate
- bugfix: check for "can manage contacts" in system permissions if column exists
- bugfix: email parsing does not fetch addresses when they are separated by semicolon
- bugfix: tasks assigned to filter doesn't filter correctly when logged user is an internal collaborator and users can add objects without classifying them.
- bugfix: search result pagination issue
- bugfix: search results ordered by date again
- bugfix: add to searchable objects failed for some emails
- bugfix: custom properties migration fix
- bugfix: feng 1 to feng 2 upgrade improved
- bugfix: style fixes in administration tabs
- bugfix: checkbox in contact tab now is working properly. initially it does not show the users
- bugfix: google calendar sync issue for events with over 100 chars has been solved
- bugfix: contact csv export fixed: when no contact is selected => export all contact csv export fixed
- bugfix: some undefined variables have been defined
- bugfix: some translations that were missing were added
- security: remove xss from request parameters
- performance: search engine has been greatly improved
- other: the search button is disabled until returns the search result
- other: when upgrading to 2.4 the completed tasks from feng 1 will change to 100% in completed percentage

(taca)

2013-12-20 15:46:57 UTC MAIN commitmail json YAML

Updated devel/p5-Proc-Daemon to 0.14nb4

(wen)

2013-12-20 15:43:51 UTC MAIN commitmail json YAML

Fix CVE-2013-7135 (patch is from Debian)
Add LICENSE
Add missing BUILD_DEPENDS for test

Approved by: wiz@

(wen)

2013-12-20 15:35:50 UTC MAIN commitmail json YAML

Simplyfy using REPLACE_BASH instead of REPLACE_INTERPRETER and its
friends.

No functional change.

(taca)

2013-12-20 14:36:41 UTC MAIN commitmail json YAML

Updated lang/nodejs to 0.10.24

(fhajny)

2013-12-20 14:36:27 UTC MAIN commitmail json YAML

2013.12.18, Version 0.10.24 (Stable)
* uv: Upgrade to v0.10.21
* npm: upgrade to 1.3.21
* v8: backport fix for CVE-2013-{6639|6640}
* build: unix install node and dep library headers (Timothy J Fontaine)
* cluster, v8: fix --logfile=%p.log (Ben Noordhuis)
* module: only cache package main (Wyatt Preul)

(fhajny)

2013-12-20 10:03:35 UTC pkgsrc-2013Q3 commitmail json YAML

2013-12-20 08:45:44 UTC pkgsrc-2013Q3 commitmail json YAML

Pullup ticket #4277 - requested by is
graphics/gd: build fix for e.g. arm

Revisions pulled up:
- graphics/gd/distinfo                                          1.34-1.35
- graphics/gd/patches/patch-src_gd__bmp.c                      1.1-1.2

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: dholland
  Date: Mon Nov 11 20:38:16 UTC 2013

  Modified Files:
  pkgsrc/graphics/gd: distinfo
  Added Files:
  pkgsrc/graphics/gd/patches: patch-src_gd__bmp.c

  Log Message:
  Don't use ceill(); it isn't needed here and causes problems. See PR 48334.

  Technically this change should bump PKGREVISION (as it changes the
  binary package ever so slightly for platforms where the ceill() didn't
  cause a build failure) but I'm going to let it slide.

  To generate a diff of this commit:
  cvs rdiff -u -r1.33 -r1.34 pkgsrc/graphics/gd/distinfo
  cvs rdiff -u -r0 -r1.1 pkgsrc/graphics/gd/patches/patch-src_gd__bmp.c

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: dholland
  Date: Mon Nov 11 21:34:40 UTC 2013

  Modified Files:
  pkgsrc/graphics/gd: distinfo
  pkgsrc/graphics/gd/patches: patch-src_gd__bmp.c

  Log Message:
  Add upstream report URL per PR 48334.

  To generate a diff of this commit:
  cvs rdiff -u -r1.34 -r1.35 pkgsrc/graphics/gd/distinfo
  cvs rdiff -u -r1.1 -r1.2 pkgsrc/graphics/gd/patches/patch-src_gd__bmp.c

(spz)

2013-12-20 08:34:50 UTC pkgsrc-2013Q3 commitmail json YAML

Pullup ticket #4276 - requested by tron
net/wireshark: security update

Revisions pulled up:
- net/wireshark/DESCR                                          1.4
- net/wireshark/Makefile                                        1.112
- net/wireshark/distinfo                                        1.71
- net/wireshark/patches/patch-aa                                1.13
- net/wireshark/patches/patch-ab                                1.4
- net/wireshark/patches/patch-ac                                1.2

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Wed Dec 18 11:52:26 UTC 2013

  Modified Files:
  pkgsrc/net/wireshark: DESCR Makefile distinfo
  pkgsrc/net/wireshark/patches: patch-aa patch-ab patch-ac

  Log Message:
  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

  To generate a diff of this commit:
  cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/wireshark/DESCR
  cvs rdiff -u -r1.111 -r1.112 pkgsrc/net/wireshark/Makefile
  cvs rdiff -u -r1.70 -r1.71 pkgsrc/net/wireshark/distinfo
  cvs rdiff -u -r1.12 -r1.13 pkgsrc/net/wireshark/patches/patch-aa
  cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/wireshark/patches/patch-ab
  cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/wireshark/patches/patch-ac

(spz)

2013-12-20 02:36:10 UTC MAIN commitmail json YAML

exactly check for the case MAKE_JOBS.
fixes for old bmake behavior in netbsd5 and missing MAKE_JOBS.

(obache)

2013-12-19 23:50:29 UTC MAIN commitmail json YAML

Improve support for HTTPS master site URLs:
As the default fetch program "tnftp" (in "pkgsrc" and all released
versions of NetBSD) doesn't support HTTPS prefer "fetch" (DragonFlyBSD,
FreeBSD and Minix) or Curl (CygWin, Linux, Mac OS X, Solaris) if available.

Change during pkgsrc-freeze approved by Greg Troxel and Thomas Klausner.

(tron)

2013-12-19 20:27:24 UTC MAIN commitmail json YAML

Use SPECIAL_PERMS on MirBSD, too. Fix build.

(bsiegert)

2013-12-19 14:29:07 UTC MAIN commitmail json YAML

Add a Platform/MirBSD.cmake file to fix the MirBSD build. The file is
installed along with other platform files, so I had to amend PLIST and
bump the PKGREVISION.

reviewed by wiz@, adam@

(bsiegert)

2013-12-19 09:34:28 UTC MAIN commitmail json YAML

Make KEYMAP_PATH match the directory keymaps are installed in. Hi prlw1!

(sborrill)

2013-12-19 04:15:52 UTC MAIN commitmail json YAML

remove qt5-ibus; no such directory

(jnemeth)

2013-12-18 23:48:22 UTC MAIN commitmail json YAML

Pick up maintainership.

(wiz)

2013-12-18 19:12:03 UTC MAIN commitmail json YAML

Configure looks for bison, and 'make' dies without a yacc, as the SunOS
bulk builds show. Add bison to USE_TOOLS.

(wiz)

2013-12-18 18:56:34 UTC MAIN commitmail json YAML

Updated security/gnupg to 1.4.16

(wiz)

2013-12-18 18:56:24 UTC MAIN commitmail json YAML

Update to 1.4.16:

Noteworthy changes in version 1.4.16 (2013-12-18)
-------------------------------------------------

* Fixed the RSA Key Extraction via Low-Bandwidth Acoustic
  Cryptanalysis attack as described by Genkin, Shamir, and Tromer.
  See <http://www.cs.tau.ac.il/~tromer/acoustic/>.  [CVE-2013-4576]

* Put only the major version number by default into armored output.

* Do not create a trustdb file if --trust-model=always is used.

* Print the keyid for key packets with --list-packets.

* Changed modular exponentiation algorithm to recover from a small
  performance loss due to a change in 1.4.14.

(wiz)

2013-12-18 18:51:03 UTC MAIN commitmail json YAML

Improve doc handling, from Niclas Rosenvik in PR 48454.
Really fixes packaging when doxygen already is installed.

No change by default, so no PKGREVISION++.

(wiz)

2013-12-18 17:55:15 UTC MAIN commitmail json YAML

2013-12-18 17:53:44 UTC MAIN commitmail json YAML

When using deprecated features, it helps to not disable them first.

(joerg)

2013-12-18 13:37:25 UTC MAIN commitmail json YAML

Apply the changes from setup2.py to setup3.py as well to fix the build
of the Python 3.x variant.

(joerg)

2013-12-18 11:52:49 UTC MAIN commitmail json YAML

Note update of the "wireshark" package to version 1.10.4.

(tron)