Date: Sat, 25 Jul 2020 08:46:52 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543406 - head/net-im/libaccounts-glib/files Message-ID: <202007250846.06P8kqW6073916@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Sat Jul 25 08:46:51 2020 New Revision: 543406 URL: https://svnweb.freebsd.org/changeset/ports/543406 Log: net-im/libaccounts-glib: add tests-option to meson Fixes: [...] Build type: native build WARNING: Unknown options: "tests" The value of new options can be set with: [...] Reported by: antoine Modified: head/net-im/libaccounts-glib/files/patch-meson.build head/net-im/libaccounts-glib/files/patch-meson__options.txt Modified: head/net-im/libaccounts-glib/files/patch-meson.build ============================================================================== --- head/net-im/libaccounts-glib/files/patch-meson.build Sat Jul 25 08:42:23 2020 (r543405) +++ head/net-im/libaccounts-glib/files/patch-meson.build Sat Jul 25 08:46:51 2020 (r543406) @@ -1,11 +1,14 @@ ---- meson.build.orig 2020-07-09 18:44:08 UTC +--- meson.build.orig 2020-04-14 20:19:50 UTC +++ meson.build -@@ -36,5 +36,7 @@ root_dir = include_directories('.') +@@ -36,5 +36,9 @@ root_dir = include_directories('.') subdir('libaccounts-glib') subdir('tools') subdir('data') -subdir('docs') +-subdir('tests') +if get_option('docs') + subdir('docs') +endif - subdir('tests') ++if get_option('tests') ++ subdir('tests') ++endif Modified: head/net-im/libaccounts-glib/files/patch-meson__options.txt ============================================================================== --- head/net-im/libaccounts-glib/files/patch-meson__options.txt Sat Jul 25 08:42:23 2020 (r543405) +++ head/net-im/libaccounts-glib/files/patch-meson__options.txt Sat Jul 25 08:46:51 2020 (r543406) @@ -1,5 +1,6 @@ ---- meson_options.txt.orig 2020-07-09 18:44:08 UTC +--- meson_options.txt.orig 2020-04-14 20:19:50 UTC +++ meson_options.txt -@@ -1 +1,2 @@ +@@ -1 +1,3 @@ +option('docs', type : 'boolean', description : 'Build with documentation') ++option('tests', type: 'boolean', description: 'Build with tests') option('py-overrides-dir', type : 'string', value : '', description: 'Path to pygobject overrides directory')
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007250846.06P8kqW6073916>