Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions lang/python/python-expandvars/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=python-expandvars
PKG_VERSION:=1.1.2
PKG_RELEASE:=1

PYPI_NAME:=expandvars
PKG_HASH:=6c5822b7b756a99a356b915dd1267f52ab8a4efaa135963bd7f4bd5d368f71d7

PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Jean Thomas <jean.thomas@wifirst.fr>

PKG_BUILD_DEPENDS:=python-setuptools/host python-hatchling/host

PKG_HOST_ONLY:=1
HOST_BUILD_DEPENDS:= \
python3/host \
python-build/host

include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/host-build.mk
include ../python3-package.mk
include ../python3-host-build.mk

define Package/python3-expandvars
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=Expand system variables Unix style
URL:=https://github.com/sayanarijit/expandvars/
DEPENDS:= +python3-light
BUILDONLY:=1
endef

define Package/python3-expandvars/description
This module is inspired by GNU bash's variable expansion features.
It can be used as an alternative to Python's os.path.expandvars function.
endef

$(eval $(call Py3Package,python3-expandvars))
$(eval $(call BuildPackage,python3-expandvars))
$(eval $(call BuildPackage,python3-expandvars-src))
$(eval $(call HostBuild))
8 changes: 5 additions & 3 deletions lang/python/python-frozenlist/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=python-frozenlist
PKG_VERSION:=1.4.0
PKG_VERSION:=1.8.0
PKG_RELEASE:=1

PYPI_NAME:=frozenlist
PKG_HASH:=09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251
PKG_HASH:=3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad

PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>

PKG_BUILD_DEPENDS:=python-setuptools/host python-expandvars/host python-cython/host

include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
Expand All @@ -28,7 +30,7 @@ define Package/python3-frozenlist
SUBMENU:=Python
TITLE:=List-like structure
URL:=https://github.com/aio-libs/frozenlist
DEPENDS:=+python3-light
DEPENDS:=+python3-light +libstdcpp
endef

define Package/python3-frozenlist/description
Expand Down
Loading