Commit graph

450317 commits

Author SHA1 Message Date
Martin Weinelt 25a9e5aef8
Merge pull request #213660 from qowoz/nix-zsh
nix-zsh-completions: 0.4.4 -> unstable-2023-01-30
2023-02-01 01:36:26 +00:00
Martin Weinelt 42d64a3c2e
Merge pull request #213829 from r-ryantm/auto-update/plantuml-server
plantuml-server: 1.2023.0 -> 1.2023.1
2023-02-01 01:35:56 +00:00
Martin Weinelt 0fa61bb224
Merge pull request #213811 from r-ryantm/auto-update/iam-policy-json-to-terraform
iam-policy-json-to-terraform: 1.8.1 -> 1.8.2
2023-02-01 01:35:49 +00:00
Martin Weinelt 506ee35ca0
Merge pull request #212771 from Melkor333/lbdbq-fix-ldaps
lbdb: Add IOSocketSSL Dependency for ldaps
2023-02-01 01:35:06 +00:00
Nick Cao 8479436b72
Merge pull request #213858 from r-ryantm/auto-update/protoc-gen-go-vtproto
protoc-gen-go-vtproto: 0.3.0 -> 0.4.0
2023-02-01 09:33:39 +08:00
Weijia Wang a1c4166735 dino: fix build on darwin 2023-02-01 02:24:04 +01:00
figsoda 7a0f0f0a01 ruff: 0.0.238 -> 0.0.239
Diff: https://github.com/charliermarsh/ruff/compare/v0.0.238...v0.0.239

Changelog: https://github.com/charliermarsh/ruff/releases/tag/v0.0.239
2023-01-31 20:23:08 -05:00
Matthew "strager" Glazar fad1382569 quick-lint-js: 2.9.0 -> 2.11.0 2023-01-31 17:14:30 -08:00
R. Ryantm ddf5ffa8cd sublime-merge-dev: 2081 -> 2082 2023-02-01 01:09:58 +00:00
Mario Rodas bdfc50a38d
Merge pull request #213823 from r-ryantm/auto-update/du-dust
du-dust: 0.8.3 -> 0.8.4
2023-01-31 19:54:23 -05:00
R. Ryantm b68532f4e6 python310Packages.openstacksdk: 0.103.0 -> 1.0.0 2023-02-01 00:46:54 +00:00
Weijia Wang 70a2347ac0
Merge pull request #210324 from strager/zig-0.10.0
zig: 0.9.1 -> 0.10.1
2023-02-01 01:42:24 +01:00
R. Ryantm 95d1f216b4 live555: 2022.12.01 -> 2023.01.19 2023-02-01 00:39:28 +00:00
Thomas Gerbet 4567743bcb busybox: 1.35.0 -> 1.36.0
Changes:
```
Aaro Koskinen:
      devmem: add 128-bit width

Bernhard Reutner-Fischer (3):
      kbuild: fix building sha256
      kbuild: Prefer -Oz over -Os
      seedrng: manually inline seed_rng

Brandon Maier:
      xxd: fix typo in trivial usage

Dario Binacchi (2):
      fbset: abort on not handled options
      fbset: support setting pixel clock rate

David Leonard:
      tsort: new applet

Denys Vlasenko:
      Makefile.flags: add resolv to LDLIBS for linux compilers too (not only gnu ones)
      build system: detect if build host has no bzip2
      scripts/echo.c: fix NUL handling in "abc\0 def"
      libbb/loop: fix compile failure (name collision)
      libbb/loop: optionally use ioctl(LOOP_CONFIGURE) to set up loopdevs
      libbb/loop: restore the correct return value of set_loop()
      libbb/sha1: add config-selectable fully unrolled version, closes 14391
      libbb/sha1: add config-selectable partially unrolled version
      libbb/sha1: assembly versions for x86
      libbb/sha1: optional x86 hardware accelerated hashing
      libbb/sha256: optional x86 hardware accelerated hashing
      libbb: change xstrndup, xmemdup to take size_t as size parameter
      libbb: factor out fflush_stdout_and_exit(EXIT_SUCCESS)
      libbb: fflush_stdout_and_exit(0) still exits with _error_ (not 0!) if fflush fails
      libbb: fix fallout from nth_string() robustification, closes 14726
      libbb: introduce and use chdir_or_warn()
      libbb: invert the meaning of SETUP_ENV_NO_CHDIR -> SETUP_ENV_CHDIR
      tls: P256: remove NOP macro sp_256_norm_8()
      tls: include signature_algorithms extension in client hello message
      examples/var_service/dhcp_if: make helper scripts more talkative
      testsuite/mount.tests: accomodate umount failure seen on 5.18.0
      testsuite/sha1sum.tests: fix false positive failure
      shell: add comments about SIGINT-related problems
      shell: fix compile failures in some configs
      ash,hush: fix handling of SIGINT while waiting for interactive input
      ash: ^C with SIG_INGed SIGINT should not exit the shell
      ash: do not truncate failed tilde expansion on unknown user names
      ash: fix ifs cleanup on error paths
      ash: fix unsafe use of mempcpy
      ash: fix use-after-free in pattern substitution code
      awk: input numbers are never octal or hex (only program consts can be)
      bc: hopefully fix bug 14956 (use-after-free)
      cut: build fix for FEATURE_CUT_REGEX
      ifplugd: split -a into -a and -A, latter disables upping in iface creation
      init: do not set HOME
      ls: implement ls -sh (human-readable allocated blocks)
      md5/shaXsum: use FEATURE_COPYBUF_KB to size the buffer instead of fixed 4k
      mv: fix error in !VERBOSE configs
      nmeter: %[md] %[mw] - dirty file-backed pages, writeback pages
      powertop: fix cpuid asm: ebx saving/restoring is properly done by gcc
      sed: correctly handle 'w FILE' commands writing to the same file
      sed: fix double-free in FEATURE_CLEAN_UP=y configs
      sed: fix handling of escaped delimiters in s/// replacement
      sed: fix handling of escaped delimiters in s/// search pattern, closes 14541
      seedrng: chdir to the SEED_DIRECTORY - avoid concat_path_file's
      seedrng: do not hash in a constant string, it's not adding entropy
      seedrng: do not hash lengths, they are very predictable
      seedrng: do not try to continue on unexpected errors (just exit)
      seedrng: explain why we need locking and fsync'ing
      seedrng: include file/dir names in error messages
      seedrng: re-add fsync after unlink, and explain its purpose
      seedrng: reduce MAX_SEED_LEN from 512 to 256
      seedrng: remove redundant assignment
      seedrng: remove unnecessary zero-filling of local variables
      seedrng: restore error check on fsync
      seedrng: simplify read_new_seed() to not have error return
      seedrng: use more xfuncs where appropriate
      shaNNNsum: accept one-space "HASH FILENAME" format for -c, closes 14866
      sort: fix -k2M (wasn't skipping leading whitespace)
      sort: fix -s -r interaction: 'stable' order is not affected by -r
      sort: fix sort -s -u, closes 14871
      sort: support -h
      sulogin: increase util-linux compatibility
      sulogin: start _login_ shell only with -p
      sulogin: util-linux does not say "normal startup" on Ctrl-D
      taskset: fix printf format mismatch in !FEATURE_TASKSET_FANCY config. closes 14616
      top: fix display of large PID/PPID
      top: improve large PID display in memory ('s') mode
      tree: make it unicode-aware
      tree: unicode tweak (use normal space char, 0x20)
      udhcpc6: add missed big-endian conversions
      udhcpc6: align FF02__1_2[]
      udhcpc6: downgrade "opening listen socket" log level to 2
      udhcpc6: fix binding to network aliases
      udhcpc6: fix sending of renew messages
      udhcpc6: use a different default config script
      xargs: implement -o, closes 15146
      xxd -r: handle offsets
      xxd -r: without -p, stop at more than one whitespace, closes 14786
      xxd: fix use of non-initialized data
      xxd: use bb_simple_perror_msg... where appropriate

Emanuele Giacomelli:
      XXXsum: handle binary sums with " " in the path

Grob Grobmann:
      vi: add 'ZQ' quitting command

Henrique Rodrigues:
      ping: fix typo in --help text

Jason A. Donenfeld (10):
      seedrng: import SeedRNG utility for kernel RNG seed files
      seedrng: use libbb functions
      seedrng: hoist bb_strtoul out of min/max
      seedrng: remove some global variables
      seedrng: further reduce size
      seedrng: use predefined strings where possible
      seedrng: avoid needless runtime strlen() call
      seedrng: compress format strings with %s arguments
      seedrng: code-golf even smaller
      seedrng: prune header includes

Khem Raj:
      apply const trick to ptr_to_globals

Louis Sautier:
      pkill: add -e to display the name and PID of the process being killed

Ludwig Nussel:
      libbb: mark stack in assembly files read-only

Natanael Copa (2):
      awk: fix use after free (CVE-2022-30065)
      more: accept and ignore -e

Paul Fox:
      crond: implement support for setting PATH in crontab files

Peter Kaestle:
      unzip -l: add missed big-endian conversions date and time

Roger Knecht:
      tree: new applet

Ron Yorston (8):
      libbb: restore special handling of nomsg errors
      libbb: make '--help' handling more consistent
      lineedit: get PWD from ash
      ash,hush: use HOME for tab completion and prompts
      vi: fix regression in autoindent handling
      vi: handle autoindent in 'cc' command
      vi: improved handling of backspace in replace mode
      vi: fix backspace over tab in commands

Samuel Thibault:
      Fix non-Linux builds

Shawn Landden:
      ash: optional sleep builtin

Sören Tempel (3):
      ed: add support for -s command-line option as mandated by POSIX
      ash: don't read past end of var in subvareval for bash substitutions
      ash: fix use-after-free in bash pattern substitution

Timo Teräs:
      mkfs.vfat: fix volume label to be padded with space

Vincent Stehlé:
      fdisk: recognize EBBR protective partitions

Walter Lozano:
      Add support for long options to cmp

Xiaoming Ni (4):
      loop: fix a race when a free loop device is snatched
      loop: refactor: extract subfunction get_next_free_loop()
      loop: simplify code of LOOP_SET_FD failure
      loop: refactor: extract subfunction set_loopdev_params()
```
2023-02-01 00:34:42 +00:00
Sandro 27ce3ac328
Merge pull request #213579 from lourkeur/chia-dev-tools 2023-02-01 01:31:48 +01:00
Sandro 62f788dedb
Merge pull request #213797 from SuperSandro2000/jmusicbot-headless 2023-02-01 01:25:44 +01:00
Mario Rodas b20cb0b8ef
Merge pull request #213774 from r-ryantm/auto-update/gdcm
gdcm: 3.0.20 -> 3.0.21
2023-01-31 19:20:54 -05:00
Mario Rodas 32f6cb2589
Merge pull request #213779 from chvp/bump-eid-mw
eid-mw: 5.1.4 -> 5.1.9
2023-01-31 19:19:51 -05:00
Mario Rodas f199834419
Merge pull request #213802 from figsoda/cargo-zigbuild
cargo-zigbuild: 0.14.5 -> 0.15.0
2023-01-31 19:18:15 -05:00
Mario Rodas e5e2646a07
Merge pull request #213790 from SuperSandro2000/sysdig-lib
sysdig: remove with lib over entire file
2023-01-31 19:17:46 -05:00
Mario Rodas 2a5a7b18e1
Merge pull request #213842 from r-ryantm/auto-update/cppcheck
cppcheck: 2.9.3 -> 2.10
2023-01-31 19:15:48 -05:00
Bernardo Meurer d0369be5d3
roon-server: 2.0-1193 -> 2.0-1202 2023-01-31 18:47:21 -05:00
Mario Rodas 484055b77c
Merge pull request #213847 from anthonyroussel/bundler_2_4_6
bundler: 2.4.5 -> 2.4.6
2023-01-31 18:41:57 -05:00
R. Ryantm f1215fc09a cotp: 1.1.0 -> 1.2.1 2023-01-31 23:39:26 +00:00
Robert Scott 39ccf2498e
Merge pull request #210690 from LeSuisse/asterisk-20.1.0
asterisk: 16.29.0 -> 16.30.0, 18.15.0 -> 18.16.0, 19.7.0 -> 19.8.0, 20.0.0 -> 20.1.0
2023-01-31 23:38:03 +00:00
Mario Rodas 69c43f4004
Merge pull request #213848 from figsoda/felix
felix-fm: 2.2.3 -> 2.2.4
2023-01-31 18:37:01 -05:00
R. Ryantm b4bfe1bada proxmark3-rrg: 4.15864 -> 4.16191 2023-01-31 23:34:53 +00:00
Michael Weiss f5a9697c77
Merge pull request #213865 from primeos/chromiumBeta
chromiumBeta: Fix the patch phase
2023-02-01 00:14:52 +01:00
R. Ryantm 2c7b0a2ab5 tgt: 1.0.84 -> 1.0.85 2023-01-31 23:05:10 +00:00
Nick Cao 8123ddfee1
Merge pull request #213827 from r-ryantm/auto-update/wayvnc
wayvnc: 0.6.1 -> 0.6.2
2023-02-01 06:55:50 +08:00
Michael Weiss 26aadca7c6
chromiumBeta: Fix the patch phase
Upstream dropped use_system_libwayland and related build arguments [0].
The deprecation is tracked in [1].
As a result, we must now build with third_party/wayland instead of
wayland from the system (or complex patches would be required).

This fixes [2].

[0]: 1c3c8db518
[1]: https://bugs.chromium.org/p/chromium/issues/detail?id=1385736
[2]: https://github.com/NixOS/nixpkgs/issues/213862#issuecomment-1411153401
2023-01-31 23:40:55 +01:00
Maximilian Bosch 53d8747340
Merge pull request #213820 from sumnerevans/matrix-synapse-1.76
matrix-synapse: 1.75.0 -> 1.76.0
2023-01-31 23:35:38 +01:00
R. Ryantm d405afb221 glmark2: 2021.12 -> 2023.01 2023-01-31 22:26:39 +00:00
R. Ryantm 95bf8681e1 iotop-c: 1.22 -> 1.23 2023-01-31 22:18:00 +00:00
R. Ryantm a9f355a42a nextdns: 1.38.0 -> 1.39.4 2023-01-31 21:58:39 +00:00
R. Ryantm d64477ea64 automatic-timezoned: 1.0.60 -> 1.0.61 2023-01-31 21:53:38 +00:00
R. Ryantm db60d9da38 protoc-gen-go-vtproto: 0.3.0 -> 0.4.0 2023-01-31 21:50:56 +00:00
Martin Weinelt d19f38fda9
Merge pull request #213852 from mweinelt/home-assistant-intents
home-assistant.intents: 2023.1.25 -> 2023.1.31
2023-01-31 21:48:07 +00:00
zowoq 48c973b2e4 clusterctl: 1.3.2 -> 1.3.3
https://github.com/kubernetes-sigs/cluster-api/releases/tag/v1.3.3
2023-02-01 07:38:20 +10:00
Sandro 8b598ff3d6
Merge pull request #199731 from Luflosi/kubo-idempotence 2023-01-31 22:12:49 +01:00
Martin Weinelt fc7f9a1039
home-assistant.intents: 2023.1.25 -> 2023.1.31
Diff: https://github.com/home-assistant/intents/compare/refs/tags/2023.1.25...2023.1.31
2023-01-31 21:09:33 +00:00
Matt Melling 2b6a0352c5
xsane: fix src location
Get src from GitLab as the tarball is no longer available from xsane.org. Add
passthru update script and myself as maintainer.
2023-01-31 21:02:21 +00:00
figsoda a08e4457b7 felix-fm: 2.2.3 -> 2.2.4
Diff: https://github.com/kyoheiu/felix/compare/v2.2.3...v2.2.4

Changelog: https://github.com/kyoheiu/felix/blob/v2.2.4/CHANGELOG.md
2023-01-31 16:01:34 -05:00
Anthony Roussel 6998035ed5
bundler: 2.4.5 -> 2.4.6 2023-01-31 22:01:14 +01:00
Alyssa Ross ff7cb26327 efivar: add musl patch 2023-01-31 20:47:35 +00:00
Alyssa Ross a997c219d8 libsmbios: add musl patch
Upstream seems pretty dead, so I think a patch is the best we're going
to get here.  But on the other hand, that means the package isn't
likely to require a lot of maintenance that could be made more
difficult by having a patch around.
2023-01-31 20:44:59 +00:00
superherointj 4d5fbbaa00
Merge pull request #213778 from dit7ya/spotify-player
spotify-player: add meta.mainProgram
2023-01-31 17:38:47 -03:00
figsoda 76f4cd8358
Merge pull request #213824 from r-ryantm/auto-update/dinghy
dinghy: 1.1.0 -> 1.2.0
2023-01-31 15:23:42 -05:00
Christoph Neidahl 6e1b43747a
punes: 0.109 -> 0.110, add Qt6 variant (#209485) 2023-01-31 20:59:19 +01:00
R. Ryantm cb0e6935af carapace: 0.20.2 -> 0.21.0 2023-01-31 19:58:54 +00:00