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: 4d510022166f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 78a6ee6cfc59
Choose a head ref
  • 5 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 2, 2018

  1. ansible_2_5: 2.5.2 -> 2.5.11

    sengaya committed Nov 2, 2018
    Copy the full SHA
    de8a3e3 View commit details
  2. ansible_2_6: 2.6.2 -> 2.6.7

    sengaya committed Nov 2, 2018
    Copy the full SHA
    e63509a View commit details
  3. ansible_2_7: init at 2.7.1

    sengaya committed Nov 2, 2018
    Copy the full SHA
    c0d30e5 View commit details
  4. Copy the full SHA
    a3739a9 View commit details

Commits on Nov 3, 2018

  1. Merge pull request #48082 from sengaya/ansible-2.7

    ansible: Update to latest supported releases
    c0bw3b authored Nov 3, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    78a6ee6 View commit details
Showing with 15 additions and 5 deletions.
  1. +4 −0 pkgs/development/tools/ansible-lint/default.nix
  2. +10 −5 pkgs/tools/admin/ansible/default.nix
  3. +1 −0 pkgs/top-level/all-packages.nix
4 changes: 4 additions & 0 deletions pkgs/development/tools/ansible-lint/default.nix
Original file line number Diff line number Diff line change
@@ -19,6 +19,10 @@ pythonPackages.buildPythonPackage rec {
patchShebangs bin/ansible-lint
'';

preBuild = ''
export HOME="$TMP"
'';

checkPhase = ''
nosetests test
'';
15 changes: 10 additions & 5 deletions pkgs/tools/admin/ansible/default.nix
Original file line number Diff line number Diff line change
@@ -53,15 +53,20 @@ in rec {
};

ansible_2_5 = generic {
version = "2.5.2";
sha256 = "1r9sq30xz3jrvx6yqssj5wmkml1f75rx1amd7g89f3ryngrq6m59";
version = "2.5.11";
sha256 = "07rhgkl3a2ba59rqh9pyz1p661gc389shlwa2sw1m6wwifg4lm24";
};

ansible_2_6 = generic {
version = "2.6.2";
sha256 = "1y5gd9h641p6pphwd7j99yyqglyj23rkmid7wgzk62611754qzkl";
version = "2.6.7";
sha256 = "10pakw9k9wd3cy1qk3ah2253ph7c7h3qzpal4k0s5lschzgy2fh0";
};

ansible2 = ansible_2_6;
ansible_2_7 = generic {
version = "2.7.1";
sha256 = "0fg95x2nr3j4rwnlyd2n03h91xx9fssi34c32356vk3z6ir395g7";
};

ansible2 = ansible_2_7;
ansible = ansible2;
}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -8061,6 +8061,7 @@ with pkgs;
ansible_2_4
ansible_2_5
ansible_2_6
ansible_2_7
ansible2
ansible;