Date: Monday, July 25, 2022 @ 23:16:54 Author: grawlinson Revision: 1258628
upgpkg: bear 3.0.20-1 * New upstream release. * Add explicit dependencies (thanks namcap!) Modified: bear/trunk/PKGBUILD ----------+ PKGBUILD | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-07-25 22:47:16 UTC (rev 1258627) +++ PKGBUILD 2022-07-25 23:16:54 UTC (rev 1258628) @@ -3,23 +3,44 @@ # Contributor: Moritz Lipp <[email protected]> pkgname=bear -pkgver=3.0.19 -pkgrel=7 -pkgdesc="A tool to generate compilation database for clang tooling" +pkgver=3.0.20 +pkgrel=1 +pkgdesc='A tool to generate compilation database for clang tooling' arch=('x86_64') -url="https://github.com/rizsotto/Bear" +url='https://github.com/rizsotto/Bear' license=('GPL3') -depends=('grpc' 'libgrpc++.so' 'fmt' 'spdlog' 'nlohmann-json') -makedepends=('git' 'cmake' 'gtest' 'python' 'llvm') -_commit='213bc263eb70a7c02c72e3e0a2d0ebf98459c549' +depends=( + 'grpc' + 'libgrpc++.so' + 'fmt' + 'spdlog' + 'nlohmann-json' + 'abseil-cpp' + 'protobuf' + 'openssl' + 'c-ares' + 're2' +) +makedepends=( + 'git' + 'cmake' + 'gtest' + 'python' + 'llvm' +) +_commit='67d5a349dd55125a6df3ec437a0e0a09c3f92c56' source=("$pkgname::git+$url.git#commit=$_commit") b2sums=('SKIP') pkgver() { cd "$pkgname" + git describe --tags } +# XXX if this is moved to build, tests fail. +# there must be some environment variables that +# are discarded inbetween functions. prepare() { cmake \ -B build \
