Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/pitivi/files/
Date: Sun, 31 Mar 2019 23:30:31
Message-Id: 1554075017.6d2ac57559f8cb4f3db21eabae381141e4b71638.pacho@gentoo
1 commit: 6d2ac57559f8cb4f3db21eabae381141e4b71638
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 31 23:30:07 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 31 23:30:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d2ac575
7
8 media-video/pitivi: Add patch missed in previous commit
9
10 Bug: https://bugs.gentoo.org/659332
11 Package-Manager: Portage-2.3.62, Repoman-2.3.12
12 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
13
14 .../pitivi/files/pitivi-0.999-optional-tests.patch | 18 ++++++++++++++++++
15 1 file changed, 18 insertions(+)
16
17 diff --git a/media-video/pitivi/files/pitivi-0.999-optional-tests.patch b/media-video/pitivi/files/pitivi-0.999-optional-tests.patch
18 new file mode 100644
19 index 00000000000..50a62188f8e
20 --- /dev/null
21 +++ b/media-video/pitivi/files/pitivi-0.999-optional-tests.patch
22 @@ -0,0 +1,18 @@
23 +--- a/meson_options.txt~ 2018-08-29 15:33:20.000000000 +0200
24 ++++ b/meson_options.txt 2019-03-31 13:14:19.542837289 +0200
25 +@@ -1,2 +1,3 @@
26 + option('disable-help', type : 'boolean', value : false)
27 + option('build-gst', type : 'boolean', value : false)
28 ++option('enable-tests', type : 'boolean', value : false)
29 +--- a/meson.build~ 2018-08-29 15:33:20.000000000 +0200
30 ++++ b/meson.build 2019-03-31 13:14:56.299216758 +0200
31 +@@ -84,5 +84,7 @@
32 + if not get_option('disable-help')
33 + subdir('help')
34 + endif
35 +-subdir('tests')
36 +-subdir('tests/validate-tests')
37 ++if get_option('enable-tests')
38 ++ subdir('tests')
39 ++ subdir('tests/validate-tests')
40 ++endif