summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2017-09-03 23:06:18 +0200
committerGilles Dartiguelongue <eva@gentoo.org>2017-09-04 00:47:15 +0200
commit4d682a60dc98853f315bfe0d857a95e1c7c4daad (patch)
treea7bebbd4ba1e541f3a76c4afa77a72bb96363069 /media-video/pitivi/files
parentnet-misc/networkmanager-fortisslvpn: version bump 1.2.2 → 1.2.4 (diff)
downloadgentoo-4d682a60dc98853f315bfe0d857a95e1c7c4daad.tar.gz
gentoo-4d682a60dc98853f315bfe0d857a95e1c7c4daad.tar.bz2
gentoo-4d682a60dc98853f315bfe0d857a95e1c7c4daad.zip
media-video/pitivi: version bump 0.97.1 → 0.98.1, bug #606850
Add missing dependency on gdkpixbuf plugin, bug #628608. Closes: https://bugs.gentoo.org/show_bug.cgi?id=606850 Closes: https://bugs.gentoo.org/show_bug.cgi?id=628608 Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'media-video/pitivi/files')
-rw-r--r--media-video/pitivi/files/pitivi-0.98.1-optional-tests.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/media-video/pitivi/files/pitivi-0.98.1-optional-tests.patch b/media-video/pitivi/files/pitivi-0.98.1-optional-tests.patch
new file mode 100644
index 000000000000..e5f55ffe765f
--- /dev/null
+++ b/media-video/pitivi/files/pitivi-0.98.1-optional-tests.patch
@@ -0,0 +1,23 @@
+Make tests optional
+
+--- a/meson_options.txt 2016-09-19 23:35:54.944511834 +0200
++++ b/meson_options.txt 2016-09-19 23:36:10.693485976 +0200
+@@ -1,2 +1,3 @@
+ option('enable-xunit', type : 'boolean', value : false)
+ option('disable-help', type : 'boolean', value : false)
++option('enable-tests', type : 'boolean', value : false)
+--- a/meson.build 2017-09-03 22:52:39.681974053 +0200
++++ b/meson.build 2017-09-03 22:53:29.934556188 +0200
+@@ -71,8 +71,10 @@
+ if not get_option('disable-help')
+ subdir('help')
+ endif
+-subdir('tests')
+-subdir('tests/validate-tests')
++if get_option('enable-tests')
++ subdir('tests')
++ subdir('tests/validate-tests')
++endif
+
+ archiver = find_program('git-archive-all', required : false)
+ if archiver.found()