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 (15m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (43d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 16:15:36 UTC Now

2014-02-02 14:56:59 UTC MAIN commitmail json YAML

Update to 6.0.1

Changelog:
Version 6.0.1 Jan 22th 2014

    Fix handling of encryption keys
    Disable xcache in case admin auth is disabled
    Speed DB improvements in user home directory location fetching
    Fix some APC configuration problems
    Fix duplicate .exe mime-type detection
    Support DECIMAL DB schema statement
    Fix some API response code problems
    Added download workaround for some Android versions.
    Turn off not working mod_pagespeed extension
    Command line tool option to show user number
    Some LDAP fixes for certain configurations
    Fix previews for reshared files
    Fix unshare on delete behaviour
    Fix a CIFS mounting timezone problem
    File Trash handling fixes
    Fix potential data corruption problem during massive parallel uploads of the same file
    Fix versions expiration logic
    Fix public upload progress bar
    Fix issues with intermittent ���Insufficient Storage��� message when quota is enabled

(ryoon)

2014-02-02 14:11:26 UTC MAIN commitmail json YAML

Updated geography/gipfel to 0.4.0

(rodent)

2014-02-02 14:11:14 UTC MAIN commitmail json YAML

Update to latest release, 0.4.0. From ChangeLog:

gipfel-0.4.0
* Fix compilation with fltk-1.3.x.
* Use proper distance for distortion correction.
* Don't update coordinates of marked hills.
* Remove compute button.
  Positions are now updated automatically when marked hills are moved.
* Fix focal length for images in portrait format.
* Fix up/down keys in viewpoint chooser.

(rodent)

2014-02-02 14:07:49 UTC MAIN commitmail json YAML

Remove PYPKGPREFIX from DIST_SUBDIR.

(rodent)

2014-02-02 13:58:46 UTC MAIN commitmail json YAML

Updated net/py-kombu to 3.0.10

(rodent)

2014-02-02 13:58:34 UTC MAIN commitmail json YAML

Updated to latest release, 3.0.10. Now depends on net/py-amqp>=1.4.1. From
Changelog:

3.0.10
======

- Now depends on :mod:`amqp` 1.4.1.
- ``maybe_declare`` now raises a "recoverable connection error" if
  the channel is disconnected instead of a :exc:`ChannelError` so that
  the operation can be retried.
- Redis: ``Consumer.cancel()`` is now thread safe.
    This fixes an issue when using gevent/eventlet and a
    message is handled after the consumer is cancelled resulting
    in a "message for queue without consumers" error.
- Retry operations would not always respect the interval_start
  value when calculating the time to sleep for (Issue #303).
- Timer: Fixed "unhashable type" error on Python 3.
- Hub: Do not attempt to unregister operations on an already closed
  poller instance.

3.0.9
=====

- Now depends on :mod:`amqp` 1.4.0.
- Redis: Basic cancel for fanout based queues now sends a corresponding
  ``UNSUBSCRIBE`` command to the server.
    This fixes an issue with pidbox where reply messages could be received
    after the consumer was cancelled, giving the ``"message to queue without
    consumers"`` error.
- MongoDB: Improved connection string and options handling
  (Issue #266 + Issue #120).
- SQS: Limit the number of messages when receiving in batch to 10.
    This is a hard limit enforced by Amazon so the sqs transport
    must not exceeed this value.
- ConsumerMixin: ``consume`` now checks heartbeat every time the
  socket times out.
- Retry Policy: A max retries of 0 did not retry forever.
- Simple: If passing a Queue object the simple utils will now take
  default routing key from that queue.
- ``repr(producer)`` no longer evaluates the underlying channnel.
- Redis: The map of Redis error classes are now exposed at the module level
  using the :func:`kombu.transport.redis.get_redis_error_classes` function.
- Async: ``Hub.close`` now sets ``.poller`` to None.

(rodent)

2014-02-02 13:51:50 UTC MAIN commitmail json YAML

- FETCH_USING.

(wiz)

2014-02-02 13:51:34 UTC MAIN commitmail json YAML

Updated net/py-amqp to 1.4.2

(rodent)

2014-02-02 13:51:16 UTC MAIN commitmail json YAML

Update to latest relese, 1.4.2. Use DIST_SUBDIR, since this is a github
distfile. From Changelog:

1.4.2
=====

- Heartbeat negotiation would use heartbeat value from server even
  if heartbeat disabled (Issue #31).

1.4.1
=====

- Fixed error occurring when heartbeats disabled.

1.4.0
=====

- Heartbeat implementation improved (Issue #6).

    The new heartbeat behavior is the same approach as taken by the
    RabbitMQ java library.

    This also means that clients should preferably call the ``heartbeat_tick``
    method more frequently (like every second) instead of using the old
    ``rate`` argument (which is now ignored).

    - Heartbeat interval is negotiated with the server.
    - Some delay is allowed if the heartbeat is late.
    - Monotonic time is used to keep track of the heartbeat
      instead of relying on the caller to call the checking function
      at the right time.
- NoneType is now supported in tables and arrays.
- SSLTransport: Now handles ``ENOENT``.

(rodent)

2014-02-02 11:09:51 UTC MAIN commitmail json YAML

2014-02-02 11:01:58 UTC MAIN commitmail json YAML

Updated devel/mdds to 0.10.1

(ryoon)

2014-02-02 10:59:44 UTC MAIN commitmail json YAML

Update to 0.10.1

* Install more header files.
* Tweak Makefile

Changelog:
* multi_type_matrix

  * added a variant of set_empty() that takes an additional length
    parameter.

    * void set_empty(size_type row, size_type col, size_type length)

mdds 0.10.0

* flat_segment_tree

  * significant performance improvement on build_tree() and
    search_tree(), by optimizing the non-leaf node object generation
    and storage to achieve better locality of reference.

* segment_tree

  * slight performance improvement on build_tree(), as a result of the
    optimization done for flat_segment_tree since these two structures
    share the same tree generation code.

* multi_type_vector

  * improved debug message on mis-matched block types (only when
    MDDS_MULTI_TYPE_VECTOR_DEBUG is defined).

mdds 0.9.1

* multi_type_vector

  * added several convenience methods for position objects.

  * performance improvement on setting array values.

  * added new constructor that takes an array of values as initial
    element values.

* multi_type_matrix

  * setter methods that take a position object to also return a
    position object.

  * added several convenience methods for position objects.

  * added new constructor that takes an array of values as initial
    element values.

(ryoon)

2014-02-02 10:47:24 UTC MAIN commitmail json YAML

2014-02-02 10:19:52 UTC MAIN commitmail json YAML

Updated pkgtools/pkg_notify to 0.4.4

(wiz)

2014-02-02 10:19:41 UTC MAIN commitmail json YAML

2014-02-02 09:49:17 UTC MAIN commitmail json YAML

Updated textproc/libodfgen to 0.0.3

(ryoon)

2014-02-02 09:48:31 UTC MAIN commitmail json YAML

Update to 0.0.3

Changelog:
libodfgen 0.0.3

- handle more table properties
- more SVG path commands
- allow to define center of rotation for a textbox
- make linked text boxes more robust
- add support for generating presentations (using libetonyek)
- start on API documentation

(ryoon)

2014-02-02 08:49:38 UTC MAIN commitmail json YAML

Fix PLIST for 1.5.2 update.

(wiz)

2014-02-02 08:36:48 UTC MAIN commitmail json YAML

PYTHON_VERSIONS_INCOMPATIBLE=  33 # py-vobject

(wiz)

2014-02-02 08:25:05 UTC MAIN commitmail json YAML

Remove obsolete patch (it now reintroduced the warning instead of fixing it)

(wiz)

2014-02-02 08:21:05 UTC MAIN commitmail json YAML

regen for 1.5.2 update

(wiz)

2014-02-02 08:15:50 UTC MAIN commitmail json YAML

When using pbulk as-is we have to recursively mark python-3.x packages
as not buildable even if just one of their dependencies is not, because
otherwise the dependency resolving step doesn't finish and the build
is not started.
For this reason, re-add "PYTHON_VERSIONS_INCOMPATIBLE=  33 # py-gtk2 via py-pycha"

(wiz)

2014-02-02 07:59:03 UTC MAIN commitmail json YAML

Note update of net/bind96 to package to 9.6.3.1.ESV.11 and net/bind99
package to 9.9.5.

(taca)

2014-02-02 07:58:20 UTC MAIN commitmail json YAML

Update bind99 to 9.9.5 (BIND 9.9.5).

Security fixes were already covered by 9.9.4pl2.

Some bug fixes and clean up, please refer CHANGES file in detail.

(taca)

2014-02-02 07:55:46 UTC MAIN commitmail json YAML

Update bind96 to 9.6.3.1.ESV.11 (BIND 9.6-ESV-R11).

Security fixes were already covered by 9.6.3.1.ESV.10pl2 and this is
the final release of 9.6.ESV.

Several bug fixes and clean up, please refer CHANGES file in detail.

(taca)

2014-02-02 07:49:57 UTC MAIN commitmail json YAML

2014-02-02 07:48:35 UTC MAIN commitmail json YAML

Revert accidently commit files which not yet ready.

(taca)

2014-02-02 07:48:11 UTC MAIN commitmail json YAML

Added graphics/graphite2 version 1.2.4

(ryoon)

2014-02-02 07:47:36 UTC MAIN commitmail json YAML

Import graphite2-1.2.4 as graphics/graphite2.

Graphite is a project within SIL's scripts and software dev
groups to provide cross-platform rendering for complex writing
systems.

Graphite2, a new version of the Graphite engine, is available
at: http://projects.palaso.org/projects/graphitedev with its
own bug tracker.

(ryoon)

2014-02-02 07:46:16 UTC MAIN commitmail json YAML

2014-02-02 07:44:08 UTC MAIN commitmail json YAML

Updated misc/libreoffice4 to 4.2.0.4

(ryoon)

2014-02-02 07:43:40 UTC MAIN commitmail json YAML

pkgsrc/misc/libreoffice4/Makefile@1.15 / diff
pkgsrc/misc/libreoffice4/PLIST@1.5 / diff
pkgsrc/misc/libreoffice4/PLIST.java@1.3 / diff
pkgsrc/misc/libreoffice4/distinfo@1.6 / diff
pkgsrc/misc/libreoffice4/options.mk@1.2 / diff
pkgsrc/misc/libreoffice4/patches/patch-binaryurp_source_cache.hxx deleted
pkgsrc/misc/libreoffice4/patches/patch-binaryurp_source_lessoperators.cxx deleted
pkgsrc/misc/libreoffice4/patches/patch-binaryurp_source_lessoperators.hxx deleted
pkgsrc/misc/libreoffice4/patches/patch-bridges_source_cpp__uno_gcc3__linux__intel_share.hxx deleted
pkgsrc/misc/libreoffice4/patches/patch-bridges_source_cpp__uno_gcc3__linux__x86-64_share.hxx deleted
pkgsrc/misc/libreoffice4/patches/patch-bridges_source_cpp__uno_gcc3__linux__x86-64_uno2cpp.cxx deleted
pkgsrc/misc/libreoffice4/patches/patch-configure deleted
pkgsrc/misc/libreoffice4/patches/patch-configure.ac@1.2 / diff
pkgsrc/misc/libreoffice4/patches/patch-filter_source_graphicfilter_ipbm_ipbm.cxx deleted
pkgsrc/misc/libreoffice4/patches/patch-filter_source_graphicfilter_ipcd_ipcd.cxx deleted
pkgsrc/misc/libreoffice4/patches/patch-filter_source_graphicfilter_ipcx_ipcx.cxx deleted
pkgsrc/misc/libreoffice4/patches/patch-filter_source_graphicfilter_iras_iras.cxx deleted
pkgsrc/misc/libreoffice4/patches/patch-filter_source_graphicfilter_itga_itga.cxx deleted
pkgsrc/misc/libreoffice4/patches/patch-include_sal_log.hxx deleted
pkgsrc/misc/libreoffice4/patches/patch-odk_CustomTarget__classes.mk@1.2 / diff
      :
(more 9 files)

2014-02-02 07:38:08 UTC MAIN commitmail json YAML

Updated converters/libcdr to 0.0.14
Updated converters/libmwaw to 0.2.0
Added converters/libabw version 0.0.1
Added converters/libe-book version 0.0.2
Added converters/libetonyek version 0.0.3
Added converters/libfreehand version 0.0.0

(ryoon)

2014-02-02 07:33:18 UTC MAIN commitmail json YAML

2014-02-02 07:31:30 UTC MAIN commitmail json YAML

Import libfreehand-0.0.0 as converters/libfreehand.

Libfreehand is library providing ability to interpret and import
Adobe/Macromedia drawings into various applications. You can find
it being used in libreoffice.

(ryoon)

2014-02-02 07:29:35 UTC MAIN commitmail json YAML

Import libetonyek-0.0.3 as converters/libetonyek.

Libetonyek is library providing ability to interpret and import
Apple Keynote presentations into various applications. You can find
it being used in libreoffice.

(ryoon)

2014-02-02 07:28:11 UTC MAIN commitmail json YAML

Import libe-book-0.0.2 as converters/libe-book.

libe-book is a library and a set of tools for reading and converting
various non-HTML reflowable e-book formats.

Currently supported are:
- eReader .pdb
- FictionBook v. 2 (including zipped files)
- PalmDoc Ebook
- Plucker .pdb
- QiOO (mobile format, for java-enabled cellphones)
- TCR (simple compressed text format)
- TealDoc
- zTXT
- ZVR (simple compressed text format)

For convenience of use in third-party projects the library is available under
two licenses: GNU Lesser GPL 2.1+ and MPL 2.0+.

(ryoon)

2014-02-02 07:27:04 UTC MAIN commitmail json YAML

Import libabw-0.0.1 as converters/libabw.

Libabw is library providing ability to interpret and import AbiWord
documents into various applications. You can find it being used in
libreoffice.

(ryoon)

2014-02-02 07:25:39 UTC MAIN commitmail json YAML

2014-02-02 07:22:15 UTC MAIN commitmail json YAML

Update to 0.0.14

* Remove c from USE_LANGUAGES to suppress many and many warnings
  (I cannot understant what happens.)
* Disable documentation generation with doxygen

CHangelo:
Not available.

(ryoon)

2014-02-02 07:19:29 UTC MAIN commitmail json YAML

Install the correct files for KDE SC 4.11.5

(markd)

2014-02-02 07:19:22 UTC MAIN commitmail json YAML

Updated converters/libwpg to 0.2.2

(ryoon)

2014-02-02 07:18:26 UTC MAIN commitmail json YAML

2014-02-02 07:10:50 UTC MAIN commitmail json YAML

2014-02-02 07:09:23 UTC MAIN commitmail json YAML

update coreutils files to 8.22

(richard)

2014-02-02 07:08:25 UTC MAIN commitmail json YAML

Update to coreutils-8.22

There have been 195 commits by 32 people in the 10 months since 8.21

Executive summary: 8.22 is mainly a bug fix and performance improvement release.
tail(1) has fixes for handling initially non existent files, and df now has
better handling of specified disk device nodes.  On the performance side,
there have been many improvements to the memory usage of various tools, which
are detailed at http://www.pixelbeat.org/programming/avoiding_large_buffers.html
There have been large throughput improvements in cut(1) and base64 encoding.
Also the md5sum and sha*sum utilities have support for using architecture
specific routines to improve performance, if allowed on your distribution.
There are also new features available, including SELinux "restorecon" support
in various file creation utilities through the -Z option, and shred has a new
--repeat option to continually select random items from the input.

See the NEWS below for more details.

Thanks to everyone who has contributed!
The following people contributed changes to this release:

  Andreas Mohr (1)
  Anton Ovchinnikov (2)
  Assaf Gordon (8)
  Benno Schulenberg (2)
  Bernhard Voelker (28)
  Cojocaru Alexandru (4)
  Colin Leitner (1)
  D. Hugh Redelmeier (1)
  Daniel J Walsh (1)
  Enrico Scholz (1)
  Eric Blake (1)
  FUJIWARA Katsunori (1)
  Filipus Klutiero (1)
  Gian Piero Carrubba (1)
  Jarkko Sakkinen (4)
  Javier López (1)
  Jim Meyering (6)
  Joachim Schmitz (2)
  John (1)
  Karl Berry (1)
  Ken Booth (1)
  Mike Frysinger (1)
  Ondrej Oprala (2)
  Ondřej Vašík (2)
  Paul Eggert (10)
  Pádraig Brady (106)
  Rasmus Villemoes (1)
  Rémy Lefevre (1)
  Sergio Durigan Junior (1)
  Stefano Lattarini (3)
  Tiger Lee (1)
  Torbjörn Granlund (1)

Special thanks to Bernhard Voelker for his many considered patches and reviews,
and to Assaf Gordon for his work on new (and future) features.

Pádraig [on behalf of the coreutils maintainers]

==================================================================

Here is the GNU coreutils home page:
    http://gnu.org/s/coreutils/

For a summary of changes and contributors, see:
  http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=shortlog;h=v8.22
or run this command from a git-cloned coreutils directory:
  git shortlog v8.21..v8.22

To summarize the 255 gnulib-related changes, run these commands
>From a git-cloned coreutils directory:
  git checkout v8.22
  git submodule summary v8.21

==================================================================

Here are the compressed sources and a GPG detached signature[*]:
  http://ftp.gnu.org/gnu/coreutils/coreutils-8.22.tar.xz
  http://ftp.gnu.org/gnu/coreutils/coreutils-8.22.tar.xz.sig

Use a mirror for higher download bandwidth:
  http://ftpmirror.gnu.org/coreutils/coreutils-8.22.tar.xz
  http://ftpmirror.gnu.org/coreutils/coreutils-8.22.tar.xz.sig

[*] Use a .sig file to verify that the corresponding file (without the
.sig suffix) is intact.  First, be sure to download both the .sig file
and the corresponding tarball.  Then, run a command like this:

  gpg --verify coreutils-8.22.tar.xz.sig

If that command fails because you don't have the required public key,
then run this command to import it:

  gpg --keyserver keys.gnupg.net --recv-keys DF6FD971306037D9

and rerun the 'gpg --verify' command.

This release was bootstrapped with the following tools:
  Autoconf 2.69
  Automake 1.13.4
  Gnulib v0.1-38-g0658e50
  Bison 2.7

NEWS

* Noteworthy changes in release 8.22 (2013-12-13) [stable]

** Bug fixes

  df now processes the mount list correctly in the presence of unstatable
  mount points.  Previously it may have failed to output some mount points.
  [bug introduced in coreutils-8.21]

  df now processes symbolic links and relative paths to special files containing
  a mounted file system correctly.  Previously df displayed the statistics about
  the file system the file is stored on rather than the one inside.
  [This bug was present in "the beginning".]

  df now processes disk device nodes correctly in the presence of bind mounts.
  Now df shows the base mounted file system rather than the last one mounted.
  [This bug was present in "the beginning".]

  install now removes the target file if the strip program failed for any
  reason.  Before, that file was left behind, sometimes even with wrong
  permissions.
  [This bug was present in "the beginning".]

  ln --relative now updates existing symlinks correctly.  Previously it based
  the relative link on the dereferenced path of an existing link.
  [This bug was introduced when --relative was added in coreutils-8.16.]

  ls --recursive will no longer exit with "serious" exit code (2), if there
  is an error reading a directory not specified on the command line.
  [Bug introduced in coreutils-5.3.0]

  mkdir, mkfifo, and mknod now work better when creating a file in a directory
  with a default ACL whose umask disagrees with the process's umask, on a
  system such as GNU/Linux where directory ACL umasks override process umasks.
  [bug introduced in coreutils-6.0]

  mv will now replace empty directories in the destination with directories
  from the source, when copying across file systems.
  [This bug was present in "the beginning".]

  od -wN with N larger than 64K on a system with 32-bit size_t would
  print approximately 2*N bytes of extraneous padding.
  [Bug introduced in coreutils-7.0]

  rm -I now prompts for confirmation before removing a write protected file.
  [Bug introduced in coreutils-6.8]

  shred once again uses direct I/O on systems requiring aligned buffers.
  Also direct I/O failures for odd sized writes at end of file are now handled.
  [The "last write" bug was introduced in coreutils-5.3.0 but masked
  by the alignment bug introduced in coreutils-6.0]

  tail --retry -f now waits for the files specified to appear.  Before, tail
  would immediately exit when such a file is initially inaccessible.
  [This bug was introduced when inotify support was added in coreutils-7.5]

  tail -F has improved handling of symlinks.  Previously tail didn't respond
  to the symlink target (re)appearing after being (re)created.
  [This bug was introduced when inotify support was added in coreutils-7.5]

** New features

  cp, install, mkdir, mknod, mkfifo and mv now support "restorecon"
  functionality through the -Z option, to set the SELinux context
  appropriate for the new item location in the file system.

  csplit accepts a new option: --suppressed-matched, to elide the lines
  used to identify the split points.

  df --output now accepts a 'file' field, to propagate a specified
  command line argument through to the output.

  du accepts a new option: --inodes to show the number of inodes instead
  of the blocks used.

  id accepts a new option: --zero (-z) to delimit the output entries by
  a NUL instead of a white space character.

  id and ls with -Z report the SMACK security context where available.
  mkdir, mkfifo and mknod with -Z set the SMACK context where available.

  id can now lookup by user ID, in addition to the existing name lookup.

  join accepts a new option: --zero-terminated (-z). As with the sort,uniq
  option of the same name, this makes join consume and produce NUL-terminated
  lines rather than newline-terminated lines.

  uniq accepts a new option: --group to print all items, while separating
  unique groups with empty lines.

  shred accepts new parameters to the --remove option to give greater
  control over that operation, which can greatly reduce sync overhead.

  shuf accepts a new option: --repeat (-r), which can repeat items in
  the output.

** Changes in behavior

  cp --link now dereferences a symbolic link as source before creating the
  hard link in the destination unless the -P,--no-deref option is specified.
  Previously, it would create a hard link of the symbolic link, even when
  the dereferencing options -L or -H were specified.

  cp, install, mkdir, mknod and mkfifo no longer accept an argument to the
  short -Z option.  The --context equivalent still takes an optional argument.

  dd status=none now suppresses all non fatal diagnostic messages,
  not just the transfer counts.

  df no longer accepts the long-obsolescent --megabytes option.

  stdbuf now requires at least one buffering mode option to be specified,
  as per the documented interface.

** Improvements

  base64 encoding throughput for bulk data is increased by about 60%.

  md5sum can use libcrypto hash routines where allowed to potentially
  get better performance through using more system specific logic.
  sha1sum for example has improved throughput by 40% on an i3-2310M.
  This also affects sha1sum, sha224sum, sha256sum, sha384sum and sha512sum.

  stat and tail work better with EFIVARFS, EXOFS, F2FS, HOSTFS, SMACKFS, SNFS
  and UBIFS.  stat -f --format=%T now reports the file system type, and tail -f
  now uses inotify for files on all those except SNFS, rather than the default
  (for unknown file system types) of issuing a warning and reverting to polling.

  shuf outputs subsets of large inputs much more efficiently.
  Reservoir sampling is used to limit memory usage based on the number of
  outputs, rather than the number of inputs.

  shred increases the default write block size from 12KiB to 64KiB
  to align with other utilities and reduce the system call overhead.

  split --line-bytes=SIZE, now only allocates memory as needed rather
  than allocating SIZE bytes at program start.

  stty now supports configuring "stick" (mark/space) parity where available.

** Build-related

  factor now builds on aarch64 based systems [bug introduced in coreutils-8.20]

(richard)

2014-02-02 06:58:22 UTC MAIN commitmail json YAML

Updated devel/py-pip to 1.5.2

(rodent)

2014-02-02 06:58:08 UTC MAIN commitmail json YAML

Updated to latest release, 1.5.2. From CHANGES.txt:

1.5.2 (2014-01-26)
------------------

* Upgraded the vendored ``pkg_resources`` and ``_markerlib`` to setuptools 2.1.
* Fixed an error that prevented accessing PyPI when pyopenssl, ndg-httpsclient,
  and pyasn1 are installed
* Fixed an issue that caused trailing comments to be incorrectly included as
  part of the URL in a requirements file

1.5.1 (2014-01-20)
------------------

* pip now only requires setuptools (any setuptools, not a certain version) when
  installing distributions from src (i.e. not from wheel). (Pull #1434).
* `get-pip.py` now installs setuptools, when it's not already installed (Pull
  #1475)
* Don't decode downloaded files that have a ``Content-Encoding`` header. (Pull
  #1435)
* Fix to correctly parse wheel filenames with single digit versions. (Pull
  #1445)
* If `--allow-unverified` is used assume it also means `--allow-external`. (Pull
  #1457)

(rodent)

2014-02-02 03:32:23 UTC MAIN commitmail json YAML

note bozohttpd 20140201 update.

(mrg)

2014-02-02 03:31:34 UTC MAIN commitmail json YAML

update to bozohttpd 20140201.  fixes a core dump.

(mrg)

2014-02-02 01:00:45 UTC MAIN commitmail json YAML

Fix PLIST based on last fix to PKGNAME. Bump PKGREVISION.

(rodent)

2014-02-02 00:58:06 UTC MAIN commitmail json YAML

2014-02-02 00:50:01 UTC MAIN commitmail json YAML

2014-02-02 00:49:28 UTC MAIN commitmail json YAML

Added net/py-caldav version caldav

(rodent)

2014-02-02 00:49:17 UTC MAIN commitmail json YAML

Import py27-caldav as net/py-caldav.

This project is a CalDAV (RFC4791) client library for Python. A lot of work
still needs to be done; however, it can read everything, and write a few things
(create calendars, events, modify events and properties).

(rodent)

2014-02-02 00:28:27 UTC MAIN commitmail json YAML

2014-02-02 00:27:48 UTC MAIN commitmail json YAML

Added graphics/py-qrcode version 4.0.4

(rodent)

2014-02-02 00:27:38 UTC MAIN commitmail json YAML

Import py27-qrcode-4.0.4 as graphics/py-qrcode.

QR Code image generator in Python. This package uses Pillow, which is
recommended by upstream, instead of the default Python Imaging Library.

(rodent)

2014-02-02 00:11:51 UTC MAIN commitmail json YAML

+py-six; Packaged originally in pkgsrc-wip by:
ahp-nils@users.sourceforge.net

(rodent)

2014-02-02 00:10:39 UTC MAIN commitmail json YAML

Added lang/py-six version 1.5.2

(rodent)

2014-02-02 00:10:18 UTC MAIN commitmail json YAML

Import py27-six-1.5.2 as lang/py-six.

Six is a Python 2 and 3 compatibility library. It provides utility functions
for smoothing over the differences between the Python versions with the goal
of writing Python code that is compatible on both Python versions. See the
documentation for more information on what is provided.

Six supports Python 2.4+.

(rodent)

2014-02-01 23:28:27 UTC MAIN commitmail json YAML

Updated textproc/py-relatorio to 0.6.0

(rodent)

2014-02-01 23:28:09 UTC MAIN commitmail json YAML

Updated to latest release, 0.6.0. This package is not incompatible with
python33. Its dependencies are, but not the package itself. From CHANGELOG:

0.6.0 - 20130810
* Add support for Python 3
* Allow to pass only source to Template

(rodent)

2014-02-01 22:54:50 UTC MAIN commitmail json YAML

+py-trytond-stock-lot

(rodent)

2014-02-01 22:52:48 UTC MAIN commitmail json YAML

Added misc/py-trytond-stock-lot version 3.0.0

(rodent)

2014-02-01 22:51:36 UTC MAIN commitmail json YAML

Import py27-trytond-stock-lot-3.0.0 as misc/py-trytond-stock-lot.

The stock_lot module of the Tryton application platform.

(rodent)

2014-02-01 20:24:09 UTC MAIN commitmail json YAML

+py-trytond-stock

(rodent)

2014-02-01 20:23:45 UTC MAIN commitmail json YAML

Added misc/py-trytond-stock version 3.0.1

(rodent)

2014-02-01 20:23:35 UTC MAIN commitmail json YAML

Import py27-trytond-stock-3.0.1 as misc/py-trytond-stock.

The stock module of the Tryton application platform.

(rodent)

2014-02-01 20:13:28 UTC MAIN commitmail json YAML

+py-trytond-calendar

(rodent)

2014-02-01 20:12:50 UTC MAIN commitmail json YAML

Added time/py-trytond-calendar version 3.0.2

(rodent)

2014-02-01 20:12:32 UTC MAIN commitmail json YAML

Import py27-trytond-calendar-3.0.2 as time/py-trytond-calendar.

The calendar module of the Tryton application platform.

(rodent)

2014-02-01 19:46:29 UTC MAIN commitmail json YAML

+py-trytond-account-invoice

(rodent)

2014-02-01 19:45:48 UTC MAIN commitmail json YAML

Added finance/py-trytond-account-invoice version 3.0.1

(rodent)

2014-02-01 19:45:37 UTC MAIN commitmail json YAML

Import py27-trytond-account-invoice-3.0.1 as finance/py-trytond-account-invoice.

The account_invoice module of the Tryton application platform.

(rodent)

2014-02-01 19:44:35 UTC MAIN commitmail json YAML

PYTHON_VERSIONS_INCOMPATIBLE=33 according to setup.py

(rodent)

2014-02-01 19:41:31 UTC MAIN commitmail json YAML

Enter/Leave are used by wxGTK, so undef them before including its
headers.

(joerg)

2014-02-01 19:39:42 UTC MAIN commitmail json YAML

Fix build on NetBSD/current.

(joerg)

2014-02-01 19:39:17 UTC MAIN commitmail json YAML

Expose libraries needed for -lgii.

(joerg)

2014-02-01 19:37:43 UTC MAIN commitmail json YAML

+py-trytond-account-product

(rodent)

2014-02-01 19:36:59 UTC MAIN commitmail json YAML

Added finance/py-trytond-account-product version 3.0.0

(rodent)

2014-02-01 19:36:49 UTC MAIN commitmail json YAML

Import py27-trytond-account-product-3.0.0 as finance/py-trytond-account-product.

The account_product module of the Tryton application platform.

(rodent)

2014-02-01 19:29:14 UTC MAIN commitmail json YAML

+py-trytond-product

(rodent)

2014-02-01 19:28:48 UTC MAIN commitmail json YAML

Added misc/py-trytond-product version 3.0.0

(rodent)

2014-02-01 19:28:37 UTC MAIN commitmail json YAML

Import py27-trytond-product-3.0.0 as misc/py-trytond-product.

The product module of the Tryton application platform.

(rodent)

2014-02-01 19:14:58 UTC MAIN commitmail json YAML

+py-trytond-account

(rodent)

2014-02-01 19:14:34 UTC MAIN commitmail json YAML

Added finance/py-trytond-account version 3.0.1

(rodent)

2014-02-01 19:14:22 UTC MAIN commitmail json YAML

Import py27-trytond-account-3.0.1 as finance/py-trytond-account.

The account module of the Tryton application platform.

(rodent)

2014-02-01 19:05:21 UTC MAIN commitmail json YAML

+py-trytond-company

(rodent)

2014-02-01 19:04:42 UTC MAIN commitmail json YAML

Added misc/py-trytond-company version 3.0.0

(rodent)

2014-02-01 19:04:31 UTC MAIN commitmail json YAML

Import py27-trytond-company-3.0.0 as misc/py-trytond-company.

The company module of the Tryton application platform.

(rodent)

2014-02-01 18:56:05 UTC MAIN commitmail json YAML

+py-trytond-currency

(rodent)

2014-02-01 18:55:32 UTC MAIN commitmail json YAML

Added finance/py-trytond-currency version 3.0.0

(rodent)

2014-02-01 18:55:15 UTC MAIN commitmail json YAML

Import py27-trytond-currency-3.0.0 as finance/py-trytond-currency.

The currency module of the Tryton application platform.

(rodent)

2014-02-01 18:52:31 UTC MAIN commitmail json YAML

Mark as PYTHON_VERSIONS_INCOMPATIBLE=33 according to setup.py

(rodent)

2014-02-01 18:51:07 UTC MAIN commitmail json YAML

Mark as PYTHON_VERSIONS_INCOMPATIBLE=33 according to setup.py

(rodent)

2014-02-01 18:27:42 UTC MAIN commitmail json YAML

+py-trytond-party

(rodent)

2014-02-01 18:26:55 UTC MAIN commitmail json YAML

Added misc/py-trytond-party version 3.0.0

(rodent)

2014-02-01 18:26:44 UTC MAIN commitmail json YAML

2014-02-01 18:12:13 UTC MAIN commitmail json YAML

2014-02-01 18:11:45 UTC MAIN commitmail json YAML

+py-trytond-country

(rodent)

2014-02-01 18:11:05 UTC MAIN commitmail json YAML

Added geography/py-trytond-country version 3.0.0

(rodent)

2014-02-01 18:10:54 UTC MAIN commitmail json YAML

Import py27-trytond-country-3.0.0 as geography/py-trytond-country.

The country module of the Tryton application platform.

(rodent)

2014-02-01 17:19:07 UTC MAIN commitmail json YAML

Remove FETCH_USING, because that's handled with magick now.

(rodent)

2014-02-01 14:19:17 UTC MAIN commitmail json YAML

Remove cdecimal option from SUGGESTED_OPTIONS, since it is not python33
compatible.

(rodent)

2014-02-01 14:11:02 UTC MAIN commitmail json YAML

Updated databases/py-python-sql to 0.3

(rodent)

2014-02-01 14:10:47 UTC MAIN commitmail json YAML

Updated to latest release, 0.3. Remove setting WRKSRC. Fix HOMEPAGE.
Use pypi for MASTER_SITES. From CHANGELOG:

Version 0.3 - 2014-01-31
* Add returning to Update
* Add missing params for returning
* Add columns definitions to Function
* Fix AtTimeZone mapping

(rodent)

2014-02-01 13:08:57 UTC MAIN commitmail json YAML

first command in do-configure is same as default one, so removed it
and let rest parts to be post-configure.

(obache)

2014-02-01 13:06:19 UTC MAIN commitmail json YAML

2014-02-01 13:05:48 UTC MAIN commitmail json YAML

Updated textproc/p5-Pod-Elemental-PerlMunger to 0.200001

(wen)

2014-02-01 13:04:50 UTC MAIN commitmail json YAML

Update to 0.200001
Update DEPENDS

Upstream changes:
0.200001  2014-01-12 15:46:22-05:00 America/New_York
        - there's now also a post_code_replacer, used to generate replacements
          for Pod removed after the final bits of code, in case you were only
          worried about affecting code line numbers

(wen)

2014-02-01 12:56:36 UTC MAIN commitmail json YAML

Updated textproc/p5-Pod-Elemental to 0.103000

(wen)

2014-02-01 12:55:37 UTC MAIN commitmail json YAML

Update to 0.103000

Upstream changes:
0.103000  2014-01-12 09:03:06-05:00 America/New_York
          Pod::Elemental::Document only adds leading =pod or trailing =cut if
          they are not already present

(wen)

2014-02-01 12:30:53 UTC MAIN commitmail json YAML

Updated devel/p5-Tree-DAG_Node to 1.20

(wen)

2014-02-01 12:30:05 UTC MAIN commitmail json YAML

Update to 1.20

Upstream changes:
1.20  Fri Jan 31 09:46:00 2014
- After a private email from Paul Howarth (yea!) I see I need File::Temp V 0.19 because that's
the version which introduced the newdir() method, as used in the test suite. Sorry for the churn.

1.19  Thu Jan 30 09:24:00 2014
- Set pre-req File::Temp version # to 0 (back from 0.2301). See D A Golden's blog entry:
http://www.dagolden.com/index.php/2293/why-installing-distzilla-is-slow-and-what-you-can-do-about-it/.

(wen)

2014-02-01 12:23:01 UTC MAIN commitmail json YAML

Updated www/p5-Mojolicious to 4.73

(wen)

2014-02-01 12:21:38 UTC MAIN commitmail json YAML

Update to 4.73

Upstream changes:
4.73  2014-02-01
  - Improved xml_escape performance significantly.
  - Improved html_unescape and url_unescape performance.
  - Fixed Mojo::UserAgent::Transactor to handle redirects more like most
    common browsers.

4.72  2014-01-29
  - Added accepts, template_for and template_handler methods to
    Mojolicious::Renderer.
  - Added accepts helper to Mojolicious::Plugin::DefaultHelpers.
  - Added before_render hook.
  - Fixed bug in Mojo::Transaction::WebSocket that prevented decompression
    errors from being handled gracefully.

4.71  2014-01-28
  - Fixed a few compression bugs in Mojo::Transaction::WebSocket and
    Mojo::Content.

4.70  2014-01-26
  - Added extract_usage method to Mojolicious::Command.
  - Added unindent method to Mojo::ByteStream.
  - Added unindent function to Mojo::Util.
  - Updated jQuery to version 2.1.
  - Improved all built-in commands to show usage information in their SYNOPSIS
    sections.
  - Improved tag helpers to make data attributes more convenient. (ravengerUA)
      %= tag 'div', data => {my_id => 1, Name => 'test'} => 'some content'
    is equivalent to
      %= tag 'div', data-my-id => 1, data-name => 'test' => 'some content'
  - Fixed indentation of code in documentation browser.

4.69  2014-01-24
  - Improved router to allow format detection for bridges.

4.68  2014-01-22
  - Added Mojo::DOM::Node.
  - Added contents and node methods to Mojo::DOM.
  - Removed deprecated http_proxy, https_proxy, name and no_proxy attributes
    from Mojo::UserAgent.
  - Removed deprecated app, app_url, detect_proxy and need_proxy methods from
    Mojo::UserAgent.
  - Improved router to allow placeholders anywhere in a pattern to become
    optional.
      "get '/foo/:bar/baz' => {bar => 'bar'};" now matches "/foo/baz"
      "get '/foo(:bar)baz' => {bar => 'bar'};" now matches "/foobaz"
  - Improved request_ok method in Test::Mojo to handle WebSocket handshakes.
  - Improved Mojo::IOLoop::Server to use address and port for descriptor
    inheritance.
  - Improved list of available commands to be alphabetical. (jberger)
  - Fixed select_field helper to be nondestructive.
  - Fixed XML semantics bug in Mojo::DOM::HTML.

4.67  2014-01-11
  - Added history and max_history_size attributes to Mojo::Log.
  - Improved exception and not found pages with log messages.
  - Improved exception page with more information.
  - Improved not found page with a more generic message.
  - Improved inline templates to use their checksum as name.

(wen)

2014-02-01 11:55:57 UTC MAIN commitmail json YAML

Updated graphics/pngcrush to 1.7.70

(adam)

2014-02-01 11:54:50 UTC MAIN commitmail json YAML

Changes 1.7.70:
Updated libpng to version 1.6.8.

(adam)

2014-02-01 11:42:47 UTC MAIN commitmail json YAML

Updated www/curl to 7.35.0; devel/cmake to 2.8.12.2; databases/mysql55 to 5.5.36; www/awstats to 7.3

(adam)

2014-02-01 11:38:48 UTC MAIN commitmail json YAML

Changes 7.3:

New features:
- Add command line option -version
- Better error management of geoip modules.
- Update domains, robots and search engines database:
- Windows 8 + iOS Support in AWStats
- Detection of 8.1 and IE11.

Fixes:
- When using builddate option of script awstats_buildstaticpages,
  static link is wrong.
- Restore detection of Opera browsers versions.
- GeoIP Cities page doesnt work.
- Add missing icons.
- Avoid warning mixed http/https with module graphgooglechartapi.
- $MinHit{'Host'} rather than $MinHit{'Login'} used in sub HTMLShowLogins.

Other:
- Move version system to sourceforge Git instead of CVS.

(adam)

2014-02-01 11:16:03 UTC MAIN commitmail json YAML

Changes 5.5.36:

Functionality Added or Changed

CMake now supports a -DTMPDIR=dir_name option to specify the default tmpdir value. If unspecified, the value defaults to P_tmpdir in <stdio.h>. Thanks to Honza Horak for the patch.

Bugs Fixed

InnoDB: Table renaming errors would appear in the LATEST FOREIGN KEY ERROR section of the SHOW ENGINE INNODB STATUS output.

Partitioning: Queries using the index_merge optimization (see Index Merge Optimization) could return invalid results when run against tables that were partitioned by HASH.

Partitioning: When no partition had returned a row since the last HA_ERR_KEY_NOT_FOUND error, the use of uninitialized memory in the priority queue used for returning rows in sorted order could lead to a crash of the server.

Replication: mysqlbinlog --verbose failed when it encountered a corrupt row event in the binary log. Such a row event could also cause the slave to fail.

Replication: When log_warnings is greater than 1, the master prints binary log dump thread information窶把ontaining the slave server ID, binary log file name, and binary log position窶琶n mysqld.1.err. A slave server ID greater than 2 billion was printed with a negative value in such cases.

Replication: Invalid event offsets in the binary log were not always handled correctly, which could lead to replication failure.

The cache used for the Index Merge access method was freed only after successful retrieval of all rows. Interruption or failure of the operation led to a file descriptor leak.

For utf8 and utf8mb4 strings, handler functions unnecessarily called a Unicode conversion function.

Use of a nonmulti-byte algorithm for skipping leading spaces in multi-byte strings could cause a server exit.

For the utf8_bin collation, ORDER BY LOWER(col_name) could produce incorrect ordering.

On Windows, the --local-service server option did not work, and was not displayed in the --help message.

The prototype of the Performance Schema instrumentation API mysql_cond_timedwait() call was fixed to be drop-in compatible with pthread_cond_timedwait(). This fix affects only implementers of third-party plugins.

For the path specified with the --basedir option, mysql_plugin attempted to unlink the path rather than free the memory in which the path was stored.

COUNT(DISTINCT) sometimes produced an incorrect result when the last read row contained a NULL value.

Some scripts displayed out-of-date information regarding where to report bugs.

Updating a FEDERATED table with UPDATE... JOIN caused a server exit when the local table contained a single row and that row could be joined to a row in the FEDERATED table.

mysql_install_db referred to the obsolete mysqlbug script for reporting problems. It now refers to http://bugs.mysql.com/ instead.

(adam)

2014-02-01 11:14:06 UTC MAIN commitmail json YAML

Changes 2.8.12.2:
      VS: Map /Fd to ProgramDataBaseFileName for VS 7,8,9
      Replace <OBJECT_DIR> rule placeholder consistently
      VS: Convert include path to backslashes for VS >= 10
      Revert "Ninja: Track configured files so we can regenerate them."
      FindOpenMP: fix detecting compilers that do not need any special flag
      Xcode: Fix storyboard view
      CMakeDetermineCompilerId: Fix compiler line match for Xcode 5.1

(adam)

2014-02-01 11:08:22 UTC MAIN commitmail json YAML

2014-02-01 11:07:14 UTC MAIN commitmail json YAML

Changes 7.35.0:
imap/pop3/smtp: Added support for SASL authentication downgrades
imap/pop3/smtp: Extended the login options to support multiple auth mechanisms
TheArtOfHttpScripting: major update, converted layout and more
mprintf: Added support for I, I32 and I64 size specifiers
makefile: Added support for VC7, VC11 and VC12

Bugfixes:
SECURITY ADVISORY: re-use of wrong HTTP NTLM connection
curl_easy_setopt: Fixed OAuth 2.0 Bearer option name
pop3: Fixed APOP being determined by CAPA response rather than by timestamp
Curl_pp_readresp: zero terminate line
FILE: don't wait due to CURLOPT_MAX_RECV_SPEED_LARGE
docs: mention CURLOPT_MAX_RECV/SEND_SPEED_LARGE don't work for FILE://
pop3: Fixed auth preference not being honored when CAPA not supported
imap: Fixed auth preference not being honored when CAPABILITY not supported
threaded resolver: Use pthread_t * for curl_thread_t
FILE: we don't support paused transfers using this protocol
connect: Try all addresses in first connection attempt
curl_easy_setopt.3: Added SMTP information to CURLOPT_INFILESIZE_LARGE
OpenSSL: Fix forcing SSLv3 connections
openssl: allow explicit sslv2 selection
FTP parselist: fix "total" parser
conncache: fix possible dereference of null pointer
multi.c: fix possible dereference of null pointer
mk-ca-bundle: introduces -d and warns about using this script
ConnectionExists: fix NTLM check for new connection
trynextip: fix build for non-IPV6 capable systems
Curl_updateconninfo: don't do anything for UDP "connections"
darwinssl: un-break Leopard build after PKCS-12 change
threaded-resolver: never use NULL hints with getaddrinf
multi_socket: remind app if timeout didn't run
OpenSSL: deselect weak ciphers by default
error message: Sensible message on timeout when transfer size unknown
curl_easy_setopt.3: mention how to unset CURLOPT_INFILESIZE*
win32: Fixed use of deprecated function 'GetVersionInfoEx' for VC12
configure: fix gssapi linking on HP-UX
chunked-parser: abort on overflows, allow 64 bit chunks
chunked parsing: relax the CR strictness
cookie: max-age fixes
progress bar: always update when at 100%
progress bar: increase update frequency to 10Hz
tool: Fixed incorrect return code if command line parser runs out of memory
tool: Fixed incorrect return code if password prompting runs out of memory
HTTP POST: omit Content-Length if data size is unknown
GnuTLS: disable insecure ciphers
GnuTLS: honor --slv2 and the --tlsv1[.N] switches
multi: Fixed a memory leak on OOM condition
netrc: Fixed a memory and file descriptor leak on OOM
getpass: fix password parsing from console
TFTP: fix crash on time-out
hostip: don't remove DNS entries that are in use
tests: lots of tests fixed to pass the OOM torture tests

(adam)

2014-02-01 10:53:59 UTC MAIN commitmail json YAML

Updated devel/p5-Proc-ProcessTable to 0.50

(wiz)

2014-02-01 10:53:49 UTC MAIN commitmail json YAML

Update to 0.50:

0.45    Mon Sep  8 09:13:14 MDT 2008
  -Patch from Milosz Tanski <mtanski@gridapp.com> to make module
  thread-safe on linux (rt.cpan.org ID 38709). Patch from Scott
  Davis <darkpreludesi@hotmail.com> for new constructor flag
  enable_ttys, which when set to 0 disables traversing the
  device tree.

0.46    Fri, Oct 19 2012
  -Initial release by new maintainer jswartz, identical to 0.45 except for meta
        files and README
0.47 16 Feb. 2013
  -Initial releas by new maintainer jwb. Incorporated meta file updates from
  Jonathan Swartz <swartz@pobox.com>. Closed a bunch of bugs: Patch from
  Christian Boitel <christian.boitel@gmail.com> (fixes #51470); added
  suggestion from Opera Wang <Opera.Wang@synopsys.com> (fixes #51470 even
  more); patches from Michael Schilli (MSCHILLI) (fix #41397, #46861 and
  #58236), work on perl w/o threads; pulled commits from Slaven Rezić
  <SREZIC@cpan.org>, use kvm implementation for FreeBSD >= 6.0 (closes #68405
  and #16978); fixed bug #69397, fh not closed; fixed RT #72862, unsafe use of
  /tmp; added tests;

0.48
  -Pulled commits from Chris Williams <chris@bingosnet.co.uk>, fixes build
  errors on NetBSD and OpenBSD. Fixed #72862 (byte order tag in cache file),
  applied patch to fix #67224 (cygwin PID_ORPHANED) by <rurban at x-ray.at>.
  Pulled FreeBSD patches from Slaven Rezić <SREZIC@cpan.org>;
  Pulled from David Zaebst <zaebst@gmail.com>): Fixes to stay accurate on
  machines with many cpus (#82175), to include system time into calculations
  (#80391) and others (#81312, #82175 and #80391) and to fix unknown process
  states for debian kernels #71976. Tried to get it compiling under
  MidnightBSD.
0.49
  -Fixed #61946 (odd process names), solution by Bernd Kallies. Fixed #48445, patch from
  Guillaume Rousse. Pulled fixes from Opera Wang. Fixed typos discovered by
  Salvatore Bonaccorso, David Steinbrunner and HMBRAND. Fixed #89117, patch
  from yyang. Got it (hopefully) running under kfreebsd.

(wiz)

2014-02-01 09:56:41 UTC MAIN commitmail json YAML

2014-02-01 09:54:23 UTC MAIN commitmail json YAML

Update to kdevplatform 1.6.0 (kdevelop 4.6.0)

Aside from many bug fixes and general improvements such as performance
optimizations in various areas, which make KDevelop 4.6.0 faster and less
memory-hungry, a few changes are especially noteworthy:

The ReviewBoard plugin now supports updating existing review requests.
There is a new plugin which adds support for building projects with ninja
instead of make. CMake support was also stabilized and improved, adding
support for missing or new CMake features.

(markd)

2014-02-01 09:52:05 UTC MAIN commitmail json YAML

Update to kdevelop 4.6.0

Aside from many bug fixes and general improvements such as performance
optimizations in various areas, which make KDevelop 4.6.0 faster and less
memory-hungry, a few changes are especially noteworthy:

The ReviewBoard plugin now supports updating existing review requests.
There is a new plugin which adds support for building projects with ninja
instead of make. CMake support was also stabilized and improved, adding
support for missing or new CMake features.

(markd)

2014-02-01 08:10:24 UTC MAIN commitmail json YAML

2014-02-01 08:07:01 UTC MAIN commitmail json YAML

2014-02-01 08:04:04 UTC MAIN commitmail json YAML

2014-02-01 08:00:06 UTC MAIN commitmail json YAML

2014-02-01 05:01:57 UTC MAIN commitmail json YAML

KDE update and related packages.

(markd)

2014-02-01 04:50:29 UTC MAIN commitmail json YAML

2014-02-01 04:12:04 UTC MAIN commitmail json YAML

Dont look for CppUnit as we dont want to build tests.

(markd)

2014-02-01 03:57:52 UTC MAIN commitmail json YAML

2014-02-01 03:46:50 UTC MAIN commitmail json YAML

2014-02-01 03:14:38 UTC MAIN commitmail json YAML

s/LOCALBASE/BUILDLINK_PREFIX.sqlite3/ to handle builtin sqlite.

(markd)

2014-02-01 02:22:25 UTC MAIN commitmail json YAML

2014-02-01 02:20:53 UTC MAIN commitmail json YAML

2014-02-01 02:07:12 UTC MAIN commitmail json YAML

Update to phonon-backend-vlc 0.7.1

When cmake fails to detect the LibVLC version via pkg-config, it will
now try to look it up through the header.
Support for Intel compilers on Windows was added.
MetaObject compliation will now reliably pick the correct interface API
version to build against preventing features being unavailable or unused.

(markd)

2014-02-01 02:05:28 UTC MAIN commitmail json YAML

Update to phonon-backend-gstreamer 4.7.1

Plugin installation now uses UTF-8 encoding for everything to prevent
encoding issues.
MetaObject compliation will now reliably pick the correct interface API
version to build against preventing features being unavailable or unused.

(markd)

2014-02-01 02:04:00 UTC MAIN commitmail json YAML

Update to phonon 4.7.1

Improved rpath handling.
Build fixed for Mac OS X.
PulseSupport::setupStreamEnvironment creates more verbose output now.
Ensure older backends retain volume control over PulseAudio streams.

(markd)

2014-02-01 01:54:59 UTC MAIN commitmail json YAML

While still using old (4.4) kmail don't expect akonadi id's for folders.

(markd)

2014-02-01 01:51:00 UTC MAIN commitmail json YAML

2014-02-01 01:46:35 UTC MAIN commitmail json YAML

PKGREVISION bump for libical major version increase.

(markd)

2014-02-01 01:44:53 UTC MAIN commitmail json YAML

2014-01-31 22:11:10 UTC MAIN commitmail json YAML

Updated net/knot to 1.4.2

(pettai)

2014-01-31 22:10:36 UTC MAIN commitmail json YAML

Updated devel/userspace-rcu to 0.8.1

(pettai)

2014-01-31 22:05:44 UTC MAIN commitmail json YAML

v1.4.2 - Jan 27, 2014
---------------------
Bugfixes:
        * AXFR/IXFR compatibility issues with tinydns/axfrdns
        * Journal file is created only when needed
        * Zone-related log messages are logged into correct category
        * DNSSEC: Refresh signatures earlier (3 days before their expiration
          with the default signature lifetime)
        * Fixed RCU synchronization causing deadlock on 'knotc signzone'
        * RRSIG not fitting in the additional records doesn't cause truncation

v1.4.1 - Jan 13, 2014
---------------------
Bugfixes:
        * Empty APL record support
        * 'zonestatus' when using immediate zone syncing
        * Immediate zone syncing after reload
        * Race condition writing time values to zone file

v1.4.0 - Jan 6, 2014
---------------------
Features:
        * Zone SERIAL policies (INCREMENT, UNIXTIME)
Bugfixes:
        * AXFR crash with specific packet
        * QNAME case-sensitive since 1.4.0-rc0
        * DNSSEC records over DDNS
        * Semantic check fail in AXFR is only soft-error
        * Journal race condition
        * Notifies are sent immediately

v1.4.0-rc2 - Dec 13, 2013
-------------------------
Features:
        * IDN support in Knot utilities
        * DNSSEC: support for GOST algorithm

Bugfixes:
        * Crash in particular additionals processing
        * Race condition in event cancelation
        * Journal corruption after failed transactions
        * DNSSEC: fixed detection of ECDSA support

Other improvements:
        * ./configure prints build configuration summary
        * Pretty zone file output (DNSSEC-related data separately)
        * Lower memory consumption
        * config: option 'dnssec-keydir' can be set per zone
        * config: option 'storage' can be set per zone

v1.4.0-rc1 - Nov 20, 2013
-------------------------

Features:
        * Better logging of automatic DNSSEC events
        * Support for DNSSEC key pre-publication
Bugfixes:
        * Refactored zone loading
        * Improved journal locking and fixed some race conditions
        * Various fixes in client utilities
        * Fixed memory errors in automatic DNSSEC signing
        * 'dnssec-keydir' doesn't auto-enable signing
        * Fixed rescheduling of zone resigns

v1.4.0-beta - Oct 28, 2013
--------------------------
Features:
        * Experimental automatic DNSSEC signing
        * Reduced memory usage

(pettai)

2014-01-31 22:01:40 UTC MAIN commitmail json YAML

2013-11-12 Userspace RCU 0.8.1
        * tls-compat: fix comment typo
        * Keep ABI compatible with already compiled LGPL applications
        * Fix: tls-compat multi-lib conflict
        * Use cross compiler for doc examples
        * gcc warning fixes: -Wsign-compare and -Wextra
        * Fix: urcu-qsbr: reversed logic on RCU_DEBUG
        * Fix: urcu-bp segfault in glibc pthread_kill()
        * Fix urcu-bp: don't move registry
        * Fix: compat futex duplicated lock and completion
        * Fix: i386 compat code duplicated mutex instances
        * Fix: urcu-bp: Bulletproof RCU arena resize bug
        * Fix: test_mutex.c uninitialized mutex

2013-09-06 Userspace RCU 0.8.0
        * Fix: hash table growth (for small tables) should be limited
        * Introduce URCU_INLINE_SMALL_FUNCTIONS
        * urcu signal: remove assertion on exit
        * hlist/rcuhlist update
        * rcuhlist: make pointer stores atomic
        * hlist, rcuhlist: cleanup coding style
        * rculist: ensure atomic updates of next pointers
        * rculist: implement cds_list_add_tail_rcu
        * rculist.h and list.h style cleanup
        * example makefile: add missing cd ..
        * Fix: examples Makefile on FreeBSD
        * Implement thread-id.h wrapper
        * Fix: don't build examples in static builds
        * Add QSBR minimal example
        * compiler.h: implement CAA_ARRAY_SIZE()
        * rcu barrier: handle OOM die urcu_die
        * Implement rcu_barrier()
        * Add MIPS to README
        * Update README
        * Fix: membarrier fallback symbol conflict
        * Fix: Use a filled signal mask to disable all signals
        * urcu-bp: introduce struct urcu_gp
        * Fix: struct urcu_gp broke multiflavor
        * wfstack: return whether pop is popping the last element
        * wfcqueue: return whether dequeue is dequeuing last element
        * urcu: avoid false sharing for rcu_gp_ctr
        * urcu: make the code of urcu-qsbr as normal urcu
        * rculfhash: detect if resize/destroy are called within RCU read-side C.S.
        * fix: rculfhash don't change qsbr online state
        * Add rcu_read_ongoing() API to each urcu flavor
        * Add "sparc" host cpu to configure.ac
        * futex: include syscall.h instead of sys/syscall.h
        * Add tab to output in order to allow easy nesting of tables.
        * Remove urcu-api-list.sh from dist tarball
        * Add urcu-api-list.sh script
        * list: implement cds_list_for_each_safe()
        * Fix build on architectures with HAVE_SCHED_GETCPU but without HAVE_SYSCONF
        * clang: silence "unused expression result" warning
        * rculfhash: add assertions on node alignment
        * Fix configure checks for Tile
        * uatomic: style fix
        * README: reorganize
        * Add compilation support for the TileGX architecture
        * wfstack: add nonblocking to _LGPL_SOURCE API
        * Discourage use of pthread_atfork() for call_rcu handlers
        * Fix call_rcu fork handling
        * rculfhash: add cds_lfht_replace to the write operations in the comments
        * urcu: fix comments for cds_list_for_each_prev()
        * urcu: remove the wrong comma
        * wfstack: implement nonblocking pop and next
        * wfstack: update comments about cds_wfs_empty/first being wait-free
        * wfstack API: rename cds_wfs_first_blocking to cds_wfs_first
        * urcu-mb/signal/membarrier: batch concurrent synchronize_rcu()
        * urcu-wait: move queue management code into urcu-wait.h
        * urcu-wait: move wait code into separate file
        * urcu-qsbr: batch concurrent synchronize_rcu()
        * urcu-bp: move quiescent threads to separate list
        * urcu-mb/signal/membarrier: move quiescent threads to separate list
        * urcu-qsbr: move offline threads to separate list
        * urcu-bp: improve 2-phase wait scheme
        * urcu-mb/signal/membarrier: improve 2-phase wait scheme
        * urcu-qsbr: improve 2-phase wait scheme
        * wfcqueue: implement mutex-free splice
        * urcu-call-rcu: use wait-free splice return value
        * wfcqueue: enqueue and splice return queue state
        * Fix: wfcqueue nonblocking dequeue
        * wfcqueue: Fix lock and unlock functions
        * urcu-qsbr: skip Q.S. reporting if already reported
        * Cleanup: cast pthread_self() return value to unsigned long
        * Fallback mechanism not working on platform where TLS is unsupported
        * Revert "Fix: cross-build: configure.ac should use --target, not --host"
        * Fix: cross-build: configure.ac should use --target, not --host
        * Fix static linking: add missing static for _defer_rcu
        * Fix static linking: fix symbol name namespaces
        * Fix static linking: add missing static to thr_defer
        * Fix static linking: add missing static
        * deprecation: fix build with gcc < 4.5
        * Comment fix: update associated LGPL header name
        * Update cds-api.txt following API deprecations
        * Deprecate wfqueue
        * Deprecate rculfstack
        * wfcqueue: introduce nonblocking API
        * lfstack: implement lock-free stack
        * rculfhash: add missing extern
        * Cleanup: fix cppcheck errors
        * wfcqueue: remove ancient comment
        * wfcqueue: clarify locking usage
        * Add wfcqueue header to cds.h
        * Fix: urcu-bp, urcu, urcu-qsbr should include wfcqueue
        * call_rcu: remove head field alignement, explain wfcqueue motivation
        * Fix urcu-call-rcu-impl.h: false-sharing
        * call_rcu: use wfcqueue, eliminate false-sharing
        * wfcqueue: implement concurrency-efficient queue
        * Ensure that read-side functions meet 10-line LGPL criterion
        * urcu: add notice to URCU_TLS() for it is not strictly async-signal-safe

(pettai)

2014-01-31 20:13:55 UTC MAIN commitmail json YAML

Use standard comments.

(wiz)

2014-01-31 19:32:04 UTC MAIN commitmail json YAML

Mark some stuff not available for python and use versioned_dependencies.mk,
so that pbulk can finish a scan again.

(wiz)

2014-01-31 17:38:48 UTC MAIN commitmail json YAML

pkg/48500:  add a hack on NetBSD/alpha to add the gcc compiler flag
    -fno-tree-ter, removing the alignment warnings printed by the
    NetBSD/alpha kernel when perl was executed.

    bump PKGREVISION

(schnoebe)

2014-01-31 17:32:19 UTC MAIN commitmail json YAML

First part of minor dropbear package cleanup - this part lets the
package build as a normal user

+ don't refer to MAKEFLAGS outside of pkgsrc/mk
+ add comments to patch files
+ use BSD_INSTALL_* definitions in the build Makefile
+ re-order some parts of the pkgsrc Makefile
+ use pkgsrc definitions for CFLAGS.${OPSYS} rather than conditionals

XXX - TO DO - fix the xauth issue here

(agc)

2014-01-31 15:32:08 UTC MAIN commitmail json YAML

Updated sysutils/agedu to 10126

(schmonz)

2014-01-31 15:32:03 UTC MAIN commitmail json YAML

Update to r10126. From the svn log:

* Fix handling of IPv6 address literals.

With luck, this distfile won't change in place.

(schmonz)

2014-01-31 12:31:42 UTC MAIN commitmail json YAML

2014-01-31 12:31:02 UTC MAIN commitmail json YAML

Added devel/py-trytond version 3.0.2

(rodent)

2014-01-31 12:30:50 UTC MAIN commitmail json YAML

Import py27-trytond-3.0.2 as devel/py-trytond.

The server of the Tryton application platform, a three-tiers high-level general
purpose application platform written in Python and uses PostgreSQL as main
database engine. It is the core base of an Open Source ERP. It provides
modularity, scalability and security.

(rodent)

2014-01-31 11:27:14 UTC MAIN commitmail json YAML

Switch to versioned_dependencies.mk for unittest2, in a comment.

(wiz)

2014-01-31 11:26:12 UTC MAIN commitmail json YAML

2014-01-31 11:25:43 UTC MAIN commitmail json YAML

2014-01-31 11:25:10 UTC MAIN commitmail json YAML

Mention Python 2.x explicitly in COMMENT and DESCR.

(wiz)

2014-01-31 11:24:49 UTC MAIN commitmail json YAML

Updated net/get-flash-videos to 0.0.20140129

(dsainty)

2014-01-31 11:23:43 UTC MAIN commitmail json YAML

Added devel/py-unittest2py3k version 0.5.1

(wiz)

2014-01-31 11:23:33 UTC MAIN commitmail json YAML

+ py-unittest2py3k

(wiz)

2014-01-31 11:23:13 UTC MAIN commitmail json YAML

Import py33-unittest2-0.5.1 as devel/py-unittest2py3k.

Unittest2 is a backport of the new features added to the unittest testing
framework in Python 2.7. It is tested to run on Python 2.4 - 2.7.

To use unittest2 instead of unittest simply replace import unittest with
import unittest2.

This package contains the Python 3.x version of the module.

(wiz)

2014-01-31 11:21:56 UTC MAIN commitmail json YAML

Updated graphics/clutter to 1.16.4nb1

(obache)

2014-01-31 11:21:43 UTC MAIN commitmail json YAML

XFixes extension is not required since 1.16.2.

Bump PKGREVISION.

(obache)

2014-01-31 11:21:18 UTC MAIN commitmail json YAML

Update get-flash-videos to the current module set as at 2014-01-29.

Sorry, no change log is maintained, but this is essentially updates
and additions to the collection of supported sites.

(dsainty)

2014-01-31 10:44:47 UTC MAIN commitmail json YAML

Fixes LICENSE variable name.

(obache)

2014-01-31 09:04:36 UTC MAIN commitmail json YAML

Add dynamic PLIST support with USE_DESTDIR=no, and also simplify for reverse
condition.
inspired by print-PLIST.

(obache)

2014-01-31 06:34:23 UTC MAIN commitmail json YAML

Updated pidgin and related packages to 2.10.8.

(obache)

2014-01-31 06:32:16 UTC MAIN commitmail json YAML

Update pidin to 2.10.8.

version 2.10.8 (1/28/2014):
General:
* Python build scripts and example plugins are now compatible with
  Python 3. (Ashish Gupta) (#15624)

libpurple:
* Fix potential crash if libpurple gets an error attempting to read a
  reply from a STUN server. (Discovered by Coverity static analysis)
  (CVE-2013-6484)
* Fix potential crash parsing a malformed HTTP response. (Discovered by
  Jacob Appelbaum of the Tor Project) (CVE-2013-6479)
* Fix buffer overflow when parsing a malformed HTTP response with
  chunked Transfer-Encoding. (Discovered by Matt Jones, Volvent)
  (CVE-2013-6485)
* Better handling of HTTP proxy responses with negative Content-Lengths.
  (Discovered by Matt Jones, Volvent)
* Fix handling of SSL certificates without subjects when using libnss.
* Fix handling of SSL certificates with timestamps in the distant future
  when using libnss. (#15586)
* Impose maximum download size for all HTTP fetches.

Pidgin:
* Fix crash displaying tooltip of long URLs. (CVE-2013-6478)
* Better handling of URLs longer than 1000 letters.
* Fix handling of multibyte UTF-8 characters in smiley themes. (#15756)

Windows-Specific Changes:
* When clicking file:// links, show the file in Explorer rather than
  attempting to run the file. This reduces the chances of a user
  clicking on a link and mistakenly running a malicious file.
  (Originally discovered by James Burton, Insomnia Security. Rediscovered
  by Yves Younan of Sourcefire VRT.) (CVE-2013-6486)
* Fix Tcl scripts. (#15520)
* Fix crash-on-startup when ASLR is always on. (#15521)
* Updates to dependencies:
* NSS 3.15.4 and NSPR 4.10.2
* Pango 1.29.4-1daa
Patched for https://bugzilla.gnome.org/show_bug.cgi?id=668154

AIM:
* Fix untrusted certificate error.

AIM and ICQ:
* Fix a possible crash when receiving a malformed message in a Direct IM
  session.

Gadu-Gadu:
* Fix buffer overflow with remote code execution potential. Only
  triggerable by a Gadu-Gadu server or a man-in-the-middle.
  (Discovered by Yves Younan and Ryan Pentney of Sourcefire VRT)
  (CVE-2013-6487)
* Disabled buddy list import/export from/to server (it didn't work
  anymore). Buddy list synchronization will be implemented in 3.0.0.
* Disabled new account registration and password change options, as it
  didn't work either. Account registration also caused a crash. Both
  functions are available using official Gadu-Gadu website.

IRC:
* Fix bug where a malicious server or man-in-the-middle could trigger
  a crash by not sending enough arguments with various messages.
  (Discovered by Daniel Atallah) (CVE-2014-0020)
* Fix bug where initial IRC status would not be set correctly.
* Fix bug where IRC wasn't available when libpurple was compiled with
  Cyrus SASL support. (#15517)

MSN:
* Fix NULL pointer dereference parsing headers in MSN.
  (Discovered by Fabian Yamaguchi and Christian Wressnegger of the
  University of Goettingen) (CVE-2013-6482)
* Fix NULL pointer dereference parsing OIM data in MSN.
  (Discovered by Fabian Yamaguchi and Christian Wressnegger of the
  University of Goettingen) (CVE-2013-6482)
* Fix NULL pointer dereference parsing SOAP data in MSN.
  (Discovered by Fabian Yamaguchi and Christian Wressnegger of the
  University of Goettingen) (CVE-2013-6482)
* Fix possible crash when sending very long messages. Not
  remotely-triggerable. (Discovered by Matt Jones, Volvent)

MXit:
* Fix buffer overflow with remote code execution potential.
  (Discovered by Yves Younan and Pawel Janic of Sourcefire VRT)
  (CVE-2013-6487)
* Fix sporadic crashes that can happen after user is disconnected.
* Fix crash when attempting to add a contact via search results.
* Show error message if file transfer fails.
* Fix compiling with InstantBird.
* Fix display of some custom emoticons.

SILC:
* Correctly set whiteboard dimensions in whiteboard sessions.

SIMPLE:
* Fix buffer overflow with remote code execution potential.
  (Discovered by Yves Younan of Sourcefire VRT) (CVE-2013-6487)

XMPP:
* Prevent spoofing of iq replies by verifying that the 'from' address
  matches the 'to' address of the iq request. (Discovered by Fabian
  Yamaguchi and Christian Wressnegger of the University of Goettingen)
  (CVE-2013-6483)
* Fix crash on some systems when receiving fake delay timestamps with
  extreme values. (Discovered by Jaime Breva Ribes) (CVE-2013-6477)
* Fix possible crash or other erratic behavior when selecting a very
  small file for your own buddy icon.
* Fix crash if the user tries to initiate a voice/video session with a
  resourceless JID.
* Fix login errors when the first two available auth mechanisms fail but
  a subsequent mechanism would otherwise work when using Cyrus SASL.
  (#15524)
* Fix dropping incoming stanzas on BOSH connections when we receive
  multiple HTTP responses at once. (Issa Gorissen) (#15684)

Yahoo!:
* Fix possible crashes handling incoming strings that are not UTF-8.
  (Discovered by Thijs Alkemade and Robert Vehse) (CVE-2012-6152)
* Fix a bug reading a peer to peer message where a remote user could
  trigger a crash. (CVE-2013-6481)

Plugins:
* Fix crash in contact availability plugin.
* Fix perl function Purple::Network::ip_atoi
* Add Unity integration plugin.

(obache)

2014-01-31 05:49:26 UTC MAIN commitmail json YAML

Updated converters/skf to 1.99.8

(obache)

2014-01-31 05:49:17 UTC MAIN commitmail json YAML

Update skf to 1.99.8.

skf (1.99.8)

  * fix ruby 2.1.0 support on cygwin broken
  * fix -shared flag not set on ruby 2.1.0

-- Seiji Kaneko <efialtes@sourceforge.jp> Fri, 31 Jan 2014 00:05:38 +0900

(obache)

2014-01-31 04:39:18 UTC MAIN commitmail json YAML

fixes lost of bootstrap binary for vairous platforms with last update.

(obache)

2014-01-31 03:09:19 UTC MAIN commitmail json YAML

CONFIGURE_ARGS+=--with-pcre-jit for the pcre option. If pcre isn't compiled
with --enable-jit, this option doesn't break the build. If it is, users can
still disable this feature by setting pcre_jit=off in nginx.conf.

(rodent)

2014-01-30 22:12:05 UTC MAIN commitmail json YAML

Mark as not yet ready for python-3.x.

(wiz)

2014-01-30 20:23:54 UTC MAIN commitmail json YAML

fix date of NetBSD 1.6 release

(reed)

2014-01-30 18:20:19 UTC MAIN commitmail json YAML

Judging from the documentation, this prefers py-sqlite3 nowadays,
which has the advantage of being available for python-3.x.
(default-off option, so no PKGREVISION++)

(wiz)

2014-01-30 16:01:27 UTC MAIN commitmail json YAML

2014-01-30 15:49:15 UTC MAIN commitmail json YAML

Updated net/miniupnpd to 1.8.20140127

(adam)

2014-01-30 15:07:57 UTC MAIN commitmail json YAML

Changes 1.8.20140127:
* Attempt to compile with OS X/pf
* Make all manufacturer info configurable thanks to Leo Moll
  Merge PCP support (see https://github.com/miniupnp/miniupnp)

(adam)

2014-01-30 14:41:28 UTC MAIN commitmail json YAML

Updated devel/reposurgeon to 3.1

(ryoon)

2014-01-30 14:40:34 UTC MAIN commitmail json YAML

Update to 3.1

Changelog:
3.1 2014-01-27
    The filter command now has a --replace modifier to avoid regex overhead.
    Associated branches are renamed when a reset or tag is moved or deleted.
    Bug fix for off-by-one error in tags reporting.

3.0: 2014-01-05
    Many syntactic features of the language have changed incompatibly.
    Backward-incompatible language changes are documented on the manual page.
    'expunge' and 'unite' commands have been incompatibly improved.
    New 'strip' command for generating test cases with blobs stripped out
    New 'reduce' command for topological reduction of test cases.
    The 'lint' command gets a test for the existence of multiple roots.
    Selecting a date or action stamp matching multiple commits now matches all.
    The surgical language now has a macro facility.

(ryoon)

2014-01-30 12:37:56 UTC MAIN commitmail json YAML

drop MPG123_ARM_FIXED64.
It was deprecated with mpg123-arm-fixed64 option and finally removed.

(obache)

2014-01-30 12:28:32 UTC MAIN commitmail json YAML

drop MOZILLA_USE_XFT.
Mozilla products use GTK2 in these days, and not used anywhere now.

(obache)

2014-01-30 12:24:49 UTC MAIN commitmail json YAML

drop MOZILLA_USE_LINUX.
No mozilla binary package using Linux binary is in pkgsrc now.

(obache)

2014-01-30 12:19:12 UTC MAIN commitmail json YAML

remove ZIP_ENCRYPTION.
archiver/zip1 had been removed.

(obache)

2014-01-30 12:12:08 UTC MAIN commitmail json YAML

emacs.mk does not exists and EMACS_TYPE is used in emacs/modules.mk now.

(obache)

2014-01-30 12:04:13 UTC MAIN commitmail json YAML

suse 13.1 is known as not worked with NetBSD/amd64 6.x relase, per PR pkg/48558.

(obache)

2014-01-30 11:56:48 UTC MAIN commitmail json YAML

Note about HASKELL_COMPILER

(obache)

2014-01-30 09:24:49 UTC MAIN commitmail json YAML

Updated x11/xkeyboard-config to 2.11

(wiz)

2014-01-30 09:24:39 UTC MAIN commitmail json YAML

Update to 2.11:

2.11 11 bugs fixed
Continuing code formatting cleanup
Translations updated

(wiz)

2014-01-30 07:57:47 UTC MAIN commitmail json YAML

Updated lang/ghc7 to 7.6.3nb1

(obache)

2014-01-30 07:57:35 UTC MAIN commitmail json YAML