mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 14:34:32 +04:00
python-psutil: update to version 5.9.0, fix build on macos
1. updated to 5.9.0 2. psutil can not be built on macos due to build script detects Darwin using sys.platform and changes build logic to build for Darwin, but OpenWrt is Linux. This commit add patch to allow redefining sys.platform and uses env var TARGET_SYS_PLATFORM to specify linux as sys platfrom. Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
This commit is contained in:
committed by
Rosen Penev
parent
7c82525cd6
commit
45b8ef2822
@@ -8,11 +8,11 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=python-psutil
|
||||
PKG_VERSION:=5.8.0
|
||||
PKG_VERSION:=5.9.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PYPI_NAME:=psutil
|
||||
PKG_HASH:=0c9ccb99ab76025f2f0bbecf341d4656e9c1351db8cc8a03ccd62e318ab4b5c6
|
||||
PKG_HASH:=869842dbd66bb80c3217158e629d6fceaecc3a3166d3d1faee515b05dd26ca25
|
||||
|
||||
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
|
||||
PKG_LICENSE:=BSD 3-Clause
|
||||
@@ -38,6 +38,9 @@ define Package/python3-psutil/description
|
||||
on running processes and system utilization.
|
||||
endef
|
||||
|
||||
PYTHON3_VARS += \
|
||||
TARGET_SYS_PLATFORM=linux
|
||||
|
||||
$(eval $(call Py3Package,python3-psutil))
|
||||
$(eval $(call BuildPackage,python3-psutil))
|
||||
$(eval $(call BuildPackage,python3-psutil-src))
|
||||
|
||||
Reference in New Issue
Block a user