Skip to content

Commit

Permalink
.lgtm.yml: Fix gpgme dependency
Browse files Browse the repository at this point in the history
Since Ubuntu 18.04, libgpgme-dev is the real package and libgpgme11-dev
is a virtual package provided by it. Apparently LGTM running on Ubuntu
20.04 no longer resolves the virtual package:

```
WARNING: Package 'libgpgme11-dev' requested by configuration file was not found
```

That ends up causing the build to fail:

```
configure: error: Need GPGME_PTHREAD version 1.1.8 or later
```
  • Loading branch information
dbnicholson committed Feb 17, 2022
1 parent 188b187 commit b91f29c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .lgtm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extraction:
- "libfuse-dev"
- "libgirepository1.0-dev"
- "libglib2.0-dev"
- "libgpgme11-dev"
- "libgpgme-dev"
- "liblzma-dev"
- "libmount-dev"
- "libselinux1-dev"
Expand Down

0 comments on commit b91f29c

Please sign in to comment.