/
UCS
/
openwrt_packages
Обзор
Документация
Войти
/
UCS
/
openwrt_packages
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
lang/python/python-pyfuse3/Makefile
48 строк
1 KB
Jeffery To
python-pyfuse3: Update to 3.3.0, update list of dependencies
24 авг 2023, 12:20
24 авг 2023, 12:20
a9b23f4
Код
Авторство
О чём код?
# # Copyright (C) 2022 Julien Malik <julien.malik@paraiso.me> # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=python-pyfuse3 PKG_VERSION:=3.3.0 PKG_RELEASE:=1 PYPI_NAME:=pyfuse3 PKG_HASH:=2b31fe412479f9620da2067dd739ed23f4cc37364224891938dedf7766e573bd PKG_LICENSE:=LGPL-2.0-or-later PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Julien Malik <julien.malik@paraiso.me> include ../pypi.mk include $(INCLUDE_DIR)/package.mk include ../python3-package.mk define Package/python3-pyfuse3 SECTION:=lang CATEGORY:=Languages SUBMENU:=Python TITLE:=libfuse 3 bindings with async I/O support URL:=https://github.com/libfuse/pyfuse3 DEPENDS:= \ +python3-light \ +python3-asyncio \ +python3-logging \ +python3-trio \ +libfuse3 endef define Package/python3-pyfuse3/description pyfuse3 is a set of Python 3 bindings for libfuse 3. It provides an asynchronous API compatible with Trio and asyncio, and enables you to easily write a full-featured Linux filesystem in Python. endef $(eval $(call Py3Package,python3-pyfuse3)) $(eval $(call BuildPackage,python3-pyfuse3)) $(eval $(call BuildPackage,python3-pyfuse3-src))