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 (4h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 04:52:28 UTC Now

2021-09-17 12:51:18 UTC MAIN commitmail json YAML

qbittorrent: updated to 4.3.8

v4.3.8
- BUGFIX: Delay processing of watched folders
- BUGFIX: Use the same icon for selecting folders/files (Chocobo1)
- BUGFIX: Use default upper limits for ddns entries (Chocobo1)
- WEBUI: Expose SSRF mitigation
- WEBUI: Update webui libraries (Chocobo1)
- WEBUI: Group trackers by hostname
- WEBUI: Improve "last activity" calculation in WebAPI
- WINDOWS: NSIS: Add Polish translation

(adam)

2021-09-17 12:49:57 UTC MAIN commitmail json YAML

apache24: updated to 2.4.49

Changes with Apache 2.4.49

*) SECURITY: CVE-2021-40438 (cve.mitre.org)
  mod_proxy: Server Side Request Forgery (SSRF) vulnerabilty [Yann Ylavic]

*) SECURITY: CVE-2021-39275 (cve.mitre.org)
  core: ap_escape_quotes buffer overflow

*) SECURITY: CVE-2021-36160 (cve.mitre.org)
  mod_proxy_uwsgi: Out of bound read vulnerability [Yann Ylavic]

*) SECURITY: CVE-2021-34798 (cve.mitre.org)
  core: null pointer dereference on malformed request

*) SECURITY: CVE-2021-33193 (cve.mitre.org)
  mod_http2: Request splitting vulnerability with mod_proxy [Stefan Eissing]

*) core/mod_proxy/mod_ssl:
  Adding `outgoing` flag to conn_rec, indicating a connection is
  initiated by the server to somewhere, in contrast to incoming
  connections from clients.
  Adding 'ap_ssl_bind_outgoing()` function that marks a connection
  as outgoing and is used by mod_proxy instead of the previous
  optional function `ssl_engine_set`. This enables other SSL
  module to secure proxy connections.
  The optional functions `ssl_engine_set`, `ssl_engine_disable` and
  `ssl_proxy_enable` are now provided by the core to have backward
  compatibility with non-httpd modules that might use them. mod_ssl
  itself no longer registers these functions, but keeps them in its
  header for backward compatibility.
  The core provided optional function wrap any registered function
  like it was done for `ssl_is_ssl`.
  [Stefan Eissing]

*) mod_ssl: Support logging private key material for use with
  wireshark via log file given by SSLKEYLOGFILE environment
  variable.  Requires OpenSSL 1.1.1.  PR 63391.  [Joe Orton]

*) mod_proxy: Do not canonicalize the proxied URL when both "nocanon" and
  "ProxyPassInterpolateEnv On" are configured.  PR 65549.
  [Joel Self <joelself gmail.com>]

*) mpm_event: Fix children processes possibly not stopped on graceful
  restart.  PR 63169.  [Joel Self <joelself gmail.com>]

*) mod_proxy: Fix a potential infinite loop when tunneling Upgrade(d)
  protocols from mod_proxy_http, and a timeout triggering falsely when
  using mod_proxy_wstunnel, mod_proxy_connect or mod_proxy_http with
  upgrade= setting.  PRs 65521 and 65519.  [Yann Ylavic]

*) mod_unique_id: Reduce the time window where duplicates may be generated
  PR 65159
  [Christophe Jaillet]

*) mpm_prefork: Block signals for child_init hooks to prevent potential
  threads created from there to catch MPM's signals.
  [Ruediger Pluem, Yann Ylavic]

*) Revert "mod_unique_id: Fix potential duplicated ID generation under heavy load.
  PR 65159" added in 2.4.47.
  This causes issue on Windows.
  [Christophe Jaillet]

*) mod_proxy_uwsgi: Fix PATH_INFO setting for generic worker.  [Yann Ylavic]

*) mod_md: Certificate/keys pairs are verified as matching before a renewal is accepted
  as successful or a staged renewal is replacing the existing certificates.
  This avoid potential mess ups in the md store file system to render the active
  certificates non-working. [@mkauf]

*) mod_proxy: Faster unix socket path parsing in the "proxy:" URL.
  [Yann Ylavic]

*) mod_ssl: tighten the handling of ALPN for outgoing (proxy)
  connections. If ALPN protocols are provided and sent to the
  remote server, the received protocol selected is inspected
  and checked for a match. Without match, the peer handshake
  fails.
  An exception is the proposal of "http/1.1" where it is
  accepted if the remote server did not answer ALPN with
  a selected protocol. This accomodates for hosts that do
  not observe/support ALPN and speak http/1.x be default.

*) mod_proxy: Fix possible reuse/merging of Proxy(Pass)Match worker instances
  with others when their URLs contain a '$' substitution.  PR 65419 + 65429.
  [Yann Ylavic]

*) mod_dav: Add method_precondition hook. WebDAV extensions define
  conditions that must exist before a WebDAV method can be executed.
  This hook allows a WebDAV extension to verify these preconditions.
  [Graham Leggett]

*) Add hooks deliver_report and gather_reports to mod_dav.h. Allows other
  modules apart from versioning implementations to handle the REPORT method.
  [Graham Leggett]

*) Add dav_get_provider(), dav_open_lockdb(), dav_close_lockdb() and
  dav_get_resource() to mod_dav.h. [Graham Leggett]

*) core: fix ap_escape_quotes substitution logic. [Eric Covener]

*) Easy patches: synch 2.4.x and trunk
  - mod_auth_basic: Use ap_cstr_casecmp instead of strcasecmp.
  - mod_ldap: log and abort locking errors.
  - mod_ldap: style fix for r1831165
  - mod_ldap: build break fix for r1831165
  - mod_deflate: Avoid hard-coded "%ld" format strings in mod_deflate's logging statements
  - mod_deflate: Use apr_uint64_t instead of uint64_t (follow up to r1849590)
  - mod_forensic: Follow up to r1856490: missing one mod_log_forensic test_char_table case.
  - mod_rewrite: Save a few cycles.
  - mod_request: Fix a comment (missing '_' in 'keep_body') and some style issues
  - core: remove extra whitespace in HTTP_NOT_IMPLEMENTED
  [Christophe Jaillet]

*) core/mpm: add hook 'child_stopping` that gets called when the MPM is
  stopping a child process. The additional `graceful` parameter allows
  registered hooks to free resources early during a graceful shutdown.
  [Yann Ylavic, Stefan Eissing]

*) mod_proxy: Fix icomplete initialization of BalancerMember(s) from the
  balancer-manager, which can lead to a crash.  [Yann Ylavic]

*) mpm_event: Fix graceful stop/restart of children processes if connections
  are in lingering close for too long.  [Yann Ylavic]

*) mod_md: fixed a potential null pointer dereference if ACME/OCSP
  server returned 2xx responses without content type. Reported by chuangwen.
  [chuangwen, Stefan Eissing]

*) mod_md:
  - Domain names in `<MDomain ...>` can now appear in quoted form.
  - Fixed a failure in ACME challenge selection that aborted further searches
    when the tls-alpn-01 method did not seem to be suitable.
  - Changed the tls-alpn-01 setup to only become unsuitable when none of the
    dns names showed support for a configured 'Protocols ... acme-tls/1'. This
    allows use of tls-alpn-01 for dns names that are not mapped to a VirtualHost.
  [Stefan Eissing]

*) Add CPING to health check logic. [Jean-Frederic Clere]

*) core: Split ap_create_request() from ap_read_request(). [Graham Leggett]

*) core, h2: common ap_parse_request_line() and ap_check_request_header()
  code. [Yann Ylavic]

*) core: Add StrictHostCheck to allow unconfigured hostnames to be
  rejected. [Eric Covener]

*) htcacheclean: Improve help messages.  [Christophe Jaillet]

(adam)

2021-09-17 10:27:34 UTC MAIN commitmail json YAML

qvwm: add missing libraries for the SunOS linker

(nia)

2021-09-17 10:24:08 UTC MAIN commitmail json YAML

luakit: add missing libraries on SunOS

(nia)

2021-09-17 10:20:04 UTC MAIN commitmail json YAML

rxvt-unicode: needs libXt for Intrinsic.h

(nia)

2021-09-17 09:42:10 UTC MAIN commitmail json YAML

doc: Added sysutils/syslog-ng-snmp version 3.34.1

(wiz)

2021-09-17 09:42:00 UTC MAIN commitmail json YAML

sysutils/Makefile: + syslog-ng-snmp

(wiz)

2021-09-17 09:41:44 UTC MAIN commitmail json YAML

sysutils/syslog-ng-snmp: import syslog-ng-snmp-3.34.1

Based on files provided by Chavdar Ivanov.

Syslog-ng tries to fill the gaps original syslogd's were lacking:
* powerful configurability
* filtering based on message content
* message integrity, message encryption
* portability
* better network forwarding

This package contains the snmp module.

(wiz)

2021-09-17 09:39:54 UTC MAIN commitmail json YAML

syslog-ng: do not override COMMENT (for modules)

Disable SNMP by default. Add comments for upcoming package.

(wiz)

2021-09-17 07:14:17 UTC MAIN commitmail json YAML

pax11publish.1 is only installed if we build with x11.

(schmonz)

2021-09-17 06:47:30 UTC MAIN commitmail json YAML

2021-09-17 06:40:39 UTC MAIN commitmail json YAML

ardour: Point at LOCAL_PORTS since someone uploaded a non-matching
distfile over mine.

(nia)

2021-09-17 05:35:01 UTC MAIN commitmail json YAML

Fix build for non-amd64 NetBSD architectures (already reported upstream)

(martin)

2021-09-17 00:10:21 UTC MAIN commitmail json YAML

2021-09-16 23:48:03 UTC MAIN commitmail json YAML

doc: Updated math/R-lme4 to 1.1.27.1

(mef)

2021-09-16 23:47:51 UTC MAIN commitmail json YAML

(math/R-lme4) Updated 1.1.21 to 1.1.27.1

HANGES IN VERSION 1.1-27.1:

  USER-VISIBLE CHANGES:

        * 'influence.merMod' allows user-specified starting parameters

        * cleaned up performance vignette

  BUG FIXES:

        * 'cooks.distance' now works with objects computed by
          'influence' method

        * 'influence.merMod' now works with 'glmer' models using
          'nAGQ=0'

        * 'predict' (with new data) and 'simulate' methods now work
          for models with >100 levels in a random effect grouping
          variable (GH #631)

CHANGES IN VERSION 1.1-27 (2021-05-15):

  USER-VISIBLE CHANGES:

        * improvements from Lionel Henry (via
          https://github.com/lme4/lme4/pull/587) to fix corner cases
          in data checking; also resolves GH #601 (allFit scoping)

        * 'getME(., "lower")' now has names (request of GH #609)

        * improved detection of 'NaN' in internal calculations
          (typically due to underflow/overflow or out-of-bounds linear
          predictors from non-constraining link functions such as
          identity-link Gamma models)

        * 'influence.merMod' allows parallel computation

        * the 'statmod' package is no longer required unless
          attempting to simulate results from a model with an inverse
          Gaussian response

  BUG FIXES:

        * long formulas work better in 'anova' headings (GH #611)

CHANGES IN VERSION 1.1-26 (2020-11-30):

  BUG FIXES:

        * 'predict', 'model.frame(.,fixed.only=TRUE)' work with
          variable names containing spaces (GH #605)

        * 'simulate' works when original response variable was logical

        * 'densityplot' handles partly broken profiles more robustly

  NEW FEATURES:

        * 'thpr' method for 'densityplot()' (for plotting profiles
          scaled as densities) gets new arguments

CHANGES IN VERSION 1.1-25 (2020-10-23):

        * Set more tests to run only if environment variable
          'LME4_TEST_LEVEL'>1

CHANGES IN VERSION 1.1-24 (never on CRAN):

  USER-VISIBLE CHANGES:

        * 'anova()' now returns a p-value of 'NA' if the df difference
          between two models is 0 (implying they are equivalent
          models) (GH#583, @MetaEntropy)

        * speedup in 'coef()' for large models, by skipping
          conditional variance calculation (Alexander Bauer)

        * 'simulate.formula' machinery has changed slightly, for
          compatibility with the 'ergm' package (Pavel Krivitsky)

        * informational messages about (non-)convergence improved (GH
          #599)

        * improved error messages for 0 non-NA cases in data (GH #533)

  NEW FEATURES:

        * 'getME(.,"devfun")' now works for 'glmer' objects.
          Additionally, 'profile'/'confint' for GLMMs no longer depend
          on objects in the fitting environment remaining unchanged
          (GH #589). This change also affects likelihood profiling
          machinery; results of 'glmer' profiling/CIs may not match
          results from previous versions exactly.

  BUG FIXES:

        * improved handling/documentation of 'glmer.nb' controls (GH
          #556)

        * 'predict' works better for 'gamm4' objects (GH #575)

        * resolved some long-standing UBSAN issues (GH #561)

CHANGES IN VERSION 1.1-23 (2020-03-06):

    This is primarily for CRAN compliance (previous submission was
    retracted to allow time for downstream package adjustments).

        * Some PROTECT/UNPROTECT fixes

CHANGES IN VERSION 1.1-22 (never on CRAN):

  USER-VISIBLE CHANGES:

        * prediction now works better for factors with many levels
          (GH#467, solution by @sihoward)

        * minor changes to argument order in '[g]lmerControl'; default
          tolerance for convergence checks increased from 0.001 to
          0.002 for 'glmerControl' (now consistent with 'lmerControl')

        * 'lmer(*, family="<fam>")' is no longer valid; it had been
          deprecated since 2013-06.

        * 'lmer()', 'glmer()', and 'nlmer()' no longer have a formal
          '...' argument.  This defunctifies the use of a 'sparseX =
          .' argument and will reveal some user errors, where
          extraneous arguments were previously disregarded.

        * In 'isSingular(x, tol)', the default tolerance ('tol') has
          been increased from '1e-5' to '1e-4', the default of
          'check.conv.singular' in 'g?lmerControl()'.

        * for clarity and consistency with base R methods, some column
          names of 'anova()' output are changed: "Df" becomes "npar",
          "Chi Df" becomes "Df" (GH #528)

        * 'simulate()' now works with inverse-Gaussian models (GH #284
          revisited, @nahorp/Florian Hartig)

        * single-model mode of 'anova()' now warns about unused
          arguments in ...  (e.g. 'type="III"')

        * default tolerances for 'nloptwrap'/BOBYQA optimizer
          tightened ('xtol_abs' and 'ftol_abs' were 1e-6, now 1e-8).
          (To revert to former tolerances, use
          'control=lmerControl(optimizer="nloptwrap",
          optCtrl=list(xtol_abs=1e-6, ftol_abs=1e-6))'.)

  BUG FIXES:

        * improved checking for missing data (@lionel-)

        * internal 'checkZrank()' should be able to deal with
          ('Matrix' package) 'rankMatrix()' returning 'NA'.

        * 'allFit(fm)' now works for a model that had an explicit
          'control = lmerControl(..)' call.

        * internal 'getStart()' now works when model's 'start' was
          specified as a list, and when called from 'drop1()' on a
          submodel, fixing GH #521.

        * internal function 'mkdevfun' now works even if there is an
          extraneous 'getCall' function defined in the global
          environment (GH #535)

        * 'allFit()' works even if a variable with symbol 'i' is used
          somewhere in the original model call (GH #538, reported by
          Don Cohen); generally more robust

        * 'glmer.nb' works even if an alternative version of
          'negative.binomial' (other than the one from 'MASS') is
          loaded in the workspace (e.g. by the 'GLMMadaptive' package)
          (GH#516)

        * 'level' argument is now honoured by 'confint(...,
          type="boot", level=...)' (GH #543)

(mef)

2021-09-16 22:47:00 UTC MAIN commitmail json YAML

doc: Updated math/R-intervals to 0.15.2

(mef)

2021-09-16 22:46:50 UTC MAIN commitmail json YAML

(math/R-intervals) Updated 0.15.1 to 0.15.2, NEWS not updated

(mef)

2021-09-16 22:41:15 UTC MAIN commitmail json YAML

doc: Updated math/R-gtools to 3.9.2

(mef)

2021-09-16 22:41:01 UTC MAIN commitmail json YAML

(math/R-gtools) Updated 3.8.1 to 3.9.2

gtools 3.9.2 - 2021-06-03
-------------------------

Bug fixes:

- Fix missing man page and export for `combinations` and `permutations`.

Behind the scenes:

- Fixed more spelling/typographical errors, mostly in `NEWS.md`.

- Speed up `checkRversion` by removing checks for versions 2.x and 3.x.

gtools 3.9.1 - 2021-06-01
-------------------------

Bug fixes:

- Use valid HTTP request for example in `setTCPNoDelay` to prevent
  errors when running tests.

Behind the scenes:

- Fixed numerous spelling/typographical errors.

- Update obsolete http URLs to https

gtools 3.9.0 - 2021-05-31
-------------------------

New functions:

- New `script_file` and `script_path` functions to obtain the
  directory or full path to the currently executing script.

- New 'stat_mode` function to calculate the statistical mode (most
  frequently occurring value).

- New `capwords` function to apply title capitalization rules to a
  character vector.

- Move `baseOf` from `gplots` as requested by Steffen M旦ller. #2

New parameters:

- Add `scientific` parameter to `mixedsort` and `mixedorder` to
  control whether numbers in scientific notation are recognized.
  Resolved #7.

- Enhance `invalid` to detect `try-error` objects. #6

Bug fixes:

- Add support for R version 4 to `checkRVersion`.  Resolved #5.

- Correct bug in `lastAdd` by explicitly checking for a `.Last` of
  mode function.

Behind the scenes:

- Modernize package code by using `roxygen2` for documentation and
  managing the NAMESPACE.

- Modernize C function registration.

- Replace http URLs with `https` and resolve broken links.

- Add github actions to automated testing

- Use pkgdown to generate HTML documentation.

- Use `styler` package to standardize R code formatting.

gtools 3.8.2 - 2020-03-23
-------------------------

Minor changes to support R 4.0

(mef)

2021-09-16 22:17:52 UTC MAIN commitmail json YAML

doc: Updated math/R-gstat to 2.0.7

(mef)

2021-09-16 22:17:41 UTC MAIN commitmail json YAML

(math/R-gstat) Updated 2.0.2 to 2.0.7

# version 2.0-7
* return `NA` as estimate when prediction/simulation fails; #80

# version 2.0-6
* fixes `object 'ret' not found` bug introduced by #63; #65 #66 #70

# version 2.0-5
* use multiple cores in `variogramST`, using pkg future; #63 by
  @sigmafelix
* fix bug with conditional simulation using `stars` target grid and
  nsim=1, #58

# version 2.0-4
* fix CRAN warning issue

# version 2.0-3
* fix bug in support for `sf` objects; #46
* fix `krigeTg` for the case when data or newdata are of class `sf` or
  `sfc`; #51

(mef)

2021-09-16 21:25:32 UTC MAIN commitmail json YAML

doc: Updated math/R-geoR to 1.8.1

(mef)

2021-09-16 21:25:19 UTC MAIN commitmail json YAML

(math/R-geoR) Updated from 1.7.5.2.1 to 1.8.1

(from inst/doc/CHANGES)
                =====================================
        CHANGES IN geoR VERSION 1.8-1
        =====================================
Changes

      o Removed the example in subarea() using geoRglm:::rongelap
      ultil the package gets back to CRAN

      o added reference to Diggle & Ribeiro (2007) on the description
      file

Fixes
      o no longer using attach() to address NOTE in CRAN checks
        (it mostly affects image() persp() and countour() functions)

      o no longer writing/assigning objects to the global environment
      to address NOTE in CRAN checks

      o Brain's changes in C code to address valgrind issues

                =====================================
        CHANGES IN geoR VERSION 1.7-5
        =====================================
BUGS/Fixes
      o call to sp::overlay changed to sp::over()

      o changes to fix issues on CRAN reported errors/warnings
regarding namespaces and foreign calls

(mef)

2021-09-16 21:12:48 UTC MAIN commitmail json YAML

firefox: Use "unofficial" branding

Firefox's build system defaults to "nightly" for builds without official
branding, and in practice there seems to be very little difference between
"nightly" and "unofficial", but this at least makes our choice explicit.

Bump PKGREVISION

(nia)

2021-09-16 20:47:40 UTC MAIN commitmail json YAML

firefox: we no longer install to share/pixmaps

(nia)

2021-09-16 20:46:35 UTC MAIN commitmail json YAML

firefox91: we no longer install to share/pixmaps

(nia)

2021-09-16 20:45:39 UTC MAIN commitmail json YAML

firefox91: Explicitly use "unofficial" branding

Firefox's build system defaults to "nightly" for builds without official
branding, and in practice there seems to be very little difference between
"nightly" and "unofficial", but this at least makes our choice explicit.

Bump PKGREVISION

(nia)

2021-09-16 20:43:50 UTC MAIN commitmail json YAML

doc: Updated devel/clion-bin to 2021.2

(wiz)

2021-09-16 20:43:37 UTC MAIN commitmail json YAML

clion-bin: update to 2021.2.

Provided by Remy van Elst in PR 56373.

# CLion 2021.1.3 (211.7628.27 build)
- Code: Clangd    Bug CPP-25157  Use of undeclared identificator __cudaPushCallConfiguration
- No Subsystem    Bug CPP-25144  Code completion stops when including .h file in to .cu file
- Bug CPP-25687  Red CUDA code with VS toolchain (2021.1.2)
- Core    Bug IDEA-270078 Windows: Internal Error (./src/hotspot/share/runtime/safepoint.cpp:917), Illegal threadstate encountered
- Core. Installation  Bug IDEA-269591 IDE with Projector crashes on restart
- Core. Plugin Management Bug IDEA-262732 Dynamic plugin and lost settings after unload & load
- Core. Project Settings  Bug IDEA-270137 Project Structure dialog: after changing name of a module-level library it's shown as 'Empty Library'
- Bug IDEA-271303 It's not possible to add multiple sub-facets for a single facet
- Core. Quick Documentation  Exception  IDEA-256001 jpg, svg images aren't rendered in quick doc
- Core. Run. Configurations  Bug IDEA-265622 [new run config UI] Mnemonic tooltips appear above another dialog opened from the RC window
- Bug IDEA-268436 No longer possible to set temporary configurations limit
- Bug IDEA-266369 Don't invoke `RunManagerListener#runConfigurationAdded` with RunManagerImpl write lock
- User Interface  Bug IDEA-266927 Plugins settings page steals the focus from search box
- Bug IDEA-266854 IDE resets Windows File Explorer Recent Files list on start
- Bug IDEA-267018 ComponentPopupBuilder#adText not displayed anymore
- Bug IDEA-271223 Back button in Settings may open unexpected page
- Usability  IDEA-267294 "Stretch to Right"/"Stretch to Left": Ctrl+Shift+Arrow keys resize the dialog instead of text selection
- User Interface. Focus  Bug IDEA-251381 "git => compare branch" looses focus before list of branches can be displayed
- User Interface. Navigation  Bug IDEA-265789 Open in new window keybinding does not work in recent files view
- Bug IDEA-269778 In Quick Definition popup, left/right arrow keys move a caret instead of switching overrides
- User Interface. Plugins Bug IDEA-267878 Update notification from a disabled plugin after the plugin was already updated (Rider, Azure DevOps plugin)
- User Interface. Project View    Bug IDEA-268305 Hide empty middle packages option disables correct tree view of parent and children packages
- Console Bug PY-48157    Cursor in SciView does not move to next cell after execution with Ctrl+Enter
- No subsystem    Bug DBE-13148  Datasource color setting does not override children color settings
- Code Completion Feature DBE-4541    SQL:code completion: grant execute on <procedure> to ... does not suggest users
- Bug DBE-7781    Automatic alias shouldn't appear when not needed
- Bug DBE-2931    MSSQL: bad completion
- Bug DBE-10650  Bad completion for table aliases in INSERT
- Usability  DBE-7913    Computed columns in INSERT suggestion
- Usability  DBE-12479  More priority for sorting direction in completion
- Code Generation Bug DBE-13327  IDE generates trigger chunk in view DDL
- Code Highlighting  Bug DBE-13185  Unsupported option in CREATE MATERIALIZED VIEW
- Bug DBE-13316  False error highlighting in convert() clause
- Bug DBE-13262  Incorrect syntax errors for querying arrays in RedShift SQL
- Bug DBE-9271    PL/SQL: "Unable to resolve column 'sqlerrm'" at exception block
- Bug DBE-13188  Resolving of PL/SQL record type fields does not work in most cases.
- Bug DBE-13296  MSSQL dialect does not recognize Azure SQL command `CREATE DATABASE foo AS COPY OF bar`
- Bug DBE-13324  Wrong 'unresolved' in CREATE TABLE
- Connectivity    Cosmetics  DBE-13230  Data source invalid selection in the list
- Data Editor/Viewer  Bug DBE-13252  Table data editor action panel does not change color
- Bug DBE-13167  Wrong date is returned by Snowflake if session timezone is not UTC
- Usability  DBE-11774  Table is read-only when there is no schema qualifier (unresolved table references)
- Data Import/Export  Performance DBE-11370  import CSV into a HIVE table took forever
- Performance DBE-13139  Import to Redshift is still slow even with batch support. Probably tweak linesPerStatement parameter
- Diagrams    Bug DBE-13046  Data source color setting is not reflected on diagram anymore
- Bug DBE-13283  Adding a diagram note leads to `ClassCastException`
- Introspection  Bug DBE-13325  Better UI for dross-database synonyms
- Cosmetics  DBE-13326  Missing Row Security Policies icon
- DBE-13251  Wrong focus position after first navigation on table.column_name via Search Everywhere
- Bug DBE-12843  tSQLt - java.sql.SQLException when test returns a result set
- SQL Resolve Bug DBE-4531    Completion fails on table synonyms across databases

#  CLion 2020.3.4 (203.8084.11 build)
- Project Model  Bug    CPP-24398  Reloading CompDB project via editor widget doesn't show Build tool window
- Core. Project Settings  Bug    IDEA-259705    Module can't be deleted

# CLion 2020.2.5 (202.8194.17 build)
- Core. Indexing  Performance    IDEA-251642    Indexing dependncies hangs
- Core. SSH  Bug    IDEA-247283    SSH can't juxtapose a public key file with a public key from the agent if there's no private key file
- Editor  Bug    IDEA-248406    External annotations and code vision hints aren't shown if javadoc comment is shown in rendered form
- User Interface. Controls    Bug    IDEA-248210    "Find" and "Replace" don't remember text area size
- User Interface. Embedded Browser (JCEF) Bug    IDEA-250937    forward jcef log to user home
- Version Control Bug    IDEA-252307    Rebase modal no longer stores previously selected ref or options
- Bug    IDEA-249948    New git repositories do not show up in VCS dialog
- Version Control. Git    Bug    IDEA-248795    gitignore is not created during project creation in WebStorm
- Usability  IDEA-253889    Git Rebase dialog: copy the value from upstream to --onto field when it is added
- Usability  IDEA-251554    Pull-dialog: suggests pulling from the last entered branch, instead from tracked branch
- Console Bug    PY-45049    Types and parameters aren't shown in completion in Python Console
- Bug    PY-30650    iPython console gets totally unresponsive when using large Pandas Dataframe
- Debugger    Task    PY-44450    Consider disabling the "Drop into debugger on failed tests" flag by default
- Test Runner Bug    PY-43632    Unittest run configuration has two "Additional Arguments" fields

# CLion 2020.1.3 (201.8743.17 build)
- Unit Testing: Google Test  Bug CPP-20039  CLion 2020.1 - Selecting and running multiple cmake google tests results in "Preparation canceled"
- Core    Bug IDEA-243130 GoLand 2020.1.3 closes main window and can't bring to front if press ESC on `goland --help` window.
- Bug IDEA-241340 Timeout in tests during BaseFixture.disposeRootDisposable caused by LaterInvocator
- Core. File System  Bug IDEA-241524 When I create new files using de Angular CLI, the files are not visible immediately in the Project tab
- Bug IDEA-239947 Deadlock between EDT and Jar file attributes updater
- Core. IDE Settings  Usability  IDEA-240607 Import Settings should warn if user has incorrectly selected a folder without settings
- Core. Indexing  Performance IDEA-238706 Accessing index during PSI events
- Core. Installation  Bug IDEA-242558 Patches for the IDE with 32-bit JDK are not applied
- Bug IDEA-242552 IDEA doesn't start after update to 2020.2 EAP2 (202.5103.13)
- Core. Licensing Bug IDEA-245166 Do not popup license dialog for "optional"-licensed plugins, after license expiration
- Core. Plugin Management Bug IDEA-240538 Theme plugin auto apply after update reseting previous settings
- Exception  IDEA-241872 "Unexpected core classloasder" exception prevents startup
- Core. Project Settings  Bug IDEA-238053 Project Structure dialog does not apply changes when Eclipse project format is used
- Usability  IDEA-240068 error: java: error: release version 15 not supported when compiling project with JDK_X language level in misc.xml
- Editor. Large Files Bug IDEA-243589 IDE freeze / crash when large file is truncated
- Tools. Docker  Bug IDEA-240719 Docker's multi-tab drawing problem
- Bug IDEA-236451 Docker: Exec tabs for a container are closed only from the second time.
- Tools. Terminal Usability  IDEA-244778 Consider renaming 'Smart Command Handling' to 'Run Commands using IDE'
- User Interface  Bug IDEA-240549 Minor: missing space in Reopen Project dialog
- Performance IDEA-238301 Subpixel(LCD) text is slow with UI font in 2020.1, switching to greyscale antialiasing helps
- User Interface. Graphics    Bug IDEA-242042 Some icons are missing and some hardly visible in the Main menu
- User Interface. Project View    Performance IDEA-237974 UI freeze: com.intellij.openapi.module.impl.ModuleGroupersKt.splitByDotsJoiningIncorrectIdentifiers
- Version Control. Log    Bug IDEA-221930 Checkout revision keymap is gone.
- Code Insight    Performance PY-41402    UI freezes when processing references in python scratch files
- Debugger    Bug PY-40654    Switch off shape gathering for on demand variables in the debugger
- Skeletons  Performance PY-41828    PyCharm indexes entire filesystem due to unintended and misconfigured App Engine support
- DB Connectivity Bug DBE-10963  pgpass fails to parse if it has blank lines in it
- DB Console  Bug DBE-10837  Error: invalid identifier in Snowflake
- Bug DBE-9876    Force executing queries in read-only mode runs the wrong query
- DB Diff Bug DBE-10727  Compare schemas does not respect the column order
- DB Refactoring  Usability  DBE-10543  Button layout exactly the wrong way round (Compare DDL with Database)
- Data Views  Feature DBE-2516    Use Data Editor for editable views
- Usability  DBE-10707  Generated filter from Filter By context menu clears MongoDB projection
- Usability  DBE-8336    Shorten tab names in DataGrid with placement on the right/left
- Navigation & Search Bug DBE-11084  'Go to declaration or usages' not working on routines in query console window
- PL & DDL Editor Feature DBE-5756    Database - Adding datasource as DDL - adding whole folders besides files only
- SQL Completion  Feature DBE-11004  SQL Server Does Not Recognize "ADD SENSITIVITY CLASSIFICATION" Statement
- SQL Format and Style    Bug DBE-10779  Wrong indent when a command starts with a comment
- Bug DBE-11093  Formatting rules are ignored when formatting a constructor inside type body
- SQL General Bug DBE-10726  No ability to create a DDL data source if there are no folders attached
- Bug DBE-10999  Index creation with INCLUDE NULL KEYS causes error
- SQL Generation  Bug DBE-10334  Modify table action no more works from the editor
- Bug DBE-10724  Snowflake Table Creation Generates Invalid DDL w/ Comments on Primary Keys
- SQL Highlighting    Bug DBE-11007  ORDER BY ... FOR JSON in subquery
- Bug DBE-10748  Errors in SQL Editor for correct Oracle SQL statements
- Bug DBE-10778  MariaDB Dialect JSON_QUERY not recognized
- SQL Resolve Feature DBE-10457  New quick fix: refresh schema

# CLion 2019.3.6 (193.7288.25 build)
- Code: Clangd    Bug    CPP-18783  clangd crashes on catch.hpp
- Bug    CPP-19696  No concepts support with MSVC toolchain
- Core. Licensing Bug    IDEA-235344    Licence server address is cleared when it's unreachable
- Bug    IDEA-231811    Excessive number of writes to idea.key
- Core. Plugin Management Bug    IDEA-234444    failure to uninstall plugin
- Core. Statistics    Auto-reported Exception    IDEA-231639    Should be called at least in the state CONFIGURATION_STORE_INITIALIZED, the current state is: COMPONENTS_REGISTERED Current violators count: 1
- Exception  IDEA-228826    ERROR when open GoLand 2020.1 with plugin that defines registry key
- Version Control. Subversion Bug    IDEA-228828    IDEA does not propose to delete dir in svn when deleting a dir
- Debugger    Bug    PY-39307    Error prints in Debug Server run configuration cause by misplaced attach to process binaries
- SQL Generation  Bug    DBE-10396  Unable to resolve class com.intellij.database.model.DasObjectWithSource

# CLion 2019.2.5 (192.7142.39 build)
- Core. Diagrams  Exception  IDEA-218015    Attempt to export any diagram to svg image fails with NPE
- Core. File System  Feature    IDEA-152607    Non-destructive "safe write" mode
- Core. IDE Settings  Usability  IDEA-221387    Configure Gutter Icons opens Settings For New Projects
- Core. Installation  Bug    IDEA-223576    Impossible to update Pycharm 2019.1
- Bug    IDEA-215497    jbr/bin/java Access Denied during update from IC-192.4205.45 to IC-192.4488.21
- Core. Password Management  Bug    IDEA-223257    java.lang.NoSuchMethodError: 'void com.intellij.credentialStore.CredentialAttributes.<init>(java.lang.String, java.lang.String, java.lang.Class, boolean, int, kotlin.jvm.internal.DefaultConstructorMarker)'
- Core. Quick Documentation  Bug    IDEA-222946    identifier tooltip - due to scrollbar the tooltip window is not large (height) enough when there is only 1 or 2 lines in the tooltip. So the text is always obscured.
- Core. SSH  Bug    IDEA-222345    Allow users to update known_hosts in a one click
- Bug    IDEA-220958    SSHJ: ConnectTimeout option is being read from config as milliseconds but should be read as seconds
- Cosmetics  IDEA-222955    Error message cannot be fully read
- Core. Task Management  Bug    IDEA-222938    Can't uncheck "Enable Cache" in `Settings -> Tools -> Task`
- Editor. Code Completion Bug    IDEA-221425    Code completion broken and not configurable
- Editor. Editing Text    Bug    IDEA-221667    Pressing Option-Enter on warning while info popup is displayed and previous warning hasn't been cleared causes cursor to jump in editor
- User Interface. Focus  Bug    IDEA-221730    Stop services window from taking focus when opening a database table.
- User Interface. Graphics    Bug    IDEA-220577    Menu icons in Presentation mode are large
- Version Control. Git    Bug    IDEA-220499    Git merge --no-commit still perfroms a commit if conflicts occur
- Bug    IDEA-222125    Update project notification incorrectly considers recents when calculating number of commits matching filter
- Debugger    Bug    PY-37645    Debugger crashes with exit code -1073740791 (PyQt5)
- Bug    PY-37361    Pytest 2: Failed to find debugger in _pytest
- Bug    PY-26541    Changing format doesn't take effect on numpy array
- Bug    PY-37757    Debugging fail in IronPython with: AttributeError: 'module' object has no attribute 'EX_OK'
- Usability  PY-36952    Frightening stacktrace is shown when user stops debugger
- Test Runner Bug    PY-37841    _jb_pytest_runner 2019 fail to run some test
- No subsystem    Bug    DBE-9285    Inspections from commandline: SqlCaseVsCoalesceInspection fails with "registers INFORMATION level problem in batch mode"
- Bug    DBE-9154    No more right click option to refresh materialized view on PostgreSQL
- DB Connectivity Bug    DBE-5559    H2 embedded: mv.db extension as appended to the database file each time
- Bug    DBE-9136    Cannot change session to Azure SQL database after update to 2019.2.4
- Bug    DBE-3272    H2 Data Source: automatic detection of database files for MV_STORE format (.mv.db)
- Usability  DBE-9247    Adding data source via the explorer is confusing
- DB Console  Feature    DBE-2344    DB2: not possible to enable DBMS_OUTPUT
- Bug    DBE-9251    Cannot remove association with console for the once injected sql into a string fragment
- Bug    DBE-9260    Running "Execution Plan" on a recursive SQL results in java.lang.StackOverflowError"
- DB Diff Bug    DBE-9226    Compare tool generates invalid mariadb sql for drop index when generating migration script
- DB General  Bug    DBE-8736    Don't write database model on EDT
- DB Introspection    Feature    DBE-7213    Support System-Versioned Tables introspection and syntax
- Bug    DBE-6627    Sequences are not displayed in database structure for H2 databases
- Bug    DBE-9181    Refresh of external schemas in Redshift is unreliable
- Bug    DBE-9262    Mysql - No autosync - introspect schema doesn't introspect
- Bug    DBE-8000    MS SQL: table or column comments are truncated to 30 characters
- DB Refactoring  Bug    DBE-8776    Modify comment query lost umlauts in encoding mess even though previewed SQL is fine
- Cosmetics  DBE-8364    Edit Comment for DB Table Column Window
- DB Schema Views Feature    DBE-8608    Cannot reassign "drop" database object shortcut key
- Usability  DBE-9195    Schema patterns keep getting reset when I drop and recreate a database
- Usability  DBE-9248    Tables are not loading with the schema selected without refreshing
- Configuration Problem  DBE-9020    Database tool window -> Show intermediate nodes deactivated no longer works in 2019.2
- Data Import & Export    Bug    DBE-9254    PostgreSQL Copy results as SQL Inserts does not Quote Items Properly
- Data Views  Feature    DBE-5970    Transposed table in a table editor don't allow to resize a column name
- Bug    DBE-9157    Quick documentation for database rows produce invalid queries
- Bug    DBE-9217    When I press forward or backward button, Index is increased or decreased. But This can't renew the table. I think it is bug. Please fix this.
- Bug    DBE-8904    Transpose collapses field names
- Bug    DBE-9338    The row number is truncated in table view
- Usability  DBE-9179    Thousands separator in results rows count view
- PL & DDL Editor Bug    DBE-8649    DDL editor should always use UTF-8
- SQL Completion  Feature    DBE-9252    Completion: option to suggest only objects from current database/schema
- Bug    DBE-6024    Database completion/object navigation should not show filtered out objects
- Bug    DBE-7033    Bad completion for subquery
- Bug    DBE-1188    Code completion wrong when data source has many databases MySQL
- Usability  DBE-9070    Option to disable smart join completion
- Usability  DBE-9307    SQL: MySQL: code completion could suggest ALTER TABLE
- Usability  DBE-8957    Misleading icon in a completion list
- Usability  DBE-2234    SQL completion: useless item duplication
- SQL Format and Style    Bug    DBE-9249    PostgreSQL formatting: the "Keep new line after THEN, ELSE" options doesn't work
- Bug    DBE-9185    Unable to format correctly a view creation query that uses a "With query"
- SQL General Bug    DBE-2667    "Quote identifier" should choose correct case
- Bug    DBE-9376    MS SQL parses incorrectly when column alias is "load"
- SQL Generation  Bug    DBE-9366    DataGrip freezes 30 secs after launch
- SQL Highlighting    Bug    DBE-8370    OPENXML WITH clause is not recognized
- Bug    DBE-3688    SQL: MySQL: support correct limitations for CAST and CONVERT arguments
- Bug    DBE-9193    Good code is red when using dots in PostgreSQL CREATE VIEW WITH() option names
- Bug    DBE-5819    Bad SQL is green: MySQL `delete * from`
- Bug    DBE-9210    Inspection ['Delete' statement without 'where' clears all data in the table] should not be shown when selection made by JOIN
- Bug    DBE-9167    Snowflake SQL Dialect parsing error
- Bug    DBE-9317    Add az64 compression encoding support
- Bug    DBE-9264    Named parameters in SQL function calls are marked as syntax errors and broken by auto-format
- Bug    DBE-9353    Inlay hint is strange for VALUES
- Bug    DBE-9160    DataGrip: Error indicated if trying to execute SQL Server procedure using user parameters to pass value
- Bug    DBE-9108    Support SONAME syntax
- Bug    DBE-7426    MariaDB command JSON_VALUE not recognized
- Bug    DBE-9293    Sybase: unable to resolve "GO" symbol
- Bug    DBE-9271    PL/SQL: "Unable to resolve column 'sqlerrm'" at exception block
- Bug    DBE-8924    False warning about number of values when selecting identity column
- SQL Resolve Bug    DBE-6494    rowversion type is not recognized by Datagrip
- Usability  DBE-9261    Unable to select schema in SQL Resolution Scopes dialog

# CLion 2019.1.4 (191.7479.33 build)
- No subsystem Bug CPP-15708 [Android Studio Freeze] FileSymbolTablesCache trying to invalidate all files recursively
- Bug CPP-16313 Exception occurs when compilation database project is opened not for the first time.
- Bug CPP-16044 clangd doesn't parse cpp files if response files are used to pass arguments to the compiler in MSVC environment
- Bug CPP-15707 [Android Studio Freeze] OCSourceGliderComponent taking too long to initialize
- Code: Highlighting and Inspections Bug CPP-16259 IllegalStateException: Failed to restart clangd server
- Core. File System Bug IDEA-211677 Deadlock/freeze on quitting IntelliJ IDEA
- Core. Platform API Bug IDEA-211580 AvailableSince annotations stopped being included after Kotlin dependency on IntelliJ changed from kotlin.build.custom.deps:intellij-core to kotlin.build:intellij-core
- Core. Quick Documentation Bug IDEA-212079 QuickDocumentation is unable to load SVG from the jar file
- Core. Run | Debug. Configurations Bug IDEA-208525 Changes to my Environment Variables in Configurations aren't saving
- Editor. Diff and Merge Bug IDEA-210783 Couldn't select items in 'Diff Between' window (Deployment/Remote Host Access) with UP/DOWN arrow keyboard keys
- User Interface Bug IDEA-211968 Recent projects menu/list contains paths with non-native slashes instead of project names
- Bug IDEA-211955 "Open Recent" shows full path for consequently opened projects
- User Interface. Find, Replace, Usages Bug IDEA-196030 Find in Path | Open in Find Window does not work for current file scope with a scratch file
- Bug IDEA-176926 All Places scope does not include scratch files and consoles
- Bug IDEA-204277 Pinned "Find in Path" dialog is not closed when opening a project in the same window
- User Interface. Navigation Usability IDEA-208718 Implement the ability to move right/left on Navigation bar using additional shortcuts
- Usability IDEA-207554 Cmd+E/Ctrl+E doesn't work for iterating recent files after Recent/Recent edited files union
- User Interface. Project View Bug IDEA-204446 Structure sidebar flashing content with frontend (html related) files
- Version Control. Git Bug IDEA-210358 Incoming/outgoing commits are checked on project opening before any manual git remote operation is done
- Version Control. Log Bug IDEA-211128 Git Log: commit selected in search results is scrolled away and hidden from view after search is cancelled
- Bug IDEA-211583 Git file history doesn't follow rename if it was made in a merge commit
- Web. Flash and Flex Bug IDEA-207927 Error when generating configuration for maven project using flexmojos and flex modules
- Console Bug PY-33216 Pycharm freezes when viewing array
- Debugger Bug PY-35010 Debugger doesn't attach to Flask reloader when the file is executable
- Interpreters Settings Bug PY-35141 PyCharm doesn't activate the conda if Anaconda/Miniconda is installed in a non-default location and no other conda available in the system
- Bug PY-35914 Can't install packages with conda interpreter when non-default installation path was used for Anaconda
- Test Runner Bug PY-35062 Tox output broken for 3.8.3
- DB Introspection Bug DBE-8275 Snowflake won稚 load schemas even if other connections do
- SQL Format and Style Bug DBE-7993 PLPGSQL missing line break before INTO clause of SELECT commands
- Bug DBE-8223 DataGrip Quote Identifier incorrectly enclosed variables and parameters for SQL Server. This is not correct syntax
- Cosmetics DBE-8355 Different panel height for Generic SQL and Derby settings
- Cosmetics DBE-8356 Extra separator between scheme chooser and option tabs in MS Windows

(wiz)

2021-09-16 19:49:15 UTC MAIN commitmail json YAML

firefox78: Install various icon sizes. Explicitly use "unofficial" branding.

Bump PKGREVISION.

(nia)

2021-09-16 19:19:50 UTC MAIN commitmail json YAML

doc: Added lang/csmith version 2.3.0

(wiz)

2021-09-16 19:19:40 UTC MAIN commitmail json YAML

lang/Makefile: + csmith

(wiz)

2021-09-16 19:19:05 UTC MAIN commitmail json YAML

lang/csmith: import csmith-2.3.0

Packaged for wip by Kamel Ibn Aziz Derouiche and myself.

Csmith is a tool that can generate random C programs that statically
and dynamically conform to the C99 standard. Thus, it is useful for
stress-testing compilers, static analyzers, and other tools that
process C code.

(wiz)

2021-09-16 17:47:13 UTC MAIN commitmail json YAML

firefox91: install scalable icons, bump PKGREVISION

(nia)

2021-09-16 16:46:24 UTC MAIN commitmail json YAML

firefox: Install scalable icon sizes, bump PKGREVISION

(nia)

2021-09-16 16:25:01 UTC MAIN commitmail json YAML

doc/TODO: add two

+ apache-2.4.49, sudo-1.9.8.

(taca)

2021-09-16 15:01:27 UTC MAIN commitmail json YAML

doc: Updated www/seamonkey-l10n to 2.53.9

(nia)

2021-09-16 15:01:17 UTC MAIN commitmail json YAML

2021-09-16 15:00:22 UTC MAIN commitmail json YAML

doc: Updated www/seamonkey to 2.53.9

(nia)

2021-09-16 14:59:32 UTC MAIN commitmail json YAML

2021-09-16 13:43:01 UTC MAIN commitmail json YAML

jack: build with POSIX style getgrnam_r on Solaris

(nia)

2021-09-16 13:02:35 UTC MAIN commitmail json YAML

2021-09-16 12:28:15 UTC MAIN commitmail json YAML

doc: Updated math/R-energy to 1.7.8

(mef)

2021-09-16 12:28:02 UTC MAIN commitmail json YAML

(math/R-energy) Updated 1.7.6 to 1.7 8

# energy 1.7-8

*  User level changes:
    - Poisson goodness-of-fit tests
    - EVnormal (data) issue fixed
    - gsl package required

*  Internal changes
    - mvnorm.e: use gsl::hyperg_1F1
    - poisMstat in energy.c moved to Rcpp poisMstat.cpp

# energy 1.7-7

*  User level changes:
    - dcorT.test replaces dcor.ttest, now deprecated.
    - dcorT replaces dcor.t, now deprecated.
    - edist method "discoF" removed

*  Internal changes
    - BCDCOR function (used in the high dim. dcorT test) has been revised.
    - edist method "discoB" correction
    - changes for compatibility with R 4.0.0

(mef)

2021-09-16 12:02:13 UTC MAIN commitmail json YAML

2021-09-16 11:52:27 UTC MAIN commitmail json YAML

doc: Updated net/mitmproxy to 7.0.3

(leot)

2021-09-16 11:52:19 UTC MAIN commitmail json YAML

mitmproxy: Update to 7.0.3

Changes:
7.0.3
-----
* CVE-2021-39214: Fix request smuggling vulnerabilities reported by @chinchila
* Expose TLS 1.0 as possible minimum version on older pyOpenSSL releases
* Fix compatibility with Python 3.10

7.0.2
-----
* Fix a WebSocket crash introduced in 7.0.1

7.0.1
-----
* Performance: Re-use OpenSSL contexts to enable TLS session resumption
* Disable HTTP/2 CONNECT for Secure Web Proxies to fix compatibility with
  Firefox
* Use local IP address as certificate subject if no other info is available
* Make it possible to return multiple chunks for HTTP stream modification
* Don't send WebSocket CONTINUATION frames when the peer does not send any
* Fix HTTP stream modify example.
* Fix a crash caused by no-op assignments to `Server.address`
* Fix a crash when encountering invalid certificates
* Fix a crash when pressing the Home/End keys in some screens
* Fix a crash when reading corrupted flow dumps
* Fix multiple crashes on flow export
* Fix a bug where ASGI apps did not see the request body
* Minor documentation improvements

(leot)

2021-09-16 10:35:46 UTC MAIN commitmail json YAML

Updated devel/py-minidump, security/py-asyncssh

(adam)

2021-09-16 10:35:27 UTC MAIN commitmail json YAML

py-asyncssh: updated to 2.7.2

Release 2.7.2
* Fixed a regression related to server host key selection when attempting
  to use a leading '+' to add algorithms to the front of the default list.
* Fixed logging to properly handle SFTPName objects with string filenames.
* Fixed SSH_EXT_INFO to only be sent after the first key exchange.

(adam)

2021-09-16 10:34:30 UTC MAIN commitmail json YAML

py-minidump: updated to 0.0.20

0.0.20:
Minor fixes

0.0.19:
Minor fixes in the VAS memory search function, adding timestamp print to modules.

(adam)

2021-09-16 09:32:03 UTC MAIN commitmail json YAML

2021-09-16 09:25:26 UTC MAIN commitmail json YAML

syslog-ng: update path in comment

(wiz)

2021-09-16 09:24:05 UTC MAIN commitmail json YAML

doc: Added sysutils/syslog-ng-geoip2 version 3.34.1

(wiz)

2021-09-16 09:23:49 UTC MAIN commitmail json YAML

doc: Updated sysutils/syslog-ng to 3.34.1

(wiz)

2021-09-16 09:23:25 UTC MAIN commitmail json YAML

sysutils/syslog-ng-geoip2: import syslog-ng-geoip2-3.34.1

Syslog-ng tries to fill the gaps original syslogd's were lacking:
* powerful configurability
* filtering based on message content
* message integrity, message encryption
* portability
* better network forwarding

This package contains the geoip2 module.

(wiz)

2021-09-16 09:22:48 UTC MAIN commitmail json YAML

syslog-ng: update to 3.34.1

Based on package provided by Peter Czanik in PR 56406.

Changes below are for 3.34.1 only, the other 16 releases before
that are not summarized.

3.34.1
======

## Highlights

* `regexp-parser()`: new parser that can parse messages with regular expressions

* `redis()`: `workers()` and batching support

  The Redis driver now support the `workers()` option, which specifies the
  number of parallel workers, and the `batch-lines()` option.

  This could drastically increase the throughput of the Redis destination driver.

* `mqtt()`: TLS and WebSocket Secure support

  The MQTT destination now supports TLS and WSS.

## Features

* `system()` source: added support for NetBSD

* `stats`: new statistics counter

* `mqtt()`: username/password authentication

* `mqtt()`: new option `http-proxy()` for specifying HTTP/HTTPS proxy for WebSocket connections
  ([#3747](https://github.com/syslog-ng/syslog-ng/pull/3747))

* `syslog-ng-ctl`: new flag for pruning statistics

* `disk-buffer()`: added a new option to reliable disk-buffer: `qout-size()`.

## Bugfixes

* `network(), syslog()`: fixed network sources on NetBSD

* `disk-buffer()`: fixed a very rare case, where the reliable disk-buffer never resumed
  after triggering `flow-control`.

* `disk-buffer()`: fixed a rare memory leak that occurred when `mem-buf-length()`
  or `mem-buf-size()` was configured incorrectly

* `redis()`: fixed command errors that were not detected and marked as successful delivery

(wiz)

2021-09-16 08:39:15 UTC MAIN commitmail json YAML

doc: Updated x11/libXi to 1.8

(wiz)

2021-09-16 08:39:06 UTC MAIN commitmail json YAML

libXi: update to 1.8.

This release of libXi marks the support of XI 2.4 touchpad gesture events
official. This feature is the only difference between libXi 1.8 and the latest
release in the 1.7.x series (1.7.10).

(wiz)

2021-09-16 08:38:03 UTC MAIN commitmail json YAML

doc: Updated x11/xorgproto to 2021.5nb1

(wiz)

2021-09-16 08:37:53 UTC MAIN commitmail json YAML

xorgproto: install pkg-config files into lib/pkgconfig, like usual

Bump PKGREVISION.

(wiz)

2021-09-16 08:27:48 UTC MAIN commitmail json YAML

glib2: remove patch that was removed from distinfo during update

(wiz)

2021-09-16 08:26:52 UTC MAIN commitmail json YAML

ardour: fix pkglint warning

(wiz)

2021-09-16 08:26:44 UTC MAIN commitmail json YAML

ardour: remove patch that was removed from distinfo during update

(wiz)

2021-09-16 08:22:50 UTC MAIN commitmail json YAML

doc: Updated x11/xorgproto to 2021.5

(wiz)

2021-09-16 08:22:41 UTC MAIN commitmail json YAML

xorgproto: update to 2021.5.

This release introduces the version 2.4 of the X Input protocol. It contains
the addition of the concept of touchpad gestures. Touchpad gesture is an
interaction of two or more fingers that can be interpreted as a swipe or a
pinch.

(wiz)

2021-09-16 04:17:00 UTC MAIN commitmail json YAML

doc: Updated math/R-e1071 to 1.7.8

(mef)

2021-09-16 04:16:47 UTC MAIN commitmail json YAML

(math/R-e1071) Updated 1.7.2 to 1.7.8

(by  R CMD Rdconv -t txt math/R-e1071/work/e1071/inst/NEWS.Rd)

Changes in version 1.7-8:

        * Bugfixes in 'gknn()': wrong behavior in case of tied
          k-nearest neighbors (for 'use_all=TRUE'), and also in case of
          an overall class tie.

Changes in version 1.7-7:

        * Bugfix in examples of 'cshell()'

Changes in version 1.7-6:

        * Bugfix in 'scale_data_frame()' - now calls 'scale()' if x is
          not a data frame.

Changes in version 1.7-5:

        * NaiveBayes: better handling od character and logical features

        * Added: 'gknn()' for generalized k-Nearest Neighbours (using
          arbitrary proximity measures)

        * Added: 'scale_data_frame()' for scaling the numeric columns
          of a data frame.

Changes in version 1.7-4:

        * Bug fix: "inverse" argument for class.weights argument in
          'svm.default()' did not work

(mef)

2021-09-16 00:25:42 UTC MAIN commitmail json YAML

doc: Updated audio/py-music21 to 7.1.0

(gutteridge)

2021-09-16 00:23:52 UTC MAIN commitmail json YAML

py-music21: update to 7.1.0

The upstream change log can't be summarized easily. There are no
security updates or the like. Interested parties should consult the
upstream change log at:
https://github.com/cuthbertLab/music21/releases/tag/v7.1.0

(gutteridge)

2021-09-15 22:52:52 UTC MAIN commitmail json YAML

doc: Updated ham/hamlib to 4.3.1

(gdt)

2021-09-15 22:52:46 UTC MAIN commitmail json YAML

ham/hamlib: Update to 4.3.1

packaging:

  - Adjust upstream program testlibusb to have rigctl_ prefix to avoid
    collisions.

  - Note that sunos patch should be sent upstream.

Version 4.3.1
        * 2021-09-14
        * Bug fix release

Version 4.3
        * 2021-09-01
        * libusb-1.0.23 or greater is now required or use --without-libusb
        * Generating documentation now requires GNU source-highlighter.
        * Added IC-575
        * Less VFO swapping of newer Icom rigs -- zero swapping in WSJTX and JTDX
        * Dual rotator control in rotctl -R option
        * Started work on simulators -- very crude right now but usable to debug some things
        * Overhaul of rig split -- reverse split (VFOA=RX VFOB=TX) should work for rigs capable of it
          Starting VFO does not matter -- rig will end up on RX VFO
          S VFOA 1 VFOB
          S VFOB 1 VFOA
          S Main 1 Sub
          S Sub 1 Main

Version 4.2
        * 2021-05-17
        * New rig_get_mode_bandwidths -- returns token set for bandwidths for given mode
              Rig command: \get_mode_bandwidths CW
              Mode=CW
              Normal=500Hz
              Narrow=50Hz
              Wide=2400Hz
        * New rig_get_info  -- returns token set for all vfos where order does not matter
          This is a string return to allow for easy future expansion without changing the API
          New tokens may be introduced and can be skipped if not used by clients
              Rig command: \get_rig_info
              VFO=Main Freq=145000000 Mode=None Width=0 RX=1 TX=1
              VFO=VFOB Freq=145000000 Mode=FM Width=15000 RX=0 TX=0
              Split=0 SatMode=0
              Rig=Dummy
              App=Hamlib
              Version=20210429
              CRC=0xf49f4708
        * New rig_get_vfo_info
              Rig command: \get_vfo_info VFOA
              Freq: 145000000
              Mode: None
              Width: 0
              Split: 0
              SatMode: 0

        * FILPATHLEN has changed to HAMLIB_FILPATHLEN

        * USRP lib and gnuradio are deprecated and will be removed in 5.0
        * Added Radan rotator
        * Added Malachite SDR
        * Major rework for PRM80
        * Add twiddle_timeout and twiddle_rit --set-conf options
              rigctld --set-conf=twiddle_timeout=5,twiddle_rit=1
              This will set the twiddle timeout to 5 seconds and turn on twiddle_rit
              For twiddle timeout VFOB will not be polled for 5 seconds after VFO twiddling
      is detected
        * rigctld --twiddle is deprecated and will be removed in 5.0 along with
          get_twiddle and set_twiddle
        * Rework Doxygen manual including default layout for Doxygen 1.9.1.  So far
          the amplifier, rotator, and utilities API sections have been updated.  The
          rig (radio) section remains to be updated.

(gdt)

2021-09-15 21:06:42 UTC MAIN commitmail json YAML

2021-09-15 19:06:24 UTC MAIN commitmail json YAML

doc: Updated geography/qgis to 3.16.11

(gdt)

2021-09-15 19:06:15 UTC MAIN commitmail json YAML

geography/qgis: Update to 3.16.11

upstream changes are bugfixes and minor improvements

(gdt)

2021-09-15 19:03:24 UTC MAIN commitmail json YAML

Added textproc/cJSON; Updated devel/py-faker

(adam)

2021-09-15 19:03:04 UTC MAIN commitmail json YAML

py-faker: updated to 8.13.2

v8.13.2
* Fixed: region_codes for bic must have 9 digits.

v8.13.1
* Change ``fi_FI`` Provinces to Regions.

v8.13.0
* ``uk_UA`` address provider - fix streets and cities names, added regions.

v8.12.3
* Fix missing underscores in ``mac_platform_token``.

v8.12.2
*  Remove period/fullstop from ``en_GB`` prefixes.

(adam)

2021-09-15 18:59:54 UTC MAIN commitmail json YAML

cJSON: added version 1.7.15

cJSON aims to be the dumbest possible parser that you can get your job done
with. It's a single file of C, and a single header file.

(adam)

2021-09-15 17:11:21 UTC pkgsrc-2021Q2 commitmail json YAML

Pullup ticket #6499 - requested by nia
www/firefox78: security fix

Revisions pulled up:
- www/firefox78/Makefile                                        1.35
- www/firefox78/distinfo                                        1.20

---
  Module Name: pkgsrc
  Committed By: nia
  Date: Fri Sep 10 11:37:53 UTC 2021

  Modified Files:
  pkgsrc/www/firefox78: Makefile distinfo

  Log Message:
  firefox78: update to 78.14.0

  Fixes CVE-2021-38493

(bsiegert)

2021-09-15 17:11:14 UTC pkgsrc-2021Q2 commitmail json YAML

Pullup ticket #6498 - requested by nia
www/firefox78-l10n: dependent update

Revisions pulled up:
- www/firefox78-l10n/Makefile                                  1.17
- www/firefox78-l10n/distinfo                                  1.17

---
  Module Name: pkgsrc
  Committed By: nia
  Date: Fri Sep 10 11:39:21 UTC 2021

  Modified Files:
  pkgsrc/www/firefox78-l10n: Makefile distinfo

  Log Message:
  firefox78-l10n: sync with firefox78

(bsiegert)

2021-09-15 14:09:48 UTC MAIN commitmail json YAML

2021-09-15 14:08:54 UTC MAIN commitmail json YAML

2021-09-15 14:06:26 UTC MAIN commitmail json YAML

doc: Added databases/gobang version 0.1.0alpha5

(pin)

2021-09-15 14:05:57 UTC MAIN commitmail json YAML

2021-09-15 14:04:43 UTC MAIN commitmail json YAML

databases/gobang: import pkg

Cross-platform TUI database management tool written in Rust.

Features:
- Cross-platform support (macOS, Windows, Linux)
- Multiple Database support (MySQL, PostgreSQL, SQLite)
- Intuitive keyboard only control

(pin)

2021-09-15 13:39:48 UTC MAIN commitmail json YAML

doc: Updated shells/nushell to 0.37.0

(pin)

2021-09-15 13:39:28 UTC MAIN commitmail json YAML

shells/nushell: update to 0.37.0

Today, we're releasing 0.37 of Nu. This release adds a new find function,
improvements to the current engine, and updates on the upcoming engine.

What's New
finding data in tables

In 0.37, you now have access to a new find command, which can help you quickly
look for data across all columns in a table.
You can still reach your system's find command using ^ by typing ^find.

Additional improvements
-fdncred added more support for ansi art, and more chars
-aminya removed shelling out in some cases where it's not needed
-jt made sys/ps/fetch/post core commands, moving them from plugins to internal
commands. This allows for future capability to have nushell download its own
extensions.
-andrasio began adding support for creating errors inside of nushell code,
extended tags to support basic command reflection
-lily-mara added into filesize
-tw4452852 added support to append when calling save
-Pantoshire improved errors when bash-style alias was mistakingly used
-tranzystorek-io did a lot of general code improvements
-kubouch did some fixes to paths and the source command
-elferherrera updated the prompt environment variable to PROMPT_COMMAND to show
that it is nushell code that gets run

(pin)

2021-09-15 13:36:15 UTC MAIN commitmail json YAML

doc: Updated sysutils/macchina to 1.1.4

(pin)

2021-09-15 13:35:55 UTC MAIN commitmail json YAML

sysutils/macchina: update to 1.1.3

As of version 1.0.0 macchina uses google-speech to support text-to-speech.
I've disabled this feature, please let me know if you think this should be on.

v1.1.4
-Fix NetBSD build.

v1.1.3
-macOS: manually look for config in $HOME/.config/ (#138)

v1.1.2
-readme: Fix Linux benchmark table formatting

v1.1.1
-misc: Remove X11 feature from codebase after having replaced it with a built-in
resolution parser (#135)
-misc: Bump all dependencies' versions
-config: Fallback to original naming for some ReadoutKeys
-readme: Remove saythanks badge
-readme: benchmarks: disclose the environment/processor
-readme: Nix's installation section now mentions all channels
-actions: Bring back netbsd workflow after having removed all X11 code
-libmacchina: Bump from v0.8.1 to v1.0.1
-[*nix only] Implement a new readout, disk_space() which for now returns the
used bytes of the root partition
-Add macOS resolution (#56)
-Address a panic caused by too much output in the resolution readout (#132)
-src/macos/mach_ffi.rs: Remove useless CGError typedef
-src/macos/mod.rs: Search for "brew" rather than "homebrew" before getting
package count
-src/data/mods.rs: Significantly improve shell readout logic
-macchina.toml: Be more specific in small_ascii description
-src/cli.rs: Be more specific in small_ascii description

v1.1.0
Bug fixes:
-Address an issue that causes text to overflow when the terminal
is reduced beyond its original size
-Address an issue that causes terminal information to be incorrect
when in a nested shell situation

Features:
-Added the commit hash to --version
-Added an option to toggle between displaying the current or default shell

Misc:
-Added macOS Monterey to list of macOS versions
-Removed many build dependencies (breaking shell auto-completion)
-Removed many annoying conflict checks in the configuration file
-No longer capitalize shell output
-Bumped most dependencies' versions

(pin)

2021-09-15 13:34:52 UTC MAIN commitmail json YAML

doc: Updated graphics/kvantum to 0.20.2

(pin)

2021-09-15 13:34:29 UTC MAIN commitmail json YAML

graphics/kvantum: update to 0.20.2

V0.20.2
---------
- Allow opening of the user config file from Kvantum Manager.
- Respect KDE's scrollbar click behavior by default.
- Elide push button text if there isn't enough space for it.
- Better eliding of multiline texts.
- Added LibreOffice to the black list of window dragging (as a workaround for
issues related to its Qt5 skin under Wayland).

(pin)

2021-09-15 13:33:16 UTC MAIN commitmail json YAML

doc: Updated audio/termusic to 0.3.12

(pin)

2021-09-15 13:32:56 UTC MAIN commitmail json YAML

audio/termusic: update to 0.3.12

-Minor fix: wrong hints for empty queue.
-Load queue faster.
-Remove dependency of openssl.
-Remove dependency of urlqstring.

(pin)

2021-09-15 12:39:06 UTC MAIN commitmail json YAML

Updated www/nginx, www/nginx-devel

(adam)

2021-09-15 12:37:33 UTC MAIN commitmail json YAML

nginx-devel: updated to 1.21.3

Changes with nginx 1.21.3                                        07 Sep 2021

    *) Change: optimization of client request body reading when using
      HTTP/2.

    *) Bugfix: in request body filters internal API when using HTTP/2 and
      buffering of the data being processed.

Changes with nginx 1.21.2                                        31 Aug 2021

    *) Change: now nginx rejects HTTP/1.0 requests with the
      "Transfer-Encoding" header line.

    *) Change: export ciphers are no longer supported.

    *) Feature: OpenSSL 3.0 compatibility.

    *) Feature: the "Auth-SSL-Protocol" and "Auth-SSL-Cipher" header lines
      are now passed to the mail proxy authentication server.
      Thanks to Rob Mueller.

    *) Feature: request body filters API now permits buffering of the data
      being processed.

    *) Bugfix: backend SSL connections in the stream module might hang after
      an SSL handshake.

    *) Bugfix: the security level, which is available in OpenSSL 1.1.0 or
      newer, did not affect loading of the server certificates when set
      with "@SECLEVEL=N" in the "ssl_ciphers" directive.

    *) Bugfix: SSL connections with gRPC backends might hang if select,
      poll, or /dev/poll methods were used.

    *) Bugfix: when using HTTP/2 client request body was always written to
      disk if the "Content-Length" header line was not present in the
      request.

(adam)

2021-09-15 12:37:05 UTC MAIN commitmail json YAML

nginx: updated nchan module; bumped revision

1.2.10 (Aug. 25 2021)
fix: Nchan could not be built without openssl due to hiredis dependency
      (introduced in v1.2.9)
feature: allow no separator for http-raw-stream (thanks @sclem)

1.2.9 (Aug. 12 2021)
feature: Redis cluster reconfiguration check timer,
      nchan_redis_cluster_check_interval setting
fix: detect Redis cluster reconfiguration when publishing messages in "nostore" mode
update: hiredis updated to v1.0.0
fix: segfault on out-of-shared-memory condition for multiplexed publishers

(adam)

2021-09-15 12:35:21 UTC MAIN commitmail json YAML

added math/R-gsl version 2.1.6

(mef)

2021-09-15 12:33:17 UTC MAIN commitmail json YAML

(math/R-gsl) import R-gsl-2.1.6

An R wrapper for the special functions and quasi random number
generators of the Gnu Scientific Library.

(mef)

2021-09-15 12:28:43 UTC MAIN commitmail json YAML

doc: Updated cross/avr-gcc to 10.3.0nb1

(micha)

2021-09-15 12:20:46 UTC MAIN commitmail json YAML

doc: Updated games/minetest to 5.4.1

(nia)

2021-09-15 12:20:15 UTC MAIN commitmail json YAML

2021-09-15 12:20:15 UTC MAIN commitmail json YAML

cross/avr-gcc: Update to 10.3.0nb1

Deleting the unwanted libcc1 after installation failed on some OS (because
they use non-standard paths for the library directory). The configure option
"--disable-libcc1" is now used instead.
Bump PKGREVISION because this change removes 2 plugins from the PLIST too.

Mention the C++ compiler in DESCR again.

(micha)

2021-09-15 12:07:24 UTC MAIN commitmail json YAML

Updated security/py-acme, security/py-certbot*

(adam)

2021-09-15 12:05:16 UTC MAIN commitmail json YAML

py-acme py-certbot*: updated to 1.19.0

Certbot 1.19.0

Added

The certbot-dns-rfc2136 plugin always assumed the use of an IP address as the
target server, but this was never checked. Until now. The plugin raises an error
if the configured target server is not a valid IPv4 or IPv6 address.
Our acme library now supports requesting certificates for IP addresses.
This feature is still unsupported by Certbot and Let's Encrypt.

Changed

Several attributes in certbot.display.util module are deprecated and will
be removed in a future release of Certbot. Any import of these attributes will
emit a warning to prepare the transition for developers.
zope based interfaces in certbot.interfaces module are deprecated and will
be removed in a future release of Certbot. Any import of these interfaces will
emit a warning to prepare the transition for developers.
We removed the dependency on chardet from our acme library. Except for when
downloading a certificate in an alternate format, our acme library now
assumes all server responses are UTF-8 encoded which is required by RFC 8555.

Fixed

Fixed parsing of Defined values in the Apache plugin to allow for = in the value.
Fixed a relatively harmless crash when issuing a certificate with --quiet/-q.

(adam)

2021-09-15 11:49:50 UTC MAIN commitmail json YAML

mautrix-hangouts: Relax version requirement, unbreak pkgsrc tree.

(nia)

2021-09-15 11:34:39 UTC MAIN commitmail json YAML

doc: Updated audio/libsamplerate to 0.2.2

(nia)

2021-09-15 11:34:25 UTC MAIN commitmail json YAML

libsamplerate: update to 0.2.2

Version 0.2.2 (2021-09-05)
  * Fix CMake overlinking for examples (#146)
  * Switch to GCC's visibility for hiding more implementation details
  * Check GNU ld instead of gcc for exported symbols control logic in
    configure.ac
  * Disable static builds using Autotools by default. If you want static
    libraries, pass --enable-static to ./configure
  * ABI version incompatibility between Autotools and CMake build on Apple
    platforms.
  * Fixes and improvements for CMake build system.
  * Fixes and improvements for Autotools build system.
  * Switch to .xz over .bz2 for release tarballs.
  * Minor bug fixes and updates.

(nia)

2021-09-15 11:24:32 UTC MAIN commitmail json YAML

Updated net/grpc, net/py-grpcio, net/py-grpcio-testing, net/py-grpcio-tools

(adam)

2021-09-15 11:23:13 UTC MAIN commitmail json YAML

grpc: updated to 1.40.0

Release v1.40.0

Core

Update Envoy API to the latest version (2021-07-30).
Enable retries by default.
Add opentelemetry as a submodule for latest xDS API.
Pointing the protobuf submodule to the new URL.
Remove BUILD.gn.
Prevent race causing early-destruction of grpc_winsocket object when creating a TCP connection.
TLS Security Connector: Add an always-fail-handshaker when certificates are not ready.
Enable layering checks in the Bazel build.
Support user provided "scope" in JWT and GDC.

C++

C++ opencensus filter: Fix point of creating context for overall call.
Open census call attempt span name and attribute changes
Open census filter: Use new internal stats API and record retry stats.
Add OpenCensus measures and views for retries.

Python

Add retry example for gRPC Python.
Remove Python 2.7 binary wheel generations.
[Aio][fix] catch application exception in request iterators.

(adam)

2021-09-15 08:20:49 UTC MAIN commitmail json YAML

Updated devel/py-dialog, net/py-lexicon

(adam)

2021-09-15 08:20:33 UTC MAIN commitmail json YAML

py-lexicon: updated to 3.7.0

3.7.0

Added

Add the Vercel provider (formerly known as Zeit)
Add the OpenShift Cloud Infrastructure (OCI) DNS provider

Modified

Keep old Zeit provider for compatibility purpose with deprecation notices
Support multiple domain statuses for Joker provider

(adam)

2021-09-15 08:19:47 UTC MAIN commitmail json YAML

py-dialog: updated to 3.5.2

Release 3.5.2

Update ChangeLog.init (improve some log messages)

demo: add example of an msgbox with timeout

* examples/demo.py: add method MyApp.timeout_demo(), which shows how to
detect a timeout when an msgbox has been presented to the user.

Fix related to the 'timeout' option (--timeout for dialog)

* dialog.py (Dialog._perform): ignore the dialog output when a timeout
occurred, which we know thanks to the exit code. Without this change,
output parsing or checking (e.g., in Dialog._widget_with_no_output())
would be broken by the '\ntimeout\n' string printed by dialog in such
cases (seen with msgbox, at least).

It might be that parsing is still disturbed for some widgets when a
timeout occurs, if they never produce an empty output in a no-timeout
situation: this remains to be checked. Also, it appears that the
--timeout option doesn't work with all widgets in the dialog
backend (tested with dialog 1.3-20201126: 'msgbox', 'checklist' and
'menu' support --timeout; 'inputbox' and 'mixedform' don't; other
widgets untested with this option).

Show use of d.add_persistent_args(["--no-nl-expand"]) in examples

* Using this option is quite relevant when using pythondialog. Thanks to
ChristianTacke for the report. Closes:
<https://github.com/frougon/pythondialog/issues/8>.

Improve support for the --timeout dialog option

* Set DIALOG_TIMEOUT in the environment when invoking dialog; this
allows us to distinguish between DIALOG_TIMEOUT and DIALOG_ESC. Add
the corresponding TIMEOUT attribute to the Dialog class.

(adam)

2021-09-15 08:06:58 UTC MAIN commitmail json YAML

doc: Updated audio/jack to 1.9.19nb3

(schmonz)

2021-09-15 07:44:37 UTC MAIN commitmail json YAML

Add patch missed in previous.

(schmonz)

2021-09-15 07:44:09 UTC MAIN commitmail json YAML

Install manpages under man1 (instead of at the top-level PKGMANDIR).
Bump PKGREVISION.

(schmonz)

2021-09-15 07:35:14 UTC MAIN commitmail json YAML

Add a few seemingly macOS-specific PLIST entries.

(schmonz)

2021-09-15 07:29:42 UTC MAIN commitmail json YAML

Updated devel/py-setuptools, net/py-tldextract

(adam)

2021-09-15 07:29:07 UTC MAIN commitmail json YAML

py-tldextract: updated to 3.1.2

3.1.2 (2021-09-01)

* Misc.
    * Only run pylint in Tox environments, i.e. CI, not by default in tests

(adam)

2021-09-15 07:28:22 UTC MAIN commitmail json YAML

py-setuptools: updated to 57.5.0

v57.5.0

Changes

Added implicit globbing support for [options.data_files] values.

Documentation changes

fix various syntax and style errors in code snippets in docs

(adam)

2021-09-15 07:15:38 UTC MAIN commitmail json YAML

doc: Added x11/yad version 10.1

(nia)

2021-09-15 07:14:52 UTC MAIN commitmail json YAML

add x11/yad

Yet Another Dialog allows you to display GTK+ dialog boxes from the command
line or shell scripts.

(nia)

2021-09-15 06:26:10 UTC MAIN commitmail json YAML

doc: Updated www/curl to 7.79.0

(wiz)

2021-09-15 06:26:01 UTC MAIN commitmail json YAML

curl: update to 7.79.0.

This release includes the following changes:

o bearssl: support CURLOPT_CAINFO_BLOB [3]
o http: consider cookies over localhost to be secure [24]
o secure transport: support CURLINFO_CERTINFO [63]

This release includes the following bugfixes:

o CVE-2021-22945: clear the leftovers pointer when sending succeeds [112]
o CVE-2021-22946: do not ignore --ssl-reqd [111]
o CVE-2021-22947: reject STARTTLS server response pipelining [110]
o ares: use ares_getaddrinfo() [51]
o asyn-ares.c: move all version number checks to the top
o auth: do not append zero-terminator to authorisation id in kerberos [32]
o auth: properly handle byte order in kerberos security message [36]
o auth: use sasl authzid option in kerberos [34]
o auth: we do not support a security layer after kerberos authentication [35]
o BINDINGS.md: update links to use https where available [50]
o build: fix compiler warnings [39]
o c-hyper: deal with Expect: 100-continue combined with POSTFIELDS [66]
o c-hyper: fix header value passed to debug callback [46]
o c-hyper: handle HTTP/1.1 => HTTP/1.0 downgrade on reused connection [65]
o c-hyper: initial step for 100-continue support [43]
o c-hyper: initial support for "dumping" 1xx HTTP responses [40]
o c-hyper: remove the hyper_executor_poll() loop from Curl_http [13]
o CI/cirrus: reduce compile time with increased parallism [19]
o CI: use GitHub Container Registry instead of Docker Hub [47]
o cirrus: Add FreeBSD 13.0 job and disable sanitizer build [128]
o cmake: avoid poll() on macOS [59]
o cmake: sync CURL_DISABLE options [55]
o codeql: fix error "Resource not accessible by integration" [61]
o compressed.d: it's a request, not an order [21]
o config.d: escape the backslash properly [81]
o config.d: note that curlrc is used even when --config [107]
o config: get rid of the unused HAVE_SIG_ATOMIC_T et. al.
o configure.ac: revert bad nghttp2 library detection improvements [9]
o configure: error out if both ngtcp2 and quiche are specified [30]
o configure: make --disable-hsts work [106]
o configure: set classic mingw minimum OS version to XP [83]
o configure: tweak nghttp2 library name fix [2]
o connect: get local port + ip also when reusing connections [95]
o connect: remove superfluous conditional [23]
o curl-openssl.m4: check lib64 for the pkg-config file [14]
o curl-openssl.m4: show correct output for OpenSSL v3 [75]
o curl.1: mention "global" flags [7]
o curl.1: provide examples for each option [99]
o curl: add warning for ignored data after quoted form parameter [60]
o curl: add warning for incompatible parameters usage [102]
o curl: better error message when -O fails to get a good name [88]
o curl: stop retry if Retry-After: is longer than allowed [104]
o curl_easy_setopt.3: improve the string copy wording [89]
o Curl_hsts_loadcb: don't attempt to load if hsts wasn't inited [116]
o curl_setup.h: sync values for HTTP_ONLY [82]
o curl_url_get.3: clarify about path and query [45]
o CURLMOPT_TIMERFUNCTION.3: remove misplaced "time" [5]
o CURLOPT_DOH_URL.3: CURLOPT_OPENSOCKETFUNCTION is not inherited [8]
o CURLOPT_SSL_CTX_*.3: tidy up the example [15]
o CURLOPT_UNIX_SOCKET_PATH.3: remove nginx reference, add see also [90]
o docs/MQTT: update state of username/password support [4]
o docs: remove experimental mentions from HSTS and MQTT [93]
o docs: the security list is reached at security at curl.se now [124]
o easy: use a custom implementation of wcsdup on Windows [31]
o examples/*hiperfifo.c: fix calloc arguments to match function proto [103]
o examples/cookie_interface: avoid printfing time_t directly [18]
o examples/cookie_interface: fix scan-build printf warning [16]
o examples/ephiperfifo.c: simplify signal handler [42]
o FAQ: add two dev related questions [108]
o getparameter: fix the --local-port number parser [58]
o happy-eyeballs-timeout-ms.d: polish the wording [10]
o hostip: Make Curl_ipv6works function independent of getaddrinfo [26]
o http2: Curl_http2_setup needs to init stream data in all invokes [119]
o http2: revert a change that broke upgrade to h2c [57]
o http2: revert call the handle-closed function correctly on closed stream [25]
o http: disallow >3-digit response codes [80]
o http: ignore content-length if any transfer-encoding is used [101]
o http_proxy: clear 'sending' when the outgoing request is sent [6]
o http_proxy: fix the User-Agent inclusion in CONNECT [115]
o http_proxy: fix user-agent and custom headers for CONNECT with hyper [38]
o http_proxy: only wait for writable socket while sending request [78]
o INTERNALS: bump c-ares requirement to 1.16.0
o INTERNALS: c-ares has a new home: c-ares.org
o lib: don't use strerror() [127]
o libcurl-errors.3: clarify two CURLUcode errors [72]
o limit-rate.d: clarify base unit [17]
o mailing lists: move from cool.haxx.se to lists.haxx.se
o mbedtls: avoid using a large buffer on the stack [105]
o mbedTLS: initial 3.0.0 support [33]
o mbedtls_threadlock: fix unused variable warning [11]
o mksymbolsmanpage.pl: Fix showing symbol's last used version [76]
o mksymbolsmanpage.pl: match symbols case insenitively [77]
o multi: fix compiler warning with `CURL_DISABLE_WAKEUP` [96]
o ngtcp2: compile with the latest ngtcp2 and nghttp3 [12]
o ngtcp2: fix build with ngtcp2 and nghttp3 [117]
o ngtcp2: remove the acked_crypto_offset struct field init [64]
o ngtcp2: replace deprecated functions with nghttp3_conn_shutdown_stream_read [28]
o ngtcp2: reset the oustanding send buffer again when drained [53]
o ngtcp2: rework the return value handling of ngtcp2_conn_writev_stream [29]
o ngtcp2: stop buffering crypto data [85]
o ngtcp2: utilize crypto API functions to simplify [52]
o openssl: annotate SSL3_MT_SUPPLEMENTAL_DATA [98]
o openssl: when creating a new context, there cannot be an old one [48]
o opt-docs: make sure all man pages have examples [92]
o opt-docs: verify man page sections + order [91]
o opts docs: unify phrasing in NAME header [126]
o output.d: add method to suppress response bodies [49]
o page-header: add GOPHERS, simplify wording in the 1st para [94]
o progress: fix a compile warning on some systems [54]
o progress: make trspeed avoid floats [100]
o runtests: add option -u to error on server unexpectedly alive [125]
o schannel: Work around typo in classic mingw macro [84]
o scripts: invoke interpreters through /usr/bin/env [68]
o setopt: enable CURLOPT_IGNORE_CONTENT_LENGTH for hyper [70]
o strerror.h: remove the #include from files not using it
o symbols-in-versions: fix CURLSSLBACKEND_QSOSSL last used version [73]
o test1138: remove trailing space to make work with hyper [71]
o test1173: check references to libcurl options [69]
o test1280: CRLFify the response to please hyper [86]
o test1565: fix windows build errors [27]
o test365: verify response with chunked AND Content-Length headers
o tests/*server.pl: flush output before executing subprocess [41]
o tests/*server.py: remove pidfile on server termination [1]
o tests/runtests.pl: cleanup copy&paste mistakes and unused code
o tests/server/*.c: align handling of portfile argument and file [56]
o tests: adjust the tftpd output to work with hyper mode [97]
o tests: be explicit about using 'python3' instead of 'python' [67]
o tests: enable test 1129 for hyper builds [87]
o tests: make three tests pass until 2037 [22]
o tool/tests: fix potential year 2038 issues [20]
o tool_operate: Fix --fail-early with parallel transfers [62]
o url: fix compiler warning in no-verbose builds [120]
o urlapi.c:seturl: assert URL instead of using if-check [74]
o vtls: fix typo in schannel_verify.c [44]
o winbuild/README.md: clarify GEN_PDB option
o wolfssl: clean up wolfcrypt error queue [79]
o write-out.d: clarify size_download/upload [118]
o x509asn1: fix heap over-read when parsing x509 certificates [37]

(wiz)

2021-09-15 01:18:14 UTC MAIN commitmail json YAML

doc: Updated lang/mozjs78 to 78.13.0

(gutteridge)

2021-09-15 01:17:46 UTC MAIN commitmail json YAML

mozjs78: update to 78.13.0

The full gamut of security fixes for this release is unknown, but, at
minimum, CVE-2020-16042 is addressed. (A full change log seems elusive:
the package's README points to a broken link, Mozilla advisories about
"memory safety hazards" can point to bug reports that can't be viewed,
etc.) This is the most current version that Debian has integrated,
which is where our package points to.

Successful build tests on:
NetBSD amd64/9.2_STABLE (with both Rust 1.52.1 and 1.54)
NetBSD i386/9.2_STABLE
OmniOS r151036

Fedora Linux 34 was not testable, as our packaging of LLVM 12.0.1 fails
to build on it. The upstream configuration continues to cap macOS build
support at 10.15.4. I updated our existing patch to allow 10.15.7, but
have no ability to test that OS, and no idea if 11.x would work.

This is effectively a minor leaf package now, and may best be removed
in future. I've updated this just in case issues emerge with the polkit
switch to duktape, which will first appear in our 2021Q3 branch. (That
is, I'm not aware of any issues, and definitely prefer duktape from a
packaging perspective.)

(gutteridge)

2021-09-14 22:35:56 UTC MAIN commitmail json YAML

doc: Updated security/tor-browser to 10.5.6

(wiz)

2021-09-14 22:35:44 UTC MAIN commitmail json YAML

tor-browser: update to 10.5.6.

Update Firefox to 78.14.0esr

(wiz)

2021-09-14 20:23:04 UTC MAIN commitmail json YAML

Make sysutils/py-magic work in a chroot again

I have no idea why this patch was dropped, but dropping it broke things...

(js)

2021-09-14 20:01:59 UTC MAIN commitmail json YAML

doc: Updated chat/mautrix-telegram to 0.10.1

(js)

2021-09-14 20:01:48 UTC MAIN commitmail json YAML

Update chat/mautrix-telegram to 0.10.1

v0.10.0-rc1

Deprecation warning

v0.10 is the last release that is guaranteed to support SQLite. A future release will likely switch away from SQLAlchemy and only support Postgres.

Added

  * Support for multiple pins from/to Telegram.
  * Option to resolve redirects when joining invite links, for people who use custom URLs as invite links (#559).
  * Command to update about section in Telegram profile info (#375, thanks to @MadhuranS in #599).
  * Own read marker/unread status from Telegram is now synced to Matrix after backfilling.
  * Support for showing the individual slots in slot_machine dice rolls from Telegram.

Improved

  * Improved invite link regex to allow joining with less precise invite links (#554, #555).
  * Invite links can be customized with the --uses=<amount> and --expire=<delta> flags for !tg invite-link.
  * Read receipts where the target message is unknown will now cause the chat to be marked as fully read instead of the read receipt event being ignored.
  * WebP stickers are now sent as-is without converting to png.
  * Default power levels in rooms now allow enabling encryption with PL 50 if e2be is enabled in config (#471, thanks to @Rafaeltheraven in #550).
  * Updated Docker image to Alpine 3.13 and removed all edge repo stuff.

Fixed

  * Matrix->Telegram location message bridging no longer flips the coordinates.
  * Fixed some user displaynames constantly changing between contact/non-contact names and other similar cases (#533)

v0.10.0

Deprecation warning

v0.10 is the last release that is guaranteed to support SQLite. A future release will likely switch away from SQLAlchemy and only support Postgres. See the docs for Postgres migration instructions.

Changes since v0.10.0-rc1

  * Added options to bridge archive, pin and mute status from Telegram to Matrix.
  * Added custom fields in Matrix events indicating Telegram gifs.
  * Allowed zero-width joiners in displaynames so things like multi-part emoji would work correctly.
  * Fixed Telegram->Matrix typing notifications.

v0.10.1

N.B. Docker images have moved from dock.mau.dev/tulir/mautrix-telegram to dock.mau.dev/mautrix/telegram. New versions are only available at the new path.
Added

  * Warning when bridging existing room if bridge bot doesn't have redaction permissions.
  * Custom flag to invite events that will be auto-accepted using double puppeting.
  * Custom flags for animated stickers (same as what gifs already had).

Improved

  * Updated to Telethon 1.22.
  * Updated Docker image to Alpine 3.14.

Fixed

  * Fixed Bridging Matrix location messages with additional flags in geo_uri.
  * Editing encrypted messages will no longer add an asterisk on Telegram (#623).
  * Matrix typing notifications won't be echoed back for double puppeted users anymore (#631).
  * AuthKeyDuplicatedError is now handled properly instead of making the user get stuck.
  * Fixed public_portals setting not being respected on room creation.

(js)

2021-09-14 19:42:43 UTC MAIN commitmail json YAML

doc: Updated chat/py-telethon to 1.23.0

(js)

2021-09-14 19:42:19 UTC MAIN commitmail json YAML

Update chat/py-telethon to 1.23.0

Upstream does not seem to provide a change log.

(js)

2021-09-14 19:19:58 UTC MAIN commitmail json YAML

doc: Updated chat/py-mautrix to 0.10.5

(js)

2021-09-14 19:19:35 UTC MAIN commitmail json YAML

Update chat/py-mautrix to 0.10.5

This skips over 20 versions, so including the full change log is not feasible.
Please see https://github.com/mautrix/python/releases.

(js)

2021-09-14 16:49:14 UTC MAIN commitmail json YAML

doc: Updated misc/ansiweather to 1.18.0

(fcambus)

2021-09-14 16:49:01 UTC MAIN commitmail json YAML

ansiweather: update to 1.18.0.

AnsiWeather 1.18.0 (2021-09-14)

- Update man page to add the -v option (Thanks Takayuki Hirota)
- Add support for displaying feels like temperature (Thanks Andrew Abdalian)
- Use command -v instead of which (Thanks er0k)
- Add SPDX short license identifier in source file

(fcambus)

2021-09-14 13:32:50 UTC MAIN commitmail json YAML

2021-09-14 10:50:48 UTC MAIN commitmail json YAML

Remove stuff inadvertently included in previous (thanks wiz@).

(schmonz)

2021-09-14 10:33:26 UTC MAIN commitmail json YAML

mk/platform: add SDK mapping for macOS 11.6.

(schmonz)

2021-09-14 10:12:16 UTC MAIN commitmail json YAML

go117: Rework illumos getgrouplist hack.

The previous change only worked for the build of go itself, any dependencies
that used the same go code were broken.  Fixes www/gitea and others.

Needs to be fixed properly by creating a native illumos bootstrap kit.

(jperkin)

2021-09-14 08:30:10 UTC MAIN commitmail json YAML

Updated devel/libatomic_ops, sysutils/ansible-base

(adam)

2021-09-14 08:29:53 UTC MAIN commitmail json YAML

ansible-base: updated to 2.10.14

v2.10.14
========

Bugfixes
--------
- Restructured pipelining settings to be at the connection plugins leaving base config as global and for backwards compatiblity.
- command module, clarify order of remove/creates checks.
- command module, correctly handles chdir to symlinks.
- command module, move to standarized messages in 'msg' vs abusing 'stdout'.
- command module, now all options work in ad-hoc execution.
- command module, now always returns what we documented as 'returns always'.
- make previous versions compatible we new attributres w/o implementing them.

(adam)

2021-09-14 08:29:08 UTC MAIN commitmail json YAML

libatomic_ops: updated to 7.6.12

Changes 7.6.12

Allow to generalize bool-CAS for sparc (gcc)
Declare argument of AO_load_next with const in atomic_ops_stack
Describe double_compare_and_swap operation in README_details
Document CAS operations better in README_details
Fix gcc/sunc x86 AO_compare_double_and_swap_double missing side effect
Fix library name in README_details
Fix link fail caused by missing GCC char/short atomic primitives on riscv64
Fix size of local variable passed to cas[x] (gcc/sparc)
Implement fetch-CAS for sparc (gcc)
Refactor gcc x86 memory constraints
Refine and reformat description of size prefix in README_details
Remove outdated notes in README_details
Replace x86 setz instruction by asm flag output operand (gcc)
Support MSYS host (configure)
Turn off compare_double_and_swap_double_full PIC hack for GCC 5+ (x86)
Update README_win32 to match Makefile.msft
Use GCC atomic intrinsics for s390x (clang 8.0+ and gcc 5.4+)
Use __alignof__ instead of sizeof in atomic variable alignment assertions
Workaround assertion violation in AO_load/store on m68k

(adam)

2021-09-14 07:59:13 UTC MAIN commitmail json YAML

R-mvtnorm: gfortran.mk should not be directly included.

(jperkin)

2021-09-14 07:25:55 UTC MAIN commitmail json YAML

doc/TODO: + gdb-11.1.

(wiz)

2021-09-14 07:08:26 UTC MAIN commitmail json YAML

Updated www/py-httpcore, multimedia/libass

(adam)

2021-09-14 06:46:18 UTC MAIN commitmail json YAML

libass: updated to 0.15.2

Release 0.15.2

This is a bug fix release without API or ABI changes, mainly to fix more known 0.15.0 and 0.15.1 regressions. But as a bonus, it is now possible to build the DirectWrite system font provider for Microsoft窶冱 Universal Windows Platform (UWP).

Two known minor 0.15.x DirectWrite system font regressions remain:

when a font is attached/memory-loaded but a different (non-attached) style of the same font is used by the subtitles
(only the attached style[s] will be used; this also affects Core Text since 0.13.0 but not Fontconfig);

in the unlikely case that the full name of a system font equals the family name of another system font
(only the family name matches will be found).

Also please note that our IRC channel #libass has moved from freenode.net to Libera.Chat, and all presence on freenode.net has been fully retired.

Changes:

Fix some known 0.15.x regressions:
Fix Core Text font fallback failing on some fonts with multiple names
Fix DirectWrite failing to look up any but the first loaded variant of system fonts
Fix some format string bugs, which could lead to garbled log messages or on some platforms crashes
Fix ass_set_fonts_dir failing to load long paths
Better handling of control characters that have no associated font glyphs
DirectWrite: font lookup is now closer to VSFilter
DirectWrite: this font provider can now be built for UWP

(adam)

2021-09-14 06:42:49 UTC MAIN commitmail json YAML

py-httpcore: updated to 0.13.7

0.13.7
- Fix broken error messaging when URL scheme is missing, or a non HTTP(S) scheme is used.

(adam)

2021-09-14 06:28:57 UTC MAIN commitmail json YAML

firefox-esr: point at firefox91

(nia)

2021-09-14 06:23:32 UTC MAIN commitmail json YAML

i3: add missing bash build dependency

(wiz)

2021-09-13 20:32:59 UTC MAIN commitmail json YAML

doc: Updated net/ncgopher to 0.2.0nb2

(pin)

2021-09-13 20:32:35 UTC MAIN commitmail json YAML

net/ncgopher: rev bump, fix broken builds

Both mef and jperkin have reported broken builds for ncgopher
after rust update to 1.54.0

I've contacted upstream and they have updated the dependencies
but, no new release.
https://github.com/jansc/ncgopher/issues/35

The package builds fine on my 9.99.88 amd64 now.

(pin)

2021-09-13 18:33:33 UTC MAIN commitmail json YAML

doc: Updated audio/termusic to 0.3.11

(pin)

2021-09-13 18:33:13 UTC MAIN commitmail json YAML

audio/termusic: update to 0.3.11

-Load faster by loading queue after app start.
-Remove dependency of ogg-metadata.
-Display version info in both tui and cli.
-Could override music directory with command line arguments.

(pin)

2021-09-13 18:27:41 UTC MAIN commitmail json YAML

doc/TODO: + gzip-1.11, openssl-3.0.0, tor-browser-10.5.6.

(wiz)

2021-09-13 15:38:17 UTC MAIN commitmail json YAML

doc: Updated chat/element-web to 1.8.4

(js)

2021-09-13 15:38:06 UTC MAIN commitmail json YAML

Update chat/element-web to 1.8.4

This contains an important security update, details to be published soon.

As multiple versions are skipped, the change log is rather large.
Please have a look at https://github.com/vector-im/element-web/releases/.

(js)

2021-09-13 15:35:35 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-delayer to 1.2.1

(tsutsui)

2021-09-13 15:35:18 UTC MAIN commitmail json YAML

2021-09-13 15:25:27 UTC MAIN commitmail json YAML

doc: Updated net/mikutter to 4.1.6

(tsutsui)

2021-09-13 15:25:08 UTC MAIN commitmail json YAML

mikutter: update to 4.1.6.

Upstream changes

mikutter 4.1.6
https://mikutter.hatenablog.com/entry/2021/09/13/215700

* ggrks (search by Google) used URI.escape removed on Ruby 3.0.0
* thanks Akira Ouchi

(tsutsui)

2021-09-13 11:55:05 UTC MAIN commitmail json YAML

Updated comms/java-rxtx to 2.1.7r2nb3

(dsainty)

2021-09-13 11:44:45 UTC MAIN commitmail json YAML

Install java-rxtx in a consistent location regardless of whether the JRE
is built-in or via Pkgsrc.

This removes the JAVA_INSTALL_BASE hack that used to work, but no longer
does.  It's also more consistent with other packages to install in a
private location.

Bump PKGREVISION for the installation location change.

(dsainty)

2021-09-13 11:37:34 UTC MAIN commitmail json YAML

2021-09-13 11:24:02 UTC MAIN commitmail json YAML

Updated net/py-zeep, finance/py-eth-hash

(adam)

2021-09-13 11:23:45 UTC MAIN commitmail json YAML

py-eth-hash: updated to 0.3.2

eth-hash v0.3.2 (2021-09-03)

Miscellaneous changes

Drop eth-utils requirement, to fix dependency cycle

(adam)

2021-09-13 11:20:15 UTC MAIN commitmail json YAML

py-zeep: updated to 4.1.0

4.1.0 (2021-08-15)
------------------
- Remove last dependency on `six`
- Use `platformdirs` instead of the `appsdirs` dependency
- Pass digest method when signing timestamp node
- Fix settings context manager when an exception is raised
- Don't render decimals using scientific notation
- Remove dependency on `defusedxml` (deprecated)
- Improve handling of str values for Duration

(adam)

2021-09-13 10:13:50 UTC MAIN commitmail json YAML

Updated databases/tdb, net/samba4

(adam)

2021-09-13 10:13:33 UTC MAIN commitmail json YAML

samba4: updated to 4.3.11

Changes since 4.13.10
* BUG 14769: smbd panic on force-close share during offload write.
* BUG 14731: Fix returned attributes on fake quota file handle and avoid
  hitting the VFS.
* BUG 14783: smbd "deadtime" parameter doesn't work anymore.
* BUG 14787: net conf list crashes when run as normal user.
* BUG 14607: Work around special SMB2 READ response behavior of NetApp Ontap
  7.3.7.
* BUG 14793: Start the SMB encryption as soon as possible.
* BUG 14792: Winbind should not start if the socket path for the privileged
  pipe is too long.

(adam)

2021-09-13 10:12:43 UTC MAIN commitmail json YAML

tdb: updated to 1.4.5

1.4.5:
Unknown changes

(adam)

2021-09-13 08:40:04 UTC MAIN commitmail json YAML

Updated devel/py-bitarray, security/py-asyncssh

(adam)

2021-09-13 08:39:47 UTC MAIN commitmail json YAML

py-asyncssh: updated to 2.7.1

Release 2.7.1 (6 Sep 2021)
--------------------------

* Added an option to allow encrypted keys to be ignored when no passphrase
  is set. This behavior previously happened by default when loading keys
  from default locations, but now this option to load_keypairs() can be
  specified when loading any set of keys.

* Changed loading of default keys to automatically skip key types which
  aren't supported due to missing dependencies.

* Added the ability to specify "default" for server_host_key_algs, as
  a way for a client to request that its full set of default algorithms
  be advertised to the server, rather than just the algorithms matching
  keys in the client's known hosts list. Thanks go to Manfred Kaiser
  for suggesting this improvement.

* Added support for tilde-expansion in the config file "include"
  directive. Thanks go to Zack Cerza for reporting this and suggesting
  a fix.

* Improved interoperatbility of AsyncSSH SOCKS listener by sending a zero
  address rather than an empty hostname in the SOCKS CONNECT response.
  Thanks go to Github user juouy for reporting this and suggesting a fix.

* Fixed a couple of issues related to sending SSH_EXT_INFO messages.

* Fixed an issue with using SSHAcceptor as an async context manager.
  Thanks go to Paulo Costa for reporing this.

* Fixed an issue where a tunnel wasn't always cleaned up properly when
  creating a remote listener.

* Improved handling of connection drops, avoiding exceptions from being
  raised in some cases when the transport is abruptly closed.

* Made AsyncSSH SFTP support more tolerant of file permission values with
  undefined bits set. Thanks go to GitHub user ccwufu for reporting this.

* Added some missing key exchange algorithms in the AsyncSSH documentation.
  Thanks go to Jeremy Norris for noticing and reporting this.

* Added support for running AsyncSSH unit tests on systems with OpenSSL
  3.0 installed. Thanks go to Ken Dreyer for raising this issue and
  pointing out the new OpenSSL "provider" support for legacy algorithms.

(adam)

2021-09-13 08:39:07 UTC MAIN commitmail json YAML

py-bitarray: updated to 2.3.4

2021-09-12  2.3.4:
-------------------
* Fix `util.ba2int()` for frozenbitarrays.  A bug was introduced in 2.3.0
  as `.tobytes()` no longer treats pad bits for read-only buffers as zero.
* add tests

2021-09-05  2.3.3:
-------------------
* improve some error messages
* add tests

2021-08-23  2.3.2:
-------------------
* fix slice assignment for shared buffer with offset case
* add tests (including internal debug mode tests for `buffers_overlap()`)

2021-08-20  2.3.1:
-------------------
* fix special shared buffer copy case
* add and improve tests

(adam)

2021-09-13 08:04:39 UTC MAIN commitmail json YAML

pango: bump fribidi requirement per release notes

(wiz)

2021-09-13 07:58:50 UTC MAIN commitmail json YAML

Updated devel/pango

(adam)

2021-09-13 07:57:19 UTC MAIN commitmail json YAML

pango: updated to 1.48.9

Overview of changes in 1.48.9
=============================
* Require fribidi 1.0.6
* Clean up fribidi api usage
* Fix a bug in the gravity data table

Overview of changes in 1.48.8
=============================
* Rename git `master` branch to `main`
* Fix threadsafety issues with Thai
* Fix a rounding problem on i386
* Fix font choice for ellipsis
* Fix a crash if no fonts are found

(adam)

2021-09-13 07:50:06 UTC MAIN commitmail json YAML

doc: Updated graphics/ImageMagick to 7.1.0.6

(wiz)

2021-09-13 07:49:56 UTC MAIN commitmail json YAML

ImageMagick: update to 7.1.0.6.

2021-09-04  7.1.0-6  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.1.0-6 GIT revision 19033:7c589e780:20210904

2021-08-21  7.1.0-6  <quetzlzacatenango@image...>
  * Tweak the bilevel image type (reference
    https://github.com/ImageMagick/ImageMagick/issues/4121).
  * Converting from LAB to RGB leads to wrong colors (reference
    https://github.com/ImageMagick/ImageMagick/issues/4105).

(wiz)

2021-09-13 07:46:00 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Test-BDD-Cucumber to 0.82

(schmonz)

2021-09-13 07:45:50 UTC MAIN commitmail json YAML

Update to 0.82. From the changelog:

[Added]
- Environment variable expansion in configuration profiles; use
  ${ENVVAR} anywhere in a 'pherkin.yaml' file to substitute the
  value from the environment. Use $${ENVVAR} to include the
  exact value '${ENVVAR}.

(schmonz)

2021-09-13 07:36:27 UTC MAIN commitmail json YAML

doc: Updated devel/mob to 1.12.0

(schmonz)

2021-09-13 07:36:17 UTC MAIN commitmail json YAML

Update to 1.12.0. From the changelog:

- If you renamed the executable or use a symlink to use a
  different name, `mob` will detect the new name and use that in
  its console output.
- Improves error handling when using `mob start -i`. When the working
  directory is a subdirectory that would be removed due to `git stash`
  the mob tool will tell the user about this and aborts with an error.

pkgsrc changes:

- Install an `ensemble` symlink.

(schmonz)

2021-09-13 07:16:32 UTC MAIN commitmail json YAML

Updated devel/glib2, devel/glib2-tools, devel/gdbus-codegen

(adam)

2021-09-13 07:14:50 UTC MAIN commitmail json YAML

glib2: updated to 2.68.4

Overview of changes in GLib 2.68.4
==================================

* Bugs fixed:
- Read past the end of buffer in g_win32_package_parser_enum_packages
- Backport !2155 “glocalfilemonitor: Avoid a deadlock on finalization” to glib-2-68
- Backport !2174 “data-to-c.py: generate new-line at the end of the file” to glib-2-68
- Backport !2180 “correctly use 3 parameters for close_range” to glib-2-68
- Backport !2185 “glocalfile: Fix the global trash dir detection” to glib-2-68
- Backport !2208 “g_string_replace: Don't replace empty string more than once per location” to glib-2-68
- Backport GWin32AppInfo fixes to glib-2-68

* Translation updates:
- Chinese (China)
- Chinese (Taiwan)
- Occitan (post 1500)

(adam)

2021-09-13 06:58:11 UTC MAIN commitmail json YAML

doc: Updated mail/notmuch to 0.33.1

(wiz)

2021-09-13 06:58:02 UTC MAIN commitmail json YAML

notmuch: update to 0.33.1.

Notmuch 0.33.1 (2021-09-10)
===========================

General
-------

Replace the fully-qualified-domain-name of the host with "localhost"
in the default email address.  This should fix two flaky subtests in
T590-libconfig.

(wiz)

2021-09-13 06:57:06 UTC MAIN commitmail json YAML

doc: Updated x11/libxkbcommon to 1.3.1

(wiz)

2021-09-13 06:56:57 UTC MAIN commitmail json YAML

libxkbcommon: update to 1.3.1.

libxkbcommon 1.3.1 - 2021-09-10
==================

- In `xkbcli interactive-x11`, use the Esc keysym instead of the Esc keycode
  for quitting.

  Contributed by Simon Ser.

- In `xkbcli how-to-type`, add `--keysym` argugment for how to type a keysym
  instead of a Unicode codepoint.

- Fix a crash in `xkb_x11_keymap_new_from_device` error handling given some
  invalid keymaps. Regressed in 1.2.0.

  Reported by Zack Weinberg. Tested by Uli Schlachter.

(wiz)

2021-09-13 06:52:49 UTC MAIN commitmail json YAML

Updated devel/py-astroid, devel/py-pylint

(adam)

2021-09-13 06:52:31 UTC MAIN commitmail json YAML

py-pylint: updated to 2.10.2

What's New in Pylint 2.10.2?
============================
* We now use platformdirs instead of appdirs since the latter is not maintained.
* Fix a crash in the checker raising ``shallow-copy-environ`` when failing to infer
  on ``copy.copy``

What's New in Pylint 2.10.1?
============================
* pylint does not crash when PYLINT_HOME does not exist.

What's New in Pylint 2.10.0?
============================
* pyreverse: add option to produce colored output.
* pyreverse: add output in PlantUML format.
* ``consider-using-with`` is no longer triggered if a context manager is returned from a function.
* pylint does not crash with a traceback anymore when a file is problematic. It
  creates a template text file for opening an issue on the bug tracker instead.
  The linting can go on for other non problematic files instead of being impossible.
* pyreverse: Show class has-a relationships inferred from the type-hint
* Fixed a crash when importing beyond the top level package during ``import-error``
  message creation
* Added ``ignored-parents`` option to the design checker to ignore specific
  classes from the ``too-many-ancestors`` check (R0901).
* Added ``unspecified-encoding``: Emitted when open() is called without specifying an encoding
* Improved the Similarity checker performance. Fix issue with ``--min-similarity-lines`` used with ``--jobs``.
* Don't emit ``no-member`` error if guarded behind if statement.
* The default for ``PYLINTHOME`` is now the standard ``XDG_CACHE_HOME``, and pylint now uses ``appdirs``.
* Added ``use-list-literal``: Emitted when ``list()`` is called with no arguments instead of using ``[]``
* Added ``use-dict-literal``: Emitted when ``dict()`` is called with no arguments instead of using ``{}``
* Added optional extension ``consider-ternary-expression``: Emitted whenever a variable is assigned in both branches of an if/else block.
* Added optional extension ``while-used``: Emitted whenever a ``while`` loop is used.
* Added ``forgotten-debug-statement``: Emitted when ``breakpoint``, ``pdb.set_trace`` or ``sys.breakpointhook`` calls are found
* Fix false-positive of ``unused-private-member`` when using nested functions in a class
* Fix crash for ``unused-private-member`` that occurred with nested attributes.
* Fix a false positive for ``unused-private-member`` with class names
* Fix false positives for ``superfluous-parens`` with walrus operator, ternary operator and inside list comprehension.
* Added ``format-string-without-interpolation`` checker: Emitted when formatting is applied to a string without any variables to be replaced
* Refactor of ``--list-msgs`` & ``--list-msgs-enabled``: both options now show whether messages are emittable with the current interpreter.
* Fix false negative for ``used-before-assignment`` when the variable is assigned
  in an exception handler, but used outside of the handler.
* Added ``disable-next`` option: allows using `# pylint: disable-next=msgid` to disable a message for the following line
* Added ``redundant-u-string-prefix`` checker: Emitted when the u prefix is added to a string
* Fixed ``cell-var-from-loop`` checker: handle cell variables in comprehensions within functions,
  and function default argument expressions. Also handle basic variable shadowing.
* Fixed bug with ``cell-var-from-loop`` checker: it no longer has false negatives when
  both ``unused-variable`` and ``used-before-assignment`` are disabled.
* Fix false postive for ``invalid-all-format`` if the list or tuple builtin functions are used
* Config files can now contain environment variables
* Fix false-positive ``used-before-assignment`` with an assignment expression in a ``Return`` node
* Added ``use-sequence-for-iteration``: Emitted when iterating over an in-place defined ``set``.
* ``CodeStyleChecker``
  * Limit ``consider-using-tuple`` to be emitted only for in-place defined ``lists``.
  * Emit ``consider-using-tuple`` even if list contains a ``starred`` expression.
* Ignore decorators lines by similarities checker when ignore signatures flag enabled
* Allow ``true`` and ``false`` values in ``pylintrc`` for better compatibility with ``toml`` config.
* Class methods' signatures are ignored the same way as functions' with similarities "ignore-signatures" option enabled
* Improve performance when inferring ``Call`` nodes, by utilizing caching.
* Improve error message for invalid-metaclass when the node is an Instance.

(adam)

2021-09-13 06:50:20 UTC MAIN commitmail json YAML

py-astroid: updated to 2.7.3

What's New in astroid 2.7.3?
============================
* The transforms related to a module are applied only if this module has not been explicitly authorized to be imported
  (i.e is not in AstroidManager.extension_package_whitelist). Solves the following issues if numpy is authorized to be imported
  through the `extension-pkg-allow-list` option.
* Fixed bug in attribute inference from inside method calls.
* Fixed bug in inference for superclass instance methods called
  from the class rather than an instance.
* Fixed bug in inference of chained attributes where a subclass
  had an attribute that was an instance of its superclass.
* Adds a brain for the ctypes module.
* When processing dataclass attributes, exclude the same type hints from abc.collections
  as from typing.
* Apply dataclass inference to pydantic's dataclasses.

What's New in astroid 2.7.2?
============================
* ``BaseContainer`` is now public, and will replace ``_BaseContainer`` completely in astroid 3.0.
* The call cache used by inference functions produced by ``inference_tip``
  can now be cleared via ``clear_inference_tip_cache``.
* ``astroid.const.BUILTINS`` and ``astroid.bases.BUILTINS`` are not used internally anymore
  and will be removed in astroid 3.0. Simply replace this by the string 'builtins' for better
  performances and clarity.
* Add inference for dataclass initializer method.

What's New in astroid 2.7.1?
============================
* When processing dataclass attributes, only do typing inference on collection types.
  Support for instantiating other typing types is left for the future, if desired.
* Fixed LookupMixIn missing from ``astroid.node_classes``.

What's New in astroid 2.7.0?
============================
* Import from ``astroid.node_classes`` and ``astroid.scoped_nodes`` has been deprecated in favor of
  ``astroid.nodes``. Only the imports from ``astroid.nodes`` will work in astroid 3.0.0.
* Add support for arbitrary Enum subclass hierachies
* Add inference tips for dataclass attributes, including dataclasses.field calls.
  Also add support for InitVar.
* Adds a brain that deals with dynamic import of `IsolatedAsyncioTestCase` class of the `unittest` module.

(adam)

2021-09-13 06:37:07 UTC MAIN commitmail json YAML

doc: Updated www/grafana to 8.1.3

(triaxx)

2021-09-13 06:35:35 UTC MAIN commitmail json YAML

grafana: Update to 8.1.3

upstream changes:
-----------------
Bug fixes
  o Alerting: Fix alert flapping in the internal alertmanager. #38648, @gotjosh
  o Alerting: Fix request handler failed to convert dataframe "results" to
    plugins.DataTimeSeriesSlice: input frame is not recognized as a time
    series.  #38587, @idafurjes
  o Dashboard: Fix UIDs are not preserved when importing/creating dashboards
    thru importing .json file. #38659, @axelavargas
  o Dashboard: Forces panel re-render when exiting panel edit. #38913,
    @hugohaggmark
  o Dashboard: Prevent folder from changing when navigating to general
    settings. #38103, @hugohaggmark
  o Docker: Force use of libcrypto1.1 and libssl1.1 versions to fix
    CVE-2021-3711. #38585, @dsotirakis
  o Elasticsearch: Fix metric names for alert queries. #38546, @dsotirakis
  o Elasticsearch: Limit Histogram field parameter to numeric values. #38631,
    @Elfo404
  o Elasticsearch: Prevent pipeline aggregations to show up in terms order by
    options. #38448, @Elfo404
  o LibraryPanels: Prevent duplicate repeated panels from being created.
    #38804, @hugohaggmark
  o Loki: Fix ad-hoc filter in dashboard when used with parser. #38542,
    @ivanahuckova
  o Plugins: Track signed files + add warn log for plugin assets which are not
    signed. #38938, @wbrowne
  o Postgres/MySQL/MSSQL: Fix region annotations not displayed correctly.
    #38936, @marefr
  o Prometheus: Fix validate selector in metrics browser. #38921, @ivanahuckova

(triaxx)

2021-09-13 06:14:55 UTC MAIN commitmail json YAML

doc: Updated finance/ledger2beancount to 2.5nb2

(wiz)

2021-09-13 06:14:46 UTC MAIN commitmail json YAML

ledger2beancount: fix dependency

Bump PKGREVISION

(wiz)

2021-09-12 20:32:27 UTC MAIN commitmail json YAML

mysql57-server & mysql80-server: correct MESSAGE

As of MySQL 5.7, installations created using --initialize no longer
have an empty root password; one is generated as part of the process
and marked expired. (This message is in part simply advice to read the
documentation. However, it's possible other downstream packagers use
--initialize-insecure instead, which retains the old empty password
approach, so this could be a pkgsrc-specific detail to consider.)

(gutteridge)

2021-09-12 18:51:50 UTC MAIN commitmail json YAML

rust-bin: fix Linux packaging after version update

(gutteridge)

2021-09-12 15:52:37 UTC MAIN commitmail json YAML

2021-09-12 14:50:27 UTC MAIN commitmail json YAML

alacritty: also omit the X11-specific RUSTFLAGS

(tnn)

2021-09-12 14:47:34 UTC MAIN commitmail json YAML

alacritty: fix build on macOS

The package only supports using the quartz backend here, so no
X11 libraries needed.

(tnn)