Commit Graph

279 Commits

Author SHA1 Message Date
Emily
ac98115f52
Merge pull request #329102 from helsinki-systems/fix/parmetis-archive-org
parmetis: use github/KarypisLab/ParMETIS  as source
2024-08-21 21:41:51 +01:00
Max Hausch
a468bfc942
parmetis: Use KarypisLab GitHub mirror instead of glaros source 2024-08-19 16:27:09 +02:00
Aleksana
6f8f4b981f
Merge pull request #328180 from wegank/paru-init
paru: init at 2.0.3
2024-08-18 20:33:52 +08:00
R. Ryantm
acba1cca43 paper-age: 1.3.2 -> 1.3.3 2024-08-15 01:38:11 +00:00
Colin
bdade1b81e passt: support cross compilation 2024-08-12 21:22:32 +00:00
github-actions[bot]
d3f3bec267
Merge master into staging-next 2024-08-12 06:01:03 +00:00
R. Ryantm
fe954cfbd0 pack: 0.35.0 -> 0.35.1 2024-08-12 02:07:02 +00:00
github-actions[bot]
68894e5504
Merge master into staging-next 2024-08-10 00:02:11 +00:00
R. Ryantm
5dd70aaa7d payme: 1.2.2 -> 1.2.3 2024-08-09 15:42:02 +00:00
github-actions[bot]
0bc8d4924e
Merge master into staging-next 2024-08-07 18:01:07 +00:00
Peder Bergebakken Sundt
4d3f13ff44
Merge pull request #331045 from r-ryantm/auto-update/passt
passt: 2024_06_24.1ee2eca -> 2024_07_26.57a21d2
2024-08-07 16:24:08 +02:00
Vladimír Čunát
25a5e57128
Merge #331589: pahole: fix clang kernel build
...into staging
2024-08-06 17:56:51 +02:00
Peder Bergebakken Sundt
462b96d2a1
Merge pull request #326243 from jcaesar/pr-13
treewide: skip generating shell completions using $out/bin/… when cross compiling
2024-08-06 08:15:56 +02:00
Bobby Rong
0e7a7ebcf5
Merge pull request #331957 from bobby285271/upd/gnome
GNOME updates 2024-08-03
2024-08-04 14:20:47 +08:00
Julius Michaelis
6a9beaf893 treewide: skip generating shell completions using $out/bin/… when cross compiling
This focuses on Rust packages, since the most commonly used argument
parser library (clap/structopt) makes the following pattern natural and
thus common:

  postInstall = ''
    installShellCompletion --cmd foo \
      --bash <($out/bin/foo completion bash) \
      …

This commit just guards those with

lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform)

splitting the string where unrelated actions are performed.
2024-08-04 10:50:48 +09:00
Bobby Rong
3d46ea7eaa
evince, papers: Remove broken supportXPS option
I don't see a reason to override this and with -Dauto_features=enabled (from
our meson setup-hook) the build breaks without explicitly passing -Dxps=disabled.
2024-08-03 18:12:49 +08:00
adisbladis
e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
Dominique Martinet
b0b178fc29 pahole: fix clang kernel build
This should fix clang builds for real this time

Reported-by: PedroHLC <root@pedrohlc.com>
2024-08-02 04:34:00 +09:00
Stig
465424be0d
Merge pull request #331136 from techknowlogick/packer-bump
packer: 1.11.1 -> 1.11.2
2024-08-01 18:02:48 +02:00
Peder Bergebakken Sundt
b926e6ece9
Merge pull request #331116 from pbsds/fix-finalattrs-docheck-1722356587
treewide: finalAttrs.doCheck -> finalAttrs.finalPackage.doCheck
2024-08-01 14:58:44 +02:00
techknowlogick
2869392d5d packer: 1.11.1 -> 1.11.2
Diff: https://github.com/hashicorp/packer/compare/v1.11.1...v1.11.2

Changelog: https://github.com/hashicorp/packer/blob/v1.11.2/CHANGELOG.md
2024-07-31 23:28:36 -04:00
zimbatm
5d61acb71b packer: move to by-name 2024-07-31 09:10:34 +02:00
Peder Bergebakken Sundt
29ab705c17 treewide: finalAttrs.doCheck -> finalAttrs.finalPackage.doCheck
repeat of #271241
discussion: #272978

I did not replace the instance in eiwd, since it causes an infinite recursion.
2024-07-30 18:32:01 +02:00
R. Ryantm
a297509b75 passt: 2024_06_24.1ee2eca -> 2024_07_26.57a21d2 2024-07-30 08:34:44 +00:00
Nick Cao
bbd7633c56
Merge pull request #330772 from r-ryantm/auto-update/parallel-disk-usage
parallel-disk-usage: 0.9.2 -> 0.9.3
2024-07-29 15:07:12 -04:00
R. Ryantm
c895be9c58 parallel-disk-usage: 0.9.2 -> 0.9.3 2024-07-29 04:25:35 +00:00
Jörg Thalheim
5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Martin Weinelt
93f4195fe0
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/applications/graphics/seamly2d/default.nix
2024-07-26 18:05:04 +02:00
Sigmanificient
61fe0c0416 pkgs/by-name: remove unused arguments 2024-07-26 10:11:07 +02:00
Artturin
60e9cffe2c Merge branch 'master' into staging-next 2024-07-22 22:53:31 +03:00
Max Hausch
db2396c7f9
parmetis: Move to pkgs/by-name/pa/parmetis 2024-07-22 11:00:45 +02:00
R. Ryantm
0512022450 pack: 0.34.2 -> 0.35.0 2024-07-22 03:45:39 +00:00
Vladimír Čunát
622b7430fa
Merge #319160: pahole: 1.26 -> 1.27
...into staging
2024-07-20 10:10:08 +02:00
Weijia Wang
8b3833de28 paru: init at 2.0.3 2024-07-18 15:38:53 +02:00
Sandro
df4355e70d
Merge pull request #323958 from ByteSudoer/init-paperlib 2024-07-16 17:02:15 +02:00
ByteSudoer
d4c29687cb
paperlib: init at 3.1.6 2024-07-16 14:21:59 +02:00
R. Ryantm
cb2d357291 patch2pr: 0.25.0 -> 0.26.1 2024-07-16 03:29:49 +00:00
Wael Nasreddine
eb0f74b878
Merge pull request #325973 from kirillrdy/unpin-go
[treewide] unpin buildGoModule
2024-07-11 22:48:10 -07:00
Pol Dellaiera
40bab1ea6e
pack: init at 0.34.2 2024-07-10 12:57:32 +02:00
R. Ryantm
1ce4289110 paho-mqtt-cpp: 1.4.0 -> 1.4.1 2024-07-10 02:50:04 +00:00
Kirill Radzikhovskyy
84dcc8770b pan-bindings: unpin buildGoModule 2024-07-10 10:55:40 +10:00
github-actions[bot]
30cfd4445f
Merge master into staging-next 2024-07-05 00:02:21 +00:00
aleksana
4b9fdf5800 pablodraw: update deps.nix to use SRI hash
This is part of my test to prove that nuget-to-nix works with SRI hash.
It was built and ran successfully.
2024-07-04 20:16:51 +08:00
github-actions[bot]
d77a3adc09
Merge master into staging-next 2024-07-03 00:02:45 +00:00
Nick Cao
6c4378433b
Merge pull request #323925 from r-ryantm/auto-update/paper-age
paper-age: 1.3.1 -> 1.3.2
2024-07-02 16:31:35 -04:00
Martin Weinelt
7b8429bbc4
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/development/python-modules/jaxtyping/default.nix
2024-07-02 12:08:49 +02:00
Jan Tojnar
0f56e32213
Merge pull request #319659 from jtojnar/gnome-extract
Move various packages out of gnome scope
2024-07-02 08:03:53 +02:00
K900
665f1d6183 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-02 08:32:46 +03:00
R. Ryantm
d1b39537a1 paper-age: 1.3.1 -> 1.3.2 2024-07-02 01:34:31 +00:00
Patka
1d1635196a maintainers: remove patka 2024-07-02 01:36:56 +02:00
Weijia Wang
baa28bbca6
Merge pull request #318598 from r-ryantm/auto-update/passt
passt: 2024_05_23.765eb0b -> 2024_06_24.1ee2eca
2024-07-02 00:25:18 +02:00
github-actions[bot]
1addc8dd4c
Merge master into staging-next 2024-07-01 18:01:14 +00:00
aleksana
468007ea5e paper-plane: add missing gstreamer plugins 2024-07-01 17:41:23 +08:00
Jan Tojnar
2be24442bb nautilus: Move from gnome scope to top-level 2024-07-01 08:26:44 +02:00
R. Ryantm
8a21839c71 passt: 2024_05_23.765eb0b -> 2024_06_24.1ee2eca 2024-06-30 06:21:21 +00:00
github-actions[bot]
677389dc9f
Merge master into staging-next 2024-06-26 18:01:17 +00:00
Nikolay Korotkiy
35a1ac9244
Merge pull request #320563 from sikmir/paho-mqtt-cpp
paho-mqtt-cpp: 1.3.2 → 1.4.0
2024-06-26 21:58:07 +04:00
Nikolay Korotkiy
ad4d0d761a
paho-mqtt-cpp: migrate to by-name 2024-06-26 20:20:49 +04:00
Dominique Martinet
df03fbf358 pahole: fix issue with LLVM compiled kernels 2024-06-26 12:40:15 +09:00
Dominique Martinet
d354c891fb pahole: reproducibility: use --reproducible_build instead of -j1
New version brought in the --reproducible_build option, which is more
efficient than forcing a single thread, and produces the same output
(tested on linux kernel's vmlinux BTF extraction)
2024-06-26 12:40:15 +09:00
Dominique Martinet
8a826cb8f8 pahole: 1.26 -> 1.27 2024-06-26 12:40:15 +09:00
github-actions[bot]
08b5c3c46a
Merge master into staging-next 2024-06-25 18:01:20 +00:00
Weijia Wang
56fba1e91d
papers: fix build on darwin 2024-06-24 12:48:12 -04:00
Pyrox
9515e2e098
papers: 45.0-unstable-2024-03-27 -> 46.2
See upstream changelog:
https://gitlab.gnome.org/GNOME/Incubator/papers/-/blob/main/NEWS
2024-06-24 12:48:12 -04:00
github-actions[bot]
88140ced6d
Merge master into staging-next 2024-06-24 12:01:17 +00:00
Marc Jakobi
2725312e03 panvimdoc: init at 4.0.1 2024-06-23 11:46:42 +02:00
Martin Weinelt
abdf5dc772
treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Alexis Hildebrandt
bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00
R. Ryantm
012d29d5d7 paper-age: 1.3.0 -> 1.3.1 2024-06-07 14:25:40 +00:00
Peder Bergebakken Sundt
462dd577bc
Merge pull request #283621 from shard77/patch-11
payloadsallthethings: init at 3.0-unstable-2024-01-21
2024-06-05 04:19:22 +02:00
Weijia Wang
4967234020
Merge pull request #310679 from r-ryantm/auto-update/passt
passt: 2024_04_26.d03c4e2 -> 2024_05_23.765eb0b
2024-06-02 16:31:34 +02:00
R. Ryantm
45c9392111 pacu: 1.5.3 -> 1.6.0 2024-05-28 23:00:52 +00:00
R. Ryantm
e9ebdec89e pantheon-tweaks: 2.0.1 -> 2.0.2 2024-05-28 18:24:27 +08:00
R. Ryantm
f254a977a1 passt: 2024_04_26.d03c4e2 -> 2024_05_23.765eb0b 2024-05-27 23:34:26 +00:00
shard7
8adaa32ad3 payloadsallthethings: init at 3.0-unstable-2024-01-21 2024-05-26 19:24:08 +02:00
R. Ryantm
550060f75a patch2pr: 0.24.0 -> 0.25.0 2024-05-24 01:34:15 +00:00
Bobby Rong
e967f2f99c
Merge pull request #313416 from bobby285271/upd/pantheon-tweaks
pantheon-tweaks: 1.1.2 -> 2.0.1
2024-05-23 21:26:59 +08:00
Bobby Rong
4f5bd47b56
pantheon-tweaks: 1.1.2 -> 2.0.1
Also move to by-name.

https://github.com/pantheon-tweaks/pantheon-tweaks/compare/1.1.2...2.0.1
2024-05-22 21:58:09 +08:00
R. Ryantm
c60d763b96 parabolic: 2023.12.0 -> 2024.5.0 2024-05-19 19:13:23 +00:00
Lin Jian
a657d5777a
Merge pull request #310468 from brsvh/add/parinfer-rust-emacs
parinfer-rust-emacs: init at 0.4.6
2024-05-16 23:29:44 +08:00
Burgess Chang
97d44a2202
parinfer-rust-emacs: init at 0.4.6
Signed-off-by: Burgess Chang <bsc@brsvh.org>
2024-05-16 17:52:48 +08:00
Marcus Ramberg
c5e1cf1c93
Merge pull request #310571 from martinetd/by-name
{rmfakecloud, libbpf, pahole, bcc, bpftrace}: migrate to by-name
2024-05-14 07:02:06 +02:00
Peder Bergebakken Sundt
5e5c48fd70
Merge pull request #308574 from cimm/update-payme
payme: 1.2.0 -> 1.2.2
2024-05-13 01:18:39 +02:00
Dominique Martinet
6cc30987ce pahole: migrate to by-name 2024-05-12 19:05:44 +09:00
R. Ryantm
42050e0b09 patch2pr: 0.22.0 -> 0.24.0 2024-05-12 07:21:41 +00:00
Leona Maroni
9a604d82fb
Merge pull request #310062 from cyberus-technology/paperless-asn-qr-codes
paperless-asn-qr-codes: init at 0.2.0
2024-05-08 15:08:41 +02:00
Alexander Sieg
c8ccbc21cb
paperless-asn-qr-codes: init at 0.2.0 2024-05-08 11:38:38 +02:00
Basti
4f484400ea
Merge pull request #306967 from NixOS/passt_20240426
passt: 2024_04_05.954589b -> 2024_04_26.d03c4e2
2024-05-07 09:58:15 +00:00
Patka
f1732f8c79
Revert "maintainers: remove patka" 2024-05-06 14:08:44 +02:00
github-actions[bot]
31135daf48
Merge master into staging-next 2024-05-02 18:01:05 +00:00
Simon Schoeters
a59ea1b6c1 payme: 1.2.0 -> 1.2.2 2024-05-02 19:29:06 +02:00
Nick Cao
00f5aa35ec
Merge pull request #308280 from r-ryantm/auto-update/paper-age
paper-age: 1.2.1 -> 1.3.0
2024-05-02 09:22:09 -04:00
github-actions[bot]
c4dfa193ac
Merge master into staging-next 2024-05-02 12:01:36 +00:00
Sandro
4a2f53b67a
Merge pull request #280940 from e1mo/fix-parsedmarc-smtp-to 2024-05-02 11:16:27 +02:00
R. Ryantm
bb3a5c0f28 paper-age: 1.2.1 -> 1.3.0 2024-05-01 13:36:28 +00:00
Weijia Wang
bab247f2bb Merge branch 'master' into staging-next 2024-04-28 05:11:43 +02:00
Niklas Hambüchen
9c0ce522ca
Merge pull request #307346 from nh2/parallel-hashmap
parallel-hashmap: init at 1.3.12
2024-04-28 04:01:54 +02:00
natsukium
396177a40e parallel-hashmap: init at 1.3.12 2024-04-28 00:55:38 +00:00
Weijia Wang
37876dbdad Merge branch 'master' into staging-next 2024-04-27 05:44:19 +02:00
Robert Schütz
471a8ed428 parsedmarc: override msgraph-core version 2024-04-27 04:55:52 +02:00
Jan Tojnar
eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00
Patka
0757a75279
maintainers: remove patka 2024-04-26 21:52:53 +02:00
Sebastian Sellmeier
bd19851ef5
passt: 2024_04_05.954589b -> 2024_04_26.d03c4e2 2024-04-26 14:35:43 +02:00
github-actions[bot]
05273cc291
Merge master into staging-next 2024-04-25 00:02:07 +00:00
Peder Bergebakken Sundt
985aa8174d treewide: unbreak appimageTools.wrapType2 builds
`appimageTools.wrapType2` no longer creates a binary `$out/bin/${name}` if `pname` and `version` is provided.
Derivations that have worked around this behavior with a `mv $out/bin/{${name},${pname}}` broke as a result.
This should fix most instances.

contex: #271071
2024-04-24 15:26:52 +02:00
Michael Evans
a5094fc1db paper-clip: 5.0 -> 5.5 2024-04-23 22:03:40 +02:00
Jo-Blade
4877455ae8
papers: init at 45.0-unstable-2024-03-27 2024-04-22 21:11:32 +02:00
R. Ryantm
f21b4571e8 pacu: 1.5.2 -> 1.5.3 2024-04-15 16:32:29 +00:00
isabel
57f408c562
pace: init at 0.15.2 2024-04-14 15:05:38 +01:00
Fabian Affolter
573b674cba pacu: format with nixfmt 2024-04-12 09:58:43 +02:00
Fabian Affolter
8d24f24690 pacu: disable failing tests 2024-04-12 09:58:23 +02:00
Fabian Affolter
ef4e2f85f1 pacu: refactor 2024-04-12 09:56:28 +02:00
Fabian Affolter
49b04c6927 pacu: relax pycognito 2024-04-12 09:55:36 +02:00
Weijia Wang
d715ca173a
Merge pull request #287984 from Aleksanaa/pablodraw
pablodraw: init at 3.3.13-beta
2024-04-10 16:46:20 +02:00
Mario Rodas
4d3478f52b passt: 0.2023_11_10.5ec3634 -> 2024_04_05.954589b 2024-04-07 04:20:00 +00:00
Pascal Bach
f955c92363
Merge pull request #265409 from 8aed/patch-init-passt
init: passt at 2023_11_10
2024-04-08 21:53:43 +02:00
Simon Schoeters
506939e98c
payme: fix version number string (#297480) 2024-03-22 13:55:44 +01:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
Fabian Affolter
f33f019bb2 pacu: init at 1.5.2
AWS exploitation framework

https://github.com/RhinoSecurityLabs/pacu
2024-03-18 17:52:09 +01:00
Sandro
03bd462650
Merge pull request #292826 from cimm/add-payme-package 2024-03-12 10:50:54 +01:00
matthewcroughan
f3e48a477e pan-bindings: init at unstable-2024-03-03 2024-03-04 14:47:46 +00:00
aleksana
3b6cbc4da2 pablodraw: init at 3.3.13-beta 2024-03-04 11:24:36 +08:00
Simon Schoeters
b2d7528345 payme: init at 1.2.0 2024-03-02 21:11:43 +01:00
rina
13fbea4970 patch2pr: 0.21.0 -> 0.22.0
Diff: https://github.com/bluekeyes/patch2pr/compare/v0.21.0...v0.22.0

Changelog: https://github.com/bluekeyes/patch2pr/releases/tag/v0.22.0
2024-02-27 16:22:02 +10:00
rina
7897fc4abb patch2pr: init at 0.21.0 2024-02-27 16:21:49 +10:00
Pol Dellaiera
e4af98e127
Merge pull request #290224 from patka-123/paratest-7.4.3
paratest: 7.4.2 -> 7.4.3
2024-02-20 18:38:29 +01:00
Patka
3a3bd77f09
paratest: 7.4.2 -> 7.4.3
release notes: https://github.com/paratestphp/paratest/releases/tag/v7.4.3
2024-02-20 18:02:05 +01:00
Pol Dellaiera
dc6c9e35b6
Merge pull request #290153 from patka-123/paratest-7.4.2
paratest: 7.4.1 -> 7.4.2
2024-02-20 12:00:54 +01:00
Patka
457531ccb9
paratest: 7.4.1 -> 7.4.2
release notes: https://github.com/paratestphp/paratest/releases/tag/v7.4.2
2024-02-20 10:04:41 +01:00
a-n-n-a-l-e-e
81f9b5c1a1
Merge pull request #288854 from r-ryantm/auto-update/parallel-disk-usage
parallel-disk-usage: 0.9.1 -> 0.9.2
2024-02-18 13:05:57 -08:00
a-n-n-a-l-e-e
142d2bff8c
Merge pull request #289580 from D3vil0p3r/patch-27
pasco: init at 20040505_1
2024-02-18 12:34:02 -08:00
D3vil0p3r
cd3a9fc59a pasco: init at 20040505_1 2024-02-18 12:58:20 +01:00
Juan C. Müller
4de6f32046
pa-notify: init at 1.5.0 2024-02-16 10:26:23 -05:00
R. Ryantm
7850ba7860 parallel-disk-usage: 0.9.1 -> 0.9.2 2024-02-14 19:26:45 +00:00
Bobby Rong
0e123540e5
paper-plane: Fix eval after gtk4 4.12.5 update
See ac193f0684, which removes all gtk4 patches.

Fixes 4ccedfae09.
Fixes https://gist.github.com/GrahamcOfBorg/594457cf1fc2b56ce99e5ac1add2e949.
2024-02-12 22:21:42 +08:00
kirillrdy
7774ef530f
Merge pull request #284804 from Aleksanaa/paper-plane
paper-plane: init at 0.1.0-beta.5
2024-02-12 06:53:27 +11:00
aleksana
4ccedfae09 paper-plane: init at 0.1.0-beta.5 2024-02-11 21:09:44 +08:00
R. Ryantm
b7ccd61c22
parallel-disk-usage: 0.9.0 -> 0.9.1 2024-02-11 06:02:29 +00:00
Pol Dellaiera
66b6035627
Merge pull request #287791 from patka-123/paratest-7.4.1
paratest: init at 7.4.1
2024-02-10 16:42:46 +01:00
Patka
37884dca3c
paratest: init at 7.4.1 2024-02-10 16:23:21 +01:00
Nikolay Korotkiy
25ad03554b
Merge pull request #285968 from zendo/fix/parabolic
parabolic: fix mainProgram
2024-02-10 17:34:17 +04:00
annalee
8bb910da0d
parallel-disk-usage: ignore broken test 2024-02-07 07:56:09 +00:00
a-n-n-a-l-e-e
61bcaf0968
Merge pull request #280371 from peret/init-parallel-disk-usage
parallel-disk-usage (pdu): init at 0.9.0
2024-02-04 16:31:41 -08:00
Peter Retzlaff
ea6ea77550 mark as broken on aarch64-linux 2024-02-04 22:58:10 +01:00
Peter Retzlaff
1bffe0a3ae Exclude aarch64-linux from supported platforms. 2024-02-04 19:05:19 +01:00
zendo
e83e8317cf parabolic: fix mainProgram 2024-02-03 14:59:40 +08:00
Robert Schütz
3b02018161
Merge pull request #284529 from r-ryantm/auto-update/paper-clip
paper-clip: 4.0 -> 5.0
2024-01-29 05:57:39 +00:00
Nick Cao
b6e04e306c
Merge pull request #284531 from r-ryantm/auto-update/paper-age
paper-age: 1.2.0 -> 1.2.1
2024-01-28 11:23:30 -05:00
R. Ryantm
2aeb88617c paper-age: 1.2.0 -> 1.2.1 2024-01-28 14:31:10 +00:00