diff options
author | Zac Medico <zmedico@gentoo.org> | 2023-10-08 21:57:02 -0700 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-10-12 06:04:06 +0100 |
commit | 78c8fbe8a35cd2926f37f21235c5d8b587efae46 (patch) | |
tree | 90e60104e244ef71e643753b43b083ed0d0f2775 /man | |
parent | eclean: pkg: suppress invalid binary error (diff) | |
download | gentoolkit-78c8fbe8a35cd2926f37f21235c5d8b587efae46.tar.gz gentoolkit-78c8fbe8a35cd2926f37f21235c5d8b587efae46.tar.bz2 gentoolkit-78c8fbe8a35cd2926f37f21235c5d8b587efae46.zip |
Migrate to PEP517 meson-python buildgentoolkit-0.6.3
Bug: https://bugs.gentoo.org/909888
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Closes: https://github.com/gentoo/gentoolkit/pull/36
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'man')
-rw-r--r-- | man/meson.build | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/man/meson.build b/man/meson.build new file mode 100644 index 0000000..aa888f7 --- /dev/null +++ b/man/meson.build @@ -0,0 +1,23 @@ +man_pages_out = [] +man_pages_in = [ + 'ebump.1', + 'eclean.1', + 'enalyze.1', + 'epkginfo.1', + 'equery.1', + 'eread.1', + 'eshowkw.1', + 'euse.1', + 'imlate.1', + 'revdep-rebuild.1', +] + +foreach man_page : man_pages_in + man_pages_out += configure_file( + input : man_page, + output : man_page, + configuration : conf_data + ) +endforeach + +install_man(man_pages_out) |