From 88df983251669711c9d1777116e2c88417f0396c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moise=CC=81s=20Guimara=CC=83es?= Date: Mon, 7 Nov 2016 21:09:08 -0300 Subject: [PATCH] moves include.am into wolfcrypt-py folder --- wrapper/include.am | 29 ++--------------------------- wrapper/python/wolfcrypt/include.am | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 27 deletions(-) create mode 100644 wrapper/python/wolfcrypt/include.am diff --git a/wrapper/include.am b/wrapper/include.am index 18ec1bcd2..9cbcff751 100644 --- a/wrapper/include.am +++ b/wrapper/include.am @@ -29,30 +29,5 @@ EXTRA_DIST+= wrapper/CSharp/wolfSSL_CSharp/Properties/Resources.resx EXTRA_DIST+= wrapper/CSharp/wolfSSL_CSharp/wolfSSL.cs EXTRA_DIST+= wrapper/CSharp/wolfSSL_CSharp/wolfSSL_CSharp.csproj -# wolfcrypt python wrapper files -EXTRA_DIST+= wrapper/python/wolfcrypt/.gitignore -EXTRA_DIST+= wrapper/python/wolfcrypt/docs/asymmetric.rst -EXTRA_DIST+= wrapper/python/wolfcrypt/docs/conf.py -EXTRA_DIST+= wrapper/python/wolfcrypt/docs/digest.rst -EXTRA_DIST+= wrapper/python/wolfcrypt/docs/index.rst -EXTRA_DIST+= wrapper/python/wolfcrypt/docs/mac.rst -EXTRA_DIST+= wrapper/python/wolfcrypt/docs/Makefile -EXTRA_DIST+= wrapper/python/wolfcrypt/docs/random.rst -EXTRA_DIST+= wrapper/python/wolfcrypt/docs/symmetric.rst -EXTRA_DIST+= wrapper/python/wolfcrypt/LICENSING.rst -EXTRA_DIST+= wrapper/python/wolfcrypt/MANIFEST.in -EXTRA_DIST+= wrapper/python/wolfcrypt/README.rst -EXTRA_DIST+= wrapper/python/wolfcrypt/requirements-testing.txt -EXTRA_DIST+= wrapper/python/wolfcrypt/setup.py -EXTRA_DIST+= wrapper/python/wolfcrypt/test/test_ciphers.py -EXTRA_DIST+= wrapper/python/wolfcrypt/test/test_hashes.py -EXTRA_DIST+= wrapper/python/wolfcrypt/test/test_random.py -EXTRA_DIST+= wrapper/python/wolfcrypt/tox.ini -EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/__about__.py -EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/__init__.py -EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/build_ffi.py -EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/ciphers.py -EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/exceptions.py -EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/hashes.py -EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/random.py -EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/utils.py +# wolfcrypt python wrapper +include wrapper/python/wolfcrypt/include.am diff --git a/wrapper/python/wolfcrypt/include.am b/wrapper/python/wolfcrypt/include.am new file mode 100644 index 000000000..0bec0a51a --- /dev/null +++ b/wrapper/python/wolfcrypt/include.am @@ -0,0 +1,28 @@ +# wolfcrypt python wrapper files + +EXTRA_DIST+= wrapper/python/wolfcrypt/.gitignore +EXTRA_DIST+= wrapper/python/wolfcrypt/docs/asymmetric.rst +EXTRA_DIST+= wrapper/python/wolfcrypt/docs/conf.py +EXTRA_DIST+= wrapper/python/wolfcrypt/docs/digest.rst +EXTRA_DIST+= wrapper/python/wolfcrypt/docs/index.rst +EXTRA_DIST+= wrapper/python/wolfcrypt/docs/mac.rst +EXTRA_DIST+= wrapper/python/wolfcrypt/docs/Makefile +EXTRA_DIST+= wrapper/python/wolfcrypt/docs/random.rst +EXTRA_DIST+= wrapper/python/wolfcrypt/docs/symmetric.rst +EXTRA_DIST+= wrapper/python/wolfcrypt/LICENSING.rst +EXTRA_DIST+= wrapper/python/wolfcrypt/MANIFEST.in +EXTRA_DIST+= wrapper/python/wolfcrypt/README.rst +EXTRA_DIST+= wrapper/python/wolfcrypt/requirements-testing.txt +EXTRA_DIST+= wrapper/python/wolfcrypt/setup.py +EXTRA_DIST+= wrapper/python/wolfcrypt/test/test_ciphers.py +EXTRA_DIST+= wrapper/python/wolfcrypt/test/test_hashes.py +EXTRA_DIST+= wrapper/python/wolfcrypt/test/test_random.py +EXTRA_DIST+= wrapper/python/wolfcrypt/tox.ini +EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/__about__.py +EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/__init__.py +EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/build_ffi.py +EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/ciphers.py +EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/exceptions.py +EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/hashes.py +EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/random.py +EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/utils.py