Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 927383 - dev-libs/libgit2-glib-1.2.0: error: implicit declaration of function ‘git_error_set_str’ with libgit2-1.8.0
Summary: dev-libs/libgit2-glib-1.2.0: error: implicit declaration of function ‘git_err...
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Michał Górny
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-03-21 08:14 UTC by Dmitriy Baranov
Modified: 2024-03-21 15:01 UTC (History)
4 users (show)

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


Attachments
build log (build.log,43.65 KB, text/plain)
2024-03-21 08:19 UTC, Dmitriy Baranov
Details
emerge --info (einfo.txt,8.02 KB, text/plain)
2024-03-21 08:20 UTC, Dmitriy Baranov
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Dmitriy Baranov 2024-03-21 08:14:05 UTC
../libgit2-glib-1.2.0/libgit2-glib/ggit-clone-options.c: In function ‘create_repository_wrapper’:
../libgit2-glib-1.2.0/libgit2-glib/ggit-clone-options.c:153:17: error: implicit declaration of function ‘git_error_set_str’; did you mean ‘giterr_set_str’? [-Werror=implicit-function-declaration]
  153 |                 git_error_set_str (GIT_ERROR, error->message);
      |                 ^~~~~~~~~~~~~~~~~
      |                 giterr_set_str

Reproducible: Always
Comment 1 Dmitriy Baranov 2024-03-21 08:19:48 UTC
Created attachment 888027 [details]
build log
Comment 2 Dmitriy Baranov 2024-03-21 08:20:08 UTC
Created attachment 888028 [details]
emerge --info
Comment 3 Ionen Wolkens gentoo-dev 2024-03-21 08:48:01 UTC
Seems git_error_set_str was moved to git2/sys/errors.h in [1] which is not included by the main git2.h that I can see?

Kind of sound(?) like this is an issue with libgit2-1.8.0 given don't think packages are supposed to include anything but git2.h directly (not that I really know libgit2 usage, maybe not supposed to use that function at all).

giterr_set_str still exists but that's the deprecated alias available through deprecated.h (and that one is included)

Regardless of that, there's still the static assert that fails which may indicate it needs updates for 1.8.0 regardless (it does "build" if skip the assert and include git2/sys/errors.h fwiw, but that sounds wrong and there are incompatible pointer types warnings).

[1] https://github.com/libgit2/libgit2/commit/f78ae89bf
Comment 4 Larry the Git Cow gentoo-dev 2024-03-21 09:24:28 UTC
The bug has been referenced in the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe93666488fa45b99074f546edd1dc3c8c798c9

commit 6fe93666488fa45b99074f546edd1dc3c8c798c9
Author:     Ionen Wolkens <ionen@gentoo.org>
AuthorDate: 2024-03-21 09:16:23 +0000
Commit:     Ionen Wolkens <ionen@gentoo.org>
CommitDate: 2024-03-21 09:23:37 +0000

    dev-libs/libgit2-glib: limit to <libgit2-1.8.0 for now
    
    Just as a quick workaround until maintainer(s) have time.
    
    No need for a revbump given binding operator will cause it
    to recheck dependencies when attempting rebuild.
    
    Bug: https://bugs.gentoo.org/927383
    Signed-off-by: Ionen Wolkens <ionen@gentoo.org>

 dev-libs/libgit2-glib/libgit2-glib-1.2.0.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)