Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a2c2c385be38
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e49c77fe064f
Choose a head ref
  • 5 commits
  • 3 files changed
  • 2 contributors

Commits on Jun 9, 2019

  1. ansible: 2.7.6 -> 2.8.1

    gabibbo97 authored and marsam committed Jun 9, 2019
    Copy the full SHA
    646ed20 View commit details
  2. ansible_2_7: 2.7.10 -> 2.7.11

    marsam committed Jun 9, 2019
    Copy the full SHA
    69a4514 View commit details
  3. ansible_2_6: 2.6.15 -> 2.6.17

    marsam committed Jun 9, 2019
    Copy the full SHA
    e38bbb0 View commit details
  4. ansible_2_5: drop

    Ansible 2.5 has reached EOL in May 21, 2019
    https://access.redhat.com/support/policy/updates/ansible-engine
    marsam committed Jun 9, 2019
    Copy the full SHA
    30f2074 View commit details
  5. Merge pull request #61664 from gabibbo97/ansible_2.8.0

    ansible: 2.7.6 -> 2.8.1
    marsam authored Jun 9, 2019
    Copy the full SHA
    e49c77f View commit details
Showing with 9 additions and 10 deletions.
  1. +2 −2 pkgs/development/python-modules/ansible/default.nix
  2. +7 −7 pkgs/tools/admin/ansible/default.nix
  3. +0 −1 pkgs/top-level/all-packages.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/ansible/default.nix
Original file line number Diff line number Diff line change
@@ -18,11 +18,11 @@

buildPythonPackage rec {
pname = "ansible";
version = "2.7.9";
version = "2.8.1";

src = fetchurl {
url = "https://releases.ansible.com/ansible/${pname}-${version}.tar.gz";
sha256 = "19vyf60zfmnv7frwm96bzqzvia69dysy9apk8bl84vr03ib9vrbf";
sha256 = "0ia4x17ywym3r1m96ar4h0wc2xlylhbjp6x4wzwkh4p2i0x1vmg1";
};

prePatch = ''
14 changes: 7 additions & 7 deletions pkgs/tools/admin/ansible/default.nix
Original file line number Diff line number Diff line change
@@ -3,25 +3,25 @@
{
ansible = with python3Packages; toPythonApplication ansible;

ansible_2_7 = with python3Packages; toPythonApplication ansible;
ansible_2_8 = with python3Packages; toPythonApplication ansible;

ansible_2_6 = with python3Packages; toPythonApplication (ansible.overridePythonAttrs(old: rec {
ansible_2_7 = with python3Packages; toPythonApplication (ansible.overridePythonAttrs(old: rec {
pname = "ansible";
version = "2.6.15";
version = "2.7.11";

src = fetchurl {
url = "https://releases.ansible.com/ansible/${pname}-${version}.tar.gz";
sha256 = "1l4ji9sryfn0l651hy6cf5zqq8fpwi956c7qzjm4sihz5ps6wyhd";
sha256 = "0zipzm9al6k74h88b6zkddpcbxqs4cms7lidid6wn1vx3d3dxrp7";
};
}));

ansible_2_5 = with python3Packages; toPythonApplication (ansible.overridePythonAttrs(old: rec {
ansible_2_6 = with python3Packages; toPythonApplication (ansible.overridePythonAttrs(old: rec {
pname = "ansible";
version = "2.5.15";
version = "2.6.17";

src = fetchurl {
url = "https://releases.ansible.com/ansible/${pname}-${version}.tar.gz";
sha256 = "1w9wfv1s2jq6vkx1hm6n69zwxv2pgjj7nidyg452miwh684jpg7z";
sha256 = "0ixr3g1nb02xblqyk87bzag8sj8phy37m24xflabfl1k2zfh0313";
};
}));
}
1 change: 0 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -8745,7 +8745,6 @@ in

inherit (callPackage ../tools/admin/ansible { })
ansible
ansible_2_5
ansible_2_6
ansible_2_7;