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 (22m)  pkgsrc-2024Q1 (6d)  pkgsrc-2023Q4 (53d)  pkgsrc-2023Q2 (85d)  pkgsrc-2023Q3 (164d) 

2024-05-23 16:00:04 UTC Now

2015-01-16 12:15:31 UTC MAIN commitmail json YAML

Update to 2.0.11 with undocumented changes.

(wiz)

2015-01-16 12:12:11 UTC MAIN commitmail json YAML

Updated www/viewvc to 1.1.23

(wiz)

2015-01-16 12:12:03 UTC MAIN commitmail json YAML

Update to 1.1.23:

Version 1.1.23 (released 04-Nov-2014)

  * fix annotate bug triggered by files with trailing blank lines (issue #533)
  * fix markup display of files with trailing blank lines (issue #533)
  * add support for root-relative svnauthz access files (issue #535)
  * fix cvsdb MySQL-python argument conversion error (issue #539)
  * fix double-escaping of revision links (issue #541)
  * fix bug that prevented mod_python 3.4+ deployment (issue #540)

Version 1.1.22 (released 14-Jan-2014)

  * minor directory sorting logic fix (re: show_subdir_lastmod)
  * fix display of show_subdir_lastmod details (issue #532)
  * pay attention to chardet's detection confidence
  * linkify line numbers in markup/annotate view

Version 1.1.21 (released 13-Sep-2013)

  * fix markup/annotate exception with Python < 2.7 (issue #527)

(wiz)

2015-01-16 12:10:08 UTC MAIN commitmail json YAML

Updated www/libmicrohttpd to 0.9.39

(wiz)

2015-01-16 12:10:00 UTC MAIN commitmail json YAML

Update to 0.9.39:

Mon Dec 22 16:33:18 CET 2014
Releasing 0.9.39. -CG

Mon Dec 22 13:02:36 CET 2014
Fix generated compiler flags for Solaris Studio linker (#3584). -CG

Sat Dec 20 00:35:40 CET 2014
Adding MHD_http_unescape() to public API (#3585). -CG
Updating documentation to document
MHD_is_feature_supported(). -CG

Thu Dec  4 00:43:10 CET 2014
If "Connection: upgrade" is requested, do not add
"Connection: Keep-Alive" in the response. -GJ

Tue Nov 18 13:52:29 CET 2014
Call MHD_cleanup_connections() during MHD_DAEMON_INFO_CURRENT_CONNECTIONS
processing for more accurate results. -MS

Wed Oct 29 20:45:21 CET 2014
Adding MHD_OPTION_LISTENING_ADDRESS_REUSE option allowing clients
to force allowing re-use of the address:port combination
(SO_REUSEPORT). -MS

Wed Oct 29 16:27:05 CET 2014
Adding MHD_DAEMON_INFO_CURRENT_CONNECTIONS to allow clients
to query the number of active connections. -MS

Fri Oct  3 14:28:58 CEST 2014
Releasing 0.9.38. -CG

Mon Sep 29 22:25:34 CEST 2014
Properly decode '+' in URL-encoded POST data. -CG/KM

Fri Sep 12 17:32:09 CEST 2014
Fix --disable-dauth configure option (#3543). -doostee

Thu Jun 26 21:06:04 CEST 2014
Fix failure to terminate 'instantly' in thread-per-connection
mode if there is a client with open connections.
Thanks to Kenneth Mastro for reporting. -CG

Sun Jun 22 12:22:08 CEST 2014
Actually, avoid locking on response as responses must
not be modified in a connection-specific way; instead
modify the connection's data buffer to add missing
responses headers.  If we are forced to add
"Connection: close", suppress output of conflicting
application-provided "Connection: Keep-Alive" header. -CG

Sun Jun 22 00:22:08 CEST 2014
Lock on response if adding headers, needed if response
object is shared across threads and connections. -CG

Thu Jun 19 17:32:32 CEST 2014
Ensure that listen FD is bound to epoll FD even before
MHD_run() is called if running with MHD_USE_EPOLL_LINUX_ONLY
in combination with 'external select' mode.  Thanks to
Marcos Pindado Sebastian for reporting. -CG

Sun Jun  8 15:10:44 CEST 2014
Add 'MHD_set_response_options' as a way to set per-response
flags.  Add flag to force HTTP 1.0-only conservative
behavior, in particular suppressing adding "Connection"
headers. -CG

Mon Jun  2 00:03:28 CEST 2014
Added back unescaping for URI path (#3413) but without
unescaping '+' (#3371) to remain compatible with
MHD 0.9.34 and before.  Note that applications providing
a custom MHD_OPTION_UNESCAPE_CALLBACK are no longer expected
to replace '+' with ' ', as that is now done separately for
the locations where this transformation is appropriate.
Releasing 0.9.37. -CG

Wed May 28 15:30:56 CEST 2014
Properly applying patch that was supposed to be
committed on "May  2 20:22:45 CEST 2014" to address
infinite loop (DoS) when HTTP connection is reset (#3392). -GM

Sun May 25 20:18:27 CEST 2014
Fixed W32 build issues. -EG
Releasing 0.9.36. -CG

Sat May 17 06:47:00 CEST 2014
Fix notifying client about completed request twice
under certain circumstances. -CG

Tue May 13 18:24:37 CEST 2014
Fix accidental transmission of footer termination '\r\n'
for responses with zero byte payload and non-chunked
encoding (#3397).  Thanks to amatus for reporting. -CG

Sun May  4 11:05:26 CEST 2014
Fix gnutls header check to make it cross-compile aware. -BK

May  2 20:22:45 CEST 2014
Fix infinite loop (DoS) when HTTP connection is reset (#3392). -GM
Fix possible issue from combination of epoll and suspend/resume
logic if edge trigger event is lost; also simplify logic to
maintain simpler invariants on the epoll state. -CG
Use OpenSSL cipher list "HIGH" in libmicrospdy (#3391). -CG
Releasing 0.9.35. -CG

Thu Apr 10 09:39:38 CEST 2014
Removed unescaping for URI path (#3371) as '+' should not
be converted to space in accordance with
http://www.w3.org/TR/html401/appendix/notes.html#ampersands-in-uris
and http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1
Note that we now also no longer convert '#38;' to '&'; if needed,
the application needs to apply unescaping to the path of the URI
itself (before, MHD unescaped '#38;' but not '&amp;', so this
inconsistency was now resolved by simply not unescaping anything
before the first '&'). -CG

Tue Apr 08 15:35:44 CET 2014
Added support for W32 native threads.
Added --with-threads=LIB configure parameter. -EG

Mon Apr  7 13:25:30 CEST 2014
Add MHD_OPTION_HTTPS_MEM_DHPARAMS to allow applications
to enable PFS. -HB/CG

Tue Apr 01 07:10:23 CET 2014
Added usage of native mutex on W32. -EG

Sat Mar 29 16:12:03 CET 2014
Added MHD_is_feature_supported() function. -EG

Thu Mar 27 14:47:54 CET 2014
Used larger FD_SETSIZE internally on W32.
Extended API to work with non-default FD_SETSIZE. -EG

Tue Mar 25 12:53:55 CET 2014
Fix limiting by IPv6 address. -EG

Tue Mar 25 09:06:13 CET 2014
Added more FD_SETSIZE checks.
Implemented FD_SETSIZE checks for W32. -EG

Wed Mar 05 13:15:05 CET 2014
Cleanup and refactoring of configure.ac.
m4 macros updated.
Custom configure macros replaced with autoconf archive macros.
SPDY disabled by default on W32.
Changed configure flag from '--disable-pipe' to
'--enable-socketpair'.
Added configure flags '--disable-doc' and '--disable-examples'.
Narrowed down extrenal lib specific compiler and linker flags
usage. -EG

Wed Feb 26 17:42:34 CET 2014
Refactoring of configure.ac: custom macros replaced with macros
from Autoconf Archive.
Minor corrections of configure.ac.
Excluded pthread flags from global flags, pthread now used only
where required.
W32: fixed .dll resource compilation with '-isystem' CPPFLAG.
W32: improved header compatibility with MSVC.
W32: now tested on Win64, compiled by MinGW-w64. -EG

Mon Feb 24 23:13:53 CET 2014
Added support for TCP FASTOPEN. -SHT
Releasing 0.9.34. -CG

Thu Feb 20 14:17:05 CET 2014
W32: Added creation of libmicrohttpd.lib, libmicrohttpd.def,
libmicrohttpd.exp and libmicrohttpd-static.lib for easy use
compiled MHD with MSVC.
W32: Use MS lib.exe tool if available for creating MSVC staff.
W32: Added .dll information resource. -EG

Tue Feb 18 19:46:45 CET 2014
Removed dependency on plibc for simpler compilation for W32.
Added configure option "--disable-pipes" to use socketpairs
instead of pipes for signalling to child threads. Pipes are
always disabled on W32.
Some code refactoring. -EG

Sat Feb  8 15:08:35 CET 2014
Corrected some uses of 'int' vs. 'size_t'. -EG/CG

Wed Jan 22 09:44:33 CET 2014
MHD_USE_DUAL_STACK in libmicrohttpd currently just *inhibits
setting* the IPV6_V6ONLY socket option, but per Microsoft's
documentation the default on Windows is that this is enabled, thus
MHD_USE_DUAL_STACK will not work (since it leaves the
default). libmicrohttpd should probably just unconditionally set
IPV6_V6ONLY to the desired value when the option is available. -LJ

Wed Jan  1 21:38:18 CET 2014
Allow Keep-Alive with HTTP 1.0 (if explicitly requested),
and automatically set "Connection: Keep-Alive" in response
in this case as well. -CG

Tue Dec 24 12:27:39 CET 2013
Adding explicit annotations to hide symbols that are not for
export in the C code (gcc 4.0 or higher only). -CG

Sun Dec 22 14:54:30 CET 2013
Adding a few lines to avoid warnings from picky compilers. -CG

Sat Dec 21 17:26:08 CET 2013
Fixed an issue with a missing argument in the postexample.
Fixed issue with bogus offset increment involving sendfile
on GNU/Linux.  Adding support for SNI.
Releasing 0.9.33. -CG

Mon Dec  9 21:41:57 CET 2013
Fix for per-worker daemon pipes enabled with
MHD_USE_SUSPEND_RESUME that were not closed in
MHD_stop_daemon. -MH

Sat Dec  7 00:44:49 CET 2013
Fixing warnings and build issue if --disable-https is given
to configure. -CG

(wiz)

2015-01-16 12:07:30 UTC MAIN commitmail json YAML

Updated time/fet to 5.25.0

(wiz)

2015-01-16 12:07:22 UTC MAIN commitmail json YAML

Update to 5.25.0:

Version 5.24.0
- Version 5.24.0
- Updated to Qt 5.4.0.
- Significant speed improvements when using many students sets (suggested by Volker Dirr).
- Speed improvements in the statistics menu.
- Other speed improvements for larger data.
- Added an option to hide students subgroups in combo boxes/activity planning (useful if you have too many students subgroups
and you don't use them in the interface).
- Added options to select the categories of timetables to write on the hard disk.
- Automatic division of years by categories is improved (suggested by alxgudea, Bobby Wise and Volker Dirr).
- Code improvement in reading the .fet XML files: converted from the obsolete Qt classes QDom* to QXmlStreamReader. It brings
speed and memory improvements when reading the input files, and ensures FET source compatibility with future Qt versions.
Also error reporting when reading a corrupt file is improved. The structure of the .fet XML files is slightly changed,
but of course older files are opened correctly.
- Several bug fixes, when trying to open corrupt files.
- Other bug fixes, reported by Vanyo Georgiev.
- It is now allowed to have constraints preferred/home rooms with a single room (suggested by liquid and Volker Dirr).
- Added a new example file from Vietnam, by nguyenhuuduyet.
- Added a new example file from Namibia, by Bobby Wise.
- Added two anonymous example files.
---------------------------------------------------------------------------------
Versions 5.25.0 - 5.25.x
- Version 5.25.0
- Improved the split year dialog: groups and subgroups which will exist in this year after the division will retain their activities and constraints.
- Sort (temporarily) the constraints by description in the all time/space constraints dialogs. Also, removed the 'Sort by comments' button,
which is probably useless.
- Fixed a bug introduced in version 5.24.0: when having individually modified activities, removing teachers, subjects, activity tags,
or students sets could remove only some components of the large split activity.
- Some minor strings improvements.

(wiz)

2015-01-16 11:50:37 UTC MAIN commitmail json YAML

Updated textproc/jansson to 2.7

(wiz)

2015-01-16 11:50:29 UTC MAIN commitmail json YAML

Update to 2.7:

Version 2.7
===========

Released 2014-10-02

* New features:

  - `json_pack()` and friends: Add format specifiers ``s%`` and ``+%``
    for a size_t string length (#141).

  - `json_unpack()` and friends: Add format specifier ``s%`` for
    unpacking the string length along with the string itself (#141).

  - Add length-aware string constructors `json_stringn()` and
    `json_stringn_nocheck()`, length-aware string mutators
    `json_string_setn()` and `json_string_setn_nocheck()`, and a
    function for getting string's length `json_string_length()` (#141,
    #143).

  - Support ``\u0000`` escapes in the decoder. The support can be
    enabled by using the ``JSON_ALLOW_NUL`` decoding flag (#141).

  - Add `json_boolean_value()` as an alias for `json_is_true()`
    (#146).

  - Add JSON_REAL_PRECISION encoding flag/macro for controlling real
    number precision (#178).

  - Define the maximum indentation as JSON_MAX_INDENT (#191).

* Bug fixes:

  - Some malformed ``\uNNNN`` escapes could crash the decoder with an
    assertion failure.

  - Avoid integer overflows with very long strings in UTF-8 decoder and
    hashtable.

  - Check for *NULL* key in `json_object_get()` and
    `json_object_del()` (#151).

  - Enhance hashtable seeding on Windows (#162).

  - `json_unpack()`: Allow mixing JSON_STRICT with optional keys
    (#162, #163).

  - Fix int/int32 mismatch (#142).

  - Parse subnormal numbers correctly (#202).

* Build:

  - Remove VS2010 build files. CMake should be used on Windows instead
    (#165).

  - Fix CMake build flags for MinGW (#193).

  - Add CMake config files for find_package. Rename config.h to
    jansson_private_config.h (#157, #159).

  - Make Valgrind checks work with CMake (#160).

  - Fix feature checks to use correct __ATOMIC flags.

  - Fix CMake checks for uint16_t and uint8_t support (#177).

  - Make Jansson build on SmartOS/Solaris (#171).

  - Work around a GCC bug on Solaris (#175).

  - Fix autoreconf on Debian (#182).

  - Don't use GNU make specific export for global AM_CFLAGS (#203,
    #204).

  - Fix building on Android using the supplied Android.mk (#166,
    #174).

  - Android.mk: Add -DHAVE_STDINT_H to LOCAL_CFLAGS (#200).

* Documentation:

  - Document JANSSON_BUILD_SHARED_LIBS CMake option (#187).

* Tests:

  - Close file handles correctly (#198).

* Other changes:

  - ``\uNNNN`` escapes are now encoded in upper case for better
    readability.

  - Enable usage of AddressSanitizer (#180).

Version 2.6
===========

Released 2014-02-11

* Security:

  - CVE-2013-6401: The hash function used by the hashtable
    implementation has been changed, and is automatically seeded with
    random data when the first JSON object is created. This prevents
    an attacker from causing large JSON objects with specially crafted
    keys perform poorly.

* New features:

  - `json_object_seed()`: Set the seed value of the hash function.

* Bug fixes:

  - Include CMake specific files in the release tarball.

* Documentation:

  - Fix tutorial source to send a User-Agent header, which is now
    required by the GitHub API.

  - Set all memory to zero in secure_free() example.

Version 2.5
===========

Released 2013-09-19

* New features:

  - `json_pack()` and friends: Add format specifiers ``s#``, ``+`` and
    ``+#``.

  - Add ``JSON_DECODE_INT_AS_REAL`` decoding flag to treat all numbers
    as real in the decoder (#123).

  - Add `json_array_foreach()`, paralleling `json_object_foreach()`
    (#118).

* Bug fixes:

  - `json_dumps()` and friends: Don't crash if json is *NULL* and
    ``JSON_ENCODE_ANY`` is set.

  - Fix a theoretical integer overflow in `jsonp_strdup()`.

  - Fix `l_isxdigit()` macro (#97).

  - Fix an off-by-one error in `json_array_remove()`.

* Build:

  - Support CMake in addition to GNU Autotools (#106, #107, #112,
    #115, #120, #127).

  - Support building for Android (#109).

  - Don't use ``-Werror`` by default.

  - Support building and testing with VPATH (#93).

  - Fix compilation when ``NDEBUG`` is defined (#128)

* Tests:

  - Fix a refleak in ``test/bin/json_process.c``.

* Documentation:

  - Clarify the return value of `json_load_callback_t`.

  - Document how to circumvent problems with separate heaps on Windows.

  - Fix memory leaks and warnings in ``github_commits.c``.

  - Use `json_decref()` properly in tutorial.

* Other:

  - Make it possible to forward declare ``struct json_t``.

(wiz)

2015-01-16 11:49:14 UTC MAIN commitmail json YAML

Updated textproc/diction to 1.13

(wiz)

2015-01-16 11:49:07 UTC MAIN commitmail json YAML

Update to 1.13. Set LICENSE. Remove unnecessary chunk in Makefile patch.

The following things have been changed compared to version 1.12:

o  Corrected German message catalog
o  Changes to English diction file
o  Fixed ellipsis handling

(wiz)

2015-01-16 11:47:20 UTC MAIN commitmail json YAML

Updated textproc/dbtoepub to 1.78.1

(wiz)

2015-01-16 11:47:11 UTC MAIN commitmail json YAML

Updated textproc/docbook-xsl to 1.78.1

(wiz)

2015-01-16 11:47:01 UTC MAIN commitmail json YAML

Update to 1.78.1:

Release Notes: 1.78.1

The following is a list of changes that have been made since the 1.78.0
release.

Common

The following changes have been made to the common code since the 1.78.0
release.

  • Robert Stayton: titles.xsl

    Make sure part and set titleabbrev are used in mode="titleabbrev.markup"

  • Robert Stayton: titles.xsl

    Add empty default template for titleabbrev since it is always processed in a mode.

  • Robert Stayton: gentext.xsl

    Make consistent handling of titleabbrev in xrefs.

  • Robert Stayton: titles.xsl

    for missing title in xref, provide parent information of target to help locate problem element.
    Process bridgehead in mode="title.markup", not normal mode.

  • Jirka Kosek: l10n.xsl

    Fixed bug #3598963

  • Robert Stayton: gentext.xsl; labels.xsl

    Make sure bridgeheads are not numbered in all contexts, including html title attributes.

FO

The following changes have been made to the fo code since the 1.78.0 release.

  • Robert Stayton: division.xsl

    Fix bug where part TOC not generated when partintro is present.

  • Jirka Kosek: xref.xsl

    Footnotes can't be placed into fo:float

  • Robert Stayton: titlepage.templates.xml

    Remove margin-left when start-indent is used because they interfere
    with each other.

  • Robert Stayton: fo.xsl; pagesetup.xsl

    Use dingbat.fontset rather than dingbat.font.family so it falls
    back to symbol font if glyph not found, like other font properties.

  • Robert Stayton: inline.xsl

    Change last instance of inline.charseq in inline glossterm to
    inline.italicseq so it is consistent with the others.

  • Robert Stayton: xref.xsl

    Make consistent handling of titleabbrev in xrefs.

HTML

The following changes have been made to the html code since the 1.78.0 release.

  • Robert Stayton: admon.xsl

    Turn off $admon.style if $make.clean.html is set to non-zero.

  • Jirka Kosek: highlight.xsl

    Added new definitions for syntax highlighting

  • Robert Stayton: chunk-common.xsl

    Make active.olink.hrefs param work for chunked output too.

  • Robert Stayton: xref.xsl

    Make consistent handling of titleabbrev in xrefs.

  • Robert Stayton: graphics.xsl

    Add round() function when pixel counts are used for image width and height.

  • Robert Stayton: glossary.xsl

    fix missing class and id attributes on glossterm and glossdef.

  • Robert Stayton: autoidx.xsl

    Fix bug where prefer.index.titleabbrev ignored info/titleabbrev.

Manpages

The following changes have been made to the manpages code since the 1.78.0
release.

  • Robert Stayton: utility.xsl

    Fix bug 3599520: spurious newline in para when starts with
    whitespace and inline element.

Webhelp

The following changes have been made to the webhelp code since the 1.78.0
release.

  • David Cramer: xsl/webhelp-common.xsl

    Webhelp: Fix test for webhelp.include.search.tab param

  • David Cramer: Makefile.sample

    Webhelp: Fix order of args to xsltproc

  • David Cramer: docsrc/readme.xml

    Webhelp: Turn on xinclude-test.xml in readme to demo xinclude functionality

  • David Cramer: Makefile; Makefile.sample

    Webhelp: In Makefiles, do xinclude in first pass at document

Params

The following changes have been made to the params code since the 1.78.0
release.

  • David Cramer: webhelp.include.search.tab.xml

    Webhelp: Fix test for webhelp.include.search.tab param

  • Robert Stayton: article.appendix.title.properties.xml

    Remove unneeded margin-left property from article appendix title.
    It interferes with the start-indent property.

Highlighting

The following changes have been made to the highlighting code since the 1.78.0
release.

  • Jirka Kosek: c-hl.xml; cpp-hl.xml; sql2003-hl.xml; php-hl.xml; upc-hl.xml;
    bourne-hl.xml; ⋯

    Added new definitions for syntax highlighting

(wiz)

2015-01-16 11:44:17 UTC MAIN commitmail json YAML

Updated textproc/coccigrep to 1.13

(wiz)

2015-01-16 11:44:07 UTC MAIN commitmail json YAML

Update to 1.13:

1.13 (2014/01/10)
* Improve accuracy (Eric Leblond)
* vim: correctly indent file (Eric Leblond)
* add match on identifier name (Eric Leblond)
* Merge pull request #11 from yhuelf/master (Eric Leblond)
* vim plugin: cosmetics (Fr辿d辿ric Yhuel)
* vim plugin: allow use of "-l" option (Fr辿d辿ric Yhuel)
* fix version detection (Eric Leblond)
* --version is not supported by all spatch version (Eric Leblond)
* Add structure matching example. (Eric Leblond)
* Add information about dependencies. (Eric Leblond)
* Reorder README so we see installation part (Eric Leblond)

(wiz)

2015-01-16 11:42:25 UTC MAIN commitmail json YAML

Updated www/squid3 to 3.4.11

(adam)

2015-01-16 11:41:11 UTC MAIN commitmail json YAML

Changes 3.4.11:
* cachemgr.cgi: memory leak in request parser
* Fix typo on commStartSslClose
* Fix SQUID_CC_REQUIRE_ARGUMENT autoconf macro
* Bug 3760: squidclient ignores --disable-ipv6
* Bug 3664: ssl_crtd fails to build on OpenSolaris/OpenIndiana/Solaris 11
* Bug 3754: configure doesnt detect IPFilter 5.1.2 system headers
* Bug 4164: SEGFAULT when %W formating code used in errorpages
* Deleting first fs left psstate->servers pointing to uninitialized memory
* Maintenance: check release notes on packaging
* Bug 4057: Avoid on-exit crashes when adaptation is enabled.

(adam)

2015-01-16 11:41:07 UTC MAIN commitmail json YAML

Updated sysutils/pwgen to 2.07

(wiz)

2015-01-16 11:41:00 UTC MAIN commitmail json YAML

Update to 2.07:

  * Remove backwards compatibility for no-tty mode.  Addresses
    CVE-2013-4440 (Closes: #725507)
  * Fail hard if /dev/urandom and /dev/random are not available.
    Addresses CVE-2013-4442 and Launchpad #1183213 (Closes: #767008)
  * Fix pwgen -B so that it doesn't accidentally generate passwords with
    ambiguous characters after changing the case of some letters.
    Addresses Launchpad Bugs #638418 and #1349863
  * Fix potential portability bug on architectures where unsgined ints
    are not 4 bytes long

(wiz)

2015-01-16 11:39:39 UTC MAIN commitmail json YAML

Updated security/libsodium to 1.0.1

(wiz)

2015-01-16 11:39:32 UTC MAIN commitmail json YAML

Update to 1.0.1:

* Version 1.0.1
- DLL_EXPORT was renamed SODIUM_DLL_EXPORT in order to avoid
collisions with similar macros defined by other libraries.
- sodium_bin2hex() is now constant-time.
- crypto_secretbox_detached() now supports overlapping input and output
regions.
- NaCl's donna_c64 implementation of curve25519 was reading an extra byte
past the end of the buffer containing the base point. This has been
fixed.

(wiz)

2015-01-16 11:28:16 UTC MAIN commitmail json YAML

Updated net/Radicale to 0.10

(wiz)

2015-01-16 11:28:08 UTC MAIN commitmail json YAML

Update to 0.10:

0.10 - Lovely Endless Grass
===========================

* Support well-known URLs (by Mathieu Dupuy)
* Fix collection discovery (by Markus Unterwaditzer)
* Reload logger config on SIGHUP (by ��lie Bouttier)
* Remove props files when deleting a collection (by Vincent Untz)
* Support salted SHA1 passwords (by Marc Kleine-Budde)
* Don't spam the logs about non-SSL IMAP connections to localhost (by Giel van Schijndel)

(wiz)

2015-01-16 11:27:12 UTC MAIN commitmail json YAML

Updated lang/go to 1.4.1

(wiz)

2015-01-16 11:27:04 UTC MAIN commitmail json YAML

Update to 1.4.1:

We've just released Go version 1.4.1, a minor point release.  This
release fixes bugs in linker and the log, runtime, and syscall
packages.

(wiz)

2015-01-16 10:46:08 UTC MAIN commitmail json YAML

Updated misc/kchmviewer to 7.2.1

(wiz)

2015-01-16 10:46:00 UTC MAIN commitmail json YAML

Update to 7.2.1. Switch to qt5.

2014-12-23  tim <gyunaev@ulduzsoft.com>
    - Version 7.2 released
    - Ported to Qt5 (but still builds and works with Qt4)
    - Added support for 3rd party integration
    - Fixed some minor issues

(wiz)

2015-01-16 10:23:24 UTC MAIN commitmail json YAML

Fix build on SmartOS. From Nicolas Rosenvik in private mail.

(wiz)

2015-01-16 09:56:34 UTC MAIN commitmail json YAML

Updated mail/imapsync to 1.607

(wiz)

2015-01-16 09:56:27 UTC MAIN commitmail json YAML

Update to 1.607:

revision 1.607 locked by: gilles;
date: 2014/11/14 16:25:06;  author: gilles;  state: Exp;  lines: +46 -40
Added several checks if IsUnconnected. Goal avoid imap commands while disconnected.
----------------------------
revision 1.606
date: 2014/11/14 14:49:13;  author: gilles;  state: Exp;  lines: +16 -13
Added total size transferred after each message copied.
Added number of total to be synced as a denominator dddd after each message copied, nnn/dddd, where nnn is the number of messages copied.
----------------------------
revision 1.605
date: 2014/11/11 00:00:37;  author: gilles;  state: Exp;  lines: +40 -10
Bugfix. On Windows file path with brackets [] are special. [a] must be written [[]a[]]
----------------------------
revision 1.604
date: 2014/11/08 00:29:26;  author: gilles;  state: Exp;  lines: +36 -9
Added --skipemptyfolders to skip empty host1 folders. They are not created on host2.
----------------------------
revision 1.603
date: 2014/11/07 22:06:33;  author: gilles;  state: Exp;  lines: +26 -26
Typo from previous save with gedit and 造
----------------------------
revision 1.602
date: 2014/11/07 21:57:57;  author: gilles;  state: Exp;  lines: +82 -19
Added utf8 output for folder names that use special characters in utf7imap
----------------------------
revision 1.601
date: 2014/10/28 10:48:07;  author: gilles;  state: Exp;  lines: +22 -22
Moved foldersizes call after folders lists print.
----------------------------
revision 1.600
date: 2014/10/27 10:41:52;  author: gilles;  state: Exp;  lines: +8 -8
Remove /x from regex applied with --include and --exclude. Blanks no longer have to be explicit with \ or [ ].
----------------------------
revision 1.599
date: 2014/10/26 23:42:12;  author: gilles;  state: Exp;  lines: +14 -10
Added help usage for --nomixfolders
----------------------------
revision 1.598
date: 2014/10/21 00:27:07;  author: gilles;  state: Exp;  lines: +20 -7
Added tests to check --regextrans2 's,(.*),\L$1,'
Exchange issue with folders with same name and --delete2.
----------------------------
revision 1.597
date: 2014/10/06 10:48:26;  author: gilles;  state: Exp;  lines: +12 -11
Changed --nomixdiffcasefolders to --nomixfolders.
Bugfix. --nomixdiffcasefolders was not parsed in command line so it did not work.
----------------------------
revision 1.596
date: 2014/09/04 17:17:36;  author: gilles;  state: Exp;  lines: +11 -6
Added --logfile in help output.
Added --nolog  in help output.
----------------------------
revision 1.595
date: 2014/09/01 19:39:16;  author: gilles;  state: Exp;  lines: +7 -7
Changed output, no examine anymore, only select.
----------------------------
revision 1.594
date: 2014/08/16 22:40:02;  author: gilles;  state: Exp;  lines: +14 -9
Fixed "imapsync doesn't see created folders in stats phase". Second time.
----------------------------
revision 1.593
date: 2014/07/08 11:19:43;  author: gilles;  state: Exp;  lines: +18 -7
Added --nomixdiffcasefolders to avoid merging folders that are considered different on host1 but the same on destination host2 because of case sensitivities and insensitivities.
----------------------------
revision 1.592
date: 2014/05/22 10:03:17;  author: gilles;  state: Exp;  lines: +23 -12
Bugfix. Make TLS works with last IO::Socket::SSL default value (SSL_verify_mode => 'SSL_VERIFY_NONE') in tls.
----------------------------
revision 1.591
date: 2014/05/22 01:32:52;  author: gilles;  state: Exp;  lines: +30 -19
Bugfix. IO::Tee and Open3 in backstic() were incompatible.
FailedBugFix. Tried to fix Tls issue "ERROR: Unable to start TLS: SSL connect attempt failed with unknown error error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed at c:/strawberry/perl/site/lib/Mail/IMAPClient.pm line 455." No success.
----------------------------
revision 1.590
date: 2014/05/20 23:07:14;  author: gilles;  state: Exp;  lines: +12 -6
Added option --disarmreadreceipts to fix resending read receipts with Exchange as host2.
----------------------------
revision 1.589
date: 2014/05/20 21:35:16;  author: gilles;  state: Exp;  lines: +93 -37
Added logging by default in subdirectory LOG_imapsync/.
Added option --log. --log is on by default. --nolog to disable logging.
Added option --logfile. Default is like LOG_imapsync/YYYY_MM_DD_HH_MM_SS_user2.txt
where YYYY_MM_DD_HH_MM_SS is the current date and time like 2014_05_20_23_45_10
Use IO::Tee Perl module for logging.
Fixed bug when creating folders on host2 with sep2 to \\ (Lotus Notes).
Updated the code to easily switch on --noreleasecheck by default.
----------------------------
revision 1.588
date: 2014/05/15 10:36:10;  author: gilles;  state: Exp;  lines: +18 -11
Added FTGate support (no EXAMINE).
----------------------------
revision 1.587
date: 2014/05/09 17:03:27;  author: gilles;  state: Exp;  lines: +14 -7
Typo when advising about prefix.
Easy way to switch releasecheck of by default.
----------------------------
revision 1.586
date: 2014/04/10 16:02:39;  author: gilles;  state: Exp;  lines: +9 -7
Just a test for good_date and pop2imap
----------------------------
revision 1.585
date: 2014/02/17 15:24:34;  author: gilles;  state: Exp;  lines: +39 -34
Warn syncing messges will not be simulated when --dry mode is on and folder  on host2 does not exist yet.
Try to get folder size when a folder on host2 has the same name but with a different case like OLD_MAIL -> old_mail. Avoid "does not exist" output.

(wiz)

2015-01-16 09:54:36 UTC MAIN commitmail json YAML

Updated lang/vala to 0.26.2

(wiz)

2015-01-16 09:54:29 UTC MAIN commitmail json YAML

Update to 0.26.2:

Vala 0.26.2
===========

* Bug fixes and binding updates.

(wiz)

2015-01-16 09:50:57 UTC MAIN commitmail json YAML

Updated graphics/xsane to 0.99.9

(wiz)

2015-01-16 09:50:47 UTC MAIN commitmail json YAML

Update to 0.99.9:

xsane-0.998 -> 0.999:
---------------------
- better preview window size calculation (thanks to Nils Phillipsen)
- removed null-pointer bug in xsane_update_param (thanks to Nils Phillipsen)
- manual page bugix
- changed email password storage

(wiz)

2015-01-16 09:40:44 UTC MAIN commitmail json YAML

Updated graphics/jpegoptim to 1.4.2

(wiz)

2015-01-16 09:40:37 UTC MAIN commitmail json YAML

Update to 1.4.2:

v1.4.2 - add option -P, --preserve-perms,
        some minor fixes

(wiz)

2015-01-16 09:39:20 UTC MAIN commitmail json YAML

Updated graphics/librsvg to 2.40.6

(wiz)

2015-01-16 09:39:13 UTC MAIN commitmail json YAML

Update to 2.40.6:

Version 2.40.6
- MinGW build fixes
- Fix path data number parsing
- Fix build with newer libtool

(wiz)

2015-01-16 09:36:03 UTC MAIN commitmail json YAML

Updated graphics/giflib-util to 5.1.1

(wiz)

2015-01-16 09:35:54 UTC MAIN commitmail json YAML

Updated graphics/giflib to 5.1.1

(wiz)

2015-01-16 09:35:43 UTC MAIN commitmail json YAML

Update giflib* to 5.1.1:

Version 5.1.1
=============

Code Fixes
----------

* Numerous minor fixes in getarg.c. Affects only the utilities, not the
  core library.

* Fix SourceForge bug #59 DGifOpen can segfault if DGifGetScreenDesc fails.

* SourceForge patch #20: In gifalloc, fix usage of realloc() in case of failure.

* Fix SourceForge bug #61 Leak in gifsponge.

Build Fixes
----------

* glibtoolize port fix for OS X.

(wiz)

2015-01-16 09:32:24 UTC MAIN commitmail json YAML

Updated databases/tdb to 1.3.4

(adam)

2015-01-16 09:31:33 UTC MAIN commitmail json YAML

2015-01-16 09:30:59 UTC MAIN commitmail json YAML

Updated devel/reposurgeon to 3.19

(wiz)

2015-01-16 09:30:51 UTC MAIN commitmail json YAML

Update to 3.19:

3.19: 2015-01-06
    Minor bugfix for handling of indexed action stamps.

3.18: 2014-11-28
    The graft command now has a --prune option like unite.

3.17: 2014-11-17
    Export support for SRC and RCS.
    Bug fix for automated preservation under hg.
    Bug fix for reparenting and checkout of commits with inline data.

3.16: 1014-11-08
    Import support for SRC.

3.15: 1014-11-05
    New 'add' command to insert new fileops in commits.

3.14: 2014-10-29
    Assignments are preserved across squashes (including deletions).
    Name lookups are, after the first one, significantly faster.

3.13: 2014-10-24
    Read/write support for the Fossil system.
    Fixes for timezone handling.

3.12: 2014-09-11
    Explicit svn:ignore patterns aren't recursive to lower directories; cope.
    A new 'ignores' command has options for translation of ignore files.
    The --noignores option has been retired.

3.11: 2014-08-12
    When converting SVN, ignore explicit .gitignores created by git-svn.
    (Better than letting them collide with translated svn:ignore properties.)

(wiz)

2015-01-16 09:29:43 UTC MAIN commitmail json YAML

Updated devel/pangox-compat to 0.0.2

(wiz)

2015-01-16 09:29:36 UTC MAIN commitmail json YAML

Update to 0.0.2.

October 16, 2012 Behdad Esfahbod <behdad@gnome.org>
- 0.0.2.  There are only 10 types of people...
  More seriously: Bump pkgconfig package version to 1.30.

(wiz)

2015-01-16 09:27:53 UTC MAIN commitmail json YAML

Updated devel/patchutils to 0.3.3

(wiz)

2015-01-16 09:27:45 UTC MAIN commitmail json YAML

Update to 0.3.3, set LICENSE.

0.3.3 (stable)

Context output format for "no newline" lines has been fixed.
The splitdiff utility now has an option to disable ".patch"
filename extensions. Some fixes for bugs spotted by
Coverity. Interdiff can now use "-" (stdin) for one of the
inputs.

(wiz)

2015-01-16 09:23:57 UTC MAIN commitmail json YAML

Updated devel/cproto to 4.7l

(wiz)

2015-01-16 09:23:50 UTC MAIN commitmail json YAML

Update to 4.7l, set LICENSE.

2014/01/01 (4.7l)
- add "docs" rule to makefile.
- correct configure check for yyname vs yytname, broken by 4.7i changes
- update config.guess

2013/10/25 (4.7k)
- modify configure script, etc., to support cross-compiles, e.g., to MinGW.
- updated configure macros
  - support --datarootdir option
  - various portability fixes for CF_XOPEN_SOURCE
  - add checks for clang
  - improve macros for checking for standard C compiler
  - modified macros to support third parameter of AC_DEFINE used by autoheader
- update config.guess, config.sub

2011/01/02 (4.7j)
- amend a check for function name to allow cases such as this:
  int (foo)();
  which is distinct from a function-pointer, e.g.,
  int (*foo)();
- modified configure script to deprecate ${name-value} in favor of standard
  ${name:-value}.
- update config.guess, config.sub

(wiz)

2015-01-16 09:21:56 UTC MAIN commitmail json YAML

Updated devel/commit-patch to 2.5.2

(wiz)

2015-01-16 09:21:49 UTC MAIN commitmail json YAML

Update to 2.5.2:

commit-patch (2.5.2)

  * Fixed dumb bug that caused "make install" to fail.

-- David Caldwell <david@porkrind.org>  Sun, 21 Sep 2014 18:15:04 -0700

commit-patch (2.5.1)

  * We now use App::Fatpacker to bundle IPC::Run, removing the dependency
    from the release tarball.

  * Work around emacs/tramp bug in commit-patch-buffer.el (thanks Dima
    Kogan <dima@secretsauce.net>).

-- David Caldwell <david@porkrind.org>  Sun, 21 Sep 2014 17:22:29 -0700

(wiz)

2015-01-16 09:19:02 UTC MAIN commitmail json YAML

Updated devel/autoconf-archive to 2014.10.15

(wiz)

2015-01-16 09:18:54 UTC MAIN commitmail json YAML

Update to 2014.10.15:

* Noteworthy changes in release 2014.10.15 (2014-10-15) [stable]

  A brand-new Github mirror of the Archive's Git repository is available at
  <https://github.com/peti/autoconf-archive>. That project allows developers to
  submit patches as Pull Requests instead of having to go through Savannah's
  patch tracker.

  The Archive no longer creates release tarballs compressed with gzip and
  bzip2; only tarballs compressed with xz and lzip are distributed.

  AX_LIB_POSTGRESQL: substitute CPPFLAGS rather than CFLAGS.

  AX_GCC_ARCHFLAG: Rewrite x86 support <https://savannah.gnu.org/patch/?8514>
  and extend Clang support <https://savannah.gnu.org/patch/index.php?8515>.

  AX_GCC_VAR_ATTRIBUTE: support the init_priority attribute.

  AX_PERL_MODULE_VERSION: fix a misspelled variable name. Other unfixed issues
  remain. See <https://savannah.gnu.org/patch/index.php?8507>.

  AX_BOOST_PYTHON: several issue have beeen fixed. Further details can be found
  at <https://savannah.gnu.org/patch/index.php?8540>.

  AX_HAVE_QT: Only check $PATH and qmake for Qt variables. The old logic for
  detecting Qt without $PATH or qmake was never very reliable and the last
  change to this macro broke it entirely. If the Qt variables cannot be found
  via $PATH and qmake, then it would be best to manually define them in the
  makefile.

  AX_TLS: fix quoting problem.

  AX_F90_LIBRARY: several bug fixes and improvements. Further details are at
  <https://savannah.gnu.org/patch/?8500>.

  AX_LUA: fix initialization of ac_cv_header_lua_h. Further details are at
  <https://savannah.gnu.org/patch/?8505>.

  AX_AT_CHECK_PATTERN: executes a test similar to AT_CHECK(), except that
  stdout and stderr are awk regular expressions. Further details can be found
  at <https://savannah.gnu.org/patch/?8492>.

  AX_OPENMP: prevent false negative due to -Wunused-variable.

  AX_COMPILER_VENDOR: improve detection of the CRAY compiler.

  AX_ENABLE_BUILDDIR: support absolute paths.

  AX_HAVE_QT: auto-detect Qt 5 by querying $PATH and qmake. Submitted in
  <https://savannah.gnu.org/patch/index.php?8486>.

  AX_CHECK_ENABLE_DEBUG: add an --enable-debug option which defines an
  ENABLE_DEBUG cpp variable if set. Submitted in
  <https://savannah.gnu.org/patch/index.php?8452>.

  AX_CODE_COVERAGE: new macro which contains all the necessary logic and
  Makefile rules for instrumenting a project with code coverage using lcov.
  Submitted in <https://savannah.gnu.org/patch/index.php?8451>.

  AX_LIB_HDF5: don't overwrite the CPPFLAGS variable. Submitted in
  <https://savannah.gnu.org/patch/index.php?8449>.

  AX_BOOST_BASE: fix for x32 systems. This subject probably needs more
  attention, though. See <https://savannah.gnu.org/patch/index.php?8433>.

  AX_BERKELEY_DB(_CXX): add --with-libdb option so that this macros works on
  OSX with home-brew installed version of BDB. Submitted in
  <https://savannah.gnu.org/patch/index.php?8416>.

  AX_CXX_HAVE_PLACEHOLDERS: check if std::placeholders is defined in
  <functional>. Submitted it <https://savannah.gnu.org/patch/index.php?8414>.

  AX_LIB_HDF5: add support for recognizing HDF5 built with ccache. Submitted in
  <https://savannah.gnu.org/patch/index.php?8450>.

  AX_CC_MAXOPT: Improve CPUID identification patterns as mentioned in
  patch #8514. Add ICC options added in version 11.0 (which deprecates older
  -xX style options). Add support for latest Intel performance processors
  (see #8514 for details). See <https://savannah.gnu.org/patch/index.php?8522>.

  AX_EXECINFO: new macro to test execinfo size type. Submitted in
  <https://savannah.gnu.org/patch/index.php?8525>.

  AX_CXX_VAR_PRETTYFUNC: new macro to determine the function name.

  AX_CC_MAXOPT: default to -O2 for MSVC instead of -O3.

  AX_CXX_HAVE_REFERENCE_WRAPPER, AX_CXX_HAVE_BAD_FUNCTION_CALL,
  AX_CXX_HAVE_BIND, AX_CXX_HAVE_BIT_AND, AX_CXX_HAVE_BIT_OR,
  AX_CXX_HAVE_BIT_XOR, AX_CXX_HAVE_CREF, AX_CXX_HAVE_FUNCTION,
  AX_CXX_HAVE_HASH, AX_CXX_HAVE_IS_BIND_EXPRESSION, AX_CXX_HAVE_IS_PLACEHOLDER,
  AX_CXX_HAVE_MEM_FN, AX_CXX_HAVE_REF: remove dependency on AX_CXX_NAMESPACES.

  AX_BOOST_BASE has been extended to recognize ppc64le as a lib64 architecture.
  Submitted in <https://savannah.gnu.org/patch/index.php?8473>.

  AX_PROG_FLEX has been extended to support OpenBSD.

  AX_COUNT_CPUS has been extended to support Win32 (and Win64). Further
  details are at <http://savannah.gnu.org/patch/index.php?8381>.

* Noteworthy changes in release 2014.02.28 (2014-02-28) [stable]

  AX_PERL_EXT has been extended to report back the installation prefix as
  PERL_EXT_PREFIX.

  AX_EXT has been extended to deal with a situation where
  AX_GCC_X86_CPUID(0x00000001) returns 'unknown'. Further details can be found
  at <http://savannah.gnu.org/patch/?8321>.

  AX_ZONEINFO has improved support for AIX. Further details can be found at
  <http://savannah.gnu.org/patch/?8313>.

  The set of search paths checked by AX_LUA has been extended, mostly in an
  effort to support FreeBSD and OpenBSD: <http://savannah.gnu.org/patch/?8318>
  and <http://savannah.gnu.org/patch/?8355> have further details.

  The new macros AX_CXX_HAVE_BAD_FUNCTION_CALL, AX_CXX_HAVE_BIND,
  AX_CXX_HAVE_BIT_AND, AX_CXX_HAVE_BIT_OR, AX_CXX_HAVE_BIT_XOR,
  AX_CXX_HAVE_CREF, AX_CXX_HAVE_FUNCTION, AX_CXX_HAVE_HASH,
  AX_CXX_HAVE_IS_BIND_EXPRESSION, AX_CXX_HAVE_IS_PLACEHOLDER,
  AX_CXX_HAVE_MEM_FN, AX_CXX_HAVE_REF, and AX_CXX_HAVE_REFERENCE_WRAPPER have
  been added.

  M4sugar and M4sh added to AX_PROG_JAR, AX_PROG_JAVA, AX_PROG_JAVAC, and
  AX_PROG_JAVADOC. Also fixed a path discrepancy with AX_JAVA_OPTIONS. See
  <http://savannah.gnu.org/patch/index.php?8279> for further details.

  The "mandatory" option in AX_CXX_COMPILE_STDCXX_11 has been fixed, and
  support for Gentoo's hardened GCC has been improved. Further details are at
  <http://savannah.gnu.org/patch/index.php?8287>.

  Three new macros were submitted in <http://savannah.gnu.org/patch/?8260>:

  - AX_GCC_BUILTIN is used to detect GCC-compatible built-in functions (e.g.
    AX_GCC_BUILTIN([__builtin_expect]) to check for __builtin_expect()).

  - AX_GCC_FUNC_ATTRIBUTE used to detect GCC-compatible function attributes
    (e.g. AX_GCC_FUNC_ATTRIBUTE([pure]) to check for _attribute_((pure))).

  - AX_GCC_VAR_ATTRIBUTE is used to detect GCC-compatible variable attributes
    (e.g. AX_GCC_VAR_ATTRIBUTE([unused]) to check for _attribute_((unused))).

  AX_BOOST_BASE has been updated to recognize the new multi-arch system paths
  on Ubuntu 13.10 x86_64. See <http://savannah.gnu.org/patch/?8254> for further
  details.

  Fixed a cut-and-paste error in AX_CREATE_PKGCONFIG_INFO. Further details are
  available at <http://savannah.gnu.org/patch/?8238>.

  Extended AX_CHECK_{PREPROC,COMPILE,LINK}_FLAG macros to accept an additional
  "input" argument. See <http://savannah.gnu.org/patch/?8247> for further
  details.

  Fix recognition of UltraSparc IIi in AX_GCC_ARCHFLAG. Further details can be
  found at <http://savannah.gnu.org/patch/?8235>.

(wiz)

2015-01-16 09:18:48 UTC MAIN commitmail json YAML

2015-01-16 09:17:30 UTC MAIN commitmail json YAML

Updated devel/afl to 1.12b

(wiz)

2015-01-16 09:17:23 UTC MAIN commitmail json YAML

Update to 1.12b:

--------------
Version 1.12b:
--------------

  - Made an improvement to dictionary generation to avoid runs of identical
    bytes.

  - Added havoc cycle scaling to help with slow binaries in -d mode. Based on
    a thread with Sami Liedes.

  - Added AFL_SYNC_FIRST for afl-fuzz. This is useful for those who obsess
    over stats, no special purpose otherwise.

  - Switched to more robust box drawing codes, suggested by Jakub Wilk.

  - Created faster 64-bit variants of several critical-path bitmap functions
    (sorry, no difference on 32 bits).

  - Fixed moar typos, as reported by Jakub Wilk.

--------------
Version 1.11b:
--------------

  - Added a bit more info about dictionary strategies to the status screen.

--------------
Version 1.10b:
--------------

  - Revised the dictionary behavior to use insertion and overwrite in
    deterministic steps, rather than just the latter. This improves coverage
    with SQL and the like.

  - Added a mention of "*" in status_screen.txt, as suggested by Jakub Wilk.

(wiz)

2015-01-16 09:10:31 UTC MAIN commitmail json YAML

Updated converters/p5-Unicode-Collate to 1.09

(wiz)

2015-01-16 09:10:24 UTC MAIN commitmail json YAML

Update to 1.09:

1.09  Thu Dec 18 21:39:18 2014
    - XS: a workaround for perl 5.6.x to handle noncharacters U+FFFF etc.
      is abandoned. Perl 5.8.0 or later is recommended for handling these
      noncharacters.

(wiz)

2015-01-16 09:08:46 UTC MAIN commitmail json YAML

Updated converters/libwps to 0.3.1

(wiz)

2015-01-16 09:08:39 UTC MAIN commitmail json YAML

Update to 0.3.1:

libwps-0.3.1

- Fix parsing of floating-point numbers in specific cases.
- Fix several minor issues reported by Coverity and Clang.
- Check arguments of public functions. Passing NULL no longer causes
  a crash.
- Use symbol visibility on Linux. The library only exports the public
  functions now.
- Import @TERM and @CTERM functions (fdo#86241).
- Handle LICS character encoding in spreadsheets (fdo#87222).
- Fix a crash when reading a broken file, found with the help of
  american-fuzzy-lop.

(wiz)

2015-01-16 09:05:29 UTC MAIN commitmail json YAML

Updated converters/libmwaw to 0.3.2

(wiz)

2015-01-16 09:05:22 UTC MAIN commitmail json YAML

Update to 0.3.2:

28/7/2014:
- AppleWorks/ClarisWorks: manage multiple headers/footers + better rebuilding of complex group

1/7/2014:
- MacDraw: add a parser for v0 and v1 documents

22/6/2014:
- RagTime: add a parser to parse v2 and v3 documents

6/6/2014:
- rewrite MWAWCellContent::double2Date to avoid problem with 32/64 time_t values
- correct many <<small>> problems

(wiz)

2015-01-16 09:02:37 UTC MAIN commitmail json YAML

Updated converters/libe-book to 0.1.2

(wiz)

2015-01-16 09:02:29 UTC MAIN commitmail json YAML

Update to 0.1.2:

libe-book 0.1.2

- Check arguments of public functions. Passing NULL no longer causes
  a crash.
- Use symbol visibility on Linux. The library only exports the two public
  functions now.
- Fix handling of --enable-experimental configure option.
- Fix various crashes and hangs when reading broken files, found with the
  help of american-fuzzy-lop.
- FictionBook v.2:
  + Fix incorrect mime type for JPEG images that occurs occasionally in
    FB2 files.
  + Handle zipped files that contain more than one file.
  + Add support for headings.
  + Add support for text language.
- Broad Band eBook:
  + Convert dimensions and font sizes correctly. This makes the output
    actually usable :-)
  + Parse basic paragraph and character properties.
  + Add initial support for images. Only Plot tag is supported, as
    Canvas is much more complex and can contain other objects too, not
    just a single image.
  + Recognize GIF images too.
  + Parse important page properties, like dimensions and margins.
  + Substitute the default fonts embedded on the devices for Liberation
    fonts.
  + Try to reconstruct headings from table of contents.

(wiz)

2015-01-16 08:57:54 UTC MAIN commitmail json YAML

Updated chat/mcabber to 0.10.3

(wiz)

2015-01-16 08:57:46 UTC MAIN commitmail json YAML

Update to 0.10.3:

mcabber (0.10.3)

* [UI] Add option 'iq_time_hide'
* [UI] Add 'iq_version_hide', 'iq_version_hide_version'
* Improved handling of damaged history log files
* Switch to libotr v4 API (Myhailo Danylenko)
* Add SSL options (Frank Zschockelt)
  These options require a patched Loudmouth library.
  - "ssl_ciphers" to define the allowed ciphers
  - "ssl_ca" to set additional trusted certificates
* Fix compilation for old loudmouth libraries (Frank Zschockelt)
* Add 'color_timestamp' to highlight timestamp added by server (Hermitifier)
* New python based event script using OS X 10.8 notification center (Sharoon Thomas)
* Handle SIGHUP signal (Dominik George)
* Misc. bugfixes

-- Mikael, 2014-05-08

(wiz)

2015-01-16 08:50:54 UTC MAIN commitmail json YAML

Updated audio/speex to 1.2rc2

(wiz)

2015-01-16 08:50:47 UTC MAIN commitmail json YAML

Update to 1.2rc2:

This release splits the speex codec library and the speex DSP
library into separate source trees. Both projects received build-system
improvements, bugfixes, and cleanup. The speex codec's VBR tuning
was improved, while the speexdsp resampler got some NEON optimizations.

(wiz)

2015-01-16 08:45:24 UTC MAIN commitmail json YAML

Updated audio/opus-tools to 0.1.9

(wiz)

2015-01-16 08:45:16 UTC MAIN commitmail json YAML

Update to 0.1.9:
This release adds support for 32-bit floating point WAV output and
fixes a number of minor issues.

(wiz)

2015-01-15 21:00:07 UTC MAIN commitmail json YAML

Updated security/gnupg2 to 2.0.26nb1

(wiz)

2015-01-15 20:59:59 UTC MAIN commitmail json YAML

Fix executable name in gpgkey2ssh tool.
>From ISIHARA Takanori in PR 49576.

Bump PKGREVISION.

(wiz)

2015-01-15 20:56:11 UTC MAIN commitmail json YAML

Updated security/pcsc-lite to 1.8.12nb1

(wiz)

2015-01-15 20:56:03 UTC MAIN commitmail json YAML

2015-01-15 20:53:18 UTC MAIN commitmail json YAML

Improve minidlna rc files

In particular, it fixes the non-working stop target
Reported by J. Baker

(degroote)

2015-01-15 20:51:11 UTC MAIN commitmail json YAML

Fold PLIST.Linux into PLIST using more plist vars, and add more files
reported in PR 49080. I did look in the package configury to figure
out which ones were mutually connected, but I may have gotten it
wrong as there's a monumental maze of m4 autotoolery.

(dholland)

2015-01-15 20:48:41 UTC MAIN commitmail json YAML

Updated security/pinentry to 0.9.0nb1

(wiz)

2015-01-15 20:48:33 UTC MAIN commitmail json YAML

Build pinentry-tty by default. From ISIHARA Takanori in PR 49573.

Bump PKGREVISION.

(wiz)

2015-01-15 20:26:47 UTC MAIN commitmail json YAML

Apply jperkin@'s patch for PR 49080, which changes it to use plist vars
for options instead of separate tiny plist files. This also allows
PLIST.Linux to be recognized.

(dholland)

2015-01-15 19:40:05 UTC MAIN commitmail json YAML

2015-01-15 19:39:16 UTC MAIN commitmail json YAML

update to 3.0.22
changes: many fixes and small improvements, most notably some memory
leak and a use-after-free are fixed which might be security issues

(drochner)

2015-01-15 18:17:16 UTC MAIN commitmail json YAML

print/okular: add missing dependency + update PLIST

It seems okular autodetects some things (kdegraphics-mobipocket),
so the build dies on systems where this package is present. Add it
as a dependency and update the PLIST accordingly.

PKGREVISION bumped.

Ok@ markd

(rumko)

2015-01-15 18:16:15 UTC MAIN commitmail json YAML

graphics/kdegraphics-mobipocket: okular not a dependency

print/okular is not a dependency for this package, but the other way
around.

Ok@ markd

(rumko)

2015-01-15 17:59:10 UTC MAIN commitmail json YAML

x11/kde-workspace4: fix build on fbsd

* genkdmconf: FreeBSD 10+ does not have utmp, only utmpx. Use utmpx
when available.
* not only Linux, but also FreeBSD can have libutempter present. Make
sure PLIST is correct in both cases.

Ok@ markd

(rumko)

2015-01-15 17:58:16 UTC MAIN commitmail json YAML

sysutils/kfilemetadata: fix build on fbsd, UIN64_C & co. not found

src/extractors/ffmpegextractor.cpp could not be compiled due to inaccessible UIN64_C & co.
On FreeBSD, these are protected under _MACHINE__STDINT_H_, so undef it as well.

Ok@ markd

(rumko)

2015-01-15 16:44:33 UTC MAIN commitmail json YAML

Remove unsupported configure argument.
>From ISIHARA Takanori in PR 49572.

(wiz)

2015-01-15 14:53:45 UTC MAIN commitmail json YAML

Correction. Adding REPLACE_PERL for tt-render. Thanks joerg@

(mef)

2015-01-15 13:54:51 UTC MAIN commitmail json YAML

Updated net/lldpd to 0.7.13

(mef)

2015-01-15 13:54:40 UTC MAIN commitmail json YAML

Update 0.7.12 to 0.7.13
lldpd (0.7.13)
  * Fix:
    + Unbreak customization of Unix socket path from command line.

(mef)

2015-01-15 13:03:13 UTC MAIN commitmail json YAML

Fix include order to ensure bsd.prefs.mk is included before using
settings from mk.conf. Depend on ICU as requested by the build.

(joerg)

2015-01-15 13:02:26 UTC MAIN commitmail json YAML

2015-01-15 13:01:44 UTC MAIN commitmail json YAML

2015-01-15 13:00:32 UTC MAIN commitmail json YAML

Don't depend on wrappers adding /usr/pkg/lib implicitly to the search
path.

(joerg)

2015-01-15 11:22:52 UTC MAIN commitmail json YAML

2015-01-15 11:07:01 UTC MAIN commitmail json YAML

Restore PLIST.java, fixes Darwin (and others) build.

(jperkin)

2015-01-15 09:37:16 UTC MAIN commitmail json YAML

Updated emulators/suse131_gtk2 to 13.1nb5

(obache)

2015-01-15 09:37:05 UTC MAIN commitmail json YAML

  openSUSE Security Update: Security update for jasper
______________________________________________________________________________

Announcement ID:    openSUSE-SU-2015:0042-1
Rating:            moderate
References:        #909474 #909475
Cross-References:  CVE-2014-8137
Affected Products:
                    openSUSE 13.1
______________________________________________________________________________

  An update that solves one vulnerability and has one errata
  is now available.

Description:

        The follow issues were fixed with this update:
        - CVE-2014-8137  double-free in jas_iccattrval_destroy()(bnc#909474)
        - CVE-2014-8138  heap overflow in jas_decode() (bnc#909475)

References:

  http://support.novell.com/security/cve/CVE-2014-8137.html
  https://bugzilla.suse.com/show_bug.cgi?id=909474
  https://bugzilla.suse.com/show_bug.cgi?id=909475

(obache)

2015-01-15 09:34:07 UTC MAIN commitmail json YAML

Updated emulators/suse131_libsndfile to 13.1nb1

(obache)

2015-01-15 09:33:55 UTC MAIN commitmail json YAML

  openSUSE Security Update: Security update for libsndfile
______________________________________________________________________________

Announcement ID:    openSUSE-SU-2015:0041-1
Rating:            moderate
References:        #911796
Cross-References:  CVE-2014-9496
Affected Products:
                    openSUSE 13.2
                    openSUSE 13.1
______________________________________________________________________________

  An update that fixes one vulnerability is now available.

Description:

  Changes in libsndfile: two buffer read overflows in sd2_parse_rsrc_fork()
  (CVE-2014-9496, bnc#911796): backported upstream fix patches

References:

  http://support.novell.com/security/cve/CVE-2014-9496.html
  https://bugzilla.suse.com/show_bug.cgi?id=911796

(obache)

2015-01-15 08:46:59 UTC MAIN commitmail json YAML

2015-01-14 21:48:20 UTC MAIN commitmail json YAML

Updated devel/cppcheck to 1.68

(wiz)

2015-01-14 21:48:10 UTC MAIN commitmail json YAML

Update to 1.68 from Jonathan Buschmann in PR 49570.

== Cppcheck-1.68 ==

General changes:

New checks:
- Multifile checking for buffer overruns and uninitialized variables

Improvements:
- Libraries are now able to contain platform specific types
- Improved handling of function overloads
- Improved handling of integer literal suffixes
- Improved stability of template parsing
- Improved accuracy of ValueFlow analysis
- Improved checking of pointer overflow
- Support noexcept(false)
- Support attribute((noreturn))
- A bunch of additions to several Libraries, especially posix.cfg and qt.cfg

Additionally, lots of false positives and bugs have been fixed and several existing checks have been improved.

== Cppcheck-1.67 ==

General changes:
- Library files have now a 'format' attribute. Format version 1 is assumed by default
- Cppcheck does no longer abort checking if unhandled characters (Non-ASCII) are found

New checks:
- Check for unused return values
- Detect shift by too many bits, signed integer overflow and dangerous sign conversion
- Recommend usage of expm1(), log1p(), erfc()
- Division by sizeof() as parameter to memset/memcpy/memmove/etc. as they expect a size in bytes
- Several new va_arg related checks:
-- Wrong parameter passed to va_start()
-- Reference passed to va_start()
-- Missing va_end()
-- Using va_list before it is opened
-- Subsequent calls to va_start/va_copy()
- Initialization by itself in initializer list
- Dead pointer usage when pointer alias local variable that has gone out of scope

Improvements:
- Support uniform initialization syntax (C++11)
- Much improvements to value flow analysis
- Improved AST creation (support placement new, C++-style casts, templates, operator new[], ...)
- Improved lambda support
- Support GCC extension attriute((used)) and MSVC extension __declspec(property)
- Better support for static member variables, inherited variables and namespaces
- Improved typedef support where multiple variables are declared at once
- Avoid checking code multiple times by calculating a checksum. Duplicate preprocessor configurations are eliminated by this.
- Support C++03/C 'auto' keyword
- HTML report: display 'verbose' message using clickable expandable divs

(wiz)

2015-01-14 21:45:14 UTC MAIN commitmail json YAML

2015-01-14 21:44:38 UTC MAIN commitmail json YAML

Bump ABI depends per PR 49563 from Petar Bogdanovic, and add a note
in the Makefile for updaters.

(wiz)

2015-01-14 21:33:38 UTC MAIN commitmail json YAML

Note the minidlna update

(degroote)

2015-01-14 21:32:20 UTC MAIN commitmail json YAML

Upgrade minidlan to 1.1.4

Changes since 1.0.24:

1.1.4 - Released 26-Aug-2014
--------------------------------
- Add magic container infrastructure.
- Add magic containers for 50 recent items for each category.
- Fix bad null termination in AAC parsing.
- Fix requests for the last byte of a file, which affected MKV playback on Philips TV's.
- Support 64-bit time_t values.

1.1.3 - Released 05-June-2014
--------------------------------
- Enhance log level settings.
- Fix Samsung browsing when root_container is set.
- Add Clang compiling support.
- Fix compiling on systems without iconv.
- Add merge_media_dirs option, to revert to the old behavior.
- Add Asus O!Play client support.
- Fix Broken SSDP multicast membership addition.
- Fix crash bug with an emtpy filter argument.
- Accept SMI subtitles in addition to SRT.
- Add BubbleUPnP detection and enable subtitle support.
- Allow the user to specify an arbitrary root container.
- Add libavcodec > 54 / libav 10 compatibility.
- Get embedded cover art from video files with recent libavformat versions.
- Disable Samsung DCM10 capability, as it breaks compatibility with new models.
- Add subtitle support for NetFrontâ„¢ Living Connect middleware-based clients.

1.1.2 - Released 06-Mar-2014
--------------------------------
- Show client status on our basic presentation page.
- Add a new force_sort_criteria option, to globally override the SortCriteria value sent by the client.
- Fix a couple resource leaks.
- Add configuration include file support.
- Support DLNA/UPnP-AV searches issued by clients using the Grilo framework.
- Fix some clients playing artwork instead of movie.
- Fix bookmarks on Samsung Series E clients.
- Add an extra folder level if there are multiple media locations.
- Fix some multicast membership issues with changing network settings.
- Make max number of children (connections) configurable.
- Fix choppy playback with some file types on Panasonic clients by increasing the max connection limit.

1.1.1 - Released 01-Nov-2013
--------------------------------
- Add network interface monitoring support on Linux.
- Don't require a configured network interface to start up.
- Fix some minor spec compliance issues.

1.1.0 - Released 04-April-2013
--------------------------------
- Add support for other operating systems.
- Switch to autoconf from our handcrafted genconfig.sh.
- Add configuration option for UUID.
- Add configuration option to specify the user to run as.
- Add support for limiting a media dir to multiple media types.
- Force a rescan if we detect a new or missing media_dir entry.
- Fix crash caused by certain TiVo clients.
- Fix crash bug on video files with some ffmpeg library versions.
- Add support for TiVo MPEG-TS files.
- Add some logging and forking tweaks to work better with systemd.
- Validate or escape user input to prevent SQL injection.
- Add forced sorting support for Panasonic devices.

1.0.25 - Released 13-July-2012
--------------------------------
- Fix a couple crash bugs on malformed WAV files.
- Forcibly tweak the model number for Xbox360 clients, or they might ignore us.
- Enable all network interfaces by default if none were specified.
- Add flag to force downscaled thumbnails rather than using embedded ones.
- Add DirecTV client detection, and fix image resolution issue.
- Add support for the latest ffmpeg/libav library versions.
- Fix a potential crash on requests for a resize of a non-existent image.
- Make DeviceID checking more permissive for Sagem Radio.

(degroote)

2015-01-14 21:04:05 UTC MAIN commitmail json YAML

Added databases/postgresql94 version 9.4.0

(adam)

2015-01-14 21:01:20 UTC MAIN commitmail json YAML

2015-01-14 20:40:32 UTC MAIN commitmail json YAML

mk/pf.buildlink3.mk: any modern fbsd version has pf

Ok@ wiz

(rumko)

2015-01-14 20:39:42 UTC MAIN commitmail json YAML

2015-01-14 17:42:45 UTC MAIN commitmail json YAML

Updated www/py-django to 1.7.3; www/py-django14 to 1.4.18; www/py-django-cms to 3.0.9

(adam)

2015-01-14 17:11:10 UTC MAIN commitmail json YAML

Changes 3.0.9:
* Revert a change that caused a regression in toolbar login
* Fix an error in a translated phrase
* Fix error when moving items in the page tree

(adam)

2015-01-14 17:07:12 UTC MAIN commitmail json YAML

Fixed securify issues:
* WSGI header spoofing via underscore/dash conflation
* Mitigated possible XSS attack via user-supplied redirect URLs
* Denial-of-service attack against django.views.static.serve
* Database denial-of-service with ModelMultipleChoiceField

(adam)

2015-01-14 15:23:11 UTC MAIN commitmail json YAML

Updated devel/p5-AnyEvent-RabbitMQ to 1.18

(mef)

2015-01-14 15:23:02 UTC MAIN commitmail json YAML

Update 1.17 to 1.18
1.18  Mon Sep 29 19:36:00 PDT 2014
      - Added the bind_exchange and unbind_exchange methods
        for exchange-exchange bindings.

(mef)

2015-01-14 14:18:35 UTC MAIN commitmail json YAML

Updated ham/xnec2c to 3.2

(mef)

2015-01-14 14:18:27 UTC MAIN commitmail json YAML

Udate 3.1 to 3.2
----------------
Version 3.2:
I made some changes to the Strlcat() function and its usage in
the xnec2c code, to improve safe handling of string
concatenation operations.  Hopefully this has not broken the
handling of various strings in xnec2c! ;-)

(mef)

2015-01-14 14:12:22 UTC MAIN commitmail json YAML

Updated ham/fldigi to 3.22.05

(mef)

2015-01-14 14:12:12 UTC MAIN commitmail json YAML

Update 3.22.02 to 3.22.05
--------------------------
2015-01-08  David Freese  <iam_w1hkj@w1hkj.com>
        2c9b493: TX Lock
        7c95822: video ID
        b93ea4e: fftfilt
        ed4f49d: Port audio index
        645e7f9: CW output level
        7cc119d: Documentation
        93d2da8: MFSK squelch
        9c8d515: Rx display
        b1ac562: Log fields
        d67d1ab: Native file chooser
        6d11c02: ADIF temp log

=Version 3.22.04=
        2c3b965: xmlrpc

=Version 3.22.03=
        d47ef8a: Berlios
        b986d9d: CW configuration
        3ff2301: DTMF
        0a8f4a3: FFT filter
        3c7b69e: CW xmt filter

2014-12-17  Robert Stiles  <kk5vd@yahoo.com>

        5dc3851: ARQ/KISS IO state conflict (part 2)
* Ensure all state flags reflect selected mode.
* Toggle IO mode in software.

2014-12-17  David Freese  <iam_w1hkj@w1hkj.com>
        fa582c9: Window title
        103c039: Xmt Audio Stream
        6947d33: RX Text
        0612ec9: OpenBSD
        d344fac: LOGGER EXPORT
        d5e257d: Documentation
        b767b48: LOG lookup
        1359a59: Lion/Yosemite madness
        e77aafe: MT63 Olivia Peak signal
        3a00dfc: HTML strings
        311925b: rtty xmt shape
        4298f2d: es nl pl files
        54917d2: WIN32 error reports

2014-11-15  Robert Stiles  <kk5vd@yahoo.com>
        c3e87f0: KPQSL / SQL state conflict
        a488e72: Documentation Update

(mef)

2015-01-14 14:04:15 UTC MAIN commitmail json YAML

Updated www/p5-HTMLObject to 2.29
Updated www/p5-Mojolicious to 5.72
Updated www/p5-Catalyst-View-JSON to 0.35

(mef)

2015-01-14 13:24:24 UTC MAIN commitmail json YAML

Updated textproc/p5-Encode-Locale to 1.04

(wiz)

2015-01-14 13:24:16 UTC MAIN commitmail json YAML

Update to 1.04:

## 2015-01-12  Release 1.04

Ed J (5):

* Actually include all the tests in the MANIFEST
* use Test::More and warnings
* Tidy t/alias.t
* t/arg.t TODO some actual ARGV testing
* Use Win32::GetConsoleCP/GetConsoleOutputCP if available

Gisle Aas (3):

* Documentation spell fix
* SEE ALSO Term::Encoding [RT#98138]

David Steinbrunner (1):

* typo fix

(wiz)

2015-01-14 13:23:18 UTC MAIN commitmail json YAML

Updated security/p5-IO-Socket-SSL to 2.009

(wiz)

2015-01-14 13:23:10 UTC MAIN commitmail json YAML

Update to 2.009:

2.009 2014/01/12
- remove util/analyze.pl. This tool is now together with other SSL tools in
  https://github.com/noxxi/p5-ssl-tools
- added ALPN support (needs OpenSSL1.02, Net::SSLeay 1.56+) thanks to TEAM,
  RT#101452

(wiz)

2015-01-14 13:13:12 UTC MAIN commitmail json YAML

Updated security/p5-Digest-MD5 to 2.54

(wiz)

2015-01-14 13:13:05 UTC MAIN commitmail json YAML

Update to 2.54:

2015-01-12  Gisle Aas <gisle@ActiveState.com>

  Release 2.54

  David Mitchell: silence some compiler warnings
  Jonathan Hall: Add ->context() feature
  Steve Hay: Sync with blead
  bulk88: const the vtable
  zefram: 5.6 threads test fix

(wiz)

2015-01-14 13:12:17 UTC MAIN commitmail json YAML

Updated converters/p5-MIME-Base64 to 3.15

(wiz)

2015-01-14 13:12:10 UTC MAIN commitmail json YAML

Update to 3.15:

2015-01-12  Gisle Aas <gisle@ActiveState.com>

  Release 3.15

  Avoid compilation warnings on Windows.

  Restore compatibility with perl-5.4

(wiz)

2015-01-14 13:09:39 UTC MAIN commitmail json YAML

Updated databases/p5-DBI to 1.633

(wiz)

2015-01-14 13:09:30 UTC MAIN commitmail json YAML

Update to 1.633:

Changes in DBI 1.633 - 11th Jan 2015

    Fixed selectrow_*ref to return undef on error in list context
        instead if an empty list.
    Changed t/42prof_data.t more informative
    Changed $sth->{TYPE} to be NUMERIC in DBD::File drivers as per the
        DBI docs. Note TYPE_NAME is now also available. [H.Merijn Brand]
    Fixed compilation error on bleadperl due DEFSV no longer being an lvalue
        [Dagfinn Ilmari Manns虧er]

    Added docs for escaping placeholders using a backslash.
    Added docs for get_info(9000) indicating ability to escape placeholders.
    Added multi_ prefix for DBD::Multi (Dan Wright) and ad2_ prefix for
        DBD::AnyData2

(wiz)

2015-01-14 12:32:39 UTC MAIN commitmail json YAML

Update 0.34 to 0.35
0.35  Wed Jan 07  12:00:00 CT 2014
        - Specify a version of JSON::MaybXS in the Makefile to close a test
          failure (test case requires version '1.003000' so we made that the
          required version).

(mef)

2015-01-14 12:24:41 UTC MAIN commitmail json YAML

Update 5.71 to 5.72
5.72  2015-01-11
  - Added EXPERIMENTAL support for case-insensitive attribute selectors like
    [foo="bar" i] to Mojo::DOM::CSS.
  - Added max_lines attribute to Mojo::Headers.
  - Improved Mojo::Reactor::EV to update the current time before starting a
    timer.
  - Improved error messages for start-line and header limits.
  - Fixed bug in Mojo::Headers where max_line_size was not checked correctly.
  - Fixed whitespace bug in Mojo::DOM::CSS.

(mef)

2015-01-14 12:20:39 UTC MAIN commitmail json YAML

(pkgsrc)
- Add ${PERL5_LICENSE}
- Add post-patch: target to remove garbage
(upstream)
Update 2.28 to 2.29
2.29 2005-12-10
  - Fixed the setCookie() domain checking to be domain agnostic.
  - Fixed the print(css => []) issue where entries were not being displayed
    one to a line, unless you had postfixed them with \n.
  - If you don't specify a -Options hashref for a select box, it now creates
    an empty one for you instead of blowing an error since this is a usefull
    and valid case.
  - Added #VALUE=x# for Feature Request 1398696.
  - Worked on fixing Bug#1453214 by making the formSubmittedVariable only be
    required when we have form items that depend on it to know what state they
    are in.  checkbox, select, multi-select, select-picker all depend on it.
  - Worked on fixing Bug#1284264 by making the required string only be displayed
    when there are user visible required items.  Improved the createTemplate()
    output to take this into account and to only display the table elements when
    there are user visible form items defined.
  - Fixing bug #1454087.

(mef)

2015-01-14 12:10:14 UTC MAIN commitmail json YAML

Fix build on Snow Leopard which requires the older header location.

(jperkin)

2015-01-14 10:36:17 UTC MAIN commitmail json YAML

Add back missing ecj-4.5.jar

(jperkin)

2015-01-14 09:30:13 UTC MAIN commitmail json YAML

Updated multimedia/adobe-flash-plugin11 to 11.2.202.429

(obache)

2015-01-14 09:30:03 UTC MAIN commitmail json YAML

2015-01-14 09:24:52 UTC MAIN commitmail json YAML

Updated inputmethod/ibus-table-others to 1.3.7

(obache)

2015-01-14 09:24:42 UTC MAIN commitmail json YAML

Update ibus-table-others to 1.3.7.

* Use F1,F2,F3,F4,F5,F6,F7,F8,F9 as select keys for the latex table
* Make rusle agree with http://ru.pc-history.com/wp-content/uploads/ok-keyboard_xt-at1.jpg

(obache)

2015-01-14 08:30:42 UTC MAIN commitmail json YAML

Reset maintainer on his request.

(wiz)

2015-01-14 04:43:55 UTC MAIN commitmail json YAML

Note update of tex-texlive.infra

(minskim)

2015-01-14 04:37:26 UTC MAIN commitmail json YAML

2015-01-14 01:30:30 UTC MAIN commitmail json YAML

Updated graphics/deforaos-icon-theme to 0.1.0

(khorben)

2015-01-14 01:29:32 UTC MAIN commitmail json YAML

Packaged DeforaOS Artwork 0.1.0 as deforaos-icon-theme 0.1.0

This version features additional icons, bug fixes and improvements to the
icons generated (with a truly centered text overlay).

(khorben)

2015-01-14 01:09:09 UTC MAIN commitmail json YAML

nut 19.2 -> 20.1

(mef)

2015-01-14 00:00:39 UTC MAIN commitmail json YAML

bulk build tries to link libiconv

(wiedi)

2015-01-13 23:05:26 UTC MAIN commitmail json YAML

bulk build wants openssl

(wiedi)

2015-01-13 22:21:49 UTC MAIN commitmail json YAML

Note tenshi addition, PR pkg/49486.

(bsiegert)

2015-01-13 22:20:03 UTC MAIN commitmail json YAML

Add a package for tenshi-0.15. By Paul B. Henson in PR pkg/49486.

>From DESCR:
tenshi is a log monitoring program, designed to watch one or more log files for
lines matching user defined regular expressions and report on the matches. The
regular expressions are assigned to queues which have an alert interval and a
list of mail recipients.

Queues can be set to send a notification as soon as there is a log line
assigned to it, or to send periodic reports.

(bsiegert)

2015-01-13 21:35:13 UTC MAIN commitmail json YAML

Add definition for GOTOOLDIR.

This is needed for the go-tools package.

(bsiegert)

2015-01-13 20:25:48 UTC MAIN commitmail json YAML

Note update of mbone/dbeacon to 0.3.9.1nb4.

(he)

2015-01-13 20:25:13 UTC MAIN commitmail json YAML

Re-do the get_timestamp() patch to instead of calling times() use
gettimeofday() directly.  With a 32-bit clock_t and a 100Hz tick,
times() will wrap once every 497 days if my math isn't too far off,
and this will land us in an assert() in dbeacon and with a core dump.
So instead use gettimeofday() and save 2 x getrusage() per earlier
times() call.  Retain some protection against gettimeofday() failing.
Bump PKGREVISION.

(he)

2015-01-13 18:19:01 UTC MAIN commitmail json YAML

devel/libebml: needs a C compiler to build

Ok@ salo

(rumko)

2015-01-13 15:21:07 UTC MAIN commitmail json YAML

+ doxygen-1.8.9

(mef)

2015-01-13 14:08:59 UTC MAIN commitmail json YAML

Updated misc/py-anita to 1.34

(gson)

2015-01-13 14:07:37 UTC MAIN commitmail json YAML

Update misc/py-anita to 1.34.  Changes from 1.33:

Do not require releases to contain install floppies, since amd64 no
longer has them.

The default value of the --boot-from option is now "cdrom" if the
install floppies are missing.

When reporting a failed download of optional files, be clearer that
this is not an error.  Also, don't treat arbitrary exceptions during
downloads as indicating a missing file, only the expected IOError.

Increase the default disk size from 768M to 1G, as 768M is no
longer sufficient for amd64.

New command line option --structured-log-file.  This is like
--structured-log but takes the name of a log file as an
argument, and the structured logging is in addition to, not
instead of, the traditional logging to stdout.

Increase installation timeout from 1 hour to 3 hours so that
a system built with DEBUG and LOCKDEBUG can be installed under
qemu without timing out.

Unconditionally print a greeting message including the version number
of startup, so that logs from automated anita runs will always
indicate the version used.

In --structured-log mode, log the string matched by expect() instead
of the return value, as the latter is always zero and therefore
conveys no useful information.

(gson)

2015-01-13 12:55:22 UTC MAIN commitmail json YAML

Note py-ZopeInterface update.

(bsiegert)

2015-01-13 12:54:25 UTC MAIN commitmail json YAML

Update zope.interface to 4.1.2. Reset maintainer, as sifu tells me he no longer
uses zope nor pkgsrc.
Changes:

4.1.2 (2014-12-27)
Add support for PyPy3.
Remove unittest assertions deprecated in Python3.x.
Add zope.interface.document.asReStructuredText, which formats the generated
text for an interface using ReST double-backtick markers.

4.1.1 (2014-03-19)
Add support for Python 3.4.

4.1.0 (2014-02-05)
Update bootstrap.py to version 2.2.
Add @named(name) declaration, that specifies the component name, so it does not
have to be passed in during registration.

(bsiegert)

2015-01-13 12:17:20 UTC MAIN commitmail json YAML

Fix PLIST for python != 2.7

(wiz)

2015-01-13 08:27:28 UTC MAIN commitmail json YAML

Remove patch for a generated(!) file.  Remove the old-style-named patch
which already tweaked the tty.sh file, name it according to the new rules.

This is to actually get the netbsd-5 branch working with this, since
realpath() insists on a non-NULL second argument.

(he)

2015-01-12 23:45:43 UTC MAIN commitmail json YAML

2015-01-12 21:54:53 UTC MAIN commitmail json YAML

Fix old entry.

(wiz)

2015-01-12 14:29:34 UTC MAIN commitmail json YAML

2015-01-12 14:24:40 UTC MAIN commitmail json YAML

The NetBSD -5 branch's version of realpath() insists on a non-NULL
second argument, so make the usage cater for that.
Bump PKGREVISION.

(he)

2015-01-12 13:55:12 UTC MAIN commitmail json YAML

Updated www/p5-Pod-POM-Web to 1.20
Updated www/p5-Rose-HTML-Objects to 0.621
Updated www/p5-Rose-HTMLx-Form-Related to 0.24
Updated www/p5-Router-Simple to 0.17
Updated www/p5-Squatting to 0.83
Updated www/p5-Starlet to 0.24
Updated www/p5-Starman to 0.4011
Updated www/p5-Template-Toolkit-Simple to 0.31
Updated www/p5-Test-WWW-Mechanize-Catalyst to 0.60
Updated www/p5-Twiggy to 0.1025
Updated www/p5-WWW-Amazon-Wishlist to 2.012
Updated www/p5-WWW-Mechanize to 1.73
Updated www/p5-WWW-Pastebin-PastebinCom-Create to 1.003
Updated www/p5-WWW-Shorten to 3.06
Updated www/p5-Web-Scraper to 0.38

(mef)

2015-01-12 13:53:36 UTC MAIN commitmail json YAML

(pkgsrc)
- Add Following line
  PERL5_MODULE_TYPE=    Module::Build::Tiny
(upstream)
- Update 0.37 to 0.38
0.38  2014-10-19 17:25:53 PDT
        - Improved documentation #8 (vti)
        - Add regexp filter #10 (creaktive)
        - Fix documentation error #16

(mef)

2015-01-12 13:49:30 UTC MAIN commitmail json YAML

Update 3.04 to 3.06
www-shorten (0.1.1) unstable; urgency=low

  * bin/shorten, lib/WWW/Shorten.pm, lib/WWW/Shorten/Metamark.pm,
    t/00load_a.t, t/00load_b.t, t/00noexp.t, t/metamark.t,
    t/newnames.t: Metamark is dead :-(

-- Dave Cross <dave@dave.org.uk>  Mon, 15 Sep 2014 21:30:35 +0100

www-shorten (0.1.1) unstable; urgency=low

  * lib/WWW/Shorten.pm: Typo in documentation.
  * lib/WWW/Shorten.pm: Bump version for CPAN release.
  * INSTALL: Updated the INSTALL instructions.
  * t/tinyurl.t: (Possible) fix to the TinyURL test.
  * README: Modernised README
  * .travis.yml: Added .travis.yml

-- Dave Cross <dave@dave.org.uk>  Tue, 6 May 2014 15:50:50 +0100

(mef)

2015-01-12 13:43:07 UTC MAIN commitmail json YAML

Update 0.004 to 1.003
1.003  2014-01-17
        - Fixed a bug where the module died when a network error occured

1.002  2014-01-11
        - Fixed the module and the tests to handle properly the case
          when we reach the daily 10-pastes limit.

1.001  2014-01-07
        - Resurrected the module for use with App::Nopaste

(mef)

2015-01-12 13:39:27 UTC MAIN commitmail json YAML

Update 1.72 to 1.73
1.73        2013-08-24
========================================
[TESTS]

- Update t/local/back.t to use LocalServer for 404 checking to avoid fails
on win32. Fix by Matt S Trout, patient diagnostics and testing provided
by jayefuu of freenode #perl

- Blow away more proxy env vars in LocalServer, and do it on load so that
the LWP env checking doesn't happen before we've done it.

[OTHER CHANGES]

- Better error when passing only one parameter to follow_link

(mef)

2015-01-12 13:37:28 UTC MAIN commitmail json YAML

Update 2.006 to 2.012
2014-11-28  Kingpin  <Martin@EV-9D9>
* lib/WWW/Amazon/Wishlist.pm (get_list): fixed now that HTML page
          layouts are same

2013-12-14  Kingpin  <Martin@EV-9D9>
* lib/WWW/Amazon/Wishlist.pm (_extract): fixed for new HTML page layouts

(mef)

2015-01-12 13:36:43 UTC MAIN commitmail json YAML

Updated www/moodle to 2.8.2

(wen)

2015-01-12 13:33:34 UTC MAIN commitmail json YAML

Update 0.1024 to 0.1025
0.1025  2015-01-04 07:00:16 JST
        - Fix a bug where Twiggy's run loop exits after a streaming
          request is cut off (hoelzro) #41

(mef)

2015-01-12 13:33:15 UTC MAIN commitmail json YAML

Update to 2.8.2

Upstream changes:
Release date: 12 January, 2015

Here is the full list of fixed issues in 2.8.2.

CONTENTS [hide]
1 Highlights
2 Functional changes
3 API changes
4 UI changes
5 Security issues
6 Fixes and improvements
7 See also
Highlights
MDL-40241 - Default Manager and Teacher role are able to manually mark course as completed
MDL-46442 - Notifications about assignment re-submissions are sent
MDL-43462 - EditPDF correctly shows landscape PDFs
MDL-43679 - Clicking link to Moodle in MS Word no longer results "You are already logged in" message
Functional changes
MDL-42717 - Ensure automated backup files are deleted when an error occurs because of directory permissions
MDL-47601 - Ensure old automated backups are deleted including the case when file name is renamed from language string
MDL-48023 - Changed "Cache-control: private" to "public" on public static files to increase performance
MDL-48224 - In the Task API, each adhoc and scheduled task now has it's own SMTP buffer, and the legacy cron has one buffer for all tasks. Previously scheduled tasks had no buffer, and the legacy cron had a buffer only for tasks of activity modules.
MDL-33606 - Make distinction between all section course view and a single section course view log entry
API changes
MDL-44657 - No more Javascript error when the form class is namespaced
MDL-22309 - get_role_users() works correctly when a user is assigned more than one role
MDL-48697 - Completion directory is recognized by Moodle as a valid component directory
MDL-48495 - Limit protocols supported by curl by default
UI changes
MDL-35078 - End date for self enrolment on the bulk enrolment form now also contains time
MDL-42501 - Added help about deleting grades in the course reset form
MDL-48206 - Wider textarea for the comments in the comments block
Security issues
A number of security related issues were resolved. Details of these issues will be released after a period of approximately one week to allow system administrators to safely update to the latest version.

Fixes and improvements
MDL-40097 - Course completion role criteria no longer causes fatal error
MDL-35494 - User is able to restore an activity even when they own only one course
MDL-20304 - Practice lesson does not appear in Gradebook [Patch]
MDL-45324 - Grading notifications are not sent before the grades are released to students
MDL-47133 - Keyboard shortcuts in Atto do not interfere with regional keyboard settings
MDL-37704 - Possible to lock Description field in users' profiles
MDL-36240 - Calendar events from activities are restored even without user data
MDL-14908 - Parent Role can view courses for students that are in groups
MDL-46472 - Fixed upgrade loop caused by undeletable themes
MDL-31822 - Non-default section name is shown at the site level
MDL-47475 - PDF annotation is visible by all students in the team and not only by the one who made a submission
MDL-47993, MDL-48088 - Correctly parse dates with timezones when importing from Microsoft calendar
MDL-48150 - Fixed a bug whereby only the first post in a forum was sent with the correct headers on each run of cron
MDL-48288, MDL-48191 - Grader report's floating headers work correctly when email or average row is hidden
MDL-48179 - Backup progress no longer times out when compressing large backup
MDL-48164 - 'Reply to email' does not result in out-of-office replies posted in forum

(wen)

2015-01-12 13:31:31 UTC MAIN commitmail json YAML

Update 0.56 to 0.60
0.60 Fri Dec 26 22:00 GMT 2014
    - Make two test cases compatible with Catalyst 5.90080+ changes
      to encoding (UTF8 because default).
    - Added a new test case that runs only under 5.90080 and makes
      sure that expected UTF8 stuff works.

0.59 Mon Jan 13 11:23 GMT 2014
    - Use Class::Load instead of Class::MOP::load_class(). RT#90978
    - Fix typos in POD and comments. RT#85171

0.58 Sat Jun 30 17:01 BST 2012
    - Fix external server test.
    - Fix infinite redirects. RT#76614
    - Make fail to start server more verbose. RT#77174
    - Fix test skip count. RT#77181

0.57 Wed Apr 4 10:03 BRT 2012
    - Fixed RT 52270

(mef)

2015-01-12 13:28:09 UTC MAIN commitmail json YAML

Update 0.16 to 0.31
0.31 Tue Dec  9 08:39:08 PST 2014
- Remove "use lib 'lib';". GitHub Issue

0.30 Sat Aug 16 16:47:08 PDT 2014
- Change testdir to t

0.29 Sat Aug 16 14:24:12 PDT 2014
- Remove =travis section

0.28 Sat Aug 16 12:29:34 PDT 2014
- Meta 0.0.2

0.27 Sat Aug 16 04:08:54 PDT 2014
- Eliminate spurious trailing whitespace

0.26 Fri Aug 15 21:31:26 PDT 2014
- Remove t/use_ok.t

0.25 Fri Aug 15 20:48:08 PDT 2014
- Add t/000-compile-modules.t

0.24 Fri Aug  8 19:03:02 PDT 2014
- Fix bug of using a bad TestMLIncluder.

0.23 Fri Aug  8 12:58:46 PDT 2014
- Switch hashbang to '#!/usr/bin/env perl'

0.22 Tue Aug  5 11:23:13 PDT 2014
- Change IRC channel to irc.freenode.net#pkg

0.21 Tue Aug  5 10:14:59 PDT 2014
- Add badges to doc

0.20 Mon Aug  4 00:35:28 PDT 2014
- Remove (c) from Copyright
- Move doc to swim
- Fix Meta and add Contributing

0.19 Wed Jun 18 11:23:29 PDT 2014
- Tests using TestML needed 'inc'

0.18 Mon Jun 16 15:46:07 PDT 2014
- Switch to manual versioning

0.17 Sun Jun 15 12:04:29 PDT 2014
- Move to Zilla::Dist

(mef)

2015-01-12 13:24:34 UTC MAIN commitmail json YAML

(pkgsrc)
- Add  PERL5_MODULE_TYPE=    Module::Build::Tiny
(upstream)
- Update 0.3006 to 0.4011
0.4011  2014-11-11 08:07:43 PST
        - Move the app dispatch into a method #107

0.4010  2014-08-22 09:37:22 PDT
        - Support --read-timeout #103 (slobo)
        - Handle Expect header case insensitively #101 (oschwald)

0.4009  2014-04-03 14:39:27 PDT
        - Do not send chunked body for HEAD requests #87 (therigu)
        - Added --disable-proctitle option to disable the proctitle change #97

0.4008  2013-09-08 21:09:22 PDT
        - Make response write loop a zero-copy (ap)

0.4007  2013-09-02 17:11:38 PDT
        - Handle EPIPE and stops writing to the socket #84 (ap)

0.4006  2013-08-16 12:43:19 PDT
        - Same as 0.4005, non-devel

0.4005  2013-08-13 22:12:11 PDT
        - Fix SSL implementation bug where body longer than 16K doesn't
          get written correctly #78 (kazeburo, siracusa)

0.4004  2013-08-12 11:41:13 PDT
        - Note that SSL support is experimental

0.4003  2013-08-08 14:32:24 PDT
        - Fix ssl condition for banner

0.4002  2013-08-08 14:20:45 PDT
        - Fix banner message for host/port broken in 0.4 (siracusa)

0.4001  2013-07-29 23:14:10 PDT
        - Skip ssl tests if LWP doesn't support HTTPS

0.4000  2013-07-28 23:53:55 PDT
        - support SSL (aristotle)

0.3014  2013-06-16 01:07:52 PDT
        - bump Test::TCP dep, not really necessary but avoid 1.27 bug

0.3013  2013-06-12 22:52:54 PDT
        - Fix writer tests for Plack update

0.3012  2013-06-12 12:31:11 PDT
        - typo fixes
        - Fix dependencies for LWP::UserAgent

0.3011  2013-04-24 17:39:31 PDT
        - Disabled flock serialization when it's unnecessary. This will
          improve the performance when you have many Starman worker
          processes on Linux systems (kazeburo) #69

0.3010  2013-04-24 07:04:02 PDT
        - Switch back to Module::Build::Tiny with fixed #!perl shebang

0.3009  2013-04-23 17:34:57 PDT
        - Switch to MakeMaker because of shebang bug
          https://github.com/Leont/module-build-tiny/issues/3

0.3008  2013-04-06 22:04:53 PDT
        - switch to Module::Build::Tiny with Milla. Might not install
          bat correctly but we don't support Win32 anyway.

0.3007  2013-03-28 12:55:45 PDT
        - Accept HTTP requests with LF termination per HTTP spec
          recommendation (oschwald) #56
        - Documentation fix (oalders)

(mef)

2015-01-12 13:16:41 UTC MAIN commitmail json YAML

Update 0.18 to 0.24
0.24
- worker processes always receive different sequence of values when
  calling "rand()"
0.23
- serialize calls to select -> accept when listening to multiple ports
0.22
- listen to multiple ports passed from Server::Starter (ttakezawa)
0.21
- support listening to unix socket (passed by Server::Starter) (kazeburo)
0.20
- support HTTP/1.1 (kazeburo)
0.19
- update the dependencies now that Plack no more depends on LWP
          (miyagawa; https://github.com/plack/Plack/pull/408)
- add support for psgix.harakiri (audreyt)

(mef)

2015-01-12 13:16:33 UTC MAIN commitmail json YAML

2015-01-12 13:13:45 UTC MAIN commitmail json YAML

Update 0.81 to 0.83
0.83 Wed Feb 19 19:13:33 PST 2014
  - bin/squatting :: wrapped qw() in parens to avoid syntax warning

0.82 2013-08-11
  - Squatting::With::PerHostConfig was removed, because I realized
    that it couldn't work the way I wanted it, too.  By the time
    it modified %CONFIG, it would be too late to affect the response
    in a meaningful way.
  - Small patch from Duncan Garland to remove warnings issued by perl 5.14

(mef)

2015-01-12 13:10:22 UTC MAIN commitmail json YAML

Update 0.15 to 0.17
0.17 2014-12-02T06:58:23Z
    -  support nested submappers

0.16 2014-10-27T01:39:47Z
    -  Added directory_slash option.
    -    Reformatted as per CPAN::Changes::Spec

(mef)

2015-01-12 13:05:10 UTC MAIN commitmail json YAML

Update 0.22 to 0.24
0.24 2 Nov 2013
- skip POD tests on CPAN

0.23 24 Sept 2013
- doc patch from Adam Mackler
- doc patch and RDBO tests inspired by mailing list questions from Gordon
  Haverland
- treat many-to-one relationship like foreign key relationship in RDBO metadata
- master repository moved to github, Changes file ran through tidy_changelog

(mef)

2015-01-12 12:59:56 UTC MAIN commitmail json YAML

Update 0.620 to 0.621
0.621 (02.14.2014) - John Siracusa <siracusa@gmail.com>

    * Fixed a bug that caused Rose::HTML::Form::Field::Time fields to fail
      validation when empty.

(mef)

2015-01-12 12:57:47 UTC MAIN commitmail json YAML

Update 1.19 to 1.20
1.20 27.04.2014
  - #95075 fix relative urls to absolutes in initial frameset
  - get rid of old method "redirect_index"
  - fix obsolete hyperlinks (cpanforum, Kobes)

(mef)

2015-01-12 12:51:29 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-Parser to 2.44

(wen)

2015-01-12 12:50:15 UTC MAIN commitmail json YAML

Update to 2.44

Upstream changes:
2.44 2015-01-12 (by Todd Rinaldo)
    - RT 99098 - Revert "Add more useful error message on parse to Expat". It breaks
      XML::Twig. Calling code will need to do this if it's needed.
    - RT 100959 - Add use FileHandle to t/astress.t - Make perl 5.10.0 happy.

(wen)

2015-01-12 12:38:49 UTC MAIN commitmail json YAML

Updated archivers/p5-Archive-Zip to 1.42

(wen)

2015-01-12 12:32:01 UTC MAIN commitmail json YAML

Update to 1.42

Upstream changes:
1.42 Sun 11 Jan 2015
    - Revert 101374, caused tester regression
    - https://rt.cpan.org/Public/Bug/Display.html?id=101240 [cpan/PMQS]

1.41 Fri 09 Jan 2015
    - https://rt.cpan.org/Public/Bug/Display.html?id=101374 [zefram]

(wen)

2015-01-12 12:19:25 UTC MAIN commitmail json YAML

2015-01-12 12:03:55 UTC MAIN commitmail json YAML

Updated net/mikutter to 3.2.2

(obache)

2015-01-12 12:03:47 UTC MAIN commitmail json YAML

Update mikutter to 3.2.2.

* fixes crash with missing source for extraction tab.
* fixes always UTC timezone with Ruby2.2.

(obache)

2015-01-12 11:47:59 UTC MAIN commitmail json YAML

forgot to bump revision

(is)

2015-01-12 11:47:51 UTC MAIN commitmail json YAML

Updated databases/py-ldap to 2.4.19

(adam)

2015-01-12 11:47:33 UTC MAIN commitmail json YAML

Updated databases/py-ldap to 2.4.19

(adam)

2015-01-12 11:46:29 UTC MAIN commitmail json YAML

Changes 2.4.19:
* Fixed missing ReconnectLDAPObject._reconnect_lock when pickling
* Added ldap.controls.pagedresults which is pure Python implementation of
  Simple Paged Results Control (see RFC 2696) and delivers the correct
  result size

(adam)

2015-01-12 11:44:09 UTC MAIN commitmail json YAML

new rgb.txt location finding code requires new SUBST.
This is incomplete in that the X11 locations should probably be patched,
too; OTOH, the netpbm rgb.txt is found now, and the environment variable
RGBDEF works also.

(is)

2015-01-12 11:40:43 UTC MAIN commitmail json YAML

2015-01-12 11:25:06 UTC MAIN commitmail json YAML