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

2024-05-13 17:05:08 UTC Now

2014-05-03 22:29:42 UTC MAIN commitmail json YAML

Update to R 3.1.0

NEW FEATURES:

    * type.convert() (and hence by default read.table()) returns a
      character vector or factor when representing a numeric input as a
      double would lose accuracy.  Similarly for complex inputs.

      If a file contains numeric data with unrepresentable numbers of
      decimal places that are intended to be read as numeric, specify
      colClasses in read.table() to be "numeric".

    * tools::Rdiff(useDiff = FALSE) is closer to the POSIX definition
      of diff -b (as distinct from the description in the man pages of
      most systems).

    * New function anyNA(), a version of any(is.na(.)) which is fast
      for atomic vectors, based on a proposal by Tim Hesterberg.

    * arrayInd(*, useNames = TRUE) and, analogously, which(*, arr.ind =
      TRUE) now make use of names(.dimnames) when available.

    * is.unsorted() now also works for raw vectors.

    * The "table" method for as.data.frame() (also useful as
      as.data.frame.table()) now passes sep and base arguments to
      provideDimnames().

    * uniroot() gets new optional arguments, notably extendInt,
      allowing to auto-extend the search interval when needed.  The
      return value has an extra component, init.it.

    * switch(f, ...) now warns when f is a factor, as this typically
      happens accidentally where the useR meant to pass a character
      string, but f is treated as integer (as always documented).

    * The parser has been modified to use less memory.

    * The way the unary operators (+ - !) handle attributes is now more
      consistent.  If there is no coercion, all attributes (including
      class) are copied from the input to the result: otherwise only
      names, dims and dimnames are.

    * colorRamp() and colorRampPalette() now allow non-opaque colours
    and a ramp in opacity via the new argument alpha = TRUE.
      (Suggested by Alberto Krone-Martins, but optionally as there are
      existing uses which expect only RGB values.)

    * grid.show.layout() and grid.show.viewport() get an optional vp.ex
      argument.

    * There is a new function find_gs_cmd() in the tools package to
      locate a GhostScript executable.  (This is an enhanced version of
      a previously internal function there.)

    * object.size() gains a format() method.

    * There is a new family, "ArialMT", for the pdf() and postscript()
      devices.  This will only be rendered correctly on viewers which
      have access to Monotype TrueType fonts (which are sometimes
      requested by journals).

    * The text and PDF news files, including NEWS and NEWS.2, have been
      moved to the doc directory.

    * combn(x, simplify = TRUE) now gives a factor result for factor
      input x (previously user error).

    * Added utils::fileSnapshot() and utils::changedFiles() functions
      to allow snapshots and comparison of directories of files.

    * make.names(names, unique=TRUE) now tries to preserve existing
      names.

    * New functions cospi(x), sinpi(x), and tanpi(x), for more accurate
      computation of cos(pi*x), etc, both in R and the C API.  Using
      these gains accuracy in some cases, e.g., inside lgamma() or
      besselI().

    * print.table(x, zero.print = ".") now also has an effect when x is
      not integer-valued.

    * There is more support to explore the system's idea of time-zone
      names.  Sys.timezone() tries to give the current system setting
      by name (and succeeds at least on Linux, OS X, Solaris and
    Windows), and OlsonNames() lists the names in the system's Olson
      database. Sys.timezone(location = FALSE) gives the previous
      behaviour.

    * Platforms with a 64-bit time_t type are allowed to handle
      conversions between the "POSIXct" and "POSIXlt" classes for
      date-times outside the 32-bit range (before 1902 or after 2037):
      the existing workarounds are used on other platforms.  (Note that
      time-zone information for post-2037 is speculative at best, and
      the OS services are tested for known errors and so not used on OS
      X.)

      Currently time_t is usually long and hence 64-bit on Unix-alike
      64-bit platforms: however it several cases the time-zone database
      is 32-bit.  On R for Windows it is 64-bit (for both architectures
      as from this version).

    * The "save.defaults" option can include a value for
      compression_level.

    * colSums() and friends now have support for arrays and data-frame
      columns with 2^31 or more elements.

    * as.factor() is faster when f is an unclassed integer vector (for
      example, when called from tapply()).

    * fft() now works with longer inputs, from the 12 million
      previously supported up to 2 billion.

    * Complex svd() now uses LAPACK subroutine ZGESDD, the complex
      analogue of the routine used for the real case.

    * Sweave now outputs .tex files in UTF-8 if the input encoding is
      declared to be UTF-8, regardless of the local encoding.  The
      UTF-8 encoding may now be declared using a LaTeX comment
      containing the string %\SweaveUTF8 on a line by itself.

    * file.copy() gains a copy.date argument.

    * Printing of date-times will make use of the time-zone
      abbreviation in use at the time, if known.  For example, for
      Paris pre-1940 this could be LMT, PMT, WET or WEST.  To enable
      this, the "POSIXlt" class has an optional component "zone"
      recording the abbreviation for each element.

      For platforms which support it, there is also a component
      "gmtoff" recording the offset from GMT where known.

    * (On Windows, by default on OS X and optionally elsewhere.)  The
      system C function strftime has been replaced by a more
      comprehensive version with closer conformance to the POSIX 2008
      standard.

    * dnorm(x, log = FALSE) is more accurate (but somewhat slower) for
      |x| > 5.

    * Some versions of the tiff() device have further compression
      options.

    * read.table(), readLines() and scan() have a new argument to
      influence the treatment of embedded nuls.

    * Avoid duplicating the right hand side values in complex
      assignments when possible.  This reduces copying of replacement
      values in expressions such as Z$a <- a0 and ans[[i]] <- tmp: some
      package code has relied on there being copies.

      Also, a number of other changes to reduce copying of objects; all
      contributed by or based on suggestions by Michael Lawrence.

    * The fast argument of KalmanLike(), KalmanRun() and
      KalmanForecast() has been replaced by update, which instead of
      updating mod in place, optionally returns the updated model in an
      attribute "mod" of the return value.

    * arima() and makeARIMA() get a new optional argument SSinit,
      allowing the choice of a different *s*tate *s*pace initialization
      which has been observed to be more reliable close to
      non-stationarity.

    * warning() has a new argument noBreaks., to simplify
      post-processing of output with options(warn = 1).

    * pushBack() gains an argument encoding, to support reading of
      UTF-8 characters using scan(), read.table() and related functions
      in a non-UTF-8 locale.

    * all.equal.list() gets a new argument use.names which by default
      labels differing components by names (if they match) rather than
      by integer index.  Saved R output in packages may need to be
      updated.

    * The methods for all.equal() and attr.all.equal() now have
      argument check.attributes after ... so it cannot be partially nor
      positionally matched (as it has been, unintentionally).

      A side effect is that some previously undetected errors of
      passing empty arguments (no object between commas) to all.equal()
      are detected and reported.

      There are explicit checks that check.attributes is logical,
      tolerance is numeric and scale is NULL or numeric.  This catches
      some unintended positional matching.

      The message for all.equal.numeric() reports a "scaled difference"
      only for scale != 1.

    * all.equal() now has a "POSIXt" method replacing the "POSIXct"
      method.

    * The "Date" and "POSIXt" methods of seq() allows by = "quarter"
      for completeness (by = "3 months" always worked).

    * file.path() removes any trailing separator on Windows, where they
      are invalid (although sometimes accepted).  This is intended to
      enhance the portability of code written by those using POSIX file
      systems (where a trailing / can be used to confine path matching
      to directories).

    * New function agrepl() which like grepl() returns a logical
      vector.

    * fifo() is now supported on Windows.

    * sort.list(method = "radix") now allows negative integers

    * Some functionality of print.ts() is now available in
      .preformat.ts() for more modularity.

    * mcparallel() gains an option detach = TRUE which allows execution
      of code independently of the current session.  It is based on a
      new estranged = TRUE argument to mcfork() which forks child
      processes such that they become independent of the parent
      process.

    * The pdf() device omits circles and text at extremely small sizes,
      since some viewers were failing on such files.

    * The rightmost break for the "months", "quarters" and "years"
      cases of hist.POSIXlt() has been increased by a day.

    * The handling of DF[i,] <- a where i is of length 0 is improved.

    * hclust() gains a new method "ward.D2" which implements Ward's
      method correctly.  The previous "ward" method is "ward.D" now,
      with the old name still working.  Thanks to research and
      proposals by Pierre Legendre.

    * The sunspot.month dataset has been amended and updated from the
      official source, whereas the sunspots and sunspot.year datasets
      will remain immutable. The documentation and source links have
      been updated correspondingly.

    * The summary() method for "lm" fits warns if the fit is
      essentially perfect, as most of the summary may be computed
      inaccurately (and with platform-dependent values).

      Programmers who use summary() in order to extract just a
      component which will be reliable (e.g. $cov.unscaled) should wrap
      their calls in suppressWarnings().

(markd)

2014-05-03 22:28:18 UTC MAIN commitmail json YAML

Updated finance/py-trytond-account-invoice to 3.2.0

(rodent)

2014-05-03 22:28:05 UTC MAIN commitmail json YAML

Updated to latest release, 3.2.0. From CHANGELOG:

Version 3.2.0 - 2014-04-21
* Bug fixes (see mercurial logs for details)
* Use account of write-off journal as default

(rodent)

2014-05-03 21:32:06 UTC MAIN commitmail json YAML

Updated pkgtools/x11-links to 0.89

(ryoon)

2014-05-03 21:31:10 UTC MAIN commitmail json YAML

2014-05-03 21:10:56 UTC MAIN commitmail json YAML

Updated graphics/enblend-enfuse to 4.1.3

(adam)

2014-05-03 21:10:12 UTC MAIN commitmail json YAML

Changes 4.1.3:
- [Enblend only] Fix problem of multiple, almost-identical seamlines
  that produce inexplicable black areas in the output panorama.
- Little CMS version 2.5 or later is now required to build.  Prior
  versions of LCMS sometimes produced output images that were lighter
  or darker than the input images.

(adam)

2014-05-03 20:01:28 UTC MAIN commitmail json YAML

nroff is required for hugehelp()
Fix build under OpenBSD 5.5

(ryoon)

2014-05-03 19:41:18 UTC MAIN commitmail json YAML

Updated security/libtasn1 to 3.5

(adam)

2014-05-03 19:40:22 UTC MAIN commitmail json YAML

Changes 3.5:
- Correctly handle decoding of recursive CHOICE options.
- Allow deleting elements of SET OF.
- Several small bug fixes found by coverity.
- Code improvements

(adam)

2014-05-03 19:11:18 UTC MAIN commitmail json YAML

Added sysutils/libisoburn version 1.3.6pl01

(wiz)

2014-05-03 19:11:08 UTC MAIN commitmail json YAML

2014-05-03 19:11:05 UTC MAIN commitmail json YAML

Updated www/py-uwsgitop to 0.8nb1

(rodent)

2014-05-03 19:09:48 UTC MAIN commitmail json YAML

2014-05-03 19:07:55 UTC MAIN commitmail json YAML

Rename binary in post-install to support concurrent python versions. Add
ALTERNATIVES. Bump PKGREVISION.

(rodent)

2014-05-03 19:03:59 UTC MAIN commitmail json YAML

2014-05-03 19:03:40 UTC MAIN commitmail json YAML

Import libisoburn-1.3.6pl01 as sysutils/libisoburn, packaged for
wip by ryoon and myself, tested by Thomas Schmitt and Freddy Fisker.

libisoburn is a frontend for libraries libburn and libisofs which
enables creation and expansion of ISO-9660 filesystems on all
CD/DVD/BD media supported by libburn. This includes media like
DVD+RW, which do not support multi-session management on media
level and even plain disk files or block devices.
This package also contains comand line and dialog application
xorriso.

(wiz)

2014-05-03 18:46:10 UTC MAIN commitmail json YAML

Updated www/py-django to 1.6.4; www/py-django-cms to 3.0.1

(adam)

2014-05-03 18:43:27 UTC MAIN commitmail json YAML

Changes 3.0.1:
Fixed an issue where logout doesn't refresh once the user logs out;
Updated the toolbar menu item to "Logout [name of user]" when available;
Updated the Page: Advanced Settings form to automatically show/hide the application instance name field when appropriate and to separate language-dependent fields from language-independent ones;
Fixed sitemaps to no longer lists pages which only redirect;
Fixes for the plugin clipboard to behave correctly;
Updates to the fix-mptt management command;
Various fixes to target the top frame when clicking links in the sideframe;
Fixed a number of refresh issues;
Various documentation updates.

(adam)

2014-05-03 18:19:30 UTC MAIN commitmail json YAML

Changes 1.6.4:
Shortly after last week's security releases were issued, we received reports of a potential regression in using reverse() with views created by functools.partial. We were able to confirm the bug, and test and commit a fix for it.

(adam)

2014-05-03 15:57:29 UTC MAIN commitmail json YAML

Updated lang/nodejs to 0.10.28

(fhajny)

2014-05-03 15:57:18 UTC MAIN commitmail json YAML

2014.05.01, Version 0.10.28 (Stable)

* npm: upgrade to v1.4.9

(fhajny)

2014-05-03 15:35:25 UTC MAIN commitmail json YAML

+py-cjson - packaged originally in pkgsrc-wip by kamelderouiche@yahoo.com

(rodent)

2014-05-03 15:34:33 UTC MAIN commitmail json YAML

Added textproc/py-cjson version 1.0.5

(rodent)

2014-05-03 15:34:22 UTC MAIN commitmail json YAML

2014-05-03 15:21:03 UTC MAIN commitmail json YAML

2014-05-03 15:20:24 UTC MAIN commitmail json YAML

Added net/py-eventlib version 0.1.5

(rodent)

2014-05-03 15:20:12 UTC MAIN commitmail json YAML

Import py27-eventlib-0.1.5 as net/py-eventlib.

Eventlib is an asynchronous event tracking app for Django. This library was
built upon the following values:

* It must be deadly simple to log an event;
* It must be possible to track each event in different ways;
* Each different "event handler" must be completely separate and fail
  gracefully;
* The event system must be asynchronous, so let's use celery;
* The library must be extensible;
* 100% of test coverage is enough.

(rodent)

2014-05-03 14:27:18 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-Xslate to 3.2.4

(wen)

2014-05-03 14:25:38 UTC MAIN commitmail json YAML

Update to 3.2.4

Upstream changes:
3.2.4 2014-04-27 17:18:15+0900
    [TEST FIXES]
        - Fix #122, #120 testing issue on windows (syohex)
    [FEATURES]
        - Add $array.first() and $array.last() methods (#116, #118 / shyohex)

3.2.3 2014-04-23 07:32:39+0900
    - Made a mistake in the release engineering, re-packaged on the correct
      status.

3.2.2 2014-04-23 07:29:42+0900
    [BUG FIXES]
    - Fix #105 SEGV on blead (reported by tokuhirom, fixed by syohex in #117)

3.2.1 2014-04-17 07:55:38+0900
    [BUG FIXES]
    - Fix #111 (by syohex in #113) inputting "0" made a wrong result

(wen)

2014-05-03 14:14:11 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-Rabbit to 0.4.0

(wen)

2014-05-03 14:13:06 UTC MAIN commitmail json YAML

Update to 0.4.0

Upstream changes:
0.4.0    2013-11-29 11:18:57 Europe/Oslo
        Fixed RT#90975 (reported by Upasana Shukla)
            Replaced deprecated Class::MOP::load_class() with
            Class::Load::load_class(). Module::Runtime::require_module()
            couldn't be used because of tests with package definitions in
            BEGIN blocks.

(wen)

2014-05-03 13:57:33 UTC MAIN commitmail json YAML

Add alternatives for Lua packages.

XXX It's not clear to me whether liblua5.x.so and liblua5.x.so.5.0.x
should be in the list too. I wish alternatives framework was documented ...

(alnsn)

2014-05-03 13:51:11 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-LibXSLT to 1.92

(wen)

2014-05-03 13:49:47 UTC MAIN commitmail json YAML

Update to 1.92

Upstream changes:
1.92    2014-04-12
    - Add scripts/tag-release.pl .

1.91    2014-04-12
    - t/cpan-changes.t : minimum version of Test::CPAN::Changes.
        - This is to avoid test failures such as:
            - http://www.cpantesters.org/cpan/report/5af7d5eb-6bfa-1014-b84e-eb85912f2992

1.90    2014-04-10
    - Handle $Config{dlext} correctly on Windows.
        - https://rt.cpan.org/Ticket/Display.html?id=94516
        - Thanks to kmx for the report and fix.
    - Add t/pod.t .
        - Fix some POD problems.
    - Add t/cpan-changes.t and convert Changes to CPAN::Changes format.
    - Add t/style-trailing-space.t.
        - Remove trailing whitespace.

1.89    2014-03-05
    - Fix memory management of node-sets returned from extension functions.
      Without calling xsltExtensionInstructionResultRegister, node-sets
      could be freed too early, leading to strange errors or segfaults.
        - https://bugzilla.gnome.org/show_bug.cgi?id=562302
        - https://rt.cpan.org/Ticket/Display.html?id=93349
        - Thanks to Alexander Schepanovski for the report.
    - Document input_callbacks methods
    - Don't register libxml2 input callbacks twice
        - https://rt.cpan.org/Public/Bug/Display.html?id=60313
    - Fix memory leak with extension functions returning node lists
        - https://rt.cpan.org/Public/Bug/Display.html?id=55623
        - https://rt.cpan.org/Public/Bug/Display.html?id=76596
        - Thanks to Jozef Kutej and Slaven Rezic for the reports.
    - Thanks to Nick Wellnhofer for the pull requests and fixes.

1.88    2014-02-17
    - Fix t/xml-grammar-failures.t based on the xml:space commentary here:
        - https://mail.gnome.org/archives/xml/2014-February/msg00000.html
        - Caused some failures which were ultimately our fault.

1.87    2014-02-03
    - Decrease the minimum libxslt version again.
        - Setting it as 1.1.28 did not fix the failures, and now we have
        some more tests to test against it.
        - https://rt.cpan.org/Ticket/Display.html?id=92659
        - Thanks to Slaven Rezic for the report.

1.86    2014-02-02
    - Add t/xml-grammar-failures.t to catch test failures in dependent modules.
        - Add some data files for it under t/data/*.
        - This fails on FreeBSD 9.2 currently.

1.85    2014-02-01
    - Add "use strict;" and "use warnings;" globally (CPANTS).
    - Add LICENSE to the MANIFEST.

1.84    2013-12-26
    - Hopefully fix a segmentation fault on Win32 introduced in the last ver.
        - https://rt.cpan.org/Ticket/Display.html?id=91652
        - Thanks to Alexandr Ciornii for the report, and to Nikolay Sivov
        for providing help.

1.83    2013-12-22
    - Get rid of compiler warnings when compiling using CLANG.
        - https://rt.cpan.org/Public/Bug/Display.html?id=91118
        - Thanks to Daniel Macks for the report.

(wen)

2014-05-03 13:48:57 UTC MAIN commitmail json YAML

Lua multiversion support should be in the NEWS.

(alnsn)

2014-05-03 13:45:14 UTC MAIN commitmail json YAML

Updated time/py-trytond-calendar to 3.2.0

(rodent)

2014-05-03 13:44:53 UTC MAIN commitmail json YAML

Updated to latest version, 3.2.0. From CHANGELOG:

Version 3.2.0 - 2014-04-21
* Bug fixes (see mercurial logs for details)

(rodent)

2014-05-03 13:43:53 UTC MAIN commitmail json YAML

Updated misc/py-trytond-stock-lot to 3.2.0

(rodent)

2014-05-03 13:43:41 UTC MAIN commitmail json YAML

Updated to latest version, 3.2.0. From CHANGELOG:

Version 3.2.0 - 2014-04-21
* Bug fixes (see mercurial logs for details)
* Add relate from lot to moves

(rodent)

2014-05-03 13:42:34 UTC MAIN commitmail json YAML

Updated misc/py-trytond-stock to 3.2.0

(rodent)

2014-05-03 13:42:19 UTC MAIN commitmail json YAML

Updated to latest version, 3.2.0. From CHANGELOG:

Version 3.2.0 - 2014-04-21
* Bug fixes (see mercurial logs for details)
* Add warning for moves without origin
* Allow to define the effective date of shipments
* Prevent changing product type if stock moves exist
* Use new methods to compute quantities in StockMixin._search_quantity()
* Split products_by_location into two methods on Move:
  compute_quantities_query and compute_quantities
* Use origin for inventory moves
* Allow partial assignation on Supplier Shipment Return

(rodent)

2014-05-03 13:40:05 UTC MAIN commitmail json YAML

Updated finance/py-trytond-account-product to 3.2.0

(rodent)

2014-05-03 13:39:53 UTC MAIN commitmail json YAML

Updated to latest version, 3.2.0. From CHANGELOG:

Version 3.2.0 - 2014-04-21
* Bug fixes (see mercurial logs for details)

(rodent)

2014-05-03 13:38:11 UTC MAIN commitmail json YAML

Updated misc/py-trytond-product to 3.2.0

(rodent)

2014-05-03 13:37:57 UTC MAIN commitmail json YAML

Updated to latest stable version, 3.2.0. From CHANGELOG:

Version 3.2.0 - 2014-04-21
* Bug fixes (see mercurial logs for details)

(rodent)

2014-05-03 13:36:17 UTC MAIN commitmail json YAML

Updated finance/py-trytond-account to 3.2.0

(rodent)

2014-05-03 13:36:01 UTC MAIN commitmail json YAML

Updated to latest stable version, 3.2.0. From CHANGELOG:

Version 3.2.0 - 2014-04-21
* Bug fixes (see mercurial logs for details)
* Add start/end date to tax
* Use account of write-off journal as default
* Add write-off journal type
* Add description on write-off move

(rodent)

2014-05-03 13:34:52 UTC MAIN commitmail json YAML

Add ALTERNATIVES for moved bin/tryton to bin/tryton${PYVERSSUFFIX}

(obache)

2014-05-03 13:34:19 UTC MAIN commitmail json YAML

Updated misc/py-trytond-company to 3.2.0

(rodent)

2014-05-03 13:34:07 UTC MAIN commitmail json YAML

Updated to latest version 3.2.0. From CHANGELOG:

Version 3.2.0 - 2014-04-21
* Bug fixes (see mercurial logs for details)
* Read employee according to the context
* Add timezone on company to compute today

(rodent)

2014-05-03 13:33:14 UTC MAIN commitmail json YAML

Add ALTERNATIVES for moved bin/tryton to bin/tryton${PYVERSSUFFIX}

(obache)

2014-05-03 13:32:54 UTC MAIN commitmail json YAML

Updated misc/py-trytond-party to 3.2.0

(rodent)

2014-05-03 13:32:42 UTC MAIN commitmail json YAML

Updated to latest release, 3.2.0. From CHANGELOG:

* Bug fixes (see mercurial logs for detail

(rodent)

2014-05-03 13:31:28 UTC MAIN commitmail json YAML

Updated geography/py-trytond-country to 3.2.0

(rodent)

2014-05-03 13:31:06 UTC MAIN commitmail json YAML

Updated to latest release, 3.2.0. From CHANGELOG:

* Bug fixes (see mercurial logs for detail

(rodent)

2014-05-03 13:27:33 UTC MAIN commitmail json YAML

2014-05-03 13:27:05 UTC MAIN commitmail json YAML

Updated finance/py-trytond-currency to 3.2.0

(rodent)

2014-05-03 13:26:52 UTC MAIN commitmail json YAML

Updated to latest release, 3.2.0. From CHANGELOG:

* Bug fixes (see mercurial logs for details)

(rodent)

2014-05-03 13:24:05 UTC MAIN commitmail json YAML

Updated finance/py-stripe to 1.14.0

(rodent)

2014-05-03 13:23:53 UTC MAIN commitmail json YAML

Updated to latest version 1.14.0. No changelog, but there's a certificate
blacklist feature and testing thereof now.

(rodent)

2014-05-03 13:22:37 UTC MAIN commitmail json YAML

Mention Lua multiversion support and devel/lua-BitOp.

(alnsn)

2014-05-03 13:20:56 UTC MAIN commitmail json YAML

Add lua-BitOp.

(alnsn)

2014-05-03 13:18:20 UTC MAIN commitmail json YAML

Updated devel/py-trytond to 3.2.0

(rodent)

2014-05-03 13:17:58 UTC MAIN commitmail json YAML

Update to latest release, 3.2.0. Move bin/trytond to
bin/trytond${PYVERSUFFIX} in post-install to support concurrently installed
versions of python. Upstream dropped support for py26. From CHANGELOG:

* Bug fixes (see mercurial logs for details)
* Add restore_history to ModelSQL
* Add history revisions
* Add the multi selection widget
* Add index to one2many's on_change
* Remove auto-refresh on Action Window
* Add support of domain for non-relation field
* Manage microseconds in JSON-RPC and XML-RPC
* Remove Sha field
* Add password widget
* Add Len to PYSON
* Use bcrypt to hash password if possible
* Use a sequence of ids, values to set fields
* Client side actions on button and wizard
* Add depends attribute to data tag
* Add tree_invisible attribute to button in tree view
* Drop support of Python 2.6
* Deprecate on_change, on_change_with, selection_change_with and autocomplete
  field arguments
* Add fields.depends decorator
* Add run-tests
* Validate only modified and dependant fields on model write
* Improve error messages by showing the failing value
* Remove relation field actions:
    - delete_all
    - unlink_all
    - set
* Rename relation field action unlink into remove
* Use a sequence of records, values in write
* set_context of Transaction.set_user is restricted to root
* Add a "copy" action to One2Many and Many2Many's set method
* Force UTC as timezone (migration script available on tryton-tools)
* Add relation_field for many2one

(rodent)

2014-05-03 13:14:39 UTC MAIN commitmail json YAML

2014-05-03 13:10:10 UTC MAIN commitmail json YAML

Updated devel/py-tryton to 3.2.0

(rodent)

2014-05-03 13:09:55 UTC MAIN commitmail json YAML

Update to latest release, 3.2.0. Move bin/tryton to bin/tryton${PYVERSSUFFIX}
in post-install to support concurrent installed python versions. From CHANGELOG:

* Bug fixes (see mercurial logs for details)
* Add option to show revisions
* Add a multi selection widget for many2many
* Remove auto-refresh
* Add support of domain for non-relation field
* Allow drag & drop on the attachment button
* Replace sha widget by password
* Add Len to PYSON
* Use a pool of connection
* Manage client actions from button and wizard
* Add tree_invisible attribute to button in tree view
* Add buttons of the view in actions menu
* Don't evaluate anymore relate action with the record
* Paste on editable list create new records if needed
* Drop support of Python 2.6
* Allow to search on rec_name of Reference fields
* Use local timezone
* Sanitize report file extension

(rodent)

2014-05-03 13:05:13 UTC MAIN commitmail json YAML

2014-05-03 13:04:10 UTC MAIN commitmail json YAML

Remove lua-stdlib-doc. It has been merged to lua-stdlib.

(alnsn)

2014-05-03 13:02:38 UTC MAIN commitmail json YAML

2014-05-03 13:01:42 UTC MAIN commitmail json YAML

2014-05-03 13:01:25 UTC MAIN commitmail json YAML

2014-05-03 13:00:45 UTC MAIN commitmail json YAML

2014-05-03 12:58:54 UTC MAIN commitmail json YAML

Updated devel/py-modulegraph to 0.11.1

(rodent)

2014-05-03 12:58:41 UTC MAIN commitmail json YAML

Updated to latest release, 0.11.1. From doc/changelog.rst:

* Issue #145: Don't exclude the platform specific 'path' modules (like ntpath)

(rodent)

2014-05-03 12:54:49 UTC MAIN commitmail json YAML

Updated devel/py-logan to 0.5.10

(rodent)

2014-05-03 12:54:36 UTC MAIN commitmail json YAML

Updated to latest release, 0.5.10. No ChangeLog. Still py33 incompatible.

(rodent)

2014-05-03 12:40:14 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-LibXML to 2.0116

(wen)

2014-05-03 12:37:21 UTC MAIN commitmail json YAML

Update to 2.0116

Upstream changes:
2.0116  2014-04-12
    - t/cpan-changes.t : minimum version of Test::CPAN::Changes.
        - This is to avoid test failures such as:
            - http://www.cpantesters.org/cpan/report/69ee1a2a-6c09-1014-be8f-3786912f2992

2.0115  2014-04-03
    - Fix double free when calling $node->addSibling with text nodes.
          - https://rt.cpan.org/Ticket/Display.html?id=94149
          - Thanks to Jeff Trout for the report.

2.0114  2014-04-03
    - Fix memory leaks and segfaults related to removal and insertion of
      DTD nodes.
        - https://rt.cpan.org/Ticket/Display.html?id=80521
    - Fix memory leak in $node->removeChildNodes

2.0113  2014-03-14
    - Fix test failures with older libxml2 versions.
        - https://rt.cpan.org/Ticket/Display.html?id=93852
        - Thanks to Nick Wellnhofer for the patch.
        - Thanks to the CPAN Testers for reporting this issue.

2.0112  2014-03-13
    - Fix segfaults when accessing attributes of DTD nodes
        - https://rt.cpan.org/Ticket/Display.html?id=71076
        - Thanks to Ralph Merridew for the report.
    - Make $schema->validate work with elements. This uses
      xmlSchemaValidateOneElement under the hood.
        - https://rt.cpan.org/Ticket/Display.html?id=93496
        - Thanks to Jeremy Marshall for the report.
    - Fix https://rt.cpan.org/Ticket/Display.html?id=93429 .
        - Thanks to Nick Wellnhofer for the report and test.
    - Apply patch to build with MSVC on Windows.
        - https://rt.cpan.org/Ticket/Display.html?id=90064
        - Thanks to Nick Wellnhofer for the investigation and the patch.

2.0111  2014-03-05
    - Skip t/40reader_mem_error.t with libxml2 < 2.7.4
      The failure is probably due to a known double-free bug.
        - https://rt.cpan.org/Ticket/Display.html?id=84564
        - https://bugzilla.gnome.org/show_bug.cgi?id=447899
        - Thanks to Nick Wellnhofer for the pull request.
    - Die if a file handle with an encoding layer returns more bytes
      than requested in parse_fh.
        - https://rt.cpan.org/Ticket/Display.html?id=78448
    - Make insertData, deleteData, replaceData work correctly with UTF-8
      strings.
    - Fix substringData
        - https://rt.cpan.org/Ticket/Display.html?id=88730
    - Fix "Threads still failing?" Bug report.
        - https://rt.cpan.org/Ticket/Display.html?id=91800
        - Thanks to Daniel for the bug report and a test case, and to
        YOREEK for the patch.

2.0110  2014-02-01
    - Add "use strict;" and "use warnings;" to all modules (CPANTS).
    - MIN_PERL_VERSION (CPANTS).
    - Add a LICENSE section to the POD (CPANTS).

2.0109  2014-01-31
    - Fix for requiring XML::LibXML inside two loops in perl-5.19.6 and up.
        - https://rt.cpan.org/Ticket/Display.html?id=92606
        - Thanks to Father Chrysostomos for the investigation, the test
        case, and the fix.
        - There are other ways to reproduce the bug, but the tests tests
        for a require inside two loops.

2.0108  2013-12-17
    - Replace local $^W with << no warnings 'portable'; >> in t/15nodelist.t
        - Should fix https://rt.cpan.org/Public/Bug/Display.html?id=88017
        - Thanks to "pagenyon" for the report.
    - Fix hash key typo in SAX/Builder.pm - "LocalName" was mis-capitalised.
        - https://rt.cpan.org/Public/Bug/Display.html?id=91433
        - Thanks to Thomas Berger for the report and for a reproducing
        testcase.
    - Convert from "use base" to the more modern "use parent".

(wen)

2014-05-03 12:23:56 UTC MAIN commitmail json YAML

Updated misc/vimpager to 1.8.8

(nonaka)

2014-05-03 12:22:08 UTC MAIN commitmail json YAML

Update vimpager to 1.8.8.
PR pkg/48781 by me.

Version 1.8.8
* don't clobber user's PATH (mayersj1: Steve Mayer) #77

Version 1.8.7
* use more lines for fallback man page detection, misc. code cleanups (eworm-de: Christian Hesse)

Version 1.8.6
* allow _vimrc on non-windows (mortonfox: Morton Fox)

Version 1.8.5
* fix up arrow binding again, broken in 1.8.4

Version 1.8.4
* disable help screen 'h' binding, cursor moves left instead (Github issue #71)

Version 1.8.3
* reexec self under bash or ksh when available, especially on Solaris (Github issue #63)
* add vim command -c option (aroig: Abdo Roig-Maranges)
* allow ~/.vim/vimpagerrc as conf file (lucc: Lucas Hoffmann)

(nonaka)

2014-05-03 11:54:15 UTC MAIN commitmail json YAML

Reset PKGREVISION after update.

(wiz)

2014-05-03 11:54:08 UTC MAIN commitmail json YAML

Updated devel/py-mercurial to 3.0

(wiz)

2014-05-03 11:53:59 UTC MAIN commitmail json YAML

Update to 3.0:

Mercurial 3.0 (2014-05-01)

This is a regularly-scheduled quarterly feature release. Unlike
other 3.0 software releases, this is simply 2.9 + .1, so it should
be the usual pain-free upgrade.

1.1. Core features

    cat: support explicit paths in subrepos
    cmdserver: allow starting server without repository
    clone: abort if default destination has no meaningful name (BC)
    clone: put streaming clones in a transaction
    color: add debugcolor command (issue4094)
    color: allow color keywords to be used directly in template
    commands: add -T as alternative to --template
    commands: hg debuginstall checks missing templates (issue4151)
    commit: --edit/-e allows editing commit message supplied through other means
    config: add initial implementation of --edit (with --global and --local flags)
    debuginstall: add Python information to debuginstall output (issue4128)
    demandimport: support HGDEMANDIMPORT=disable to disable demandimport
    hgweb: add metadata to atom and rss feed entries
    http: reuse authentication info after the first failed request (issue3567)
    log: change implementation to use graphlog code
    push: provide a hint when no paths are configured (issue3692)
    require: provide a link to a wiki page as well as suggesting upgrade
    revset: new implementation with incremental evaluation
    revset: try to handle hyphenated symbols if lookup callback is available
    revset: add 'only()' revset
    sshpeer: only print out 'running ssh' messages in debug mode (BC)
    template: add ifcontains template function
    template: add pad function for padding output
    template: add revset() template function
    template: add shortest(node) template function
    template: add flexible -T option
    win32: improve the performance of win32.unlink() over CIFS

1.2. Extension features

    blackbox: log events related to branch cache
    convert: avoid updating tags when there is nothing new
    convert: compare tags from all heads instead of just one
    convert: replace old sha1s in the description
    extensions: mark win32text deprecated
    extensions: remove interhg
    extensions: remove the inotify extension (BC)
    histedit: select the lowest rev when looking for a root in a revset (BC)
    journal: report parsing errors on recover/rollback (issue4172)
    qimport: allow importing URLs

1.3. Fixes

    backout: don't limit ancestry check to a single ancestor
    backout: improve confusing 'cannot backout change on a different branch' abort
    caches: invalidate store caches when lock is taken
    cmdserver: forcibly use L channel to read password input (issue3161)
    cmdserver: reload mq on each runcommand request to avoid corruption
    diff: use second filename for --stat reporting on git patches (issue4221)
    dirstate: report bad subdirectories as match.bad, not just a warning (BC)
    extensions: use normpath to allow trailing '\' on Windows (issue4187)
    fncache: clean up fncache during strips
    largefiles: changed overridelog to work with graphlog
    largefiles: don't prompt when one side of merge was changed but didn't change
    largefiles: remove directories emptied after their files are moved (issue3515)
    parsers: fail fast if Python has wrong minor version (issue4110)
    phases: apply publishing enforcement for "serve" source
    revlog: deal with chunk ranges over 2G on Windows (issue4215)
    setup.py: fix C extension compilation issue with OS X 10.9 and Xcode 5.1
    subrepo: check return code for git push (issue4223)

1.4. Experimental features

    bundle2: experimental support for bundle2
    merge: experimental implementation of bid merge
    merge: tell when .ancestor picks one of multiple common ancestors heads

(wiz)

2014-05-03 11:24:19 UTC MAIN commitmail json YAML

2014-05-03 11:23:56 UTC MAIN commitmail json YAML

2014-05-03 10:58:26 UTC MAIN commitmail json YAML

Fix build under FreeBSD/amd64 10.0

* Use MOZ_SAMPLE_TYPE_FLOAT32=1 for FreeBSD
* Disable WebRTC support under FreeBSD, because graphics/libv4l is not built
  under FreeBSD/amd64 10.0

(ryoon)

2014-05-03 10:49:39 UTC MAIN commitmail json YAML

Updated textproc/p5-YAML-Tiny to 1.62

(wen)

2014-05-03 10:43:10 UTC MAIN commitmail json YAML

Update to 1.62

Upstream changes:
1.62      2014-03-16 12:28:44Z

        [FIXED]

        - fix handling of trailing colon in key name (RT#92916, H.Merijn
          Brand)

1.61      2014-02-24 16:59:49Z
        [FIXED]

        - fixed a test for VMS (RT#93297, Craig Berry)

1.60      2014-02-13 20:31:56Z

        - shipping 1.59 as stable, with no changes.

1.59      2014-02-06 03:10:35Z (TRIAL RELEASE)

        [CHANGED]

        - numeric values are now quoted whenever they've been used as a string
          (fixes inconsistent behaviour seen with numeric values, due to
          differences between the XS and pure-perl variants of Data::Dumper).
          (github issue #24)
        - numeric hash keys are now always quoted.

1.58      2014-02-04 18:01:58Z

        [INCOMPATIBLE CHANGE]

        - 1.57 omitted a change entry for the following change:

        - Previously, YAML::Tiny was sloppy about file encodings.  It is
          now strict.  The 'read' method and 'LoadFile' function expect
          UTF-8 encoded files.  The 'write' method and 'DumpFile' function
          produce UTF-8 encoded files.  The 'read_string' and
          'write_string' methods and the 'Load' and 'Dump' functions
          expect or generate (decoded) character data.

1.57      2014-01-30 22:12:38Z

        [INCOMPATIBLE CHANGE]

          - Previously, some errors would throw exceptions and some would
            return the error condition in $YAML::Tiny::errstr.  Now all
            errors throw exceptions.  Use of $errstr and the errstr method
            are deprecated. (David Golden)

        [FIXED]

          - Fixed write method to encode YAML file with UTF-8 (David Golden)
          - Improved SYNOPSIS and documentation of new (David Golden)

        [TESTING]

          - Tests have been cleaned up and reorganized.  Test coverage
            has been significnatly improved. (Ingy d譫嗾 Net, David Golden,
            Jim Keenan, Karen Etheridge)

1.56      2013-09-25 02:38:19Z
          - read_string documentation error fixed (RT#74409, thanks Tim Heaney!)
          - re-release with fixed compile test

1.55      2013-09-19 04:07:32Z
          - again packaging with ExtUtils::MakeMaker

1.54      2013-08-22 03:55:41Z
          - convert to Dist::Zilla
          - Updated format to conform to CPAN::Changes::Spec

(wen)

2014-05-03 10:12:54 UTC MAIN commitmail json YAML

Updated www/p5-Twiggy to 0.1024

(wen)

2014-05-03 10:04:24 UTC MAIN commitmail json YAML

Update to 0.1024

Upstream changes:
0.1024  2013-10-12 11:35:35 PDT
        - Fix a bug where exit_guard is not correctly decremented when writing header failed (maedama) #37

0.1023  2013-06-15 01:51:22 PDT
        - Move the bin directory (moznion) #35

0.1022  2013-06-12 12:36:16 PDT
        - convert to use Milla
        - Fix dependency for LWP

0.1021 Fri Oct 19 15:09:17 PDT 2012
        - Repackage with the latest Module::Install

0.1020 Mon Feb 20 16:31:44 PST 2012
        - Improve SEREVR_PORT when binding multiple ports
        - Documentation fixes (Pedro Melo)
        - Suppres 400 if client disconnected (athomason)
        - Don't restrict parsing the request body to PUT and POST requests (Moritz Onken)
        - Fixed broken POST data processing (und3f, hidekiy)

(wen)

2014-05-03 09:53:34 UTC MAIN commitmail json YAML

Updated inputmethod/ibus to 1.5.7

(obache)

2014-05-03 09:52:24 UTC MAIN commitmail json YAML

Update ibus to 1.5.7.

* Add Czech (qwerty) keymap.
* Update supported vala version to 0.20.
* Send panel input purpose.
* Keep track of content-type change after focus-in
* Fix leak in ibus_get_local_machine_id()
* Do not show property panel by default.
* Do not move property panel with focus-in in case panel is always shown.

(obache)

2014-05-03 09:27:14 UTC MAIN commitmail json YAML

Updated sysutils/p5-Server-Starter to 0.17

(wen)

2014-05-03 09:26:10 UTC MAIN commitmail json YAML

Update to 0.17

Upstream changes:
0.17
- add option: --backlog to change the backlog size (default: SOMAXCONN) (thanks to Yuryu)

0.16
- [bugfix] unset the environment variable when a file is removed from the directory specified by --envdir

0.15
- added option: --envdir for reloading configuration (thanks to limitusus)
- added options: --enable-auto-restart and interval for periodical automatic restarting (thanks to limitusus)
- added option: --kill-old-delay for delaying SIGTERM (thanks to limitusus)

0.14
- fix regression in 0.13; start_server wo. "--dir" was causing errors

0.13
- add option: --dir (thanks to kazeburo)

0.12
- bugfix: support for programs with whitespaces (thanks to clkao)
- add option: --signal-on-term (thanks to miyagawa)

(wen)

2014-05-03 08:20:35 UTC MAIN commitmail json YAML

Updated devel/p5-Proc-Wait3 to 0.04

(wen)

2014-05-03 08:18:12 UTC MAIN commitmail json YAML

Update to 0.04
Add LICENSE

Upstream changes:
0.04 Wed Feb 16 06:54:47 EST 2011
        - Clarified license as "GPL and Artistic" per request from
          Ralf Corsius

(wen)

2014-05-03 08:11:53 UTC MAIN commitmail json YAML

Note as upstream Issue#4

(obache)

2014-05-03 07:30:19 UTC MAIN commitmail json YAML

'list_remove', being defined as well on SunOS under <sys/list.h>, causes
a 'conflicting types' error when building with perl, python and/or ruby.
Affects the following files: eval.c, if_lua.c and if_py_both.c

(richard)

2014-05-03 07:14:45 UTC MAIN commitmail json YAML

Change to upstream way used in other places.
Note reported to upstream as Issue#3.

(obache)

2014-05-03 06:36:39 UTC MAIN commitmail json YAML

+ ezmlm-7.2.0 [schmonz]

(schmonz)

2014-05-03 03:04:56 UTC MAIN commitmail json YAML

Updated www/p5-Mojolicious to 4.97

(wen)

2014-05-03 03:04:09 UTC MAIN commitmail json YAML

Update to 4.97

Upstream changes:
4.97  2014-04-30
  - Deprecated support for "X-Forwarded-HTTPS" in favor of
    "X-Forwarded-Proto".
  - Added multi-name support to param method in Mojo::Parameters.

4.96  2014-04-28
  - Improved Mojo::IOLoop to use Mojo::IOLoop::Delay more consistently.

4.95  2014-04-27
  - Improved Mojo::IOLoop::Delay with circular reference protection.
  - Improved Mojo::IOLoop::Delay to allow argument splicing.
  - Improved Mojo::IOLoop::Server to reuse cipher list from IO::Socket::SSL.
  - Fixed memory leak in Mojo::UserAgent::Server.

4.94  2014-04-20
  - Added reverse_proxy attribute to Mojo::Server::Daemon.
  - Added reverse_proxy attribute to Mojo::Message::Request.
  - Added prefork and upgrade_timeout attributes to Mojo::Server::Hypnotoad.
  - Added configure method to Mojo::Server::Hypnotoad.
  - Relaxed name handling in Mojo::Headers a little.
  - Fixed small bug in online tests.

(wen)

2014-05-03 02:59:47 UTC MAIN commitmail json YAML

re-add JCEPolicy and bootstrap entries, lost dureing last update.

(obache)

2014-05-03 02:53:50 UTC MAIN commitmail json YAML

Updated devel/p5-Data-Section-Simple to 0.07

(wen)

2014-05-03 02:52:35 UTC MAIN commitmail json YAML

Update to 0.07

Upstream changes:
0.07  2014-04-23 21:19:23 PDT
        - revert the change in 0.06

0.06  2014-04-12 06:10:47 CST
        - Fix race condition in a forked environment (hirose31) #4

0.05  2013-06-06 14:13:22 PDT
        - use MakeMaker

0.04  2013-03-28 17:50:48 PDT
        - Do not throw exceptions when there's no template (tokuhirom) #2

(wen)

2014-05-03 02:47:57 UTC MAIN commitmail json YAML

+py-yuicompressor

(rodent)

2014-05-03 02:46:58 UTC MAIN commitmail json YAML

Added archivers/py-yuicompressor version 2.4.8

(rodent)

2014-05-03 02:46:46 UTC MAIN commitmail json YAML

Import py27-yuicompressor-2.4.8 as archivers/py-yuicompressor.

YUI Compressor is a JavaScript and CSS minifier written in Java. This package
bundles the YUI Compressor JAR file to ease its use in Python projects. Note
that you still need to have Java Runtime Environment installed.

(rodent)

2014-05-03 02:36:16 UTC MAIN commitmail json YAML

+py-flask-user

(rodent)

2014-05-03 02:35:46 UTC MAIN commitmail json YAML

Added www/py-flask-user version 0.4.9

(rodent)

2014-05-03 02:35:35 UTC MAIN commitmail json YAML

Import py27-Flask-User-0.4.9 as www/py-flask-user.

Customizable User Account Management for Flask: Register, Confirm email, Login,
Change username, Change password, Forgot password and more.

(rodent)

2014-05-03 02:27:57 UTC MAIN commitmail json YAML

2014-05-03 02:27:23 UTC MAIN commitmail json YAML

Added security/py-bcrypt version 1.0.2

(rodent)

2014-05-03 02:27:10 UTC MAIN commitmail json YAML

2014-05-03 02:19:42 UTC MAIN commitmail json YAML

Updated emulators/suse131_mozilla-nss to 13.1nb2

(obache)

2014-05-03 02:19:27 UTC MAIN commitmail json YAML

Apply Security Update: openSUSE-SU-2014:0599-1
update for MozillaFirefox

Description:

  This is also a mozilla-nss update to version 3.16:
  * required for Firefox 29
  * bmo#903885 - (CVE-2014-1492) In a wildcard certificate,
  the wildcard character should not be embedded within
  the U-label of an internationalized domain name. See
  the last bullet point in RFC 6125, Section 7.2.
  * Supports the Linux x32 ABI. To build for the Linux x32
  target, set the environment variable USE_X32=1 when
  building NSS. New Functions:
  * NSS_CMSSignerInfo_Verify New Macros
  * TLS_RSA_WITH_RC4_128_SHA,
  TLS_RSA_WITH_3DES_EDE_CBC_SHA, etc., cipher suites that
  were first defined in SSL 3.0 can now be referred to
  with their official IANA names in TLS, with the TLS_
  prefix. Previously, they had to be referred to with
  their names in SSL 3.0, with the SSL_ prefix. Notable
  Changes:
  * ECC is enabled by default. It is no longer necessary to
  set the environment variable NSS_ENABLE_ECC=1 when
  building NSS. To disable ECC, set the environment
  variable NSS_DISABLE_ECC=1 when building NSS.
  * libpkix should not include the common name of CA as DNS
  names when evaluating name constraints.
  * AESKeyWrap_Decrypt should not return SECSuccess for
  invalid keys.
  * Fix a memory corruption in sec_pkcs12_new_asafe.
  * If the NSS_SDB_USE_CACHE environment variable is set,
  skip the runtime test sdb_measureAccess.
  * The built-in roots module has been updated to version
  1.97, which adds, removes, and distrusts several
  certificates.
  * The atob utility has been improved to automatically
  ignore lines of text that aren't in base64 format.
  * The certutil utility has been improved to support
  creation of version 1 and version 2 certificates, in
  addition to the existing version 3 support.

Bump PKGREVISION.

(obache)

2014-05-03 02:14:16 UTC MAIN commitmail json YAML

+py-flask-testing

(rodent)

2014-05-03 02:14:00 UTC MAIN commitmail json YAML

Updated emulators/suse131_libcurl to 13.1nb3

(obache)

2014-05-03 02:13:46 UTC MAIN commitmail json YAML

Added www/py-flask-testing version 0.4.1

(rodent)

2014-05-03 02:13:44 UTC MAIN commitmail json YAML

Apply Security Update: openSUSE-SU-2014:0598-1
update for curl

Description:

  This curl update fixes two security issues:

  - bnc#868627: Fixed wrong re-use of connections
  (CVE-2014-0138).
  - bnc#868629: Fixed IP address wildcard certificate
  validation  (CVE-2014-0139).

Bump PKGREVISION.

(obache)

2014-05-03 02:13:35 UTC MAIN commitmail json YAML

2014-05-03 02:10:22 UTC MAIN commitmail json YAML

Updated emulators/suse131_openssl to 13.1nb6

(obache)

2014-05-03 02:10:06 UTC MAIN commitmail json YAML

Apply Security Update: openSUSE-SU-2014:0592-1
OpenSSL: Fixed a use-after-free race condition in OpenSSL's read buffer.

Description:

    A use-after-free race condition in OpenSSL's read buffer
    was fixed that could cause connections to drop
    (CVE-2010-5298).

Bump PKGREVISION.

(obache)

2014-05-03 01:57:34 UTC MAIN commitmail json YAML

2014-05-03 01:56:43 UTC MAIN commitmail json YAML

Added www/py-twill version 1.8.0

(rodent)

2014-05-03 01:56:29 UTC MAIN commitmail json YAML

Import py27-twill-1.8.0 as www/py-twill.

A scripting system for automating Web browsing. Useful for testing Web pages or
grabbing data from password-protected sites automatically.

(rodent)

2014-05-03 01:45:18 UTC MAIN commitmail json YAML

+py-flask-{debugtoolbar,sslify}

(rodent)

2014-05-03 01:40:24 UTC MAIN commitmail json YAML

LICENSE+=modified-bsd from package's source repository.

(rodent)

2014-05-03 01:38:49 UTC MAIN commitmail json YAML

Added www/py-flask-sslify version 0.1.4

(rodent)

2014-05-03 01:38:37 UTC MAIN commitmail json YAML

Import py27-Flask-SSLify-0.1.4 as www/py-flask-sslify.

This is a simple Flask extension that configures your Flask application to
redirect all incoming requests to https. Redirects only occur when app.debug is
False.

(rodent)

2014-05-03 01:24:40 UTC MAIN commitmail json YAML

Added www/py-flask-debugtoolbar version 0.9.0

(rodent)

2014-05-03 01:24:27 UTC MAIN commitmail json YAML

Import py27-Flask-DebugToolbar-0.9.0 as www/py-flask-debugtoolbar.

This is a port of the django-debug-toolbar for Flask applications.

(rodent)

2014-05-02 22:59:42 UTC MAIN commitmail json YAML

Updated lang/sbcl to 1.1.18

(asau)

2014-05-02 22:58:54 UTC MAIN commitmail json YAML

Update to SBCL 1.1.18

changes in sbcl-1.1.18 relative to sbcl-1.1.17:
  * optimization: COERCE is now more effecient for more cases when the type is
    known at compile-time.
    (lp#1309815)
  * bug fix: correctly inherit condition initforms. (lp#1300904)
  * bug fix: properly pprint literal functions inside nested lists.
    (lp#1300716)
  * bug fix: more-correctly handle array-type unity (broken for ages, causing
    compilation problems since 1.1.13.x due to smarter TYPEP type propagation,
    reported by jasom in #lisp).

(asau)

2014-05-02 15:54:16 UTC MAIN commitmail json YAML

lang/gcc-aux: Fix build target (affects FreeBSD and future OpenBSD)

GCC never uses "amd64" in the triplet, it always must be x86_64.

(marino)

2014-05-02 13:04:47 UTC MAIN commitmail json YAML

Note update of lang/php54 package to 5.4.28.

(taca)

2014-05-02 13:04:12 UTC MAIN commitmail json YAML

Update php54 to 5.4.28.

01 May 2014, PHP 5.4.28

- Core:
  . Fixed bug #61019 (Out of memory on command stream_get_contents). (Mike)
  . Fixed bug #64330 (stream_socket_server() creates wrong Abstract Namespace
    UNIX sockets). (Mike)
  . Fixed bug #66171 (Symlinks and session handler allow open_basedir bypass).
    (Jann Horn, Stas)
  . Fixed bug #66182 (exit in stream filter produces segfault). (Mike)
  . Fixed bug #66736 (fpassthru broken). (Mike)
  . Fixed bug #67024 (getimagesize should recognize BMP files with negative
    height). (Gabor Buella)

- cURL:
  . Fixed bug #66562 (curl_exec returns differently than curl_multi_getcontent).
    (Freek Lijten)

- Date:
  . Fixed bug #66721 (__wakeup of DateTime segfaults when invalid object data is
    supplied). (Boro Sitnikovski)

- Embed:
  . Fixed bug #65715 (php5embed.lib isn't provided anymore). (Anatol)

- Fileinfo:
  . Fixed bug #66987 (Memory corruption in fileinfo ext / bigendian).
    (Remi)

- FPM:
  . Fixed bug #66482 (unknown entry 'priority' in php-fpm.conf).
  . Fixed bug #67060 (sapi/fpm: possible privilege escalation due to insecure
    default configuration) (CVE-2014-0185). (Stas)

- JSON:
  . Fixed bug #66021 (Blank line inside empty array/object when
    JSON_PRETTY_PRINT is set). (Kevin Israel)

- LDAP:
  . Fixed issue with null bytes in LDAP bindings. (Matthew Daley)

- OpenSSL:
  . Fix bug #66942 (memory leak in openssl_seal()). (Chuan Ma)
  . Fix bug #66952 (memory leak in openssl_open()). (Chuan Ma)

- SimpleXML:
  . Fixed bug #66084 (simplexml_load_string() mangles empty node name)
    (Anatol)

- XSL:
  . Fixed bug #53965 (<xsl:include> cannot find files with relative paths
    when loaded with "file://"). (Anatol)

- Apache2 Handler SAPI:
  . Fixed Apache log issue caused by APR's lack of support for %zu
    (APR issue https://issues.apache.org/bugzilla/show_bug.cgi?id=56120).
    (Jeff Trawick)

(taca)

2014-05-02 12:34:39 UTC MAIN commitmail json YAML

Fix build under DragonFly, PR pkg/48776

* Firefox should be built with MOZ_SAMPLE_TYPE_FLOAT32=1 for DragonFly
  like NetBSD

(ryoon)

2014-05-02 12:16:51 UTC MAIN commitmail json YAML

Updated devel/apache-ant to 1.9.3

(wiz)

2014-05-02 12:16:38 UTC MAIN commitmail json YAML

Update to 1.9.3:

Changes from Ant 1.9.2 TO Ant 1.9.3
===================================

Fixed bugs:
-----------

* <parallel> swallowed the status code of nested <fail> tasks.
  Bugzilla Report 55539.

* a race condition could make <fixcrlf> tasks of parallel builds to
  interfere with each other.
  Bugzilla Report 54393.

* <mail>'s mailport still didn't work properly when using smtps.
  Bugzilla Report 49267.

* using attributes belonging to the if and unless namespaces
  made macrodef fail.
  Bugzilla Report 55885.

* Ant 1.8 exec task changes have slowed exec to a crawl
  Bugzilla Report 54128.

* Apt is not available under JDK 1.8
  Bugzilla Report 55922.

Other changes:
--------------

* Documentation fix for if/unless attributes.  PR 55359.

* tar entries with long link names are now handled the same way as
  entries with long names.

* Addition of 'skipNonTests' attribute to <junit> and <batchtest>
  tasks to allow the tasks to skip classes that don't contain tests.

* <filterset> now supports a nested <propertyset> to specify filters.
  Bugzilla Report 55794.

* <xslt>'s params can now be typed.
  Bugzilla Report 21525.

* build of Mac OS X pkg installer
  Bugzilla Report 55899.

(wiz)

2014-05-02 11:26:53 UTC MAIN commitmail json YAML

2014-05-02 11:26:51 UTC MAIN commitmail json YAML

Updated games/puzzles to 10180

(wiz)

2014-05-02 11:26:40 UTC MAIN commitmail json YAML

2014-05-02 11:22:57 UTC MAIN commitmail json YAML

Updated misc/calibre to 1.35.0

(wiz)

2014-05-02 11:22:45 UTC MAIN commitmail json YAML

Update to 1.35.0:

- version: 1.35.0
  date: 2014-05-02

  new features:
    - title: "Edit Book: Redesign the syntax highlighter to improve
    performance for large documents and extended editing sessions."
      tickets: [1314339]

    - title: "Edit book: Make cursor movement smooth by not
    highlighting matching tags while the cursor is moving. Only
    match highlighting tags if the cursor stays still for a time."

    - title: "Spellcheck dialog: Indicate whether a word is ignored
    in the Misspelled column"

    - title: "Spellcheck dialog: Pressing Ctrl+C on the words list
    copies only selected words, regardless of current cell"

    - title: "Add a copy to clipboard action to the context menu
    for the spell check dialog"

    - title: "Edit book: Fix save button incorrectly disabled after
    a failed save"
      tickets: [1313567]

  bug fixes:
    - title: "Edit Book: Fix an error when merging CSS stylesheets
    that contain @charset rules"

    - title: "Edit book: Fix extra invalid entries being generated
    in the manifest when editing an AZW3 file that has no images."

    - title: "Edit book: Fix a hang when editing an HTML or XML
    file with text of the form <abc: (i.e. a tag name with a trailing
    colon)."
      tickets: [1314009]

    - title: "Fix regression that prevented the ebook editor from
    starting on linux systems with locale set to 'C'"
      tickets: [1315064]

    - title: "DOCX Input: Fix formatting of the generated Index
    when the index is complex, i.e. with lots of references to the
    same item, multiple level of sub-items, etc."

    - title: "Smarten punctuation: Fix a double quote preceded by
    a hyphen at the end of a sentence (before the start of the next
    tag) being converted into an opening quote instead of closing
    quote."
      tickets: [1286477]

    - title: "News download: Fix very long URLs for links to pages
    causing errors on windows because of max path length restrictions."
      tickets: [1313982]

    - title: "Edit book: Fix saved search dialog causing high CPU
    usage"

    - title: "Edit book: Fix importing of Lithuanian dictionary
    from OpenOffice, that does not specify a country code."
      tickets: [1313315]

  improved recipes:
    - Ars Technica - Daily Mirror - Birmingham Evening Mail - NRC
    - Next - Private Eye - NZZ

(wiz)

2014-05-02 11:19:07 UTC MAIN commitmail json YAML

Updated lang/nodejs to 0.10.27

(fhajny)

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

2014.05.01, Version 0.10.27 (Stable)

* npm: upgrade to v1.4.8
* openssl: upgrade to 1.0.1g
* uv: update to v0.10.27
* dns: fix certain txt entries (Fedor Indutny)
* assert: Ensure reflexivity of deepEqual (Mike Pennisi)
* child_process: fix deadlock when sending handles (Fedor Indutny)
* child_process: fix sending handle twice (Fedor Indutny)
* crypto: do not lowercase cipher/hash names (Fedor Indutny)
* dtrace: workaround linker bug on FreeBSD (Fedor Indutny)
* http: do not emit EOF non-readable socket (Fedor Indutny)
* http: invoke createConnection when no agent (Nathan Rajlich)
* stream: remove useless check (Brian White)
* timer: don't reschedule timer bucket in a domain (Greg Brail)
* url: treat \ the same as / (isaacs)
* util: format as Error if instanceof Error (Rod Vagg)

(fhajny)

2014-05-02 11:17:08 UTC MAIN commitmail json YAML

2014-05-02 10:48:37 UTC MAIN commitmail json YAML

Updated lang/openjdk7 to 1.7.55

(ryoon)

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

Update to 1.7.55

Changelog: From release notes for Oracle JDK 7u55
  JavaFX Release Notes
  JavaFX is now part of JDK. JDK 7u55 release includes JavaFX version 2.2.55.

  New Features and Changes
  The frequency of some security dialogs has been reduced on systems that run the same RIA multiple times.
  See 8029649.

  Using "*" in Caller-Allowable-Codebase Attribute.

  If a stand-alone asterisk (*), or asterisk as part of a top level domain such as (*.org), is specified as the value for the Caller-Allowable-Codebase attribute, then calls from JavaScript code to the RIA will show a security warning. An option to remember the choice is also provided, and if the user selects the option to remember the choice to run the RIA, no further warning messages are shown for the same RIA, when run with JavaScript from the same source.

  For more information, see JAR File Manifest Attributes for Security documentation.

  See 8033707.

  Disabling Sponsor Offers in the Java Installer

  During the installation of Java, users may be presented with the option of downloading and installing sponsor offers, such as browser add-ons, or security software. With 7u55 and later releases of Java, sponsor offers can be bypassed entirely by using "SPONSORS=0" as an option, when installing Java via the command line:

      Manually download the 32bit online installer for 7u55 to your local machine.
      Click the Windows Start Button/Menu. From the available Menu choices, select the 'Search box' and enter the text "command" in it.
      A list of matches will appear. Select  'Command Prompt' from the available Programs list.
      Navigate to the folder containing the downloaded installer, e.g.:
      cd c:\Users\<username>\Downloads
      To start the installation, in the Command Prompt window type:
      jre-7u55-windows-i586-iftw.exe SPONSORS=0

  The option to disable sponsors will persist across all future updates and re-installs of Java.

  Note that sponsor offers, and therefore this functionality, is only applicable to online 32bit JRE installers and Auto Update mechanisms for the Windows operating system.

  Bug Fixes
  Bug Id  Category Sub-Category Description
  JDK-7190349 client-libs 2d [macosx] Text (Label) is incorrectly drawn with a rotated g2d
  JDK-8013569 client-libs 2d [macosx] JLabel preferred size incorrect on retina displays with non-default font size
  JDK-6571600 client-libs java.awt JNI use results in UnsatisfiedLinkError looking for libmawt.so
  JDK-8025588 client-libs java.awt [macosx] Frozen AppKit thread in 7u40
  JDK-5049299 core-libs java.lang (process) Use posix_spawn, not fork, on S10 to avoid swap exhaustion
  JDK-8020191 core-libs java.lang System.getProperty( " os.name " ) returns " Windows NT (unknown) " on Windows 8.1
  JDK-8030822 core-libs java.time (tz) Support tzdata2013i
  JDK-8019853 core-libs java.util.logging Break logging and AWT circular dependency
  JDK-8026474 deploy deployment_toolkit deployJava.js versioncheck doesn't work in IE11
  JDK-8028691 deploy plugin loading browser proxy via config script should not trigger JAR download
  JDK-8029649 deploy plugin Reduce dialog frequency when app is run multiple times
  JDK-8033705 deploy plugin Array out of bounds exception in PluginMain.performSSVValidation
  JDK-8033779 deploy plugin JRE 7u51 Plugin Failing to Run Older JRE Version < 1.6.0
  JDK-8029922 deploy webstart 32-bit only Java Web Start apps fail to run on 32- and 64-bit JRE configs
  JDK-8031579 deploy webstart Spurious Missing Manifest Permissions Attribute Warning When Launching versioned Java Web Start app
  JDK-8024830 hotspot compiler SEGV in org.apache.lucene.codecs.compressing.CompressingTermVectorsReader.get
  JDK-8035618 other-libs corba:rmi-iiop Four api/org_omg/CORBA TCK tests fail under plugin only

Revision 1.6 / (download) - annotate - [select for diffs], Wed Apr 30 23:12:48 2014 UTC (35 hours, 33 minutes ago) by ryoon
Branch: MAIN
CVS Tags: HEAD
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

Update to 7.0.55

Changelog:
JavaFX Release Notes
JavaFX is now part of JDK. JDK 7u55 release includes JavaFX version 2.2.55.

New Features and Changes
The frequency of some security dialogs has been reduced on systems that run the same RIA multiple times.
See 8029649.

Using "*" in Caller-Allowable-Codebase Attribute.

If a stand-alone asterisk (*), or asterisk as part of a top level domain such as (*.org), is specified as the value for the Caller-Allowable-Codebase attribute, then calls from JavaScript code to the RIA will show a security warning. An option to remember the choice is also provided, and if the user selects the option to remember the choice to run the RIA, no further warning messages are shown for the same RIA, when run with JavaScript from the same source.

For more information, see JAR File Manifest Attributes for Security documentation.

See 8033707.

Disabling Sponsor Offers in the Java Installer

During the installation of Java, users may be presented with the option of downloading and installing sponsor offers, such as browser add-ons, or security software. With 7u55 and later releases of Java, sponsor offers can be bypassed entirely by using "SPONSORS=0" as an option, when installing Java via the command line:

    Manually download the 32bit online installer for 7u55 to your local machine.
    Click the Windows Start Button/Menu. From the available Menu choices, select the 'Search box' and enter the text "command" in it.
    A list of matches will appear. Select  'Command Prompt' from the available Programs list.
    Navigate to the folder containing the downloaded installer, e.g.:
    cd c:\Users\<username>\Downloads
    To start the installation, in the Command Prompt window type:
    jre-7u55-windows-i586-iftw.exe SPONSORS=0

The option to disable sponsors will persist across all future updates and re-installs of Java.

Note that sponsor offers, and therefore this functionality, is only applicable to online 32bit JRE installers and Auto Update mechanisms for the Windows operating system.

Bug Fixes
Bug Id  Category Sub-Category Description
JDK-7190349 client-libs 2d [macosx] Text (Label) is incorrectly drawn with a rotated g2d
JDK-8013569 client-libs 2d [macosx] JLabel preferred size incorrect on retina displays with non-default font size
JDK-6571600 client-libs java.awt JNI use results in UnsatisfiedLinkError looking for libmawt.so
JDK-8025588 client-libs java.awt [macosx] Frozen AppKit thread in 7u40
JDK-5049299 core-libs java.lang (process) Use posix_spawn, not fork, on S10 to avoid swap exhaustion
JDK-8020191 core-libs java.lang System.getProperty( " os.name " ) returns " Windows NT (unknown) " on Windows 8.1
JDK-8030822 core-libs java.time (tz) Support tzdata2013i
JDK-8019853 core-libs java.util.logging Break logging and AWT circular dependency
JDK-8026474 deploy deployment_toolkit deployJava.js versioncheck doesn't work in IE11
JDK-8028691 deploy plugin loading browser proxy via config script should not trigger JAR download
JDK-8029649 deploy plugin Reduce dialog frequency when app is run multiple times
JDK-8033705 deploy plugin Array out of bounds exception in PluginMain.performSSVValidation
JDK-8033779 deploy plugin JRE 7u51 Plugin Failing to Run Older JRE Version < 1.6.0
JDK-8029922 deploy webstart 32-bit only Java Web Start apps fail to run on 32- and 64-bit JRE configs
JDK-8031579 deploy webstart Spurious Missing Manifest Permissions Attribute Warning When Launching versioned Java Web Start app
JDK-8024830 hotspot compiler SEGV in org.apache.lucene.codecs.compressing.CompressingTermVectorsReader.get
JDK-8035618 other-libs corba:rmi-iiop Four api/org_omg/CORBA TCK tests fail under plugin only

(ryoon)

2014-05-02 10:07:06 UTC MAIN commitmail json YAML

Rename of shared_ptr is not required now.

(obache)

2014-05-02 07:28:10 UTC MAIN commitmail json YAML

Updated devel/boehm-gc to 7.4.0nb2

(wiz)

2014-05-02 07:28:00 UTC MAIN commitmail json YAML

Revert previous: thread option only enabled by default on Darwin again
PR 41893.

(wiz)

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

Updated x11/mlterm to 3.3.5

(tsutsui)

2014-05-02 05:09:29 UTC MAIN commitmail json YAML

Update mlterm to 3.3.5.

pkgsrc changes:
- remove post-3.3.4 fix patches
- pull post-3.3.5 bug fixes

Changes from doc/en/ReleaseNote:

* Support Animation GIF on "show_picture" of OSC 5379.
  (It works with https://bitbucket.org/arakiken/w3m/get/remoteimg.tar.gz)
* Add "add_frame" to OSC 5379.
* Bug fixes:
  Fix compiler error on NetBSD/OpenBSD framebuffer. (enbugged at 3.3.4)
  Fix the bug which sometimes disabled to show large sixel graphics sequence.
  (enbugged at 3.3.4)
  Output ^? instead of ^H on TERM=xterm by default in pressing backspace key.
  Fix the bug which sometimes left X11 events untouched for a while.
  Fix the bug of closing the input method window unexpectedly in pressing it.
  ":Percentage" after font names in ~/.mlterm/aafont works on cairo.

(tsutsui)

2014-05-02 02:29:39 UTC MAIN commitmail json YAML

Use BUILTIN_FIND_HEADERS to detect builtin one other than /usr/include.

(obache)

2014-05-01 22:32:24 UTC pkgsrc-2014Q1 commitmail json YAML

Pullup tickets #4393, #4394 and #4395.

(tron)

2014-05-01 22:32:04 UTC pkgsrc-2014Q1 commitmail json YAML

Pullup ticket #4395 - requested by gdt
archivers/libarchive: build fix

Revisions pulled up:
- archivers/libarchive/files/libarchive/archive_read_support_format_iso9660.c 1.5

---
  Module Name:    pkgsrc
  Committed By:  adam
  Date:          Mon Apr  7 18:40:05 UTC 2014

  Modified Files:
          pkgsrc/archivers/libarchive/files/libarchive:
              archive_read_support_format_iso9660.c

  Log Message:
  Non-void function must return a value

(tron)

2014-05-01 22:24:01 UTC pkgsrc-2014Q1 commitmail json YAML

Pullup ticket #4394 - requested by wen
www/mediawiki: security update

Revisions pulled up:
- www/mediawiki/Makefile                                        1.39
- www/mediawiki/distinfo                                        1.28

---
  Module Name:    pkgsrc
  Committed By:  wen
  Date:          Thu May  1 16:10:05 UTC 2014

  Modified Files:
          pkgsrc/www/mediawiki: Makefile distinfo

  Log Message:
  Update to 1.22.6

  Upstream changes:
  MediaWiki 1.22.6[edit | edit source]
  This is a security release of the MediaWiki 1.22 branch.

  Changes since 1.22.5[edit | edit source]
  (bug 63251) SECURITY: Escape sortKey in pageInfo.
  MediaWiki 1.22.5[edit | edit source]
  This is a security and maintenance release of the MediaWiki 1.22 branch.

  Changes since 1.22.4[edit | edit source]
  (bug 62497) SECURITY: Add CSRF token on Special:ChangePassword.
  (bug 62467) Set a title for the context during import on the cli.
  Fix custom local MediaWiki:Helppage values.
  mediawiki.js: Fix documentation breakage.
  (bug 58153) Make MySQLi work with non standard port.
  (bug 53887) Reintroduced a link to help pages in the default sidebar,
  that any sysop can customize by editing MediaWiki:Sidebar locally. The
  link now points to a mediawiki.org page which is guaranteed to exist.
  Nothing needs to be done on your end, but remember to adjust
  MediaWiki:Sidebar for the needs of your wikis. Everyone can help with
  the shared documentation by translating:
  https://www.mediawiki.org/wiki/Special:Translate/agg-Help_pages .
  (bug 53888) Corrected a regression in 1.22 which introduced red links
  on the login page. If you previously installed 1.22.x and have created
  a local page to make the red link blue, write its title as in
  MediaWiki:helplogin-url if you didn't already. Otherwise, you don't
  need to do anything, but you can translate the help page at
  https://www.mediawiki.org/wiki/Help:Logging_in

(tron)

2014-05-01 22:18:24 UTC pkgsrc-2014Q1 commitmail json YAML

Pullup ticket #4393 - requested by ryoon
lang/sun-jdk7: security update
lang/sun-jre7: security update

Revisions pulled up:
- lang/sun-jdk7/distinfo                                        1.15
- lang/sun-jre7/Makefile.common                                1.6
- lang/sun-jre7/distinfo                                        1.17

---
  Module Name: pkgsrc
  Committed By: ryoon
  Date: Wed Apr 30 23:12:48 UTC 2014

  Modified Files:
  pkgsrc/lang/sun-jdk7: distinfo
  pkgsrc/lang/sun-jre7: Makefile.common distinfo

  Log Message:
  Update to 7.0.55

  Changelog:
  JavaFX Release Notes
  JavaFX is now part of JDK. JDK 7u55 release includes JavaFX version 2.2.55.

  New Features and Changes
  The frequency of some security dialogs has been reduced on systems that run the same RIA multiple times.
  See 8029649.

  Using "*" in Caller-Allowable-Codebase Attribute.

  If a stand-alone asterisk (*), or asterisk as part of a top level domain such as (*.org), is specified as the value for the Caller-Allowable-Codebase attribute, then calls from JavaScript code to the RIA will show a security warning. An option to remember the choice is also provided, and if the user selects the option to remember the choice to run the RIA, no further warning messages are shown for the same RIA, when run with JavaScript from the same source.

  For more information, see JAR File Manifest Attributes for Security documentation.

  See 8033707.

  Disabling Sponsor Offers in the Java Installer

  During the installation of Java, users may be presented with the option of downloading and installing sponsor offers, such as browser add-ons, or security software. With 7u55 and later releases of Java, sponsor offers can be bypassed entirely by using "SPONSORS=0" as an option, when installing Java via the command line:

      Manually download the 32bit online installer for 7u55 to your local machine.
      Click the Windows Start Button/Menu. From the available Menu choices, select the 'Search box' and enter the text "command" in it.
      A list of matches will appear. Select  'Command Prompt' from the available Programs list.
      Navigate to the folder containing the downloaded installer, e.g.:
      cd c:\Users\<username>\Downloads
      To start the installation, in the Command Prompt window type:
      jre-7u55-windows-i586-iftw.exe SPONSORS=0

  The option to disable sponsors will persist across all future updates and re-installs of Java.

  Note that sponsor offers, and therefore this functionality, is only applicable to online 32bit JRE installers and Auto Update mechanisms for the Windows operating system.

  Bug Fixes
  Bug Id  Category Sub-Category Description
  JDK-7190349 client-libs 2d [macosx] Text (Label) is incorrectly drawn with a rotated g2d
  JDK-8013569 client-libs 2d [macosx] JLabel preferred size incorrect on retina displays with non-default font size
  JDK-6571600 client-libs java.awt JNI use results in UnsatisfiedLinkError looking for libmawt.so
  JDK-8025588 client-libs java.awt [macosx] Frozen AppKit thread in 7u40
  JDK-5049299 core-libs java.lang (process) Use posix_spawn, not fork, on S10 to avoid swap exhaustion
  JDK-8020191 core-libs java.lang System.getProperty( " os.name " ) returns " Windows NT (unknown) " on Windows 8.1
  JDK-8030822 core-libs java.time (tz) Support tzdata2013i
  JDK-8019853 core-libs java.util.logging Break logging and AWT circular dependency
  JDK-8026474 deploy deployment_toolkit deployJava.js versioncheck doesn't work in IE11
  JDK-8028691 deploy plugin loading browser proxy via config script should not trigger JAR download
  JDK-8029649 deploy plugin Reduce dialog frequency when app is run multiple times
  JDK-8033705 deploy plugin Array out of bounds exception in PluginMain.performSSVValidation
  JDK-8033779 deploy plugin JRE 7u51 Plugin Failing to Run Older JRE Version < 1.6.0
  JDK-8029922 deploy webstart 32-bit only Java Web Start apps fail to run on 32- and 64-bit JRE configs
  JDK-8031579 deploy webstart Spurious Missing Manifest Permissions Attribute Warning When Launching versioned Java Web Start app
  JDK-8024830 hotspot compiler SEGV in org.apache.lucene.codecs.compressing.CompressingTermVectorsReader.get
  JDK-8035618 other-libs corba:rmi-iiop Four api/org_omg/CORBA TCK tests fail under plugin only

(tron)

2014-05-01 21:05:17 UTC MAIN commitmail json YAML

Updated misc/libreoffice4 to 4.2.3.3nb1

(ryoon)

2014-05-01 21:04:31 UTC MAIN commitmail json YAML

2014-05-01 16:11:39 UTC MAIN commitmail json YAML

Updated www/mediawiki to 1.22.6

(wen)

2014-05-01 16:10:05 UTC MAIN commitmail json YAML

Update to 1.22.6

Upstream changes:
MediaWiki 1.22.6[edit | edit source]
This is a security release of the MediaWiki 1.22 branch.

Changes since 1.22.5[edit | edit source]
(bug 63251) SECURITY: Escape sortKey in pageInfo.
MediaWiki 1.22.5[edit | edit source]
This is a security and maintenance release of the MediaWiki 1.22 branch.

Changes since 1.22.4[edit | edit source]
(bug 62497) SECURITY: Add CSRF token on Special:ChangePassword.
(bug 62467) Set a title for the context during import on the cli.
Fix custom local MediaWiki:Helppage values.
mediawiki.js: Fix documentation breakage.
(bug 58153) Make MySQLi work with non standard port.
(bug 53887) Reintroduced a link to help pages in the default sidebar, that any sysop can customize by editing MediaWiki:Sidebar locally. The link now points to a mediawiki.org page which is guaranteed to exist. Nothing needs to be done on your end, but remember to adjust MediaWiki:Sidebar for the needs of your wikis. Everyone can help with the shared documentation by translating: https://www.mediawiki.org/wiki/Special:Translate/agg-Help_pages .
(bug 53888) Corrected a regression in 1.22 which introduced red links on the login page. If you previously installed 1.22.x and have created a local page to make the red link blue, write its title as in MediaWiki:helplogin-url if you didn't already. Otherwise, you don't need to do anything, but you can translate the help page at https://www.mediawiki.org/wiki/Help:Logging_in

(wen)

2014-05-01 15:53:27 UTC MAIN commitmail json YAML

Note update of lang/php55 package to 5.5.12.

(taca)

2014-05-01 15:52:33 UTC MAIN commitmail json YAML

Update php55 to 5.5.12.

01 May 2014, PHP 5.5.12
- Core:
  . Fixed bug #61019 (Out of memory on command stream_get_contents). (Mike)
  . Fixed bug #64330 (stream_socket_server() creates wrong Abstract Namespace
    UNIX sockets). (Mike)
  . Fixed bug #66182 (exit in stream filter produces segfault). (Mike)
  . Fixed bug #66736 (fpassthru broken). (Mike)
  . Fixed bug #67024 (getimagesize should recognize BMP files with negative
    height). (Gabor Buella)
  . Fixed bug #67043 (substr_compare broke by previous change) (Tjerk)

- cURL:
  . Fixed bug #66562 (curl_exec returns differently than curl_multi_getcontent).
    (Freek Lijten)

- Date:
  . Fixed bug #66721 (__wakeup of DateTime segfaults when invalid object data is
    supplied). (Boro Sitnikovski)

- Embed:
  . Fixed bug #65715 (php5embed.lib isn't provided anymore). (Anatol).

- Fileinfo:
  . Fixed bug #66987 (Memory corruption in fileinfo ext / bigendian).
    (Remi)

- FPM:
  . Fixed bug #66482 (unknown entry 'priority' in php-fpm.conf).
  . Fixed bug #67060 (possible privilege escalation due to insecure default configuration). (CVE-2014-0185) (christian at hoffie dot info)

- JSON:
  . Fixed bug #66021 (Blank line inside empty array/object when
    JSON_PRETTY_PRINT is set). (Kevin Israel)

- LDAP:
  . Fixed issue with null bytes in LDAP bindings. (Matthew Daley)

- mysqli:
  . Fixed problem in mysqli_commit()/mysqli_rollback() with second parameter
    (extra comma) and third parameters (lack of escaping). (Andrey)

- OpenSSL:
  . Fix bug #66942 (memory leak in openssl_seal()). (Chuan Ma)
  . Fix bug #66952 (memory leak in openssl_open()). (Chuan Ma)

- SimpleXML:
  . Fixed bug #66084 (simplexml_load_string() mangles empty node name)
    (Anatol)

- SQLite:
  . Fixed bug #66967 (Updated bundled libsqlite to 3.8.4.3). (Anatol)

- XSL:
  . Fixed bug #53965 (<xsl:include> cannot find files with relative paths
    when loaded with "file://"). (Anatol)

- Apache2 Handler SAPI:
  . Fixed Apache log issue caused by APR's lack of support for %zu
    (APR issue https://issues.apache.org/bugzilla/show_bug.cgi?id=56120).
    (Jeff Trawick)

(taca)

2014-05-01 15:07:31 UTC MAIN commitmail json YAML

Note that this program is no longer maintained upstream as Free
software and point to memtestplus.

Note the presence of 4.0s on the FreeBSD distfiles site.

(gdt)

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

Updated www/p5-Dancer2 to 0.140001

(wen)

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

Update to 0.140001

Upstream changes:
0.140001  2014-05-01 10:49:25CEST+0200 Europe/Amsterdam

    [ BUG FIXES ]
    * Bugfix for extracting multiple cookies within a request.
      (Cymon, Russell Jenkins)
    * Require minimum version of Plack to make sure we can add the Head
      middleware. Not exactly a bug, but not a feature. (Sawyer X)

    [ DOCUMENTATION ]
    * Correct reference to HTTP::Server::Simple::PSGI. (Russell Jenkins)

0.140000  2014-04-28 23:14:31CEST+0200 Europe/Amsterdam

    [ ENHANCEMENTS ]
    * Replace Config role with better ConfigReader role.
      (Mickey Nasriachi, Stefan Hornburg, Sawyer X)
    * Move App-related attributes (engines) to App instead of config role.
      (Mickey Nasriachi, Stefan Hornburg, Sawyer X)
    * Untangle Runner-Server (removing Server entirely).
      (Mickey Nasriachi, Stefan Hornburg, Sawyer X)
    * Replace HTTP::Server::Simple::PSGI with HTTP::Server::PSGI.
      (Mickey Nasriachi, Stefan Hornburg, Sawyer X)
    * GH #527: Build request cookie objects from request headers, not env.
      (Russell Jenkins)
    * GH #569: Transform cookie using the HTTP_COOKIE header, per PSGI spec.
      (Russell Jenkins)
    * GH #559, #544: Use Plack middleware for HEAD request content removal.
      (Russell Jenkins)
    * GH #513, #483: Deserialize body content for DELETE requests.
      (Russell Jenkins, Yanick Champoux, Sawyer X)

0.13      2014-04-13 19:19:44CEST+0200 Europe/Amsterdam

    [ ENHANCEMENTS ]
    * GH #562: Change YAML::Any to YAML (Steven Humphrey, Russell Jenkins).

    [ BUG FIXES ]
    * GH #524: Double encoding for YAML sessions.
    * GH #557: Switch to using YAML::Old.
    * GH #548: Deserializer test failure.

(wen)

2014-05-01 12:51:06 UTC MAIN commitmail json YAML

Remove hack that only worked when building as root.

(wiz)

2014-05-01 12:50:50 UTC MAIN commitmail json YAML

Updated x11/qt5-dbus to 5.2.1nb1

(wiz)

2014-05-01 12:50:39 UTC MAIN commitmail json YAML

This is an ugly hack:

qdbuscpp2xml and qdbusxml2cpp should be built and installed, because
they are referenced from Qt5DBusConfigExtras.cmake, and cmake
fails to find qtdbus if they are not installed.
I didn't manage to build them though, and the only customers so far
didn't need their functionality - so install scripts that call 'false'.

Bump PKGREVISION.

Please fix properly :)

(wiz)

2014-05-01 12:45:09 UTC MAIN commitmail json YAML

Fix broken print-PLIST with gem based packages.

(taca)

2014-05-01 12:44:19 UTC MAIN commitmail json YAML

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

Fix non-native packaging, for example under NetBSD
Pointed out by wiz@, thank you.

(ryoon)

2014-05-01 10:28:30 UTC MAIN commitmail json YAML

2014-05-01 09:55:19 UTC MAIN commitmail json YAML

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

2014-05-01 09:42:43 UTC MAIN commitmail json YAML

2014-05-01 09:19:35 UTC MAIN commitmail json YAML

2014-05-01 09:00:27 UTC MAIN commitmail json YAML

devel/gps: Fix missing rpath on gnatinspect which fails dev checks

I also verified that devel/gps does build on NetBSD 6.99, but not
NetBSD 6.1, so the NOT_FOR_PLATFORM is currently correct.

(marino)

2014-05-01 07:48:51 UTC MAIN commitmail json YAML

2014-05-01 04:11:01 UTC MAIN commitmail json YAML

reapply lost patch:
'cups' option needs to ensure BUILD_TARGET 'cups' is added.
configure adjusted to correctly accept CUPSVERSION and, while we're at it,
add missing space between '!' and parens in test for contrib directory.

(richard)

2014-05-01 04:08:59 UTC MAIN commitmail json YAML

Updated www/firefox-l10n to 29.0

(ryoon)

2014-05-01 04:08:09 UTC MAIN commitmail json YAML

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

Fix packaging under CentOS/x86_64 6.5

(ryoon)

2014-05-01 00:32:49 UTC MAIN commitmail json YAML

Updated misc/libreoffice4 to 4.2.3.3

(ryoon)

2014-05-01 00:32:11 UTC MAIN commitmail json YAML

2014-04-30 23:43:22 UTC MAIN commitmail json YAML

Added audio/libgroove version 3.1.1

(wiz)

2014-04-30 23:43:05 UTC MAIN commitmail json YAML

2014-04-30 23:42:52 UTC MAIN commitmail json YAML

Import libgroove-3.1.1 as audio/libgroove.

Audio dispatching library. Generic sink-based interface. Provides
decoding, encoding, resampling, and gain adjustment. Perfect for
the backend of a music player.

(wiz)

2014-04-30 23:14:06 UTC MAIN commitmail json YAML

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

(ryoon)

2014-04-30 23:12:48 UTC MAIN commitmail json YAML

Update to 7.0.55

Changelog:
JavaFX Release Notes
JavaFX is now part of JDK. JDK 7u55 release includes JavaFX version 2.2.55.

New Features and Changes
The frequency of some security dialogs has been reduced on systems that run the same RIA multiple times.
See 8029649.

Using "*" in Caller-Allowable-Codebase Attribute.

If a stand-alone asterisk (*), or asterisk as part of a top level domain such as (*.org), is specified as the value for the Caller-Allowable-Codebase attribute, then calls from JavaScript code to the RIA will show a security warning. An option to remember the choice is also provided, and if the user selects the option to remember the choice to run the RIA, no further warning messages are shown for the same RIA, when run with JavaScript from the same source.

For more information, see JAR File Manifest Attributes for Security documentation.

See 8033707.

Disabling Sponsor Offers in the Java Installer

During the installation of Java, users may be presented with the option of downloading and installing sponsor offers, such as browser add-ons, or security software. With 7u55 and later releases of Java, sponsor offers can be bypassed entirely by using "SPONSORS=0" as an option, when installing Java via the command line:

    Manually download the 32bit online installer for 7u55 to your local machine.
    Click the Windows Start Button/Menu. From the available Menu choices, select the 'Search box' and enter the text "command" in it.
    A list of matches will appear. Select  'Command Prompt' from the available Programs list.
    Navigate to the folder containing the downloaded installer, e.g.:
    cd c:\Users\<username>\Downloads
    To start the installation, in the Command Prompt window type:
    jre-7u55-windows-i586-iftw.exe SPONSORS=0

The option to disable sponsors will persist across all future updates and re-installs of Java.

Note that sponsor offers, and therefore this functionality, is only applicable to online 32bit JRE installers and Auto Update mechanisms for the Windows operating system.

Bug Fixes
Bug Id  Category Sub-Category Description
JDK-7190349 client-libs 2d [macosx] Text (Label) is incorrectly drawn with a rotated g2d
JDK-8013569 client-libs 2d [macosx] JLabel preferred size incorrect on retina displays with non-default font size
JDK-6571600 client-libs java.awt JNI use results in UnsatisfiedLinkError looking for libmawt.so
JDK-8025588 client-libs java.awt [macosx] Frozen AppKit thread in 7u40
JDK-5049299 core-libs java.lang (process) Use posix_spawn, not fork, on S10 to avoid swap exhaustion
JDK-8020191 core-libs java.lang System.getProperty( " os.name " ) returns " Windows NT (unknown) " on Windows 8.1
JDK-8030822 core-libs java.time (tz) Support tzdata2013i
JDK-8019853 core-libs java.util.logging Break logging and AWT circular dependency
JDK-8026474 deploy deployment_toolkit deployJava.js versioncheck doesn't work in IE11
JDK-8028691 deploy plugin loading browser proxy via config script should not trigger JAR download
JDK-8029649 deploy plugin Reduce dialog frequency when app is run multiple times
JDK-8033705 deploy plugin Array out of bounds exception in PluginMain.performSSVValidation
JDK-8033779 deploy plugin JRE 7u51 Plugin Failing to Run Older JRE Version < 1.6.0
JDK-8029922 deploy webstart 32-bit only Java Web Start apps fail to run on 32- and 64-bit JRE configs
JDK-8031579 deploy webstart Spurious Missing Manifest Permissions Attribute Warning When Launching versioned Java Web Start app
JDK-8024830 hotspot compiler SEGV in org.apache.lucene.codecs.compressing.CompressingTermVectorsReader.get
JDK-8035618 other-libs corba:rmi-iiop Four api/org_omg/CORBA TCK tests fail under plugin only

(ryoon)

2014-04-30 22:52:36 UTC pkgsrc-2014Q1 commitmail json YAML

2014-04-30 22:52:24 UTC pkgsrc-2014Q1 commitmail json YAML

Pullup ticket #4392 - requested by obache
multimedia/adobe-flash-plugin11: security update

Revisions pulled up:
- multimedia/adobe-flash-plugin11/Makefile                      1.28
- multimedia/adobe-flash-plugin11/distinfo                      1.26

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Wed Apr 30 01:33:41 UTC 2014

  Modified Files:
  pkgsrc/multimedia/adobe-flash-plugin11: Makefile distinfo

  Log Message:
  Update adobe-flash-plugin11 to 11.2.202.356 for APSB14-13.

(tron)

2014-04-30 22:40:50 UTC MAIN commitmail json YAML

+ bluefish-2.2.6, kde4-4.12.5, openoffice-4.1, varnish-4.0.

(wiz)

2014-04-30 21:40:30 UTC MAIN commitmail json YAML

Updated wm/i3 to 4.7.2

(degroote)

2014-04-30 21:38:37 UTC MAIN commitmail json YAML

Upgrade i3 to 4.7.2

Changes since 4.6

v 4.7.2

  • install i3-with-shmlog.xsession.desktop to the correct location
  • OpenBSD currently lacks posix_fallocate()

v 4.7.1

  • docs/debugging: explain how to enable logging on the fly
  • docs/debugging: small cleanups (versions, bzip2)
  • add i3-with-shmlog.xsession.desktop

  • only LOG() the DPI when it changes, DLOG() it otherwise
  • make “move <direction>” properly send workspace focus event
  • i3bar: set mapped flag on trayclient creation
  • i3bar: don’t show EOF status line error in favor of exit code

v 4.7.0

  • docs/userguide: clarify variable parsing
  • docs/userguide: clarify urgent_workspace
  • docs/userguide: add proper quoting for rename sample command
  • docs/userguide: clarify multiple criteria
  • docs/userguide: userguide: explain the difference between comma and semicolon for command chaining
  • docs/hacking-howto: update to reflect parser changes
  • man/i3-dump-log: document -f
  • switch from libXcursor to xcb-util-cursor
  • Respect workspace numbers when looking for a free workspace name
  • Revert "raise fullscreen windows on top of all other X11 windows"
  • i3bar: Create pixmaps using the real bar height, rather than screen height
  • Add scratchpad bindings to the default config
  • Close all children when closing a workspace
  • i3bar: Add new bar.binding_mode_indicator configuration
  • Improve error message when $XDG_RUNTIME_DIR is not writable
  • libi3/font: Draw the text at the expected place
  • libi3/font: Set DPI for the pango context
  • Add ability to escape out of a mouse-resize operation
  • Do not resize/reposition floating containers when moving them to scratchpad
  • i3-nagbar: Set button inner-width to the width of the label
  • Assigned windows open urgent when not visible
  • i3bar: Only configure tray on own outputs
  • Command 'move <direction>' moves across outputs
  • i3bar: Handle DestroyNotify events
  • i3bar: Realign tray clients on map/unmap notify
  • i3bar: Group child processes for signalling
  • i3bar: Print error message when status_command fails
  • Remove references to PATH_MAX macro for GNU/Hurd

  • update root geometry on output changes for “fullscreen global”
  • don’t flatten tabbed/stacked containers
  • Fix handling of new windows with WM_STATE_FULLSCREEN
  • correctly recognize assigned windows as urgent
  • Fix keyboard and mouse resize in nested containers
  • Reply to _NET_REQUEST_FRAME_EXTENTS correctly
  • Fix command parser: resizing tiling windows
  • Fix output retrieval for floating cons
  • Use _PATH_BSHELL to ensure using a bourne shell
  • Instead of crashing, return DRAG_ABORT on UnmapNotify from drag_pointer
  • Remove-child callback skips output content cons
  • ignore _NET_ACTIVE_WINDOW for scratchpad windows

(degroote)