* [ptxdist] [PATCH] python3-setuptools: new package
@ 2019-11-19 14:53 Lars Pedersen
2019-11-25 6:46 ` Michael Olbrich
0 siblings, 1 reply; 2+ messages in thread
From: Lars Pedersen @ 2019-11-19 14:53 UTC (permalink / raw)
To: ptxdist; +Cc: Lars Pedersen
Add python3-setuptools to target as some packages requires
the pkg_resources module.
Signed-off-by: Lars Pedersen <lapeddk@gmail.com>
---
rules/python3-setuptools.in | 10 ++++++
rules/python3-setuptools.make | 60 +++++++++++++++++++++++++++++++++++
2 files changed, 70 insertions(+)
create mode 100644 rules/python3-setuptools.in
create mode 100644 rules/python3-setuptools.make
diff --git a/rules/python3-setuptools.in b/rules/python3-setuptools.in
new file mode 100644
index 000000000..fbed4cccb
--- /dev/null
+++ b/rules/python3-setuptools.in
@@ -0,0 +1,10 @@
+## SECTION=python3
+
+config PYTHON3_SETUPTOOLS
+ tristate
+ prompt "python3-setuptools"
+ select PYTHON3
+ help
+ Setuptools is a package development process library designed to
+ facilitate packaging Python projects by enhancing the Python
+ standard library distutils.
diff --git a/rules/python3-setuptools.make b/rules/python3-setuptools.make
new file mode 100644
index 000000000..7200ae4dc
--- /dev/null
+++ b/rules/python3-setuptools.make
@@ -0,0 +1,60 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2019 by Lars Pedersen <lapeddk@gmail.com>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_SETUPTOOLS) += python3-setuptools
+
+#
+# Paths and names
+#
+PYTHON3_SETUPTOOLS_VERSION := 41.6.0
+PYTHON3_SETUPTOOLS_MD5 := 5585a55bfc28474ef13cc0b1819c5a46
+PYTHON3_SETUPTOOLS := setuptools-$(PYTHON3_SETUPTOOLS_VERSION)
+PYTHON3_SETUPTOOLS_SUFFIX := zip
+PYTHON3_SETUPTOOLS_URL := https://files.pythonhosted.org/packages/source/s/setuptools/$(PYTHON3_SETUPTOOLS).$(PYTHON3_SETUPTOOLS_SUFFIX)
+PYTHON3_SETUPTOOLS_SOURCE := $(SRCDIR)/$(PYTHON3_SETUPTOOLS).$(PYTHON3_SETUPTOOLS_SUFFIX)
+PYTHON3_SETUPTOOLS_DIR := $(BUILDDIR)/$(PYTHON3_SETUPTOOLS)
+PYTHON3_SETUPTOOLS_LICENSE := PSF AND ZPL
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+PYTHON3_SETUPTOOLS_CONF_TOOL := python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-setuptools.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, python3-setuptools)
+ @$(call install_fixup, python3-setuptools,PRIORITY,optional)
+ @$(call install_fixup, python3-setuptools,SECTION,base)
+ @$(call install_fixup, python3-setuptools,AUTHOR,"Lars Pedersen <lapeddk@gmail.com>")
+ @$(call install_fixup, python3-setuptools,DESCRIPTION,missing)
+
+ @$(call install_glob,python3-setuptools, 0, 0, -, \
+ /usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages,, *.py)
+
+ @$(call install_finish, python3-setuptools)
+
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Clean
+# ----------------------------------------------------------------------------
+
+#$(STATEDIR)/python3-setuptools.clean:
+# @$(call targetinfo)
+# @$(call clean_pkg, PYTHON3_SETUPTOOLS)
+
+# vim: syntax=make
--
2.23.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [ptxdist] [PATCH] python3-setuptools: new package
2019-11-19 14:53 [ptxdist] [PATCH] python3-setuptools: new package Lars Pedersen
@ 2019-11-25 6:46 ` Michael Olbrich
0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2019-11-25 6:46 UTC (permalink / raw)
To: ptxdist
On Tue, Nov 19, 2019 at 03:53:43PM +0100, Lars Pedersen wrote:
> Add python3-setuptools to target as some packages requires
> the pkg_resources module.
>
> Signed-off-by: Lars Pedersen <lapeddk@gmail.com>
> ---
> rules/python3-setuptools.in | 10 ++++++
> rules/python3-setuptools.make | 60 +++++++++++++++++++++++++++++++++++
> 2 files changed, 70 insertions(+)
> create mode 100644 rules/python3-setuptools.in
> create mode 100644 rules/python3-setuptools.make
>
> diff --git a/rules/python3-setuptools.in b/rules/python3-setuptools.in
> new file mode 100644
> index 000000000..fbed4cccb
> --- /dev/null
> +++ b/rules/python3-setuptools.in
> @@ -0,0 +1,10 @@
> +## SECTION=python3
> +
> +config PYTHON3_SETUPTOOLS
> + tristate
> + prompt "python3-setuptools"
> + select PYTHON3
> + help
> + Setuptools is a package development process library designed to
> + facilitate packaging Python projects by enhancing the Python
> + standard library distutils.
> diff --git a/rules/python3-setuptools.make b/rules/python3-setuptools.make
> new file mode 100644
> index 000000000..7200ae4dc
> --- /dev/null
> +++ b/rules/python3-setuptools.make
> @@ -0,0 +1,60 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2019 by Lars Pedersen <lapeddk@gmail.com>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_PYTHON3_SETUPTOOLS) += python3-setuptools
> +
> +#
> +# Paths and names
> +#
> +PYTHON3_SETUPTOOLS_VERSION := 41.6.0
> +PYTHON3_SETUPTOOLS_MD5 := 5585a55bfc28474ef13cc0b1819c5a46
> +PYTHON3_SETUPTOOLS := setuptools-$(PYTHON3_SETUPTOOLS_VERSION)
> +PYTHON3_SETUPTOOLS_SUFFIX := zip
> +PYTHON3_SETUPTOOLS_URL := https://files.pythonhosted.org/packages/source/s/setuptools/$(PYTHON3_SETUPTOOLS).$(PYTHON3_SETUPTOOLS_SUFFIX)
> +PYTHON3_SETUPTOOLS_SOURCE := $(SRCDIR)/$(PYTHON3_SETUPTOOLS).$(PYTHON3_SETUPTOOLS_SUFFIX)
> +PYTHON3_SETUPTOOLS_DIR := $(BUILDDIR)/$(PYTHON3_SETUPTOOLS)
Please remove the corresponding lines from the host package. They are no
longer needed, now that we have the target package.
> +PYTHON3_SETUPTOOLS_LICENSE := PSF AND ZPL
This is wrong. I've pushed a fix for the host package. Please update.
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +PYTHON3_SETUPTOOLS_CONF_TOOL := python3
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/python3-setuptools.targetinstall:
> + @$(call targetinfo)
> +
> + @$(call install_init, python3-setuptools)
> + @$(call install_fixup, python3-setuptools,PRIORITY,optional)
> + @$(call install_fixup, python3-setuptools,SECTION,base)
> + @$(call install_fixup, python3-setuptools,AUTHOR,"Lars Pedersen <lapeddk@gmail.com>")
> + @$(call install_fixup, python3-setuptools,DESCRIPTION,missing)
> +
> + @$(call install_glob,python3-setuptools, 0, 0, -, \
> + /usr/lib/python$(PYTHON3_MAJORMINOR)/site-packages,, *.py)
> +
> + @$(call install_finish, python3-setuptools)
> +
> + @$(call touch)
> +
> +# ----------------------------------------------------------------------------
> +# Clean
> +# ----------------------------------------------------------------------------
> +
> +#$(STATEDIR)/python3-setuptools.clean:
> +# @$(call targetinfo)
> +# @$(call clean_pkg, PYTHON3_SETUPTOOLS)
Remove.
Michael
> +
> +# vim: syntax=make
> --
> 2.23.0
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-11-25 6:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-19 14:53 [ptxdist] [PATCH] python3-setuptools: new package Lars Pedersen
2019-11-25 6:46 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox