mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 16:44:31 +04:00
python-userpath: Add new package
The patches have been submitted upstream in https://github.com/ofek/userpath/pull/52 and https://github.com/ofek/userpath/pull/53. From the README: This is a tool for modifying a user's PATH. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
committed by
Tianling Shen
parent
b354a7edbe
commit
5b3e4a4b3f
42
lang/python/python-userpath/Makefile
Normal file
42
lang/python/python-userpath/Makefile
Normal file
@@ -0,0 +1,42 @@
|
||||
#
|
||||
# Copyright (C) 2023 Jeffery To
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=python-userpath
|
||||
PKG_VERSION:=1.9.1
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PYPI_NAME:=userpath
|
||||
PKG_HASH:=ce8176728d98c914b6401781bf3b23fccd968d1647539c8788c7010375e02796
|
||||
|
||||
PKG_LICENSE:=MIT
|
||||
PKG_LICENSE_FILES:=LICENSE.txt
|
||||
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
|
||||
|
||||
PKG_BUILD_DEPENDS:=python-hatchling/host
|
||||
|
||||
include ../pypi.mk
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include ../python3-package.mk
|
||||
|
||||
define Package/python3-userpath
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
SUBMENU:=Python
|
||||
TITLE:=Cross-platform tool for modifying a user's PATH
|
||||
URL:=https://github.com/ofek/userpath
|
||||
DEPENDS:=+python3-light +python3-click +python3-psutil
|
||||
endef
|
||||
|
||||
define Package/python3-userpath/description
|
||||
This is a tool for modifying a user's PATH.
|
||||
endef
|
||||
|
||||
$(eval $(call Py3Package,python3-userpath))
|
||||
$(eval $(call BuildPackage,python3-userpath))
|
||||
$(eval $(call BuildPackage,python3-userpath-src))
|
||||
Reference in New Issue
Block a user