Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Doran <sdoran@redhat.com>2021-05-18 23:12:32 +0300
committerGitHub <noreply@github.com>2021-05-18 23:12:32 +0300
commitc0cb353ce1f735d514eb59a0783a51aa0ddd13e8 (patch)
treede5d0f65b54e9719349ba1048260d433c0f420e9 /packaging
parent4bf420706b2bf8591366e9eadf0db0afc6eccb17 (diff)
Remove PyCrypto (#74699)
* Remove PyCrypto from setup.py and packaging script * Remove mention of pycrpto from installation docs * Remove PyCrypto from vault * Remove pycryto constraint and unit test requirement * Remove PyCrypto tests from unit tests * Add docs and fix warning message * Remove section about cryptography library in Ansible Vault docs
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/debian/rules8
1 files changed, 0 insertions, 8 deletions
diff --git a/packaging/debian/rules b/packaging/debian/rules
index 8bb0dde5cbf..2c0231c6377 100755
--- a/packaging/debian/rules
+++ b/packaging/debian/rules
@@ -7,11 +7,3 @@ DEB_PYTHON_DISTUTILS_INSTALLDIR_SKEL = /usr/lib/python3/dist-packages/
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
-
-# dist-packages for the modern distro, site-packages for the older (e.g: Ubuntu 14.04)
-ifeq ($(shell lsb_release -cs), precise)
- export ANSIBLE_CRYPTO_BACKEND = pycrypto
-endif
-ifeq ($(shell lsb_release -cs), trusty)
- export ANSIBLE_CRYPTO_BACKEND = pycrypto
-endif