From c7d07ecaa2e132d39675059c24009403b501eff4 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 27 May 2022 01:08:16 +0200 Subject: [PATCH 1/3] ansible_2_12: 2.12.5 -> 2.12.6 https://groups.google.com/g/ansible-announce/c/81wcXfiMyzA https://github.com/ansible/ansible/blob/v2.12.6/changelogs/CHANGELOG-v2.12.rst --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 187b6fedb479..229bc0805fa4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14807,10 +14807,10 @@ with pkgs; ansible = ansible_2_12; ansible_2_13 = python3Packages.toPythonApplication python3Packages.ansible-core; ansible_2_12 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec { - version = "2.12.5"; + version = "2.12.6"; src = oldAttrs.src.override { inherit version; - hash = "sha256-HMyZRPEBMxra0e1A1axmqBSRMwUq402wJnp0qnO+67M="; + hash = "sha256-XzZuhRFZ2Pcs5o0yuMDt2lbuU3wB6faOyjgr0VEK9l0="; }; })); From df97614d21c1c78afafb0d3a4c82862ef2eb9512 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 27 May 2022 01:10:57 +0200 Subject: [PATCH 2/3] ansible, ansible_2_12: add meta.changelog --- pkgs/development/python-modules/ansible/core.nix | 1 + pkgs/top-level/all-packages.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/ansible/core.nix b/pkgs/development/python-modules/ansible/core.nix index e1e198ce1791..32ceb955629f 100644 --- a/pkgs/development/python-modules/ansible/core.nix +++ b/pkgs/development/python-modules/ansible/core.nix @@ -73,6 +73,7 @@ buildPythonPackage rec { doCheck = false; meta = with lib; { + changelog = "https://github.com/ansible/ansible/blob/v${version}/changelogs/CHANGELOG-v${lib.versions.majorMinor version}.rst"; description = "Radically simple IT automation"; homepage = "https://www.ansible.com"; license = licenses.gpl3Plus; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 229bc0805fa4..ec8e79255774 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14812,6 +14812,7 @@ with pkgs; inherit version; hash = "sha256-XzZuhRFZ2Pcs5o0yuMDt2lbuU3wB6faOyjgr0VEK9l0="; }; + meta.changelog = "https://github.com/ansible/ansible/blob/v${version}/changelogs/CHANGELOG-v${lib.versions.majorMinor version}.rst"; })); ansible-doctor = with python3.pkgs; toPythonApplication ansible-doctor; From 2d0f97be21750797ff946c644202b12cd317397d Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 27 May 2022 01:11:45 +0200 Subject: [PATCH 3/3] ansible: drop maintainership I have been using a pip/virtualenv based workflow with ansible for a long time, with colleagues that sadly wouldn't appreciate Nix. I haven't used this package for a long time and maybe there is someone out there who will fill this spot better than I could. --- pkgs/development/python-modules/ansible/core.nix | 4 ++-- pkgs/development/python-modules/ansible/default.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ansible/core.nix b/pkgs/development/python-modules/ansible/core.nix index 32ceb955629f..d8111e13d6fa 100644 --- a/pkgs/development/python-modules/ansible/core.nix +++ b/pkgs/development/python-modules/ansible/core.nix @@ -51,7 +51,7 @@ buildPythonPackage rec { jinja2 packaging pyyaml - resolvelib + resolvelib # This library is a PITA, since ansible requires a very old version of it # optional dependencies junit-xml lxml @@ -77,6 +77,6 @@ buildPythonPackage rec { description = "Radically simple IT automation"; homepage = "https://www.ansible.com"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ hexa ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/ansible/default.nix b/pkgs/development/python-modules/ansible/default.nix index 6ca283a6e40e..802e7ee72c7b 100644 --- a/pkgs/development/python-modules/ansible/default.nix +++ b/pkgs/development/python-modules/ansible/default.nix @@ -80,6 +80,6 @@ buildPythonPackage { homepage = "https://www.ansible.com"; changelog = "https://github.com/ansible-community/ansible-build-data/blob/${version}/${lib.versions.major version}/CHANGELOG-v${lib.versions.major version}.rst"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ hexa ]; + maintainers = with maintainers; [ ]; }; }