- 14 Oct, 2019 3 commits
-
-
Daiki Ueno authored
Also drop libgcrypt dependency for now.
-
Daiki Ueno authored
meson: add include directory to the generated pkg-config file See merge request !41
-
Abderrahim Kitouni authored
Fixes 300ddc70
-
- 13 Oct, 2019 7 commits
-
-
Daiki Ueno authored
secret-backend: Add local-storage backend See merge request !6
-
Daiki Ueno authored
Before decising to use the file backend, check if the necessary portal interface is available on the D-Bus. Suggested by Patrick Griffis.
-
Daiki Ueno authored
-
Daiki Ueno authored
-
Daiki Ueno authored
This makes it consistent with meson build.
-
Daiki Ueno authored
This adds a new backend based on locally stored file.
-
Daiki Ueno authored
-
- 12 Oct, 2019 4 commits
-
-
Daiki Ueno authored
libsecret.pc: add Libs.private field for libgcrypt See merge request !38
-
Fabrice Fontaine authored
When libgcrypt is available, libsecret links with it. When dynamic linking is used, there is no problem: libsecret.so has a NEEDED pointing to libgcrypt, so linking an application with -lsecret works fine. However, when doing static linking, you must specify the entire chain of libraries, otherwise you get unresolved symbols errors, such as: host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libsecret-1.a(libsecret_1_la-secret-session.o): In function `request_open_session_aes': build/libsecret-0.18.3/libsecret/secret-session.c:99: undefined reference to `gcry_mpi_release' build/libsecret-0.18.3/libsecret/secret-session.c:101: undefined reference to `gcry_mpi_aprint' build/libsecret-0.18.3/libsecret/secret-session.c:107: undefined reference to `gcry_free' In order to solve this, we simply need to indicate in the Libs.private field of the .pc file that we depend on libgcrypt. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> [Retrieved from: https://git.buildroot.net/buildroot/tree/package/libsecret/0001-libsecret.pc-add-Libs.private-field-for-libgcrypt.patch] Signed-off-by:
Fabrice Fontaine <fontaine.fabrice@gmail.com>
-
Daiki Ueno authored
meson: Use pkgconfig module instead of substitution See merge request !40
-
Daiki Ueno authored
-
- 11 Oct, 2019 1 commit
-
-
Daiki Ueno authored
Meson has native support for the libgcrypt-config program if pkgconfig file is not provided.
-
- 08 Oct, 2019 8 commits
-
-
Daiki Ueno authored
secret-backend: New interface to represent password storage backend See merge request !34
-
Rico Tzschichholz authored
-
Daiki Ueno authored
-
Daiki Ueno authored
-
Daiki Ueno authored
This is ugly, but necessary to handle instance uncaching in SecretBackend when the backend instance is gone.
-
Daiki Ueno authored
-
Daiki Ueno authored
This interface provides a separation between the frontend (secret_password*) and the backend (SecretService). That makes it easier to replace SecretService with a custom backend implementation.
-
Daiki Ueno authored
This makes it possible to instantiate a SecretService instance directly through g_initable_new() or g_async_initable_new_async().
-
- 04 Oct, 2019 2 commits
-
-
Niels De Graef authored
README.md: Mention the new versioning scheme [ci skip] See merge request !39
-
Daiki Ueno authored
-
- 20 Sep, 2019 2 commits
-
-
Daiki Ueno authored
build: Fix FTBFS using meson without valgrind See merge request !37
-
Xi Ruoyao authored
Now with meson build system libsecret FTBFS without valgrind installed. Two issues: (1) egg-testing.c depends on valgrind/valgrind.h unnecessarily; (2) we forgot to add "build" directory as a header directory for meson. This commit resolves both of them.
-
- 06 Sep, 2019 1 commit
-
-
Daiki Ueno authored
-
- 05 Sep, 2019 3 commits
-
-
Daiki Ueno authored
service: Fix secret_service_ensure_session_finish error propagation See merge request !36
-
Jan Alexander Steffens authored
The condition checking g_task_is_valid was inverted, resulting in errors being ignored. Move the check to a g_return_val_if_fail to be in line with all other uses of g_task_is_valid. Fixes https://bugs.archlinux.org/task/63666
-
Daiki Ueno authored
-
- 29 Aug, 2019 3 commits
-
-
Daiki Ueno authored
build: Use stock tap-driver from automake See merge request !5
-
Daiki Ueno authored
Previously, we used a custom TAP driver written in Python. Now that Automake's TAP driver has sufficient features, the script should be no longer necessary.
-
Daiki Ueno authored
The GLib versions we require supports TAP natively when tests are run with the --tap option.
-
- 21 Aug, 2019 1 commit
-
-
Daiki Ueno authored
-
- 26 Jul, 2019 1 commit
-
-
Daiki Ueno authored
meson: Minor cleanup See merge request !35
-
- 25 Jul, 2019 2 commits
-
-
Daiki Ueno authored
Since meson 0.50, configuration_data() can take a dictionary.
-
Daiki Ueno authored
This switches to using relative paths as much as possible, and the "/" shorthand for join_paths.
-
- 24 Jul, 2019 1 commit
-
-
Daiki Ueno authored
To suppress the warning: WARNING: Project targetting '>= 0.48' but tried to use feature introduced in '0.50.0': install arg in configure_file
-
- 22 Jul, 2019 1 commit
-
-
Daiki Ueno authored
secret-password: Add necessary functions to migrate from D-Bus based API See merge request !32
-