Commit graph

327032 commits

Author SHA1 Message Date
leot
8532d97f21 py-numpy*: Update checksum for patch-numpy_distutils_system__info.py
Part of interchangeable BLAS system change.
2020-10-13 08:27:02 +00:00
maya
3805ac2a5a openssl: add -lrt for the benefit of Solaris 10.
PR pkg/55688
PR pkg/54958
2020-10-13 07:37:29 +00:00
triaxx
a2fd39e161 libusb-compat: Add DIST_SUBDIR to avoid checksum error
pkgsrc changes:
---------------
  * Use release archive from Github to avoid the dependency on autotools
    and to remove conflict with the tag archive potentially present in
    ${DISTDIR} which has the same name but a different checksum.
  * Reorder variables to be compliant with pkgsrc policy described in
    doc/Makefile-example.
2020-10-13 06:10:35 +00:00
maya
f75842f180 xf86-video-intel: freebsd/dragonflybsd build fix. from freebsd ports.
Inspired by an outdated patch in PR pkg/50090
2020-10-13 04:38:29 +00:00
maya
5b188f84e4 doc: Added sysutils/u-boot-orangepi-pc version 2018.11 2020-10-13 03:59:16 +00:00
maya
14ddb21925 Add u-boot-orangepi-pc 2018.11.
Packaged by kikadf in wip and in PR pkg/54704

U-Boot is a bootloader for embedded boards based on PowerPC, ARM, MIPS and
several other processors, which can be installed in a boot ROM and used to
initialize and test the hardware or to download and run application code.

This package provides U-Boot for the Xunlong Orange Pi PC.
2020-10-13 03:52:29 +00:00
maya
197fd17a9b doc: Updated sysutils/fzf to 0.23.1 2020-10-13 02:42:36 +00:00
maya
e01583baee fzf: update to 0.23.1
CHANGELOG
=========

0.23.1
------
- Added `--preview-window` options for disabling flags
    - `nocycle`
    - `nohidden`
    - `nowrap`
    - `default`
- Built with Go 1.14.9 due to performance regression
    - https://github.com/golang/go/issues/40727

0.23.0
------
- Support preview scroll offset relative to window height
  ```sh
  git grep --line-number '' |
    fzf --delimiter : \
        --preview 'bat --style=numbers --color=always --highlight-line {2} {1}' \
        --preview-window +{2}-/2
  ```
- Added `--preview-window` option for sharp edges (`--preview-window sharp`)
- Added `--preview-window` option for cyclic scrolling (`--preview-window cycle`)
- Reduced vertical padding around the preview window when `--preview-window
  noborder` is used
- Added actions for preview window
    - `preview-half-page-up`
    - `preview-half-page-down`
- Vim
    - Popup width and height can be given in absolute integer values
    - Added `fzf#exec()` function for getting the path of fzf executable
        - It also downloads the latest binary if it's not available by running
          `./install --bin`
- Built with Go 1.15.2
    - We no longer provide 32-bit binaries

0.22.0
------
- Added more options for `--bind`
    - `backward-eof` event
      ```sh
      # Aborts when you delete backward when the query prompt is already empty
      fzf --bind backward-eof:abort
      ```
    - `refresh-preview` action
      ```sh
      # Rerun preview command when you hit '?'
      fzf --preview 'echo $RANDOM' --bind '?:refresh-preview'
      ```
    - `preview` action
      ```sh
      # Default preview command with an extra preview binding
      fzf --preview 'file {}' --bind '?:preview:cat {}'

      # A preview binding with no default preview command
      # (Preview window is initially empty)
      fzf --bind '?:preview:cat {}'

      # Preview window hidden by default, it appears when you first hit '?'
      fzf --bind '?:preview:cat {}' --preview-window hidden
      ```
- Added preview window option for setting the initial scroll offset
  ```sh
  # Initial scroll offset is set to the line number of each line of
  # git grep output *minus* 5 lines
  git grep --line-number '' |
    fzf --delimiter : --preview 'nl {1}' --preview-window +{2}-5
  ```
- Added support for ANSI colors in `--prompt` string
- Smart match of accented characters
    - An unaccented character in the query string will match both accented and
      unaccented characters, while an accented character will only match
      accented characters. This is similar to how "smart-case" match works.
- Vim plugin
    - `tmux` layout option for using fzf-tmux
      ```vim
      let g:fzf_layout = { 'tmux': '-p90%,60%' }
      ```

0.21.1
------
- Shell extension
    - CTRL-R will remove duplicate commands
- fzf-tmux
    - Supports tmux popup window (require tmux 3.2 or above)
        - ```sh
          # 50% width and height
          fzf-tmux -p

          # 80% width and height
          fzf-tmux -p 80%

          # 80% width and 40% height
          fzf-tmux -p 80%,40%
          fzf-tmux -w 80% -h 40%

          # Window position
          fzf-tmux -w 80% -h 40% -x 0 -y 0
          fzf-tmux -w 80% -h 40% -y 1000

          # Write ordinary fzf options after --
          fzf-tmux -p -- --reverse --info=inline --margin 2,4 --border
          ```
        - On macOS, you can build the latest tmux from the source with
          `brew install tmux --HEAD`
- Bug fixes
    - Fixed Windows file traversal not to include directories
    - Fixed ANSI colors with `--keep-right`
    - Fixed _fzf_complete for zsh
- Built with Go 1.14.1

0.21.0
------
- `--height` option is now available on Windows as well (@kelleyma49)
- Added `--pointer` and `--marker` options
- Added `--keep-right` option that keeps the right end of the line visible
  when it's too long
- Style changes
    - `--border` will now print border with rounded corners around the
      finder instead of printing horizontal lines above and below it.
      The previous style is available via `--border=horizontal`
    - Unicode spinner
- More keys and actions for `--bind`
- Added PowerShell script for downloading Windows binary
- Vim plugin: Built-in floating windows support
  ```vim
  let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } }
  ```
- bash: Various improvements in key bindings (CTRL-T, CTRL-R, ALT-C)
    - CTRL-R will start with the current command-line as the initial query
    - CTRL-R properly supports multi-line commands
- Fuzzy completion API changed
  ```sh
  # Previous: fzf arguments given as a single string argument
  # - This style is still supported, but it's deprecated
  _fzf_complete "--multi --reverse --prompt=\"doge> \"" "$@" < <(
    echo foo
  )

  # New API: multiple fzf arguments before "--"
  # - Easier to write multiple options
  _fzf_complete --multi --reverse --prompt="doge> " -- "$@" < <(
    echo foo
  )
  ```
- Bug fixes and improvements

0.20.0
------
- Customizable preview window color (`preview-fg` and `preview-bg` for `--color`)
  ```sh
  fzf --preview 'cat {}' \
      --color 'fg:#bbccdd,fg+:#ddeeff,bg:#334455,preview-bg:#223344,border:#778899' \
      --border --height 20 --layout reverse --info inline
  ```
- Removed the immediate flicking of the screen on `reload` action.
  ```sh
  : | fzf --bind 'change:reload:seq {q}' --phony
  ```
- Added `clear-query` and `clear-selection` actions for `--bind`
- It is now possible to split a composite bind action over multiple `--bind`
  expressions by prefixing the later ones with `+`.
  ```sh
  fzf --bind 'ctrl-a:up+up'

  # Can be now written as
  fzf --bind 'ctrl-a:up' --bind 'ctrl-a:+up'

  # This is useful when you need to write special execute/reload form (i.e. `execute:...`)
  # to avoid parse errors and add more actions to the same key
  fzf --multi --bind 'ctrl-l:select-all+execute:less {+f}' --bind 'ctrl-l:+deselect-all'
  ```
- Fixed parse error of `--bind` expression where concatenated execute/reload
  action contains `+` character.
  ```sh
  fzf --multi --bind 'ctrl-l:select-all+execute(less {+f})+deselect-all'
  ```
- Fixed bugs of reload action
    - Not triggered when there's no match even when the command doesn't have
      any placeholder expressions
    - Screen not properly cleared when `--header-lines` not filled on reload

0.19.0
------

- Added `--phony` option which completely disables search functionality.
  Useful when you want to use fzf only as a selector interface. See below.
- Added "reload" action for dynamically updating the input list without
  restarting fzf. See https://github.com/junegunn/fzf/issues/1750 to learn
  more about it.
  ```sh
  # Using fzf as the selector interface for ripgrep
  RG_PREFIX="rg --column --line-number --no-heading --color=always --smart-case "
  INITIAL_QUERY="foo"
  FZF_DEFAULT_COMMAND="$RG_PREFIX '$INITIAL_QUERY' || true" \
    fzf --bind "change:reload:$RG_PREFIX {q} || true" \
        --ansi --phony --query "$INITIAL_QUERY"
  ```
- `--multi` now takes an optional integer argument which indicates the maximum
  number of items that can be selected
  ```sh
  seq 100 | fzf --multi 3 --reverse --height 50%
  ```
- If a placeholder expression for `--preview` and `execute` action (and the
  new `reload` action) contains `f` flag, it is replaced to the
  path of a temporary file that holds the evaluated list. This is useful
  when you multi-select a large number of items and the length of the
  evaluated string may exceed [`ARG_MAX`][argmax].
  ```sh
  # Press CTRL-A to select 100K items and see the sum of all the numbers
  seq 100000 | fzf --multi --bind ctrl-a:select-all \
                   --preview "awk '{sum+=\$1} END {print sum}' {+f}"
  ```
- `deselect-all` no longer deselects unmatched items. It is now consistent
  with `select-all` and `toggle-all` in that it only affects matched items.
- Due to the limitation of bash, fuzzy completion is enabled by default for
  a fixed set of commands. A helper function for easily setting up fuzzy
  completion for any command is now provided.
  ```sh
  # usage: _fzf_setup_completion path|dir COMMANDS...
  _fzf_setup_completion path git kubectl
  ```
- Info line style can be changed by `--info=STYLE`
    - `--info=default`
    - `--info=inline` (same as old `--inline-info`)
    - `--info=hidden`
- Preview window border can be disabled by adding `noborder` to
  `--preview-window`.
- When you transform the input with `--with-nth`, the trailing white spaces
  are removed.
- `ctrl-\`, `ctrl-]`, `ctrl-^`, and `ctrl-/` can now be used with `--bind`
- See https://github.com/junegunn/fzf/milestone/15?closed=1 for more details

[argmax]: https://unix.stackexchange.com/questions/120642/what-defines-the-maximum-size-for-a-command-single-argument
2020-10-13 02:35:39 +00:00
maya
0bdc8124e7 Add go-walker version 0.1.1
walker is a faster, parallel version, of filepath.Walk.
2020-10-13 02:33:10 +00:00
maya
70aba20b6a racoon2: respect DESTDIR/PKG_SYSCONFDIR.
PR pkg/55471
2020-10-13 01:47:25 +00:00
maya
f592070ff6 sysupgrade: PKGREVISION->5, handle ARCHIVE_EXTENSION also in sysupgrade clean
From Sunil Nimmagadda in PR pkg/55713
2020-10-13 00:50:08 +00:00
maya
c2c7fa81c2 doc: Added sysutils/fd-find version 8.1.1 2020-10-13 00:34:26 +00:00
maya
2cf8ea66a2 Add fd-find version 8.1.1
A simple, fast and user-friendly alternative to find.

Packaged by Milan Pässler in PR pkg/55689

I changed:
- Fixed pkgtools/pkglint, pkglint -Wall -Call warnings
- Made the do-install clause to use a path and not a find invocation.
It's a single file, it feels appropriate to be verbose about what is happening.
2020-10-13 00:34:06 +00:00
maya
f4e8b4b104 firefox{,-l10n} 2020-10-12 23:46:12 +00:00
maya
be2a52f8e6 firefox{,-l10n}: Update to 81.0.2
Release notes not available yet.
2020-10-12 23:45:35 +00:00
kim
352b8b6eed doc: Added net/doh version 0.1.20200514 2020-10-12 22:27:01 +00:00
kim
3f6edfd19d Add doh 2020-10-12 22:26:34 +00:00
kim
102a5ae2ce doh: added 0.1.20200514
A libcurl-using application that resolves a host name using
DNS-over-HTTPS (DoH).
2020-10-12 22:25:42 +00:00
kim
2ecf57ff46 doc: Updated textproc/oniguruma to 6.9.6rc2 2020-10-12 22:21:42 +00:00
kim
e24bfa2b59 oniguruma: update to 6.9.6rc2
Changes since 6.9.6rc1:
- Fix a Windows build issue.
2020-10-12 22:21:29 +00:00
kim
a599dcf6d4 Use PKGMANDIR 2020-10-12 21:52:30 +00:00
bacon
87edcb24b1 math/blas, math/lapack: Install interchangeable BLAS system
Install the new interchangeable BLAS system created by Thomas Orgis,
currently supporting Netlib BLAS/LAPACK, OpenBLAS, cblas, lapacke, and
Apple's Accelerate.framework.  This system allows the user to select any
BLAS implementation without modifying packages or using package options, by
setting PKGSRC_BLAS_TYPES in mk.conf. See mk/blas.buildlink3.mk for details.

This commit should not alter behavior of existing packages as the system
defaults to Netlib BLAS/LAPACK, which until now has been the only supported
implementation.

Details:

Add new mk/blas.buildlink3.mk for inclusion in dependent packages
Install compatible Netlib math/blas and math/lapack packages
Update math/blas and math/lapack MAINTAINER approved by adam@
OpenBLAS, cblas, and lapacke will follow in separate commits
Update direct dependents to use mk/blas.buildlink3.mk
Perform recursive revbump
2020-10-12 21:51:57 +00:00
mcf
584a4a2121 qt5-qtsensors: iio-sensor-proxy depends on qt5-qtbase[dbus]
This plugin is only built when Qt has the dbus module [0].

[0] https://github.com/qt/qtsensors/blob/v5.15.1/src/plugins/sensors/sensors.pro#L40
2020-10-12 19:46:00 +00:00
mcf
3ab10bac93 qt5-qtlocation: geoclue plugins depend on qt5-qtbase[dbus]
These plugins are only built when Qt has the dbus module [0].

[0] https://github.com/qt/qtlocation/blob/v5.15.1/src/plugins/position/position.pro#L5-L6
2020-10-12 19:32:54 +00:00
leot
4c4e303e9c doc: Updated net/rclone to 1.53.1 2020-10-12 17:31:45 +00:00
leot
0b3051d32e rclone: Update to 1.53.1
Changes:
## 1.53.1
* Bug Fixes
    * accounting: Remove new line from end of --stats-one-line display
      (Nick Craig-Wood)
    * check
        * Add back missing --download flag (Nick Craig-Wood)
        * Fix docs (Nick Craig-Wood)
    * docs
        * Note --log-file does append (Nick Craig-Wood)
        * Add full stops for consistency in rclone --help (edwardxml)
        * Add Tencent COS to s3 provider list (wjielai)
        * Updated mount command to reflect that it requires Go 1.13 or newer
	  (Evan Harris)
        * jottacloud: Mention that uploads from local disk will not need to
	  cache files to disk for md5 calculation (albertony)
        * Fix formatting of rc docs page (Nick Craig-Wood)
    * build
        * Include vendor tar ball in release and fix startdev (Nick Craig-Wood)
        * Fix "Illegal instruction" error for ARMv6 builds (Nick Craig-Wood)
        * Fix architecture name in ARMv7 build (Nick Craig-Wood)
* VFS
    * Fix spurious error "vfs cache: failed to _ensure cache EOF"
      (Nick Craig-Wood)
    * Log an ERROR if we fail to set the file to be sparse (Nick Craig-Wood)
* Local
    * Log an ERROR if we fail to set the file to be sparse (Nick Craig-Wood)
* Drive
    * Re-adds special oauth help text (Tim Gallant)
* Opendrive
    * Do not retry 400 errors (Evan Harris)

## 1.53.0
* New Features
    * The VFS layer was heavily reworked for this release - see below for
      more details
    * Interactive mode -i/--interactive for destructive operations (fishbullet)
    * Add --bwlimit-file flag to limit speeds of individual file transfers
      (Nick Craig-Wood)
    * Transfers are sorted by start time in the stats and progress output
      (Max Sum)
    * Make sure backends expand `~` and environment vars in file names they
      use (Nick Craig-Wood)
    * Add --refresh-times flag to set modtimes on hashless backends
      (Nick Craig-Wood)
    * build
        * Remove vendor directory in favour of Go modules (Nick Craig-Wood)
        * Build with go1.15.x by default (Nick Craig-Wood)
        * Drop macOS 386 build as it is no longer supported by go1.15
	  (Nick Craig-Wood)
        * Add ARMv7 to the supported builds (Nick Craig-Wood)
        * Enable `rclone cmount` on macOS (Nick Craig-Wood)
        * Make rclone build with gccgo (Nick Craig-Wood)
        * Make rclone build with wasm (Nick Craig-Wood)
        * Change beta numbering to be semver compatible (Nick Craig-Wood)
        * Add file properties and icon to Windows executable (albertony)
        * Add experimental interface for integrating rclone into browsers
	  (Nick Craig-Wood)
    * lib: Add file name compression (Klaus Post)
    * rc
        * Allow installation and use of plugins and test plugins with
	  rclone-webui (Chaitanya Bankanhal)
        * Add reverse proxy pluginsHandler for serving plugins
	  (Chaitanya Bankanhal)
        * Add `mount/listmounts` option for listing current mounts
	  (Chaitanya Bankanhal)
        * Add `operations/uploadfile` to upload a file through rc using
	  encoding multipart/form-data (Chaitanya Bankanhal)
        * Add `core/copmmand` to execute rclone terminal commands.
	  (Chaitanya Bankanhal)
    * `rclone check`
        * Add reporting of filenames for same/missing/changed (Nick Craig-Wood)
        * Make check command obey `--dry-run`/`-i`/`--interactive`
	  (Nick Craig-Wood)
        * Make check do `--checkers` files concurrently (Nick Craig-Wood)
        * Retry downloads if they fail when using the `--download` flag
	  (Nick Craig-Wood)
        * Make it show stats by default (Nick Craig-Wood)
    * `rclone obscure`: Allow obscure command to accept password on STDIN
      (David Ibarra)
    * `rclone config`
        * Set RCLONE_CONFIG_DIR for use in config files and subprocesses
	  (Nick Craig-Wood)
        * Reject remote names starting with a dash. (jtagcat)
    * `rclone cryptcheck`: Add reporting of filenames for same/missing/changed
      (Nick Craig-Wood)
    * `rclone dedupe`: Make it obey the `--size-only` flag for duplicate detection
      (Nick Craig-Wood)
    * `rclone link`: Add `--expire` and `--unlink` flags (Roman Kredentser)
    * `rclone mkdir`: Warn when using mkdir on remotes which can't have empty directories
      (Nick Craig-Wood)
    * `rclone rc`: Allow JSON parameters to simplify command line usage
      (Nick Craig-Wood)
    * `rclone serve ftp`
        * Don't compile on < go1.13 after dependency update (Nick Craig-Wood)
        * Add error message if auth proxy fails (Nick Craig-Wood)
        * Use refactored goftp.io/server library for binary shrink
	  (Nick Craig-Wood)
    * `rclone serve restic`: Expose interfaces so that rclone can be used as a
      library from within restic (Jack)
    * `rclone sync`: Add `--track-renames-strategy leaf` (Nick Craig-Wood)
    * `rclone touch`: Add ability to set nanosecond resolution times
      (Nick Craig-Wood)
    * `rclone tree`: Remove `-i` shorthand for `--noindent` as it conflicts
      with `-i`/`--interactive` (Nick Craig-Wood)
* Bug Fixes
    * accounting
        * Fix documentation for `speed`/`speedAvg` (Nick Craig-Wood)
        * Fix elapsed time not show actual time since beginning
	  (Chaitanya Bankanhal)
        * Fix deadlock in stats printing (Nick Craig-Wood)
    * build
        * Fix file handle leak in GitHub release tool (Garrett Squire)
    * `rclone check`: Fix successful retries with `--download` counting
      errors (Nick Craig-Wood)
    * `rclone dedupe`: Fix logging to be easier to understand (Nick Craig-Wood)
* Mount
    * Warn macOS users that mount implementation is changing (Nick Craig-Wood)
        * to test the new implementation use `rclone cmount` instead of
	  `rclone mount`
        * this is because the library rclone uses has dropped macOS support
    * rc interface
        * Add call for unmount all (Chaitanya Bankanhal)
        * Make `mount/mount` remote control take vfsOpt option
	  (Nick Craig-Wood)
        * Add mountOpt to `mount/mount` (Nick Craig-Wood)
        * Add VFS and Mount options to `mount/listmounts` (Nick Craig-Wood)
    * Catch panics in cgofuse initialization and turn into error messages
      (Nick Craig-Wood)
    * Always supply stat information in Readdir (Nick Craig-Wood)
    * Add support for reading unknown length files using direct IO (Windows)
      (Nick Craig-Wood)
    * Fix On Windows don't add `-o uid/gid=-1` if user supplies `-o uid/gid`.
      (Nick Craig-Wood)
    * Fix macOS losing directory contents in cmount (Nick Craig-Wood)
    * Fix volume name broken in recent refactor (Nick Craig-Wood)
* VFS
    * Implement partial reads for `--vfs-cache-mode full` (Nick Craig-Wood)
    * Add `--vfs-writeback` option to delay writes back to cloud storage
      (Nick Craig-Wood)
    * Add `--vfs-read-ahead` parameter for use with `--vfs-cache-mode full`
      (Nick Craig-Wood)
    * Restart pending uploads on restart of the cache (Nick Craig-Wood)
    * Support synchronous cache space recovery upon ENOSPC (Leo Luan)
    * Allow ReadAt and WriteAt to run concurrently with themselves (Nick Craig-Wood)
    * Change modtime of file before upload to current (Rob Calistri)
    * Recommend `--vfs-cache-modes writes` on backends which can't stream
      (Nick Craig-Wood)
    * Add an optional `fs` parameter to vfs rc methods (Nick Craig-Wood)
    * Fix errors when using > 260 char files in the cache in Windows
      (Nick Craig-Wood)
    * Fix renaming of items while they are being uploaded (Nick Craig-Wood)
    * Fix very high load caused by slow directory listings (Nick Craig-Wood)
    * Fix renamed files not being uploaded with `--vfs-cache-mode minimal`
      (Nick Craig-Wood)
    * Fix directory locking caused by slow directory listings (Nick Craig-Wood)
    * Fix saving from chrome without `--vfs-cache-mode writes`
      (Nick Craig-Wood)
* Local
    * Add `--local-no-updated` to provide a consistent view of changing
      objects (Nick Craig-Wood)
    * Add `--local-no-set-modtime` option to prevent modtime changes (tyhuber1)
    * Fix race conditions updating and reading Object metadata
      (Nick Craig-Wood)
* Cache
    * Make any created backends be cached to fix rc problems (Nick Craig-Wood)
    * Fix dedupe on caches wrapping drives (Nick Craig-Wood)
* Crypt
    * Add `--crypt-server-side-across-configs` flag (Nick Craig-Wood)
    * Make any created backends be cached to fix rc problems (Nick Craig-Wood)
* Alias
    * Make any created backends be cached to fix rc problems (Nick Craig-Wood)
* Azure Blob
    * Don't compile on < go1.13 after dependency update (Nick Craig-Wood)
* B2
    * Implement server side copy for files > 5GB (Nick Craig-Wood)
    * Cancel in progress multipart uploads and copies on rclone exit
      (Nick Craig-Wood)
    * Note that b2's encoding now allows \ but rclone's hasn't changed
      (Nick Craig-Wood)
    * Fix transfers when using download_url (Nick Craig-Wood)
* Box
    * Implement rclone cleanup (buengese)
    * Cancel in progress multipart uploads and copies on rclone exit
      (Nick Craig-Wood)
    * Allow authentication with access token (David)
* Chunker
    * Make any created backends be cached to fix rc problems (Nick Craig-Wood)
* Drive
    * Add `rclone backend drives` to list shared drives (teamdrives)
      (Nick Craig-Wood)
    * Implement `rclone backend untrash` (Nick Craig-Wood)
    * Work around drive bug which didn't set modtime of copied docs
      (Nick Craig-Wood)
    * Added `--drive-starred-only` to only show starred files (Jay McEntire)
    * Deprecate `--drive-alternate-export` as it is no longer needed
      (themylogin)
    * Fix duplication of Google docs on server side copy (Nick Craig-Wood)
    * Fix "panic: send on closed channel" when recycling dir entries
      (Nick Craig-Wood)
* Dropbox
    * Add copyright detector info in limitations section in the docs
      (Alex Guerrero)
    * Fix `rclone link` by removing expires parameter (Nick Craig-Wood)
* Fichier
    * Detect Flood detected: IP Locked error and sleep for 30s
      (Nick Craig-Wood)
* FTP
    * Add explicit TLS support (Heiko Bornholdt)
    * Add support for `--dump bodies` and `--dump auth` for debugging
      (Nick Craig-Wood)
    * Fix interoperation with pure-ftpd (Nick Craig-Wood)
* Google Cloud Storage
    * Add support for anonymous access (Kai Lüke)
* Jottacloud
    * Bring back legacy authentification for use with whitelabel versions
      (buengese)
    * Switch to new api root - also implement a very ugly workaround for the
      DirMove failures (buengese)
* Onedrive
    * Rework cancel of multipart uploads on rclone exit (Nick Craig-Wood)
    * Implement rclone cleanup (Nick Craig-Wood)
    * Add `--onedrive-no-versions` flag to remove old versions
      (Nick Craig-Wood)
* Pcloud
    * Implement `rclone link` for public link creation (buengese)
* Qingstor
    * Cancel in progress multipart uploads on rclone exit (Nick Craig-Wood)
* S3
    * Preserve metadata when doing multipart copy (Nick Craig-Wood)
    * Cancel in progress multipart uploads and copies on rclone exit
      (Nick Craig-Wood)
    * Add `rclone link` for public link sharing (Roman Kredentser)
    * Add `rclone backend restore` command to restore objects from GLACIER
      (Nick Craig-Wood)
    * Add `rclone cleanup` and `rclone backend cleanup` to clean unfinished
      multipart uploads (Nick Craig-Wood)
    * Add `rclone backend list-multipart-uploads` to list unfinished multipart
      uploads (Nick Craig-Wood)
    * Add `--s3-max-upload-parts` support (Kamil Trzciński)
    * Add `--s3-no-check-bucket` for minimising rclone transactions and perms
      (Nick Craig-Wood)
    * Add `--s3-profile` and `--s3-shared-credentials-file` options
      (Nick Craig-Wood)
    * Use regional s3 us-east-1 endpoint (David)
    * Add Scaleway provider (Vincent Feltz)
    * Update IBM COS endpoints (Egor Margineanu)
    * Reduce the default `--s3-copy-cutoff` to < 5GB for Backblaze S3
      compatibility (Nick Craig-Wood)
    * Fix detection of bucket existing (Nick Craig-Wood)
* SFTP
    * Use the absolute path instead of the relative path for listing for
      improved compatibility (Nick Craig-Wood)
    * Add `--sftp-subsystem` and `--sftp-server-command` options (aus)
* Swift
    * Fix dangling large objects breaking the listing (Nick Craig-Wood)
    * Fix purge not deleting directory markers (Nick Craig-Wood)
    * Fix update multipart object removing all of its own parts
      (Nick Craig-Wood)
    * Fix missing hash from object returned from upload (Nick Craig-Wood)
* Tardigrade
    * Upgrade to uplink v1.2.0 (Kaloyan Raev)
* Union
    * Fix writing with the all policy (Nick Craig-Wood)
* WebDAV
    * Fix directory creation with 4shared (Nick Craig-Wood)
2020-10-12 17:31:32 +00:00
wiz
e0a9a02d54 doc: Updated net/freeDiameter to 1.5.0 2020-10-12 14:27:01 +00:00
wiz
b7e2af49e8 freeDiameter: update to 1.5.0.
freediameter (1.5.0) RELEASED; urgency=low

  * freeDiameter:
    - Add -g to help
    - Change -d and -q to control syslog level, as per stdout logging.
    - Syslog to LOG_DAEMON.
    - Actually syslog to LOG_DEBUG, now that -d/-q are used.
    - Add -p pidfile
    - SCTP client: bind to local endpoints configured with ListenOn so
      that the SCTP INIT only contains those local endpoint addresses,
      matching what is advertised in the CER.
  * Base dictionary: Add rules for Experimental-Result.
  * All extensions: Hide symbols except for fd_ext_init(), fd_ext_fini(),
    and fd_ext_depends.
  * dbg_dict_dump.fdx: add extension to write the dictionary
    to the given file or to the log.
  * dbg_dict_dump_json.fdx: add extension to write the dictionary as JSON
    to the given file or stdout.
  * dict_dcca_3gpp.fdx: Update to 3GPP Release 15, adding many standards.
    This adds 96 TYPEs, 145 ENUMVALs, 791 AVPs, 52 RULEs.
    There are various breaking changes (documented below).
  * contrib/dictionary_dcca_3gpp.json: Remove non-3GPP AVPs that are
    actually from base IETF RFCs:
      - MIP6-Feature-Vector (124). IETF RFC 5447
      - Service-Selection (493). IETF RFC 5778
      - Mobile-Node-Identifier (506). IETF RFC 5779
      - QoS-Capability (578). IETF RFC 5777.
  * New API: fd_msg_add_result(): set Result-Code or Experimental-Result.
  * New API: log level FD_LOG_INFO.
  * fd_conf_dump(): fix formatting of local endpoints.
  * fd_msg_search_avp(): support searching avp as well as msg.
  * Fix compiler warnings.
  * Add ERRORS_ON_WARNINGS cmake boolean to enable fatal compiler warnings.
  * New tool: grep_fd_dict_dump: cleanup fd_dict_dump() output in logs.
  * New tool: csv_to_fd: convert .csv with AVP tables to freeDiameter C or JSON.
  * New tool: org_to_csv: convert .org files into .csv files.

  * dict_dcca_3gpp.fdx changes per update to 3GPP Release 15 as at 2019-12:
    - AVP changes:
      - 3GPP-CG-IPv6-Address (14) renamed to 3GPP-CG-Ipv6-Address (14).
      - 3GPP-GGSN-IPv6-Address (16) renamed to 3GPP-GGSN-Ipv6-Address (16).
      - 3GPP-IPv6-DNS-Servers (17) renamed to 3GPP-Ipv6-DNS-Servers (17).
      - 3GPP-SGSN-IPv6-Address (15) renamed to 3GPP-SGSN-Ipv6-Address (15).
      - 3GPP2-BSID (9010) flag M MUST.
      - 3GPP2-BSID (9010) type changed from OctetString to UTF8String.
      - ADC-Revalidation-Time (2801) Time removed in 3GPP TS 29.212 V12.1.0 (2013-06).
      - ADC-Rule-Base-Name (1095) flag M MUST.
      - ADC-Rule-Definition (1094) flag M MUST.
      - ADC-Rule-Install (1092) flag M MUST.
      - ADC-Rule-Name (1096) flag M MUST.
      - ADC-Rule-Remove (1093) flag M MUST.
      - ADC-Rule-Report (1097) flag M MUST.
      - Application-Service-Type (2102) type changed from UTF8String to Enumerated.
      - Application-Session-Id (2103) type changed from UTF8String to Unsigned32.
      - Call-Barring-Infor-List (1488) renamed to Call-Barring-Info (1488).
      - External-Identifier (28) OctetString replaced by External-Identifier (3111) UTF8String.
      - LCS-Requestor-Id (1239) renamed to LCS-Requestor-ID (1239).
      - LCS-Requestor-Id-String (1240) renamed to LCS-Requestor-ID-String (1240).
      - MBMS-BMSC-SSM-IPv6-Address (919) renamed to MBMS-BMSC-SSM-Ipv6-Address (919).
      - MBMS-GGSN-IPv6-Address (917) renamed to MBMS-GGSN-Ipv6-Address (917).
      - MBMSGW-Address (2307) renamed to MBMS-GW-Address (2307).
      - Measurement-Period-LTE (1656) code changed to Measurement-Period-LTE (1655).
      - Measurement-Period-UMTS (1655) code changed to Measurement-Period-UMTS (1656).
      - MME-LocationInformation (1600) renamed to MME-Location-Information(1600).
      - PDG-Address (895) Address removed in 3GPP TS 32.299 V12.6.0 (2014-09).
      - PDG-Charging-Id (896) Unsigned32 removed in 3GPP TS 32.299 V12.6.0 (2014-09).
      - PDN-Connection-ID (1065) flag M MUST NOT.
      - PoC-User-Role-info-Units (1254) renamed to PoC-User-Role-Info-Units (1254).
      - PS-to-CS-Session-Continuity (1099) flag M MUST NOT.
      - SS-Status (1477) type changed from Grouped to OctetString.
      - Status (2702) renamed to Status-AS-Code (2702).
      - WAG-Address (890) Address removed in 3GPP TS 32.299 V12.6.0 (2014-09).
      - WAG-PLMN-Id (891) OctetString removed in 3GPP TS 32.299 V12.6.0 (2014-09).
      - WLAN-Information (875) Grouped removed in 3GPP TS 32.299 V12.6.0 (2014-09).
      - WLAN-Radio-Container (892) Grouped removed in 3GPP TS 32.299 V12.6.0 (2014-09).
      - WLAN-Session-Id (1246) UTF8String removed in 3GPP TS 32.299 V12.6.0 (2014-09).
      - WLAN-Technology (893) Unsigned32 removed in 3GPP TS 32.299 V12.6.0 (2014-09).
      - WLAN-UE-Local-IPAddress (894) Address removed in 3GPP TS 32.299 V12.6.0 (2014-09).
    - AVP renames:
      - Rename Call-Barring-Infor-List (1488) to Call-Barring-Info (1488).
      - Rename LCS-Requestor-Id (1239) to LCS-Requestor-ID (1239).
      - Rename LCS-Requestor-Id-String (1240) to LCS-Requestor-ID-String (1240).
      - Rename MBMSGW-Address (2307) to MBMS-GW-Address (2307).
      - Rename MME-LocationInformation (1600) to MME-Location-Information(1600).
      - Rename PoC-User-Role-info-Units (1254) to PoC-User-Role-Info-Units (1254).
      - Rename Status (2702) to Status-AS-Code (2702).
    - AVP name conflicts:
      - Time-Window (3818) in 3GPP TS 29.345 V12.1.0 (2014-12) predates
        Time-Window-29.154 (4204) in 3GPP TS 29.154 V13.1.0 (2016-03).
    - Add Enumerated(3GPP/Experimental-Result-Code). 145 values.
    - Update standards:
      - 3GPP TS 29.061 V15.5.0 (2018-12). 15 AVPs.
      - 3GPP TS 29.173 V15.0.0 (2018-06). 1 AVP.
      - 3GPP TS 29.212 V15.9.0 (2019-12). 46 AVPs.
      - 3GPP TS 29.214 V15.7.0 (2019-09). 27 AVPs.
      - 3GPP TS 29.229 V15.2.0 (2019-09). 8 AVPs.
      - 3GPP TS 29.272 V15.10.0 (2019-12). 44 AVPs.
      - 3GPP TS 29.329 V15.2.0 (2019-09). 5 AVPs.
      - 3GPP TS 32.299 V15.7.0 (2019-06). 154 AVPs.
    - Add standards:
      - 3GPP TS 29.109 V15.0.0 (2017-06). 21 AVPs.
      - 3GPP TS 29.128 V15.6.0 (2019-09). 25 AVPs.
      - 3GPP TS 29.153 V15.1.0 (2019-09). 2 AVPs.
      - 3GPP TS 29.154 V15.3.0 (2019-09). 16 AVPs.
      - 3GPP TS 29.172 V15.2.0 (2019-12). 66 AVPs.
      - 3GPP TS 29.209 V6.8.0 (2011-09). 2 AVPs.
      - 3GPP TS 29.215 V15.2.0 (2019-09). 9 AVPs.
      - 3GPP TS 29.217 V15.1.0 (2019-09). 14 AVPs.
      - 3GPP TS 29.219 V15.3.0 (2019-09). 7 AVPs.
      - 3GPP TS 29.234 V11.2.0 (2013-06). 19 AVPs.
      - 3GPP TS 29.273 V15.4.0 (2019-09). 40 AVPs.
      - 3GPP TS 29.283 V15.1.0 (2019-09). 16 AVPs.
      - 3GPP TS 29.336 V15.7.0 (2019-09). 79 AVPs.
      - 3GPP TS 29.337 V15.0.0 (2018-06). 4 AVPs.
      - 3GPP TS 29.338 V15.1.0 (2018-12). 34 AVPs.
      - 3GPP TS 29.343 V15.1.0 (2019-09). 13 AVPs.
      - 3GPP TS 29.344 V15.1.0 (2019-09). 7 AVPs.
      - 3GPP TS 29.345 V15.1.0 (2019-09). 68 AVPs.
      - 3GPP TS 29.368 V15.1.0 (2019-09). 12 AVPs.
      - 3GPP TS 29.388 V15.1.0 (2019-09). 3 AVPs.
      - 3GPP TS 29.389 V15.1.0 (2019-09). 3 AVPs.
      - 3GPP TS 29.468 V15.8.0 (2019-12). 33 AVPs.
      - 3GPP TS 29.561 V16.3.0 (2020-03). 9 AVPs.
2020-10-12 14:26:52 +00:00
roy
928fbe0bba doc: Updated net/dhcpcd to 9.3.1 2020-10-12 14:12:26 +00:00
roy
66c33a95ba Update to dhcpcd-9.3.1 with the following changes:
* dhcpcd: carrier handling issue fixed from 9.3.0
 * dhcpcd: log if interface type is unsupported in debug
 * duid: memory leak fixed if UUID wanted but none available
 * privsep: fix receiving inet and no BPF running
 * privsep: allow gettimeofday for SECCOMP
 * privsep: fix stderr redirection again
 * Linux: use libbsd setproctitle as it works with more kernel configs
2020-10-12 14:12:06 +00:00
wiz
1906d4e999 nasm: remove unnecessary TOOL_DEPENDS
Override detection just to be on the safe side.

Addresses PR 55709 by Joern Clausen
2020-10-12 12:54:01 +00:00
pin
632be7d27b doc: Updated audio/ncspot to 0.2.3 2020-10-12 12:04:42 +00:00
pin
bb0e04ac28 audio/ncspot: update to 0.2.3
v0.2.3

Features
-Display album name for playable objects (#268)
-Added config option for bitrate (#270)
-Add Vim-like search in list views (#279)
-Add insert command and Ctrl-V shortcut to paste Spotify links (#277)

Maintenance
-Gracefully handle error when showing notification (#265)
-Add feature flag for song notifications, enables users/distributions to ship
without D-Bus dependency
-Alias Space to whitespace key when for bindings (#266)
-Fix last tab to fill entire width correctly (#271)
-Tweak queue/play next handling (#278)
2020-10-12 12:04:13 +00:00
adam
713260ca42 Updated security/py-passlib, net/py-smb 2020-10-12 11:59:10 +00:00
adam
ad0f2ebdb5 py-smb: updated to 1.2.4
pysmb-1.2.4
- Remove dependency on pycrypto as it is no longer under active maintenance

pysmb-1.2.3
- Fix bug in session key generation during session negotiation
- Fix bug in SMB message signing which leads to operation failures with Samba services.
2020-10-12 11:58:48 +00:00
adam
a7caa2bae3 py-passlib: updated to 1.7.4
**1.7.4** (2020-10-08)
======================

Small followup to 1.7.3 release.

Bugfixes
--------

* Fixed some Python 2.6 errors from last release (:issue:`128`)

Other Changes
-------------

* :mod:`passlib.ext.django` -- updated tests to pass for Django 1.8 - 3.1 (:issue:`98`);
  along with some internal refactoring of the test classes.

* .. py:currentmodule:: passlib.context

  :class:`CryptContext` will now throw :exc:`~passlib.exc.UnknownHashError` when it can't identify
  a hash provided to methods such as :meth:`!CryptContext.verify`.
  Previously it would throw a generic :exc:`ValueError`.


Deprecations
------------

* :mod:`passlib.ext.django`: This extension will require Django 2.2 or newer as of Passlib 1.8.


**1.7.3** (2020-10-06)
======================

This release rolls up assorted bug & compatibility fixes since 1.7.2.

Administrative Changes
----------------------

.. rst-class:: without-title

.. note::

  **Passlib has moved to Heptapod!**

  Due to BitBucket deprecating Mercurial support, Passlib's public repository and issue tracker
  has been relocated.  It's now located at `<https://foss.heptapod.net/python-libs/passlib>`_,
  and is powered by `Heptapod <https://heptapod.net/>`_.

  Hosting for this and other open-source projects graciously provided by the people at
  `Octobus <https://octobus.net/>`_ and `CleverCloud <https://clever-cloud.com/>`_!

  The mailing list and documentation urls remain the same.

New Features
------------

* .. py:currentmodule:: passlib.hash

  :class:`ldap_salted_sha512`: LDAP "salted hash" support added for SHA-256 and SHA-512 (:issue:`124`).

Bugfixes
--------

* .. py:currentmodule:: passlib.hash

  :class:`bcrypt`: Under python 3, OS native backend wasn't being detected on BSD platforms.
  This was due to a few internal issues in feature-detection code, which have been fixed.

* :func:`passlib.utils.safe_crypt`: Support :func:`crypt.crypt` unexpectedly
  returning bytes under Python 3 (:issue:`113`).

* :func:`passlib.utils.safe_crypt`: Support :func:`crypt.crypt` throwing :exc:`OSError`,
  which can happen as of Python 3.9 (:issue:`115`).

* :mod:`passlib.ext.django`: fixed lru_cache import (django 3 compatibility)

* :mod:`!passlib.tests`: fixed bug where :meth:`HandlerCase.test_82_crypt_support` wasn't
  being run on systems lacking support for the hasher being tested.
  This test now runs regardless of system support.

Other Changes
-------------

* .. py:currentmodule:: passlib.hash

  :class:`bcrypt_sha256`:  Internal algorithm has been changed to use HMAC-SHA256 instead of
  plain SHA256.  This should strengthen the hash against brute-force attempts which bypass
  the intermediary hash by using known-sha256-digest lookup tables (:issue:`114`).

* .. py:currentmodule:: passlib.hash

  :class:`bcrypt`: OS native backend ("os_crypt") now raises the new :exc:`~passlib.exc.PasswordValueError`
  if password is provided as non-UTF8 bytes under python 3
  (These can't be passed through, due to limitation in stdlib's :func:`!crypt.crypt`).
  Prior to this release, it confusingly raised :exc:`~passlib.exc.MissingBackendError` instead.

  Also improved legacy bcrypt format workarounds, to support a few more UTF8 edge cases than before.

* Modified some internals to help run on FIPS systems (:issue:`116`):

  In particular, when MD5 hash is not available, :class:`~passlib.hash.hex_md5`
  will now return a dummy hasher which throws an error if used; rather than throwing
  an uncaught :exc:`!ValueError` when an application attempts to import it.  (Similar behavior
  added for the other unsalted digest hashes).

  .. py:currentmodule:: passlib.crypto.digest

  Also, :func:`lookup_hash`'s ``required=False`` kwd was modified to report unsupported hashes
  via the :attr:`HashInfo.supported` attribute; rather than letting ValueErrors through uncaught.

  This should allow CryptContext instances to be created on FIPS systems without having
  a load-time error (though they will still receive an error if an attempt is made to actually
  *use* a FIPS-disabled hash).

* Internal errors calling stdlib's :func:`crypt.crypt`, or third party libraries,
  will now raise the new :exc:`~passlib.exc.InternalBackendError` (a RuntimeError);
  where previously it would raise an :exc:`AssertionError`.

* Various Python 3.9 compatibility fixes (including ``NotImplemented``-related warning, :issue:`125`)
2020-10-12 11:57:02 +00:00
joerg
71bb16ca18 Update to sile 0.10.12:
- bugfixes
- LuaJIT support (untested)
2020-10-12 11:15:29 +00:00
wiz
85177e5ad0 doc/TODO: add some
+ ImageMagick-7.0.10.34, catch2-2.13.2, cksfv-1.3.15, gopls-0.5.1,
  lua53-5.3.6, musescore-3.5.1, ncspot-0.2.3, protobuf-3.13.0.1,
  py-borgbackup-1.1.14, py-cairo-1.20.0, py-hypothesis-5.37.1,
  strawberry-0.8.1.
2020-10-12 10:49:41 +00:00
joerg
5a901022ab Fix support for newer Django versions. Bump revision. 2020-10-11 23:48:18 +00:00
joerg
5a27488d84 Do not pick up GCC's Go backend. 2020-10-11 23:47:31 +00:00
kim
5cb7d74a04 Pass PKG_SYSCONFDIR to cmake
Fixes PR/55717
2020-10-11 21:43:26 +00:00
leot
b445bfead5 doc: Updated net/gallery-dl to 1.15.1 2020-10-11 20:46:16 +00:00
leot
76b66f8508 gallery-dl: Update to 1.15.1
Changes:
1.15.1
------
### Additions
 - [hentaicafe] add `manga_id` metadata field (#1036)
 - [hentaifoundry] add support for stories (#734)
 - [hentaifoundry] add `include` option
 - [newgrounds] extract image embeds (#1033)
 - [nijie] add `include` option (#1018)
 - [reactor] match URLs without subdomain (#1053)
 - [twitter] extend `retweets` option (#1026)
 - [weasyl] add extractors (#977)

### Fixes
 - [500px] update query hashes
 - [behance] fix `collection` extraction
 - [newgrounds] fix video extraction (#1042)
 - [twitter] improve twitpic extraction (#1019)
 - [weibo] handle posts with more than 9 images (#926)
 - [xvideos] fix `title` extraction
 - fix crash when using `--download-archive` with `--no-skip` (#1023)
 - fix issues with `blacklist`/`whitelist` defaults (#1051, #1056)

### Removals
 - [kissmanga] remove module
2020-10-11 20:46:04 +00:00
nia
d43bec3c99 doc: Added sysutils/ytree version 2.02 2020-10-11 16:40:51 +00:00
nia
f23d96d2aa sysutils: add ytree.
Ytree - a (curses-based) file manager similar to DOS Xtree(tm).

... for browsing filesystems and archives (RAR/SPM/RPM/TAR/ARC/LHA/ZIP/ZOO).
2020-10-11 16:40:39 +00:00
wen
faf96a075a Updated math/R to 4.0.3 2020-10-11 15:25:21 +00:00
wen
572ef294c8 Update to 4.0.3
CHANGES IN R 4.0.3:

  NEW FEATURES:

    * On platforms using configure option --with-internal-tzcode,
      additional values "internal" and (on macOS only) "macOS" are
      accepted for the environment variable TZDIR.  (See ?TZDIR.)

      On macOS, "macOS" is used by default if the system timezone
      database is a newer version than that in the R installation.

    * When install.packages(type = "source") fails to find a package in
      a repository it mentions package versions which are excluded by
      their R version requirement and links to hints on why a package
      might not be found.

    * The default value for options("timeout") can be set from
      enviromnent variable R_DEFAULT_INTERNET_TIMEOUT, still defaulting
      to 60 (seconds) if that is not set or invalid.

      This may be needed when child R processes are doing downloads,
      for example during the installation of source packages which
      download jars or other forms of data.

  LINK-TIME OPTIMIZATION on a UNIX-ALIKE:

    * There is now support for parallelized Link-Time Optimization
      (LTO) with GCC and for 'thin' LTO with clang _via_ setting the
      LTO macro.

    * There is support for setting a different LTO flag for the Fortran
      compiler, including to empty when mixing clang and gfortran (as
      on macOS).  See file config.site.

    * There is a new LTO_LD macro to set linker options for LTO
      compilation, for example to select an alternative linker or to
      parallelize thin LTO.

  DEPRECATED AND DEFUNCT:

    * The LINPACK argument to chol.default(), chol2inv(),
      solve.default() and svd() has been defunct since R 3.1.0.  Using
      it now gives a warning which will become an error in R 4.1.0.

  BUG FIXES:

    * The code mitigating stack overflow with PCRE regexps on very long
      strings is enabled for PCRE2 < 10.30 also when JIT is enabled,
      since stack overflows have been seen in that case.

    * Fix to correctly show the group labels in dotchart() (which where
      lost in the ylab improvement for R 4.0.0).

    * addmargins(*, ..) now also works when fn() is a local function,
      thanks to bug report and patch PR#17124 from Alex Bertram.

    * rank(x) and hence sort(x) now work when x is an object (as per
      is.object(x)) of type "raw" _and_ provides a valid `[` method,
      e.g., for gmp::as.bigz(.) numbers.

    * chisq.test(*, simulate.p.value=TRUE) and r2dtable() now work
      correctly for large table entries (in the millions).  Reported by
      Sebastian Meyer and investigated by more helpers in PR#16184.

    * Low-level socket read/write operations have been fixed to
      correctly signal communication errors. Previously, such errors
      could lead to a segfault due to invalid memory access. Reported
      and debugged by Dmitriy Selivanov in PR#17850.

    * quantile(x, pr) works more consistently for pr values slightly
      outside [0,1], thanks to Suharto Anggono's PR#17891.

      Further, quantile(x, prN, names=FALSE) now works even when prN
      contains NAs, thanks to Anggono's PR#17892.  Ditto for ordered
      factors or Date objects when type = 1 or 3, thanks to PR#17899.

    * Libcurl-based internet access, including curlGetHeaders(), was
      not respecting the "timeout" option.  If this causes
      unanticipated timeouts, consider increasing the default by
      setting R_DEFAULT_INTERNET_TIMEOUT.

    * as.Date(<char>) now also works with an initial "", thanks to
      Michael Chirico's PR#17909.

    * isS3stdGeneric(f) now detects an S3 generic also when it it is
      trace()d, thanks to Gabe Becker's PR#17917.

    * R_allocLD() has been fixed to return memory aligned for long
      double type PR#16534.

    * fisher.test() no longer segfaults when called again after its
      internal stack has been exceeded PR#17904.

    * Accessing a long vector represented by a compact integer sequence
      no longer segfaults (reported and debugged by Hugh Parsonage).

    * duplicated() now works also for strings with multiple encodings
      inside a single vector PR#17809.

    * phyper(11, 15, 0, 12, log.p=TRUE) no longer gives NaN; reported
      as PR#17271 by Alexey Stukalov.

    * Fix incorrect calculation in logLik.nls() PR#16100, patch from
      Sebastian Meyer.

    * A very old bug could cause a segfault in model.matrix() when
      terms involved logical variables.  Part of PR#17879.

    * model.frame.default() allowed data = 1, leading to involuntary
      variable capture (rest of PR#17879).

    * tar() no longer skips non-directory files, thanks to a patch by
      Sebastian Meyer, fixing the remaining part of PR#16716.
2020-10-11 15:22:56 +00:00
pin
f695294964 doc: Added audio/spotify-qt version 2.12 2020-10-11 13:41:54 +00:00
pin
8413bf356f Add audio/spotify-qt 2020-10-11 13:41:19 +00:00
pin
35a0f76409 audio/spotify-qt: import
A Spotify client using Qt as a simpler, lighter alternative to the official
client, inspired by spotify-tui.
Much like spotify-tui, you need an actual Spotify client running, which can be
configured from within the app.
Also like other clients, controlling music playback requires Spotify Premium.
2020-10-11 13:40:06 +00:00