From 43992775882e8379be1864338de1df993a74b29f Mon Sep 17 00:00:00 2001 From: Jorge Gallegos Date: Wed, 20 Mar 2024 14:01:35 -0700 Subject: [PATCH] Adding community.crypto, removing requirements.yml The dependency is already packaged. The file requirements.yml is not used anywhere that I can see, just leaving dependency info in galaxy.yml Signed-off-by: Jorge Gallegos --- ansible-collection-redhatci-ocp.spec | 8 ++++++-- galaxy.yml | 1 + requirements.yml | 10 ---------- 3 files changed, 7 insertions(+), 12 deletions(-) delete mode 100644 requirements.yml diff --git a/ansible-collection-redhatci-ocp.spec b/ansible-collection-redhatci-ocp.spec index 7891f2a0e..7c818605f 100644 --- a/ansible-collection-redhatci-ocp.spec +++ b/ansible-collection-redhatci-ocp.spec @@ -3,7 +3,7 @@ %global forgeurl https://github.com/%{org}/%{repo} Name: %{repo} -Version: 0.4.EPOCH +Version: 0.5.EPOCH Release: VERS%{?dist} Summary: Red Hat OCP CI Collection for Ansible @@ -16,6 +16,7 @@ BuildArch: noarch Requires: ansible-collection-ansible-posix Requires: ansible-collection-ansible-utils +Requires: ansible-collection-community-crypto Requires: ansible-collection-community-general Requires: ansible-collection-community-kubernetes Requires: ansible-collection-community-libvirt @@ -50,7 +51,10 @@ find -type f ! -executable -name '*.py' -print -exec sed -i -e '1{\@^#!.*@d}' '{ %changelog -* Mon Feb 12 2024 Tony Garcia - 0.4.EPOCH-VER +* Wed Mar 20 2024 Jorge A Gallegos - 0.5.EPOCH-VERS +- Adding community.crypto dependency + +* Mon Feb 12 2024 Tony Garcia - 0.4.EPOCH-VERS - Add requirements * Tue Nov 21 2023 Frederic Lepied 0.3.EPOCH-VERS diff --git a/galaxy.yml b/galaxy.yml index 3805896fa..160d93074 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -98,6 +98,7 @@ license_file: '' dependencies: "ansible.posix": "*" "ansible.utils": "*" + "community.crypto": "2.18.0" "community.general": "7.0.1" "community.kubernetes": "1.2.1" "community.libvirt": "*" diff --git a/requirements.yml b/requirements.yml deleted file mode 100644 index b34ea8793..000000000 --- a/requirements.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -collections: - - ansible.posix - - ansible.utils - - community.crypto - - community.general - - community.kubernetes - - community.libvirt - - containers.podman -...