From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from dude02.hi.pengutronix.de ([2001:67c:670:100:1d::28] helo=dude02.pengutronix.de.) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1jrKJc-0000xB-00 for ptxdist@pengutronix.de; Fri, 03 Jul 2020 13:57:12 +0200 From: Philipp Zabel Date: Fri, 3 Jul 2020 13:57:01 +0200 Message-Id: <20200703115710.30041-1-p.zabel@pengutronix.de> MIME-Version: 1.0 Subject: [ptxdist] [PATCH v2 01/10] python3-attrs: new package List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Signed-off-by: Philipp Zabel --- rules/python3-attrs.in | 8 ++++++ rules/python3-attrs.make | 54 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 rules/python3-attrs.in create mode 100644 rules/python3-attrs.make diff --git a/rules/python3-attrs.in b/rules/python3-attrs.in new file mode 100644 index 000000000000..98ff9134a306 --- /dev/null +++ b/rules/python3-attrs.in @@ -0,0 +1,8 @@ +## SECTION=python3 + +config PYTHON3_ATTRS + tristate + select PYTHON3 + prompt "attrs" + help + attrs: Classes Without Boilerplate diff --git a/rules/python3-attrs.make b/rules/python3-attrs.make new file mode 100644 index 000000000000..ba25f8db33e4 --- /dev/null +++ b/rules/python3-attrs.make @@ -0,0 +1,54 @@ +# -*-makefile-*- +# +# Copyright (C) 2020 by Philipp Zabel +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +PACKAGES-$(PTXCONF_PYTHON3_ATTRS) += python3-attrs + +# +# Paths and names +# +PYTHON3_ATTRS_VERSION := 19.3.0 +PYTHON3_ATTRS_MD5 := 5b2db50fcc31be34d32798183c9bd062 +PYTHON3_ATTRS := attrs-$(PYTHON3_ATTRS_VERSION) +PYTHON3_ATTRS_SUFFIX := tar.gz +PYTHON3_ATTRS_URL := https://pypi.python.org/packages/source/a/attrs/$(PYTHON3_ATTRS).$(PYTHON3_ATTRS_SUFFIX) +PYTHON3_ATTRS_SOURCE := $(SRCDIR)/$(PYTHON3_ATTRS).$(PYTHON3_ATTRS_SUFFIX) +PYTHON3_ATTRS_DIR := $(BUILDDIR)/$(PYTHON3_ATTRS) +PYTHON3_ATTRS_LICENSE := MIT +PYTHON3_ATTRS_LICENSE_FILES := \ + file://LICENSE;md5=d4ab25949a73fe7d4fdee93bcbdbf8ff + +# ---------------------------------------------------------------------------- +# Prepare +# ---------------------------------------------------------------------------- + +PYTHON3_ATTRS_CONF_TOOL := python3 + +# ---------------------------------------------------------------------------- +# Target-Install +# ---------------------------------------------------------------------------- + +$(STATEDIR)/python3-attrs.targetinstall: + @$(call targetinfo) + + @$(call install_init, python3-attrs) + @$(call install_fixup, python3-attrs, PRIORITY, optional) + @$(call install_fixup, python3-attrs, SECTION, base) + @$(call install_fixup, python3-attrs, AUTHOR, "Philipp Zabel ") + @$(call install_fixup, python3-attrs, DESCRIPTION, missing) + + @$(call install_glob, python3-attrs, 0, 0, -, \ + /usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages,, *.py) + + @$(call install_finish, python3-attrs) + + @$(call touch) + +# vim: syntax=make -- 2.20.1 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de