Commit Graph

171 Commits

Author SHA1 Message Date
jopejoe1
5747f8e44e wrapVdr: use pname and version instead of name 2026-08-11 09:24:24 +02:00
R. Ryantm
32d8b8ee6d vdrPlugins.softhddevice: 2.4.8 -> 2.5.0 2026-06-25 18:46:12 +00:00
R. Ryantm
0a615d7b92 vdr: 2.8.1 -> 2.8.2 2026-06-02 12:41:36 +00:00
Clément
5d26766cbf treewide: add missing meta.homepage with source git repository
Added homepage where missing, where the sources are pulled from:
- https://github.com
- https://git.sr.ht
- https://gitlab.com
- https://invent.kde.org
- https://codeberg.org
- https://gitlab.gnome.org
- https://gitlab.freedesktop.org
- https://git.FreeBSD.org
- https://salsa.debian.org
- https://git.tvdr.de
- https://git.suckless.org
2026-06-01 23:40:52 +02:00
Christian Kögler
52afc653e4 vdrPlugins.epgsearch: use pcre2 instead of pcre 2026-05-30 08:17:48 +02:00
Christian Kögler
37413baa3a vdr-streamdev: 0.6.4 -> 0.6.5 2026-05-21 22:01:32 +02:00
Christian Kögler
68e9f5ed8f vdr-vnsiserver: 1.8.3 -> 1.8.4 2026-05-21 21:59:42 +02:00
Christian Kögler
62785fc7f7 vdr-skin-nopacity: 1.1.19 -> 1.1.20 2026-05-21 21:59:20 +02:00
Christian Kögler
195352a9b2 vdr-markad: 4.2.19 -> 4.2.22 2026-05-21 21:58:57 +02:00
Christian Kögler
db34e0023b vdr: 2.6.9 -> 2.8.1 (#368522) 2026-04-04 00:27:17 +00:00
Christian Kögler
5e579e1ba5 vdrPlugins.femon: remove 2026-04-02 21:49:19 +02:00
Christian Kögler
5ffc7ea43c vdrPlugins.fritzbox: 1.5.4 -> 1.5.8 2026-03-31 22:26:57 +02:00
Christian Kögler
695a0b4895 vdrPlugins.markad: 4.2.17 -> 4.2.19 2026-03-31 22:26:16 +02:00
Christian Kögler
f2b5837737 vdrPlugins.epgsearch: 2.4.5 -> 2.4.6 2026-03-31 22:25:48 +02:00
R. Ryantm
373461925e vdr: 2.6.9 -> 2.8.1 2026-03-30 17:29:28 +00:00
R. Ryantm
b2f7afb7c2 vdrPlugins.softhddevice: 2.4.6 -> 2.4.8 2026-02-20 18:37:14 +00:00
quantenzitrone
f690155396 various: rename references from libXrender to libxrender
this shouldn't create any rebuilds
2026-02-06 00:29:19 +01:00
quantenzitrone
43cdce2c39 various: rename references from libXrandr to libxrandr
this shouldn't create any rebuilds
2026-02-06 00:29:06 +01:00
quantenzitrone
f67b5966bb various: rename references from libXext to libxext
this shouldn't create any rebuilds
2026-02-06 00:25:36 +01:00
quantenzitrone
55280fa564 various: rename references from libX11 to libx11
this shouldn't create any rebuilds
2026-02-06 00:24:34 +01:00
quantenzitrone
866aa37ba3 xcbutilwm: rename references and deprecate alias
this shouldn't create any rebuilds
2026-02-04 22:58:46 +01:00
quantenzitrone
710fcd2bc5 xorgserver: rename references and deprecate alias
this shouldn't create any rebuilds
2026-02-04 22:56:59 +01:00
Sigmanificient
51f01600e7 vdrPlugins: set pname 2026-02-03 23:39:28 +01:00
quantenzitrone
7d8132a92c treewide: remove references to the xorg namespace in pkgs (automated)
this creates some eval errors that will be fixed in the next commit

done with the following script:

```fish
\#!/usr/bin/env fish

set packagesjson (nix eval --impure --json --expr '
let
  lib = import ./lib;
in
import pkgs/servers/x11/xorg/default.nix (lib.mapAttrs (
  name: _:
  if name == "lib" then
    lib
  else if name == "config" then
    { allowAliases = false; }
  else
    name
) (__functionArgs (import pkgs/servers/x11/xorg/default.nix))) { }
' | jq)

set one (grep '^    [A-Za-z0-9_-]*$' pkgs/servers/x11/xorg/default.nix | string trim | string replace -r '$' Z | sort | string sub -e -1)
set two (grep '^  [A-Za-z0-9_-]* = [A-Za-z0-9_-]*;$' pkgs/servers/x11/xorg/default.nix | cut -d= -f1 | string trim | string replace -r '$' Z | sort | string sub -e -1)

for arg in $one $two
    set oname $arg
    set nname (echo $packagesjson | jq -r .$oname)

    if test $nname = null
        echo (set_color red)warn:(set_color normal) unknown package xorg.$oname >&2
        continue
    end

    echo $oname "->" $nname

    # replace basic xorg.$name references
    for file in (rg -F "xorg.$oname" --files-with-matches pkgs)
        # special cases
        sd -F "$oname = xorg.$oname;" "$nname = $nname;" $file

        # replace
        sd -F "xorg.$oname" "$nname" $file

        # fixup function arguments

        # prevent duplicate function args
        if grep -E " ($oname|$nname),\$" $file >/dev/null
            continue
        end

        if grep 'xorg\..' $file >/dev/null # case1: there is more so we can't just remove the function arg

            if grep ' xorg,$' $file >/dev/null
                sd ' xorg,$' " xorg,
                $nname," $file

            else if grep ' xorg ? .*,$' $file >/dev/null
                sd 'xorg( ? .*),$' "xorg\$1,
                $nname," $file

            else
                sd -F 'xorg,' "$nname,
                xorg," $file
            end

        else # case there is no more xorg..* so we can just replace the function arg
            sd 'xorg(| ? .*),.*$' "$nname," $file
        end
    end
end

nix fmt
```
2026-01-25 22:28:09 +01:00
Christian Kögler
2b7e417dce vdrPlugins.markad: 4.2.16 -> 4.2.17 (#475190) 2025-12-30 03:59:33 +00:00
R. Ryantm
100da021c1 vdrPlugins.markad: 4.2.16 -> 4.2.17 2025-12-30 00:33:38 +00:00
R. Ryantm
37d37eebb3 vdrPlugins.epgsearch: 2.4.4 -> 2.4.5 2025-12-30 00:31:56 +00:00
Ihar Hrachyshka
375419f94c vdr: don't use wide with for meta 2025-12-14 15:41:56 -05:00
Ihar Hrachyshka
567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00
R. Ryantm
7c12970a71 vdrPlugins.markad: 4.2.15 -> 4.2.16 2025-12-01 00:51:03 +00:00
Christian Kögler
d32a640a48 vdrPlugins: fix Nix expression for vdr plugins 2025-09-06 22:49:52 +02:00
R. Ryantm
a96d5a3b0b vdrPlugins.softhddevice: 2.4.5 -> 2.4.6 2025-08-25 18:46:26 +00:00
Christian Kögler
1742243d0f vdrPlugins.epgsearch: 2.4.3 -> 2.4.4 (#434344) 2025-08-17 03:04:47 +02:00
R. Ryantm
58c49a665d vdrPlugins.markad: 4.2.14 -> 4.2.15 2025-08-17 00:34:20 +00:00
R. Ryantm
5821facf41 vdrPlugins.epgsearch: 2.4.3 -> 2.4.4 2025-08-17 00:31:20 +00:00
Wolfgang Walther
5a0711127c treewide: run nixfmt 1.0.0 2025-07-24 13:55:40 +02:00
R. Ryantm
1b1eb2bfcd vdrPlugins.markad: 4.2.12 -> 4.2.14 2025-06-23 00:30:24 +00:00
TomaSajt
a969291ab1 treewide: use https when meta.homepage redirects to https 2025-06-06 16:32:11 +02:00
Anton Mosich
874b1d39f6 vdrPlugins.fritzbox: pin boost to 1.86 2025-05-09 21:57:47 +02:00
Christian Kögler
f316d867da vdrPlugins.nopacity: 1.1.18 -> 1.1.19 2025-04-27 14:31:51 +02:00
Christian Kögler
9994606e6c vdrPlugins.markad: 4.2.10 -> 4.2.12 2025-04-27 14:31:33 +02:00
Winter
a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e458
2025-04-08 02:57:25 -04:00
Pol Dellaiera
65a333600d treewide: replace rev with tag 2025-04-07 16:57:22 +02:00
R. Ryantm
19d8da538d vdrPlugins.softhddevice: 2.4.4 -> 2.4.5 2025-03-29 12:38:46 +00:00
Christian Kögler
90e4449d4f vdrPlugins.markad: 4.2.8 -> 4.2.10 (#390545) 2025-03-17 06:44:27 +01:00
R. Ryantm
88724622cc vdrPlugins.markad: 4.2.8 -> 4.2.10 2025-03-17 00:40:11 +00:00
R. Ryantm
387babd9fb vdrPlugins.streamdev: 0.6.3 -> 0.6.4 2025-03-17 00:34:44 +00:00
R. Ryantm
e8ac482ec7 vdrPlugins.softhddevice: 2.4.3 -> 2.4.4 2025-02-15 22:27:52 +00:00
R. Ryantm
aab32ab499 vdrPlugins.softhddevice: 2.4.2 -> 2.4.3 2025-02-02 02:39:39 +00:00
R. Ryantm
7ee444227b vdrPlugins.softhddevice: 2.4.1 -> 2.4.2 2025-01-19 15:08:27 +00:00