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

2024-05-13 20:15:51 UTC Now

2014-10-09 20:25:24 UTC MAIN commitmail json YAML

Updated package to latest version, 0.7. Changes:
  * Compatibility with ocaml-4.02 (Peter Zotoz, Hugo Heuzard)
  * Fix toplevel usage (Vincent Bernardoff)
  * Class: add equality for sets (Jeremy Yallop)

(jaapb)

2014-10-09 20:09:31 UTC MAIN commitmail json YAML

Added SUBDIR for devel/ocaml-cmdliner

(jaapb)

2014-10-09 20:07:58 UTC MAIN commitmail json YAML

Added devel/ocaml-cmdliner version 0.9.4

(jaapb)

2014-10-09 20:07:37 UTC MAIN commitmail json YAML

2014-10-09 19:49:19 UTC MAIN commitmail json YAML

Updated databases/ocaml-mysql to 1.1.2

(jaapb)

2014-10-09 19:48:58 UTC MAIN commitmail json YAML

Updated databases/ocaml-sqlite3 to 2.0.6

(jaapb)

2014-10-09 19:48:40 UTC MAIN commitmail json YAML

Updated package to version 2.0.6. Package now uses ocaml.mk framework.
There seem to have been no major changes, but upstream is now hosted on
github.

(jaapb)

2014-10-09 19:44:07 UTC MAIN commitmail json YAML

Updated package to newest version, 1.1.2 - now uses ocaml.mk. Changes:
* Mysql.Prepared.execute_null (Gregory Bellier)

(jaapb)

2014-10-09 19:41:21 UTC MAIN commitmail json YAML

Updated devel/pcre-ocaml to 7.1.1

(jaapb)

2014-10-09 19:41:01 UTC MAIN commitmail json YAML

- Added LICENSE, took over maintainership and re-added pax to USE_TOOLS.

(jaapb)

2014-10-09 19:39:24 UTC MAIN commitmail json YAML

Updated package to newest version, 7.1.1. Package now also uses ocaml.mk.
Changes are mostly bugfixes, and major changes:
* Switched to Oasis for packaging
* Switched to OCamlBuild for the build process
* Added stricter compilation flags

(jaapb)

2014-10-09 19:37:21 UTC MAIN commitmail json YAML

Changes:
- findlib no longer standard
- added OASIS_BUILD_ARGS parameter
- force native code compilation (or not) according to options
- moved things around so that OASIS implies FINDLIB

(jaapb)

2014-10-09 19:14:05 UTC MAIN commitmail json YAML

2014-10-09 19:08:28 UTC MAIN commitmail json YAML

Update to ocaml 4.02.0. Main changes (apart from ocamldoc and bugfixes, see
also upstream changelog):
Language features:
- Attributes and extension nodes
- Generative functors
- Module aliases
* Alternative syntax for string literals {id|...|id} (can break comments)
- Separation between read-only strings (type string) and read-write byte
  sequences (type bytes). Activated by command-line option -safe-string.
Build system for the OCaml distribution:
- Use -bin-annot when building.
- Use GNU make instead of portable makefiles.
- Updated build instructions for 32-bit Mac OS X on Intel hardware.
Shedding weight:
* Removed Camlp4 from the distribution, now available as third-party software.
* Removed Labltk from the distribution, now available as a third-party library.
Type system:
* Keep typing of pattern cases independent in principal mode
- Allow opening a first-class module or applying a generative functor
  in the body of a generative functor. Allow it also in the body of
  an applicative functor if no types are created
* Module aliases are now typed in a specific way, which remembers their
  identity. In particular this changes the signature inferred by
  "module type of"
- Slight change in the criterion to distinguish private
  abbreviations and private row types: create a private abbreviation for
  closed objects and fixed polymorphic variants.
* Compare first class module types structurally rather than
  nominally. Value subtyping allows module subtyping as long as the internal
  representation is unchanged.
Compilers:
- More aggressive constant propagation, including float and
  int32/int64/nativeint arithmetic.  Constant propagation for floats
  can be turned off with option -no-float-const-prop, for codes that
  change FP rounding modes at run-time.
- New back-end optimization pass: common subexpression elimination (CSE).
  (Reuses results of previous computations instead of recomputing them.)
- New back-end optimization pass: dead code elimination.
  (Removes arithmetic and load instructions whose results are unused.)
- Optimization of sequences of string patterns
- Experimental native code generator for AArch64 (ARM 64 bits)
- Optimization of integer division and modulus by constant divisors
- Add "-open" command line flag for opening a single module before typing
* "-o" now sets module name to the output file name up to the first "."
  (it also applies when "-o" is not given, i.e. the module name is then
  the input file name up to the first ".")
* better sharing of structured constants
- new flag to keep locations in cmi files
- issue warning 3 when referring to a value marked with
  the [@@ocaml.deprecated] attribute
- a new format implementation based on GADTs
* Constant exception constructors no longer allocate
- avoid unnecessary boxing in let
- Better compilation of optional arguments with default values
- ocamlopt -opaque option for incremental native compilation
Toplevel interactive system:
- New "#show_*" directives
Runtime system:
- New configure option "-no-naked-pointers" to improve performance by
  avoiding page table tests during block darkening and the marking phase
  of the major GC.  In this mode, all out-of-heap pointers must point at
  things that look like OCaml values: in particular they must have a valid
  header.  The colour of said headers should be black.
- Fixed bug in native code version of [caml_raise_with_string] that could
  potentially lead to heap corruption.
- Blocks initialized by [CAMLlocal*] and [caml_alloc] are now filled with
  [Val_unit] rather than zero.
- Fixed a major performance problem on large heaps (~1GB) by making heap
  increments proportional to heap size by default
- Structural equality treats exception specifically
- efficient comparison/indexing of exceptions
- avoid using unsafe C library functions (strcpy, strcat, sprintf)
- An ISO C99-compliant C compiler and standard library is now assumed.
  (Plus special exceptions for MSVC.)  In particular, emulation code for
  64-bit integer arithmetic was removed, the C compiler must support a
  64-bit integer type.
Standard library:
* Add new modules Bytes and BytesLabels for mutable byte sequences.
- add List.sort_uniq and Set.of_list
- a faster version of "raise" which does not maintain the backtrace
- support "Unix.kill pid Sys.sigkill" under Windows
- speed improvement for Buffer
- efficient creation of uninitialized float arrays
- Improve documentation regarding finalisers and multithreading
- Trigger warning 3 for all values marked as deprecated in the documentation.

(jaapb)

2014-10-09 18:59:59 UTC MAIN commitmail json YAML

Updated graphics/netpbm to 10.67.05nb3.

(gson)

2014-10-09 18:58:18 UTC MAIN commitmail json YAML

Configure netpbm with tiff and zlib support so that pamtotiff,
pnmtotiff, pnmtotiffcmyk, and tifftopnm once again get built.
They have been temporarily absent since the update to 10.67.03.

(gson)

2014-10-09 15:24:08 UTC MAIN commitmail json YAML

Added misc/libcdio-paranoia version 0.93

(adam)

2014-10-09 15:07:20 UTC MAIN commitmail json YAML

Updated audio/audacious to 3.5.1

(adam)

2014-10-09 15:05:43 UTC MAIN commitmail json YAML

+ openssh-6.7p1 (Note: it drop tcp_wrappers support!!).

(taca)

2014-10-09 15:03:31 UTC MAIN commitmail json YAML

2014-10-09 15:02:43 UTC MAIN commitmail json YAML

2014-10-09 14:49:20 UTC MAIN commitmail json YAML

Updated multimedia/gmplayer to 1.1.1nb20

(martin)

2014-10-09 14:48:51 UTC MAIN commitmail json YAML

2014-10-09 14:10:41 UTC MAIN commitmail json YAML

2014-10-09 14:09:23 UTC MAIN commitmail json YAML

Remove pkgviews: don't set PKG_INSTALLATION_TYPES in mk files.

(wiz)

2014-10-09 14:07:17 UTC MAIN commitmail json YAML

2014-10-09 14:06:00 UTC MAIN commitmail json YAML

Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.

(wiz)

2014-10-09 13:55:10 UTC MAIN commitmail json YAML

Updated pkgtools/pkglint to 4.147

(wiz)

2014-10-09 13:55:00 UTC MAIN commitmail json YAML

2014-10-09 13:54:47 UTC MAIN commitmail json YAML

2014-10-09 13:54:36 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup tickets #4518, #4519 and #4520.

(tron)

2014-10-09 13:53:43 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4520 - requested by taca
security/openssh: security patch

Revisions pulled up:
- security/openssh/Makefile                                    1.221
- security/openssh/distinfo                                    1.87
- security/openssh/patches/patch-sshconnect.c                  1.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Oct  8 15:50:22 UTC 2014

  Modified Files:
  pkgsrc/security/openssh: Makefile distinfo
  Added Files:
  pkgsrc/security/openssh/patches: patch-sshconnect.c

  Log Message:
  Add fix for CVE-2014-2653 from
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=742513.

  Bump PKGREVISION.

(tron)

2014-10-09 13:51:42 UTC MAIN commitmail json YAML

More SVR4_PKGNAME cleanup.

(wiz)

2014-10-09 13:50:08 UTC MAIN commitmail json YAML

More SVR4_PKGNAME cleanup.

(wiz)

2014-10-09 13:47:58 UTC MAIN commitmail json YAML

2014-10-09 13:46:58 UTC MAIN commitmail json YAML

Remove section about SVR4_PKGNAME.

(wiz)

2014-10-09 13:45:27 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4519 - requested by taca
www/apache24: security patch

Revisions pulled up:
- www/apache24/Makefile                                        1.31
- www/apache24/distinfo                                        1.16
- www/apache24/patches/patch-modules_cache_cache__util.c        1.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Oct  8 04:27:18 UTC 2014

  Modified Files:
  pkgsrc/www/apache24: Makefile distinfo
  Added Files:
  pkgsrc/www/apache24/patches: patch-modules_cache_cache__util.c

  Log Message:
  Add patch for CVE-2014-3581.

  Bump PKGREVISION.

(tron)

2014-10-09 13:45:06 UTC MAIN commitmail json YAML

2014-10-09 13:32:18 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4518 - requested by bsiegert
shells/mksh: security update

Revisions pulled up:
- shells/mksh/Makefile                                          1.28
- shells/mksh/distinfo                                          1.26
- shells/mksh/patches/patch-mksh.1                              1.7

---
  Module Name:    pkgsrc
  Committed By:  bsiegert
  Date:          Tue Oct  7 18:51:02 UTC 2014

  Modified Files:
          pkgsrc/shells/mksh: Makefile distinfo
          pkgsrc/shells/mksh/patches: patch-mksh.1

  Log Message:
  Security: Update mksh to 50d.

  R50d is a required bugfix release:

  - [Goodbox] Fix NULL pointer dereference on “unset x; nameref x”
  - [tg] Fix severe regression in field splitting (LP#1378208)
  - [tg] Add a warning about not using tainted user input (including from
    the environ(7)ment) in arithmetics, until Stéphane writes it up nicely

  R50c is a security fix release:

  - [tg] Know more rare signals when generating sys_signame[] replacement
  - [tg] OpenBSD sync (mostly RCSID only)
  - [tg] Document HISTSIZE limit; found by luigi_345 on IRC
  - [zacts] Fix link to Debian .mkshrc
  - [tg] Cease exporting $RANDOM (Debian #760857)
  - [tg] Fix C99 compatibility
  - [tg] Work around klibc bug causing a coredump (Debian #763842)
  - [tg] Use issetugid(2) as additional check if we are FPRIVILEGED
  - [tg] SECURITY: do not permit += from environment
  - [tg] Fix more field splitting bugs reported by Stephane Chazelas and
    mikeserv; document current status wrt. ambiguous ones as testcases too

(tron)

2014-10-09 13:30:02 UTC MAIN commitmail json YAML

Updated sysutils/etcmanage to 0.9.1

(gdt)

2014-10-09 13:21:42 UTC MAIN commitmail json YAML

Additional files are installed on OS X

(adam)

2014-10-09 13:12:11 UTC MAIN commitmail json YAML

Updated devel/p5-List-AllUtils to 0.09

(wiz)

2014-10-09 13:12:02 UTC MAIN commitmail json YAML

Update to 0.09:

0.09    2014-10-05

- Clarify which of List::Util and List::MoreUtils wins when they both provide
  the same function. Requested by Karen Etheridge. RT #98560.

(wiz)

2014-10-09 12:49:21 UTC MAIN commitmail json YAML

Update to 0.9.1.  Note that this is a fairly complete rototill from
the previous version.  However, there are now tests (which pass), and
I've been running this version since June.

New in Version 0.9.1, released 2014-06-09

  * When installing a new config file, create the config file's parent
    directories if they don't exist.  If a directory is created, the
    permissions and ownership are copied from the corresponding
    directory in the upstream config file hierarchy.
  * Add a new --version (-V) option.
  * Add a new --help (-h) option.
  * etcmanage now exits with an error if an unsupported argument is
    specified.
  * 'etcmanage --remove' no longer warns if the given file was not
    already in the database.

New in Version 0.9, released 2014-05-21

  * Use Perl's Digest::MD5 module instead of the md5 utility for
    compatibility with other operating systems.
  * Add a new --destdir option.  If specified, the filenames for all
    operations will be prefixed with the provided directory name.
    This makes it possible to use etcmanage on a chroot or DESTDIR
    environment.
  * Don't automatically update the hash stored in the database if a
    live config file is modified and upstream is changed to match.
    This matches the behavior when both the live file and upstream
    file have been deleted (the record isn't removed from the
    database) and it provides an important invariant:  If the state of
    the live config file does not match the state of the database
    record, nothing is modified.
  * Fix handling of removed files during 'etcmanage --update':  If a
    managed file is deleted, treat it as a manual modification---don't
    restore the upstream file.
  * Improve logging:
    - Log problems updating config files to standard error (STDERR)
      instead of standard output (STDOUT).
    - During 'etcmanage --update', log "UNMANAGED_EQ_UPSTREAM" when
      encoutering a new upstream file that is already installed with
      identical contents.
    - During 'etcmanage --update', log "UNMANAGED_NEQ_UPSTREAM" to
      STDERR when encoutering a new upstream file that is already
      installed but has different contents.
    - Log three distinct types of "MISSING" messages instead of one:
      * "MISSING" is logged when the hash of the upstream file matches
        the database entry
      * "MISSING;UPSTREAM_WITHDRAWN" is logged when the upstream file
        doesn't exist
      * "MISSING;UPSTREAM_DIFFERENT" is logged when the hash of the
        upstream file differs from the hash stored in the database
    - Use the term "MODIFIED" instead of "CONFLICT" and split it into
      three distinct types of "MODIFIED" messages instead of one:
      * "MODIFIED" is logged when the hash of the upstream file
        matches the database entry
      * "MODIFIED;UPSTREAM_WITHDRAWN" is logged when the upstream file
        doesn't exist
      * "MODIFIED;UPSTREAM_DIFFERENT" is logged when the hash of the
        upstream file differs from the hash stored in the database
  * During 'etcmanage --update <dir>', visit all files in '<dir>', not
    just '<dir>/etc'.  This makes it possible to use etcmanage to
    manage files outside of '/etc', but is unfortunately not
    backwards-compatible:  'etcmanage --update' can no longer be
    pointed to a DESTDIR containing a complete NetBSD build (or else
    all operating system files---not just config files---will be
    managed by etcmanage).
  * During 'etcmanage --generate-manifest <dir>', visit all files in
    '<dir>', not just '<dir>/etc'.  This makes it easier to use
    etcmanage to manage files outside of '/etc', but is unfortunately
    not backwards-compatible:  'etcmanage --generate-manifest' can no
    longer be pointed to a DESTDIR containing a complete NetBSD build
    (or else all operating system files---not just config files---will
    be included in the manifest).
  * Add support for systems that don't have an /etc/services file or
    don't consider the /etc/services file to be a configuration file.
  * Fix command line parsing.  It is now possible to specify multiple
    commands at once (including repeating a command) and they will be
    executed in the specified order.
  * Add a '--db' option to specify the database filename.
  * Add a new '--manual' command to mark a file as manually managed.
    This differs from '--remove' in that a future '--update' will
    never automatically cause the file to become managed.  It also
    results in different log messages being printed when a config file
    has been modified, and these log messages are printed to STDOUT
    instead of STDERR (because they are expected conditions).
  * Refuse to add abnormal pathnames to the database.  A pathname is
    considered abnormal if it has any of the following properties:
      - contains whitespace
      - begins with '#'
      - is the empty string
      - is relative
      - contains '/../', '/./', or superfluous slashes
    Pathnames with the first three properties in the above list cannot
    be represented in a manifest.  Relative pathnames do not make
    sense (what are they relative to?).  Pathnames with '/../', '/./',
    or superfluous slashes can result in unintentional duplicate
    database entries that conflict with each other.
  * Various code cleanups.
  * Various build system improvements.

(gdt)

2014-10-09 12:46:03 UTC MAIN commitmail json YAML

Updated www/py-django-reversion to 1.8.4; misc/libcdio to 0.93; devel/py-urwid to 1.2.2; audio/py-audiotools to 2.22

(adam)

2014-10-09 12:44:37 UTC MAIN commitmail json YAML

2014-10-09 12:35:05 UTC MAIN commitmail json YAML

Switched to .tar.bz2; change API in buidlink3.mk to match cd-paranoia split off

(adam)

2014-10-09 12:32:54 UTC MAIN commitmail json YAML

Support for extracting audio from a CD in a jitter- and error-tolerant way.
Split off from libcdio to allow more flexible licensing and to be compatible
with cdparanoia-III-10.2's license. And also, libcdio is just too large.

(adam)

2014-10-09 11:57:36 UTC MAIN commitmail json YAML

Changes 1.2.2:
* Fix for a serious raw_display performance regression
* Fix for high color palette detection (by extempo)
* Small changes to enable windows support

(adam)

2014-10-09 11:55:22 UTC MAIN commitmail json YAML

Changes 0.93:
- Add cdio_free, iso9660_stat_free, and iso9660_xa_free functions.
- Deprecate mmc_isrc_track_read_subchannel
- Add mmc_get_track_isrc function.
- Update OS versions we recognize
- OSX, and MS Windows, ISO 9660 and other bug fixes
- Remove Coverty scan warnins and errors
- OS/2 driver performance update

(adam)

2014-10-09 11:31:40 UTC MAIN commitmail json YAML

2014-10-09 11:19:57 UTC MAIN commitmail json YAML

update to reflect current version

(pettai)

2014-10-09 10:09:22 UTC MAIN commitmail json YAML

Changes 1.8.4:
- Provisional Django 1.7 support
- Multi-db and multi-manager support to management commands
- Added index on reversion.date_created
- Minor bugfixes and documentation improvements

(adam)

2014-10-09 09:32:40 UTC MAIN commitmail json YAML

Remove another unneeded patch after update.

(wiz)

2014-10-09 09:16:40 UTC MAIN commitmail json YAML

Updated lang/python34 to 3.4.2

(adam)

2014-10-09 09:15:38 UTC MAIN commitmail json YAML

Python 3.4.2 has many bugfixes and other small improvements over 3.4.1. One new feature for Mac OS X users: the OS X installers are now distributed as signed installer package files compatible with the OS X Gatekeeper security feature.

(adam)

2014-10-09 09:12:00 UTC MAIN commitmail json YAML

Added devel/py-protobuf version 2.5.0

(khorben)

2014-10-09 09:11:08 UTC MAIN commitmail json YAML

Added devel/py-protobuf

(khorben)

2014-10-09 09:10:47 UTC MAIN commitmail json YAML

2014-10-09 05:34:37 UTC MAIN commitmail json YAML

webkit-gtk updated to 2.4.6.

(wiz)

2014-10-09 05:33:43 UTC MAIN commitmail json YAML

Update to 2.4.6:

=================
WebKitGTK+  2.4.6
=================

What's new in WebKitGTK+ 2.4.6?

  - Use free icons for the web inspector.
  - Make vimeo videos work again with the GStreamer media backend.
  - Fix selection rendering when unfocused with recent GTK+ versions.
  - Fix toggle buttons rendering with recent GTK+ versions.
  - Fix race condition when downloading a file due to the intermediate
    temporary file.

(wiz)

2014-10-09 00:57:29 UTC MAIN commitmail json YAML

Updated devel/guile-www to 2.38

(gdt)

2014-10-09 00:57:11 UTC MAIN commitmail json YAML

Update to 2.38.

- 2.38 | 2014-10-08

  - bug-report address changed

    Please send bug reports to the address shown by running command:

    ./configure --help

    Mail sent to the previous address is likely to be misplaced.

  - bugfixes

    - ‘parse-form’ uses ‘list’ instead of ‘values’

      NB: Backward-incompatible change.

      Previously, this ‘(www server-utils form-2-form)’ proc would use
      ‘values’ for form elements that have type info, consing the
      result into the returned alist.  Unfortunately, use of ‘values’
      outside a ‘call-with-values’ context (e.g., as a container, as
      in this case) is not supported by Guile 2.x.

      Now, the four pieces of type info are packaged w/ ‘list’.

    - support for VPATH "make check"

      Previously VPATH "make check" failed to initialize each test's
      infrastructure (i.e., v/common).  Now it takes into account the
      configure-substituted and Makefile var ‘srcdir’ as well.

  - new optional arg ‘u8’

    - ‘(www url-coding) url-coding:decode’

      This proc now takes an optional arg U8, which if non-‘#f’, means
      to return a u8vector instead of a string.

    - ‘(www server-utils parse-request) alist<-query’

      This proc now takes an optionl arg U8, which if non-‘#f’, means
      to return u8vectors instead of strings for names and values.

  - changes to ‘(www server-utils form-2-form) parse-form’

    - non-string args ok

      The first arg can now be a form:

      ((multipart . MINOR) PARAMETER...)

      i.e., the parsed form of the Content-Type header's value.
      Relatedly, the arg's documented name is now simply TYPE.

      The second arg can now be an integer specifying the number of
      bytes to read from the current input port.

      For backward compatibility, TYPE and RAW-DATA can also be
      strings.

    - sub ‘multipart/mixed’ better recognized

      Previously, a (sub) part w/ "Content-Type: multiPART / miXed"
      (for instance) would be handled opaquely.  Now, such a header is
      properly recognized and recursed into.  Sigh, one has to wonder:
      Will there ever be a more tightly specified MIME 2.0?

  - CGI file-uploads can now be done in "move u8" style

    Proc ‘(www cgi) cgi:init’ now accepts options ‘move’, which
    controls how file-uploads are handled.  When specified, the
    uploaded files are returned as procedures that can be called to
    write the actual contents of the file (a u8vector) to a port or
    to return those contents directly.  This option takes precedence
    over ‘uploads-lazy’.

    Another new option is ‘move-simple-text/plain’, which only is
    meaningful if ‘move’ is also specified.  This simplifies the
    value of form parameters with MIME type ‘text/plain’ to a
    string, discarding other MIME information.

    See examples/id.cgi.in for how to use these options.

  - "make check" locale support

    You can customize (somewhat) the locale that tests use by
    manipulating file v/testing-locale.  See README.

  - bootstrap tools upgraded
    - GNU Automake 1.14.1
    - Guile-BAUX 20140110.0849.39e9660

(gdt)

2014-10-08 22:52:04 UTC MAIN commitmail json YAML

2014-10-08 22:20:34 UTC MAIN commitmail json YAML

Updated textproc/yelp-xsl to 3.14.0

(prlw1)

2014-10-08 22:20:04 UTC MAIN commitmail json YAML

Update yelp-xsl to 3.14.0

3.14.0
======
* Updated translations:
  sv    (Anders Jonsson)

3.13.92
=======
* Updated translations:
  ro    (Daniel Serbanescu)

(prlw1)

2014-10-08 22:13:05 UTC MAIN commitmail json YAML

Updated devel/glibmm to 2.42.0

(wiz)

2014-10-08 22:12:55 UTC MAIN commitmail json YAML

Update to 2.42.0:

2.42:

API additions since 2.40:

* Add Permission and SimplePermission.
  (Juan R. Garc鱈a Blanco) Bug #732436
* Add support for GtkContainer child properties.
  (Juan R. Garc鱈a Blanco)

2.42.0 (stable):

Gio:
* Notification: Deprecate set_urgent().
  (Murray Cumming)

Tools:
*  h2def.py: fixed generator in case of inline functions.
  (Marcin Kolny) Bug #736427

Build:
* Update and overhaul of Visual Studio 2005 project build files.
(Chun-wei Fan)
* Fixes for  Visual Studio 2008 and 2010 project build files.
(Chun-wei Fan)
* Fix ustring for Visual Studio Builds.
(Chun-wei Fan) Bug #736720
* Visual Studio Builds: Add "install" project.
  (Chun-wei Fan)
* Fix tests in Visual Studio.
  (Chun-wei Fan) Bug #736778

2.41.4 (unstable):

gmmproc:
* Added parameter exception_handler in _WRAP_VFUNC().
  (Marcin Koln) Bug #735132
* Better error checks in some _WRAP_* macros.
  (Kjell Ahlstedt)

Build:
* Update and overhaul of Visual Studio 2010 and Visual Studio 2008
  project build files.
  (Chun-wei Fan)
* Gio::DBus: Don't use parameter name 'interface' to fix the build with MinGW.
  (Kjell Ahlstedt) Bug #735137.

2.41.3 (unstable):

Documentation:
* Network example:
  - Use Glib::OptionEntry and friends
  (Kjell Ahlstedt)
  - Network example: Add --use-ipv6 command line option
  (Shashank) Bug #734094.

2.41.2 (unstable):

Gio:
* Menu: Allow detailed_action == null
  (Kjell Ahlstedt) Bug #733203 (Hubert Figuiere)
* Add Permission and SimplePermission.
  (Juan R. Garc鱈a Blanco) Bug #732436

Glib:
* Make custom interface properties instance data.
  (Kjell Ahlstedt) Bug #732746
* PropertyBase: Use g_object_notify_by_pspec() instead of g_object_notify()
  (Povilas Kanapickas) Bug #731484

gmmproc:
* Add support for GtkContainer child properties.
  (Juan R. Garc鱈a Blanco)
*  _WRAP_METHOD: Allow multi-word parameter types such as unsigned int.
  (Kjell Ahlstedt)

2.41.1 (unstable):

Gio:
* Application: Deprecate set_action_group().
  (Kjell Ahlstedt)
* DesktopAppInfo: Deprecate set_desktop_env().
  (Kjell Ahlstedt)
* Settings:  Deprecate list_schemas(), range_check() and
  property_schema().
  (Kjell Ahlstedt)
* TlsConnection: Deprecate [set|get]_use_system_certdb()
  and property_use_system_certdb().
  (Kjell Ahlstedt)
* VolumeMonitor: Deprecate adopt_orphan_mount().
  (Kjell Ahlstedt)

Glib:
* Keyfile: Deprecate one of the load_from_dirs() methods.
  (Kjell Ahlstedt)
* ValueArray: Deprecated.
  (Kjell Ahlstedt)

tests:
* Test custom properties and an interface with properties.
  (Jos辿 Alburquerque) Bug #697229

Documentation:
*  Add a blank line after @deprecated and @newin to help doxygen.
  (Kjell Ahlstedt)

2.41.0 (unstable):

Gio:
* Application:
  - Add add_main_option_entry() and enum OptionType.
  (Kjell Ahlsted) Bug #727822.
  - Add add_main_option_entry() taking a slot parameter
  (Kjell Ahlsted) Bug #727822.
* Add SocketSource, SignalSocket and Socket::create_source().
  (Kjell Ahlsted) Bug #725281.

Documentation:
* examples/network: Use SocketSource and SignalSocket.
  (Kjell Ahlstedt)

Build:
* gmmproc: Don't interpret a comma as the end of a deprecation message.
  (Kjell Ahlstedt)

(wiz)

2014-10-08 22:04:37 UTC MAIN commitmail json YAML

Updated games/puzzles to 20141008.r10282

(wiz)

2014-10-08 22:04:27 UTC MAIN commitmail json YAML

Update to 10282:
Fix antialiasing artifacts around edges of Bridges islands.

(wiz)

2014-10-08 21:57:07 UTC MAIN commitmail json YAML

2014-10-08 21:56:42 UTC MAIN commitmail json YAML

Updated devel/hs-cmdargs to 0.10.10

(szptvlfn)

2014-10-08 21:56:17 UTC MAIN commitmail json YAML

Update to 0.10.10

CHANGES:
0.10.10
    #14, fix @ file arguments
deprecated tyConString

(szptvlfn)

2014-10-08 19:19:43 UTC MAIN commitmail json YAML

Cleaned up the TODO list; the license check has been implemented.

(rillig)

2014-10-08 19:15:16 UTC MAIN commitmail json YAML

Fixed variable type of PYTHON_VERSIONED_DEPENDENCIES, so that build-time
and run-time dependencies can be specified without pkglint warnings.

(rillig)

2014-10-08 15:51:31 UTC MAIN commitmail json YAML

Note update of security/openssh package to 6.6.1nb3.

(taca)

2014-10-08 15:50:48 UTC MAIN commitmail json YAML

Note update of net/tcl-scotty to 2.1.11nb11.

(he)

2014-10-08 15:50:22 UTC MAIN commitmail json YAML

2014-10-08 15:50:18 UTC MAIN commitmail json YAML

Add a patch to handle DISPLAY-HINT with 't' the same as 'a',
so that we can deal with an updated snmpFrameworkMIB with

SnmpAdminString ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "255t"

Bump PKGREVISION.

(he)

2014-10-08 14:13:12 UTC MAIN commitmail json YAML

Updated textproc/py-Whoosh to 2.5.7

(wen)

2014-10-08 14:12:11 UTC MAIN commitmail json YAML

Updated textproc/py-Whoosh to 2.5.7

(wen)

2014-10-08 14:11:09 UTC MAIN commitmail json YAML

2014-10-08 10:33:11 UTC MAIN commitmail json YAML

Updated misc/yelp3 to 3.14.0

(prlw1)

2014-10-08 10:32:40 UTC MAIN commitmail json YAML

Update yelp3 to 3.14.0

This seems to fix PR pkg/48540

Highlights from the release notes:

* Fixed crash on searching, #736312 (Marcos Chavarria Teijeiro)
* Style the find revealer, #736408 (David King)
* Use new symbolic menu item
* Complete redesign to fit with new GNOME 3 apps
* Updated color computing code to avoid deprecations
* Fixed critical crasher after closing windows
* Fixed some deprecation warnings
* Implemented auto-reload for DocBook, #704821
* Updated GSettings install rule, #697815  <- no need for patch-configure
* Correctly detect Unity for conditional processing, #707352 (Kevin Godby)
* Fixed build issue with intltool and gettext, #706854 (Sean de Burca)
* Various updates for deprecated APIs in GLib and GTK
* Added support for DocBook conditional processing on desktop environment
* Updated translations

For full details see:

https://git.gnome.org/browse/yelp/tree/NEWS?id=3.14.0

(prlw1)

2014-10-08 10:04:45 UTC MAIN commitmail json YAML

Add missing braces and check getline returns success, this code must have
worked by pure luck in the past, and now works with strict POSIX awk too.

(jperkin)

2014-10-08 09:55:20 UTC MAIN commitmail json YAML

+ pear-HTTP_Request2

(obache)

2014-10-08 09:54:41 UTC MAIN commitmail json YAML

Added www/pear-HTTP_Request2 version 2.2.1

(obache)

2014-10-08 09:54:28 UTC MAIN commitmail json YAML

Import pear-HTTP_Request2-2.2.1 as www/pear-HTTP_Request2.

PHP5 rewrite of HTTP_Request package (with parts of HTTP_Client). Provides
cleaner API and pluggable Adapters:
  * Socket adapter, based on old HTTP_Request code,
  * Curl adapter, wraps around PHP's cURL extension,
  * Mock adapter, to use for testing packages dependent on HTTP_Request2.
Supports POST requests with data and file uploads, basic and digest
authentication, cookies, managing cookies across requests, proxies, gzip and
deflate encodings, redirects, monitoring the request progress with Observers...

(obache)

2014-10-08 09:52:48 UTC MAIN commitmail json YAML

+ pear-Net_URL2

(obache)

2014-10-08 09:51:52 UTC MAIN commitmail json YAML

Added net/pear-Net_URL2 version 2.0.8

(obache)

2014-10-08 09:51:29 UTC MAIN commitmail json YAML

Import pear-Net_URL2-2.0.8 as net/pear-Net_URL2.

Provides parsing of URLs into their constituent parts (scheme, host, path etc.),
URL generation, and resolving of relative URLs.

(obache)

2014-10-08 08:16:27 UTC MAIN commitmail json YAML

Updated www/p5-Mojolicious to 5.48

(wen)

2014-10-08 08:15:03 UTC MAIN commitmail json YAML

Update to 5.48

Upstream changes:
5.48  2014-10-07
  - Emergency release for a serious security issue that can result in
    parameter injection attacks, everybody should update!
    Breaking change: Methods that previously worked differently in scalar than
    in list context now always assume scalar context, and new methods have
    been added to cover the list context functionality.
  - Added every_cookie and every_upload methods to Mojo::Message.
  - Added every_param method to Mojo::Message::Request.
  - Added every_param method to Mojo::Parameters.
  - Added every_cookie, every_param and every_signed_cookie methods to
    Mojolicious::Controller.
  - Added every_param method to Mojolicious::Validator::Validation.
  - Added from_json and to_json functions to Mojo::JSON.
  - Improved pluck method in Mojo::Collection to be able to extract values
    from hash references.

(wen)

2014-10-08 06:25:07 UTC MAIN commitmail json YAML

Added audio/spek version 0.8.2

(wiz)

2014-10-08 06:24:42 UTC MAIN commitmail json YAML

2014-10-08 06:24:20 UTC MAIN commitmail json YAML

Import spek-0.8.2 as audio/spek.

Spek helps to analyse your audio files by showing their spectrogram.

Features

* Supports all popular lossy and lossless audio file formats thanks
  to the FFmpeg libraries.
* Ultra-fast signal processing, uses multiple threads to further
  speed up the analysis.
* Shows the codec name and the audio signal parameters.
* Allows to save the spectrogram as an image file.
* Drag-and-drop support; associates with common audio file formats.
* Auto-fitting time, frequency and spectral density rulers.
* Adjustable spectral density range.
* Translated into 19 languages.

(wiz)

2014-10-08 06:07:46 UTC MAIN commitmail json YAML

Updated textproc/icu; graphics/libwebp; wm/windowmaker

(adam)

2014-10-08 04:27:50 UTC MAIN commitmail json YAML

Note update of www/apache24 package to 2.4.10nb1.

(taca)

2014-10-08 04:27:18 UTC MAIN commitmail json YAML

2014-10-08 00:39:20 UTC MAIN commitmail json YAML

Update required dependency versions (that was the point of updating pango)

(prlw1)

2014-10-08 00:03:28 UTC MAIN commitmail json YAML

Updated devel/accerciser3 to 3.14.0

(prlw1)

2014-10-08 00:03:05 UTC MAIN commitmail json YAML

Update accerciser3 to 3.14.0

===============
version 3.14.0
===============

===============
version 3.13.92
===============

What's New
==========
- doap: update URLs
- doap: category apps
- doap: add <programming-language>
- Mark images as not translatable to keep them off translators radar
- Addressing some PyGObject initializer deprecations
- Adding transient windows for bookmarks dialogs

Contributors: Piotr Drag, Gabor Kelemen, Olav Vitters, Javier Hernandez

New And Updated Translations
============================
- Tom Tryfonidis (el)
- Daniel Mustieles (es)
- Inaki Larranaga Murgoitio (eu)
- Anders Jonsson (sv)
- Alexandre Franke (fr)

(prlw1)

2014-10-08 00:00:15 UTC MAIN commitmail json YAML

Updated devel/libwnck3 to 3.4.9

(prlw1)

2014-10-07 23:59:51 UTC MAIN commitmail json YAML

Update libwnck3 to 3.4.9

=============
Version 3.4.9
=============

  Fixes

  * TaskList: remove new Startup Notification API

=============
Version 3.4.8
=============

  Features

  * Add support for _GTK_FRAME_EXTENTS (Rico Tzschichholz)

  Fixes

  * WindowActionMenu: unset window and stop async events on dispose
    (Marco Trevisan)
  * TaskList: use new Startup Notification API (Stefan Sperling)

  Translators

  * Fran Dieguez (gl)
  * GunChleoc (gd)
  * Milo Casagrande (it)
  * Noriko Mizumoto (ja)
  * Rudolfs Mazurs (lv)
  * Wylmer Wang (zh_CN)

(prlw1)

2014-10-07 23:52:30 UTC MAIN commitmail json YAML

Updated x11/gtk3 to 3.14.1

(prlw1)

2014-10-07 23:52:09 UTC MAIN commitmail json YAML

Update gtk3 to 3.14.1

Highlights from release notes:

* GtkMisc::xalign has been undeprecated for now, it is still needed

* GtkIconView
- Always draw cell background
- Fix handling of prelight items

* GtkWindow
- Fix growing nautilus windows

* Theming:
- Use sass functions more
- Theme .app-notification instead of .app-notification.frame
- Lots of button fine-tuning
- Avoid double background rendering in tooltips
- Much faster blur implementation for shadows
- Support symbolic, recolorable pngs
- Many improvements in details
- Style .needs-attention in GtkStackSwitcher
- Adwaita is much more complete
- Shadows, reliefs and frames in GtkScrolledWindow, GtkViewport,
  GtkButton, GtkEntry, GtkFrame, etc are now translated to style
  classes and themed
- Use client-side shadows for menus and tooltips
- Include the Adwaita theme
- The default theme is now Adwaita
- Icon loading now respects limits specified in the icon theme,
  unless GTK_ICON_LOOKUP_FORCE_SIZE is set
- Don't include image content in icon caches, to avoid huge caches
- GtkSwitch gained a hover state
- Use outlines to render focus rings
- Use icons to render spinners, expanders and arrows
- GtkIconTheme can force symbolic or regular
  icon variants
- GtkIconTheme will automatically load rtl
  icon variants

* Inspector:
- Show widget allocations
- Show hidden windows
- Fix initial state of dark switch
- Show some widget states and buildable ids
- Add GtkTreeSelection to object tree
- Add an easy way to change the font
- Can change hi-dpi scale on the fly
- Can simulate touchscreen at runtime
- Shows style properties
- Ctrl-Shift-I selects the widget under the pointer
- Property editors show property and settings bindings
- Support saving custom CSS
- Show GMenus and GActions
- Show combobox menus and submenus
- Lower the inspector window when picking
- Misc. navigation improvements

* Show widget state and other misc. info

* Wayland:
- Implement Drag-and-Drop
- Use subsurfaces for entry completion popups
- Use subsurfaces for tooltips
- Support newer protocol versions
- Fix repaint artifacts
- Update xdg-shell
- Always use CSD under Wayland
- Avoid a crash on pointer-less systems
- Context menus work now
- Support GNOME classic mode
- Update to the latest xdg-shell protocol
- Updates for xdg_shell protocol changes
- Touch support

* To align better with css, button and menuitem subclasses now use a
  :checked state to indicate their checkedness, instead of :active or
  :selected.

* Deprecations, removals:
- GtkStatusIcon, GtkThemingEngine
- GtkWindow no longer supports resize grips
- builtin icons have been deprecated in favor of loading icons
  from resources
- Style regions
- Support for .icon files
- gdk_window_flush, drawing outside of begin/end paint
- GdkColor
- GtkMisc
- GtkArrow
- focus-line-width style property
- GtkNumerableIcon
- GtkButton::x/yalign
- gtk_widget_reparent
- gtk_widget_region_intersect
- gtk_container_set_reallocate_redraws

* GtkFileChooser
- Fix editing of bookmarks
- Use symbolic icons in the path bar
- received some design improvements

* GtkTextView
- Add a vfunc to allow subclasses to draw above/below text

* GtkImage
- Support scale factor when loading from resources

* Windows:
- Fix handling of input shapes
- Support font scaling
- Dialog theming fixes
- Several crash fixes
- Fix icon theme loading
- *Many* theme improvements
- Add popover theming
- Enable introspection
- Theme improvements

* CSS:
- Selectors can now match state pseudo classes on
  all elements
- Support outline-radius in CSS
- Implement 'unset' and 'all'
- Support -gtk-icontheme
- Support -gtk-icon-source
- Add -gtk-icon-transform, supporting the 2D
  parts of CSS transforms
- Support -gtk-icon-style

* GtkListBox:
- Rows now have a selectable property and will be
  styled accordingly
- GtkListBox can now do multi-selection

* GtkApplication:
- gtk_application_prefers_app_menu is a new function to facility
  adapting UIs to platform expectations
- GtkApplication now tries to load menus from resources in the
  resource path that is defined by GApplication
- GtkApplication set up a resource path for loading icons as well

* GtkScrolledWindow:
- Scrolling in response to user input (scrollbar clicks, keynav)
  is now animated
- The displacement animation has been replaced edge gradients

* GtkScaleButton:
- The orientation is now changed on the fly to make the popup
  fit into small windows

* GtkEntry:
- Activity mode progress is now smooth

* Client-side decorations
- The default button layout includes minimize and maximize again
- Dialogs are no longer using client-side decorations when
  use-header-bar is unset

* GTK+ now ships a simple icon theme browser, gtk3-icon-browser

* Gestures:
- Convert most widgets to use gestures internally

* Widget factory:
- Improve coverage of GTK+ features

* Interactive debugging support. The GtkInspector
  window can be triggered with the Ctrl-Shift-I
  or Ctrl-Shift-D keyboard shortcuts, or via the
  GTK_DEBUG environment variable.

* Gesture support has landed. New classes include
  GtkGestureLongPress, GtkGestureMultiPress, GtkGestureSwipe,
  GtkGesturePan, GtkGestureRotate, GtkGestureZoom. Many GTK+
  widgets already use gestures internally. Gestures also
  show up in GtkInspector.
  The gesture-related APIs are still subject to change.

* GTK+ widgets can now draw outside their allocation,
  by setting a clip with gtk_widget_set_clip().
  The clip-related APIs are still subject to change.

* GtkStack has added a few more transition types

* GtkProgressBar is now narrower

* GtkSwitch has a way to delay state changes

* GtkMenuButton is using a popover for menu models by default

* GtkPopover can have horizontal sections

* GtkBuilder
- Supports property binding
- Supports dialog actions

* Client-side decorations
- The requirement for _GTK_FRAME_EXTENTS has been dropped
  to avoid 'double headers' with most window managers
- Drawing of DND highlights around the entire window works

* Broadway backend
- Now builds on OpenBSD

* Many bug fixes

* Translation updates

For full details see:

https://git.gnome.org/browse/gtk+/tree/NEWS?id=3.14.1

(prlw1)

2014-10-07 23:30:11 UTC MAIN commitmail json YAML

Updated devel/gobject-introspection to 1.42.0

(prlw1)

2014-10-07 23:29:49 UTC MAIN commitmail json YAML

Update gobject-introspection to 1.42.0

Mainly update glib annotations. Some Python 3 compatibility fixes.
Replace the 'allow_none' field on parameters with two separate fields:
'nullable' and 'optional'.
Many bug fixes.

(prlw1)

2014-10-07 23:19:05 UTC MAIN commitmail json YAML

Updated devel/glib2 to 2.42.0

(prlw1)

2014-10-07 23:18:36 UTC MAIN commitmail json YAML

Update glib to 2.42.0

Patches removed:
- patch-ba
    Fixed in 4f775b7b and 369c8bd5 (Bug 583330)
- patch-gio_gcredentials.c
  patch-gio_gcredentialsprivate.h
  patch-gio_gsocket.c
  patch-gio_gunixcredentialsmessage.c
  patch-gio_tests_credentials.c
    Fixed in 3428bba1 and e763d934 (Bugs 728256 735819)
- patch-glib_gmessages.c
    Fixed in ab9f63fa (Bug 720708)

Patches changed:
- patch-gio_gioenums.h
    Still need 45344f36 (Bug 728256)
- patch-ak (=> patch-aa)
    Hunk 9 fixed in 74ec9470

Highlights from the release notes:

* GApplication now has binding-friendly API to handle
  commandline options: g_application_add_main_option

* G_GNUC_BEGIN_IGNORE_DEPRECATIONS works with clang

* g_clear_pointer and g_clear_object no longer use atomics

* The Unicode support has been updated to version 7.0
  of the Unicode standard

* GNotification now supports priorities for notifications

* GCredentials has gained NetBSD support

* GMutex now uses a faster, native implementation on Linux

* Many bugfixes found by static analysis, including potential fd leaks
  and NULL pointer dereferences.

* Increased use of (nullable) attribute on out values and return types
  now that it is supported (mostly from porting Vala metadata).

* use XDG_CURRENT_DESKTOP for OnlyShowIn/NotShowIn handling of desktop
  files, deprecating g_desktop_app_info_set_desktop_env()

* add support for g_desktop_app_info_get_implementations() to find
  desktop files that have an Implements= line for a given interface

* GHmac has gained SHA-512 support

* support the new mimeapps specification (most notably, moving the
  assoications/defaults configuration to ~/.config/mimeapps.list).

* libgobject is now linked -Wl,-z,nodelete when possible to avoid errors
  when gobject is used from a module for a program that does not itself
  use gobject and that module is unloaded/reloaded

* ... and many other bug fixes.

* Many translations updated.

For full details see:

https://git.gnome.org/browse/glib/tree/NEWS?h=glib-2-42

(prlw1)

2014-10-07 22:59:35 UTC MAIN commitmail json YAML

Updated devel/pango to 1.36.8

(prlw1)

2014-10-07 22:59:06 UTC MAIN commitmail json YAML

Update pango to 1.36.8

Apparently the ellipsis attributes are enough for gtk3 to need this
version.

Overview of changes between 1.36.7 and 1.36.8
=============================================
- Make tests not fail on build.gnome.org

Overview of changes between 1.36.6 and 1.36.7
=============================================
- Add tests for pango markup
- Add tests for PangoLayout
- Add an analysis flag for ellipsis (#735719)
- Treat attributes in ellipsis better (#735732)

(prlw1)

2014-10-07 20:51:08 UTC MAIN commitmail json YAML

Updated emulators/DatLib to 2.36
Updated emulators/DatUtil to 2.46
Updated emulators/MAMEDiff to 2.31
Updated emulators/ROMBuild to 2.14
Updated emulators/ZIPIdent to 2.11

(shattered)

2014-10-07 20:50:11 UTC MAIN commitmail json YAML

Update to 2.11 (2009). Changes:

- use DatLib 2.36

(shattered)

2014-10-07 20:49:47 UTC MAIN commitmail json YAML

Update to 2.14 (2009). Changes:

- Added knowledge of old v2 sound ROM from sonicwi2 (various emus).
- Updated a few existing definitions to account for MAME ROM renames
  (up to MAME 0.135).

(shattered)

2014-10-07 20:49:18 UTC MAIN commitmail json YAML

Update to 2.31 (2009). Changes:

- Fixed de-duplication of "nodump" ROMs and disks for MAMEDiff.
- Log file now shows the MAMEDiff version as well as the options.
- Changed the directory scanner to process zero byte files / roms.

(shattered)

2014-10-07 20:48:55 UTC MAIN commitmail json YAML

Update to 2.46 (2009). Changes:

- Added date, email, homepage, url, comment, forcenodump to CMPro.
- Added category to RomCenter header (for completeness).
- Added the Generic XML format.
- Added automatic date population (based on the version number).

(shattered)

2014-10-07 20:48:28 UTC MAIN commitmail json YAML

Update to 2.36 (2009). Notable changes:

- Fixed crash when loading full MESS XML (0.105 upwards).
- MESS: Support for new device attributes (type, tag and mandatory).
- MESS: Support for machine "RAM options".
- Added support for 64-bit ROM sizes (n.b. not for directory scan).

- Added the DTD for ROM Management Datafiles (revision 1.1).
- Added support for Game Launcher and GameEx Map Files (untested).
- Added load / support for AAE RomList.
- Added save support for the Hyperspin Database format.

(shattered)

2014-10-07 18:52:19 UTC MAIN commitmail json YAML

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

Security: Update mksh to 50d.

R50d is a required bugfix release:

- [Goodbox] Fix NULL pointer dereference on “unset x; nameref x”
- [tg] Fix severe regression in field splitting (LP#1378208)
- [tg] Add a warning about not using tainted user input (including from
  the environ(7)ment) in arithmetics, until Stéphane writes it up nicely

R50c is a security fix release:

- [tg] Know more rare signals when generating sys_signame[] replacement
- [tg] OpenBSD sync (mostly RCSID only)
- [tg] Document HISTSIZE limit; found by luigi_345 on IRC
- [zacts] Fix link to Debian .mkshrc
- [tg] Cease exporting $RANDOM (Debian #760857)
- [tg] Fix C99 compatibility
- [tg] Work around klibc bug causing a coredump (Debian #763842)
- [tg] Use issetugid(2) as additional check if we are FPRIVILEGED
- [tg] SECURITY: do not permit += from environment
- [tg] Fix more field splitting bugs reported by Stephane Chazelas and
  mikeserv; document current status wrt. ambiguous ones as testcases too

(bsiegert)

2014-10-07 18:08:30 UTC MAIN commitmail json YAML

Updated lang/sun-{jre,jdk}7 to 7.0.67

(ryoon)

2014-10-07 18:07:07 UTC MAIN commitmail json YAML

Update to 7.0.67

Changelog:
7.0.67: http://www.oracle.com/technetwork/java/javase/7u67-relnotes-2251330.html
Bug Fixes

The following bug fix is included in this release:

Area: deploy/plugin
Synopsis: regression - java_arguments not accepted after update to 7u65

The regression is addressed in this release.

See 8050875.

7.0.65: http://www.oracle.com/technetwork/java/javase/7u65-relnotes-2229169.html
IANA Data 2014c

JDK 7u65 contains IANA time zone data version 2014c. For more information, refer to Timezone Data Versions in the JRE Software.

New Features and Changes

New Java Control Panel option to disable sponsors

Currently, to disable sponsor offers at the time of installation, the user can de-select the option during installation or can pass SPONSORS=0 as a commandline option.

In this release, a new Java Control Panel(JCP) option to disable sponsors is available. To use this option, go to JCP's "Advanced" tab, and check or uncheck "Suppress sponsor offers when updating Java".

This option is applicable to 32 and 64 bit Windows operating systems.
New JAXP processing limit property - maxElementDepth

A new property, maxElementDepth, is added to provide applications the ability to set limit on maximum element depth in an xml file that they parse. This may be helpful for applications that may use too much resources when processing an xml file with excessive element depth.

    Name: http://java.sun.com/xml/jaxp/properties/maxElementDepth
    Definition: Limit the maximum element depth
    Value: A positive integer. 0 is treated as no limit. Negative numbers are treated as 0.
    Defaule value: 0
    System property: jdk.xml.maxElementDepth

For more details, see Processing Limits from JAXP tutorial trail.

See 8031541 (not public).
Bug Fixes

This release contains fixes for security vulnerabilities. For more information, see Oracle Critical Patch Update Advisory.

For a list of bug fixes included in this release, see JDK 7u65 Bug Fixes page.

The following are some of the notable bug fixes in this release:

Area: client-libs/AWT
Synopsis: Using RMI from a restricted environment may cause a NullPointerException.

If an application uses RMI and runs in a restricted environment (ie. Java Plugin, Java Web Start), it may not work. In particular, if you run a UI from an RMI callback, a NullPointerException is likely to be thrown.

See 8019274.

Area: other-libs/corba
Synopsis: org.omg.CORBA.ORBSingletonClass loading no longer uses context class loader

The system property org.omg.CORBA.ORBSingletonClass is used to configure the system-wide/singleton ORB. The handling of this system property was changed in the 7u55 release to require that the system wide/singleton ORB be visible to the system class loader.

In this release, the handling of this system property has been reverted to match the behavior found in JDK versions prior to 7u55 release, i.e. the singleton ORB is once again located using the thread context class loader of the first thread, to call the no-argument ORB.init method. The change is made to support applications which depend on this behavior.

Note that this change is applicable to 8u20, 7u65, 6u85 and 5.0u75 releases. For JDK 9, the new behavior, where the system wide/singleton ORB needs to be visible to the system class loader, will continue.

See 8046603.
Known Issues

Area: xml/jax-ws
Synopsis: JAF initialization in SAAJ clashing with the one in javax.mail

After initialization of SAAJ components, the javax.mail library may fail to work under certain circumstances, which in turn could break the javax.mail's JAF setup.

A possible workaround is to re-add the javax.mail handler before using javax.mail API:
MailcapCommandMap mailMap = (MailcapCommandMap) CommandMap.getDefaultCommandMap();
mailMap.addMailcap("multipart/mixed;;x-java-content-handler=com.sun.mail.handlers.multipart_mixed");

See 8043129.

(ryoon)

2014-10-07 16:47:38 UTC MAIN commitmail json YAML

2014-10-07 16:11:12 UTC MAIN commitmail json YAML

Changes 0.95.6:
* Window Maker can now load WebP images and support ImageMagick library to support even more formats like SVG, BMP, TGA, ...
* Add mini-window apercu , a small preview of window contents
* Support for up to 9-buttons mouse added
* Many configuration options added to WPrefs.app
* Add wmiv, an image viewer application
* Bug fixes and code cleanups by various people.

(adam)

2014-10-07 16:09:53 UTC MAIN commitmail json YAML

ICU 54 is a major release of ICU, with new features, new APIs and many bug fixes in data and code. It supports the latest versions of the Unicode locale data (CLDR 26, September 2014) and Unicode Standard (Unicode 7.0, June 2014). The improvements include 72 new measurement units, Unihan radical-stroke collation moved into root, new RBNF PluralFormat syntax, dictionary-based word and line break for Burmese, support for short locale display names, compatibility support for IANA time zone data abbreviations, a tech preview of FilteredBreakIterator using ULI break data, ICU4C thread safety fixes, and the ability to build ICU4C Paragraph Layout with HarfBuzz.

(adam)

2014-10-07 16:08:02 UTC MAIN commitmail json YAML

Changes 0.4.1:
* AArch64 (arm64) & MIPS support/optimizations
* NEON assembly additions:
  - ~25% faster lossy decode / encode (-m 4)
  - ~10% faster lossless decode
  - ~5-10% faster lossless encode (-m 3/4)
* dwebp/vwebp can read from stdin
* cwebp/gif2webp can write to stdout
* cwebp can read webp files; useful if storing sources as webp lossless

(adam)

2014-10-07 15:50:03 UTC MAIN commitmail json YAML

Sorry, removing left out patch.

(mef)

2014-10-07 15:10:39 UTC MAIN commitmail json YAML

Updated cross/avrdude to 6.1

(mef)

2014-10-07 15:10:29 UTC MAIN commitmail json YAML

Update avrdude 6.0.1 to 6.1
----------------------------------------------------------------------
  * Major changes compared to the previous version:
    - Atmel EDBG protocol support added (JTAGICE3, XplainedPro, Atmel-ICE)

  * New programmers supported:
    - Atmel DFU, using FLIP protocol version 1 (AT90USB and ATmega*U* devices),
      or version 2 (Xmega devices)
    - Atmel-ICE (ARM/AVR), JTAG, PDI, debugWIRE, ISP modi

  * Bugfixes
    - bug #40055: AVRDUDE segfaults when writing eeprom
    - bug #40085: Typo fix in fuses report (for 6.1-svn-20130917)
    - bug #40782: Verify errors for object size > 16 k on x32e5 due
      to typo in avrdude.conf
    - bug #40817: Elf file support (possibly) not working on 6.0.1 windows build
    - bug #40897: AT Mega2560 not correctly programmed with stk500(v1)
      ISP (solution patch)
    - bug #41357: OS X: Avrdude messes with the usb stack?
    - bug #41402: dfu.c missing include <stdint.h>
    - patch #7896: DFU FLIPv2 programming support
    - patch #XXXX: xxx

  * Internals:
    - (Some) programmers can take a list of USB PIDs now.

(mef)

2014-10-07 14:51:09 UTC MAIN commitmail json YAML

Updated shells/posh to 0.12.3

(mef)

2014-10-07 14:50:58 UTC MAIN commitmail json YAML

Update posh  0.12.2 to 0.12.3
(from debian/changelog)
posh (0.12.3) unstable; urgency=medium
  * Ten patches from Jonathan Nieder to adjust test suite.  closes: #603659.
-- Clint Adams <clint@debian.org>  Sun, 09 Feb 2014 19:42:00 -0500

posh (0.12.2.1) unstable; urgency=medium
  * Bump to Standards-Version 3.9.5.
  * Add libperl4-corelibs-perl build-dep for getopts.pl.
    closes: #738412.
-- Clint Adams <clint@debian.org>  Sun, 09 Feb 2014 12:49:30 -0500

(mef)

2014-10-07 14:35:32 UTC MAIN commitmail json YAML

Updated net/lldpd to 0.7.10

(mef)

2014-10-07 14:35:16 UTC MAIN commitmail json YAML

(Upstream update 0.7.9 to 0.7.10)
0.7.10 [2014-07-21 18:06:54 +0200]:

- [87ebf13df38c] NEWS: add a word about json-c library support (Vincent Bernat)
- [5dcd280d1267] lldpcli: fix jansson implementation of the JSON output (Vincent Bernat)
- [71542b4ec734] configure: if --with-json, default to jansson implementation (Vincent Bernat)
- [368daef3d649] cdp: complete manual page with CDP-related options (Vincent Bernat)
- [611aba00053c] cdp: Make it possible to enable CDPv2 without enabling CDPv1 (Michel Stam)
- [5d8f75fe9fdc] lldpcli: Add json description to lldpcli usage (Michel Stam)
- [619c379964fd] cdp: Add power requirement to CDPv2 frames (Michel Stam)
- [8ff14a6d117e] lldpcli: Add support for JSON-C (Michel Stam)
- [62d6f99d2d17] lldpcli: make complete command work on privleged commands as well (Vincent Bernat)
- [314f382a5093] lldpcli: provide a hidden complete command for shell completion (Vincent Bernat)
- [e13945c02c44] lldpcli: change how privileged commands are declared (Vincent Bernat)
- [40df69956ad0] lldpcli: reformat a bit bash completion to be more readable (Vincent Bernat)
- [ecd41283aa58] priv: avoid a socket leak when interface is already in promisc (Vincent Bernat)
- [ba908c4eedaa] snmp: avoid deferencing a pointer when it may be NULL (Vincent Bernat)
- [5317a14a3f0e] dcbx tlv recd are printed as log_debug (Sam Tannous)
- [7efa65c16ec7] lldpcli: use protocol map from liblldpctl to select protocol (Vincent Bernat)
- [baaa96d1530c] lldpcli: document `-u` argument in synopsis (Vincent Bernat)
- [494264f0f831] lldpcli: add display filter to show nbrs running specific protocols (Sam Tannous)
- [e147917d5257] lib: update liblldpctl versioning (Vincent Bernat)
- [1fa64c11d337] Add call to process more messages from data already read. (Sam Tannous)
- [0469161dd554] Add error code to the multicast address add/delete failure msg (Sam Tannous)
- [4f670a1e8ace] Move interface update msg to debug level (Sam Tannous)
- [003620d3104b] Add ignore handler for SIGHUP in lldpcli (Sam Tannous)
- [aef05ae38c63] This patch adds bash completion for lldpcli. (Sam Tannous)
- [ea51049df882] snmp: use poll() to wait for AgentX socket to be ready (Vincent Bernat)
- [dc6436adb4db] snmp: preserve previous flags when making AgentX socket non-blocking (Vincent Bernat)
- [b93e39a16736] make agentx socket non-blocking (Sam Tannous)
- [ad21b578b215] Make "too many neighbors for port" msg appear less frequently (Sam Tannous)
- [aca48e4ba570] lldpd: Fix netlink notification group for address changes (Sam Tannous)
- [b0b8841b0b42] Increase event buffer (Sam Tannous)
- [e595efb4c177] log: info messages should be logged on syslog but not on first debug level (Vincent Bernat)
- [254e5134d933] lldpd: fix log_info (Sam Tannous)
- [5e23c6b99bd3] NEWS: credit seccomp fix (Vincent Bernat)
- [d64549384f6f] lldpd: fix use of NULL in execl* (Vincent Bernat)
- [d769cdb235cc] Merge pull request #70 from chutz/seccomp-whitelist (Vincent Bernat)
- [285b33afd0da] lldpd: whitelist sendto, poll, recvmsg and readv in seccomp sandbox (Patrick McLean)
- [1059a20e7e2d] NEWS: add a word about ability to disable LLDP (Vincent Bernat)
- [b8a802bc7d8a] lldpd: fix how LLDP can be disabled (Vincent Bernat)
- [806eaef4832a] cdp: don't expect and off-by-one checksum (Vincent Bernat)
- [a5a60bbf97ed] frame: fix CDP checksum (udbxtd2008)
- [f4da5f84837c] README: document the new promisc interface in README as well (Vincent Bernat)
- [0a6f3866b830] lldpcli: give more details in the manual page about promiscuous mode (Vincent Bernat)
- [f84199ddf6c9] lldpcli: add an option to enable promisc mode on managed interfaces (Vincent Bernat)
- [ace524261458] priv: don't output rc status twice when unable to open socket (Vincent Bernat)
- [50724a52606f] README: more about Cisco sending LLDP frames on VLAN 1 (Vincent Bernat)
- [af5f56616c7f] osx: update version to 0.7.9 (Vincent Bernat)

(mef)

2014-10-07 10:37:14 UTC MAIN commitmail json YAML

Updated databases/py-mysql-connector to 2.0.1; devel/scons to 2.3.4; mail/roundcube to 1.0.3; databases/rrdtool to 1.4.9

(adam)

2014-10-07 10:36:20 UTC MAIN commitmail json YAML

Changes 1.4.9:

New Features
------------
* allows rrdrestore to read input from stdin
* add documentation for RRDs::xport
* RPN operators MINNAN and MAXNAN
* --left-axis-format option to rrd_graph

Bugfixes
--------
* properly verify validity of user suplied format strings
* remove graph functions from python module when compiled without graphing
  support
* verify that only short integers are used in COMPUTE rpn expressions
* eliminate duplicate setlocale calls
* fixed endless loop and double frees in rrd_restore
* fixed missing variable initializations in rrd_graph
* fixed JSON output format to actually be valid JSON
* detect failing fallocate and fall back to seeking
* fixed format string in ruby bindings

(adam)

2014-10-07 10:23:41 UTC MAIN commitmail json YAML

Changes 1.4.9:

New Features
------------
* allows rrdrestore to read input from stdin
* add documentation for RRDs::xport
* RPN operators MINNAN and MAXNAN
* --left-axis-format option to rrd_graph

Bugfixes
--------
* properly verify validity of user suplied format strings
* remove graph functions from python module when compiled without graphing
  support
* verify that only short integers are used in COMPUTE rpn expressions
* eliminate duplicate setlocale calls
* fixed endless loop and double frees in rrd_restore
* fixed missing variable initializations in rrd_graph
* fixed JSON output format to actually be valid JSON
* detect failing fallocate and fall back to seeking
* fixed format string in ruby bindings

(adam)

2014-10-07 10:22:49 UTC MAIN commitmail json YAML

Changes 1.0.3:
- Fix insert-signature command in external compose window if opened from inline compose screen
- Initialize HTML editor before restoring a message from localStorage
- Add 'sig_max_lines' config option to default config file
- Add option to specify IMAP connection socket parameters - imap_conn_options
- Add option to set default message list mode - default_list_mode
- Enable contextmenu plugin for TinyMCE editor
- Fix some mime-type to extension mapping checks in Installer
- Fix errors when using localStorage in Safari's private browsing mode
- Fix bug where $Forwarded flag was being set even if server didn't support it
- Fix various iCloud vCard issues, added fallback for external photos
- Fix invalid Content-Type header when send_format_flowed=false
- Fix errors when adding/updating contacts in active search
- Fix incorrect thumbnail rotation with GD and exif orientation data
- Fix contacts list update after adding/deleting/moving a contact
- Fix handling of email addresses with quoted domain part
- Fix comm_path update on task switch
- Fix error in MSSQL update script 2013061000.sql
- Fix validation of email addresses with IDNA domains

(adam)

2014-10-07 10:17:28 UTC MAIN commitmail json YAML

Changes 2.3.4:
- Fixed the interactive mode, in connection with Configure contexts
- Fix EnsureSConsVersion warning when running packaged version
- Fix D tools for building shared libraries

(adam)

2014-10-07 10:09:36 UTC MAIN commitmail json YAML

Changes 2.0.1:
* Connector/Python is now compatible with Django 1.7.
* RANGE_STRING is now supported as a sharding type.
* RANGE_DATETIME is now supported as a sharding type.
* Bugs Fixed

(adam)

2014-10-07 08:47:13 UTC pkgsrc-2014Q3 commitmail json YAML

2014-10-07 08:46:57 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4517 - requested by wiz
shells/bash: security update

Revisions pulled up:
- shells/bash/Makefile                                          1.72
- shells/bash/distinfo                                          1.38

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Oct  7 00:16:52 UTC 2014

  Modified Files:
  pkgsrc/shells/bash: Makefile distinfo

  Log Message:
  Another day, another bash patch. Welcome to 4.3.030.
  Fixes CVE-2014-6278:
  A combination of nested command substitutions and function importing
  from the environment can cause bash to execute code appearing in
  the environment variable value following the function definition.

(tron)

2014-10-07 07:35:23 UTC MAIN commitmail json YAML

+ accerciser-3.14, clutter-1.20.0, clutter-gtk-1.6.0, genius-1.0.19,
  gnome-keyring-3.14, gtksourceview-3.14, gvfs-1.22.0, libgee-0.16.0,
  lsdvd-0.17, rhythmbox-3.1, seahorse-3.14, waf-1.8.0 [wait for
  fix for https://code.google.com/p/waf/issues/detail?id=1495],
  webkit-gtk-2.4.6, wine-devel-1.7.28.

(wiz)

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

Downgraded devel/waf to 1.7.16 [wiz 2014-10-07]

(wiz)

2014-10-07 07:31:51 UTC MAIN commitmail json YAML

Updated multimedia/mpv to 0.6.0

(wiz)

2014-10-07 07:31:39 UTC MAIN commitmail json YAML

Update to 0.6.0:
Changes

Map ESC to exiting fullscreen.
Run the vo inside its own thread.
Enable the demuxer thread by default.
Prefer the opengl vo over the vdpau one.
Complete profile names in the zsh completion script.
Raise dsound ao buffer size to 200ms and make it configurable.
Bind ctrl+c to quit, so that it works both in the terminal and the player window.
Automatically load playlists without needing --load-unsafe-playlists or --playlist. Unsafe URLs are still rejected (e.g. remote playlists can't load local files).
Remove quvi-format property (which never really worked).
Wait until all Lua scripts are loaded on start.
Use separate threads for input sources (terminal, lirc, joystick) instead of using a central I/O loop.
Complete values for options that take file names in the zsh completion script.
Use libwaio for pipe input on Windows (if you want --input-file to work on Windows you need libwaio as an additional dependency).
Remove the --volstep option (users should change the argument to the "add" function in input.conf instead).
Always show the OSD message when changing volume, gamma, panscan, etc along with the OSD bar.
When changing a property always show it on the OSD (except for "pause" and "fullscreen").
Prefer the libavcodec decoder over libmpg123 for mp3 decoding (ffmpeg/libav support for gapless audio works better for mpv's use-case).
Allow passing number of loops to --loop-file.
Change --keep-open option semantics to not terminate the player when playing or seeking past the end of the file and there's no next file to be played.
Disable the sndio ao by default and prefer other outputs even if it's enabled.

New features

Add new framedrop mode that limits the frequency of new video frames displayed based on the display framerate (this is enabled by default, the old decoder-based mode can be enabled with --framedrop=decoder).
Add --demuxer-readahead-secs option to control the readahead buffer using a duration value.
Add estimated-frame-count and estimated-frame-number properties.
Add --cache-secs option which overrides the value of --demuxer-readahead-secs if the stream cache is active.
Add demuxer-cache-duration and demuxer-cache-idle properties.
Make --cache-file create a temporary file if the string "TMP" is passed instead of a file name.
Add support for Matroska 3D (if a file is marked as 3D using the StereoMode element, an automatic conversion filter is added).
Add --osd-playing-msg option to show a message on the OSD when the playback starts.
Add --media-title option to force the content of the media-title property.
Add --osd-msg1, --osd-msg2 and --osd-msg3 options to override the OSD message for the corresponding OSD level (before only level 3 could be overridden with --osd-status-message).
Add support for digital passthrough in the pulse ao.
Add support for opening DVD and Blu-ray directories directly.
Add --input-x11-keyboard option to control whether keyboard input should be enabled on the X11 window ot not (this is disabled by default when using the libmpv library).

(wiz)

2014-10-07 07:30:42 UTC MAIN commitmail json YAML

2014-10-07 07:27:18 UTC MAIN commitmail json YAML

Pass "--remote-time" option to "curl" to get correct time stamps
on downloaded files.

(tron)

2014-10-07 07:22:57 UTC MAIN commitmail json YAML

Updated textproc/p5-podlators to 2.5.3

(wen)

2014-10-07 07:20:49 UTC MAIN commitmail json YAML

2014-10-07 07:12:06 UTC MAIN commitmail json YAML

Updated devel/p5-Module-Build-Tiny to 0.038

(wen)

2014-10-07 07:11:00 UTC MAIN commitmail json YAML

Update to 0.038

Upstream changes:
0.038    2014-09-06 11:28:23+02:00 Europe/Amsterdam
          Scrub PERL_MB_OPT in tests too

(wen)

2014-10-07 07:06:14 UTC MAIN commitmail json YAML

Updated www/p5-Plack-Middleware-Deflater to 0.12

(wen)

2014-10-07 07:05:18 UTC MAIN commitmail json YAML

Update to 0.12

Upstream changes:
0.12  Thu Sep 12 11:31:07 JST 2013
        - add plack.skip-deflater flag for skip all Deflater features

(wen)

2014-10-07 07:01:53 UTC MAIN commitmail json YAML

Updated www/p5-Plack-Middleware-Debug to 0.16

(wen)

2014-10-07 07:01:07 UTC MAIN commitmail json YAML

Update to 0.16

Upstream changes:
0.16  2013-09-06 11:41:25 PDT
    - Merge with upstream

0.15  2013-09-06 11:37:24 PDT
    - Convert to Milla
    - Fix broken latin-1 META.yml

(wen)

2014-10-07 06:54:15 UTC MAIN commitmail json YAML

Updated www/p5-Plack to 1.0032

(wen)

2014-10-07 06:53:09 UTC MAIN commitmail json YAML

Update to 1.0032

Upstream changes:
1.0032  2014-10-04 11:13:24 PDT
    [IMPROVEMENTS]
        - Support Server::Starter in FCGI handler (yuryu) #435
        - Various documentation fixes

(wen)

2014-10-07 06:30:09 UTC MAIN commitmail json YAML

Updated devel/glib2 to 2.40.2

(adam)

2014-10-07 06:29:21 UTC MAIN commitmail json YAML

Changes 2.40.2:
This release contains several BSD-related fixes backported from master
which failed to make it into the last release.

(adam)

2014-10-07 00:17:02 UTC MAIN commitmail json YAML

Updated shells/bash to 4.3.030

(wiz)

2014-10-07 00:16:52 UTC MAIN commitmail json YAML

Another day, another bash patch. Welcome to 4.3.030.
Fixes CVE-2014-6278:
A combination of nested command substitutions and function importing
from the environment can cause bash to execute code appearing in
the environment variable value following the function definition.

(wiz)

2014-10-06 20:12:30 UTC MAIN commitmail json YAML

2014-10-06 19:47:57 UTC MAIN commitmail json YAML

Add dhcpcd-icons and dhcpcd-qt

(roy)

2014-10-06 19:47:42 UTC MAIN commitmail json YAML

Updated net/dhcpcd-qt to 0.7.3

(roy)

2014-10-06 19:47:29 UTC MAIN commitmail json YAML

Updated net/dhcpcd-gtk to 0.7.3

(roy)

2014-10-06 19:47:15 UTC MAIN commitmail json YAML

Updated net/dhcpcd-icons to 0.7.3

(roy)

2014-10-06 19:46:59 UTC MAIN commitmail json YAML

Import dhcpcd-ui-0.7.3 with the following changes:

  *  Removed dhcpcd-dbus dependency
  *  Split icons off into dhcpcd-icons
  *  Add dhcpcd-qt front end
  *  Improved IPv6 support in dhcpcd-6 is now reported
  *  Numerous bug fixes
  *  SSID menus now update in realtime when new scans come in

(roy)

2014-10-06 18:28:59 UTC MAIN commitmail json YAML

Updated net/dhcpcd to 6.5.0

(roy)

2014-10-06 18:28:48 UTC MAIN commitmail json YAML

Import dhcpcd-6.5.0 with the following changes:

  *  Fix an unaligned access error on BeagleBone Black with FreeBSD.
    Thanks to Guy Yur for the patch.
  *  Remove the fast loop trying to up an interface which does not
    report carrier.
  *  Remove vis based encoding - instead validate against option type and
    stop at invalid [1]
    This removes all shell escaped encoding - dhcpcd will assume that IF
    the --script option is a shell, it will quote variables correctly.
    The stock dhcpcd-run-hooks does.
  *  dhcpcd -V now prints how the variables will be decoded.
  *  Changed some options in dhcpcd-definitions.conf to more sensible defaults.
  *  Don't daemonise on delegated address dad.
  *  Don't drop delegated reject route when forking.
  *  Fix IPv6 handling of link-local addresses on KAME stacks.
  *  Work on OpenBSD-5.6 without any special interface setup needed.
  *  Callout to handlecarrier when we don't have real carrier support and
    rely on looking at IFF_UP and IFF_RUNNING.
    This allows our hooks to know that dhcpcd thinks we have a carrier or not.

[1] DHCP option encodings defined in dhcpcd-definitions.conf
  *  domain (RFC3397)/dname (string) is strict domain name allowance
    (ie, [alnum] with _- (but not at the start or end))
  *  string is now printable ascii (1-127) until invalid
  *  ascii is all ascii (1-127) until invalid
  *  raw is all chars (1-255) until NUL
  *  binhex is a hex representation of the option including embedded NULs
  *  ssid is still escpaed octal because it's expected to be human readable
    AND can technically be all NUL
  *  everything else has strict option -> value encoding

(roy)

2014-10-06 15:38:57 UTC MAIN commitmail json YAML

FreeBSD decided that getline must be explicitly requested.

(joerg)

2014-10-06 14:57:53 UTC MAIN commitmail json YAML

OSX 9 lacks getline, so add it to the list. Use custom version of
le32toh.

(joerg)

2014-10-06 14:31:33 UTC MAIN commitmail json YAML

db4 hack is no longer needed

(adam)

2014-10-06 14:30:52 UTC MAIN commitmail json YAML

Updated databases/db5 to 5.3.28

(adam)

2014-10-06 14:29:45 UTC MAIN commitmail json YAML

Changes 5.3.28:
Fixed tcl library linking for AIX 7.

Fixed a bug that could cause a trap if a lock timeout occurred while opening a database.

Fixed missing encryption support for the Android JDBC driver.

Fixed an incorrect message being displayed when the -l option was specified to the db_hotbackup utility.

Fixed a bug that DB_ENV->log_get_config did not work correctly before DB_ENV->open.

Fixed a bug that could cause a SQL build failure when FTS3 is enabled.

Fixed a bug that prevented in-memory SQL database from being created properly. They can now be created without the use of the SQLITE_OPEN_CREATE flag.

Fixed a memory leak in SQL online backup.

Added additional examples for C++

Fixed a bug that could make odbc fail to build with sqlite source code.

Fixed bugs in compaction of large keys in the upper levels of btrees.

The db utilities (db_xxxx) no longer operate on replication clients that are being automatically initialized. The DB_REP_LOCKOUT error is now returned.

Using DB_TXN_SNAPSHOT on an HA client will now result in an error.

Fixed a bug that prevented a sub-database from being created under the directory identified in DB->set_create_dir.

Fixed a race condition on a cursor when using a multi-threaded application with the SQL API.

Fixed a race condition in the failchk code when cleaning up mutexes.

Fixed a resource leak in the db->verify() function for btrees. The bug would slow down verification and possibly cause it to run out of memory.

Removed a potential hang when compacting databases with many duplicates.

Fixed a bug that caused a crash when reentering dbsql and specifying replication=on for a SQL database where replication was already enabled.

Fixed an incorrect recursive call dealing with joins.

Fix build failures in ado.net

Fixed a bug that could cause a JDBC build failure on recent versions of Visual Studio.

Correct build problems when building dbstl with gcc-4.7.3

(adam)

2014-10-06 13:37:37 UTC MAIN commitmail json YAML

Updated devel/opengrok to 0.12.1

(ryoon)

2014-10-06 13:36:43 UTC MAIN commitmail json YAML

Update to 0.12.1

Changelog:
May 2014 update 0.12.1
-------------------------------------------------

This is a stability improvement release and we suggest to use it instead of 0.12

Bug fixes:
  reassign tags to changesets when performing merging of old and new history during incremental reindex fixes #819
  create file which stores the latest cached revision also when renamed file handling is disabled fixes #818
  Made the limitations on JavaDB versions explicit

(ryoon)

2014-10-06 13:34:50 UTC MAIN commitmail json YAML

Updated devel/jflex to 1.6.0

(ryoon)

2014-10-06 13:33:54 UTC MAIN commitmail json YAML

Update to 1.6.0

Changelog:
## JFlex 1.6.0
- Unicode 7.0 is supported.
- In %unicode mode, supplementary code points are now handled properly.
  . Regular expressions are now code-point based, rather than code-unit/
    char based.
  . Input streams are read as code point sequences - properly paired
    surrogate code units are read as a single character.
  . All supported Unicode properties now match supplementary characters
    when Unicode 3.0 or above is specified, or when no version is
    specified, causing the default Unicode version, Unicode 7.0 in this
    release, to be used.
- New \u{...} escape sequence allows code points (and whitespace-separated
  sequences of code points) to be specified as 1-6 hexadecimal digit values.
- Characters in matches printed in %debug mode are now Unicode escaped
  (\uXXXX) when they are outside the range 32..127.
- fixed bug #127, detect javadoc class comment when followed by annotation(s)
- removed the "switch" and "table" code generation options
- By default no InputStream constructor is included in the generated
  scanner.  The capability to include one is deprecated and will be
  removed in JFlex 1.7.

## JFlex 1.5.1 (Mar 21, 2014)
- fixed bug #126, problem calling ./jflex start scripts
- fixed bug #125, minor documentation flaws
- further documentation and website updates
- JFlex now reports the correct version string
- added support for CUP2 with %cup2 switch, based on patch by Andreas Wenger

## JFlex 1.5.0 (Jan 21, 2014)
- the "switch" and "table" code generation options are deprecated
  and will be removed in JFlex 1.6
- the JFlex license has been changed from GPL to BSD.
- updated JFlex to CUP version 0.11a.
- changed the build from Ant to Maven.
- JFlex now mostly conforms with Unicode Regular Expressions UTS#18
  Basic Unicode Support - Level 1.  Supplementary code points (above
  the Basic Multilingual Plane) are not yet supported.
- new meta characters supported: `\s, \S, \d, \D, \w, \W`.
- nested character sets now supported, e.g. [[[ABC]D]E[FG]]
- new character set operations supported: union (e.g. [A||B]), intersection (e.g.
  [A&&B]), set-difference (e.g. [A--B]), and symmetric difference (e.g. [A~~B]).
- the meaning of the dot (".") meta character has been changed from `[^\n]` to
  `[^\n\r\u000B\u000C\u0085\u2028\u2029]`. Use the new `--legacydot` option to
  cause "." to be interpreted as `[^\n]`.
- new `\R` meta character matches any newline:
  `"\r\n" | [\n\r\u000B\u000C\u0085\u2028\u2029]`.
- new option --noinputstreamctor to not include an InputStream
  constructor in the generated scanner.
- %include <file> can now be used in the rules section (bug #116)
- fixed bug #105 & #106 (yychar and zzAtBOL should be reset for nested input streams)
- fixed bug #107 (could not match input for empty string matches.)
- fixed bug #110 & #118 (properly update zzFin when reallocating zzBuffer)
- fixed bug #114 (noncompileable scanner generation when default locale is Turkish)
- fixed bug #113 (zzEOFDone not included with pushed nested stream state)
- fixed bug #103 (can't build examples/java/)
- fixed bug #104 (impossible char class range should trigger syntax error)

(ryoon)

2014-10-06 10:04:55 UTC MAIN commitmail json YAML

Note update of mbone/dbeacon to 0.3.9.1nb2.

(he)

2014-10-06 10:04:17 UTC MAIN commitmail json YAML

Rename the old patch-aa patch to patch-dbeacon.cpp.
Add a patch for the matrix.pl script to quiet newer perl versions.
Fix the pointer to the sixxs flags, as asked for in 2010(!)
Bump PKGREVISION.

(he)

2014-10-05 22:23:08 UTC MAIN commitmail json YAML

Updated textproc/py-validators to 0.7

(rodent)

2014-10-05 22:22:50 UTC MAIN commitmail json YAML

0.7.0 (2014-09-07)
^^^^^^^^^^^^^^^^^^

- Fixed errors in code examples.
- Fixed ``TypeError`` when using ``between`` validator with ``datetime`` objects
  like in the code example.
- Changed validators to always return ``True`` instead of a truthy object when
  the validation succeeds.
- Fixed ``truthy`` validator to work like it's name suggests. Previously it
  worked like ``falsy``.

(rodent)

2014-10-05 22:14:08 UTC MAIN commitmail json YAML

Updated textproc/py-pyquery to 1.2.9

(rodent)

2014-10-05 22:13:52 UTC MAIN commitmail json YAML

Remove executable bits on files in ${EGG_INFODIR} during post-install.

1.2.9 (2014-08-22)
------------------

- Support for keyword arguments in PyQuery custom functions

- Fixed #78: items must take care or the parent

- Fixed #65 PyQuery.make_links_absolute() no longer creates 'href' attribute
  when it isn't there

- Fixed #19. ``is_()`` was broken.

- Fixed #9. ``.replaceWith(PyQuery element)`` raises error

- Remove official python3.2 support (mostly because of 3rd party semi-deps)

(rodent)

2014-10-05 22:08:50 UTC MAIN commitmail json YAML

Updated textproc/py-phonenumbers to 6.3.0

(rodent)

2014-10-05 22:08:30 UTC MAIN commitmail json YAML

====================
What's new in 6.3.0
====================

Merge to upstream Subversion revision 703; upstream code changelog:
  - Changing the offline geocoder to not return any country at all if the number
    could belong to multiple countries
  - Removing obsolete code that treated countries with no metadata as valid.

(rodent)

2014-10-05 21:18:16 UTC MAIN commitmail json YAML

Updated textproc/py-color to 0.3.0

(rodent)

2014-10-05 21:17:58 UTC MAIN commitmail json YAML

Update to latest release, 0.3.0. A lot of new entries in the PLIST for
cpython. No quickly-accessible ChangeLog. Assuming more/better/faster.

(rodent)

2014-10-05 20:43:27 UTC MAIN commitmail json YAML

Updated textproc/py-biplist to 0.8

(rodent)

2014-10-05 20:43:13 UTC MAIN commitmail json YAML

2014-08-17 v0.8

Fixes #3 testFileRead fails using python 3.x along with several other Python 3 compatibility issues.

(rodent)

2014-10-05 20:34:38 UTC MAIN commitmail json YAML

Updated graphics/py-pygal to 1.5.1

(rodent)

2014-10-05 20:34:20 UTC MAIN commitmail json YAML

V 1.5.1
Add `stack_from_top` option to reverse stack graph data order
Minor fix for empty logarithmic chart
Reorders axes in SVG output. Fix #145 (thanks sirlark)

V 1.5.0
Add per serie configuration
Add half pie (thanks philt2001)
Make lxml an optionnal dependency (huge speed boost in pypy)
Add render_table (WIP)
Support colors in rgb / rgba for parametric styles

(rodent)

2014-10-05 20:25:11 UTC MAIN commitmail json YAML

Updated graphics/py-cairocffi to 0.6

(rodent)

2014-10-05 20:24:57 UTC MAIN commitmail json YAML

2014-10-05 20:21:49 UTC MAIN commitmail json YAML

Updated finance/py-python-bitcoinlib to 0.2.1

(rodent)

2014-10-05 20:21:30 UTC MAIN commitmail json YAML

v0.2.1

    Improve bitcoin address handling. P2SH and P2PKH addresses now get their own classes - P2SHBitcoinAddress and P2PKHBitcoinAddress respectively - and P2PKH can now convert scriptPubKeys containing non-canonical pushes as well as bare checksig to addresses.
    .deserialize() methods now fail if there is extra data left over.
    Various other small bugfixes.
    License is now LGPL v3 or later.

v0.2.0

Major change: CTransaction, CBlock, etc. now come in immutable (default) and mutable forms. In most cases mutable and immutable can be used interchangeably; when that is not possible methods are provided to create new (im)mutable objects from (im)mutable ones efficiently.

Other changes:

    New BIP70 payment protocol example. (Derren Desouza)
    Rework of message serialization. Note that this may not represent the final form of P2P support, which is still in flux. (Florian Schmaus)
    Various bugfixes

Finally starting this release, git tags will be of the form 'python-bitcoinlib-(version)', replacing the less specific '(version)' form previously used.

(rodent)

2014-10-05 20:18:16 UTC MAIN commitmail json YAML

Updated databases/py-sqlalchemy-utils to 0.26.16

(rodent)

2014-10-05 20:17:58 UTC MAIN commitmail json YAML

0.26.16 (2014-09-09)
^^^^^^^^^^^^^^^^^^^^

- Fix aggregate value handling for cascade deleted objects
- Fix ambiguous column sorting with join table inheritance in sort_query

0.26.15 (2014-08-28)
^^^^^^^^^^^^^^^^^^^^

- Fix sort_query support for queries using mappers (not declarative classes) with calculated column properties

0.26.14 (2014-08-26)
^^^^^^^^^^^^^^^^^^^^

- Added count method to QueryChain class

0.26.13 (2014-08-23)
^^^^^^^^^^^^^^^^^^^^

- Added template parameter to create_database function

0.26.12 (2014-08-22)
^^^^^^^^^^^^^^^^^^^^

- Added quote utility function

0.26.11 (2014-08-21)
^^^^^^^^^^^^^^^^^^^^

- Fixed dependent_objects support for single table inheritance

0.26.10 (2014-08-13)
^^^^^^^^^^^^^^^^^^^^

- Fixed dependent_objects support for multiple dependencies

(rodent)

2014-10-05 20:12:36 UTC MAIN commitmail json YAML

Updated databases/py-redis-py to 2.10.3

(rodent)

2014-10-05 20:12:16 UTC MAIN commitmail json YAML

* 2.10.3
    * Fixed a bug with the bytearray support introduced in 2.10.2. Thanks
      Josh Owen.
* 2.10.2
    * Added support for Hiredis's new bytearray support. Thanks
      https://github.com/tzickel
    * POSSIBLE BACKWARDS INCOMPATBLE CHANGE: Fixed a possible race condition
      when multiple threads share the same Lock instance with a timeout. Lock
      tokens are now stored in thread local storage by default. If you have
      code that acquires a lock in one thread and passes that lock instance to
      another thread to release it, you need to disable thread local storage.
      Refer to the doc strings on the Lock class about the thread_local
      argument information.
    * Fixed a regression in from_url where "charset" and "errors" weren't
      valid options. "encoding" and "encoding_errors" are still accepted
      and preferred.
    * The "charset" and "errors" options have been deprecated. Passing
      either to StrictRedis.__init__ or from_url will still work but will
      also emit a DeprecationWarning. Instead use the "encoding" and
      "encoding_errors" options.
    * Fixed a compatability bug with Python 3 when the server closes a
      connection.
    * Added BITPOS command. Thanks https://github.com/jettify.
    * Fixed a bug when attempting to send large values to Redis in a Pipeline.

(rodent)