Date: Mon, 28 Mar 2022 19:43:38 GMT From: Guido Falsi <madpilot@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 2be33351230f - main - sysutils/upower: Replace my patch with upstream fix Message-ID: <202203281943.22SJhcUv039825@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by madpilot: URL: https://cgit.FreeBSD.org/ports/commit/?id=2be33351230f23d4382b8e4b929492cbe38976f5 commit 2be33351230f23d4382b8e4b929492cbe38976f5 Author: Guido Falsi <madpilot@FreeBSD.org> AuthorDate: 2022-03-28 19:42:17 +0000 Commit: Guido Falsi <madpilot@FreeBSD.org> CommitDate: 2022-03-28 19:43:34 +0000 sysutils/upower: Replace my patch with upstream fix PR: 262885 Obtained from: https://cgit.freedesktop.org/upower/commit/?id=1003d5c2a69e6c28dcf68adf10181b5180b5defa --- sysutils/upower/files/patch-doc_meson.build | 44 +++++++++++++++++++++++++++++ sysutils/upower/files/patch-meson.build | 15 +--------- 2 files changed, 45 insertions(+), 14 deletions(-) diff --git a/sysutils/upower/files/patch-doc_meson.build b/sysutils/upower/files/patch-doc_meson.build new file mode 100644 index 000000000000..5ec319677ffc --- /dev/null +++ b/sysutils/upower/files/patch-doc_meson.build @@ -0,0 +1,44 @@ +--- doc/meson.build.orig 2022-03-09 17:46:34 UTC ++++ doc/meson.build +@@ -27,21 +27,23 @@ version_xml = configure_file( + input: 'version.xml.in', + configuration: cdata) + +-gnome.gtkdoc('UPower', +- main_xml: 'upower-docs.xml', +- src_dir: meson.source_root() / 'libupower-glib', +- dependencies: [ libupower_glib_dep ], +- scan_args: ['--rebuild-types', '--rebuild-sections'], +- content_files: [ +- version_xml, +- ifaces_refs, +- 'man/UPower.xml', +- 'man/upowerd.xml', +- 'man/upower.xml', +- '../COPYING', +- ], +- ignore_headers: [ +- 'config.h', +- ], +- install: get_option('gtk-doc') +-) ++if get_option('gtk-doc') ++ gnome.gtkdoc('UPower', ++ main_xml: 'upower-docs.xml', ++ src_dir: meson.source_root() / 'libupower-glib', ++ dependencies: [ libupower_glib_dep ], ++ scan_args: ['--rebuild-types', '--rebuild-sections'], ++ content_files: [ ++ version_xml, ++ ifaces_refs, ++ 'man/UPower.xml', ++ 'man/upowerd.xml', ++ 'man/upower.xml', ++ '../COPYING', ++ ], ++ ignore_headers: [ ++ 'config.h', ++ ], ++ install: get_option('gtk-doc') ++ ) ++endif diff --git a/sysutils/upower/files/patch-meson.build b/sysutils/upower/files/patch-meson.build index 42a7e4747166..e1258e52df16 100644 --- a/sysutils/upower/files/patch-meson.build +++ b/sysutils/upower/files/patch-meson.build @@ -1,19 +1,6 @@ --- meson.build.orig 2022-03-09 17:46:34 UTC +++ meson.build -@@ -47,7 +47,11 @@ m_dep = cc.find_library('m', required: true) - gio_unix_dep = dependency('gio-unix-2.0', version: '>=' + glib_min_version) - m_dep = cc.find_library('m', required: true) - --xsltproc = find_program('xsltproc', disabler: true, required: get_option('gtk-doc') or get_option('man')) -+if get_option('gtk-doc') or get_option('man') -+ xsltproc = find_program('xsltproc', disabler: true, required: get_option('gtk-doc') or get_option('man')) -+else -+ xsltproc = disabler() -+endif - - # Resolve OS backend - os_backend = get_option('os_backend') -@@ -105,7 +109,7 @@ subdir('etc') +@@ -105,7 +105,7 @@ subdir('etc') config_h = configure_file(output: 'config.h', configuration: cdata) subdir('etc')
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202203281943.22SJhcUv039825>