2016-03-17 18:02:26 +00:00
|
|
|
#
|
2018-01-10 09:35:11 +00:00
|
|
|
# Copyright (C) 2016-2018 OpenWrt.org
|
2016-03-17 18:02:26 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2018-01-10 09:35:11 +00:00
|
|
|
PKG_NAME:=python-attrs
|
2020-11-09 20:47:18 +00:00
|
|
|
PKG_VERSION:=20.3.0
|
2020-08-30 16:55:20 +00:00
|
|
|
PKG_RELEASE:=1
|
2016-03-17 18:02:26 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=attrs
|
2020-11-09 20:47:18 +00:00
|
|
|
PKG_HASH:=832aa3cde19744e49938b91fea06d69ecb9e649c93ba974535d08ad92164f700
|
2018-01-10 09:35:11 +00:00
|
|
|
|
2016-03-17 18:02:26 +00:00
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2016-03-17 18:02:26 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-01-10 07:56:52 +00:00
|
|
|
include ../python3-package.mk
|
2018-01-10 09:35:11 +00:00
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-attrs
|
2018-01-10 09:35:11 +00:00
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
2019-02-20 07:19:26 +00:00
|
|
|
TITLE:=Classes Without Boilerplate
|
2019-03-22 13:48:27 +00:00
|
|
|
URL:=https://www.attrs.org/
|
2020-04-21 17:27:50 +00:00
|
|
|
DEPENDS:=+python3-light
|
2016-03-17 18:02:26 +00:00
|
|
|
endef
|
|
|
|
|
2020-04-01 14:21:16 +00:00
|
|
|
define Package/python3-attrs/description
|
2016-03-17 18:02:26 +00:00
|
|
|
attrs is an MIT-licensed Python package with class decorators that ease
|
|
|
|
the chores of implementing the most common attribute-related object
|
|
|
|
protocols.
|
|
|
|
endef
|
|
|
|
|
2018-01-10 09:35:11 +00:00
|
|
|
$(eval $(call Py3Package,python3-attrs))
|
|
|
|
$(eval $(call BuildPackage,python3-attrs))
|
2018-01-14 14:38:54 +00:00
|
|
|
$(eval $(call BuildPackage,python3-attrs-src))
|