Commit Graph

4550 Commits

Author SHA1 Message Date
github-actions[bot]
c64ae284c0
Merge master into staging-next 2024-10-10 18:04:46 +00:00
Fabián Heredia Montiel
e57d26c07f
netdata: 1.47.1 -> 1.47.3 (#346228) 2024-10-10 10:22:40 -06:00
github-actions[bot]
fc5d8c3e7d
Merge master into staging-next 2024-10-09 06:04:53 +00:00
OTABI Tomoya
a83624d461
fio: 3.37 -> 3.38 (#346063) 2024-10-09 13:55:24 +09:00
github-actions[bot]
b1bc4ea2b5
Merge master into staging-next 2024-10-09 00:14:24 +00:00
José Ribeiro
fe728cc0db
zx: 8.1.8 -> 8.1.9
Diff: https://github.com/google/zx/compare/8.1.8...8.1.9
Changelog: https://github.com/google/zx/releases/tag/8.1.9
2024-10-07 15:22:46 +01:00
github-actions[bot]
b33aedbb4d
Merge master into staging-next 2024-10-07 12:05:43 +00:00
Thiago Kenji Okada
2977943aeb
treewide: move packages maintained by aaronjheng to by-name (#346765) 2024-10-07 07:38:59 +01:00
Aaron Jheng
b85511ca3c
treewide: move packages maintained by aaronjheng to by-name 2024-10-07 01:15:33 +00:00
github-actions[bot]
7ab01e096c
Merge master into staging-next 2024-10-06 18:03:58 +00:00
Nick Cao
89fd41228c
dool: 1.3.2 -> 1.3.3 (#346069) 2024-10-06 10:33:56 -04:00
github-actions[bot]
653bcc0ea9
Merge master into staging-next 2024-10-05 18:04:03 +00:00
R. Ryantm
7cb5c404bf automatic-timezoned: 2.0.33 -> 2.0.34 2024-10-05 06:44:15 +00:00
github-actions[bot]
e9c8665026
Merge master into staging-next 2024-10-05 00:14:01 +00:00
Peder Bergebakken Sundt
d6ca5ed287 treewide: remove empty build inputs
Done with

```sh
regex='\s*(nativeBuild|build|check|nativeCheck)Inputs *= *\[ *\];'
rg "^$regex$" -l | xe sd "\n\n$regex\n" "\n"
rg "^$regex$" -l | xe sd "\n$regex\n" "\n"
rg "^$regex$" -l | xe sd "\n$regex\n" "\n"
```
2024-10-04 19:03:59 +02:00
R. Ryantm
8444c32512 stress-ng: 0.18.04 -> 0.18.05 2024-10-04 06:59:41 +00:00
Ryan Horiguchi
d0c00c62cc netdata: 1.47.1 -> 1.47.3 2024-10-03 21:40:40 +02:00
R. Ryantm
aa8e5c1cdf dool: 1.3.2 -> 1.3.3 2024-10-03 04:26:30 +00:00
R. Ryantm
f7322be395 fio: 3.37 -> 3.38 2024-10-03 04:02:01 +00:00
github-actions[bot]
5810844b9c
Merge master into staging-next 2024-10-02 00:14:22 +00:00
Weijia Wang
aa6ca19e53
openseachest: 24.08 -> 24.08.1 (#344577) 2024-10-01 22:43:53 +02:00
K900
b29cb6c1f9 Merge remote-tracking branch 'origin/master' into staging-next 2024-09-30 20:23:25 +03:00
OTABI Tomoya
c7b147368c
lact: 0.5.5 -> 0.5.6 (#343843) 2024-09-30 22:08:46 +09:00
github-actions[bot]
9badc90a26
Merge master into staging-next 2024-09-28 00:13:56 +00:00
Nick Cao
2d6683a9c2
automatic-timezoned: 2.0.32 -> 2.0.33 (#344804) 2024-09-27 14:52:48 -04:00
R. Ryantm
f1a96b5bd6 nsc: 2.8.9 -> 2.9.0 2024-09-27 05:00:37 +00:00
R. Ryantm
27e58c943f automatic-timezoned: 2.0.32 -> 2.0.33 2024-09-27 04:54:54 +00:00
R. Ryantm
c076e3418c openseachest: 24.08 -> 24.08.1 2024-09-26 04:54:52 +00:00
Artturin
f0e657f3b1 Merge branch 'master' into staging-next 2024-09-25 06:05:01 +03:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
R. Ryantm
1f42ffa2b4 lact: 0.5.5 -> 0.5.6 2024-09-23 01:22:02 +00:00
github-actions[bot]
3625d99bb2
Merge master into staging-next 2024-09-23 00:14:30 +00:00
R. Ryantm
27164432bc btop: 1.3.2 -> 1.4.0 2024-09-22 12:27:43 +00:00
github-actions[bot]
754402a237
Merge staging-next into staging 2024-09-21 00:13:41 +00:00
K900
d8a54461fc Merge remote-tracking branch 'origin/staging-next' into staging 2024-09-20 07:27:56 +03:00
José Ribeiro
0997fa43d1
zx: 8.1.7 -> 8.1.8
Diff: https://github.com/google/zx/compare/8.1.7...8.1.8
Changelog: https://github.com/google/zx/releases/tag/8.1.8
2024-09-20 02:43:09 +01:00
Bjørn Forsman
b03e47330b
smartmontools: build with systemdLibs on linux (#342407) 2024-09-19 20:49:26 +02:00
github-actions[bot]
f8ad48a5a2
Merge staging-next into staging 2024-09-19 00:14:04 +00:00
Fabian Affolter
849b29a665
mediawriter: 5.1.2 -> 5.1.3 (#342799) 2024-09-19 00:38:46 +02:00
github-actions[bot]
71d46fbcdf
Merge staging-next into staging 2024-09-18 18:04:48 +00:00
R. Ryantm
8bccb662d4 mediawriter: 5.1.2 -> 5.1.3 2024-09-18 13:18:07 +00:00
Nick Cao
c61b20f267
zx: 8.1.6 -> 8.1.7 (#342616) 2024-09-18 08:18:38 -04:00
github-actions[bot]
81d645b6a9
Merge staging-next into staging 2024-09-18 06:05:20 +00:00
Muhammad Falak R Wani
25c916d554 bfs: 3.1.3 -> 4.0.2
Diff: https://github.com/tavianator/bfs/compare/3.1.3...4.0.2
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
2024-09-18 09:07:28 +05:30
github-actions[bot]
b638e02a58
Merge staging-next into staging 2024-09-18 00:13:59 +00:00
Nick Cao
3dd3008e4f
nsc: 2.8.8 -> 2.8.9 (#342066) 2024-09-17 15:52:43 -04:00
José Ribeiro
3863ea9ed8
zx: 8.1.6 -> 8.1.7
Diff: https://github.com/google/zx/compare/8.1.6...8.1.7
Changelog: https://github.com/google/zx/releases/tag/8.1.7
2024-09-17 20:20:03 +01:00
h7x4
94bc565cec
smartmontools: run nixfmt 2024-09-16 23:28:29 +02:00
h7x4
d447b5366e
smartmontools: build with systemdLibs on linux 2024-09-16 23:20:43 +02:00
github-actions[bot]
7aea2e99a8
Merge staging-next into staging 2024-09-16 00:14:57 +00:00
Jörg Thalheim
ba74d07245
treewide: remove a bunch of unmaintained and old packages (#341837) 2024-09-16 00:00:19 +02:00
github-actions[bot]
952947bdf8
Merge staging-next into staging 2024-09-15 18:04:54 +00:00
R. Ryantm
b9d465144a nsc: 2.8.8 -> 2.8.9 2024-09-15 13:17:43 +00:00
aleksana
8d9d116f35 psensor: remove 2024-09-15 20:13:13 +08:00
R. Ryantm
289996b763 automatic-timezoned: 2.0.31 -> 2.0.32 2024-09-15 11:59:42 +00:00
Alyssa Ross
db8baf8cc2 bfs: add missing attr dependency
This is currently propagated from libcap, but libcap doesn't depend on
attr, so this propagation will be removed.
2024-09-14 11:43:51 +02:00
Artturin
eef771ccf6
treewide: fix typos of enableParallelBuilding (#340652) 2024-09-13 21:52:21 +03:00
Weijia Wang
60d398885c
nsc: 2.8.7 -> 2.8.8 (#339686) 2024-09-13 11:52:28 +02:00
Austin Horstman
f8726f98ae
netdata: 1.47.0 -> 1.47.1 2024-09-12 20:09:46 -05:00
Austin Horstman
da31ab50f3
netdata: fix darwin 2024-09-12 19:54:33 -05:00
Austin Horstman
3b6197558a
netdata: cleanup rec 2024-09-12 19:48:00 -05:00
Austin Horstman
3dbab8acbb
netdata: format 2024-09-12 19:42:06 -05:00
R. Ryantm
c585a85e49 nsc: 2.8.7 -> 2.8.8 2024-09-13 02:17:44 +02:00
Weijia Wang
f6556fc148
openseachest: 23.12 -> 24.08 (#338086) 2024-09-13 00:15:15 +02:00
José Ribeiro
c11f1b7a26
zx: 8.1.5 -> 8.1.6
Diff: https://github.com/google/zx/compare/8.1.5...8.1.6
Changelog: https://github.com/google/zx/releases/tag/8.1.6
2024-09-11 15:31:05 +01:00
José Ribeiro
562e8d5975
zx: add versionCheckHook 2024-09-11 15:31:05 +01:00
Weijia Wang
e39edc5b91
automatic-timezoned: 2.0.30 -> 2.0.31 (#339665) 2024-09-11 00:45:00 +02:00
Weijia Wang
03cfa6e67b
java-service-wrapper: 3.5.58 -> 3.5.59 (#329802) 2024-09-10 00:49:35 +02:00
David McFarland
7912e83ade treewide: fix typos of enableParallelBuilding 2024-09-08 23:12:54 -03:00
R. Ryantm
8f2c0d309a stress-ng: 0.18.02 -> 0.18.04 2024-09-09 00:49:05 +00:00
Peder Bergebakken Sundt
4af1a36c38
mlc: bump src (#336562) 2024-09-05 11:09:09 -04:00
Ryan Horiguchi
737d1ffb22 netdata: 1.46.1 -> 1.47.0 2024-09-05 10:19:35 +02:00
R. Ryantm
ccc257f60d automatic-timezoned: 2.0.30 -> 2.0.31 2024-09-05 00:59:56 +00:00
Florian Klink
876f98a2dd
amtterm: enable SSL support (#338662) 2024-09-01 11:22:34 +03:00
Felix Singer
4ce2599a98 acpica-tools: Move package definition into by-name directory
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2024-08-31 21:31:01 +02:00
Martin Weinelt
282e35e076
acpica-tools: 20240322 -> 20240827 (#337897) 2024-08-31 21:22:30 +02:00
Florian Klink
cbc93ea250 amtterm: enable SSL support
Current versions of Intel AMT/vPro only support connecting over SSL, but
our current amtterm version isn't built with SSL support.

Set the `USE_OPENSSL=1` makeFlag and add openssl and pkg-config.

It adds an additional `-C cacert` parameter, which needs to point to
a previously downloaded server certificate.

The server certificate can be retrieved with
`openssl s_client -showcerts -connect $host:16995`.

However, due to the use of `UnsafeLegacyRenegotiation`, `OPENSSL_CONF`
needs to point to a text file explicitly allowing this:

```
openssl_conf = default_conf

[ default_conf ]
ssl_conf = ssl_sect

[ssl_sect]
system_default = ssl_default_sect

[ssl_default_sect]
Options = UnsafeLegacyRenegotiation
```

With this, I'm able to connect to `/dev/ttyS2` inside the host:

```
❯ AMT_PASSWORD='supersecret' amtterm $host 16995 -C cert.pem
amtterm: NONE -> CONNECT (connection to host)
ipv4 $ip [$ip] 16995 open
amtterm: CONNECT -> INIT (redirection initialization)
amtterm: INIT -> AUTH (session authentication)
amtterm: AUTH -> INIT_SOL (serial-over-lan initialization)
amtterm: INIT_SOL -> RUN_SOL (serial-over-lan active)
serial-over-lan redirection ok
connected now, use ^] to escape
Hello World
```
2024-08-31 21:06:24 +03:00
Sebastián Mancilla
0a0ee828a5
tuptime: 5.2.3 -> 5.2.4 (#327150) 2024-08-30 00:14:58 -04:00
R. Ryantm
47bf0716f1 openseachest: 23.12 -> 24.08 2024-08-29 02:54:12 +00:00
José Ribeiro
85007e0daf
zx: 8.1.4 -> 8.1.5
Diff: https://github.com/google/zx/compare/8.1.4...8.1.5
Changelog: https://github.com/google/zx/releases/tag/8.1.5
2024-08-29 01:31:12 +01:00
José Ribeiro
4f2695c0a8
zx: set passthru.updateScript 2024-08-29 01:15:09 +01:00
Sandro Jäckel
d50e23f0a4
glxinfo: replace with mesa-demos 2024-08-28 14:38:12 +02:00
Felix Singer
c735bb6521 acpica-tools: 20240322 -> 20240827
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2024-08-28 10:33:33 +02:00
lewo
0781491369
osquery: add update script (#327267) 2024-08-28 09:57:19 +02:00
Martin Weinelt
9c50de8b57
tree-wide: remove eelco as maintainer from things he no longer maintains (#336287) 2024-08-26 20:39:56 +02:00
squalus
ef7100c21e osquery: add update script
- add update script
- remove openssl hash verification logic since the hash is computed
  automatically now in the update script
2024-08-24 21:28:30 -07:00
Franz Pletz
444e578124
Merge pull request #303923 from colbs255/bottom-add-desktop-file 2024-08-25 01:13:31 +02:00
Nick Cao
bce2c8e2ff
Merge pull request #336822 from r-ryantm/auto-update/nsc
nsc: 2.8.6 -> 2.8.7
2024-08-24 10:44:33 -04:00
R. Ryantm
3ec1b0472c nsc: 2.8.6 -> 2.8.7 2024-08-23 17:26:16 +00:00
Anderson Torres
74ffb29e90 isc-cron: migrate to by-name 2024-08-23 12:22:22 -03:00
Fabian Affolter
ab682c47b2
Merge pull request #336658 from r-ryantm/auto-update/nats-top
nats-top: 0.6.1 -> 0.6.2
2024-08-23 08:30:43 +02:00
Sebastián Mancilla
a26a8c6a1d
Merge pull request #331422 from r-ryantm/auto-update/stress-ng
stress-ng: 0.18.01 -> 0.18.02
2024-08-22 22:43:14 -04:00
R. Ryantm
fb9e9029b2 nats-top: 0.6.1 -> 0.6.2 2024-08-23 01:28:01 +00:00
Nick Cao
07bdfdf352
Merge pull request #336486 from r-ryantm/auto-update/automatic-timezoned
automatic-timezoned: 2.0.29 -> 2.0.30
2024-08-22 16:42:51 -04:00
SharzyL
14fa028826
mlc: bump src 2024-08-22 23:21:34 +08:00
R. Ryantm
c7b8a6d657 automatic-timezoned: 2.0.29 -> 2.0.30 2024-08-22 06:49:05 +00:00
Sergei Trofimovich
4e845fd63a fakeroot: unconditionally apply addendum-charset-conversion.patch (darwin fix) 2024-08-21 22:28:54 +01:00
Bob van der Linden
47e31d291d hwinfo: move package to by-name 2024-08-21 22:38:35 +02:00
Jade Lovelace
5dfdb09561 tree-wide: remove eelco as maintainer from things he no longer maintains
While preparing this change, I read the git blame on all of the files I
touched. I saw a working lifetime of building this system which we use
every day and love dearly and keep maintained ourselves. I saw commits
from a 14 year range between 2003 to 2017!! I could not be more thankful
for Eelco's work on building large parts of the foundation of nixpkgs
that all of us rely on now.

However, the end date of that range of the files I looked at the blame
on was 2017. I did not see surviving code from any newer date than that.
Looking at the Git logs, Eelco has been working on other things, and
that's totally fine.

However, it means that our maintenance metadata is out of date on a lot
of packages, and *that*'s the reason I am submitting this change. There
are a lot of packages that don't have anyone with their name on them to
be pinged if they need attention, even if they have had recent activity
(although it is never clear if recent activity was just someone fixing
it because ZHF or because the package actually matters to them).
There are a lot of packages with storied history that maybe don't need
to be in the set anymore at all since they have not been touched in
years; or maybe they are simply finished.

Empty maintainer lists should be a sign that we need to figure out who
maintains it or potentially remove it if it has rotted, and allowing the
maintainer list to be empty if it is already not maintained is part of a
healthy repository ecology.

Either way, I would like to have the maintenance metadata not mislead
anyone into sending Eelco emails about packages he doesn't, in practice,
work on anymore. I have not removed his name from everything; there are
some things that he is the upstream for or has worked on more recently,
for instance, like Nix, which I have left alone.
2024-08-21 01:17:45 -07:00
colbs255
7c6344a39a bottom: add desktop file 2024-08-20 22:09:45 -04:00