mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Markus Heidelberg via ptxdist <ptxdist@pengutronix.de>
To: <ptxdist@pengutronix.de>
Cc: Markus Heidelberg <m.heidelberg@cab.de>
Subject: [ptxdist] [PATCH 3/5] python3-blinker: new package
Date: Fri, 23 May 2025 13:49:49 +0200	[thread overview]
Message-ID: <20250523114951.1747739-4-m.heidelberg@cab.de> (raw)
In-Reply-To: <20250523114951.1747739-1-m.heidelberg@cab.de>

Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
---
 rules/python3-blinker.in   | 11 ++++++++
 rules/python3-blinker.make | 56 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 67 insertions(+)
 create mode 100644 rules/python3-blinker.in
 create mode 100644 rules/python3-blinker.make

diff --git a/rules/python3-blinker.in b/rules/python3-blinker.in
new file mode 100644
index 000000000..5c8bbc548
--- /dev/null
+++ b/rules/python3-blinker.in
@@ -0,0 +1,11 @@
+## SECTION=python3
+
+config PYTHON3_BLINKER
+	tristate
+	select HOST_PYTHON3_PYBUILD
+	select HOST_PYTHON3_INSTALLER
+	select PYTHON3
+	prompt "blinker"
+	help
+	  Blinker provides fast & simple object-to-object and broadcast
+	  signaling for Python objects.
diff --git a/rules/python3-blinker.make b/rules/python3-blinker.make
new file mode 100644
index 000000000..2a00b3d79
--- /dev/null
+++ b/rules/python3-blinker.make
@@ -0,0 +1,56 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2025 by Markus Heidelberg <m.heidelberg@cab.de>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_PYTHON3_BLINKER) += python3-blinker
+
+#
+# Paths and names
+#
+PYTHON3_BLINKER_VERSION		:= 1.9.0
+PYTHON3_BLINKER_MD5		:= 1ffce54aca3d568ab18ee921d479274f
+PYTHON3_BLINKER			:= blinker-$(PYTHON3_BLINKER_VERSION)
+PYTHON3_BLINKER_SUFFIX		:= tar.gz
+PYTHON3_BLINKER_URL		:= $(call ptx/mirror-pypi, blinker, $(PYTHON3_BLINKER).$(PYTHON3_BLINKER_SUFFIX))
+PYTHON3_BLINKER_SOURCE		:= $(SRCDIR)/$(PYTHON3_BLINKER).$(PYTHON3_BLINKER_SUFFIX)
+PYTHON3_BLINKER_DIR		:= $(BUILDDIR)/$(PYTHON3_BLINKER)
+PYTHON3_BLINKER_LICENSE		:= MIT
+PYTHON3_BLINKER_LICENSE_FILES	:= \
+	file://docs/index.rst;startline=25;endline=26;md5=7185d5feb0e90f88de07e481cfdcf5f4 \
+	file://pyproject.toml;startline=6;endline=6;md5=0846f03a9beea6f15a2477895e27ac62 \
+	file://LICENSE.txt;md5=42cd19c88fc13d1307a4efd64ee90e4e
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+PYTHON3_BLINKER_CONF_TOOL	:= python3
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/python3-blinker.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, python3-blinker)
+	@$(call install_fixup, python3-blinker,PRIORITY,optional)
+	@$(call install_fixup, python3-blinker,SECTION,base)
+	@$(call install_fixup, python3-blinker,AUTHOR,"Markus Heidelberg <m.heidelberg@cab.de>")
+	@$(call install_fixup, python3-blinker,DESCRIPTION,missing)
+
+	@$(call install_glob, python3-blinker, 0, 0, -, \
+		$(PYTHON3_SITEPACKAGES),, *.py)
+
+	@$(call install_finish, python3-blinker)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.43.0




  parent reply	other threads:[~2025-05-23 11:50 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-23 11:49 [ptxdist] [PATCH 0/5] Add Flask package and missing dependencies Markus Heidelberg via ptxdist
2025-05-23 11:49 ` [ptxdist] [PATCH 1/5] python3-werkzeug: new package Markus Heidelberg via ptxdist
2025-06-03 10:38   ` [ptxdist] [APPLIED] " Michael Olbrich
2025-05-23 11:49 ` [ptxdist] [PATCH 2/5] python3-click: " Markus Heidelberg via ptxdist
2025-06-03 10:38   ` [ptxdist] [APPLIED] " Michael Olbrich
2025-05-23 11:49 ` Markus Heidelberg via ptxdist [this message]
2025-06-03 10:38   ` [ptxdist] [APPLIED] python3-blinker: " Michael Olbrich
2025-05-23 11:49 ` [ptxdist] [PATCH 4/5] python3-itsdangerous: " Markus Heidelberg via ptxdist
2025-06-03 10:38   ` [ptxdist] [APPLIED] " Michael Olbrich
2025-05-23 11:49 ` [ptxdist] [PATCH 5/5] python3-flask: " Markus Heidelberg via ptxdist
2025-06-03 10:39   ` [ptxdist] [APPLIED] " Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250523114951.1747739-4-m.heidelberg@cab.de \
    --to=ptxdist@pengutronix.de \
    --cc=m.heidelberg@cab.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox