Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 823242 - app-crypt/seahorse-41.0 fails to compile: Run-time dependency avahi-client found: NO (tried pkgconfig and cmake)
Summary: app-crypt/seahorse-41.0 fails to compile: Run-time dependency avahi-client fo...
Status: RESOLVED WORKSFORME
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-11-12 08:07 UTC by Agostino Sarubbo
Modified: 2022-04-17 06:23 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
build.log (build.log,49.68 KB, text/plain)
2021-11-12 08:07 UTC, Agostino Sarubbo
Details
1-meson-log.txt (1-meson-log.txt,37.93 KB, text/plain)
2021-11-12 08:07 UTC, Agostino Sarubbo
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Agostino Sarubbo gentoo-dev 2021-11-12 08:07:10 UTC
https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/

Issue: app-crypt/seahorse-41.0 fails to compile.
Discovered on: amd64 (internal ref: ci)

NOTE:
This machine uses GCC-11: https://gcc.gnu.org/gcc-11/porting_to.html
If you think this is a GCC-11 related issue, please block bug 732706.
Comment 1 Agostino Sarubbo gentoo-dev 2021-11-12 08:07:12 UTC
Created attachment 750528 [details]
build.log

build log and emerge --info
Comment 2 Agostino Sarubbo gentoo-dev 2021-11-12 08:07:13 UTC
Created attachment 750531 [details]
1-meson-log.txt

1-meson-log.txt
Comment 3 Agostino Sarubbo gentoo-dev 2021-11-12 08:07:14 UTC
Error(s) that match a know pattern in addition to what has been reported in the summary:


Run-time dependency avahi-client found: NO (tried pkgconfig and cmake)
Run-time dependency avahi-glib found: NO (tried pkgconfig and cmake)
Comment 4 Matt Turner gentoo-dev 2022-04-17 06:23:54 UTC
(In reply to Agostino Sarubbo from comment #3)
> Error(s) that match a know pattern in addition to what has been reported in
> the summary:
> 
> 
> Run-time dependency avahi-client found: NO (tried pkgconfig and cmake)
> Run-time dependency avahi-glib found: NO (tried pkgconfig and cmake)

avahi-client is controlled by avahi's USE=dbus, which seahorse depends on.

avahi-glib is built unconditionally via --enable-glib.

seahorse's meson.build has

avahi_client = dependency('avahi-client', required: get_option('key-sharing'))
avahi_glib = dependency('avahi-glib', version: '>= 0.6', required: get_option('key-sharing'))

seahorse's ebuild has:

> 	zeroconf? ( >=net-dns/avahi-0.6:=[dbus] )
> ...
> 		$(meson_use zeroconf key-sharing)

So I don't see a way this can happen.