diff options
author | Derek Straka <derek@asterius.io> | 2023-12-21 15:44:33 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-12-22 06:39:32 -0800 |
commit | b572db47ccaa54d26788125557982f5419e4042c (patch) | |
tree | 149978c8a9be68b3611fc88407c9480d5fca3a3a /meta-python/recipes-devtools/python/python3-pyfanotify | |
parent | 9723cc8de511f591727508c3435ca3d5e5b13369 (diff) | |
download | meta-openembedded-b572db47ccaa54d26788125557982f5419e4042c.tar.gz |
python3-pyfanotify: update to version 0.2.2
Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pyfanotify')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pyfanotify/0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyfanotify/0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch b/meta-python/recipes-devtools/python/python3-pyfanotify/0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch index 2fa3cb05d4..4c279bbcda 100644 --- a/meta-python/recipes-devtools/python/python3-pyfanotify/0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch +++ b/meta-python/recipes-devtools/python/python3-pyfanotify/0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch | |||
@@ -1,19 +1,20 @@ | |||
1 | From 9e7894b97ae7afe43a9901b774de5aef401549ac Mon Sep 17 00:00:00 2001 | 1 | From 87f1bf7d1e0ca2a841706d1c41d14382f11264db Mon Sep 17 00:00:00 2001 |
2 | From: Bartosz Golaszewski <brgl@bgdev.pl> | 2 | From: Bartosz Golaszewski <brgl@bgdev.pl> |
3 | Date: Thu, 28 Apr 2022 16:32:06 +0200 | 3 | Date: Thu, 28 Apr 2022 16:32:06 +0200 |
4 | Subject: [PATCH] ext: define FNM_EXTMATCH if not already defined | 4 | Subject: [PATCH] ext: define FNM_EXTMATCH if not already defined |
5 | 5 | ||
6 | On musl this constant is not defined. Define it locally if not present. | 6 | On musl this constant is not defined. Define it locally if not present. |
7 | 7 | ||
8 | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> | ||
9 | --- | ||
10 | Upstream-Status: Inappropriate | 8 | Upstream-Status: Inappropriate |
11 | 9 | ||
10 | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> | ||
11 | |||
12 | --- | ||
12 | src/ext.c | 3 +++ | 13 | src/ext.c | 3 +++ |
13 | 1 file changed, 3 insertions(+) | 14 | 1 file changed, 3 insertions(+) |
14 | 15 | ||
15 | diff --git a/src/ext.c b/src/ext.c | 16 | diff --git a/src/ext.c b/src/ext.c |
16 | index e0bbe21..7d979d3 100644 | 17 | index fb33de1..fa01a81 100644 |
17 | --- a/src/ext.c | 18 | --- a/src/ext.c |
18 | +++ b/src/ext.c | 19 | +++ b/src/ext.c |
19 | @@ -19,6 +19,9 @@ | 20 | @@ -19,6 +19,9 @@ |
@@ -24,8 +25,5 @@ index e0bbe21..7d979d3 100644 | |||
24 | +#define FNM_EXTMATCH 0 | 25 | +#define FNM_EXTMATCH 0 |
25 | +#endif | 26 | +#endif |
26 | 27 | ||
27 | PyDoc_STRVAR(ext__doc__, | 28 | #define FUNUSED __attribute__((unused)) |
28 | "Wrapper for fanotify.\n" | 29 | |
29 | -- | ||
30 | 2.34.1 | ||
31 | |||