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

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

2018-01-22 16:11:29 UTC MAIN commitmail json YAML

www/contao35: update to 3.5.33

Contao 3.5.33 is available 2018/01/22 10:08 by Leo Feyer

Contao version 3.5.33 is available.  The bugfix release restores the PHP 5.4
compatibility and fixes problems with MariaDB 10.2.4+ and MySQL 8.

PHP 5.4

Even if Contao 3.5 still supports PHP 5.4, we strongly advise against using
outdated PHP versions.  Contao 3.5 is compatible with the latest PHP versions,
therefore – if the installed extensions allow it – you should run it with PHP
7 or at least PHP 5.6.

Identifier Quoting

We have revised identifier quoting, which we had added to Contao 4.4.10, and
ported it to Contao 3, so Contao 3.5 should be compatible with MariaDB 10.2.4+
and MySQL 8 now.

(taca)

2018-01-22 15:57:16 UTC MAIN commitmail json YAML

net/nagios-nrpe: Change SMF now that process switches to
non-privileged user on its own. Fixes joyent/pkgsrc#72.

(fhajny)

2018-01-22 15:50:37 UTC MAIN commitmail json YAML

mail/clamsmtp: Add SMF support. Make sure $CLAMAV_USER exists,
since it's referenced in init scripts. Bump PKGREVISION.

(fhajny)

2018-01-22 15:00:03 UTC MAIN commitmail json YAML

doc: Updated lang/elixir to 1.6.0

(fhajny)

2018-01-22 14:59:53 UTC MAIN commitmail json YAML

Update lang/elixir to 1.6.0.

1. Enhancements

EEx
- [EEx] Allow markers `/` and `|` to be used in a custom EEx engine

Elixir
- [Calendar] Add truncate to `Time`, `DateTime` and `NaiveDateTime` to
  facilitate microsecond precision pruning
- [Code] Add `format_string!/2` and `format_file!/2` for automatic
  code formatting
- [Code] Support column annotations in quoted expressions with
  `columns: true` in `Code.string_to_quoted/2`
- [DynamicSupervisor] Add `DynamicSupervisor` designed to manage
  children that are added and removed dynamically
- [Exception] Make `Exception.blame/3` extensible by adding an
  optional `blame/2` callback to exceptions
- [Exception] Improve the printing of guards on blamed exceptions
- [Enumerable] Add `Enumerable.slice/1` and optimize many `Enum`
  operations with the new protocol. This allows data-structures with
  index-based random access to provide a non-linear implementation
- [Inspect] Show UTF-8 BOM on inspected strings
- [Inspect.Algebra] Add `:strict` and `:flex` breaks - this gives more
  control over the document fitting
- [Inspect.Algebra] Allow a group to inherit the parent group break
- [Inspect.Algebra] Add `force_unfit/1` and `next_break_fits/2` which
  give more control over document fitting
- [Inspect.Algebra] Add `collapse_lines/1` for collapsing multiple
  lines to a maximum value
- [Inspect.Algebra] Allow `nest/2` to be `:reset` or be set to the
  current `:cursor` position
- [Kernel] Prefix variables with V when emitting Erlang code. This
  improves the integration with tools such as Erlang code formatters
  and the GUI debugger
- [Kernel] Warn on the use of `length(x) == 0` in guards
- [Kernel] Warn if `catch` comes before `rescue` in try
- [Kernel] Warn if heredoc is outdented compared to its closing quotes
- [Kernel] Add `defguard/1` and `defguardp/1` to make it easier to
  build guard-safe macros
- [Kernel.ParallelCompiler] Add `compile/2`, `compile_to_path/3` and
  `require/2` which provide detailed information about warnings and
  errors
- [Kernel.SpecialForms] Support the `uniq: true` flag in `for`
  comprehensions
- [Module] Introduce `@deprecated` and `@since` attributes
- [Module] Emit conflicting behaviour warnings if the same behaviour
  is given more than once
- [List] Rearrange equals and inserts for shorter diff scripts in
  `List.myers_difference/2`
- [Record] Allow `:macros` and `:includes` to be given to
  `Record.extract/2`
- [Stream] Add `Stream.intersperse/2`
- [String] Update to Unicode 10
- [String] Allow passing empty string `match` to `String.replace/4`
- [String] Support context and language sensitive operations in
  `String.upcase/2` and `String.downcase/2`. Currently only the
  `:greek` context is supported
- [String] Support `:ascii` conversion in `String.upcase/2` and
  `String.downcase/2`
- [Time] Add `Time.add/3`

ExUnit
- [ExUnit.Assertions] Perform inclusive checks in `assert_in_delta`
- [ExUnit.Callbacks] Add `ExUnit.Callbacks.start_supervised!/2`
- [ExUnit.Case] Generate a random seed per test based on the test
  suite seed

IEx
- [IEx.Autocomplete] Provide contextual autocompletion: `t Enum.` will
  autocomplete types, `b Enum` will autocomplete callbacks
- [IEx.CLI] Provide hints for developers when a bad host name is given
  to `--remsh`
- [IEx.Helpers] Automatically include specs when showing documentation
  for functions/macros
- [IEx.Helpers] Improve formatting of behaviours and typespecs by
  using the formatter
- [IEx.Helpers] Allow pattern matching and guard expressions when on
  `IEx.break!`

Logger
- [Logger] Add `:discard_threshold` to Logger to help with message
  queue overflow

Mix
- [mix app.start] Add `--preload-modules` to `mix app.start`
- [mix archive.build] Allow `mix archive.build` to bundle dot files
  via an option
- [mix compile] Define a behavior for Mix compiler tasks and return
  diagnostics from compiler tasks
- [mix compile] Track struct dependencies between files and recompile
  them only if the struct changes
- [mix deps] Support `:system_env` option when specifying dependencies
- [mix format] Add a `mix format` task that formats the given files
  (or the files specified in a `.formatter.exs` file)
- [mix profile.eprof] Add a new task for time-based profiling with
  eprof
- [mix test] Run all functions in a describe block by giving the
  `file:line` the describe block starts
- [mix test] Report the top N slowest tests with the `--slowest N`
  flag
- [mix test] Report the number of doctests and tests separately
- [mix xref] Support `--include-siblings` in reports for umbrella
  support
- [mix xref] Add `mix xref graph --format stats`
- [mix xref] Add `--only-nodes` and `--label` filters to mix xref
  graph
- [mix xref] Add `mix xref deprecated` that shows the callsite of
  deprecated functions

2. Bug fixes

Elixir
- [CLI] Support path with spaces as argument to elixir.bat
- [Inspect] Properly handle minus signal for non-decimal negative
  integers
- [Integer] Do not raise on non-integer values in `is_odd`/`is_even`
- [Kernel] Solve a precedence issue between `&` and `|`, such as
  `[&Foo.bar/1 | &Baz.bat/2]`
- [Kernel] Do not load dynamic Elixir modules as `:in_memory` as this
  value is not officially supported by the code server. Instead, use
  an empty list, which is the same value used by Erlang.
- [Kernel] Validate variable struct name is atom when used in pattern
  matching
- [Macro] Fix `Macro.to_string/2` for tuple calls, such as `alias
  Foo.{Bar, Baz}`
- [MapSet] Return valid MapSet when unioning a legacy MapSet
- [Regex] Return a leading empty space when splitting on empty
  pattern. This makes the `split` operation consistent with the other
  operations in the `Regex` module
- [Stream] Ensure `Stream.chunk_while/4` does not emit more elements
  than necessary when halted
- [String] Return a leading empty space when splitting on empty
  string. This makes the `split` operation consistent with the other
  operations in the `String` module
- [URI] Preserve empty fragments in `URI.parse/1`

Mix
- [mix app.start] Improve the quality of reports if app fails to boot
- [mix cmd] Allow `mix cmd` to be invoked multiple times without
  marking it as executed
- [mix deps] Ensure optional dependencies in umbrella applications are
  loaded
- [mix deps.update] Ensure transitive new non-Hex dependencies are
  also fetched when a repo is updated
- [mix xref] Take compile dependencies with higher priority than
  runtime ones when building a graph
- [mix xref] Handle external files for xref callers and warnings

3. Soft deprecations (no warnings emitted)

Elixir
- [Inspect.Algebra] `surround/3` and `surround_many/6` are deprecated
  in favor of `container_doc/6`
- [Kernel.ParallelCompiler] `files/2` and `files_to_path/3` are
  deprecated in favor of `compile/2` and `compile_to_path/3`
- [Kernel.ParallelRequire] `files/2` is deprecated in favor of
  `Kernel.ParallelCompiler.require/2`
- [GenServer] Warn if `init/1` is not defined in `GenServer`. This
  brings GenServer closer to the implementation in OTP and aligns all
  behaviours to require the `init/1` callback

ExUnit
- [ExUnit.Formatter] `:case_started` and `:case_finished` events are
  deprecated in favor of `:module_started` and `:module_finished`

4. Deprecations

Elixir
- [Enum] `Enum.partition/2` is deprecated in favor of
  `Enum.split_with/2`
- [Keyword] `Keyword.replace/3` is deprecated in favor of
  `Keyword.fetch/2` and `Keyword.put/3`
- [Map] `Map.replace/3` is deprecated in favor of `Map.fetch/2` and
  `Map.put/3`
- [Macro] `Macro.unescape_tokens/1` and `Macro.unescape_tokens/2` are
  deprecated in favor of `Enum.map/2`
- [Range] Deprecate `Range.range?/1` in favor of pattern matching on
  `_ .. _`

(fhajny)

2018-01-22 14:18:29 UTC MAIN commitmail json YAML

Updated devel/git

(adam)

2018-01-22 14:18:11 UTC MAIN commitmail json YAML

Updated devel/git

(adam)

2018-01-22 14:17:25 UTC MAIN commitmail json YAML

git: updated to 2.16.0

Git 2.16 Release Notes
Backward compatibility notes and other notable changes.
* Use of an empty string as a pathspec element that is used for
  'everything matches' is now an error.

Updates since v2.15
UI, Workflows & Features

* An empty string as a pathspec element that means "everything"
  i.e. 'git add ""', is now illegal.  We started this by first
  deprecating and warning a pathspec that has such an element in
  2.11 (Nov 2016).

* A hook script that is set unexecutable is simply ignored.  Git
  notifies when such a file is ignored, unless the message is
  squelched via advice.ignoredHook configuration.

* "git pull" has been taught to accept "--[no-]signoff" option and
  pass it down to "git merge".

* The "--push-option=<string>" option to "git push" now defaults to a
  list of strings configured via push.pushOption variable.

* "gitweb" checks if a directory is searchable with Perl's "-x"
  operator, which can be enhanced by using "filetest 'access'"
  pragma, which now we do.

* "git stash save" has been deprecated in favour of "git stash push".

* The set of paths output from "git status --ignored" was tied
  closely with its "--untracked=<mode>" option, but now it can be
  controlled more flexibly.  Most notably, a directory that is
  ignored because it is listed to be ignored in the ignore/exclude
  mechanism can be handled differently from a directory that ends up
  to be ignored only because all files in it are ignored.

* The remote-helper for talking to MediaWiki has been updated to
  truncate an overlong pagename so that ".mw" suffix can still be
  added.

* The remote-helper for talking to MediaWiki has been updated to
  work with mediawiki namespaces.

* The "--format=..." option "git for-each-ref" takes learned to show
  the name of the 'remote' repository and the ref at the remote side
  that is affected for 'upstream' and 'push' via "%(push:remotename)"
  and friends.

* Doc and message updates to teach users "bisect view" is a synonym
  for "bisect visualize".

* "git bisect run" that did not specify any command to run used to go
  ahead and treated all commits to be tested as 'good'.  This has
  been corrected by making the command error out.

* The SubmittingPatches document has been converted to produce an
  HTML version via AsciiDoc/Asciidoctor.

* We learned to optionally talk to a file system monitor via new
  fsmonitor extension to speed up "git status" and other operations
  that need to see which paths have been modified.  Currently we only
  support "watchman".  See File System Monitor section of
  git-update-index(1) for more detail.

* The "diff" family of commands learned to ignore differences in
  carriage return at the end of line.

* Places that know about "sendemail.to", like documentation and shell
  completion (in contrib/) have been taught about "sendemail.tocmd",
  too.

* "git add --renormalize ." is a new and safer way to record the fact
  that you are correcting the end-of-line convention and other
  "convert_to_git()" glitches in the in-repository data.

* "git branch" and "git checkout -b" are now forbidden from creating
  a branch whose name is "HEAD".

* "git branch --list" learned to show its output through the pager by
  default when the output is going to a terminal, which is controlled
  by the pager.branch configuration variable.  This is similar to a
  recent change to "git tag --list".

* "git grep -W", "git diff -W" and their friends learned a heuristic
  to extend a pre-context beyond the line that matches the "function
  pattern" (aka "diff.*.xfuncname") to include a comment block, if
  exists, that immediately precedes it.

* "git config --expiry-date gc.reflogexpire" can read "2.weeks" from
  the configuration and report it as a timestamp, just like "--int"
  would read "1k" and report 1024, to help consumption by scripts.

* The shell completion (in contrib/) learned that "git pull" can take
  the "--autostash" option.

* The tagnames "git log --decorate" uses to annotate the commits can
  now be limited to subset of available refs with the two additional
  options, --decorate-refs[-exclude]=<pattern>.

* "git grep" compiled with libpcre2 sometimes triggered a segfault,
  which is being fixed.

* "git send-email" tries to see if the sendmail program is available
  in /usr/lib and /usr/sbin; extend the list of locations to be
  checked to also include directories on $PATH.

* "git diff" learned, "--anchored", a variant of the "--patience"
  algorithm, to which the user can specify which 'unique' line to be
  used as anchoring points.

* The way "git worktree add" determines what branch to create from
  where and checkout in the new worktree has been updated a bit.

* Ancient part of codebase still shows dots after an abbreviated
  object name just to show that it is not a full object name, but
  these ellipses are confusing to people who newly discovered Git
  who are used to seeing abbreviated object names and find them
  confusing with the range syntax.

* With a configuration variable rebase.abbreviateCommands set,
  "git rebase -i" produces the todo list with a single-letter
  command names.

* "git worktree add" learned to run the post-checkout hook, just like
  "git checkout" does, after the initial checkout.

* "git svn" has been updated to strip CRs in the commit messages, as
  recent versions of Subversion rejects them.

* "git imap-send" did not correctly quote the folder name when
  making a request to the server, which has been corrected.

* Error messages from "git rebase" have been somewhat cleaned up.

* Git has been taught to support an https:// URL used for http.proxy
  when using recent versions of libcurl.

* "git merge" learned to pay attention to merge.verifySignatures
  configuration variable and pretend as if '--verify-signatures'
  option was given from the command line.

* "git describe" was taught to dig trees deeper to find a
  <commit-ish>:<path> that refers to a given blob object.

(adam)

2018-01-22 13:42:07 UTC MAIN commitmail json YAML

2018-01-22 13:37:46 UTC MAIN commitmail json YAML

doc: Updated security/py-certbot to 0.21.0

(fhajny)

2018-01-22 13:37:25 UTC MAIN commitmail json YAML

Update security/py-{acme,certbot} to 0.21.0.

### Added

- Support for the HTTP-01 challenge type was added to our Apache and Nginx
  plugins.
- IPv6 support was added to the Nginx plugin.
- Support for automatically creating server blocks based on the default server
  block was added to the Nginx plugin.
- The flags --delete-after-revoke and --no-delete-after-revoke were added
  allowing users to control whether the revoke subcommand also deletes the
  certificates it is revoking.

### Changed

- We deprecated support for Python 2.6 and Python 3.3 in Certbot and its ACME
  library.
- We split our implementation of JOSE (Javascript Object Signing and
  Encryption) out of our ACME library and into a separate package named josepy.
- We updated the ciphersuites used in Apache to the new values recommended by
  Mozilla

### Fixed

- An issue with our Apache plugin on Gentoo due to differences in their
  apache2ctl command have been resolved.

(fhajny)

2018-01-22 13:30:21 UTC MAIN commitmail json YAML

doc: Added security/py-josepy version 1.0.1

(fhajny)

2018-01-22 13:30:08 UTC MAIN commitmail json YAML

2018-01-22 13:27:41 UTC MAIN commitmail json YAML

Turn oniguruma support into a (default) option.

(fhajny)

2018-01-22 12:51:09 UTC MAIN commitmail json YAML

doc: Updated graphics/py-mcomix to 1.2.1nb4

(wiz)

2018-01-22 12:50:59 UTC MAIN commitmail json YAML

py-mcomix: switch to py-Pillow.

Bump PKGREVISION.

(wiz)

2018-01-22 12:04:04 UTC MAIN commitmail json YAML

2018-01-22 12:00:02 UTC MAIN commitmail json YAML

2018-01-22 11:58:13 UTC MAIN commitmail json YAML

doc: Updated devel/ocaml-lwt_ssl to 1.1.1

(jaapb)

2018-01-22 11:58:02 UTC MAIN commitmail json YAML

Updated package devel/ocaml-lwt-ssl to version 1.1.1.

This fixes compatibility with OCaml 4.06.

(jaapb)

2018-01-22 11:56:52 UTC MAIN commitmail json YAML

doc: Updated print/qpdfview to 0.4.16nb19

(wiz)

2018-01-22 11:56:41 UTC MAIN commitmail json YAML

qpdfview: fix PLIST after qt5 update.

Noted by abs.

Bump PKGREVISION.

(wiz)

2018-01-22 11:54:43 UTC MAIN commitmail json YAML

Corrected PLIST for lang/coq

(jaapb)

2018-01-22 11:53:32 UTC MAIN commitmail json YAML

doc: Updated devel/ocaml-lwt to 3.2.0

(jaapb)

2018-01-22 11:53:24 UTC MAIN commitmail json YAML

Updated package devel/ocaml-lwt to version 3.2.0.

This release includes several bugfixes and additions. For more details see
the CHANGES file.

(jaapb)

2018-01-22 11:50:33 UTC MAIN commitmail json YAML

doc: Updated devel/js_of_ocaml to 3.0.2

(jaapb)

2018-01-22 11:50:24 UTC MAIN commitmail json YAML

Updated package devel/js_of_ocaml to version 3.0.2.

Changes include compatibility fixes for OCaml 4.05 and 4.06, plus
some other minor features and bugfixes (see the CHANGES file for details)

(jaapb)

2018-01-22 11:43:14 UTC MAIN commitmail json YAML

2018-01-22 11:36:31 UTC MAIN commitmail json YAML

2018-01-22 11:22:50 UTC MAIN commitmail json YAML

doc: Updated devel/ocaml-optcomp to 1.6nb9

(jaapb)

2018-01-22 11:22:40 UTC MAIN commitmail json YAML

Compilation fixes for devel/ocaml-optcomp.

Includes a patch for OCaml 4.06 (from an upstream pull request) and
a call to oasis to regenerate the setup files (which were not compatible
with 4.06 either).

(jaapb)

2018-01-22 11:17:52 UTC MAIN commitmail json YAML

Removed cmxs option from net/ocamlnet.

(This is now correctly detected and does not need an option)

(jaapb)

2018-01-22 11:15:36 UTC MAIN commitmail json YAML

doc: Updated devel/ocaml-findlib to 1.7.3nb3

(jaapb)

2018-01-22 11:14:43 UTC MAIN commitmail json YAML

Patch to devel/ocaml-findlib to not install num library

The num library was split off from ocaml. ocamlfind installs META files
for it if it is detected, but this is not the correct behaviour. This
patch disables detection, which is needed if package updates are to work.

(jaapb)

2018-01-22 11:05:30 UTC MAIN commitmail json YAML

2018-01-22 10:35:45 UTC MAIN commitmail json YAML

unison: fix build with ocaml-4.06

Taken from upstream's v2.48.15v4 release

(wiz)

2018-01-22 10:22:30 UTC MAIN commitmail json YAML

2018-01-22 07:50:40 UTC MAIN commitmail json YAML

Updated devel/p5-Getopt-Long-Descriptive to 0.101

(wen)

2018-01-22 07:49:46 UTC MAIN commitmail json YAML

Update to 0.101

Upstream changes:
0.101    2018-01-21 19:32:11-05:00 America/New_York
        - escape some unescaped braces in regex

(wen)

2018-01-22 07:43:14 UTC MAIN commitmail json YAML

Updated math/R-car to 2.1.6

(wen)

2018-01-22 07:41:38 UTC MAIN commitmail json YAML

Update to 2.1.6
Add missing DEPENDS

Upstream changes:
Changes to Version 2.1-6

  o Made several functions compatible with vcov() in R-devel (3.5.0).

Changes to Version 2.1-5

  o Fixed bug in boot.hist, and made Boot.default more general.  Added a vcov method for boot objects

  o Fixed bug in gamLine with non-dentity links.

  o Removed the skewPower transformation functions, and added bcnPower transformation family. Same transformation, new name, new computational algorithms, improved documentation.

  o Fixed bug (reported by Bruno Hebling Vieira) in print.summary.Anova.mlm() that could cause adjusted p-values to be incorrectly ordered.

Changes to Version 2.1-4

  o The smoother functions loessLine, gamLine and quantregLine used in many car functions now evaluate the smoother at an equally spaced grid of points rather than at the observed values on the horizontal axis of a plot.

  o spreadLevelPlot.lm now accepts point marking as in most other graphical functions in car.

  o Bug fixed in one of the skewPower support functions; thans to Balazs Banfai

  o Added support for lmer objects in power transformations

  o Added support for skewPower family power transformations for lm and lmer objects

  o Added list, data.frame, and matrix methods for Boxplot(), suggestion of Michael Friendly

  o Added adaptiveKernel() density estimator, with option to use it in densityPlot().

Changes to Version 2.1-3

  o Corrected documentation for mcPlots

  o added id.location argument to showLabels to vary location of labels

  o added fix for compatiblity with Rcmdr with missing data in several plotting functions.

  o deltaMethod() now reports confidence intervals.

  o print.summary.Anova.mlm() has new SSP and SSPE arguments to determine whether the corresponding matrices are printed (suggestion of Michael Friendly).

  o summary() and print() methods for Anova.mlm() can now report univariate ANOVAs (suggestion and some code by Michael Friendly).

  o added "value" and "vcov" attributes to objects returned by linearHypothesis() (after suggestions by Liviu Andronic and Steven Yen).

  o compareCoefs() now checks classes of models.

  o small fixes/changes.

Changes to Version 2.1-2

  o Modified scatter3d() so that plots can be embedded in HTML.

Changes to Version 2.1-1

  o influencePlot now returns Cook's distance, not its square root.

  o Anova() now supports "coxme" objects (produced by coxme() in coxme package) (request of Philipp Sprenger).

  o Anova() now works via its default method with "vglm" objects produced by functions in the VGAM package; and the default method of linearHypothesis() again works with these objects (problem reported by Michael Friendly).

  o Fixed Anova.coxph() so that it takes account of method (ties) argument (bug reported by Karl Ove Hufthammer).

  o Improvements to Anova.default() so that a wider variety of model classes are accommodated (following request of Liviu Andronic.)

  o dataEllipse() now throws an error if there are too few colors for the number of groups (fixing bug reported by Ottorino Pantani).

  o spreadLevelPlot.lm() now includes an optional smoother in addition to the fitted straight line (suggestion of Michael Friendly).

  o No longer import methods (as opposed to generics) directly from pbkrtest.

  o Added axis.ticks argument to scatter3d() (code contributed by David Winsemius).

Changes to Version 2.1-0

  o New power family called skewPower has been added that can be used with the Box Cox method with a few negative responses (joint work with Doug Hawkins).  Several functions modified to accomodate two-parameter power families.

  o Fixed bug in Anova() for coxph models with clusters (reported by Jesus Humberto Gomez ), due apparently to a change in coxph().

Changes to Version 2.0-26

  o Anova() F-tests for binomial and Poisson GLMs now changes error.estimate="dispersion" to "pearson" as advertized (bug reported by Will Petry).

  o Improved behavior of above-plot legends in scatterplot().

  o Fixed sp() (bug reported by Cesar Rabak).

  o Conforms to new CRAN requirements for package imports.

Changes to Version 2.0-25

  o Fixed df check in linearHypothesis.default() (bug report by Pierre Chausse).

  o Fixed bug when vcov. argument to Anova() is a function (reported by Liviu Andronic).

  o Now export .carEnv to avoid problem with update() in Boot() (reported by Alan T. Arnholt).

Changes to Version 2.0-24

  o Fixed broken URLs.

  o Changed handling of .carEnv environment.

  o Moved pbkrtest, quantreg, and mgcv from Suggests: to Imports:.

Changes to Version 2.0-23

  o Modified ScatterplotSmoothers to add an 'offset' to the vertical axis of spread smooths.  This is required in the marginal model plot functions.

  o Fixed labels on mcPlot with overlay=FALSE

  o Check for 0 residual df and 0 residual deviance (within rounding) in Anova() and linearHypothesis() (problem reported by Jonathan Love).

  o Fixed model.matrix.lme and model.matrix.gls utility functions, and hence Anova and vif, respectively, to work with models specified with formulas supplied as objects (after problem noted by Gang Chen).

  o Added Wong data set, used in mixed-models appendix.

Changes to Version 2.0-22

  o corrected bug in 'terms' argument in residualPlots, and other graphic functions with a 'terms' argument

  o added residual curvature tests for glm.nb

  o mcPlot and mcPlots draw 'marginal/conditional' plots for lm objects.  The marginal plot is of the centered response versus a centered regressor; the conditional plot is the corresponding added-variable plot.  The plots can be overlaid or viewed side-by-side.

  o added argument marginal.scale to avPlots to scale the added-variable plot for Y on X|Z using the scale from the marginal plot of Y vs X ignoring X.  The default is FALSE, corresponding to using scaling to maximize resolution or use xlim and ylim to set user scaling.

  o Fixed bugs in Anova.survreg() that could affect types II, II tests, both Wald and LR, and one similar bug in linearHypothesis.survreg().

  o Replaced calls to require() with requireNamespace() where possible (suggestion of Brian Ripley).

  o The following functions now produce warnings rather than errors when there are empty groups: scatterplot(), scatterplotMatrix(), scatter3d(), densityPlot().

  o Corrected name of "Blackmoor" dataset to "Blackmore".

  o Added KosteckiDillon migraines dataset (contributed by Georges Monette).

  o introduced linearHypothesis.rlm() for rlm models (suggestion of Matthieu Stigler).

  o Small bug fixes/improvements.

Changes to Version 2.0-21

  o residualPlot error when using 'type="rstudent" has been fixed.

  o Minor change to "recode" documentation; improved error checking in recode().

  o Fixed a bug in gamLine with non-canonical links. (Thanks to Hani Christoph)

  o Added has.intercept.multinom() to make Anova() work with multinom objects fit to a dichotomous response (after bug report by Kristian Hovde Liland).

  o Replaced vif.lm() with vif.default() to cover wider variety of models (after question by Laura Rigg about gls models).

  o Diagonal panels in scatterplotMatrix() (except for histograms) show groups separately when plotted by groups (suggestion by Erich Neuwirth).

  o Added vcov. argument to Anova.lm().

Changes to Version 2.0-20

  o Added new id.method="r" to showLabels for labeling plots of residuals; default id.method changed in residualPlots.

  o Fixed handling of labels argument to outlierTest() (bug report by Stephane Laurent).

  o Accommodate numeric variables consisting entirely of NAs in recode() (suggestion of Karl Ove Hufthammer).

  o Prevent dataEllipse() from opening a graphics device when draw=FALSE (fixing bug reported by Rafael Laboissiere).

  o The functions makeHypothesis() and printHypothesis(), intended for internal use, are exported so that they can be used in other packages (request of Arne Henningsen).

  o Small fixes.

Changes to Version 2.0-19

  o allow a grouping variable for color, symbol and fits in residualPlots

  o fixed axis labelling probelm in influenceIndexPlot

  o fixed scoping problems in Boot, bootCase, and ncvTest

  o added an argument to deltaMethod for passing arguments to get scoping right when calling linearHypothesis in another function; other deltaMethod bugs fixed

  o slight modification to documentation of Boot

  o summary() method for "Anova.mlm" objects now returns an object, printed by a corresponding print() method (adapting code contributed by Gabriel Baud-Bovy).

  o added .merMod methods to Anova(), deltaMethod(), linearHypothesis(), matchCoefs(), and unexported utilities df.residual() and has.intercept(); insured compatibility with nlme and CRAN and developments versions of lme4.

  o added use argument to scatterplotMatrix() (suggestion of Antoine Lizee).

  o export linearHypothesis.default() for use in other packages (suggestion of Achim Zeileis).

  o small changes and fixes.

(wen)

2018-01-22 07:36:31 UTC MAIN commitmail json YAML

Updated math/R-quantreg to 5.34

(wen)

2018-01-22 07:35:38 UTC MAIN commitmail json YAML

Update to 5.34

Upstream changes:
5.30

1.  Removed Y argument in crq GRAD subroutine, which seems to be superflous.

5.31

1.  Added bag of little bootstraps option to summary.rq.  Needs further
testing.

5.32

1.  Modified the BLB code to use boot.rq.wxy so that the inner loop was all
in fortran, would be nicer if this loop were done with "fn" rather than "br".
See the note in boot.rq above boot.rq.spwy.

2.  modified the crq.pdf file to fix a mento in the description of the Peng
Huang algorithm.

5.33

1.  Added option to return density estimates from predict.rqs

2.  modified rq.fit.fnb to include a rhs input argument.

3.  modified boot.crq to properly deal with only one tau requests
and also changed the default for printing progress report to n - 100,000.
Both suggested by Steve Portnoy.

4.  modified boot.rq so it returns cov(B$B) not cov(B)  as reported
by Marco Geraci

5.  Fixed bug in anova.rqlist to correct error when "fn" method was used
and no $y component was returned.  Reported by Tom LaBone.

6.  Fixed bug in summary.rqss -- control parameters weren't getting
passed to chol call properly.  (Reparted by Geoffrey Shideler (NOAA).)

7.  Added init.c to register .Fortran calls and removed the package =
"quantreg"  argument.

5.34

1.  Fix a bug in rqss to allow control parameters to be passed to rqss.fit
when the method is "lasso"  (pointed out by Heracles Apergis.)

2.  changed nrow(R) to NROW(R) in rq.fit.hogg thanks to Paul Newell for bug
report.

3.  fixed axis label typo in demo engel2.

4.  Added Panel.R demo to illustrate fixed effect panel estimation, a la
Galvao job market talk.

5.  Some changes to crq.fit.por as suggested by SLP:

    line 1: add an input variable mw (the error messages suggest changing mw if
    there are  problems with resolving degeneracies or trying to pivot too far,
    and so it  should be possible to do this without getting into the deep part of
    the code)

    lines 3 and 5: test that x is a matrix and add column names if they are
    missing

    line 39: define mw so that the fortran constraint is satisfied

(wen)

2018-01-22 07:23:59 UTC MAIN commitmail json YAML

Updated math/R-SparseM to 1.77

(wen)

2018-01-22 07:21:29 UTC MAIN commitmail json YAML

Update to 1.77

Upstream changes:
The version 1.71

1.  Fixed the REAL*8 and INTEGER*4 occurences in accordance with Kurt's email.

The version 1.73

1.  changed occurences of unix.time to system.time in accordance with Kurt's
directive.

The version 1.74

1.  One more unix -> system

The version 1.75

1.  package -> PACKAGE [per Kurt's email of 3/2/17]

The version 1.76

1.  Used package_native_routine_registration_skeleton  to remove
    PACKAGE = SparseM  [per Kurt's email of 3/2/17]

The version 1.77

1.  Changed setMethod for diag (matrix.csr) in accordance with MM's suggestion

2.  removed setGeneric for image also suggested by MM.

(wen)

2018-01-22 06:23:27 UTC MAIN commitmail json YAML

Added math/R-pbkrtest version 0.4.7

(wen)

2018-01-22 06:21:00 UTC MAIN commitmail json YAML

Add R-pbkrtest

(wen)

2018-01-22 06:19:48 UTC MAIN commitmail json YAML

Import pbkrtest-0.4.7 as math/R-pbkrtest.

Test in linear mixed effects models. Attention is on linear mixed
effects models as implemented in the lme4 package. The package
implements a parametric bootstrap test. The package implements a
Kenward-Roger modification of F-tests.

(wen)

2018-01-22 04:42:44 UTC MAIN commitmail json YAML

fix inline calls in src/rtl_adsb.c and src/rtl_power.c

(dbj)

2018-01-22 04:40:07 UTC MAIN commitmail json YAML

2018-01-22 04:38:42 UTC MAIN commitmail json YAML

enable PLIST.libcpp on Darwin

(dbj)

2018-01-22 04:36:08 UTC MAIN commitmail json YAML

if PYPKGPREFIX is not py27, disable QtWebKit and remove it as a dependency

(dbj)

2018-01-22 04:17:11 UTC MAIN commitmail json YAML

2018-01-22 03:27:45 UTC MAIN commitmail json YAML

Remove an unneeded line

(wen)

2018-01-22 03:19:35 UTC MAIN commitmail json YAML

Added math/R-lme4 version 1.1.15

(wen)

2018-01-22 03:17:48 UTC MAIN commitmail json YAML

2018-01-22 03:16:11 UTC MAIN commitmail json YAML

Import lme4-1.1.15 as math/R-lme4.

Fit linear and generalized linear mixed-effects models. The models
and their components are represented using S4 classes and methods.
The core computational algorithms are implemented using the Eigen
C++ library for numerical linear algebra and RcppEigen "glue".

(wen)

2018-01-22 03:00:45 UTC MAIN commitmail json YAML

2018-01-22 02:40:02 UTC MAIN commitmail json YAML

Updated devel/R-Rcpp to 0.12.15

(wen)

2018-01-22 02:38:47 UTC MAIN commitmail json YAML

2018-01-22 02:28:03 UTC MAIN commitmail json YAML

Updated math/R-RcppEigen to 0.3.3.3.1

(wen)

2018-01-22 02:25:48 UTC MAIN commitmail json YAML

Update to 0.3.3.3.1
Add blas and lapack as DEPENDS

Upstream changes:
2017-11-19  Dirk Eddelbuettel  <edd@debian.org>

* DESCRIPTION (Version, Date): Release 0.3.3.3.1

* R/inline.R: Use '::' not ':::' for Rcpp.plugin.maker

2017-08-26  Dirk Eddelbuettel  <edd@debian.org>

* .travis.yml (before_install): Use https for curl fetch

2017-06-06  Yu Gong  <armgong@yahoo.com>

* inst/include/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h:
Also permit compilation under Haiku-OS

2017-05-28  Dirk Eddelbuettel  <edd@debian.org>

* inst/examples/lmBenchmark.R (do_bench): Remove spurious argument in
call to RcppEigen:::Eigen_SSE() (cf github issue #44)

2017-04-29  Dirk Eddelbuettel  <edd@debian.org>

* DESCRIPTION: Release 0.3.3.3.0

[ which again owes a very big thank you to Yixuan for doing the work! ]

2017-04-27  Dirk Eddelbuettel  <edd@debian.org>

* .travis.yml: Switch to using run.sh for Travis CI

2017-04-27  Yixuan Qiu  <yixuan.qiu@cos.name>

[ In RcppEigen 0.3.3.* branch ]

* inst/include/Eigen/src/Core/arch/CUDA/Half.h: Fixed compiler warning
on 'long long' type in C++ 98 mode

2017-03-14  Dirk Eddelbuettel  <edd@debian.org>

* DESCRIPTION (Version, Date): Release 0.3.2.9.1

* src/init.c (R_init_RcppEigen): Call R_registerRoutines()
and R_useDynamicSymbols()

* NAMESPACE: Use .registration=TRUE on useDynLib

* R/fastLm.R (fastLmPure): Remove erroneous fourth argument from .Call

2017-03-13  Martin Maechler  <maechler@r-project.org>

* inst/include/RcppEigenCholmod.h: Synchronize with Matrix package

2017-02-21  Yixuan Qiu  <yixuan.qiu@cos.name>

[ In RcppEigen 0.3.3.* branch ]

* inst/include/Eigen: Updated to release 3.3.3 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem

2017-01-20  Yixuan Qiu  <yixuan.qiu@cos.name>

[ In RcppEigen 0.3.3.* branch ]

* inst/include/Eigen: Updated to release 3.3.2 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem

* inst/unitTests/runit.RcppEigen.R, inst/unitTests/runit.sparse.R:
Explicitly convert matrix size to `double` type such that Rcpp can
properly return the value to R, thanks to ChingChuan and Dirk

2017-01-20  ChingChuan Chen  <zw12356@gmail.com>

[ In RcppEigen 0.3.3.* branch ]

* inst/include/Eigen: Updated to release 3.3.1 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem

* inst/examples/lmBenchmark.R: Fixed function names

2016-12-22  Dirk Eddelbuettel  <edd@debian.org>

* DESCRIPTION (URL, BugReports): Added / updated

2016-11-12  Yixuan Qiu  <yixuan.qiu@cos.name>

[ In RcppEigen 0.3.3.* branch ]

* inst/include/Eigen: Updated to release 3.3.0 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem

* inst/include/RcppEigenForward.h, inst/include/RcppEigenWrap.h:
Added exporters for the new Map<SparseMatrix<T> > type
* inst/unitTests/runit.sparse.R: Unit tests for the new type

2016-08-20  Dirk Eddelbuettel  <edd@debian.org>

* DESCRIPTION: Release 0.3.2.9.0 with big thanks to Yixuan for doing
the work!

2016-08-19  Yixuan Qiu  <yixuan.qiu@cos.name>

* inst/include/Eigen: Updated to release 3.2.9 of Eigen

* README.md: Updated version number and fixed the NOTE from CRAN URL
check

2016-04-30  Dirk Eddelbuettel  <edd@debian.org>

* README.md: Expanded

2016-04-28  James Joseph Balamuta <balamut2@illinois.edu>

* inst/include/RcppEigenWrap.h: Added an exporter class for
Map::RowVectorX<t> per http://stackoverflow.com/questions/36920689/
* inst/include/unitTests/runit.RcppEigen.R: Added row exporter unit
test.

(wen)

2018-01-22 01:40:56 UTC MAIN commitmail json YAML

Update the version of R-car

(wen)

2018-01-22 01:08:15 UTC MAIN commitmail json YAML

2018-01-22 01:05:50 UTC MAIN commitmail json YAML

2018-01-22 01:04:07 UTC MAIN commitmail json YAML

x11: add kirigami2

(markd)

2018-01-22 01:02:28 UTC MAIN commitmail json YAML

kirigami2: add version 5.41.0

Kirigami is a set of QtQuick components at the moment targeted for
mobile use (in the future desktop as well) targeting both Plasma
Mobile and Android. It's not a whole set of components, all the
"Primitive" ones like buttons and textboxes are a job for
QtQuickControls (soon QtQuickControls2) but it's a set of high level
components to make the creation of applications that look and feel
great on mobile as well as desktop devices and follow the Kirigami
Human Interface Guidelines.

(markd)

2018-01-21 23:32:45 UTC MAIN commitmail json YAML

py-qt5: fix PLIST for python2 and note dependency on py-dbus

(markd)

2018-01-21 21:46:45 UTC MAIN commitmail json YAML

doc: Updated security/sqlmap to 1.2

(leot)

2018-01-21 21:46:34 UTC MAIN commitmail json YAML

sqlmap: Update security/sqlmap to 1.2

Changes
(unfortunately upstream does not provide any changelog, this is based by
reading commit messages):
1.2
---
- Misc improvements and bug fixes

1.1.11
------
- Add support for Apache SHA1
- Add support for Joomla password
- Add support for vBulletin password hashes
- Add support for DJANGO_MD5 and DJANGO_SHA1
- Add WAF script for Wordfence
- Add WAF script for DOSarrest
- Misc improvements and bug fixes

1.1.10
------
- Polish translation
- Add support for blind-based charset dump
- Misc improvements and bug fixes

(leot)

2018-01-21 21:39:41 UTC MAIN commitmail json YAML

2018-01-21 21:34:03 UTC MAIN commitmail json YAML

2018-01-21 20:17:34 UTC MAIN commitmail json YAML

kactivities-stats: add buildlink3.mk

(markd)

2018-01-21 18:45:27 UTC MAIN commitmail json YAML

Avoid pointless bashisms.
Avoid use of non POSIX local builtin.
Remove bash dependency.

(roy)

2018-01-21 18:45:08 UTC MAIN commitmail json YAML

doc: Updated multimedia/xine-ui to 0.99.8nb15

(wiz)

2018-01-21 18:44:59 UTC MAIN commitmail json YAML

2018-01-21 16:49:45 UTC MAIN commitmail json YAML

Note update of x11/deforaos-libdesktop to 0.2.2nb1.

(he)

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

share/gtk-doc/html/libDesktop/index.sgml isn't being installed,
at least not on NetBSD, SmartOS or Ubuntu, so adjust PLIST accordingly.
Bump PKGREVISION.  Going to submit pull-up request.

(he)

2018-01-21 16:25:55 UTC MAIN commitmail json YAML

Updated multimedia/libdvdcss, multimedia/libdvdread, multimedia/libdvdnav

(adam)

2018-01-21 16:25:17 UTC MAIN commitmail json YAML

libdvdnav: updated to 6.0.0

libdvdnav (6.0.0)
* fix crashes on some DVD on describe_title call
* fix various crashes related to PGC validity
* fix compilation issues
* fix API return codes

(adam)

2018-01-21 16:24:29 UTC MAIN commitmail json YAML

libdvdread: updated to 6.0.0

libdvdread (6.0.0)
* restrict the number of symbols to be exposed to the shared-object
* remove dvdinput_error function
* improve compatibility with some DVDs (notably the eOne ones)
* fix write after free in ifoFree functions
* fix possible buffer overflow in open
* additional checks on DVDReadBytes arguments
* fix leaks

(adam)

2018-01-21 16:22:13 UTC MAIN commitmail json YAML

libdvdcss: updated to 1.4.1

Changes 1.4.1:
* Fix crashes in cache directory creation
* Fix cases where the cache directory was not used

(adam)

2018-01-21 16:06:15 UTC MAIN commitmail json YAML

doc: Updated security/keychain to 2.8.4

(roy)

2018-01-21 16:03:34 UTC pkgsrc-2017Q4 commitmail json YAML

2018-01-21 16:03:29 UTC MAIN commitmail json YAML

Update to keychain-2.8.4:
  Uses id instead of whoami for better portability.
  GPG2 support, support for busybox ps and various optimizations.

(roy)

2018-01-21 16:02:43 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5687 - requested by morr
www/wordpress: security update

Revisions pulled up:
- www/wordpress/Makefile                                        1.75
- www/wordpress/PLIST                                          1.37
- www/wordpress/distinfo                                        1.60

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: morr
  Date: Sat Jan 20 11:58:01 UTC 2018

  Modified Files:
  pkgsrc/www/wordpress: Makefile PLIST distinfo

  Log Message:
  Update to version 4.9.2

  CHanges:

  XSS fixed in the Flash fallback files in MediaElement 4.x.

  Bundled Theme
  #42820 - Twenty Seventeen -watch that language

  Customize
  #42492 - Selecting menu location changes line height
  #42871 - Features box textstrings in Feature Filter area need new linebreak

  Database
  #42812 - Use MySQLi when available by default

  Editor
  #42664 - Editor link autocomplete suggestions: no fallback title displayed for posts with no title
  #43012 - Cannot Update Post in Firefox Due to Editor and TinyMCE JavaScript TypeErrors

  External Libraries
  #42439 - Update random_compat external library for PHP 7 linting failure

  Formatting
  #42578 - PHP functions inside <p> tags creates new <p> tag, breaking the parent tag into two.

  Media
  #42225 - Whitelist Flac Files
  #42447 - Mark test_remove_orientation_data_on_rotate as skipped when exif_read_data isn't available
  #42480 - Consistent suppression of `getimagesize()` errors
  #42720 - Remove unnecessary MediaElement.js files

  Plugins
  #43082 - Add plugins search results: the plugin details modal opens in the thickbox modal

  REST API
  #42828 - Hard-coded 403 status in REST response should use `rest_authorization_required_code()`

  Taxonomy
  #42771 - WP_Term::get_instance() regression for non-category terms queried with 'category' taxonomy
  #42605 - category_description() does not work properly since 4.9
  #42717 - get_category_link() accepting object but not id

  TinyMCE
  #42416 - Code assumes iframe mode, exception in inline mode

  Upgrade/Install
  #42963 - Improve deletion of $_old_files during upgrades

  Widgets
  #42603 - Widgets Warning after activating theme and on dashboard widgets page
  #42719 - Always attempt to restore widgets' previous assignment
  #42867 - HTML Widget: toggleClass() should be passed true/false as second param

  To generate a diff of this commit:
  cvs rdiff -u -r1.74 -r1.75 pkgsrc/www/wordpress/Makefile
  cvs rdiff -u -r1.36 -r1.37 pkgsrc/www/wordpress/PLIST
  cvs rdiff -u -r1.59 -r1.60 pkgsrc/www/wordpress/distinfo

(spz)

2018-01-21 13:42:26 UTC MAIN commitmail json YAML

xf86-input-keyboard: bump revision.

(triaxx)

2018-01-21 13:28:07 UTC MAIN commitmail json YAML

Add ${VARBASE} replacements in example config.

Patch from Travis Paul in PR pkg/52930.
Bump revision.

(bsiegert)

2018-01-21 13:05:21 UTC MAIN commitmail json YAML

Updated shells/mksh to 56c

(bsiegert)

2018-01-21 13:04:05 UTC MAIN commitmail json YAML

Update mksh to 56c.

R56c is a bugfix-only release everyone must upgrade to:

- [komh] Remove redundant OS/2-specific code, clean up others
- [komh, tg] Fix drive-qualified (absolute and relative) DOS-style path support
  in realpath functionality, partially other places
- [tg] Don't substitute ${ENV:-~/.mkshrc} result again
- [tg] Improve OS/2 $PATH (et al.) handling, drive-relative paths
- [tg] Add MKSH_ENVDIR compile-time option for Jehanne and Plan 9
- [tg] Limit nesting when parsing malformed code (Debian #878947)
- [tg] Update wcwidth data with bugfixed script (still Unicode 10; resulting
  values are identical to glibc git master for extant chars)
- [Dr. Werner Fink] Raise some time limits in the testsuite
- [Shamar] Add support for the Jehanne operating system
- [komh] Set stdin to text mode before executing child processes on OS/2
- [komh] Pass arguments via a resonse file if executing a child fails
- [Dr. Werner Fink] Early locale tracking as a compile-time option
- [tg] Fix regressions introduced with new fast character classes

(bsiegert)

2018-01-21 12:17:56 UTC MAIN commitmail json YAML

Updated www/py-google-api-python-client, www/py-yarl, www/py-pylint-django, finance/py-braintree

(adam)

2018-01-21 12:17:25 UTC MAIN commitmail json YAML

py-braintree: updated to 3.40.0

3.40.0
Add level 3 fields to Transactions:
discount_amount
shipping_amount
ships_from_postal_code
Add support for transaction line items
Add support for tagged evidence in DisputeGateway#add_text_evidence (Beta release)
Update https certificate bundle

(adam)

2018-01-21 12:14:38 UTC MAIN commitmail json YAML

py-pylint-django: updated to 0.8.0

Version 0.8.0:
This is the last version to support Python 2. Issues a deprecation warning!
Adding 'urlpatterns', 'register', 'app_name' to good names.
Add 'handler500' to good names
Support factory_boy's DjangoModelFactory Meta class
Fix E1101:Instance of 'proxy' has no 'format' member' when using .format() on a ugettext_lazy translation.
Add tests and transforms for DurationField,
Add json field to WSGIRequest proxy
Add support for django.contrib.postgres.fields and UUIDField
Stop testing with older Django versions. Currently testing with Django 1.11.x and 2.0
Stop testing on Python 2, no functional changes in the source code though
Update tests and require latest version of pylint (>=1.8)
Fix 'duplicate-except' false negative for except blocks which catch the DoesNotExist exception.

(adam)

2018-01-21 11:55:13 UTC MAIN commitmail json YAML

py-yarl: updated to 1.1.0

1.1.0:
Make pure Python quoter consistent with Cython version

(adam)

2018-01-21 11:54:02 UTC MAIN commitmail json YAML

py-google-api-python-client: updated to 1.6.5

Version 1.6.5

Bugfix release
- Proactively refresh credentials when applying and treat a missing
  access_token as invalid. Note: This change reveals surprising behavior
  between default credentials and batches. If you allow
  googleapiclient.discovery.build to use default credentials *and* specify
  different credentials by providing batch.execut() with an explicit http
  argument, your individual requests will use the default credentials and
  *not* the credentials specified to the batch http. To avoid this, tell
  build explicitly not to use default credentials by specifying
  build(..., http=httplib2.Http().
- Remove mutual exclusivity check for developerKey and credentials
- Handle unknown media length.
- Handle variant error format gracefully.
- Avoid testing against Django >= 2.0.0 on Python 2.

(adam)

2018-01-21 10:47:47 UTC MAIN commitmail json YAML

xf86-input-mouse: add LICENSE.

(triaxx)

2018-01-21 10:43:51 UTC MAIN commitmail json YAML

xf86-input-keyboard: add LICENSE.

(triaxx)

2018-01-21 10:12:48 UTC MAIN commitmail json YAML

doc/TODO: add some

+ GraphicsMagick-1.3.28, MesaLib-17.3.3, chicken-4.13.0 [pkg/52929],
  gdbus-codegen-2.54.3, git-base-2.16.0, glib2-2.54.3, gtk2-2.24.32,
  khard-0.12.1, latexmk-455, libsigsegv-2.12, libsoup-2.60.3,
  py-certifi-2018.1.18, py-google-api-python-client-1.6.5,
  todoman-3.3.0, wine-3.0.

(wiz)

2018-01-21 10:12:39 UTC MAIN commitmail json YAML

xf86-input-keyboard: disable code that queries console keymap.

From FreeBSD 11, vt(4) is the default console driver and handles Unicode
codepoints. The disabled code caused a segmentation fault with these
codepoinst and seems to be useless for vt(4).

From FreeBSD PR 191459.

(triaxx)

2018-01-21 08:21:37 UTC MAIN commitmail json YAML

mupdf: restrict to zlib>=1.2.3

From Rusty Dev in PR 52936.

(wiz)

2018-01-21 08:11:11 UTC MAIN commitmail json YAML

qt5-qtwebkit: restrict to python-2.7, does not build with 3.x

[  3%] Generating ../../DerivedSources/JavaScriptCore/Bytecodes.h, ../../DerivedSources/JavaScriptCore/InitBytecodes.asm
  File "/scratch/x11/qt5-qtwebkit/work/qtwebkit-5.212.0-alpha2/Source/JavaScriptCore/generate-bytecode-files", line 94
    print "I/O error opening {0}, ({1}): {2}".format(path, e.errno, e.strerror)
                                            ^
SyntaxError: invalid syntax

(wiz)

2018-01-21 04:22:58 UTC MAIN commitmail json YAML

kid3: restore accidentally zeroed PLIST

(markd)

2018-01-21 04:19:36 UTC MAIN commitmail json YAML

added qt5-qtquickcontrols2

(markd)

2018-01-21 04:18:12 UTC MAIN commitmail json YAML

x11: add qt5-qtquickcontrols2

(markd)

2018-01-21 04:17:28 UTC MAIN commitmail json YAML

2018-01-21 04:12:21 UTC MAIN commitmail json YAML

2018-01-21 04:10:44 UTC MAIN commitmail json YAML

kid3: update to 3.5.1

* Release 3.5.1

* Improved:
  + Compatibility of imported and exported CSV files with cells
    containing new line characters.
  + Do not show unknown frames for ID3v2.3 TDAT, TIME, TYER, TRDA
    frames.
  + Enable high-DPI scaling for Qt >= 5.6.
  + Change AppStream directory from appdata to metainfo.

* Fixed:
  + Crash with DSF files having sample rates other than 2822400 or
    5644800.

* Release 3.5.0

* New:
  + Tags which violate the ID3v2 standard are marked.
  + Filter for marked files.
  + Configurable keyboard shortcuts for user actions.
  + Set and get frame fields from scripts and CLI.
  + Select a subset of frames for copy, paste, remove from scripts
    and CLI.
  + Set and get multiple frames of the same kind from scripts and CLI.
  + Support field names in export and filter expressions.
  + Support xid and ownr atoms in M4A files.
  + Danish translation.

* Improved:
  + Better performance when files are added to selection.
  + The script actions in the file list context menu only operate on
    selected files.
  + Only jump to tagged files with previous/next in GUI.
  + Show passed/total after "filtered" in title bar.
  + kid3-cli can run from a console without GUI/X11.

* Fixed:
  + Adding and deleting tag 3 frames from CLI.
  + Deletion of multiple METADATA_BLOCK_PICTURE picture frames.
  + Wrong depth 32 instead of 24 stored in METADATA_BLOCK_PICTURE.
  + Use Ogg/Vorbis Comment field name setting also for Opus files.

* Release 3.4.5

* New:
  + Settings to include and exclude folders in the file list.

* Improved:
  + Use HTTPS for imports where possible.
  + Much faster expanding of the file list by avoiding GUI
    updates during the operation.
  + Faster filtering by avoiding GUI updates during the
    operation.
  + Reduced memory usage when filtering.
  + Updated Czech and Dutch translations.

* Fixed:
  + Import from MusicBrainz.
  + Rate limit for import from Discogs.
  + Do not display multiple frames of same type as different.
  + Application not responsive when using a new filter after
    filtering a huge number of files.
  + Application not responsive when loading the tags after
    selecting a lot of files, is now abortable.
  + Terminate kid3-cli if EOF is received.

* Release 3.4.4

* New:
  + If the first command line argument is "--portable", the
    configuration is stored in a file kid3.ini in the program folder.
  + Image data can be copied to clipboard.
  + MPRIS2 D-Bus interface for the audio player.

* Improved:
  + "Import CSV" can import to different files if no matching
    file paths found.

* Fixed:
  + Importing of durations from text formats (file/clipboard).
  + Building with Chromaprint 1.4.

(markd)

2018-01-21 03:45:44 UTC MAIN commitmail json YAML

Updated databases/p5-DBIx-Class-Schema-Loader to 0.07048

(wen)

2018-01-21 03:44:43 UTC MAIN commitmail json YAML

Update to 0.07048
Add missing DEPENDS

Upstream changes:
0.07048  2018-01-20
        - Fix for PostgreSQL enums not in the schema search path (RT#123234)
        - Fix 'default now()' test for PostgreSQL v10
        - Work around incompatible change in Hash::Merge (GH#16)
        - Fix skip count for non-InnoDB MySQL test

(wen)

2018-01-21 03:43:02 UTC MAIN commitmail json YAML

Added devel/p5-curry version 1.001000

(wen)

2018-01-21 03:40:40 UTC MAIN commitmail json YAML

2018-01-21 03:39:26 UTC MAIN commitmail json YAML

Import curry-1.001000 as devel/p5-curry.

Perl module to create automatic curried method call closures for
any class or object.

(wen)

2018-01-21 01:30:02 UTC MAIN commitmail json YAML

Updated www/firefox-l10n to 57.0.4

(ryoon)

2018-01-21 01:29:28 UTC MAIN commitmail json YAML

Update to 57.0.4

* Sync with www/firefox-57.0.4

(ryoon)

2018-01-21 01:28:39 UTC MAIN commitmail json YAML

Fix packaging

(ryoon)

2018-01-21 01:28:08 UTC MAIN commitmail json YAML

Fix packaging

(ryoon)

2018-01-20 21:17:02 UTC MAIN commitmail json YAML

Updated archivers/py-lz4, devel/py-urwid

(adam)

2018-01-20 21:16:27 UTC MAIN commitmail json YAML

py-urwid: updated to 2.0.0

Urwid 2.0.0:
Full Python 2.x/3.x support
Proper handling & customization of OS signals by GLib event loop
vterm: Fix handling of NUL characters
Add 256-color support for fbterm
Italics support
Store envron's TERM value as a Screen attribute
Replaced hashbangs to use proper Python binary
Post-change signal for Edit, CheckBox and RadioButton widgets
ListBox.body update
SimpleListWalker is now default when setting ListBox.body
SelectEventLoop alarm improvements
Title align & borderless sides for LineBox
Support for 'home' and 'end' keys in ListBox
Various code cleanups
CI fixes
Example fixes
Documentation fixes
Code cleanup & typo fixes
Integration of tox for easier Python cross-version testing
Test fixes
Correct error messages in Decoration
Fix for StandardTextLayout.calculate_text_segments
Fix for raw display should release file descriptors
Fix issues with unicode characters in ProgressBar
Fix for 'page up' and 'page down' in ListBox when having focusable children
Fixes for examples compatibility with Python 3
Fix default screen size on raw display
Fix underlining for padded text
Fix for terminal widget crash with Python 3
Fix for string formatting error
Fix for iterator in WidgetContainerListContentsMixin
Fix for missing modified signal in SimpleFocusListWalker
Dropped Python 3.2 support
Test coverage is now collected

(adam)

2018-01-20 21:10:18 UTC MAIN commitmail json YAML

py-lz4: updated to 0.18.2

0.18.2:
This release fixes a memory leak that was introduced in lz4.frame.decompress in 0.18.1. This leak resulted from an incorrect ref count on the returned result which prevented it from ever being released and garbage collected.

(adam)

2018-01-20 20:44:49 UTC MAIN commitmail json YAML

2018-01-20 20:44:13 UTC MAIN commitmail json YAML

2018-01-20 18:13:25 UTC MAIN commitmail json YAML

2018-01-20 17:23:33 UTC MAIN commitmail json YAML

Update chat/weechat to 2.0.1

Version 2.0.1 (2017-12-20):
- python: fix arguments status/gnutls_rc/sock in hook_connect() callback
- python: fix argument fd in hook_fd() callback

Version 2.0 (2017-12-03):
- new plugin "fset" (fast set of WeeChat and plugins options)
- add option buflist.look.add_newline
- add two new bar items "buflist2" and "buflist3" using the same format configuration options
- add flag "input_get_empty" in buffer
- add signals "buffer_filters_enabled" and "buffer_filters_disabled"
- support loading of plugins from path in environment variable "WEECHAT_EXTRA_LIBDIR"
- add infolist "alias_default" (list of default aliases)
- make value optional in command /buffer set
- support of floating point and hexadecimal numbers in comparison of evaluated values
- add option weechat.look.save_config_with_fsync
- add support of prefix "quiet:" in function key_unbind() to quietly remove keys
- add argument "recurse_subdirs" in function exec_on_files()
- add local variable "filter" in the script buffer
- remove recursive evaluation of extra variables in buflist
- change type of arguments status/gnutls_rc/sock in hook_connect() callback from string to integer (in scripting API)
- change type of argument fd in hook_fd() callback from string to integer (in scripting API)
- fix display bugs with filtered lines
- fix display of nicks in nicklist when they are in a group with sub-groups
- call the config hook when options are renamed or removed
- fix parsing of CAP command in relay/irc
- many bugs fixed.

(tonio)

2018-01-20 17:20:15 UTC MAIN commitmail json YAML

Update chat/weechat to 2.0.1

Version 2.0.1 (2017-12-20):
- python: fix arguments status/gnutls_rc/sock in hook_connect() callback
- python: fix argument fd in hook_fd() callback

Version 2.0 (2017-12-03):
- new plugin "fset" (fast set of WeeChat and plugins options)
- add option buflist.look.add_newline
- add two new bar items "buflist2" and "buflist3" using the same format configuration options
- add flag "input_get_empty" in buffer
- add signals "buffer_filters_enabled" and "buffer_filters_disabled"
- support loading of plugins from path in environment variable "WEECHAT_EXTRA_LIBDIR"
- add infolist "alias_default" (list of default aliases)
- make value optional in command /buffer set
- support of floating point and hexadecimal numbers in comparison of evaluated values
- add option weechat.look.save_config_with_fsync
- add support of prefix "quiet:" in function key_unbind() to quietly remove keys
- add argument "recurse_subdirs" in function exec_on_files()
- add local variable "filter" in the script buffer
- remove recursive evaluation of extra variables in buflist
- change type of arguments status/gnutls_rc/sock in hook_connect() callback from string to integer (in scripting API)
- change type of argument fd in hook_fd() callback from string to integer (in scripting API)
- fix display bugs with filtered lines
- fix display of nicks in nicklist when they are in a group with sub-groups
- call the config hook when options are renamed or removed
- fix parsing of CAP command in relay/irc
- many bugs fixed.

(tonio)

2018-01-20 16:55:26 UTC MAIN commitmail json YAML

2018-01-20 16:55:06 UTC MAIN commitmail json YAML

2018-01-20 12:19:09 UTC MAIN commitmail json YAML

Update to newest changeset.

Changes:

8.0.1380  using "vim -r swapfile" the hit-enter prompt is misplaced.
8.0.1381  ch_readraw() waits for NL if channel mode is NL
8.0.1382  get "no write since last change" message if terminal is open
8.0.1383  local additions in help skips some files
8.0.1384  not enough quickfix help; confusing winid
8.0.1385  Python 3.5 is getting old
8.0.1386  cannot select modified buffers with getbufinfo()
8.0.1387  wordcount test is old style
8.0.1388  char not overwritten with ambiguous width char
8.0.1389  getqflist() items are missing if not set
8.0.1390  DirectX scrolling can be slow, vertical positioning is off
8.0.1391  encoding empty string to JSON sometimes gives "null"
8.0.1392  build fails with --with-features=huge --disable-channel
8.0.1393  too much highlighting with 'hlsearch' and 'incsearch' set
8.0.1394  cannot intercept a yank command
8.0.1395  it is not easy to see if a colorscheme is well written
8.0.1396  memory leak when CTRL-G in search command line fails
8.0.1397  pattern with \& following nothing gives an error
8.0.1398  :packadd does not load packages from the "start" directory
8.0.1399  warnings and errors when building tiny version
8.0.1400  color scheme check script shows up as color scheme
8.0.1401  cannot build with GTK but without XIM
8.0.1402  crash with nasty autocommand
8.0.1403  using freed buffer in grep command
8.0.1404  invalid memory access on exit
8.0.1405  duplicated code for getting a typed character
8.0.1406  difficult to track changes to a quickfix list
8.0.1407  GUI: CursorHold may trigger before 'updatetime'
8.0.1408  crash in setqflist()
8.0.1409  buffer overflow in :tags command
8.0.1410  hang when using count() with an empty string
8.0.1411  reading invalid memory with CTRL-W :
8.0.1412  using free memory using setloclist()
8.0.1413  accessing freed memory in :cbuffer
8.0.1414  accessing freed memory in :lfile.
8.0.1415  warning for unused function without timers feature
8.0.1416  crash when searching for a sentence
8.0.1417  test doesn't search for a sentence
8.0.1418  no test for expanding backticks
8.0.1419  cursor column is not updated after ]s
8.0.1420  accessing freed memory in vimgrep
8.0.1421  accessing invalid memory with overlong byte sequence
8.0.1422  no fallback to underline when undercurl is not set
8.0.1423  error in return not caught by try/catch
8.0.1424  the timer_pause test is flaky on Travis
8.0.1425  execute() does not work in completion of user command
8.0.1426  "gf" and &lt;cfile&gt; don't accept ? and & in URL
8.0.1427  the :leftabove modifier doesn't work for :copen
8.0.1428  compiler warning on 64 bit MS-Windows system

(morr)

2018-01-20 11:58:01 UTC MAIN commitmail json YAML

Update to version 4.9.2

CHanges:

XSS fixed in the Flash fallback files in MediaElement 4.x.

Bundled Theme
#42820 - Twenty Seventeen -watch that language

Customize
#42492 - Selecting menu location changes line height
#42871 - Features box textstrings in Feature Filter area need new linebreak

Database
#42812 - Use MySQLi when available by default

Editor
#42664 - Editor link autocomplete suggestions: no fallback title displayed for posts with no title
#43012 - Cannot Update Post in Firefox Due to Editor and TinyMCE JavaScript TypeErrors

External Libraries
#42439 - Update random_compat external library for PHP 7 linting failure

Formatting
#42578 - PHP functions inside <p> tags creates new <p> tag, breaking the parent tag into two.

Media
#42225 - Whitelist Flac Files
#42447 - Mark test_remove_orientation_data_on_rotate as skipped when exif_read_data isn't available
#42480 - Consistent suppression of `getimagesize()` errors
#42720 - Remove unnecessary MediaElement.js files

Plugins
#43082 - Add plugins search results: the plugin details modal opens in the thickbox modal

REST API
#42828 - Hard-coded 403 status in REST response should use `rest_authorization_required_code()`

Taxonomy
#42771 - WP_Term::get_instance() regression for non-category terms queried with 'category' taxonomy
#42605 - category_description() does not work properly since 4.9
#42717 - get_category_link() accepting object but not id

TinyMCE
#42416 - Code assumes iframe mode, exception in inline mode

Upgrade/Install
#42963 - Improve deletion of $_old_files during upgrades

Widgets
#42603 - Widgets Warning after activating theme and on dashboard widgets page
#42719 - Always attempt to restore widgets' previous assignment
#42867 - HTML Widget: toggleClass() should be passed true/false as second param

(morr)

2018-01-20 11:31:19 UTC MAIN commitmail json YAML

Updated devel/libuv

(adam)

2018-01-20 11:30:28 UTC MAIN commitmail json YAML

doc: Updated ham/fldigi to 4.0.15

(mef)

2018-01-20 11:30:28 UTC MAIN commitmail json YAML

libuv: updated to 1.9.1

v1.19.1:
* Revert "unix,tcp: avoid marking server sockets connected"
* Revert "unix,fs: fix for potential partial reads/writes"
* Revert "win: use RemoveDirectoryW() instead of _wmrmdir()"
* cygwin: fix compilation of ifaddrs impl

(adam)

2018-01-20 11:30:17 UTC MAIN commitmail json YAML

Updated ham/fldigi to 4.0.15

=Version 4.0.15=

2018-01-18  David Freese  <w1hkj@bellsouth.net>

        e87f41a: ARQ server
        5ab6914: Signal gain

=Version 4.0.14=

        f799522: linux shutdown
        29593c8: remote logbook
        4e87d16: ARQ exit seg fault

2018-01-09  Stelian Pop  <stelian@popies.net>

        e09d167: WEFAX auto center behavior
        be34220: WEFAX phasing change button
        2dee90e: RTTY configure initializers

2018-01-07  David Freese  <w1hkj@bellsouth.net>

        a5e88af: File aging
        f028159: OS X shutdown
        38b294a: PSK IMD
        a7d67d8: Spectrum Display
        daa6d43: Warnings in sound.cxx
        eb0caa4: OS X app paradigm

(mef)

2018-01-20 11:06:13 UTC MAIN commitmail json YAML

Pass --disable-pinentry-fltk to configure to fix build when fltk installed

(markd)

2018-01-20 11:00:38 UTC MAIN commitmail json YAML

2018-01-20 05:34:21 UTC MAIN commitmail json YAML

Support a version in recent NetBSD-current, 878.1.1 as builtin

(ryoon)

2018-01-20 02:21:16 UTC MAIN commitmail json YAML

Update to v6.11

* Typed Racket supports refinement types and dependent function types.
  Previously an experimental feature, refinement types allow types to
  describe more interesting properties of values, especially integers.
  For example, this type shows that the `max` function always produces a
  number at least as big as its inputs:
  `(-> ([x : Integer] [y : Integer])
      (Refine [z : Integer] (and (>= z x) (>= z y))))`

* DrRacket's Program Contour is significantly more efficient; using it
  no longer hurts DrRacket's interactivity.

* The `web-server/formlets` library produces formlets that are
  serializable, facilitating dynamic uses of formlets in stateless #lang
  web-server servlets. The new `web-server/formlets/stateless` and
  `web-server/formlets/unsafe` libraries provide additional support with
  the same API.

* The `db` library supports the Cassandra database.

(sevan)

2018-01-20 00:35:14 UTC MAIN commitmail json YAML

Adjust to new cmake directory path

(markd)

2018-01-19 22:20:19 UTC MAIN commitmail json YAML

Supply location of header to packages which pull in glib2 as a dependency via BUILDLINK_INCDIRS.
Resolves building devel/gobject-introspection on FreeBSD which fails otherwise when built manually
as an unprivileged user, without pbulk.

(sevan)

2018-01-19 22:15:22 UTC pkgsrc-2017Q4 commitmail json YAML

ticket 5678 5679 5680 5681 5682 5683 5684 5685 5686

(spz)

2018-01-19 22:11:35 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5686 - requested by taca
www/contao35: security update

Revisions pulled up:
- www/contao35/Makefile                                        1.36
- www/contao35/PLIST                                            1.18
- www/contao35/distinfo                                        1.28

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Jan 18 16:13:31 UTC 2018

  Modified Files:
  pkgsrc/www/contao35: Makefile PLIST distinfo

  Log Message:
  www/contao35: update to 3.5.32

  Contao 3.5.32 is available 2018/01/18 09:48 by Leo Feyer

  Contao version 3.5.32 is available. The bugfix release fixes an XSS
  vulnerability in the newsletter extension (CVE-2018-5478).

  CVE-2018-5478

  The vulnerability is in the "unsubscribe" module of the newsletter extension
  and can easily be exploited by anyone in the front end. We therefore strongly
  recommend you to update.

  The problem affects Contao 2.0.0 to 3.5.31 and the Contao newsletter bundle
  4.0.0 to 4.0.3.

  If you are not using the newsletter extension or the "unsubscribe" module,
  your installation is not affected by the vulnerability.

  To generate a diff of this commit:
  cvs rdiff -u -r1.35 -r1.36 pkgsrc/www/contao35/Makefile
  cvs rdiff -u -r1.17 -r1.18 pkgsrc/www/contao35/PLIST
  cvs rdiff -u -r1.27 -r1.28 pkgsrc/www/contao35/distinfo

(spz)

2018-01-19 21:47:36 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5685 - requested by taca
net/bind99: security update

Revisions pulled up:
- net/bind99/Makefile                                          1.72
- net/bind99/distinfo                                          1.50

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Jan 17 00:33:15 UTC 2018

  Modified Files:
  pkgsrc/net/bind99: Makefile distinfo

  Log Message:
  net/bind99: update to 9.9.11pl1 (BIND 9.9.11-P1)

  Release Notes for BIND Version 9.9.11-P1

  Introduction

      This document summarizes changes since BIND 9.9.11.

      BIND 9.9.11-P1 addresses the security issue described in CVE-2017-3145.

  Download

      The latest versions of BIND 9 software can always be found at
      http://www.isc.org/downloads/. There you will find additional
      information about each release, source code, and pre-compiled versions
      for Microsoft Windows operating systems.

  New DNSSEC Root Key

      ICANN is in the process of introducing a new Key Signing Key (KSK) for
      the global root zone. BIND has multiple methods for managing DNSSEC
      trust anchors, with somewhat different behaviors. If the root key is
      configured using the managed-keys statement, or if the pre-configured
      root key is enabled by using dnssec-validation auto, then BIND can keep
      keys up to date automatically. Servers configured in this way should
      have begun the process of rolling to the new key when it was published
      in the root zone in July 2017. However, keys configured using the
      trusted-keys statement are not automatically maintained. If your server
      is performing DNSSEC validation and is configured using trusted-keys,
      you are advised to change your configuration before the root zone
      begins signing with the new KSK. This is currently scheduled for
      October 11, 2017.

      This release includes an updated version of the bind.keys file
      containing the new root key. This file can also be downloaded from
      https://www.isc.org/bind-keys .

  Windows XP No Longer Supported

      As of BIND 9.9.11, Windows XP is no longer a supported platform for
      BIND, and Windows XP binaries are no longer available for download from
      ISC.

  Security Fixes

        * Addresses could be referenced after being freed during resolver
          processing, causing an assertion failure. The chances of this
          happening were remote, but the introduction of a delay in
          resolution increased them. (The delay will be addressed in an
          upcoming maintenance release.) This bug is disclosed in
          CVE-2017-3145. [RT #46839]
        * An error in TSIG handling could permit unauthorized zone transfers
          or zone updates. These flaws are disclosed in CVE-2017-3142 and
          CVE-2017-3143. [RT #45383]
        * The BIND installer on Windows used an unquoted service path, which
          can enable privilege escalation. This flaw is disclosed in
          CVE-2017-3141. [RT #45229]
        * With certain RPZ configurations, a response with TTL 0 could cause
          named to go into an infinite query loop. This flaw is disclosed in
          CVE-2017-3140. [RT #45181]

  Feature Changes

        * Threads in named are now set to human-readable names to assist
          debugging on operating systems that support that. Threads will have
          names such as "isc-timer", "isc-sockmgr", "isc-worker0001", and so
          on. This will affect the reporting of subsidiary thread names in ps
          and top, but not the main thread. [RT #43234]
        * DiG now warns about .local queries which are reserved for Multicast
          DNS. [RT #44783]

  Bug Fixes

        * Fixed a bug that was introduced in an earlier development release
          which caused multi-packet AXFR and IXFR messages to fail validation
          if not all packets contained TSIG records; this caused
          interoperability problems with some other DNS implementations. [RT
          #45509]
        * Semicolons are no longer escaped when printing CAA and URI records.
          This may break applications that depend on the presence of the
          backslash before the semicolon. [RT #45216]
        * AD could be set on truncated answer with no records present in the
          answer and authority sections. [RT #45140]

  End of Life

      BIND 9.9 (Extended Support Version) will be supported until at least
      June, 2018. https://www.isc.org/downloads/software-support-policy/

  To generate a diff of this commit:
  cvs rdiff -u -r1.71 -r1.72 pkgsrc/net/bind99/Makefile
  cvs rdiff -u -r1.49 -r1.50 pkgsrc/net/bind99/distinfo

(spz)

2018-01-19 21:42:37 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5684 - requested by taca
net/bind910: security update

Revisions pulled up:
- net/bind910/Makefile                                          1.39
- net/bind910/distinfo                                          1.30

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Jan 17 00:31:38 UTC 2018

  Modified Files:
  pkgsrc/net/bind910: Makefile distinfo

  Log Message:
  net/bind910: update to 9.10.6pl1 (BIND 9.10.6-P1).

  Release Notes for BIND Version 9.10.6-P1

  Introduction

      This document summarizes changes since BIND 9.10.6.

      BIND 9.10.6-P1 addresses the security issue described in CVE-2017-3145.

  Download

      The latest versions of BIND 9 software can always be found at
      http://www.isc.org/downloads/. There you will find additional
      information about each release, source code, and pre-compiled versions
      for Microsoft Windows operating systems.

  New DNSSEC Root Key

      ICANN is in the process of introducing a new Key Signing Key (KSK) for
      the global root zone. BIND has multiple methods for managing DNSSEC
      trust anchors, with somewhat different behaviors. If the root key is
      configured using the managed-keys statement, or if the pre-configured
      root key is enabled by using dnssec-validation auto, then BIND can keep
      keys up to date automatically. Servers configured in this way should
      have begun the process of rolling to the new key when it was published
      in the root zone in July 2017. However, keys configured using the
      trusted-keys statement are not automatically maintained. If your server
      is performing DNSSEC validation and is configured using trusted-keys,
      you are advised to change your configuration before the root zone
      begins signing with the new KSK. This is currently scheduled for
      October 11, 2017.

      This release includes an updated version of the bind.keys file
      containing the new root key. This file can also be downloaded from
      https://www.isc.org/bind-keys .

  Windows XP No Longer Supported

      As of BIND 9.10.6, Windows XP is no longer a supported platform for
      BIND, and Windows XP binaries are no longer available for download from
      ISC.

  Security Fixes

        * Addresses could be referenced after being freed during resolver
          processing, causing an assertion failure. The chances of this
          happening were remote, but the introduction of a delay in
          resolution increased them. (The delay will be addressed in an
          upcoming maintenance release.) This bug is disclosed in
          CVE-2017-3145. [RT #46839]
        * An error in TSIG handling could permit unauthorized zone transfers
          or zone updates. These flaws are disclosed in CVE-2017-3142 and
          CVE-2017-3143. [RT #45383]
        * The BIND installer on Windows used an unquoted service path, which
          can enable privilege escalation. This flaw is disclosed in
          CVE-2017-3141. [RT #45229]
        * With certain RPZ configurations, a response with TTL 0 could cause
          named to go into an infinite query loop. This flaw is disclosed in
          CVE-2017-3140. [RT #45181]

  Feature Changes

        * dig +ednsopt now accepts the names for EDNS options in addition to
          numeric values. For example, an EDNS Client-Subnet option could be
          sent using dig +ednsopt�s:.... Thanks to John Worley of Secure64
          for the contribution. [RT #44461]
        * Threads in named are now set to human-readable names to assist
          debugging on operating systems that support that. Threads will have
          names such as "isc-timer", "isc-sockmgr", "isc-worker0001", and so
          on. This will affect the reporting of subsidiary thread names in ps
          and top, but not the main thread. [RT #43234]
        * DiG now warns about .local queries which are reserved for Multicast
          DNS. [RT #44783]

  Bug Fixes

        * Fixed a bug that was introduced in an earlier development release
          which caused multi-packet AXFR and IXFR messages to fail validation
          if not all packets contained TSIG records; this caused
          interoperability problems with some other DNS implementations. [RT
          #45509]
        * Semicolons are no longer escaped when printing CAA and URI records.
          This may break applications that depend on the presence of the
          backslash before the semicolon. [RT #45216]
        * AD could be set on truncated answer with no records present in the
          answer and authority sections. [RT #45140]

  End of Life

      The end of life for BIND 9.10 is yet to be determined but will not be
      before BIND 9.12.0 has been released for 6 months.
      https://www.isc.org/downloads/software-support-policy/

  To generate a diff of this commit:
  cvs rdiff -u -r1.38 -r1.39 pkgsrc/net/bind910/Makefile
  cvs rdiff -u -r1.29 -r1.30 pkgsrc/net/bind910/distinfo

(spz)

2018-01-19 21:33:24 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5683 - requested by wiz
net/transmission: security update
net/transmission-qt: security update
net/transmission-gtk: security update

Revisions pulled up:
- net/transmission-gtk/Makefile                                1.26
- net/transmission-qt/Makefile                                  1.30
- net/transmission/Makefile                                    1.13
- net/transmission/distinfo                                    1.13
- net/transmission/patches/patch-libtransmission_quark.c        1.1
- net/transmission/patches/patch-libtransmission_quark.h        1.1
- net/transmission/patches/patch-libtransmission_rpc-server.c  1.1
- net/transmission/patches/patch-libtransmission_rpc-server.h  1.1
- net/transmission/patches/patch-libtransmission_session.c      1.1
- net/transmission/patches/patch-libtransmission_transmission.h 1.1
- net/transmission/patches/patch-libtransmission_web.c          1.1

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Jan 16 09:37:00 UTC 2018

  Modified Files:
  pkgsrc/net/transmission: Makefile distinfo
  pkgsrc/net/transmission-gtk: Makefile
  pkgsrc/net/transmission-qt: Makefile
  Added Files:
  pkgsrc/net/transmission/patches: patch-libtransmission_quark.c
      patch-libtransmission_quark.h patch-libtransmission_rpc-server.c
      patch-libtransmission_rpc-server.h patch-libtransmission_session.c
      patch-libtransmission_transmission.h patch-libtransmission_web.c

  Log Message:
  transmission*: Fix security issue

  Fix a weakness that allows remote code execution via the Transmission
  RPC server using DNS rebinding:

  https://bugs.chromium.org/p/project-zero/issues/detail?id47

  Patch adapted from Tavis Ormandy's patch on the Transmission master
  branch to the Transmission 2.92 release by Leo Famulari
  <leo@famulari.name>:

  https://github.com/transmission/transmission/pull/468/commits

  Via FreeBSD ports.

  Bump PKGREVISION.

  To generate a diff of this commit:
  cvs rdiff -u -r1.12 -r1.13 pkgsrc/net/transmission/Makefile \
      pkgsrc/net/transmission/distinfo
  cvs rdiff -u -r1.25 -r1.26 pkgsrc/net/transmission-gtk/Makefile
  cvs rdiff -u -r1.29 -r1.30 pkgsrc/net/transmission-qt/Makefile
  cvs rdiff -u -r0 -r1.1 \
      pkgsrc/net/transmission/patches/patch-libtransmission_quark.c \
      pkgsrc/net/transmission/patches/patch-libtransmission_quark.h \
      pkgsrc/net/transmission/patches/patch-libtransmission_rpc-server.c \
      pkgsrc/net/transmission/patches/patch-libtransmission_rpc-server.h \
      pkgsrc/net/transmission/patches/patch-libtransmission_session.c \
      pkgsrc/net/transmission/patches/patch-libtransmission_transmission.h \
      pkgsrc/net/transmission/patches/patch-libtransmission_web.c

(spz)

2018-01-19 20:26:39 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5682 - requested by maya
cross/cross-libtool-base: build fix

Revisions pulled up:
- cross/cross-libtool-base/PLIST                                1.2

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: maya
  Date: Tue Jan 16 09:34:40 UTC 2018

  Modified Files:
  pkgsrc/cross/cross-libtool-base: PLIST

  Log Message:
  cross-libtool-base: catch up with libtool-base 2.4.6 PLIST changes.

  >From Harold Gutch in PR pkg/52921

  To generate a diff of this commit:
  cvs rdiff -u -r1.1 -r1.2 pkgsrc/cross/cross-libtool-base/PLIST

(spz)

2018-01-19 20:25:02 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5681 - requested by he
fonts/fontconfig: build fix

Revisions pulled up:
- fonts/fontconfig/Makefile                                    1.103
- fonts/fontconfig/distinfo                                    1.62
- fonts/fontconfig/patches/patch-src_fcfreetype.c              1.1

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: he
  Date: Mon Jan 15 08:59:15 UTC 2018

  Modified Files:
  pkgsrc/fonts/fontconfig: Makefile distinfo
  Added Files:
  pkgsrc/fonts/fontconfig/patches: patch-src_fcfreetype.c

  Log Message:
  Add a workaround for the Old in-tree fontconfig headers
  on netbsd-6 (build fix).
  Bump PKGREVISION.

  To generate a diff of this commit:
  cvs rdiff -u -r1.102 -r1.103 pkgsrc/fonts/fontconfig/Makefile
  cvs rdiff -u -r1.61 -r1.62 pkgsrc/fonts/fontconfig/distinfo
  cvs rdiff -u -r0 -r1.1 pkgsrc/fonts/fontconfig/patches/patch-src_fcfreetype.c

(spz)

2018-01-19 20:22:41 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5680 - requested by maya
security/sudo: function fix

Revisions pulled up:
- security/sudo/Makefile                                        1.158
- security/sudo/distinfo                                        1.94
- security/sudo/patches/patch-lib_util_gethostname.c            1.1

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: maya
  Date: Sun Jan 14 15:29:38 UTC 2018

  Modified Files:
  pkgsrc/security/sudo: Makefile distinfo
  Added Files:
  pkgsrc/security/sudo/patches: patch-lib_util_gethostname.c

  Log Message:
  sudo: avoid segfault if hostname is empty

  from andrew hall in pr pkg/52923
  PKGREVISION++

  To generate a diff of this commit:
  cvs rdiff -u -r1.157 -r1.158 pkgsrc/security/sudo/Makefile
  cvs rdiff -u -r1.93 -r1.94 pkgsrc/security/sudo/distinfo
  cvs rdiff -u -r0 -r1.1 \
      pkgsrc/security/sudo/patches/patch-lib_util_gethostname.c

(spz)

2018-01-19 20:20:44 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5679 - requested by wiz
devel/global: security update

Revisions pulled up:
- devel/global/Makefile                                        1.69
- devel/global/PLIST                                            1.26
- devel/global/distinfo                                        1.33

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: wiz
  Date: Wed Jan 10 09:51:57 UTC 2018

  Modified Files:
  pkgsrc/devel/global: Makefile PLIST distinfo

  Log Message:
  global: update to 6.6.1.

  Version 6.6.1 - December 16 2017

  [FIXED BUG]
  o gozilla: A critical vulnerability (CVE-2017-17531) was found in a unknown
    function of gozilla(1). It allows remote attackers to execute arbitrary
    code via a crafted URL. All gozilla(1) before GLOBAL-6.6.1 have the vulnerability.
    Now it is fixed.

  - What is the unknown function?
  Gozilla accepts a URL as an argument, and invokes a web browser with the URL.
  Though it is undocumented, it is implied in the online manual as follows:

  > BUGS
  >        Gozilla can accept not only source files but also text files,
  >        directories, HTML files and even URLs, because it is omnivorous.

  Version 6.6 - December 12 2017

  [CHANGES]
  New facilities:
  o gtags: Added support for glob patterns in langmap variable in gtags.conf(5).
    Now, you can treat source files without extension like ctags(1).
    (e.g. :langmap=Make\:.mak.mk([Mm]akefile):)

  Changed:
  o gozilla: Changed the default browser from 'mozilla' to 'firefox'.
  o gtags.conf.in: Updated to adapt to the latest ctags(s).
    Removed: common-ctags-maps
    Updated: exuberant-ctags, universal-ctags

  [INCOMPATIBLE CHANGES]
  o universal-ctags.la: The --extra option in Exuberant-ctags is renamed
    to --extras (plural) in Universal-ctags for making consistent with
    --kinds-<LANG> and --fields.

  [FIXED BUGS]
  o gtags: (parser error) picked up a typedef name as both of definition
    and reference. Now it works.
  Input:
  [a.h]
  typedef struct a A;

  $ global -x A
  A                  1 a.h              typedef struct a A;
  $ global -x A -r
  (global-6.5.7)
  A                  1 a.h              typedef struct a A;
  (global-6.6)
  no output

  o global: the -i option does not work correctly in some conditions.
    Now it works.
  o global: didn't accept pattern as a string literal with the --from-here
    option, even if the --literal option was specified. Now, global(1)
    accepts pattern as a string literal with the --literal option.
  o libdb: there was 4 Gbyte limitation on the system where `off_t' is 64 bits
    and `long' is 32 bits. Now it is eliminated.
  o libparser: php parser was not reset state for each source file.
    So, it was producing unintelligible results. Now it is fixed.
  o gozilla: with wrong argument caused segmentation violation.
  $ gozilla -d
  Segmentation fault: 11
    Now it displays usage.

  To generate a diff of this commit:
  cvs rdiff -u -r1.68 -r1.69 pkgsrc/devel/global/Makefile
  cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/global/PLIST
  cvs rdiff -u -r1.32 -r1.33 pkgsrc/devel/global/distinfo

(spz)

2018-01-19 20:18:48 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5678 - requested by maya
chat/irssi: security update
chat/irssi-icb: dependent update
chat/irssi-xmpp: dependent update

Revisions pulled up:
- chat/irssi-icb/distinfo                                      1.32
- chat/irssi-xmpp/distinfo                                      1.14
- chat/irssi/Makefile                                          1.85
- chat/irssi/Makefile.common                                    1.26
- chat/irssi/distinfo                                          1.45

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: maya
  Date: Thu Jan 11 13:57:37 UTC 2018

  Modified Files:
  pkgsrc/chat/irssi: Makefile Makefile.common distinfo
  pkgsrc/chat/irssi-icb: distinfo
  pkgsrc/chat/irssi-xmpp: distinfo

  Log Message:
  irssi*: security update to 1.0.6.

  v1.0.6 2018-01-07 The Irssi team <staff@irssi.org>
  - Fix invalid memory access when reading hilight configuration
            (#787, #788).
  - Fix null pointer dereference when the channel topic is set
            without specifying a sender (GL#20, GL!25).
  - Fix return of random memory when using incomplete escape
            codes (GL#21, GL!26).
  - Fix heap buffer overflow when completing certain strings
            (GL#19, GL!27).
  - Fix return of random memory when using an incomplete
            variable argument (GL#18, GL!28).

  To generate a diff of this commit:
  cvs rdiff -u -r1.84 -r1.85 pkgsrc/chat/irssi/Makefile
  cvs rdiff -u -r1.25 -r1.26 pkgsrc/chat/irssi/Makefile.common
  cvs rdiff -u -r1.44 -r1.45 pkgsrc/chat/irssi/distinfo
  cvs rdiff -u -r1.31 -r1.32 pkgsrc/chat/irssi-icb/distinfo
  cvs rdiff -u -r1.13 -r1.14 pkgsrc/chat/irssi-xmpp/distinfo

(spz)

2018-01-19 13:36:42 UTC MAIN commitmail json YAML

Pass --disable-pinentry-fltk to configure to fix build when fltk installed

(abs)

2018-01-19 12:45:41 UTC MAIN commitmail json YAML

2018-01-19 11:43:55 UTC MAIN commitmail json YAML

doc: Updated devel/boehm-gc to 7.6.2nb1

(wiz)

2018-01-19 11:43:46 UTC MAIN commitmail json YAML

boehm-gc: add upstream commit for libtool version

In 7.6.2, upstream intentionally but badly-advised bumped their
library major version number. In 7.6.4, they'll undo that change.
Instead of bumping twice in pkgsrc, follow their lead and get the
change in now.

See https://github.com/ivmai/bdwgc/issues/197

Bump PKGREVISION.

(wiz)

2018-01-19 11:33:27 UTC MAIN commitmail json YAML

p5-Inline-C: update DEPENDS

(wiz)

2018-01-19 11:28:03 UTC MAIN commitmail json YAML

p5-Capture-Tiny: remove unneeded DEPENDS

(wiz)

2018-01-19 11:26:20 UTC MAIN commitmail json YAML

p5-Try-Tiny: add comment about test dependency

(wiz)

2018-01-19 11:24:11 UTC MAIN commitmail json YAML

p5-Path-Tiny: remove unneeded build dependencies

(wiz)

2018-01-19 10:32:51 UTC MAIN commitmail json YAML

kde4: fix kdelibs4 version.

(wiz)

2018-01-19 10:10:36 UTC MAIN commitmail json YAML

Note update of net/unbound to 1.6.8.

(he)

2018-01-19 10:10:03 UTC MAIN commitmail json YAML

Update to version 1.6.8:

Bug fixes:
- patch for CVE-2017-15105: vulnerability in the processing of
  wildcard synthesized NSEC records.

(he)

2018-01-19 10:04:58 UTC MAIN commitmail json YAML

Updated devel/py-construct, devel/py-setuptools_scm

(adam)

2018-01-19 10:04:36 UTC MAIN commitmail json YAML

py-setuptools_scm: updated to 1.15.7

v1.15.7
Re-use samefile backport as developed in jaraco.windows, and only use the backport where samefile is not available.

(adam)

2018-01-19 10:00:42 UTC MAIN commitmail json YAML

py-construct: updated to 2.8.22

2.8.22:
Bug fixes.

(adam)

2018-01-19 09:56:59 UTC MAIN commitmail json YAML

Updated www/py-cheroot, www/py-cherrypy

(adam)

2018-01-19 09:56:27 UTC MAIN commitmail json YAML

py-cherrypy: updated to 13.1.0

v13.1.0
CaseInsensitiveDict now re-uses the generalized functionality from jaraco.collections to provide a more complete interface for a CaseInsensitiveDict and HeaderMap.
Users are encouraged to use the implementation from jaraco.collections except when dealing with headers in CherryPy.

(adam)

2018-01-19 09:55:38 UTC MAIN commitmail json YAML

py-cheroot: updated to 6.0.0

v6.0.0
Drop support for Python 2.6, 3.1, 3.2, and 3.3.
Also drop built-in SSL support for Python 2.7 earlier than 2.7.9.

(adam)

2018-01-19 09:45:11 UTC MAIN commitmail json YAML

p5-File-Copy-Recursive: switch TEST_DEPENDS back to BUILD_DEPENDS

In pbulk with PKGSRC_RUN_TESTS, test dependencies are not installed
but expected.

(wiz)

2018-01-19 09:44:36 UTC MAIN commitmail json YAML

p5-Net-SSLeay: switch TEST_DEPENDS back to BUILD_DEPENDS

In pbulk with PKGSRC_RUN_TESTS, test dependencies are not installed
but expected.

(wiz)

2018-01-19 09:27:48 UTC MAIN commitmail json YAML

p5-Path-Tiny: remove unused build dependency

Marked as 'recommended' in META.json, but not used AFAICT.
At least tests still run successfully.

(wiz)

2018-01-19 09:20:22 UTC MAIN commitmail json YAML

Updated lang/py-asttokens, databases/py-multidict

(adam)

2018-01-19 09:19:56 UTC MAIN commitmail json YAML

py-multidict: updated to 4.0.0

4.0.0:
Accept multiple keys in MultiDict.update() and CIMultiDict.update()

(adam)

2018-01-19 09:16:17 UTC MAIN commitmail json YAML

py-asttokens: updated to 1.1.8

1.1.8:
Bug fixes.

(adam)

2018-01-19 09:10:46 UTC MAIN commitmail json YAML

Updated devel/py-hypothesis, security/py-requests-kerberos

(adam)

2018-01-19 09:10:04 UTC MAIN commitmail json YAML

py-requests-kerberos: updated to 0.12.0

0.12.0:
- Add support for channel binding tokens (assumes pykerberos support >= 1.2.1)
- Add support for kerberos message encryption (assumes pykerberos support >= 1.2.1)
- Misc CI/test fixes

(adam)

2018-01-19 08:58:25 UTC MAIN commitmail json YAML

py-hypothesis: updated to 3.44.16

3.44.16:
This release improves test case reduction for recursive data structures. Hypothesis now guarantees that whenever a strategy calls itself recursively (usually this will happen because you are using ~hypothesis.strategies.deferred), any recursive call may replace the top level value. e.g. given a tree structure, Hypothesis will always try replacing it with a subtree.

Additionally this introduces a new heuristic that may in some circumstances significantly speed up test case reduction - Hypothesis should be better at immediately replacing elements drawn inside another strategy with their minimal possible value.

3.44.15:
~hypothesis.strategies.from_type can now resolve recursive types such as binary trees. Detection of non-type arguments has also improved, leading to better error messages in many cases involving

3.44.14:
This release fixes a bug in the shrinker that prevented the optimisations in 3.44.6 from working in some cases. It would not have worked correctly when filtered examples were nested (e.g. with a set of integers in some range).

This would not have resulted in any correctness problems, but shrinking may have been slower than it otherwise could be.

3.44.13:
This release changes the average bit length of values drawn from ~hypothesis.strategies.integers to be much smaller. Additionally it changes the shrinking order so that now size is considered before sign - e.g. -1 will be preferred to +10.

The new internal format for integers required some changes to the minimizer to make work well, so you may also see some improvements to example quality in unrelated areas.

3.44.12:
This changes Hypothesis's internal implementation of weighted sampling. This will affect example distribution and quality, but you shouldn't see any other effects.

3.44.11:
This is a change to some internals around how Hypothesis handles avoiding generating duplicate examples and seeking out novel regions of the search space.

You are unlikely to see much difference as a result of it, but it fixes a bug where an internal assertion could theoretically be triggered and has some minor effects on the distribution of examples so could potentially find bugs that have previously been missed.

3.44.10:
This patch avoids creating debug statements when debugging is disabled. Profiling suggests this is a 5-10% performance improvement

(adam)

2018-01-19 07:49:46 UTC MAIN commitmail json YAML

Updated graphics/libimagequant, devel/libuv, devel/cmake

(adam)

2018-01-19 07:49:06 UTC MAIN commitmail json YAML

cmake: updated to 3.10.2

Changes in 3.10.2:
KWIML: Backport RISC-V update to CMake 3.10
FindPostgreSQL: Add support for PG10
cmGraphVizWriter: Updated to create and follow dependers for interface targets
Autogen: Fix for problematic nested list separator
Autogen: Ignore not existing source files in cmMakefile

(adam)

2018-01-19 07:42:25 UTC MAIN commitmail json YAML

libuv: updated to 1.19.0

Version 1.19.0 (Stable):
* core: add getter/setter functions for easier ABI compat
* unix: make get(set)_process_title MT-safe
* unix,win: wait for threads to start
* test: add threadpool init/teardown test
* win, process: uv_kill improvements
* win: set _WIN32_WINNT to 0x0600
* zos: implement uv_fs_event* functions
* unix,tcp: avoid marking server sockets connected
* doc: mark Windows 7 as Tier 1 support
* win: map 0.0.0.0 and :: addresses to localhost
* build: install libuv.pc unconditionally
* test: remove custom timeout for thread test on ppc
* test: allow multicast not permitted status
* test: allow net unreachable status in udp test
* unix: use SA_RESTART when setting our sighandler
* unix,fs: fix for potential partial reads/writes
* win,build: do not build executable installer for dll
* win: allow directory symlinks to be created in a non-elevated context
* zos,test: accept SIGKILL for flaky test
* win: use RemoveDirectoryW() instead of _wmrmdir()
* unix: fix uv_cpu_info() error on FreeBSD
* zos,test: decrease pings to avoid timeout

(adam)

2018-01-19 07:28:04 UTC MAIN commitmail json YAML

libimagequant: updated to 2.11.7

2.11.7:
Bug fixes.

(adam)

2018-01-18 19:19:51 UTC MAIN commitmail json YAML

doc: Updated www/trafficserver to 7.1.2

(fhajny)

2018-01-18 19:19:41 UTC MAIN commitmail json YAML

Update www/trafficserver to 7.1.2

- Coverity - 1021688 Uninitialized scalar field.
- Coverity 1021688: Uninitialized scalar field
- Coredump with server_session
- Update IMS handling table to include INM
- tsxs generation uses AM_C*FLAGS instead of C*FLAGS
- volume.config doesn't differentiate http/https
- adds clarifications on plugin use
- Add example command to generate session ticket
- Doc: Fix warning for footnote in cache arch docs.
- Fix the queue when reprioritize
- Session ticket resumption needs consistent CA-certificate version
- corrects HTTP status 0 to 302 on redirect
- Delay creation of transaction until user agent sends request.
- Fix logging of cache stale miss connecton error being reported as
- Explain how # of parents relates to fail_threshold
  total_connect_attempts
- only default cert matches signature_algorithm extension
- updates pre-commit hook to use specific clang-format
- TLS crashes in 7.1.1
- Add a metric for tracking RSS of traffic_server
- Limit the amount of memory that a HTTP/2 stream will allocate
- Remove unnecessary assertion
- Use std::min and std::max globally
- Fix #2372: Preserve Accept-Encoding header for H2 Server Push
  promise.
- Optimize: Use a positive number as the timeout of DNSEntry.
- Update s3auth test, removed cpp file and added the Catch main define
  in the unit test file
- Doc: Tweak makefiles to not build man pages for install if doc
  building is disabled.
- Fixed typo in cachekey plugin documentation
- Fix mem leak related to do_os_response() function
- Add flag to ignore out of bounds compile error for test
- 7.1.x Avoid sending duplicate push promise on same client session
- Log when ssl_multicert.config is successfully reloaded
- uses backoff to launch ts if crash was recent
- Fix the implementation of Http2DependencyTree
- For 7.1.x: move http 408 response logic into transaction
- Checking the retval of safe_getsockname() and safe_getpeername()
- Cleanup of bool conversion in Ptr.h for C++11.
- CID 1196423: Error handling issues  (CHECKED_RETURN)
- Issue with null ua_buffer_reader due to PR #2123
- malformed chunked responses will be cached under some terrible
  network circumstances
- Fix #2700 - single nameserver failover in DNSHandler failover
- Back port event loop changes from PR #2541
- Crash HttpTransactHeaders::insert_via_header_in_response (bad
  session?)
- Fixed 2707, assign server_session to nullptr after do
  `chain_abort_all`
- Set ua_session of Http2ConnectionState nullptr when ua_session is
  freed
- Cachekey pristine uri 7.1.x
- Prevent releasing streams simultaneously
- Send data fairly on H2 streams even if stream priority is disabled
- Include cstring to make the compiler stop complaining about strlen
- Treat SSL_ERROR_SSL as EPIPE within
  SSLNetVC::load_buffer_and_write()
- TS-5057: Add 103 Early Hints support
- Fix #2761. NetHandler needs to be initialized
- proxy.config.http.redirection_enabled doesn't appear to be
  overwritable
- Add traffic_server.memory.rss as a gauge to Epic
- More header_rewrite examples
- Backport of #2015, setup HttpSM for redirect
- Strict checks of RFC7540 8.1.2.2.
- Delete H2 stream before destroy
- Fix crash in H2 priority tree cleanup.
- Compile trafficserver with the musl libc
- Move Brotli library check into the library check section
- Send RST_STREAM frame when deleting a stream if it is not CLOSED
  state
- README: Alpine build instructions
- Unify H2 log format
- Correct the listen_backlog
- corrects response reason when failing to connect to origin
- Header Rewrite: rm-cookie operator has no effect on cache lookup
- Add protocol metrics to traffic_logstats
- Adds some basic documentation for traffic_logstats
- Fix crash from HttpSM::setup_100_continue_transfer
- Reverts the changes from TS-3054
- Cleans up some build issue and unecessary casts
- header_rewrite - Delete cookies if they are empty in rm-cookie
- Deprecates the coallapsed_connection plugin, use
  collapsed_forwarding
- Crash in Via response header (again)
- TransformVC may be double closed because there is a issue within
  HttpTunnel::chain_abort_all
- Assertion with gzip plugin enabled together with escalation
- Only allow the gzip/brotli transformation on 200 OK responses
- Stop ATS from crashing on kernel 4.14
- Removes the limit on the number of remap plugins per rule
- Increase write_vio.ndone only if sending DATA frame is succeeded
- header_rewrite - Delete space after semi colon when deleting cookies
  from a list
- logging: fix incorrect use of LogAccess::strlen()
- Build: Fix WCCP link error for 'make check' in traffic_manager.
- Fix race condition during testing rc2.
- Fix naming of average aggregate function

(fhajny)

2018-01-18 17:15:10 UTC MAIN commitmail json YAML

Updated textproc/cmark, multimedia/mkvtoolnix

(adam)

2018-01-18 17:14:41 UTC MAIN commitmail json YAML

mkvtoolnix: updated to 20.0.0

Version 20.0.0 "I Am The Sun":

Important notes

* Feature removal: several deprecated features have been removed:
  * mkvmerge: the deprecated options --identify-verbose (and its counterpart
    -I), --identify-for-gui, --identify-for-mmg and
    --identification-format verbose-text
  * all command line tools: support for the deprecated, old, proprietary format
    used for option files
  * all command line tools: support for passing command line options via the
    deprecated environment variables MKVTOOLNIX_OPTIONS, MKVEXTRACT_OPTIONS,
    MKVINFO_OPTIONS, MKVMERGE_OPTIONS and MKVPROPEDIT_OPTIONS

* mkvinfo: most of its code was re-written in order to lay the groundwork for
  including its functionality in MKVToolNix GUI but with more features than
  the existing mkvinfo GUI. The result is that a lot of its output has been
  changed slightly while keeping the basic layout. Changes include but aren't
  limited to:

  * Several element names are a bit clearer (e.g. Maximum cache instead of
    MaxCache).
  * All timestamps and durations are now output as nanoseconds in formatted
    form (e.g. 01:23:45.67890123). All additional formats (e.g. floating
    point numbers output in seconds or milliseconds) were removed.
  * Element names for chapters and tags are now translated if a translation is
    available.
  * Elements located in wrong positions within the Matroska document are
    handled better.

  While mkvinfo's output is mostly kept very stable, it is not designed to be
  parsed by other utilities. Even though I've tried hard to cram all changes
  and cleanups into this version, additional changes may be made in the next
  couple of releases depending on user feedback and bug reports.

New features and enhancements

* mkvmerge: AVC/h.264 packetizer (framed): access unit delimiter NALUs will
  now be removed.

Bug fixes

* mkvmerge: AVC/h.264 parser: when fixing the bitstream timing information
  mkvmerge will now use exact representations of the desired field duration if
  possible. For example, when indicating 50 fields/second num_units_in_tick
  is set to 1 and time_scale to 50 instead of 5368709 and 268435456.
* mkvmerge: AVC/h.264 parser: mkvmerge no longer assumes that encountering
  sequence parameter set or picture parameter set NALUs signal the start of a
  new frame.
* mkvmerge: AVC/h.264 packetizer (framed): when mkvmerge is told to fix the
  bitstream timing information, it will now update all SPS NALUs, not just the
  ones in the AVCC.
* mkvmerge: MPEG TS reader: TS packet payloads will only be treated as PES
  packets if the payload actually starts with a PES start code. The prior
  behavior led to wrong timestamps and potentially broken frame data.
* mkvmerge: MPEG TS reader: mkvmerge will now drop incomplete PES packets as
  soon as an error is detected in the transport stream instead of passing the
  incomplete frame to the packetizer. An error is assumed either if the
  transport_error_indicator flag is set or if the value of the
  continuity_counter header field doesn't match the expected value.
* mkvmerge: Opus: when re-muxing Opus from Matroska mkvmerge will now write
  "block duration" elements for all block groups where a "discard padding" is
  set, too.
* mkvmerge: SRT reader: mkvmerge can now handle SRT files with timestamps
  without decimal places (e.g. 00:01:15 instead of 00:01:15.000).
* mkvmerge: read buffer I/O class: the class could get out of sync regarding
  the file position of the underlying file I/O class causing wrong data to be
  returned on subsequent read operations. One result was that trying to
  identifying MPLS files that refer to very short M2TS files caused mkvmerge
  to segfault.
* mkvmerge: multiplexer core: if there's a gap in audio timestamps, a new
  block group/lace will be started for the first frame after each gap. Before
  the fix the frame after the gap was often stored in the previous block group
  causing the gap to be in the wrong place: at the end of that block
  group.
* mkvextract: AVC/h.264: if two consecutive IDR frames with the same
  idr_pic_id parameter and no access unit delimiters are found between them,
  mkvextract will insert an access unit delimiter in order to signal the start
  of a new access unit.
* MKVToolNix GUI: update check dialog: Markdown links will now be converted to
  clickable links.
* build system: fixed a race condition when creating new directories if rake
  is run with -jN in newer versions of Ruby/rake.

Build system changes
* [cmark](https://github.com/commonmark/cmark), the CommonMark parsing and
  rendering library in C, is now required when building the GUIs.

(adam)

2018-01-18 17:11:38 UTC MAIN commitmail json YAML

cmark: updated to 0.28.3

[0.28.3]
* Include GNUInstallDirs in src/CMakeLists.txt.
  This fixes build problems on some cmake versions.

[0.28.2]
* Fixed regression in install dest for static library.
  Due to a mistake, 0.28.1 installed libcmark.a into include/.

[0.28.1]
* --smart: open quote can never occur right after ] or ).
* Fix quadratic behavior in finalize (Vicent Marti).
* Don't use CMAKE_INSTALL_LIBDIR to create libcmark.pc.
  This wasn't getting set in processing libcmark.pc.in, and we
  were getting the wrong entry in libcmark.pc.
  The new approach sets an internal libdir variable to
  lib${LIB_SUFFIX}.  This variable is used both to set the
  install destination and in the libcmark.pc.in template.
* Update README.md, replace make astyle with make format

(adam)

2018-01-18 17:08:56 UTC MAIN commitmail json YAML

devel/py-protobuf: Regen distinfo

This should have been updated when devel/protobuf was updated to
3.5.1.

(minskim)

2018-01-18 16:43:30 UTC MAIN commitmail json YAML

Updated security/lynis to 2.6.0

(sborrill)

2018-01-18 16:42:40 UTC MAIN commitmail json YAML

lynis: update to 2.6.0

Changes:
--------
* Binary paths are now sorted
* Greek language added
* systemd detection improved
* VirtualBox detection extended
* Several code enhancements

Tests:
------
* [PHP-2379] - Small enhancement to resolve error on screen in some cases
* [MALW-3280] - Improved detection for BitDefender tooling

(sborrill)

2018-01-18 16:26:05 UTC MAIN commitmail json YAML

Make sure .orig files aren't installed

(sborrill)

2018-01-18 16:14:01 UTC MAIN commitmail json YAML

doc: Updated www/contao35 to 3.5.32

(taca)

2018-01-18 16:13:31 UTC MAIN commitmail json YAML

www/contao35: update to 3.5.32

Contao 3.5.32 is available 2018/01/18 09:48 by Leo Feyer

Contao version 3.5.32 is available. The bugfix release fixes an XSS
vulnerability in the newsletter extension (CVE-2018-5478).

CVE-2018-5478

The vulnerability is in the "unsubscribe" module of the newsletter extension
and can easily be exploited by anyone in the front end. We therefore strongly
recommend you to update.

The problem affects Contao 2.0.0 to 3.5.31 and the Contao newsletter bundle
4.0.0 to 4.0.3.

If you are not using the newsletter extension or the "unsubscribe" module,
your installation is not affected by the vulnerability.

(taca)

2018-01-18 14:39:59 UTC MAIN commitmail json YAML

2018-01-18 13:39:47 UTC MAIN commitmail json YAML

Updated www/py-django-import-export

(adam)

2018-01-18 13:36:14 UTC MAIN commitmail json YAML

py-django-import-export: updated to 0.7.0

0.7.0:
skip_row override example
Testing against Django 2.0 should not fail
Refactor transaction handling
Resolves 703 fields shadowed
discourage installation as a zipped egg
Fixed middleware settings in test app for Django 2.x

(adam)

2018-01-18 13:22:19 UTC MAIN commitmail json YAML

2018-01-18 12:42:08 UTC MAIN commitmail json YAML

Updated devel/py-more-itertools, devel/py-babel

(adam)

2018-01-18 12:41:41 UTC MAIN commitmail json YAML

py-babel: updated to 2.5.3

Version 2.5.3:
This is a maintenance release that reverts undesired API-breaking changes that slipped into 2.5.2

Version 2.5.2:
Bugfixes
* Revert the unnecessary PyInstaller fixes from 2.5.0 and 2.5.1

(adam)

2018-01-18 12:39:14 UTC MAIN commitmail json YAML

Fix packaging in non ecl case

(ryoon)

2018-01-18 12:38:16 UTC MAIN commitmail json YAML

py-more-itertools: updated to 4.0.1

4.0.1
No code changes - this release fixes how the docs display on PyPI.

4.0.0
New itertools:
* consecutive_groups (Based on the example in the Python 2.4 docs)
* seekable (If you're looking for how to "reset" an iterator, you're in luck!)
* exactly_n
* run_length.encode and :func:run_length.decode
* difference

Improvements to existing itertools:
The number of items between filler elements in * intersperse can now be specified
* distinct_permutations and :func:peekable got some minor adjustments
* always_iterable now returns an iterator object. It also now allows different types to be considered iterable
* bucket can now limit the keys it stores in memory
* one now allows for custom exceptions

Other changes:
A few typos were fixed
All tests can now be run with python setup.py test

(adam)

2018-01-18 12:18:41 UTC MAIN commitmail json YAML

PLIST fix for Darwin aka macOS

(adam)

2018-01-18 11:50:51 UTC MAIN commitmail json YAML

2018-01-18 11:37:24 UTC MAIN commitmail json YAML

Updated qt5-qtmacextras

(markd)