mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Changelog: ========== -Fix compatibility with Werkzeug 2.2 and Flask 2.2. #691 -Revert change to expand_login_view that attempted to preserve a dynamic subdomain value. Such values should be handled using app.url_value_preprocessor and app.url_defaults. #691 -Ensure deprecation warnings are present for deprecated features that will be removed in the next feature release. -Use request_loader instead of header_loader. -Use user_loaded_from_request instead of user_loaded_from_header. -Use app.config["LOGIN_DISABLED"] instead of _login_disabled. -Use init_app instead of setup_app. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
16 lines
593 B
BlitzBasic
16 lines
593 B
BlitzBasic
SUMMARY = "User session management for Flask"
|
||
DESCRIPTION = "Flask-Login provides user session management for Flask. \
|
||
It handles the common tasks of logging in, logging out, and remembering \
|
||
your users’ sessions over extended periods of time."
|
||
HOMEPAGE = " https://github.com/maxcountryman/flask-login"
|
||
LICENSE = "MIT"
|
||
LIC_FILES_CHKSUM = "file://LICENSE;md5=8aa87a1cd9fa41d969ad32cfdac2c596"
|
||
|
||
SRC_URI[sha256sum] = "c0a7baa9fdc448cdd3dd6f0939df72eec5177b2f7abe6cb82fc934d29caac9c3"
|
||
|
||
PYPI_PACKAGE = "Flask-Login"
|
||
|
||
inherit pypi setuptools3
|
||
|
||
RDEPENDS:${PN}:class-target = "${PYTHON_PN}-flask"
|