Commit Graph

59873 Commits

Author SHA1 Message Date
github-actions[bot]
87e315024e
Merge staging-next into staging 2023-02-09 18:01:44 +00:00
github-actions[bot]
b5d4dad2b8
Merge master into staging-next 2023-02-09 18:01:11 +00:00
figsoda
bcf5eb3363
Merge pull request #215532 from r-ryantm/auto-update/nb
nb: 7.3.0 -> 7.4.1
2023-02-09 12:52:56 -05:00
R. Ryantm
c4e96134db nb: 7.3.0 -> 7.4.1 2023-02-09 16:17:04 +00:00
Artturi
56c4f27b18
Merge pull request #215488 from alyssais/strip-nondeterminism-1.13.1
strip-nondeterminism: fix build
2023-02-09 17:21:53 +02:00
Fabian Affolter
d80fdedd72 ffuf: add changelog to meta 2023-02-09 15:42:54 +01:00
Sandro
bc7b556312
Merge pull request #207988 from MatthewCroughan/mc/repro-get
repro-get: init at 0.2.1
2023-02-09 14:49:25 +01:00
Weijia Wang
f8afa3318c
Merge pull request #215470 from r-ryantm/auto-update/drill
drill: 0.8.1 -> 0.8.2
2023-02-09 14:27:30 +01:00
Weijia Wang
b526fbbb62
Merge pull request #215449 from r-ryantm/auto-update/htop
htop: 3.2.1 -> 3.2.2
2023-02-09 14:25:42 +01:00
Weijia Wang
2a122412ac
Merge pull request #215466 from r-ryantm/auto-update/xrootd
xrootd: 5.5.1 -> 5.5.2
2023-02-09 14:24:37 +01:00
Weijia Wang
2231b67f2c
Merge pull request #215477 from r-ryantm/auto-update/mdbook-katex
mdbook-katex: 0.3.4 -> 0.3.7
2023-02-09 14:17:31 +01:00
Weijia Wang
43a25f3e7d
Merge pull request #215471 from r-ryantm/auto-update/tinyfecvpn
tinyfecvpn: 20210116.0 -> 20230206.0
2023-02-09 14:11:56 +01:00
Weijia Wang
7e287bf0de
Merge pull request #215478 from r-ryantm/auto-update/broot
broot: 1.20.0 -> 1.20.1
2023-02-09 14:08:13 +01:00
Nick Cao
f6634dd372
Merge pull request #215483 from r-ryantm/auto-update/reuse
reuse: 1.1.0 -> 1.1.1
2023-02-09 20:32:55 +08:00
github-actions[bot]
8c32008a02
Merge staging-next into staging 2023-02-09 12:02:05 +00:00
github-actions[bot]
c76e040c19
Merge master into staging-next 2023-02-09 12:01:30 +00:00
Alyssa Ross
18d1c014bf
file: fix identification of pyzip files 2023-02-09 10:33:18 +00:00
R. Ryantm
c9ae110cf4 reuse: 1.1.0 -> 1.1.1 2023-02-09 09:55:56 +00:00
R. Ryantm
b3983468c3 broot: 1.20.0 -> 1.20.1 2023-02-09 09:46:14 +00:00
R. Ryantm
6da6a1899b mdbook-katex: 0.3.4 -> 0.3.7 2023-02-09 09:31:29 +00:00
R. Ryantm
679e64a561 tinyfecvpn: 20210116.0 -> 20230206.0 2023-02-09 09:05:12 +00:00
R. Ryantm
997b955af1 drill: 0.8.1 -> 0.8.2 2023-02-09 09:04:26 +00:00
Weijia Wang
deba294d72
Merge pull request #215446 from r-ryantm/auto-update/afterburn
afterburn: 5.3.0 -> 5.4.0
2023-02-09 09:18:43 +01:00
Weijia Wang
697c78634c
Merge pull request #215456 from wegank/afterburn-linux
afterburn: relax platforms
2023-02-09 09:13:37 +01:00
R. Ryantm
246a192a2d xrootd: 5.5.1 -> 5.5.2 2023-02-09 08:10:35 +00:00
Nick Cao
6fa2bfdf4d
Merge pull request #215110 from gador/pgadmin-use-pstgresqltesthook
pgadmin4-desktopmode: init at 6.19, pgadmin4: simplify tests
2023-02-09 16:05:44 +08:00
Weijia Wang
e004f773e7 afterburn: relax platforms 2023-02-09 08:41:01 +01:00
Florian Brandes
a380674d85
pgadmin4: add option to enable desktop mode
By default, pgadmin4 uses SERVER_MODE = True. This requires
access to system directories (e.g. /var/lib/pgadmin). There is
no easy way to change this mode during runtime. One has to change
or add config files withing pgadmin's directory structure to change it
or add a system-wide config file under `/etc/pgadmin`[1].

This isn't always easy to achive or may not be possible at all. For
those usecases this implements a switch in the pgadmin4 derivation and
adds a new top-level package `pgadmin4-desktopmode`. This builds in
DESKTOP MODE and allows the usage of pgadmin4 without the nixOS module
and without access to system-wide directories.

pgadmin4 module saves the configuration to /etc/pgadmin/config_system.py
pgadmin4-desktopmode tries to read that as well. This normally fails with
a PermissionError, as the config file is owned by the user of the pgadmin module.

With the check-system-config-dir.patch this will just throw a warning
but will continue and not read the file.

If we run pgadmin4-desktopmode as root
(something one really shouldn't do), it can read the config file and fail,
because of the wrong config for desktopmode.

[1]https://www.pgadmin.org/docs/pgadmin4/latest/config_py.html

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2023-02-09 08:19:05 +01:00
Florian Brandes
e4488f5efe pgadmin4: move package tests back into the package
We test pgadmin in nixosTests, because it needs a running postgresql instance.
This is now unnecessary since we can do so in the package itself.

This reduces the complexity of pgadmin and removes the need for the extra
nixosTests.

Also setting SERVER_MODE in `pkg/pip/setup_pip.py` does not have any effect
on the final package, so we remove it.
In NixOS, we use the module, which expects SERVER_MODE to be true (which it defaults to).
In non-NixOS installations, we will need the directory /var/lib/pgadmin and /var/log/pgadmin

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2023-02-09 08:06:52 +01:00
R. Ryantm
6fa50db065 htop: 3.2.1 -> 3.2.2 2023-02-09 06:33:52 +00:00
R. Ryantm
d5196ae0eb afterburn: 5.3.0 -> 5.4.0 2023-02-09 06:17:58 +00:00
github-actions[bot]
bd14a95898
Merge staging-next into staging 2023-02-09 06:01:47 +00:00
github-actions[bot]
73fe6149d4
Merge master into staging-next 2023-02-09 06:01:10 +00:00
Weijia Wang
910b85f2ae
Merge pull request #215388 from r-ryantm/auto-update/ffuf
ffuf: 1.5.0 -> 2.0.0
2023-02-09 06:59:50 +01:00
Nick Cao
fba0eaef41
Merge pull request #215441 from wegank/ligolo-ng-bump
ligolo-ng: 0.4.2 -> 0.4.3
2023-02-09 13:37:58 +08:00
Weijia Wang
e76b4fed8a
Merge pull request #215440 from r-ryantm/auto-update/subnetcalc
subnetcalc: 2.4.20 -> 2.4.21
2023-02-09 06:26:34 +01:00
Weijia Wang
275c67a37d ligolo-ng: 0.4.2 -> 0.4.3 2023-02-09 06:05:45 +01:00
R. Ryantm
7f23b8cdc0 subnetcalc: 2.4.20 -> 2.4.21 2023-02-09 04:55:39 +00:00
Mario Rodas
7483351ce7
Merge pull request #215342 from r-ryantm/auto-update/pgmetrics
pgmetrics: 1.14.0 -> 1.14.1
2023-02-08 21:48:32 -05:00
Mario Rodas
ee15927862
Merge pull request #215355 from r-ryantm/auto-update/resvg
resvg: 0.28.0 -> 0.29.0
2023-02-08 21:48:22 -05:00
Nick Cao
d735463553
Merge pull request #215413 from dotlambda/abcmidi-2023.02.07
abcmidi: 2023.01.21 -> 2023.02.07
2023-02-09 10:19:47 +08:00
Martin Weinelt
d6aaaa0158
Merge pull request #215216 from mweinelt/less
less: Apply patch for CVE-2022-46663
2023-02-09 01:07:17 +00:00
Nick Cao
14e906bdf0
Merge pull request #215398 from r-ryantm/auto-update/automatic-timezoned
automatic-timezoned: 1.0.61 -> 1.0.62
2023-02-09 09:07:07 +08:00
Nick Cao
853288c39d
Merge pull request #215186 from Trundle/pulumi-3.54.0
pulumi: 3.53.1 -> 3.54.0
2023-02-09 08:58:39 +08:00
Robert Schütz
bbdc8e5414 abcmidi: 2023.01.21 -> 2023.02.07 2023-02-08 16:58:37 -08:00
Nick Cao
de02509303
Merge pull request #215375 from azahi/iaito
iaito: 5.8.0 -> 5.8.2
2023-02-09 08:48:21 +08:00
Nick Cao
380d962601
Merge pull request #215339 from walkah/pulumi-bin-3.54.0
pulumi-bin: 3.53.1 -> 3.54.0
2023-02-09 08:35:20 +08:00
github-actions[bot]
bece38afcc
Merge staging-next into staging 2023-02-09 00:02:56 +00:00
github-actions[bot]
1f23f5ae02
Merge master into staging-next 2023-02-09 00:02:26 +00:00
R. Ryantm
f4d975f357 automatic-timezoned: 1.0.61 -> 1.0.62 2023-02-08 22:56:13 +00:00