diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2021-06-30 20:26:15 -0400 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2021-06-30 20:26:15 -0400 |
commit | bb3ede2bab2ba1d680da9d4304c1d80892265684 (patch) | |
tree | 3d25cf7531ee86c3ef5e60e1b7ee1ed183ed948f /app-crypt/libsecret/files | |
parent | 409edb079a07cdfd7034dcaba56e97a999331186 (diff) | |
download | gentoo-overlay-bb3ede2bab2ba1d680da9d4304c1d80892265684.tar.xz gentoo-overlay-bb3ede2bab2ba1d680da9d4304c1d80892265684.zip |
app-crypt/libsecret: drop
Diffstat (limited to 'app-crypt/libsecret/files')
-rw-r--r-- | app-crypt/libsecret/files/libsecret-0.20.4-meson-build-test-vala-unstable-with-DSECRET_WITH_UNS.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/app-crypt/libsecret/files/libsecret-0.20.4-meson-build-test-vala-unstable-with-DSECRET_WITH_UNS.patch b/app-crypt/libsecret/files/libsecret-0.20.4-meson-build-test-vala-unstable-with-DSECRET_WITH_UNS.patch deleted file mode 100644 index 99e5f69..0000000 --- a/app-crypt/libsecret/files/libsecret-0.20.4-meson-build-test-vala-unstable-with-DSECRET_WITH_UNS.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 92fe125ee1b9f36bd69308c173e9d6147a5fc1e1 Mon Sep 17 00:00:00 2001 -From: Matt Turner <mattst88@gmail.com> -Date: Thu, 10 Dec 2020 23:19:55 -0500 -Subject: [PATCH] meson: build test-vala-unstable with -DSECRET_WITH_UNSTABLE - -Fixes: https://gitlab.gnome.org/GNOME/libsecret/-/issues/54 ---- - libsecret/meson.build | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -diff --git a/libsecret/meson.build b/libsecret/meson.build -index f57e363..55e9d95 100644 ---- a/libsecret/meson.build -+++ b/libsecret/meson.build -@@ -310,12 +310,12 @@ if get_option('introspection') - add_languages('vala') - valac = meson.get_compiler('vala') - -- valatest_names = [ -- 'test-vala-lang', -- 'test-vala-unstable', -- ] -+ valatests = { -+ 'test-vala-lang': [], -+ 'test-vala-unstable': ['-DSECRET_WITH_UNSTABLE'], -+ } - -- foreach _valatest : valatest_names -+ foreach _valatest, extra_cflags : valatests - test_bin = executable(_valatest, - '@0@.vala'.format(_valatest), - dependencies: [ -@@ -327,7 +327,7 @@ if get_option('introspection') - ], - link_with: mock_service_lib, - include_directories: config_h_dir, -- c_args: test_cflags, -+ c_args: test_cflags + extra_cflags, - ) - - test(_valatest, test_bin, --- -2.26.2 - |