Both of us were working for Turris and using these devices on daily basis. A few of these packages are still required and used by Turris. It would be great if Turris people will take maintainership of these packages, but if they decide not to, I can step in and take them. Since Karel switched from using OpenWrt to NixOS and hopefully, I didn't reveal some secret here, let's take maintainership of his packages. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
36 lines
960 B
Makefile
36 lines
960 B
Makefile
# This is free software, licensed under the GNU General Public License v2.
|
||
# See /LICENSE for more information.
|
||
#
|
||
|
||
include $(TOPDIR)/rules.mk
|
||
|
||
PKG_NAME:=python-appdirs
|
||
PKG_VERSION:=1.4.4
|
||
PKG_RELEASE:=1
|
||
PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
|
||
|
||
PYPI_NAME:=appdirs
|
||
PKG_HASH:=7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41
|
||
PKG_LICENSE:=MIT
|
||
|
||
include ../pypi.mk
|
||
include $(INCLUDE_DIR)/package.mk
|
||
include ../python3-package.mk
|
||
|
||
define Package/python3-appdirs
|
||
SECTION:=lang
|
||
CATEGORY:=Languages
|
||
SUBMENU:=Python
|
||
URL:=https://github.com/ActiveState/appdirs
|
||
TITLE:=Determining platform-specific dirs
|
||
DEPENDS:=+python3-light
|
||
endef
|
||
|
||
define Package/python-appdirs/description
|
||
A small Python module for determining appropriate platform-specific
|
||
dirs, e.g. a "user data dir".
|
||
endef
|
||
|
||
$(eval $(call Py3Package,python3-appdirs))
|
||
$(eval $(call BuildPackage,python3-appdirs))
|
||
$(eval $(call BuildPackage,python3-appdirs-src))
|