diff options
author | WGH <wgh@torlan.ru> | 2020-02-29 22:38:48 +0300 |
---|---|---|
committer | WGH <wgh@torlan.ru> | 2020-02-29 22:38:48 +0300 |
commit | 6fd1bb6f27409ef966cbb008aba763ddb44f23fb (patch) | |
tree | 35e68b6858a247f288d08f0d7250e004e3b71527 | |
parent | net-im/riot-web: upgrade to 1.5.10 (diff) | |
download | matrix-6fd1bb6f27409ef966cbb008aba763ddb44f23fb.tar.gz matrix-6fd1bb6f27409ef966cbb008aba763ddb44f23fb.tar.bz2 matrix-6fd1bb6f27409ef966cbb008aba763ddb44f23fb.zip |
net-im/fractal: fix libhandy dependency
The libhandy dependency constraint in the ebuild doesn't match
the one in upstream meson.build file[1], which leads to the following
build failure if older version is installed:
>>> Configuring source in /var/tmp/portage/net-im/fractal-4.2.0/work/fractal-4.2.0 ...
meson --buildtype plain --libdir lib64 --localstatedir /var/lib --prefix /usr --sysconfdir /etc --wrap-mode nodownload /var/tmp/portage/net-im/fractal-4.2.0/work/fractal-4.2.0 /var/tmp/portage/net-im/fractal-4.2.0/work/fractal-4.2.0-build
The Meson build system
Version: 0.52.1
Source dir: /var/tmp/portage/net-im/fractal-4.2.0/work/fractal-4.2.0
Build dir: /var/tmp/portage/net-im/fractal-4.2.0/work/fractal-4.2.0-build
Build type: native build
Project name: fractal
Project version: 4.2.0
Rust compiler for the host machine: rustc (rustc 1.41.0)
Rust linker for the host machine: GNU ld unknown version
Host machine cpu family: x86_64
Host machine cpu: x86_64
Found pkg-config: /usr/bin/x86_64-pc-linux-gnu-pkg-config (0.29.2)
Run-time dependency openssl found: YES 1.1.1d
Run-time dependency dbus-1 found: YES 1.12.16
Run-time dependency glib-2.0 found: YES 2.60.7
Run-time dependency gio-2.0 found: YES 2.60.7
Run-time dependency cairo found: YES 1.16.0
Run-time dependency gdk-pixbuf-2.0 found: YES 2.40.0
Run-time dependency gtk+-3.0 found: YES 3.24.13
Dependency libhandy-0.0 found: NO found '0.0.9' but need: '>= 0.0.10'
Found CMake: /usr/bin/cmake (3.14.6)
Run-time dependency libhandy-0.0 found: NO (tried cmake)
meson.build:15:0: ERROR: Invalid version of dependency, need 'libhandy-0.0' ['>= 0.0.10'] found '0.0.9'.
* [1] https://gitlab.gnome.org/GNOME/fractal/-/blob/4.2.0/meson.build#L15
-rw-r--r-- | net-im/fractal/fractal-4.2.0.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-im/fractal/fractal-4.2.0.ebuild b/net-im/fractal/fractal-4.2.0.ebuild index 199cec2..70dea8d 100644 --- a/net-im/fractal/fractal-4.2.0.ebuild +++ b/net-im/fractal/fractal-4.2.0.ebuild @@ -25,7 +25,7 @@ IUSE="" RDEPEND=">=virtual/rust-1.31.1 >=app-text/gspell-1.8.1 - >=gui-libs/libhandy-0.0.9:0.0= + >=gui-libs/libhandy-0.0.10:0.0= media-libs/gstreamer-editing-services >=x11-libs/cairo-1.16.0 >=x11-libs/gtksourceview-3" |