Commit graph

12187 commits

Author SHA1 Message Date
pho
acab42f007 sysutils/hs-system-fileio: import hs-system-fileio-0.3.16.4
This is a small wrapper around the directory, unix, and Win32 packages, for
use with system-filepath. It provides a consistent API to the various
versions of these packages distributed with different versions of GHC.

In particular, this library supports working with POSIX files that have
paths which can't be decoded in the current locale encoding.
2022-02-24 01:21:55 +00:00
pho
99d8252a47 sysutils/Makefile: + hs-system-filepath 2022-02-24 01:21:27 +00:00
pho
30f95832d0 sysutils/hs-system-filepath: import hs-system-filepath-0.4.14
Provides a FilePath datatype and utility functions for operating on
it. Unlike the filepath package, this package does not simply reuse String,
increasing type safety.
2022-02-24 01:21:11 +00:00
pho
58b1a8b969 sysutils/Makefile: + hs-hostname 2022-02-24 01:18:37 +00:00
pho
f6997153c8 sysutils/hs-hostname: import hs-hostname-1.0
A very simple package providing a cross-platform means of determining the
hostname.
2022-02-24 01:18:23 +00:00
micha
a3e1c658a2 sysutils/cdrtools: Build fix for Darwin and SunOS
On Darwin and SunOS libiconv was not found.
2022-02-18 11:52:56 +00:00
adam
66d539a69e collectd-grpc: revbump after net/grpc update 2022-02-18 09:11:57 +00:00
wiz
cbe976e137 py-borgbackup: remove ALTERNATIVES
The current ALTERNATIVES/post-install was not enough to make this package
avoid a self-conflict (due to the man pages). Since this is an application
that which no other packages depend upon, there is no need to have it
installed for multiple python versions at the same time, so simplify
this.

Bump PKGREVISION.
2022-02-18 08:02:40 +00:00
wiz
bc197b946f py-borgbackup: fix typo in ALTERNATIVES 2022-02-18 07:44:18 +00:00
pin
1021fd92b3 sysutils/hcal: update to 0.3.4
-Upgrade clap
2022-02-17 19:34:42 +00:00
wiz
8115269ef3 findutils: update to 4.9.0.
* Noteworthy changes in release 4.9.0 (2022-02-22) [stable]

** New features in find

  find now supports the -files0-from option to be able to safely pass an
  arbitrary number of starting points to the tool.  The option requires a file
  name as argument, or "-" to read from standard input.  The entries in that
  file have to be separated by NUL characters. [#60383]

** Changes in locate / updatedb

  updatedb now skips (fuse-mounted) s3fs filesystems by default,
  i.e., unless PRUNEFS is set.

** Bug Fixes

  'find -D stat -L ...' no longer determines SELinux security information as
  if the -L option was not given.
  [Bug present since the SELinux implementation in 4.5.6]

  'find -inum' and 'find -printf %i' now also work on platforms which allow
  the inode number Zero; e.g. the GNU/Hurd uses inode number 0 for /dev/console.
  Previously, find(1) would abort when visiting such a file.
  [Bug present since FINDUTILS_4_5_4-1.]

  findutils-4.8.0 failed to build on some MacOS versions.
  Fixed by a gnulib update. [#59972, #59991]

** Documentation Changes

  The find.1 man page and the Texinfo manual now show environment variables
  in a consistent style. [#59963]

  Furthermore, both add the description of the -printf format directive '%B',
  for a file's birth time, and its limitations. [#61327]

  The description of the -delete action has been improved and aligned among
  the manual page and the Texinfo documentation. [#61774]

  Various other documentation fixes - syntax issues and typos.
  [#61303, #60823, #61341]

  The output of 'find --help' now reads better.

  The HTML online manual is using the official GNU stylesheet again.

** Changes to the build process

  The find version without FTS, oldfind, has been completely removed.  It has
  not been installed since 4.5.18 (2015), and was only still used in tests.
2022-02-17 15:42:00 +00:00
pho
c12bebf246 sysutils/Makefile: + hs-opentelemetry 2022-02-16 10:07:53 +00:00
pho
a07e86a879 sysutils/hs-opentelemetry: import hs-opentelemetry-0.7.0
The OpenTelemetry Haskell Client. See https://opentelemetry.io
2022-02-16 10:07:39 +00:00
pho
8aedd17472 sysutils/Makefile: + hs-hslogger 2022-02-16 09:20:39 +00:00
pho
70c2c4e408 sysutils/hs-hslogger: import hs-hslogger-1.3.1.0
hslogger is a logging framework for Haskell, roughly similar to Python's
logging module.

hslogger lets each log message have a priority and source be associated
with it. The programmer can then define global handlers that route or
filter messages based on the priority and source. hslogger also has a
Syslog handler built in.
2022-02-16 09:19:42 +00:00
bsiegert
ebe4158c52 Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
pin
bf8eeaa1ff Add ctv 2022-02-13 08:16:59 +00:00
pin
ac5115bee4 sysutils/ctv: import package
ctv - configurable tree view

Highly configurable tree view visualizer CLI tool written in Rust.

What does ctv do?
- Visualize your file hiearchy in a tree view
- Customize the apperance of your tree
- Display custom file information (permissions, time, user, etc)
- Personalize tree color and text styling
2022-02-13 08:16:13 +00:00
wiz
52daed042f tarsnap: update to 1.0.40.
Tarsnap 1.0.40 is now available.  This version brings several improvements
compared to tarsnap 1.0.39:

* tarsnap now accepts a --resume-extract option to skip extracting files whose
  filesize and mtime match existing files on disk.

* tarsnap now accepts --progress-bytes SIZE, which prints a progress message
  after each SIZE bytes are processed, up to once per file.  This can be
  disabled with --no-progress-bytes.

* tarsnap now accepts a --passphrase method:arg option which accepts:
  * --passphrase dev:tty-stdin
  * --passphrase dev:stdin-once
  * --passphrase dev:tty-once
  * --passphrase env:VARNAME
  * --passphrase file:FILENAME

* tarsnap now accepts a --dump-config option to print the command-line and all
    non-blank lines read from config files.

* tarsnap now exits with an error if there are unused command-line arguments.
  (i.e. "tarsnap -d -f a1 a2", where "a2" is unused.)

* Improved performance on some x86, amd64, and arm64 systems by using
  cryptographic instruction set extensions.

* When sent SIGINFO or SIGUSR1, tarsnap now prints the number of files and the
  number of uncompressed bytes processed, in addition to the previous output.

* A zsh completion file can be installed with
  configure --with-zsh-completion=DIR.

As usual, there are also lots of minor build fixes, harmless bug fixes, and
code cleanups.
2022-02-12 22:58:08 +00:00
pho
dc3a63e008 revbump after changing the default Haskell compiler 2022-02-12 08:50:25 +00:00
mrg
55ea42f6c0 load pinebook pro SPI environment from the same location that
rockpro64 does and avoid "saveenv" saving over the top of the
u-boot installation itself.

now my pbp can boot from just SPI and NVMe.

bump pkg revision.
2022-02-12 07:44:55 +00:00
pho
f27b87570c Update to typed-process-0.2.8.0
0.2.8.0
    Re-export ExitCode, ExitSuccess and ExitFailure.

0.2.7.0
    Include empty argument in the show instance.

0.2.6.3
    Doc improvements

0.2.6.2
    Doc improvements
2022-02-12 04:49:33 +00:00
mrg
f706210973 update u-boot-rock64 to 2022.01 and tf-a 2.6.
change the u-boot-rockchip.mk to default to 2022.01 as only the
(probably) obsolete ayufan package uses anything else.
2022-02-11 23:03:50 +00:00
mrg
d895eeecf1 update u-boot-rockpro64 and u-boot-pinebook-pro to u-boot 2022.01.
tested in sd, emmc, and spi on rockpro64, and on emmc on pbp.

should not affect u-boot-rockpro64-ayufan, but should finally
make it obsolete as the SPI version works again.
2022-02-11 22:06:22 +00:00
mrg
0fb1e1b4ae add support for u-boot 2022.01. tested with rockpro64 and pinebookpro. 2022-02-11 21:46:14 +00:00
pho
210d9e8fab Update to fast-logger-3.1.1
3.1.1
* More time-ordered logging functions
  [#199](https://github.com/kazu-yamamoto/logger/pull/199

3.1.0
* Having a single Buffer in LoggerSet for locking
  [#197](https://github.com/kazu-yamamoto/logger/pull/197. This would have
  performance penalty. So, the major version bumps up. If you see
  performance regression, please register an issue on github.
2022-02-11 16:14:03 +00:00
pho
b3856402ce Update to hslua-module-path-1.0.1
hslua-module-path-1.0.1
* Bumped upper bound of hslua-core and hslua-marshalling to allow their
  respective version 2.1.

hslua-module-path-1.0.0
* Updated to hslua 2.0.
2022-02-11 13:34:54 +00:00
pin
3b996df9aa sysutils/dusage: update to 0.2.3
-Add copy-friendly feature
 Usefuly when we want to copy output elsewhere.
 The unused is then a separate character to
 distinguish it from the used part.
2022-02-10 22:03:09 +00:00
gutteridge
fa5b708b3e xfce4-cpugraph-plugin: this now requires a C++14 feature 2022-02-10 02:14:12 +00:00
gutteridge
15a62b8c06 xfce4-thunar: this now requires a C99 feature 2022-02-10 02:12:46 +00:00
msaitoh
5389ccf2cf Update intel-microcode-netbsd to 20220207.
# Release Notes
## [microcode-20220207]
(https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-20220207)

### Purpose

- Security updates for [INTEL-SA-00528]
  (https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00528.html)
- Security updates for [INTEL-SA-00532]
  (https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00532.html)
- Update for functional issues. Refer to
  [Third Generation Intel Xeon Processor Scalable Family Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/637780) for details.
- Update for functional issues. Refer to
  [Second Generation Intel Xeon Processor Scalable Family Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/338848) for details.
- Update for functional issues.
  Refer to [Intel Xeon Processor Scalable Family Specification Update]
  (https://www.intel.com/content/www/us/en/processors/xeon/scalable/xeon-scalable-spec-update.html?wapkw=processor+specification+update) for details.
- Update for functional issues. Refer to
  [11th Generation Intel Core Processor Family Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/631123) for details.
- Update for functional issues. Refer to
  [11th Generation Intel Core Processor Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/634808) for details.
- Update for functional issues. Refer to
  [10th Gen Intel Core Processor Families Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/341079) for details.
- Update for functional issues. Refer to
  [10th Generation Intel Core Processor Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/615213) for details.
- Update for functional issues. Refer to
  [8th Generation Intel Core Processor Families Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/338025) for details.
- Update for functional issues. Refer to
  [8th Gen Intel Core Processor Family Spec Update]
  (https://www.intel.com/content/www/us/en/products/docs/processors/core/8th-gen-core-family-spec-update.html?wapkw=processor+specification+update) for details.
- Update for functional issues. Refer to
  [7th and 8th Generation Intel Core Processor Family Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/334663) for details.
- Update for functional issues. Refer to
  [6th Generation Intel Processor Family Specification Update]
  (https://www.intel.com/content/www/us/en/processors/core/desktop-6th-gen-core-family-spec-update.html) for details.
- Update for functional issues. Refer to
  [Intel Pentium Silver and Intel Celeron Processors]
  (https://www.intel.com/content/www/us/en/products/docs/processors/pentium/silver-celeron-spec-update.html?wapkw=processor+specification+update) for details.

### New Platforms

None

### Updated Platforms

| Processor      | Stepping | F-M-S/PI    | Old Ver  | New Ver  | Products
|:---------------|:---------|:------------|:---------|:---------|:---------
| HSX-E/EP       | Cx/M1    | 06-3f-02/6f | 00000046 | 00000049 | Core Gen4 X series; Xeon E5 v3
| HSX-EX         | E0       | 06-3f-04/80 | 00000019 | 0000001a | Xeon E7 v3
| SKL-U/Y        | D0       | 06-4e-03/c0 | 000000ea | 000000ec | Core Gen6 Mobile
| BDX-ML         | B0/M0/R0 | 06-4f-01/ef | 0b00003e | 0b000040 | Xeon E5/E7 v4; Core i7-69xx/68xx
| SKX-SP         | B1       | 06-55-03/97 | 0100015b | 0100015c | Xeon Scalable
| SKX-SP         | H0/M0/U0 | 06-55-04/b7 | 02006b06 | 02006c0a | Xeon Scalable
| SKX-D          | M1       | 06-55-04/b7 | 02006b06 | 02006c0a | Xeon D-21xx
| CLX-SP         | B0       | 06-55-06/bf | 04003102 | 0400320a | Xeon Scalable Gen2
| CLX-SP         | B1       | 06-55-07/bf | 05003102 | 0500320a | Xeon Scalable Gen2
| CPX-SP         | A1       | 06-55-0b/bf | 07002302 | 07002402 | Xeon Scalable Gen3
| BDX-DE         | V2/V3    | 06-56-03/10 | 0700001b | 0700001c | Xeon D-1518/19/21/27/28/31/33/37/41/48, Pentium D1507/08/09/17/19
| BDX-DE         | Y0       | 06-56-04/10 | 0f000019 | 0f00001a | Xeon D-1557/59/67/71/77/81/87
| BDX-NS         | A1       | 06-56-05/10 | 0e000012 | 0e000014 | Xeon D-1513N/23/33/43/53
| APL            | D0       | 06-5c-09/03 | 00000044 | 00000046 | Pentium N/J4xxx, Celeron N/J3xxx, Atom x5/7-E39xx
| APL            | E0       | 06-5c-0a/03 | 00000020 | 00000024 | Atom x5-E39xx
| SKL-H/S        | R0/N0    | 06-5e-03/36 | 000000ea | 000000ec | Core Gen6; Xeon E3 v5
| DNV            | B0       | 06-5f-01/01 | 00000034 | 00000036 | Atom C Series
| ICX-SP         | D0       | 06-6a-06/87 | 0d0002a0 | 0d000331 | Xeon Scalable Gen3
| GLK            | B0       | 06-7a-01/01 | 00000036 | 00000038 | Pentium Silver N/J5xxx, Celeron N/J4xxx
| GKL-R          | R0       | 06-7a-08/01 | 0000001a | 0000001c | Pentium J5040/N5030, Celeron J4125/J4025/N4020/N4120
| ICL-U/Y        | D1       | 06-7e-05/80 | 000000a6 | 000000a8 | Core Gen10 Mobile
| LKF            | B2/B3    | 06-8a-01/10 | 0000002a | 0000002d | Core w/Hybrid Technology
| TGL            | B1       | 06-8c-01/80 | 00000088 | 0000009a | Core Gen11 Mobile
| TGL-R          | C0       | 06-8c-02/c2 | 00000016 | 00000022 | Core Gen11 Mobile
| TGL-H          | R0       | 06-8d-01/c2 | 0000002c | 0000003c | Core Gen11 Mobile
| AML-Y22        | H0       | 06-8e-09/10 | 000000ea | 000000ec | Core Gen8 Mobile
| KBL-U/Y        | H0       | 06-8e-09/c0 | 000000ea | 000000ec | Core Gen7 Mobile
| CFL-U43e       | D0       | 06-8e-0a/c0 | 000000ea | 000000ec | Core Gen8 Mobile
| WHL-U          | W0       | 06-8e-0b/d0 | 000000ea | 000000ec | Core Gen8 Mobile
| AML-Y42        | V0       | 06-8e-0c/94 | 000000ea | 000000ec | Core Gen10 Mobile
| CML-Y42        | V0       | 06-8e-0c/94 | 000000ea | 000000ec | Core Gen10 Mobile
| WHL-U          | V0       | 06-8e-0c/94 | 000000ea | 000000ec | Core Gen8 Mobile
| EHL            | B1       | 06-96-01/01 | 00000011 | 00000015 | Pentium J6426/N6415, Celeron J6412/J6413/N6210/N6211, Atom x6000E
| JSL            | A0/A1    | 06-9c-00/01 | 0000001d | 2400001f | Pentium N6000/N6005, Celeron N4500/N4505/N5100/N5105
| KBL-G/H/S/E3   | B0       | 06-9e-09/2a | 000000ea | 000000ec | Core Gen7; Xeon E3 v6
| CFL-H/S/E3     | U0       | 06-9e-0a/22 | 000000ea | 000000ec | Core Gen8 Desktop, Mobile, Xeon E
| CFL-S          | B0       | 06-9e-0b/02 | 000000ea | 000000ec | Core Gen8
| CFL-H/S        | P0       | 06-9e-0c/22 | 000000ea | 000000ec | Core Gen9
| CFL-H          | R0       | 06-9e-0d/22 | 000000ea | 000000ec | Core Gen9 Mobile
| CML-H          | R1       | 06-a5-02/20 | 000000ea | 000000ec | Core Gen10 Mobile
| CML-S62        | G1       | 06-a5-03/22 | 000000ea | 000000ec | Core Gen10
| CML-S102       | Q0       | 06-a5-05/22 | 000000ec | 000000ee | Core Gen10
| CML-U62 V1     | A0       | 06-a6-00/80 | 000000e8 | 000000ea | Core Gen10 Mobile
| CML-U62 V2     | K1       | 06-a6-01/80 | 000000ea | 000000ec | Core Gen10 Mobile
| RKL-S          | B0       | 06-a7-01/02 | 00000040 | 00000050 | Core Gen11

### Removed Platforms

| Processor      | Stepping | F-M-S/PI    | Old Ver  | New Ver  | Products
|:---------------|:---------|:------------|:---------|:---------|:---------
| SNR            | B0       | 06-86-04/01 | 0b00000f |          | Atom P59xxB
| SNR            | B1       | 06-86-05/01 | 0b00000f |          | Atom P59xxB
2022-02-09 05:56:05 +00:00
mrg
ba3f7e9394 Add Trusted Firmware-A (TF-A, the new name for Arm'sATF) v2.6 with
support for rk3328 (not yet tested), rk3399 (tested), and fiptool.

these will obsolete the existing arm-trusted-firmware* (v2.3) packages
once all consumers are updated and tested, and currently the sun50i_a64
and sun50i-h6 targets are not yet available.
2022-02-09 01:57:57 +00:00
adam
7f2665fdd8 ansible-base: updated to 2.10.17
v2.10.17
========

Bugfixes
--------
- ansible-galaxy collection build - Ignore any existing ``MANIFEST.json`` and ``FILES.json`` in the root directory when building a collection.
- ansible-test - Fix traceback in the ``validate-modules`` sanity test when testing an Ansible module without any callables.
- backwards compatiblity copy of doc fragment action_common_attributes
2022-02-08 16:41:06 +00:00
pin
cdc7a37de4 sysutils/macchina: update to 6.0.6
Bump libmacchina to v6.1.0:
-Fixes a bug that causes the package readout to display "0 (cargo)" if
 $CARGO_HOME/bin is empty. (Macchina-CLI/libmacchina@22a7df0)
-Fixes a bug that causes the network readout to return an IPv6 address in
 some cases. (Macchina-CLI/libmacchina@608a1dd)
2022-02-08 12:37:05 +00:00
pin
ac087cccb0 sysutils/bkt: update to 0.5.2
-Handle (i.e. ignore) BrokenPipe errors, which indicate stdout/stderr were
 closed without reading all output.
2022-02-07 09:17:55 +00:00
gutteridge
87827eb05c xfce4-cpugraph-plugin: update to 1.2.6
Change log:

1.2.6 (2022-02-02)
=====
- Fix translations not showing in the GUI
- Don't save some defaults to configuration files
- Fix visibility of the associated-command configuration
- Update configure.ac.in syntax
- Translation Updates:
  Basque, Chinese (China), Croatian, Danish, Hebrew, Indonesian,
  Occitan (post 1500), Portuguese (Brazil), Slovenian, Swedish
2022-02-06 01:06:56 +00:00
adam
720993b82d py-Send2Trash: updated to 1.8.0
Version 1.8.0 -- 2021/08/08
---------------------------
* Add compatibility with pathlib paths
* Fix thread compatibility of modern windows implementation
* Fix handling of UNC names in legacy windows implementation

Version 1.7.1 -- 2021/06/21
---------------------------
* Release stable version with changes from last 3 releases
* Fix handling of UNC names

Version 1.7.0a1 -- 2021/05/14
-----------------------------
* Changed conditional for when to try to use pyobjc version

Version 1.7.0a0 -- 2021/04/20
-----------------------------
* Add console_script entry point
* Increased python CI versions
* Fix minor issue in setup.py
* Fix issue with windows tests importing modules on non-windows
* Unit test cleanups, rewrites, and flake8 cleanups
* Windows: Fix legacy windows platform for multi-byte unicode and add tests
* macOS: Add alternative pyobjc version to potentially improve compatibility

Version 1.6.0b1 -- 2020/06/18
-----------------------------
* Add main method which allows calling via ``python -m send2trash somefile``
* Windows: Add support for using IFileOperation when pywin32 is present on Vista and newer
* Add support for passing multiple files at once in a list
* Windows: Batch multi-file calls to improve performance
* Windows: Fix issue with SHFileOperation failing silently when path is not found
2022-02-05 11:51:59 +00:00
adam
b9065af30b bup: mark as not for Python 2.7 2022-02-05 09:05:42 +00:00
ryoon
591a93c1ba sysutils: Enable swtpm 2022-02-05 03:14:19 +00:00
ryoon
8ca97ed9ba sysutils/swtpm: import swtpm-0.7.0
The SWTPM package provides TPM emulators with different front-end interfaces
to libtpms. TPM emulators provide socket interfaces (TCP/IP and Unix) and
the Linux CUSE interface for the creation of multiple native /dev/vtpm* devices.

The SWTPM package also provides several tools for using the TPM emulator,
creating certificates for a TPM, and simulating the manufacturing of
a TPM by creating a TPM's EK and platform certificates etc.
2022-02-05 03:13:12 +00:00
ryoon
5427b1fc78 sysutils: Enable libtpms 2022-02-05 03:10:48 +00:00
ryoon
1654c1fee6 sysutils/libtpms: import libtpms-0.9.1
Libtpms is a library that targets the integration of TPM functionality
into hypervisors, primarily into Qemu. Libtpms provides a very narrow
public API for this purpose so that integration is possible. Only the
minimum of necessary APIs are made publicly available.

It is assumed that the user of libtpms is familiar with the concepts
of the Trusted Platform Module (TPM). For the interaction with libtpms
it is necessary to know how to construct valid TPM commands and to
be able to parse their results. It is not within the scope of libtpms's
documentation to provide background on this
2022-02-05 03:09:26 +00:00
pin
2e9f71774c sysutils/xplr: update to 0.17.2
Changes & fixes
-Added CLI option --print-pwd-as-result to simplify implementing "cd on quit"
 using shell alias (See #437)
-alias xcd='cd "$(xplr --print-pwd-as-result)"'
-Added new key binding ctrl-d to duplicate a file or directory in the same
 parent directory with a different name. (See #434).
2022-02-03 21:46:51 +00:00
hauke
b38b4f39e8 Update sysutils/tsm8 to v8.1.13
This is a bugfix release; upstream does not really provide a changelist.

While here, deal with fallout from introducing yet another global
*_SUPPORTED variable.
2022-02-02 13:38:56 +00:00
adam
928112cc14 py-magic: updated to 0.4.25
Changes to 0.4.25:
- Support os.PathLike values in Magic.from_file and magic.from_file
2022-02-02 12:29:14 +00:00
pin
af97f8bc85 Add bkt 2022-02-01 19:18:11 +00:00
pin
e2f94b11dd sysutils/bkt: import package
bkt (pronounced bucket) is a subprocess caching utility written in Rust,
inspired by bash-cache.
Wrapping expensive process invocations with bkt allows callers to reuse recent
invocations without complicating their application logic. This can be useful in
shell prompts, interactive applications such as fzf, and long-running programs
that poll other processes.

When bkt is passed a command it hasn't seen before (or recently) it executes
the command synchronously and caches its stdout, stderr, and exit code.
Calling bkt again with the same command reads the data from the cache and
outputs it as if the command had been run again.
2022-02-01 19:17:29 +00:00
pin
c680433344 sysutils/felix: update to 0.4.0
-enable to show/hide hidden items ( #34 @balroggg )
-felix keeps the state of show_hidden(whether to show hidden items) and
 sort_by(by name or by modified time): The change remains after exit.
2022-02-01 19:14:54 +00:00
wiz
1e8c5eeee0 py-stack-data: add missing build dependency
add one of the two missing test dependencies, littleutils needs to be
packaged
2022-02-01 10:08:09 +00:00
mlelstv
124957c8e9 Amanda expects the security config file to be owned by root. 2022-01-31 10:56:27 +00:00
pho
68d4812226 Workaround for an issue regarding write operations on vmhgfs 2022-01-30 16:22:19 +00:00
rhialto
77446f2632 sysutils/arm-trusted-firmware: add patch to avoid build failure on warnings.
No version bump needed: if it built for you before, there is no change.
2022-01-29 14:03:13 +00:00
schmonz
ae6b83f99d Also set DYLD_LIBRARY_PATH=. (in addition to LD_PRELOAD) when generating
magic. Fixes build on macOS (Monterey and Snow Leopard tested) when file
is not already installed.
2022-01-29 13:06:25 +00:00
pin
b813252e05 sysutils/dusage: update to 0.2.2
-Add NetBSD install instructions
-Improve syntax consistency
-Improve wording
2022-01-29 10:10:05 +00:00
wiz
c415bdc190 *: convert py-flake8 users to versioned_dependencies 2022-01-29 08:48:40 +00:00
wiz
7c872db4ed spice-server: fix build with python 3.10 2022-01-27 19:04:12 +00:00
nros
f82803df7f Use the right variable to check for MKPIE 2022-01-27 09:02:58 +00:00
pin
e396c30148 sysutils/dusage: update to 0.2.1
-Fix Incorrect alignment between column header and contents #4
-Include Cargo.lock for easy releasing on NetBSD.
2022-01-25 21:29:35 +00:00
pin
11e0a7ffde Add dusage 2022-01-25 19:43:12 +00:00
pin
4912ec4b95 sysutils/dusage: import package
Command line disk usage tool.

Features
    -bargraph with disk and inode usage.
        -background: inodes, foreground: disks.
    -grouping of filesystems.
    -separate coloring of /, /boot and /mnt for easy spotting.
    -log2ram filesystem displayed last for easy spotting of log drive usage
     on Raspberry Pi.
    -display of detailed inode usage (similar to df -i).
2022-01-25 19:42:23 +00:00
pin
df2196b806 sysutils/hcal: update to 0.3.3
-Add a few more flags.
2022-01-25 19:39:44 +00:00
wiz
f607fb51a8 broot: downgrade to 1.9.1
1.9.2 needs rust 1.58, and we don't have that in pkgsrc yet

ok pin@
2022-01-24 09:00:41 +00:00
wiz
fcf0e99aea xe: simplify, and fix build on NetBSD 2022-01-23 21:37:07 +00:00
schmonz
3c78675f19 Add and enable xe. 2022-01-23 19:43:46 +00:00
schmonz
efb8975ec1 Add xe, a simple xargs and apply replacement.
`xe` is a new tool for constructing command lines from file listings or
arguments, which includes the best features of `xargs(1)` and
`apply(1)`. `xe` means "execute for every ...".

Benefits over xargs:
* Sane defaults (behaves like `xargs -d'\n' -I{} -n1 -r`).
* No weird parsing, arguments are separated linewise or by NUL byte.
* Can also take arguments from command-line.
* No shell involved unless `-s` is used.
* `{}` replacing possible with multiple arguments.
* Support for patterns to run different commands depending on the argument.

Benefits over apply:
* Parallel mode.
* Sane argument splitting.
* Can use shell-syntax instead of escape characters.
2022-01-23 19:42:33 +00:00
adam
a272651136 py-stack-data: added version 0.1.4
This is a library that extracts data from stack frames and tracebacks,
particularly to display more useful tracebacks than the default.
2022-01-23 19:34:47 +00:00
pin
2756bcfc5c sysutils/broot: update to 1.9.2
-instead of crashing on syntect panic in code preview, fall back to unstyled
 text - Fix #485
-fix files in worktree missing from git statuses - Fix #428
2022-01-23 16:13:11 +00:00
adam
53d6b0256d py-jeepney: updated to 0.7.1
0.7.1
-----
* Add ``async with`` support to :class:`~.asyncio.DBusConnection` in the
  asyncio integration.
* Fix calling :meth:`~.asyncio.DBusConnection.receive` immediately after opening
  a connection in the asyncio integration.

0.7
---
* Support for :ref:`sending and receiving file descriptors <send_recv_fds>`.
  This is available with the blocking, threading and trio integration layers.
* Deprecated older integration APIs, in favour of new APIs introduced in 0.5.
* Fixed passing a deque in to :meth:`~.blocking.DBusConnection.filter` in the
  blocking integration API.
2022-01-23 09:09:51 +00:00
wiz
032f0913fc py-jeepney, calibre: remove python 3.7 from allowed versions because of py-trio 2022-01-23 00:46:27 +00:00
pho
49b2a09122 Conditionalise workarounds for old NetBSD librefuse 2022-01-22 18:52:11 +00:00
thorpej
780437f77c Add a package for minipro, an open source program for controlling the
MiniPRO TL866xx series of chip programmers.
2022-01-22 17:52:53 +00:00
pin
8094607293 sysutils/dua-cli: update to 2.17.0
New Features:
   -interactive mode learns 'toggle [a]ll' and 'remove [a]ll'.

    In the mark pane, the 'a' key will now toggle all entries.
    This is particularly interesting for selecting entries to
    exclude by hand and then invert the selection by toggling [a]ll.

    In the delete pane, toggling all with the 'a' key means removing
    all entries and closing the pane.
2022-01-22 16:11:48 +00:00
wiz
ecb80d2662 py-jeepney: fix PLIST, add missing dependencies
Bump PKGREVISION
2022-01-22 14:10:10 +00:00
bsiegert
4cd39d7e4f py-borgbackup: also install man pages, bump revision 2022-01-21 16:07:33 +00:00
fox
6c1c00ae6c sysutils/htop: Update to 3.1.2
Changes since 3.1.1:

What's new in version 3.1.2

* Bugfix for crash when storing modified settings at exit
* Generate xz-compressed source tarball (with configure) using github actions
* Allow -u UID with numerical value as argument
* Added documentation for obsolete/state libraries/program files highlighting
* Some obsolete/stale library highlighting refinements
* Column width issues resolved
* Dynamic UID column sizing improved
* Discard stale information from Disk and Network I/O meters
* Refined Linux kernel thread detection
* Reworked process state handling
* New CCGROUP column showing abbreviated cgroup name
* New OFFSET column in the list of open files screen
2022-01-20 22:48:41 +00:00
nros
dfd3535bc0 Fix dbus PIE build
Only remove -fPIE and -pie when PKGSRC_MKPIE is no.
The buildlink transforms make the tools become non-pie.
This causes the PIE checks to fail.
2022-01-20 16:38:21 +00:00
schmonz
372891566b Fix a missing EGREP subst. While here, subst PERL5 too. Bump PKGREVISION. 2022-01-20 13:53:13 +00:00
rhialto
64961426f1 sysutils/Makefile: Add py-jeepney. 2022-01-19 20:43:50 +00:00
rhialto
10ef4e0398 sysutils/py-jeepney: import from wip. 2022-01-19 20:43:20 +00:00
pin
c347637e26 Add hcal 2022-01-19 10:58:52 +00:00
pin
2a19c98cec sysutils/hcal: import package
Hexadecimal calendar in terminal for programmers.
2022-01-19 10:57:57 +00:00
pin
d7bb8f198f sysutils/navi: update to 2.19.0
New features:
-Add smart replace functionality to the fish shell widget (#655)

Fixes:
-Allow multi-word shell.command config (#644)

Code quality:
-Improve fish widget code (#671)
-Update legacy syntax from Elvish widget (#670)
2022-01-19 10:53:37 +00:00
pho
75588a9d5d Bump packages that depends on GHC 2022-01-18 02:48:01 +00:00
pin
5d2ae53670 sysutils/lsd: update to 0.21.0
Added:
- Added support for the MISSING / mi= dircolors variable for broken symlink
  targets.
- Add support for theme from zwpaper (#452)
- Update theme to support partial themes zwpaper (#591)
- Update minimal rust version to 1.42.0 from zwpaper (#534)
- NO_COLOR environment variable support from (AnInternetTroll)

Changed:
- Change size to use btyes in classic mode from meain
- Show tree edge before name block or first column if no name block from
  zwpaper (#468)
- Added icons for Perl modules (.pm) and test scripts (.t)
- Add --config-file flag to read configuration file from a custom location
- Clarify custom date format for date field in configuration file in the README.

Fixed:
- Support all strftime like formatting (#532)
2022-01-16 16:51:31 +00:00
taca
28c788eda4 Allow build with Ruby 3.1. 2022-01-16 14:29:47 +00:00
wiz
74756f90ca xentools415: convert to egg.mk
From Oskar on pkgsrc-users.

Bump PKGREVISION.
2022-01-15 17:44:35 +00:00
pin
23b56a0b4a sysutils/felix: update to 0.3.2
Fix:
-Restore cursor after exit.

Improvement:
-Get git branch name without Command::new("git")
2022-01-15 17:04:19 +00:00
wiz
e3f47fbb0e *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
pin
52dd4511de sysutils/fd-find: update to 8.3.1
v8.3.1

Bugfixes
- Stop implying --no-ignore-parent when --no-vcs-ignore is supplied,
  see #907, #901, #908 (@tmccombs)
- fd no longer waits for the whole traversal if the only matches arrive within
  max_buffer_time, see #868 and #895 (@tavianator)
- --max-results=1 now immediately quits after the first result, see #867
- fd -h does not panic anymore when stdout is closed, see #897

Changes
- Disable jemalloc on FreeBSD, see #896 (@xanderio)
- Updated man page, see #912 (@rlue)
- Updated zsh completions, see #932 (@tmccombs)


v8.3.0

Performance improvements
- Colorized output is now significantly faster, see #720 and #853 (@tavianator)
- Writing to stdout is now buffered if the output does not go to a TTY. This
  increases performance when the output of fd is piped to another program or to
  a file, see #885 (@tmccombs, original implementation by @sourlemon207)
- File metadata is now cached between the different filters that require it
  (e.g. --owner, --size), reducing the number of stat syscalls when multiple
  filters are used; see #863 (@tavianator, original implementation by @alexmaco)

Features
- Don't buffer command output from --exec when using a single thread. See #522
- Add new -q, --quiet flag, see #303 (@Asha20)
- Add new --no-ignore-parent flag, see #787 (@will459)
- Add new --batch-size flag, see #410 (@devonhollowood)
- Add opposing command-line options, see #595 (@Asha20)
- Add support for more filesystem indicators in LS_COLORS, see
  https://github.com/sharkdp/lscolors/pull/35 (@tavianator)

Bugfixes
- Always show the ./ prefix for search results unless the output is a TTY or
  --strip-cwd-prefix is set, see #760 and #861 (@jcaplan)
- Set default path separator to / in MSYS, see #537 and #730 (@aswild)
- fd cannot search files under a RAM disk, see #752
- fd doesn't show substituted drive on Windows, see #365
- Properly handle write errors to devices that are full, see #737
- Use local time zone for time functions (--change-newer-than,
  --change-older-than`), see #631 (@jacobmischka)
- Support --list-details on more platforms (like BusyBox), see #783
- The filters --owner, --size, and --changed-{within,before} now apply to
  symbolic links themselves, rather than the link target, except when
  --follow is specified; see #863
- Change time comparisons to be exclusive, see #794 (@jacobmischka)

Changes
- Apply custom --path-separator to commands run with --exec(-batch) and
  --list-details, see #697 (@aswild)

Other
- Many documentation updates
2022-01-13 21:59:08 +00:00
wiz
6cb0986e60 hexyl: move cargo depends to cargo-depends.mk to simplify updates 2022-01-13 20:32:08 +00:00
wiz
4f48678c96 *: setuptools_scm: switch to versioned_dependencies 2022-01-13 19:31:20 +00:00
schmonz
cbb13e52a5 Add and enable hexyl. 2022-01-13 14:14:40 +00:00
schmonz
da111cf6d4 Add hexyl, a simple hex viewer for the terminal. It uses a colored
output to distinguish different categories of bytes (NULL bytes,
printable ASCII characters, ASCII whitespace characters, other ASCII
characters and non-ASCII).
2022-01-13 14:13:59 +00:00
pin
67c7836c1a sysutils/felix: update to 0.3.1
Fix:
-cursor movement when going to parent directory
-cursor memorization using PathBuf instead of String
2022-01-13 13:21:15 +00:00
pin
8b45c76dc3 sysutils/xplr: update to 0.17.1
Changes & fixes
-If errors occur during startup, xplr will display a debug error screen.
 This can be disabled by setting xplr.config.general.disable_debug_error_
 _mode = true
-While creating files (e.g. path/to/file), if the parent directories don't
 exist, they will be automatically created.
2022-01-11 16:43:55 +00:00
wiz
b1e1e2c132 *: convert to egg.mk 2022-01-10 23:46:48 +00:00
wiz
a9e81746fc polysh: convert to egg.mk 2022-01-10 20:23:36 +00:00
wiz
87bd5b4e1d py-notify: convert to egg.mk 2022-01-10 18:49:22 +00:00
adam
e33743b4c6 py-psutil: updated to 5.9.0
5.9.0
=====

**Enhancements**

- 1851_, [Linux]: `cpu_freq()`_ is slow on systems with many CPUs. Read current
  frequency values for all CPUs from ``/proc/cpuinfo`` instead of opening many
  files in ``/sys`` fs.  (patch by marxin)
- 1992_: `NoSuchProcess`_ message now specifies if the PID has been reused.
- 1992_: error classes (`NoSuchProcess`_, `AccessDenied`_, etc.) now have a better
  formatted and separated ``__repr__`` and ``__str__`` implementations.
- 1996_, [BSD]: add support for MidnightBSD.  (patch by Saeed Rasooli)
- 1999_, [Linux]: `disk_partitions()`_: convert ``/dev/root`` device (an alias
  used on some Linux distros) to real root device path.
- 2005_: ``PSUTIL_DEBUG`` mode now prints file name and line number of the debug
  messages coming from C extension modules.
- 2042_: rewrite HISTORY.rst to use hyperlinks pointing to psutil API doc.

**Bug fixes**

- 1456_, [macOS], **[critical]**: `cpu_freq()`_ ``min`` and ``max`` are set to
  0 if can't be determined (instead of crashing).
- 1512_, [macOS]: sometimes `Process.connections()`_ will crash with
  ``EOPNOTSUPP`` for one connection; this is now ignored.
- 1598_, [Windows]: `disk_partitions()`_ only returns mountpoints on drives
  where it first finds one.
- 1874_, [SunOS]: swap output error due to incorrect range.
- 1892_, [macOS]: `cpu_freq()`_ broken on Apple M1.
- 1901_, [macOS]: different functions, especially `Process.open_files()`_ and
  `Process.connections()`_, could randomly raise `AccessDenied`_ because the
  internal buffer of ``proc_pidinfo(PROC_PIDLISTFDS)`` syscall was not big enough.
  We now dynamically increase the buffer size until it's big enough instead of
  giving up and raising `AccessDenied`_, which was a fallback to avoid crashing.
- 1904_, [Windows]: ``OpenProcess`` fails with ``ERROR_SUCCESS`` due to
  ``GetLastError()`` called after ``sprintf()``.  (patch by alxchk)
- 1913_, [Linux]: `wait_procs()`_ should catch ``subprocess.TimeoutExpired``
  exception.
- 1919_, [Linux]: `sensors_battery()`_ can raise ``TypeError`` on PureOS.
- 1921_, [Windows]: `swap_memory()`_ shows committed memory instead of swap.
- 1940_, [Linux]: psutil does not handle ``ENAMETOOLONG`` when accessing process
  file descriptors in procfs.  (patch by Nikita Radchenko)
- 1948_, **[critical]**: ``memoize_when_activated`` decorator is not thread-safe.
  (patch by Xuehai Pan)
- 1953_, [Windows], **[critical]**: `disk_partitions()`_ crashes due to
  insufficient buffer len. (patch by MaWe2019)
- 1965_, [Windows], **[critical]**: fix "Fatal Python error: deallocating None"
  when calling `users()`_ multiple times.
- 1980_, [Windows]: 32bit / WoW64 processes fails to read `Process.name()`_ longer
  than 128 characters resulting in `AccessDenied`_. This is now fixed.  (patch
  by PetrPospisil)
- 1991_, **[critical]**: `process_iter()`_ is not thread safe and can raise
  ``TypeError`` if invoked from multiple threads.
- 1956_, [macOS]: `Process.cpu_times()`_ reports incorrect timings on M1 machines.
  (patch by Olivier Dormond)
- 2023_, [Linux]: `cpu_freq()`_ return order is wrong on systems with more than
  9 CPUs.
2022-01-10 17:05:27 +00:00
wiz
10e4298b0d monitoring: convert to egg.mk 2022-01-10 08:27:12 +00:00
wiz
044b12e8f9 manifold: convert to egg.mk 2022-01-10 08:18:25 +00:00
wiz
a497c2315f rdiff-backup: convert to egg.mk 2022-01-10 08:06:26 +00:00
ryoon
45fb4e2594 *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
tnn
4c00f1860d Fix packages that use GITSUB_MODULES on SunOS and possibly others
This is annoying, but for now we must always explicitly combine
GITHUB_SUBMODULES with EXTRACT_USING+=bsdtar.

This is because mk/fetch/github.mk uses OPTS_TAR=--strip-components=1
and that is not supported by nbtar(pax), which is the default pkgsrc
tar on some platforms. We cannot override EXTRACT_USING in github.mk
because that is too late.

We should switch all platforms to bsdtar and retire pax.
2022-01-09 23:42:02 +00:00
tnn
d5f7e8e0d7 pciutils: fix build on SunOS, no symbol versioning available
lspci still says:
> lspci: Cannot find any working access method.

But at least it won't hold up the 28 packages that depend on this.
2022-01-09 22:31:57 +00:00
bsiegert
69b9f4cba9 Revbump all Go packages after go117 update 2022-01-09 20:10:29 +00:00
wiz
71cce5e81d egg.mk: remove --single-version-externally-managed
setuptools has this as default when --root is used (since version 0.6a11).
2022-01-09 11:58:13 +00:00
pin
a9c4cb2836 sysutils/dua-cli: update to 2.16.0
New Features
- Add --ignore-dirs option, with useful default on linux.

Bug Fixes
-build on platforms without 64-bit atomics
2022-01-09 09:24:33 +00:00
tnn
9b4997d022 podman: skip a portability check 2022-01-09 02:58:52 +00:00
leot
129076f465 entr: Update to 5.1
Changes:
5.1
---
 - Detect files moved to or from directories on Linux
 - Allow detection of directory entries beginning with '.' by specifying '-d' twice
 - Only reset terminal settings in exit handler if settings were changed
2022-01-08 15:41:31 +00:00
pin
c8af928a3c sysutils/broot: update to 1.9.1
v1.9.1
-Better manage when to draw/erase/keep Kitty Graphics Protocol images for better
 speed when background tasks run. Also fix background not erased behind kitty
 images in some cases.

v1.9.0
-total search (launched with ctrl-s) shows all matches - This is experimental
 and might be reversed, opinions welcome
-kitty graphics protocol used for high definition image rendering on recent
 enough versions of WezTerm - Fix #473
-fix syntaxic preview of Python files broken by comments - Fix #477
-home key bound to :input_go_to_start, end key bound to :input_go_to_end -
 Fix #475
2022-01-08 15:35:46 +00:00
pin
96859bfcea sysutils/felix: update to 0.3.0
v0.3.0
enhancement:
    Show item information on the last line (index, file extension, file size)
    Add memoization of cursor position in previous directory
    Adjust cursor movement when going to different child directory

fix:
    display of item when selecting
    cursor movement after filter mode

some refactoring

v0.2.13
enhancement:
    Show item information on the last line (index, file extension, file size)
    Add memoization of cursor position in previous directory
    Adjust cursor movement when going to different child directory

fix:
    display of item when selecting
    cursor movement after filter mode

some refactoring
2022-01-08 15:30:51 +00:00
wiz
fc0067178b binwalk: convert to egg.mk 2022-01-07 23:18:19 +00:00
nikita
10398f2e73 binwalk: update to version 2.3.3
ChangeLog (from https://github.com/ReFirmLabs/binwalk/releases):

Binwalk 2.3.3
    Added checks to prevent directory traversal vulnerability when
    external extractors create symlinks on the filesystem.
    Added --run-as command line option to allow users to control the
    privilege level external extractors are given as well as the power
    to run as root if they so choose.
    Added documentation to the README that describes the changes
    above.
Binwalk 2.3.2
    Minor bug fixes
Release 2.3.1
    Fixed issue where deps.sh could fail to install a dependency but
    the script would still succeed. Specifically sasquatch was not
    getting properly installed into the docker container.
Release v2.3.0
    This is the first release with exclusive support for Python3.
Python 2.2.1
    This will be the last release that officially supports Python 2.
Binwalk v2.2.0 Release
    Updated version to 2.2.0
2022-01-07 19:50:46 +00:00
adam
c812e14f87 py-structlog: updated to 21.5.0
21.5.0 (2021-12-16)
-------------------
Changes:
- Added the ``structlog.processors.LogfmtRenderer`` processor to render log lines using the `logfmt <https://brandur.org/logfmt>`_ format.
- Added the ``structlog.stdlib.ExtraAdder`` processor that adds extra attributes of ``logging.LogRecord`` objects to the event dictionary.
  This processor can be used for adding data passed in the ``extra`` parameter of the ``logging`` module's log methods to the event dictionary.
- Added the ``structlog.processor.CallsiteParameterAdder`` processor that adds parameters of the callsite that an event dictionary orginated from to the event dictionary.
  This processor can be used to enrich events dictionaries with information such as the function name, line number and filename that an event dictionary orignated from.


21.4.0 (2021-11-25)
-------------------
Changes:
- Fixed import when running in optimized mode (``PYTHONOPTIMIZE=2`` or ``python -OO``).
- Added the ``structlog.threadlocal.bound_threadlocal`` and ``structlog.contextvars.bound_contextvars`` decorator/context managers to temporarily bind key/value pairs to a thread-local and context-local context.



21.3.0 (2021-11-20)
-------------------
Backward-incompatible changes:
- ``structlog`` switched its packaging to `flit <https://flit.readthedocs.io/>`_.
  Users shouldn't notice a difference, but (re-)packagers might.

Changes:
- ``structlog.dev.ConsoleRenderer`` now has ``sort_keys`` boolean parameter that allows to disable the sorting of keys on output.
- ``structlog.processors.TimeStamper`` now works well with FreezeGun even when it gets applied before the loggers are configured.
- ``structlog.stdlib.AsyncBoundLogger`` now determines the running loop when logging, not on instantiation.
  That has a minor performance impact, but makes it more robust when loops change (e.g. ``aiohttp.web.run_app()``), or you want to use ``sync_bl`` *before* a loop has started.
- ``structlog.stdlib.ProcessorFormatter`` now has a *processors* argument that allows to define a processor chain to run over *all* log entries.

  Before running the chain, two additional keys are added to the event dictionary: ``_record`` and ``_from_structlog``.
  With them it's possible to extract information from ``logging.LogRecord``\s and differentiate between ``structlog`` and ``logging`` log entries while processing them.

  The old *processor* (singular) parameter is now deprecated, but no plans exist to remove it.
2022-01-07 17:04:31 +00:00
tnn
66b072a2b6 fix typo 2022-01-07 11:46:56 +00:00
jperkin
1460b9ae18 ruby-chef: Fix dependency path. 2022-01-06 10:30:09 +00:00
pin
5c35f663a2 sysutils/macchina: update to 6.0.5
-Fix incorrect target_os for a cfg flag.
2022-01-06 07:54:55 +00:00
wiz
67e1f1a6bf python: egg.mk: add USE_PKG_RESOURCES flag
This flag should be set for packages that import pkg_resources
and thus need setuptools after the build step.

Set this flag for packages that need it and bump PKGREVISION.
2022-01-05 15:40:56 +00:00
schmonz
226e97e6b5 Add and enable sleepwatcher. 2022-01-05 10:56:29 +00:00
schmonz
ae762e1b78 Add sleepwatcher, a daemon that runs a Unix command on various macOS
sleep or wake events.

SleepWatcher is a daemon for macOS that monitors sleep, wakeup and
idleness of a Mac. It can be used to execute a Unix command when the Mac
or the display of the Mac goes to sleep mode or wakes up, after a given
time without user interaction or when the user resumes activity after a
break or when the power supply of a Mac notebook is attached or
detached. It also can send the Mac to sleep mode or retrieve the time
since last user activity.
2022-01-05 10:56:00 +00:00
gutteridge
247d938e52 xfce4-taskmanager: update to 1.5.2
Change log:

1.5.2
======
- Fix restoring the window size (Fixes #39)
- Improve wording of systray option (Fixes #19)
- Translation Updates:
  Italian

1.5.1
======
- Fix erroneous binding of settings (Fixes #37)
- Store column positions again
- Store sort-column-id and sort-type (Fixes #36)
- Also include swap in the memory graph
- Reduce drawing code
- Reduce borders of graphs
- Replace GtkImageMenuItem with GtkMenuItem

1.5.0
======
Please note that this is a development release
- Port to xfconf
- Move to Client-side decorations
- Migrate all settings to the settings dialog
- settings: Switch to XfceTitledDialog
- Use infobar for root warning box
- Drop exec button from toolbar
- include stdlib.h because exit() is used
- remove GLIB_CHECK_VERSION checks
- statusbar: Use better color that works well with both light and dark
themes (!17)
- Fix handling "show-legend" setting
- Handle Esc key correctly with hidden filter
- Drop unused var and sort copyright
- Show/hide filterbar with Ctrl+f and clear with Esc
- Properly close settings dialog
- Remove GSourceFunc casts
- Fix compilation warnings
- Replace AC_PROG_LIBTOOL with IT_PROG_INTLTOOL
- Simplify "query-tooltip" signal handler
- Ellipsize memory and swap labels (Fixes #32)
- Set window icon in glade file
- Replace filter entry with GtkSearchBar
- Fix doc links and bump dates
- Simplify settings dialog code
- Drop leftover function for toolbar style
- Move about dialog to settings
- Drop toolbar style setting
- Fix typo
- Fix tooltip markdown issue
- Create notification area icon only if needed (Bug #25)
- Translation Updates:
  Basque, Belarusian, Chinese (China), Chinese (Taiwan), Czech, French,
  Galician, Italian, Japanese, Lithuanian, Norwegian Bokmål,
  Portuguese (Brazil), Serbian, Turkish
2022-01-05 01:14:22 +00:00
wiz
bb579283d0 *: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
2022-01-04 20:53:26 +00:00
pin
eced8b4be4 sysutils/macchina: update to 6.0.4
-Bugfix: Properly read config from its fallback (macOS)
2022-01-04 18:14:19 +00:00
schmonz
d885d7ce83 Remove patch missed in previous. 2022-01-04 15:23:52 +00:00
schmonz
593bc40e63 Update to 1.18.16. From the changelog:
* Improve sorting stability.
* Prefer mktemp over tempfile as the latter displays a deprecation
  warning since debianutils 4.10. Thanks, Luke Mlsna.
* Use "command -v" rather than "which" to detect installed programs, as
  it is more portable. Thanks, Eli Schwartz.
* Improve commit messages generated by package manager changes,
  listing packages that are responsible for the changed config files.
  Thanks to emkael for the patch.
* If gc.auto is not configured, override the default to make it gc
  ten times more frequently, to avoid wasting space with loose objects.
* update-ignore: Preserve permissions from any preexisting VCS ignore file.
  Thanks, Austin Chu.
* Removed the debian directory from the upstream source package as it's
  not being maintained; see the debian package for an up-to-date one.
* debian/changelog moved to CHANGELOG and debian/copyright to COPYRIGHT.
2022-01-04 15:22:53 +00:00
pin
6610afd4db sysutils/macchina: update to 6.0.3
v6.0.3
-Bugfix: don't whine about a missing configuration.

v6.0.2
This version mainly includes changes, bugfixes and improvements that come
directly from libmacchina (our backend), these changes include:
- general: Several API/structural changes, including unexposing certain
  modules, as well as optimizations to heavily used functions and our own
  directory finders.
- general: Your solid state/hard drive will be relieved to know that we no
  longer make overabundant calls to our built-in implementation of which[1],
  performance has not regressed nor improved.
- general: Explicity mark unimplemented methods, this has no effect on
  macchina.
- macOS: Fail fast when retrieving ShellKind::Current.
- Windows: Scoop support for the package readout.
- build: Improved CI which should help us only deploy better, cleaner and
  optimal code.

Other changes

- Refactored theme handling.

This release is brought to you the following magnificent contributors:
- [FantasyTeddy](https://github.com/FantasyTeddy)

[1]: which: a common unix tool that traverses your PATH to look for a given
program.
2022-01-02 20:02:45 +00:00
pin
a1cd7d751e sysutils/broot: update to 1.8.1
-fix regex pattern automatically built from content pattern when going from a
 tree search to a file preview isn't escaped - Fix #472
2022-01-01 22:28:50 +00:00
bsiegert
9262322338 tealdeer: update to 1.5.0.
v1.5.0 (2021-12-31)

This is quite a big release with many new features. In the 15 months since the
last release, 59 pull requests from 16 different contributors were merged!

The highlights:

- Custom pages and patches: You can now create your own local-only tldr
  pages. But not just that, you can also extend existing upstream pages with
  your own examples.
- Change argument parsing from docopt to clap: We replaced docopt.rs as
  argument parsing library with clap v3, resulting in almost 1 MiB smaller
  binaries and a 22% speed increase when rendering a tldr page.
- Multi-language support: You can now override the language with -L/--language.
- A new `--show-paths` command: By running tldr --show-paths, you can list
  the currently used config dir, cache dir, upstream pages dir and custom pages dir.
- Compliance with the tldr client spec v1.5: We renamed -o/--os to
  -p/--platform and implemented transparent lowercasing of the page names.
- Docs: The README based documentation has reached its limits. There are
  now new mdbook based docs over at https://dbrgn.github.io/tealdeer/, we hope
  these make using tealdeer easier. Of course, documentation improvements are
  welcome! Also, if you're confused about how to use a certain feature, feel free
  to open an issue, this way we can improve the docs.
2022-01-01 19:32:04 +00:00
wiz
58d342a2c0 py-ptyprocess: fix package for python 2.7 2022-01-01 17:42:47 +00:00
rhialto
ef698cc41d sysutils/mtools: update to 4.0.36
v4_0_36
        - Fix error status of recursive listing of empty root directory
        - If recursive listing, also show matched files at level one
        - Use "seekless" reads & write internally, where possible
        - Text mode conversion refactoring
        - Misc refactoring
2022-01-01 17:25:09 +00:00
martin
663ed5c665 py-ptyprocess: convert to egg.mk
Bump PKGREVISION.
2022-01-01 12:29:27 +00:00
plunky
5398714a6e add libtree 2021-12-31 17:29:03 +00:00
plunky
184f0724c0 Add libtree-2.0.0
A command line tool that:
 - turns ldd into a tree
 - explains why shared libraries are found and why not
 - package optionally deploys executables and dependencies
   into a single directory
2021-12-31 17:28:11 +00:00
adam
bb81bf9232 py-supervisor: updated to 4.2.4
4.2.4 (2021-12-30)

Fixed a bug where the --identifier command line argument was ignored. It was broken since at least 3.0a7 (released in 2009) and probably earlier. Patch by Julien Le Cléach.

4.2.3 (2021-12-27)

Fixed a race condition where an rpcinterface extension that subscribed to events would not see the correct process state if it accessed the the state attribute on a Subprocess instance immediately in the event callback. Patch by Chao Wang.
Added the setuptools package to the list of dependencies in setup.py because it is a runtime dependency. Patch by Louis Sautier.
The web interface will now return a 404 Not Found response if a log file is missing. Previously, it would return 410 Gone. It was changed because 410 is intended to mean that the condition is likely to be permanent. A log file missing is usually temporary, e.g. a process that was never started will not have a log file but will have one as soon as it is started.
2021-12-31 13:28:23 +00:00
adam
3dd7e6267e py-eliot17: removed 2021-12-31 13:25:18 +00:00
adam
3c402d1dc4 py-filetype: updated to 1.0.9
v1.0.9

Update init.py
Merge pull request 111 from asfaltboy/patch-1
Add python 3.9 to version classifiers
Merge pull request 108 from hannesbraun/aiff-support
Add AIFF support
fix(Readme): rst syntax
2021-12-31 12:16:51 +00:00
schmonz
525e7b8eb5 Sort PLIST. 2021-12-31 10:05:45 +00:00
schmonz
ca504f5940 Use ${EGREP} instead of whatever "egrep" happens to be at runtime. Fixes
"etckeeper init" on Solaris 11. Bump PKGREVISION.
2021-12-31 10:04:24 +00:00
adam
ee373d32d8 py-eliot: patch for Python 3.6 is no longer needed 2021-12-30 13:38:24 +00:00
adam
4a26d6e2a8 Do not mention Python 3.6 2021-12-30 13:24:01 +00:00
adam
07160ed20f py-contextvars: removed; was Python 3.6 only 2021-12-30 12:08:50 +00:00
adam
939d06205a py-aiocontextvars: removed; Python 3.6 only 2021-12-30 12:05:59 +00:00
pin
f2bc6920e8 sysutils/zoxide: update to 0.8.0
Added
-Zsh: completions for z command.

Changed
-Fzf: better default options.
-Fish: interactive completions are only triggered when the last argument is
 empty.
-PowerShell: installation instructions.

Fixed
-PowerShell: use global scope for aliases.
-Zsh: fix errors with set -eu.
-Fzf: handle early selection.
-PowerShell: correctly handle escape characters in paths.
-Parse error on Cygwin/MSYS due to CRLF line endings.
-Fzf: handle spaces correctly in preview window.
-Bash: avoid initializing completions on older versions.
-Fzf: avoid launching binary from current directory on Windows.
2021-12-29 05:54:01 +00:00
pin
1e0427651b sysutils/dua-cli: update to 2.15.0
-Make dua less prone to hanging by ignoring certain special directories on linux.
-Add --ignore-dirs option, with useful default on linux.
2021-12-29 05:46:13 +00:00
pin
2ac272a3de sysutils/broot: update to 1.8.0
-alt-i bound to toggle_git_ignore
-alt-h bound to toggle_hidden
-text previews switches to hexa when there are not printable chars
 (eg escape sequences)
2021-12-29 05:42:38 +00:00
nros
4410ef7d4f Update installation procedure
Update installation procedure
due to change in common
installation procedure of
collectd plugins.
Bump pkgrevision.
2021-12-28 01:11:53 +00:00
nros
6b08aa66e0 Fix installation of collectd plugins
Fix installation of collectd plugins
by installing using libtool directly
instead of using the Makefile target.
2021-12-28 01:02:42 +00:00
schmonz
8b67a7cd92 Adjust previous use of LD_PRELOAD to fix Solaris 11 build, hoping it'll
fix the SmartOS bulk build (which gave similar errors, but which I
couldn't reproduce on my SmartOS or Tribblix systems).

Does not break:
- macOS 12.1
- NetBSD 9.2 and -current
- OpenBSD 7.0
- FreeBSD 13.0
- Tribblix m25.1
- CentOS 7 and 8
- Debian 9, 10, and 11
- Devuan 4
- Ubuntu 14, 16, 18, and 20
- Void
2021-12-27 23:25:08 +00:00
nia
c820bfc554 dupeguru: regenerate PLIST for newer sphinx 2021-12-27 10:18:25 +00:00
schmonz
9a617f20a4 Update to 2.11.0.1. From the changelog:
- Bugfixes.
2021-12-22 16:03:27 +00:00
gutteridge
5bddf2fb9d xfce4-mount-plugin: update to 1.1.5
No condensed change log for 1.1.5 available, summary is:

Bump version to 1.1.5 after German translation update and compilation
on FreeBSD 12.2

1.1.4
======
- Remove unused variable exclude_devicenames
- Remove obsolete panel version 4.9 check
- Remove checks for unused functions from configure.ac
- Include stdlib because malloc is used
- Spellfix. Add missing "e" to siz (size)
- Update URLs from goodies.x.o to docs.x.o (Bug #16168)
- Fix build with panel 4.15
- Make build less verbose
- Another change to the SVG icon file canvas size
- Updated svg image to have a larger canvas so that the panel can be
  resized up to 192 pixels size
- Added title to popup menu; even if it is not empty (Bug #14478)
- https URL instead of http
- Renamed improperly named member variable of main mountpoint display
  structure
- Display percentage on progress bar again (regression from port to
  Gtk3)
- Reformatted popup information with more columns and nicer alignment.
  (Bug #14670)
- Fix bug 13624 by not trying to save when closing the plugin, but
  already and only when closing the settings dialog
- Translation Updates:
  Albanian, Arabic, Asturian, Basque, Belarusian, Bulgarian,
  Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, Eastern Armenian, English (Australia), English (United
  Kingdom), Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Korean, Latvian, Lithuanian, Malay, Norwegian Bokm��l, Occitan (post
  1500), Panjabi (Punjabi), Polish, Portuguese, Portuguese (Brazil),
  Russian, Serbian, Slovak, Spanish, Swedish, Thai, Turkish, Ukrainian,
  Urdu, Urdu (Pakistan), Uyghur
2021-12-20 02:39:33 +00:00
pin
9ae633a9e5 sysutils/refi: update to 3.1.1
-Updated tests to use lazy_regex
-Updated deps
2021-12-19 16:40:20 +00:00
maya
0b0990191c sysutils/pciutils: no longer static, remove
BUILDLINK_DEPMETHOD.pciutils?= build

And pkgrevision bump consumers.

Pointed out by tsutsui in PR pkg/56553
2021-12-19 09:47:58 +00:00
leot
15ecedb4f2 podman: Update to 3.4.4
Changes:
[Bugfixes, misc and API changes were omitted due taking too much space and
probably not so interesting]

3.4.4
=====
3.4.4 is a bugfixes release.

3.4.3
=====
Security
  * This release addresses CVE-2021-4024, where the podman machine command
    opened the gvproxy API (used to forward ports to podman machine VMs) to the
    public internet on port 7777.
  * This release addresses CVE-2021-41190, where incomplete specification of
    behavior regarding image manifests could lead to inconsistent decoding on
    different clients.

Features
--------
  * The --secret type=mount option to podman create and podman run supports a
    new option, target=, which specifies where in the container the secret will
    be mounted (#12287).

Several misc, bugfixes and API changes.

3.4.2
=====
3.4.2 is a bugfixes release.

3.4.1
=====
3.4.1 is a misc and bugfixes release.

3.4.0
=====
Features
--------
  * Pods now support init containers! Init containers are containers which run
    before the rest of the pod starts. There are two types of init containers:
    "always", which always run before the pod is started, and "once", which
    only run the first time the pod starts and are subsequently removed. They
    can be added using the podman create command's --init-ctr option.
  * Support for init containers has also been added to podman play kube and
    podman generate kube - init containers contained in Kubernetes YAML will be
    created as Podman init containers, and YAML generated by Podman will
    include any init containers created.
  * The podman play kube command now supports building images. If the --build
    option is given and a directory with the name of the specified image exists
    in the current working directory and contains a valid Containerfile or
    Dockerfile, the image will be built and used for the container.
  * The podman play kube command now supports a new option, --down, which
    removes any pods and containers created by the given Kubernetes YAML.
  * The podman generate kube command now generates annotations for SELinux
    mount options on volume (:z and :Z) that are respected by the podman play
    kube command.
  * A new command has been added, podman pod logs, to return logs for all
    containers in a pod at the same time.
  * Two new commands have been added, podman volume export (to export a volume
    to a tar file) and podman volume import) (to populate a volume from a given
    tar file).
  * The podman auto-update command now supports simple rollbacks. If a
    container fails to start after an automatic update, it will be rolled back
    to the previous image and restarted again.
  * Pods now share their user namespace by default, and the podman pod create
    command now supports the --userns option. This allows rootless pods to be
    created with the --userns=keep-id option.
  * The podman pod ps command now supports a new filter with its --filter
    option, until, which returns pods created before a given timestamp.
  * The podman image scp command has been added. This command allows images to
    be transferred between different hosts.
  * The podman stats command supports a new option, --interval, to specify the
    amount of time before the information is refreshed.
  * The podman inspect command now includes ports exposed (but not published)
    by containers (e.g. ports from --expose when --publish-all is not
    specified).
  * The podman inspect command now has a new boolean value, Checkpointed, which
    indicates that a container was stopped as a result of a podman container
    checkpoint operation.
  * Volumes created by podman volume create now support setting quotas when run
    atop XFS. The size and inode options allow the maximum size and maximum
    number of inodes consumed by a volume to be limited.
  * The podman info command now outputs information on what log drivers,
    network drivers, and volume plugins are available for use (#11265).
  * The podman info command now outputs the current log driver in use, and the
    variant and codename of the distribution in use.
  * The parameters of the VM created by podman machine init (amount of disk
    space, memory, CPUs) can now be set in containers.conf.
  * The podman machine ls command now shows additional information (CPUs,
    memory, disk size) about VMs managed by podman machine.
  * The podman ps command now includes healthcheck status in container state
    for containers that have healthchecks (#11527).

Changes
-------
  * The podman build command has a new alias, podman buildx, to improve
    compatibility with Docker. We have already added support for many docker
    buildx flags to podman build and aim to continue to do so.
  * Cases where Podman is run without a user session or a writable temporary
    files directory will now produce better error messages.
  * The default log driver has been changed from file to journald. The file
    driver did not properly support log rotation, so this should lead to a
    better experience. If journald is not available on the system, Podman will
    automatically revert to the file.
  * Podman no longer depends on ip for removing networks (#11403).
  * The deprecated --macvlan flag to podman network create now warns when it is
    used. It will be removed entirely in the Podman 4.0 release.
  * The podman machine start command now prints a message when the VM is
    successfully started.
  * The podman stats command can now be used on containers that are paused.
  * The podman unshare command will now return the exit code of the command
    that was run in the user namespace (assuming the command was successfully
    run).
  * Successful healthchecks will no longer add a healthy line to the system log
    to reduce log spam.
  * As a temporary workaround for a lack of shortname prompts in the Podman
    remote client, VMs created by podman machine now default to only using the
    docker.io registry.

Several misc, bugfixes and API changes.
2021-12-18 18:11:48 +00:00
prlw1
d4338605ce Add p5-Sys-MemInfo version 0.99
This module return the total amount of free and used physical memory
in bytes in totalmem and freemem variables.

This module has been tested on Linux 3.13.0, UnixWare 7.1.2, AIX5,
OpenBSD 3.8, NetBSD 2.0.2, FreBSD 5.4, HPUX11, Solaris 9, Tru64
5.1, Irix 6.5, MacOS X 10.2 and Windows XP.

It should work on FreeBSD 4 and Windows 9X/ME/NT/200X/Vista.
2021-12-18 15:07:01 +00:00
schmonz
0af23c14b9 On some Linux systems with a sufficiently old sysutils/file installed,
we get this error, followed by a bunch of warnings attempting to compile
magic anyway:

"lt-file: Compiled magic version [540] does not match with shared library magic version [538]"

Instead of using whatever libmagic might already be installed, use the
just-built libmagic. (There's probably a less hacky way.)
2021-12-18 12:07:50 +00:00
gutteridge
c72986e239 xfce4-fsguard-plugin: update to 1.1.2
1.1.2
======
- Add gitignore
- Fix "ISO C90 forbids mixed declarations and code"
- Modernize the configure.ac.in file
- Remove GSourceFunc casts
- Replace obsolete xfce_create_panel_button usage
- Adds new README.md updates AM_INIT_AUTOMAKE
- Add basic GitLab pipeline
- Improve spacing in settings dialog (Bug #14665)
- Update URLs from goodies.x.o to docs.x.o (Bug #16163)
- Translation Updates:
  Albanian, Belarusian, Bulgarian, Eastern Armenian, English (Canada),
  Estonian, Finnish, Galician, Hebrew, Interlingue, Slovak, Slovenian,
  Spanish, Turkish, Uyghur
2021-12-18 02:11:04 +00:00
maya
fc110411fa pciutils: build libpci.so as a dynamic library. needed by firefox.
bump pkgrevision, hopefully doesn't break too many things...
2021-12-17 20:07:24 +00:00
pin
c3bf1e0a0e sysutils/broot: update to 1.7.5
-Make the "clipboard" feature non default again, as it proves to make
 compilation harder on some platform.
 You can still try the compilation with cargo install broot
 --features "clipboard"

The released archive on GitHub or on my server are still compiled with the
"clipboard" feature when available.
2021-12-17 06:46:56 +00:00
gutteridge
ae0bfba448 xfce4-diskperf-plugin: update to 2.6.3
2.6.3 (2020/12/21):
------------------
- Fix build with panel 4.15+
- Fix missing-prototypes
- Remove GSourceFunc casts
- Add basic GitLab pipeline
- Update URLs from goodies.x.o to docs.x.o (Bug #16160)
- Update .gitignore
- Make build less verbose
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Belarusian, Chinese (Taiwan),
  Croatian, Eastern Armenian, English (Canada), English (United
  Kingdom), Galician, Greek, Hebrew, Indonesian, Korean, Latvian,
  Occitan (post 1500), Panjabi (Punjabi), Polish, Portuguese (Brazil),
  Slovak, Slovenian, Spanish, Swedish, Turkish, Urdu, Urdu (Pakistan),
  Uyghur
2021-12-17 00:41:59 +00:00
gutteridge
8a36e4670e xfce4-cpugraph-plugin: remove patch missed in previous commit 2021-12-16 01:01:01 +00:00
gutteridge
58ad5d69de xfce4-cpugraph-plugin: update to 1.2.5
Change log:

1.2.5 (2021-10-09)
=====
- Lower peak memory consumption in case of a long CPU load history
- Fix OpenBSD codepath (issue #28)
- Initially hide run-in-terminal checkbox if the command field is empty (#23)
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian,
  Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, Eastern Armenian, English (Australia), English (United
  Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål, Occitan (post
  1500), Polish, Portuguese, Portuguese (Brazil), Russian, Serbian,
  Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur

1.2.4 (2021-10-01)
=====
- Update README
- New icons
- Lower the number of false positives in sub-optimal SMT scheduling
- Account for irregular core IDs in CPU topology (issue #25)
- Increase type-safety of the return types of callback functions
- Fix CPU topology initialization memory leak
- Replace author nicknames with real names
- Update and sort the list of authors
- Use C++ λ-functions for widget signal handlers
- Slightly improved CPU count detection in case some CPUs are offline
- Bump requirements to version 4.14
- Enable close button translations (issue #24)
- Fix compiler warnings on FreeBSD and SUN
- Bump properties dialog to Xfce 4.14 API
- Avoid FreeBSD "string.h" include file issue
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian,
  Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian,
  Czech, Danish, Dutch, Eastern Armenian, English (Australia), English
  (United Kingdom), Estonian, Finnish, French, Galician, German, Greek,
  Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian,
  Japanese, Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål,
  Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil),
  Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish,
  Ukrainian, Uyghur

1.2.3 (2021-02-23)
=====
- Add support for per-core history graphs
- Enable user-defined spacing between per-core history graphs
- Use an exponential function when painting the grid in non-linear mode
- Improve performance of current CPU usage bars
- Improve LED rendering performance
- Improve grid rendering performance
- Enumerate CPU cores from 0 (instead of 1) to match Linux command-line
  tools
- Ensure that the bars and the history cannot be disabled at the same
  time
- Slightly better handling of colors
- Translation Updates:
  French, Slovenian

1.2.2 (2021-02-14)
=====
- Record CPU load data even if the chart is currently disabled
- Validate size against minimum and maximum allowed values
- Change semantics of the non-linear time-scale mode
- Fix corner cases when rendering the grid and LED modes
- Show SMT stats tooltip only when needed
- Translation Updates:
  Catalan, Greek

1.2.1 (2021-01-30)
=====
- Repaint CPU load history after the user changes the update interval
- Properly initialize current usage bars
- Scale CPU load history chart according to the current update interval
- Store history in a circular buffer
- Add timestamps to CPU load history
- Update copyright year
- Update configuration files
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian,
  Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, Eastern Armenian, English (Australia), English (United
  Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål, Occitan (post
  1500), Polish, Portuguese, Portuguese (Brazil), Russian, Serbian,
  Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur

1.2.0 (2020-12-28)
=====
- Highlighting of suboptimal thread placement on SMT CPUs
- Separate the associated command from the rest of config options
- Better resilience to inconsistent OS CPU utilization data
- Display 'Show bars' in the same tab as 'Bars color'
- Clamp CPU usage values to zero if they are below a threshold
- Cleanup NEWS file
- Use larger unscaled icon in about dialog
- Add small explanation about default commands
- Dynamic default command lookup
- Fix RGBA string memory leak
- Fix an invalid memory reference
- Link sensitivity of labels to sensitivity of color buttons
- Allow setting colors with alpha
- Revalidate the event box after showing widgets
- Use floating-point instead of fixed-point CPU load values
- Paint CPU usage if it is 1 pixel tall
- Lower CPU usage when rendering bars
- Update URLs
- Improve performance of CPU data parsing
- Read CPU data correctly if some CPUs are offline (!7)
- Paint CPU bars in left-to-right order
- Separate the bars from the history frame
- Fix old-style function warnings
- Fix clang and gcc warnings
- Also offer a 3 second update interval (#9)
- Update URLs from goodies.x.o to docs.x.o (Bug #16157)
- Allow compilation with panel 4.15
- Fix typo breaking build on NetBSD (Bug #15794)
- Disable frame and make background transparent by default
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian,
  Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, Eastern Armenian, English (Australia), English (United
  Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål,
  Occitan (post 1500), Panjabi (Punjabi), Polish, Portuguese,
  Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian,
  Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan),
  Uyghur, Vietnamese
2021-12-16 00:58:01 +00:00
pin
a6004f39ef sysutils/macchina: update to 6.0.1
v6.0.1
- Use the correct section numbering for our manpages.

v6.0.0
macchina v6.0, codename "Gallium"

We hope you'll enjoy this release as much as we did preparing it ❤️

If you want to give back to macchina, tell your friends about it :)

BREAKING CHANGES

- `MACCHINA_CONF` has been deprecated. The reason being that it accomplishes
  the same thing as `--config`. (#200)
- In themes, the `hide_bar_delimiters` option has been deprecated. We've
  renamed it to `hide_delimiters` and moved it to the [bar] section. (#200)
- In themes, the `palette` option has been deprecated. There's now an entire
  section dedicated to the palette component named [palette]. (#200)

Bugfixes

- The command-line flag named `--short-uptime` has been renamed to
  `--long-uptime`, the option in your configuration remains the same. (#200)
- libmacchina: The desktop environment readout now prefers
  `XDG_CURRENT_DESKTOP`, with `DESKTOP_SESSION` as a fallback. (#199)
- A spacing bug that results in uneven space between the left and right side of
  the separator in certain situations has been fixed. (#200)
- A spacing bug that results in more space being used than specified when the
  separator is invisible has been fixed. (#200)
- Every option in theme files is now entirely optional, you will no longer get
  into trouble with cryptic error messages when forgetting to set some options.
  (#200)
- macchina should hopefully be able to locate macOS users' themes now. (#200)

Features

- We've added back the option to display your physical or logical core count.
  (#200)
- There's two new manpages! One for configuration and another for
  customization. (#200)
- macchina now searches through more locations for its themes, like
  `/usr/share`. (#200)
- There's now a much nicer error reporting for themes. (#208)

You can now:
- use indexed and hexadecimal colors for any option that accepts a color.
  (#193)
- tell macchina what pool of colors to use in the randomization process. (#200)
- specify the kind of border you want the box to use. (#200)
- specify the glyph used by the palette (#200).

Other nice things

- `--list-themes` gets a new look, and it tells which theme is active now as
  well.
- Some under-the-hood changes and refactoring work that very slightly improve
  performance and make the codebase nicer to navigate.
- macchina and libmacchina's dependencies have been bumped, so we're mostly
  up-to-date.
- libmacchina: Gentoo users no longer need `portage-utils` for the package
  readout to report their package count.

Big thanks to

- [uttarayan21](https://github.com/uttarayan21) for introducing 10x better
  error reporting, and bringing a whole set of new colors to macchina.
- [0323pin](https://github.com/0323pin) for contributing a sexy-looking theme
  and testing out this version on NetBSD.
- [FantasyTeddy](https://github.com/FantasyTeddy) for helping us resolve linter
  warnings for various platforms.
2021-12-14 22:16:12 +00:00
taca
cc36e66ae6 sysutils/puppet: update to 7.13.1
Puppet 7.13.1 (2021-12-09)

Enhancements

ENC enforced environment bypass

Changed the priority of the --environment option by skipping the
classification whenever the flag is specified.  This allows the user to
bypass the ENC enforced environment with the CLI option.  PUP-7479

Resolved issues

Puppet::FileSystem.chmod does not validate its arguments
Puppet::FileSystem.chmod now validates its arguments like other
methods.  PUP-11345
Warning: #<Puppet::Transaction::Persistence after upgrading to Puppet agent
6.25.0

Fixes a regression introduced in 6.25.0 and 7.10.0 that caused a
Puppet::Transaction::Persistence warning during each agent run. PUP-11321

User resource tries to create rather than modify users created by a utility

This release moves the ssh_authorized_key resource's creation to the end of
the user type flow, after all user properties and parameters were resolved,
to avoid order dependency errors.  PUP-11320

Puppet code merger using incorrect command

Reduces memory usage when parsing manifests. PUP-11318

Failure when using the names "apply" and "plan" within an apply() block in a
plan

The names "apply" and "plan" can now be used as resource parameter names in
all cases.  Previously, using them within an apply() block in a plan would
fail.  PUP-11315

Puppet attempts to execute directories from /etc/init.d/

Prevents Puppet from considering directories from /etc/init.d/ as
services.  PUP-11313

Puppet creates excessive Pathname instances

Reduces the number of Pathname allocations when parsing Puppet manifests.
PUP-11312

Pathname.absolute? uses excessive memory

Backported Ruby patch to Pathname.absolute? to reduce memory usage.
PUP-11311

High memory consumption from lib/puppet/pops/parser/lexer2.rb

Reduced lexer2 memory usage.  PUP-11236

versioncmp() treats 11.0 as greater than 11

versioncmp() now strips redundant numbers.  PUP-11235

puppet lookup --facts {filename} fails if filename does not contain a dot

Before this release, puppet lookup --facts {filename} failed early when the
filename given did not contain a dot.  This fix removes the early extensions
check and adds a fallback instead: tries both formats (JSON then YAML) to
read the given facts file when its path doesn't end with any of the expected
extensions (yaml/yml/json).  Otherwise, it follows previous implementation
and respects the given extension.  PUP-11204

Facts provided in a file cannot be used for classification

Fixed a bug where facts provided in a file were not being merged with the
facts used for classification.  This is because Puppet collected and merged
the said facts after the classification happened.  To fix this, we ensured
that Puppet resolves the facts being used for classification before the node
request.  PUP-10435

Inconsistent handling of trusted facts in the lookup CLI

When using puppet lookup with --facts, if the facts file overrides any of
hostname, domain, fqdn, clientcert, then it must override all of them.
Also, if a value for certname is provided in a fact file for the lookup
application, use it when creating the trusted information object.  This
makes it possible to override trusted.certname for classification.  PUP-8220

Lookup ignores environment from the classifier when using a rule with
trusted facts

Fixed an issue where trusted facts could not be used as rules for
classification.  This was fixed by gathering the trusted facts from the
PuppetDB query result, and overriding the trusted facts context.  PUP-8094

Misleading results when using --node flag in puppet lookup

Fixed an issue where puppet lookup would result in misleading results when
using the --node flag.  This happened because there can be cases where the
target node does not have any facts cached.  To avoid this, the fix
implemented checks for the node facts/facts given in a fact file, and if it
doesn't find any it raises an error.  PUP-7362

Files starting with "~" in recursive directories are evaluated as usernames

Puppet can now manage files whose names start with tilde "~" characters.
PUP-5800

Failed to generate additional resources using 'eval_generate': Cannot manage
files of type socket

This release allows Puppet to retrieve attributes for fifo and socket files
and manage them when the given manifest has a file resource which is
recursing over a given path.  PUP-4045
2021-12-14 14:47:28 +00:00
taca
2ad1190932 sysutils/ruby-facter: update to 4.2.6
4.2.6 (2021-12-07)

* (FACT-3077) Fix inconsistencies in Facter output
* (FACT-3068) Force encoding of timezone fact output on Windows
* (FACT-3081) Replace invalid UTF characters in dmi.rb
* (FACT-3058) Add windows_display_version legacy fact
* (FACT-3084) update tests for Windows 2022
* (FACT-3087) restore Facter3's value of 'os.name' for VirtuozzoLinux
* (FACT-3083) add disks serial number and wwid to the disks fact
* (FACT-3079) Caching custom facts not working propperly
* (FACT-3094) Aix mountpoint resolver couldn't resolve nfs
2021-12-14 14:32:57 +00:00
nia
36a913d035 virt-viewer: Add missing dependency on gettext tools 2021-12-13 13:23:50 +00:00
nia
57cf643238 vifm: fix PLIST on Darwin 2021-12-13 13:15:41 +00:00
pin
e4e7178910 sysutils/xplr: update to 0.17.0
Changes & fixes
-Deprecated app.directory_buffer, app.history, and app.last_modes in
 the custom dynamic layout renderer context.
 As of now, there's no way to access these fields in dynamic layouts. While
 app.history and app.last_modes can be re-added upon request
 (with justification), app.directory_buffer has been deprecated for good.
 However, there's no change in the CallLua* context.
-As a result, change directory performance has been restored.
-Set xplr.config.general.hide_remaps_in_help_menu to true to hide the remaps in
 help menu.
-None will be serialized to nil in Lua.
-LuaEval can now return a function that will be called with the Lua Context
 argument. Refer to the Full List of Messages doc for example.
2021-12-12 22:19:12 +00:00
gutteridge
dec380f61f xfce4-gvfs-mount-plugin: remove, EOL and doesn't build
(This wasn't included in the xfce4-extras meta-pkg, and so didn't turn
up in my bulk build testing for the Xfce 4.16 update.)
2021-12-12 16:30:55 +00:00
bacon
71afcdb6d5 sysutils/auto-admin: Update to 0.7.8
New scripts factored out from desktop-installer
Several minor bug fixes and enhancements

Changes: https://github.com/outpaddling/auto-admin/tags
2021-12-12 15:09:59 +00:00
taca
d57560a549 sysutils/puppet: update to 7.12.1
Fixes a few security problems.

* CVE-2021-27025 - Silent Configuration Failure
* CVE-2021-27023 - Unsafe HTTP Redirect.

Other changes are too many to write here, please refer
<https://puppet.com/docs/puppet/7/release_notes_puppet.html>.
2021-12-12 13:38:01 +00:00
taca
a6b70623f6 sysutils/ruby-childprocess: update to 4.1.0
4.1.0 (2021-06-08)

* #170: Update gem homepage to use https://
* #177: Add ARM64-macos support

4.0.0 (2020-06-18)

* #167: Fix detach behavior on Windows
* #168: Drop support for Ruby 2.3
2021-12-12 13:19:44 +00:00
taca
4c10cf2847 sysutils/ruby-chef-zero: update to 15.0.11
15.0.11 (2021-10-17)

Merged Pull Requests

* Skipping response header test for pedant #317 (vinay-satish)

* Updating the policy_revision_endpoint to add policy_group_list #320
  (vinay-satish)
2021-12-12 13:18:14 +00:00
taca
632ef9c9b7 sysutils/ruby-inspec-core: update to 4.50.3
4.50.3 (2021-11-19)

New Features

* Add Windows support for http resource. #5697 (Vasu1105)

Bug Fixes

* Updates habitat test for windows to match install logic for linux #5718
  (collinmcneese)

Merged Pull Requests

* Move cookstyle dep from inspec gemspec to inspec-core, add rake #5722
  (clintoncwolfe)
* Disable CookStyle integration on Windows #5724 (clintoncwolfe)
* Move rake and cookstyle deps out of inspec core gemspec #5732
  (clintoncwolfe)
* Remove license note + update resource count in main docs page #5639
  (tas50)

4.49.0 (2021-10-27)

New Features

*  Add support for Cassandra DB #5683 (Nik08)

Merged Pull Requests

* Replaced /main/ from /master/ #5678 (dishanktiwari2501)
* Add back Ubuntu 16.04 packages + testing #5689 (tas50)
* Update OpenSSL on macOS to 1.1.1l #5687 (tas50)
* Update the unit test files to use latest versions of OS rather than the
  older. #5681 (Vasu1105)
* Improvements to the inspec.yml docs #5679 (tas50)
* Update GCS Storage class list #5676 (pradeepbhadani)
* Group & User Resources - Resolve name case-sensitivity issue for windows
  #5667 (Nik08)
* Renamed Inspec DSL to Inspec Language #5694 (dishanktiwari2501)
* Fix google_container_node_pool.md #5696 (pradeepbhadani)
* Enable repeatable builds by bundling Gemfile.lock #5688 (tas50)
* Oracle db session resource fix - when invoking query using os user and db
  role #5702 (Nik08)
* Fix Oracle db session resource issues #5706 (Nik08)
* InSpec Waivers: --filter-waived-controls #5327 (Schwad)
* Fix windows_firewall resource fails to validate more than 1 rule depending
  on how it's executed #5704 (Vasu1105)
* Integrate InSpec check with Cookstyle #5618 (Nik08)

4.46.13 (2021-09-30)

New Features

* Add support for Sybase databases #5561 (clintoncwolfe)
* Add ibmdb2_conf and ibmdb2_session resource #5614 (Vasu1105)
* adds chrony_conf InSpec resource #5589 (collinmcneese)

Enhancements

* Add csv without headers support in csv resource #5665 (Vasu1105)
* Add option in postgres_session resource to establish socket connection
  #5664 (Nik08)

Bug Fixes

* Fix main in expeditor script #5669 (kagarmoe)
* Fix --tags filter for dependent profiles #5657 (Nik08)

Merged Pull Requests

* Add labeler workflow with docs label #5655 (IanMadd)
* Docs edits #5654 (IanMadd)
* Fix branch name in docs makefile #5660 (IanMadd)
* Update inspec check docs for --format option #5617 (Vasu1105)
* Add support for Mssql Conf resource #5574 (Nik08)
* Add support for Oracle Configuration Resources (Oracle Db Conf & Oracle
  Listener Conf) #5573 (Nik08)
* Added missing cli commands in cli doc #5634 (Nik08)
* Fix google_project_alert_policy Examples in the docs #5426 (wmetaw)
* Update code to remove ruby 2.4 support #5645 (Vasu1105)
* Minor docs fixes. #5662 (IanMadd)
* Add rocky and almalinux to service resource #5604 (sspans-sbp)
* Change the deprecation warning to mention inputs #5668 (damacus)
* Build packages for debian 11, macos 12, windows 11/2022 #5675 (tas50)
* Fix --controls option was not working for dependent profile #5656
  (Vasu1105)
* Fix opa_cli and opa_api resource unable to verify empty result {} #5671
  (Vasu1105)
2021-12-12 13:16:23 +00:00
taca
9bec77b87a sysutils/ruby-chef: update to 17.8.25
Changes are too many write here.  Please refer
<https://github.com/chef/chef/blob/v17.8.25/CHANGELOG.md> in detail.
2021-12-12 13:07:02 +00:00
adam
54663aa834 py-xattr: updated to 0.9.9
Version 0.9.9
* Fix regression in xattr console script
* Add -c clear option
* Add note about Linux namespace requirement
2021-12-11 19:42:40 +00:00
taca
7e32d29b69 sysutils/ruby-specinfra
2.83.0 (2021-10-21)

* Remove fallback from checking services to checking processes

2.83.1 (2021-10-26)

* Use 'onestatus' to check if services are running on FreeBSD
* Remove Ruby 1.9 from CI and add 2.7 and 3.0
2021-12-11 14:22:28 +00:00
taca
1c31417dfa sysutils/ruby-facter: update to 4.2.5
4.2.4 (2021-09-13)

* (FACT-3062) Remove snyk test on PR
* (FACT-3060) Update mountpoints regex
* (FACT-3062) Fix snyk_monitor workflow

4.2.5 (2021-09-29)

* (FACT-3059) Fix AIX reporting odd number of arguments for Hash
* (FACT-3057) Downcase environment facts
* (FACT-3063) OS 11 arm64 processors shifted output
* Revert "(maint) Skip os facts in acceptance on Debian 11 - 4.x"
* (FACT-3073) Fix timeout option processing for
  Facter::Core::Execution.execute
* (FACT-3073) Emit a warning when unsupported options are used
* (FACT-3073) Add unit tests for options processing
* (FACT-3073) Improve documentation formatting
* (FACT-3047) --http_debug cli shows HTTP debug logs in Facter 4
* (FACT-3067) Fix resolution of custom facts that partial match legacy fact
  names
* (FACT-2955) Only use the available processors (4.x)
* (FACT-3075) Fix the os.release fact on Windows 2022
* (FACT-3058) Fix os.windows.release_id and add `os.windows.display_version`
  fact
2021-12-11 14:19:31 +00:00
gutteridge
4a05250af3 xfce4-systemload-plugin: update to 1.3.1
Change log:

1.3.1 (2021-03-22)
=====
- Update README.md
- Update and sort the list of authors
- Add a simple network bandwidth monitor (uses libgtop as a fallback)
- Remove 4-valued history
- Fix initial progress bar value
- Fix system-monitor-command setting (Fixes #15)
- Distinguish uptime from the appearance of a digital real-time clock
- Replace "Options" with "Label" in the properties dialog
- Finish porting to xfconf
- Update docs URL
- Code cleanups
- Translation Updates:
  Bulgarian, Chinese (China), Chinese (Taiwan), Hebrew, Italian,
  Japanese, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil),
  Slovak, Spanish, Swedish

1.3.0 (2021-03-10)
=====
- Port to xfconf
- Add new icons and switch to rDNS naming
- Add Help button to properties dialog
- Fix compilation warnings
- autoconf: Some updates
- Update `.gitignore`
- configure.ac: use AC_PROG_CC_C99
- Translation Updates:
  Belarusian, Bulgarian, English (Canada), Hungarian, Russian, Turkish,
  Ukrainian

1.2.4 (2020/12/21)
------------------
- Fix missing-prototypes
- Remove GSourceFunc casts
- Fix the properties dialog and a hidden memory corruption
- Avoid repainting bars if there are no visual changes
- Update copyright year
- Update URLs
- Create README.md and update configure.ac.in
- Add basic GitLab pipeline
- Update URLs from goodies.x.o to docs.x.o (Bug #16178)
- Allow compilation with panel 4.15
- Translation Updates:
  Albanian, Arabic, Basque, Belarusian, Bulgarian, Catalan, Chinese
  (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern
  Armenian, English (Australia), English (Canada), English (United
  Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Occitan (post
  1500), Polish, Portuguese, Portuguese (Brazil), Russian, Serbian,
  Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu,
  Urdu (Pakistan), Uyghur
2021-12-11 14:10:05 +00:00
gutteridge
3f8242aa76 xfce4-netload-plugin: update to 1.4.0
Change log:

1.4.0
======
- Add new icons and switch to rDNS naming
- Add "About" dialog
- Add help button to properties dialog
- Improve progressbar look
- Update URLs from goodies.x.o to docs.x.o (Bug #16170)
- Fix compilation warnings
- autoconf: AM_CONFIG_HEADER -> AC_CONFIG_HEADERS
- Update `.gitignore`
- Fix missing-prototypes
- Remove GSourceFunc casts
- Populate a combo box with known network interfaces
- remove unused wormulon files
- Move to common m4 versioning macros
- Fix type for media_list on OpenBSD
- Add basic GitLab pipeline
- Translation Updates:
  Albanian, Basque, Belarusian, Chinese (Taiwan), Danish, Eastern
  Armenian, English (Canada), Finnish, Galician, Hebrew, Hungarian,
  Interlingue, Russian, Slovak, Slovenian, Spanish, Swedish, Turkish,
  Uyghur
2021-12-11 13:44:44 +00:00
pin
13bfe780c2 sysutils/felix: update to 0.2.12
Fix: Enable to delete broken symlink.
2021-12-10 17:19:49 +00:00
gutteridge
567430bbd1 xfce4-taskmanager: update to 1.4.2
Change log:

1.4.2
======
- Ellipsize memory and swap labels (Fixes #32)

1.4.1
======
- Replace AC_PROG_LIBTOOL with IT_PROG_INTLTOOL
- Simplify "query-tooltip" signal handler
- statusbar: Use better color that works well with both light and dark
  themes (!17)
- Fix tooltip markdown issue
- Create notification area icon only if needed (Bug #25)

1.4.0
======
- Drop Gtk2 support
- Add support for MemAvailable (!10)
- statusbar: Use color with better contrast for dark themes
- Fix: some times processes are not removed from the list
- Add tooltip to show full command
- Add application icon (Issue #23)
- Replace appfinder icon with edit-find (Fixes #23)
- Replace old icon name with utilities-terminal #23
- Replace old icon name with system-run #23
- Always show memory usage in bytes and percent (Fixes #24)
- Improve comment in desktop file (Fixes #20)
- Add basic GitLab pipeline
- Add README.md
- Update libwnck and xmu deps in README
- Remove GKSU leftovers
- Remove unused url_hook_about_dialog function
- Replace deprecated gtk_menu_popup
- Fix GTimeVal deprecation warning
- Fix indentation
- Update .gitignore
- AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS
- Bump minimal xdt version
- Bug #16717: Move from exo-csource to xdt-csource
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Asturian, Basque, Belarusian,
  Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
  (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English
  (Australia), English (United Kingdom), Estonian, Finnish, French,
  Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian,
  Interlingue, Italian, Japanese, Kazakh, Korean, Lithuanian, Malay,
  Norwegian Bokmål, Occitan (post 1500), Polish, Portuguese,
  Portuguese (Brazil), Russian, Serbian, Slovak, Spanish, Swedish,
  Telugu, Thai, Turkish, Ukrainian, Uyghur
2021-12-10 00:00:02 +00:00
bsiegert
169637478c Revbump all Go packages after go117 update 2021-12-09 17:50:09 +00:00
hauke
2b0d65f3f6 Add suse*_locale dependency, since dsmc is complaining about it. 2021-12-08 16:41:09 +00:00
adam
d66dcbede5 Forget about audio/gnome-vfs-cdda 2021-12-08 16:08:48 +00:00
adam
b6d9bd86bc revbump for icu and libffi 2021-12-08 16:01:42 +00:00
adam
6f6d75e159 open-vm-tools: updated to 11.3.5
open-vm-tools 11.3.5

For issues resolved in this release, see Resolved Issues section.

Added a configurable logging capability to the network script.

The network script has been updated to:

use vmware-toolbox-cmd to query any network logging configuration from the tools.conf file.
use vmtoolsd --cmd "log ..." to log a message to the vmx logfile when the logging handler is configured to "vmx" or when the logfile is full or is not writeable.
The hgfsmounter (mount.vmhgfs) command has been removed from open-vm-tools.

The hgfsmounter (mount.vmhgfs) command is no longer used in Linux open-vm-tools. It has been replaced by hgfs-fuse. Therefore, removing all references to the hgfsmounter in Linux builds.


Open-vm-tools 11.3.0

A small command line tool, vmwgfxctrl, has been added to open-vm-tools for Linux that can be used to control various aspects of the vmwgfx Linux kernel module. Currently it can both display and set the current topology of the vmwgfx kernel driver. It is useful when trying to configure custom resolutions on recent Linux distributions, including multi-monitor setups.
A command line tool, vmware-alias-import, has been added to open-vm-tools that can be used to import vgauth config data and apply it to the running vgauth service.
2021-12-07 18:25:45 +00:00
adam
e3980909aa ansible-base: updated to 2.10.16
v2.10.16

Bugfixes
- cli defaults for ssh args set to None as '' was bypassing normal default.
2021-12-07 09:50:16 +00:00
wiz
5b60526d33 py-collectd: fix package 2021-12-06 14:54:32 +00:00
maya
39b298ed88 bsdec2-image-upload: update to 1.4.5
git shortlog:
Brad Davis (1):
      Fix typo

Colin Percival (37):
      Allow CERTFILE to be specified at compile-time
      Merge pull request #8 from natpicone/fix-region-upload
      Fix build: MAN=, not NO_MAN=yes.
      Add Architecture field to SNS notifications
      Split the concept of "we're publishing AMIs".
      Implement --allregions and -publicamis.
      Fix TLS certificate name checking
      Add support for signing Amazon SSM API calls.
      Add --ssm-name <path> option
      aws_sign.[ch] are now part of libcperciva
      Refactor snapshot creation.
      Use aws_readkeys from libcperciva
      Use libcperciva getopt.
      Introduce sslreq2, which sends headers + payload
      Add --vhd option.
      Add instructions for AWS account setup
      This will be version 1.3.0.
      Support OpenSSL < 1.1.1.
      Version and date bumps.
      Support > 10 GB disk images
      Use OpenSSL default root certificates by default.
      Ignore SIGPIPE globally.
      Don't map files MAP_NOCORE if that's not defined.
      Switch from BSD make to POSIX-compliant make
      Add casts betweeh char * and uint8_t *
      Add region to S3 hostname.
      Add <limits.h> for INT_MAX.
      Add compatibility with LibreSSL >= 2.9.
      Version and date bumps.
      Include region in presigned S3 URLs too
      Add --uefi option.
      sslreq: Don't leak socket
      sslreq: Clean up on error
      Bump version to 1.4.3.
      publish: Add @ISODATE@ substitution.
      Add -v option and autoinsert version/date
      Set DataType in SSM PutParameter request

Natalino Picone (1):
      fix region upload

Tassilo Philipp (1):
      Support LibreSSL 3.3.2 and later.
2021-12-05 18:34:17 +00:00
fox
a6f82780fb sysutils/py-Glances: Update to 3.2.4.2
Changes since 3.2.3.1:

===============
Version 3.2.4.1
===============

Bugs corrected:

    * Missing packaging dependency when using pip install #1955

===============
Version 3.2.4
===============

Bugs corrected:

    * Failure to start on Apple M1 Max #1939
    * Influxdb2 via SSL #1934
    * Update WebUI (security patch). Thanks to @notFloran.
    * Swith from black <> white theme with the '9' hotkey - Related to issue #976
    * Fix: Docker plugin - Invalid IO stats with Arch Linux #1945
    * Bug Fix: Docker plugin - Network stats not being displayed #1944
    * Fix Grafana CPU temperature panel #1954
    * is_disabled name fix #1949
    * Fix tipo in documentation #1932
    * distutils is deprecated in Python 3.10 #1923
    * Separate battery percentages #1920
    * Update docs and correct make docs-server target in Makefile

Enhancement requests:

    * Improve --issue by displaying the second update iteration and not the first one. More relevant
    * Improve --issue option with Python version and paths
    * Correct an issue on idle display
    * Refactor Mem + MemSwap Curse
    * Refactor CPU Curses code

Contributors for this version:
    * Nicolargo
    * RazCrimson
    * Floran Brutel
    * H4ckerxx44
    * Mohamad Mansour
    * Néfix Estrada
    * Zameer Manji
2021-12-05 11:46:40 +00:00
ryoon
a281dfaab0 cdrtools: Simplify SUBSTs for files/INSTALL.pkgsrc and replace LOCALBASE too 2021-12-03 17:45:34 +00:00
micha
7d72a57701 sysutils/cdrtools: Update to 3.02a10
Rebase to final Schily Tools release 2021-09-18.

Unknown changes because the package formerly based on separate cdrtools
releases (that are not available for recent versions).
2021-12-03 15:13:26 +00:00
micha
17ac3f2bc3 sysutils/xosview: Update to 1.23
Patch removed (merged upstream).

No changelog provided (refers to Github history).
2021-12-03 13:06:57 +00:00
pin
ca273d61c9 sysutils/broot: update to 1.7.4
-Fix the hex preview sometimes missing 1 or 2 characters in the right ASCII
 column
2021-12-03 08:28:34 +00:00
pho
8dc985aea8 Fix PLIST by not implicitly depending on gettext-tools 2021-12-02 17:59:05 +00:00
pho
da882c873f Fix PLIST by not implicitly depending on gettext-tools 2021-12-02 08:16:51 +00:00
gutteridge
9f70c9eacb xfce4-power-manager: fix distinfo, missed in previous commit 2021-12-01 03:03:12 +00:00
gutteridge
8d56154ba6 sysutils/Makefile: remove xfce4-quicklauncher-plugin 2021-11-30 17:05:40 +00:00