mirror of
https://github.com/openwrt/packages.git
synced 2026-04-17 11:52:29 +00:00
Bump version 3.4.1 -> 3.4.2. Changes since 3.4.1: - Remove the deprecated pyfuse3_asyncio module (long-renamed to pyfuse3.asyncio) - Fix a test failure in test_examples.py - Modernize the build process and add more type annotations Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
#
|
|
# 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.4.2
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=pyfuse3
|
|
PKG_HASH:=0a59031969c4ba51a5ec1b67f3c5c24f641a6a3f8119a86edad56debcb9084d9
|
|
|
|
PKG_LICENSE:=LGPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_MAINTAINER:=Julien Malik <julien.malik@paraiso.me>
|
|
|
|
PKG_BUILD_DEPENDS:=python-cython/host
|
|
|
|
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-urllib \
|
|
+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))
|