diff options
author | Sam Doran <sdoran@redhat.com> | 2021-05-18 22:12:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 22:12:32 +0200 |
commit | c0cb353ce1f735d514eb59a0783a51aa0ddd13e8 (patch) | |
tree | de5d0f65b54e9719349ba1048260d433c0f420e9 /packaging | |
parent | Improve and extend changelog logs (#74106) (diff) | |
download | ansible-c0cb353ce1f735d514eb59a0783a51aa0ddd13e8.tar.xz ansible-c0cb353ce1f735d514eb59a0783a51aa0ddd13e8.zip |
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-x | packaging/debian/rules | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/packaging/debian/rules b/packaging/debian/rules index 8bb0dde5cb..2c0231c637 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 |