Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/fwupd/files/
Date: Sun, 29 Aug 2021 22:42:21
Message-Id: 1630276838.1700e47376ab05fcfadebbda8a7358e5221c201a.conikost@gentoo
1 commit: 1700e47376ab05fcfadebbda8a7358e5221c201a
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Sat Aug 28 19:27:43 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 29 22:40:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1700e473
7
8 sys-apps/fwupd: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/22146
11 Package-Manager: Portage-3.0.22, Repoman-3.0.3
12 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 .../files/fwupd-1.6.1-fix-python-detection.patch | 51 ----------------------
16 1 file changed, 51 deletions(-)
17
18 diff --git a/sys-apps/fwupd/files/fwupd-1.6.1-fix-python-detection.patch b/sys-apps/fwupd/files/fwupd-1.6.1-fix-python-detection.patch
19 deleted file mode 100644
20 index b5da660e643..00000000000
21 --- a/sys-apps/fwupd/files/fwupd-1.6.1-fix-python-detection.patch
22 +++ /dev/null
23 @@ -1,51 +0,0 @@
24 -From 1a53fc57e8b5cd2de571ad5f1119c90ac8082f7a Mon Sep 17 00:00:00 2001
25 -From: Mario Limonciello <superm1@×××××.com>
26 -Date: Tue, 15 Jun 2021 08:10:06 -0500
27 -Subject: [PATCH 1/2] Revert "meson.build: Change python version check order"
28 -
29 -This reverts commit 1b396215d9396680b1b6b5c14c6f57f2226ff0a9.
30 ----
31 - meson.build | 2 +-
32 - 1 file changed, 1 insertion(+), 1 deletion(-)
33 -
34 -diff --git a/meson.build b/meson.build
35 -index 1f89e6070..0ae12a1a7 100644
36 ---- a/meson.build
37 -+++ b/meson.build
38 -@@ -252,7 +252,7 @@ libm = cc.find_library('m', required: false)
39 - libgcab = dependency('libgcab-1.0', version : '>= 1.0', fallback : ['gcab', 'gcab_dep'])
40 - gcab = find_program('gcab', required : get_option('tests'))
41 - bashcomp = dependency('bash-completion', required: false)
42 --python3 = find_program('python3.8', 'python3', 'python3.9')
43 -+python3 = find_program('python3')
44 -
45 - if get_option('gnutls')
46 - gnutls = dependency('gnutls', version : '>= 3.6.0')
47 -
48 -From f4ef486da80a3b5916f8a58f10a70f30cf05f756 Mon Sep 17 00:00:00 2001
49 -From: Mario Limonciello <superm1@×××××.com>
50 -Date: Tue, 15 Jun 2021 08:13:17 -0500
51 -Subject: [PATCH 2/2] trivial: fix a regression in Gentoo detecting python
52 - versions
53 -
54 ----
55 - meson.build | 6 +++++-
56 - 1 file changed, 5 insertions(+), 1 deletion(-)
57 -
58 -diff --git a/meson.build b/meson.build
59 -index 0ae12a1a7..6e09ac69b 100644
60 ---- a/meson.build
61 -+++ b/meson.build
62 -@@ -252,7 +252,11 @@ libm = cc.find_library('m', required: false)
63 - libgcab = dependency('libgcab-1.0', version : '>= 1.0', fallback : ['gcab', 'gcab_dep'])
64 - gcab = find_program('gcab', required : get_option('tests'))
65 - bashcomp = dependency('bash-completion', required: false)
66 --python3 = find_program('python3')
67 -+if host_machine.system() != 'freebsd'
68 -+ python3 = find_program('python3')
69 -+else
70 -+ python3 = find_program('python3.8', 'python3', 'python3.9')
71 -+endif
72 -
73 - if get_option('gnutls')
74 - gnutls = dependency('gnutls', version : '>= 3.6.0')