From 93613618d25d257d387fe146cb5e8edb1da728b0 Mon Sep 17 00:00:00 2001
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Date: Wed, 20 Nov 2024 14:18:18 +0100
Subject: [PATCH] bindings: python: add .pyi files to EXTRA_DIST

While python sdist and wheels are built separately these days, we still
want to package all the extra files in the regular libgpiod release
tarballs. Add new .pyi files to automake's EXTRA_DIST.

Reviewed-by: Vincent Fazio <vfazio@xes-inc.com>
Link: https://lore.kernel.org/r/20241120-drop-distutils-v1-1-7498e8b3babe@linaro.org
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
 bindings/python/gpiod/Makefile.am          | 1 +
 bindings/python/tests/gpiosim/Makefile.am  | 1 +
 bindings/python/tests/procname/Makefile.am | 1 +
 3 files changed, 3 insertions(+)

diff --git a/bindings/python/gpiod/Makefile.am b/bindings/python/gpiod/Makefile.am
index d6be9dc..49addcc 100644
--- a/bindings/python/gpiod/Makefile.am
+++ b/bindings/python/gpiod/Makefile.am
@@ -6,6 +6,7 @@ SUBDIRS = ext
 EXTRA_DIST = \
 	chip_info.py \
 	chip.py \
+	_ext.pyi \
 	edge_event.py \
 	exception.py \
 	info_event.py \
diff --git a/bindings/python/tests/gpiosim/Makefile.am b/bindings/python/tests/gpiosim/Makefile.am
index 7004f3a..b403f3c 100644
--- a/bindings/python/tests/gpiosim/Makefile.am
+++ b/bindings/python/tests/gpiosim/Makefile.am
@@ -3,5 +3,6 @@
 
 EXTRA_DIST = \
 	chip.py \
+	_ext.pyi \
 	ext.c \
 	__init__.py
diff --git a/bindings/python/tests/procname/Makefile.am b/bindings/python/tests/procname/Makefile.am
index c4a8fd5..dbc8e64 100644
--- a/bindings/python/tests/procname/Makefile.am
+++ b/bindings/python/tests/procname/Makefile.am
@@ -2,5 +2,6 @@
 # SPDX-FileCopyrightText: 2022 Bartosz Golaszewski <brgl@bgdev.pl>
 
 EXTRA_DIST = \
+	_ext.pyi \
 	ext.c \
 	__init__.py
-- 
2.30.2