From owner-svn-ports-head@freebsd.org Sat Jul 25 08:46:52 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C05733A3E9E; Sat, 25 Jul 2020 08:46:52 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BDKSD4Mp5z3gMv; Sat, 25 Jul 2020 08:46:52 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 79F10191FE; Sat, 25 Jul 2020 08:46:52 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06P8kqXs073918; Sat, 25 Jul 2020 08:46:52 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06P8kqW6073916; Sat, 25 Jul 2020 08:46:52 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202007250846.06P8kqW6073916@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 25 Jul 2020 08:46:52 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/net-im/libaccounts-glib/files X-SVN-Commit-Revision: 543406 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Jul 2020 08:46:52 -0000 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')