summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/libmodulemd/libmodulemd
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-04-25 19:28:01 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-05-02 09:08:52 +0100
commite1ab20ea5a9258c6f7e3bf18e040df1e0ddff0d9 (patch)
treeeade2976067889205ae5fc205231e83bba080614 /meta/recipes-devtools/libmodulemd/libmodulemd
parent365f24bee16ba4e9386f89158df29d577f192668 (diff)
downloadpoky-e1ab20ea5a9258c6f7e3bf18e040df1e0ddff0d9.tar.gz
libmodulemd: move from 1.x to 2.x version
New libdnf requires 2.x and is the only consumer in oe-core (or elsewhere). (From OE-Core rev: 2c518de672d8876ff96e49b498feb898a497e6a5) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libmodulemd/libmodulemd')
-rw-r--r--meta/recipes-devtools/libmodulemd/libmodulemd/0001-modulemd-generate-the-manpage-only-if-the-feature-is.patch28
-rw-r--r--meta/recipes-devtools/libmodulemd/libmodulemd/0002-meson.build-do-not-install-python-gi-bindings.patch23
2 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libmodulemd/libmodulemd/0001-modulemd-generate-the-manpage-only-if-the-feature-is.patch b/meta/recipes-devtools/libmodulemd/libmodulemd/0001-modulemd-generate-the-manpage-only-if-the-feature-is.patch
new file mode 100644
index 0000000000..d5c87a1154
--- /dev/null
+++ b/meta/recipes-devtools/libmodulemd/libmodulemd/0001-modulemd-generate-the-manpage-only-if-the-feature-is.patch
@@ -0,0 +1,28 @@
1From a04fd2c8ac9e0f7a6fc17f02b2a95227b3d0aae4 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 31 Mar 2020 16:06:39 +0200
4Subject: [PATCH] modulemd: generate the manpage only if the feature is enabled
5
6Upstream-Status: Pending
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8---
9 modulemd/meson.build | 2 ++
10 1 file changed, 2 insertions(+)
11
12diff --git a/modulemd/meson.build b/modulemd/meson.build
13index 9ef1902..9f71e72 100644
14--- a/modulemd/meson.build
15+++ b/modulemd/meson.build
16@@ -494,6 +494,7 @@ if with_docs
17 )
18 endif
19
20+if with_manpages == 'enabled'
21 help2man_opts = [
22 '--no-info',
23 '--section=1',
24@@ -506,3 +507,4 @@ custom_target(
25 ],
26 install: true,
27 install_dir: join_paths(get_option('mandir'), 'man1'))
28+endif
diff --git a/meta/recipes-devtools/libmodulemd/libmodulemd/0002-meson.build-do-not-install-python-gi-bindings.patch b/meta/recipes-devtools/libmodulemd/libmodulemd/0002-meson.build-do-not-install-python-gi-bindings.patch
new file mode 100644
index 0000000000..a97fb73907
--- /dev/null
+++ b/meta/recipes-devtools/libmodulemd/libmodulemd/0002-meson.build-do-not-install-python-gi-bindings.patch
@@ -0,0 +1,23 @@
1From d7eeac90fe02ccf5c5e4334e41ec75fc33803643 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 31 Mar 2020 16:12:28 +0200
4Subject: [PATCH] meson.build: do not install python gi bindings
5
6These are unnecessary for oe-core, and the install location
7is incorrectly determined using native python.
8
9Upstream-Status: Inappropriate [oe-core specific]
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11---
12 meson.build | 1 -
13 1 file changed, 1 deletion(-)
14
15diff --git a/meson.build b/meson.build
16index a8b02b4..8ff737b 100644
17--- a/meson.build
18+++ b/meson.build
19@@ -171,4 +171,3 @@ configure_file(
20 )
21
22 subdir('modulemd')
23-subdir('bindings/python')