forked from motioneye-project/motioneyeos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bartosz Bilas <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
- Loading branch information
1 parent
4ebfa2d
commit 206eedd
Showing
5 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -256,6 +256,7 @@ F: package/lua-ev/ | |
F: package/orbit/ | ||
|
||
N: Bartosz Bilas <[email protected]> | ||
F: package/python-pyaes/ | ||
F: package/qt5/qt5scxml/ | ||
F: package/qt5/qt5webview/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
config BR2_PACKAGE_PYTHON_PYAES | ||
bool "python-pyaes" | ||
help | ||
Pure-Python Implementation of the AES block-cipher and | ||
common modes of operation. | ||
|
||
https://github.com/ricmoo/pyaes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# md5, sha256 from https://pypi.org/pypi/pyaes/json | ||
md5 20fd5c6e29dcfdd08098e85a859a54ec pyaes-1.6.1.tar.gz | ||
sha256 02c1b1405c38d3c370b085fb952dd8bea3fadcee6411ad99f312cc129c536d8f pyaes-1.6.1.tar.gz | ||
# Locally computed sha256 checksums | ||
sha256 1efe6c78b28b4203d397ea9b68bdc9c658d21cd9afaf8ae8223def83f2a7ebbd LICENSE.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
################################################################################ | ||
# | ||
# python-pyaes | ||
# | ||
################################################################################ | ||
|
||
PYTHON_PYAES_VERSION = 1.6.1 | ||
PYTHON_PYAES_SOURCE = pyaes-$(PYTHON_PYAES_VERSION).tar.gz | ||
PYTHON_PYAES_SITE = https://files.pythonhosted.org/packages/44/66/2c17bae31c906613795711fc78045c285048168919ace2220daa372c7d72 | ||
PYTHON_PYAES_SETUP_TYPE = distutils | ||
PYTHON_PYAES_LICENSE = MIT | ||
PYTHON_PYAES_LICENSE_FILES = LICENSE.txt | ||
|
||
$(eval $(python-package)) |