ansible-later: remove (#436531)

authored by Yohann Boniface and committed by GitHub 214a2ee9 6eff03ab

+3 -64
+2
doc/release-notes/rl-2511.section.md
··· 48 49 - Zig 0.12 has been removed. 50 51 - `stalwart-mail` since `0.13.0` "introduces a significant redesign of the MTA’s delivery and queueing subsystem". See [the upgrading announcement for the `0.13.0` release](https://github.com/stalwartlabs/stalwart/blob/89b561b5ca1c5a11f2a768b4a2cfef0f473b7a01/UPGRADING.md#upgrading-from-v012x-and-v011x-to-v013x). 52 53 - Greetd and its original greeters (`tuigreet`, `gtkgreet`, `qtgreet`, `regreet`, `wlgreet`) were moved from `greetd` namespace to top level (`greetd.tuigreet` -> `tuigreet`, `greetd.greetd` -> `greetd`, etc). The original attrs are available for compatibility as passthrus of `greetd`, but will emit a warning. They will be removed in future releases.
··· 48 49 - Zig 0.12 has been removed. 50 51 + - `ansible-later` has been removed because it was discontinued by the author. 52 + 53 - `stalwart-mail` since `0.13.0` "introduces a significant redesign of the MTA’s delivery and queueing subsystem". See [the upgrading announcement for the `0.13.0` release](https://github.com/stalwartlabs/stalwart/blob/89b561b5ca1c5a11f2a768b4a2cfef0f473b7a01/UPGRADING.md#upgrading-from-v012x-and-v011x-to-v013x). 54 55 - Greetd and its original greeters (`tuigreet`, `gtkgreet`, `qtgreet`, `regreet`, `wlgreet`) were moved from `greetd` namespace to top level (`greetd.tuigreet` -> `tuigreet`, `greetd.greetd` -> `greetd`, etc). The original attrs are available for compatibility as passthrus of `greetd`, but will emit a warning. They will be removed in future releases.
-63
pkgs/by-name/an/ansible-later/package.nix
··· 1 - { 2 - lib, 3 - fetchFromGitHub, 4 - python3Packages, 5 - writableTmpDirAsHomeHook, 6 - }: 7 - 8 - python3Packages.buildPythonApplication rec { 9 - pname = "ansible-later"; 10 - version = "4.0.8"; 11 - pyproject = true; 12 - 13 - src = fetchFromGitHub { 14 - owner = "thegeeklab"; 15 - repo = "ansible-later"; 16 - tag = "v${version}"; 17 - hash = "sha256-4ZHCnLeG5gr0UtKQLU+6xnTxUbxnLcmDd51Psnaa42I="; 18 - }; 19 - 20 - pythonRelaxDeps = [ 21 - "python-json-logger" 22 - "yamllint" 23 - ]; 24 - 25 - build-system = with python3Packages; [ 26 - poetry-core 27 - poetry-dynamic-versioning 28 - ]; 29 - 30 - dependencies = with python3Packages; [ 31 - pyyaml 32 - ansible-core 33 - ansible 34 - anyconfig 35 - appdirs 36 - colorama 37 - jsonschema 38 - nested-lookup 39 - pathspec 40 - python-json-logger 41 - toolz 42 - unidiff 43 - yamllint 44 - ]; 45 - 46 - nativeCheckInputs = with python3Packages; [ 47 - pytest-cov-stub 48 - pytest-mock 49 - pytestCheckHook 50 - writableTmpDirAsHomeHook 51 - ]; 52 - 53 - pythonImportsCheck = [ "ansiblelater" ]; 54 - 55 - meta = { 56 - description = "Best practice scanner for Ansible roles and playbooks"; 57 - homepage = "https://github.com/thegeeklab/ansible-later"; 58 - changelog = "https://github.com/thegeeklab/ansible-later/releases/tag/${src.tag}"; 59 - license = lib.licenses.mit; 60 - maintainers = with lib.maintainers; [ tboerger ]; 61 - mainProgram = "ansible-later"; 62 - }; 63 - }
···
+1
pkgs/top-level/aliases.nix
··· 436 animeko = throw "'animeko' has been removed since it is unmaintained"; # Added 2025-08-20 437 ansible_2_14 = throw "Ansible 2.14 goes end of life in 2024/05 and can't be supported throughout the 24.05 release cycle"; # Added 2024-04-11 438 ansible_2_15 = throw "Ansible 2.15 goes end of life in 2024/11 and can't be supported throughout the 24.11 release cycle"; # Added 2024-11-08 439 antennas = throw "antennas has been removed as it only works with tvheadend, which nobody was willing to maintain and was stuck on an unmaintained version that required FFmpeg 4; please see https://github.com/NixOS/nixpkgs/pull/332259 if you are interested in maintaining a newer version"; # Added 2024-08-21 440 androidndkPkgs_21 = throw "androidndkPkgs_21 has been removed, as it is EOL"; # Added 2025-08-09 441 androidndkPkgs_23 = throw "androidndkPkgs_23 has been removed, as it is EOL"; # Added 2025-08-09
··· 436 animeko = throw "'animeko' has been removed since it is unmaintained"; # Added 2025-08-20 437 ansible_2_14 = throw "Ansible 2.14 goes end of life in 2024/05 and can't be supported throughout the 24.05 release cycle"; # Added 2024-04-11 438 ansible_2_15 = throw "Ansible 2.15 goes end of life in 2024/11 and can't be supported throughout the 24.11 release cycle"; # Added 2024-11-08 439 + ansible-later = throw "ansible-later has been discontinued. The author recommends switching to ansible-lint"; # Added 2025-08-24 440 antennas = throw "antennas has been removed as it only works with tvheadend, which nobody was willing to maintain and was stuck on an unmaintained version that required FFmpeg 4; please see https://github.com/NixOS/nixpkgs/pull/332259 if you are interested in maintaining a newer version"; # Added 2024-08-21 441 androidndkPkgs_21 = throw "androidndkPkgs_21 has been removed, as it is EOL"; # Added 2025-08-09 442 androidndkPkgs_23 = throw "androidndkPkgs_23 has been removed, as it is EOL"; # Added 2025-08-09
-1
pkgs/top-level/python-aliases.nix
··· 78 amiibo-py = throw "amiibo-py has been removed because the upstream repository was removed"; # Added 2025-01-13 79 ansible-base = throw "ansible-base has been removed, because it is end of life"; # added 2022-03-30 80 ansible-doctor = throw "ansible-doctor has been promoted to a top-level attribute name: `pkgs.ansible-doctor`"; # Added 2023-05-16 81 - ansible-later = throw "ansible-later has been promoted to a top-level attribute name: `pkgs.ansible-later`"; # Added 2023-05-16 82 ansible-lint = throw "ansible-lint has been promoted to a top-level attribute name: `pkgs.ansible-lint`"; # Added 2023-05-16 83 ansible-navigator = throw "ansible-navigator has been promoted to a top-level attribute name: pkgs.ansible-navigator"; # Added 2024-08-07 84 anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
··· 78 amiibo-py = throw "amiibo-py has been removed because the upstream repository was removed"; # Added 2025-01-13 79 ansible-base = throw "ansible-base has been removed, because it is end of life"; # added 2022-03-30 80 ansible-doctor = throw "ansible-doctor has been promoted to a top-level attribute name: `pkgs.ansible-doctor`"; # Added 2023-05-16 81 ansible-lint = throw "ansible-lint has been promoted to a top-level attribute name: `pkgs.ansible-lint`"; # Added 2023-05-16 82 ansible-navigator = throw "ansible-navigator has been promoted to a top-level attribute name: pkgs.ansible-navigator"; # Added 2024-08-07 83 anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18