diff options
author | Jeffery To <jeffery.to@gmail.com> | 2020-04-01 22:21:16 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2020-04-02 14:57:30 +0800 |
commit | 658b1b67587c4698f6a4c182e9afea7cb5fba2ee (patch) | |
tree | 94f402f8080841dc3a6c7f4a701d7aeb21a6f6b2 /lang/python/passlib | |
parent | c37b15e1c49cf27de8f34f43e93a7a5c184be9e0 (diff) |
python-libraries: Remove Python 2 variants
The Python 2 variants will be added to the abandoned packages feed.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'lang/python/passlib')
-rw-r--r-- | lang/python/passlib/Makefile | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/lang/python/passlib/Makefile b/lang/python/passlib/Makefile index 144939f06..bba473f68 100644 --- a/lang/python/passlib/Makefile +++ b/lang/python/passlib/Makefile @@ -14,7 +14,6 @@ PKG_HASH:=8d666cef936198bc2ab47ee9b0410c94adf2ba798e5a84bf220be079ae7ab6a8 include ../pypi.mk include $(INCLUDE_DIR)/package.mk -include ../python-package.mk include ../python3-package.mk define Package/passlib/Default @@ -25,37 +24,24 @@ define Package/passlib/Default URL:=https://bitbucket.org/ecollins/passlib endef -define Package/python-passlib -$(call Package/passlib/Default) - DEPENDS:=+PACKAGE_python-passlib:python +PACKAGE_python-passlib:python-dateutil - VARIANT:=python -endef - define Package/python3-passlib $(call Package/passlib/Default) DEPENDS:=+PACKAGE_python3-passlib:python3 +PACKAGE_python3-passlib:python3-dateutil VARIANT:=python3 endef -define Package/python-passlib/description +define Package/python3-passlib/description Passlib is a password hashing library for Python 2 & 3, which provides cross-platform implementations of over 30 password hashing algorithms, as well as a framework for managing existing password hashes. It’s designed to be useful for a wide range of tasks, from verifying a hash found in /etc/shadow, to providing full-strength password hashing for multi-user applications. -endef - -define Package/python3-passlib/description -$(call Package/python-passlib/description) . (Variant for Python3) endef -$(eval $(call PyPackage,python-passlib)) $(eval $(call Py3Package,python3-passlib)) -$(eval $(call BuildPackage,python-passlib)) -$(eval $(call BuildPackage,python-passlib-src)) $(eval $(call BuildPackage,python3-passlib)) $(eval $(call BuildPackage,python3-passlib-src)) |