From: "Georgy Yakovlev" <gyakovlev@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bear/
Date: Wed, 1 Jul 2020 21:23:36 +0000 (UTC) [thread overview]
Message-ID: <1593638559.097ae2bc2410e259bc95344bfb8bacfb0c20720d.gyakovlev@gentoo> (raw)
commit: 097ae2bc2410e259bc95344bfb8bacfb0c20720d
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 1 21:18:33 2020 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Wed Jul 1 21:22:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=097ae2bc
dev-util/bear: new package, compile_commands.json generator
used to feed clangd/lsp and other tools.
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
dev-util/bear/Manifest | 1 +
dev-util/bear/bear-2.4.3.ebuild | 61 +++++++++++++++++++++++++++++++++++++++++
dev-util/bear/metadata.xml | 19 +++++++++++++
3 files changed, 81 insertions(+)
diff --git a/dev-util/bear/Manifest b/dev-util/bear/Manifest
new file mode 100644
index 00000000000..bbfa7c76de5
--- /dev/null
+++ b/dev-util/bear/Manifest
@@ -0,0 +1 @@
+DIST bear-2.4.3.tar.gz 49933 BLAKE2B 2a91c30d81f9d0e58a25458579f6b0c867c07d2e532bd2ed29305645e152bd564156f708c4a07a683577412b3fdab1f106685ecf1ad88eaad2f33f0bc43a5baa SHA512 a4690cfc9938d8752ca5c8322ca4c5039746ade059e4459e7f3f91b2bf3d36ea691a5d855cab7a4e7ad8ff76478c48c4394593e069a1cf8396ead41017421753
diff --git a/dev-util/bear/bear-2.4.3.ebuild b/dev-util/bear/bear-2.4.3.ebuild
new file mode 100644
index 00000000000..83600bfdb38
--- /dev/null
+++ b/dev-util/bear/bear-2.4.3.ebuild
@@ -0,0 +1,61 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8} )
+
+inherit cmake python-single-r1
+
+DESCRIPTION="Build EAR generates a compilation database for clang tooling"
+HOMEPAGE="https://github.com/rizsotto/Bear"
+SRC_URI="https://github.com/rizsotto/Bear/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64"
+IUSE="test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="test? (
+ app-shells/bash
+ $(python_gen_cond_dep '
+ dev-python/lit[${PYTHON_USEDEP}]
+ ')
+)"
+
+RDEPEND="${PYTHON_DEPS}"
+
+RESTRICT="!test? ( test )"
+
+S="${WORKDIR}/${P^}"
+
+src_compile() {
+ cmake_src_compile
+ # need to fix it now, before tests are run
+ python_fix_shebang "${BUILD_DIR}"/bear/bear
+ python_fix_shebang test/functional/tools/cdb_diff.py
+}
+
+src_test() {
+ if has sandbox ${FEATURES}; then
+ ewarn "\'FEATURES=sandbox\' detected"
+ ewarn "Bear overrides LD_PRELOAD and conflicts with gentoo sandbox"
+ ewarn "Skipping tests"
+ elif
+ has usersandbox ${FEATURES}; then
+ ewarn "\'FEATURES=usersandbox\' detected"
+ ewarn "Skipping tests"
+ elif
+ has_version -b 'sys-devel/gcc-config[-native-symlinks]'; then
+ ewarn "\'sys-devel/gcc-config[-native-symlinks]\' detected, tests call /usr/bin/cc directly (hardcoded)"
+ ewarn "and will fail without generic cc symlink"
+ ewarn "Skipping tests"
+ else
+ einfo "removing unwanted/unsupported/xfail tests"
+ rm -v test/functional/cases/{end-to-end/scons.ft,intercept/cuda/successful_build.fts,run_pep8.ft} || die
+ einfo "test may use optional tools if found: qmake gfortran"
+ cmake_build check
+ fi
+}
diff --git a/dev-util/bear/metadata.xml b/dev-util/bear/metadata.xml
new file mode 100644
index 00000000000..f8c8a305d1e
--- /dev/null
+++ b/dev-util/bear/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gyakovlev@gentoo.org</email>
+ <name>Georgy Yakovlev</name>
+ </maintainer>
+ <longdescription lang="en">
+ Bear is a tool that generates a compilation database for clang tooling.
+ The concept behind Bear is: to execute the original build command and intercept the exec calls issued by the build tool.
+ To achieve that, Bear uses the LD_PRELOAD or DYLD_INSERT_LIBRARIES mechanisms provided by the dynamic linker.
+ Bear has two components: the library and the binary.
+ The library redefines the exec methods to be used by all child processes.
+ The executable enables the use of the library for child processes and writes the output file.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">rizsotto/Bear</remote-id>
+ </upstream>
+</pkgmetadata>
next reply other threads:[~2020-07-01 21:23 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-01 21:23 Georgy Yakovlev [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-09-10 22:58 [gentoo-commits] repo/gentoo:master commit in: dev-util/bear/ Georgy Yakovlev
2021-04-06 10:08 Joonas Niilola
2021-04-06 10:10 Joonas Niilola
2021-04-22 4:07 Georgy Yakovlev
2021-04-22 4:07 Georgy Yakovlev
2021-04-22 4:07 Georgy Yakovlev
2021-04-23 5:55 Joonas Niilola
2021-04-23 19:50 Georgy Yakovlev
2021-04-23 20:06 Georgy Yakovlev
2021-05-03 17:01 Georgy Yakovlev
2021-05-07 7:35 Joonas Niilola
2021-05-07 7:35 Joonas Niilola
2021-06-04 23:15 Georgy Yakovlev
2021-06-09 6:04 Georgy Yakovlev
2021-06-23 3:47 Georgy Yakovlev
2021-07-03 20:38 Georgy Yakovlev
2021-07-03 20:40 Georgy Yakovlev
2021-07-04 9:10 Georgy Yakovlev
2021-07-04 9:48 Georgy Yakovlev
2021-07-14 21:27 Georgy Yakovlev
2021-10-07 5:34 Georgy Yakovlev
2021-10-12 16:13 Georgy Yakovlev
2021-10-17 0:03 Georgy Yakovlev
2021-12-20 4:19 Georgy Yakovlev
2021-12-24 12:08 Georgy Yakovlev
2021-12-24 12:08 Georgy Yakovlev
2022-04-08 5:25 Georgy Yakovlev
2022-07-04 17:56 Georgy Yakovlev
2022-07-04 17:56 Georgy Yakovlev
2022-07-06 19:33 Sam James
2022-10-22 11:26 Yixun Lan
2022-11-10 7:58 Sam James
2022-12-21 23:09 Sam James
2023-02-07 2:59 Sam James
2023-02-16 5:52 WANG Xuerui
2023-04-25 14:56 Arthur Zamarin
2023-06-06 6:41 Sam James
2023-07-07 4:40 Sam James
2023-07-07 10:14 Sam James
2023-09-15 6:06 Sam James
2024-03-16 13:34 Joonas Niilola
2024-04-01 7:14 Sam James
2024-05-12 15:41 Sam James
2024-05-12 15:41 Sam James
2024-07-03 5:30 Joonas Niilola
2024-08-13 13:05 Joonas Niilola
2024-09-13 19:33 Arthur Zamarin
2024-09-13 19:33 Arthur Zamarin
2024-09-14 9:53 Florian Schmaus
2024-11-18 9:07 Petr Vaněk
2024-11-18 9:07 Petr Vaněk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1593638559.097ae2bc2410e259bc95344bfb8bacfb0c20720d.gyakovlev@gentoo \
--to=gyakovlev@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox