From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/clazy/
Date: Sun, 29 Dec 2024 21:35:21 +0000 (UTC) [thread overview]
Message-ID: <1735508075.3b8b4ef6ea5bf21bd082611dc5c8b128692fe192.asturm@gentoo> (raw)
commit: 3b8b4ef6ea5bf21bd082611dc5c8b128692fe192
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 29 21:25:18 2024 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 29 21:34:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b8b4ef6
dev-util/clazy: add 1.13
Closes: https://bugs.gentoo.org/947027
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-util/clazy/Manifest | 1 +
dev-util/clazy/clazy-1.13.ebuild | 83 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 84 insertions(+)
diff --git a/dev-util/clazy/Manifest b/dev-util/clazy/Manifest
index e7e09153faef..4a556fa20ebb 100644
--- a/dev-util/clazy/Manifest
+++ b/dev-util/clazy/Manifest
@@ -1 +1,2 @@
DIST clazy-1.12.tar.xz 427740 BLAKE2B ad2c78a506132b5fd6b3c22a7e9794c38ddd71242cde6f760e48d0250f6215629007d45303f4b35fdc7717865b8221ab1c2f3c6889a44ea1809e112845f16463 SHA512 7a2b4a753098f15936a4731c82c660c1cd4d81949279435e87f00f7f72bef3e32cb574c8991c0707798581278e9fbcae34d354c1e6b77a15a5e26166d658fa9e
+DIST clazy-1.13.tar.xz 434648 BLAKE2B 2659bec375c9f30021cdd86c12ab4416dfb5250706c2f6254cbd848d07e3e4f220b2a74d23390f235939ad3e5390797ea4b5398948e129a07a66a5de2d33c997 SHA512 4044bddb9e60e227ff2ab7e40c32f087a621e00c985e1706a4f4e2ace20f96cc6e78f00781f7d59da5b066aa49370c645db506e41d955409c0e146771a59ee24
diff --git a/dev-util/clazy/clazy-1.13.ebuild b/dev-util/clazy/clazy-1.13.ebuild
new file mode 100644
index 000000000000..908a731edf37
--- /dev/null
+++ b/dev-util/clazy/clazy-1.13.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LLVM_COMPAT=( {15..19} )
+PYTHON_COMPAT=( python3_{10..13} )
+inherit cmake llvm-r1 python-any-r1
+
+DESCRIPTION="Compiler plugin which allows clang to understand Qt semantics"
+HOMEPAGE="https://apps.kde.org/clazy"
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ $(llvm_gen_dep 'llvm-core/clang:${LLVM_SLOT}')
+ $(llvm_gen_dep 'llvm-core/llvm:${LLVM_SLOT}')
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ test? (
+ ${PYTHON_DEPS}
+ dev-qt/qtbase:6[network,xml]
+ dev-qt/qtmultimedia:6
+ dev-qt/qtnetworkauth:6
+ dev-qt/qtscxml:6[qml]
+ dev-qt/qtsvg:6
+ )
+"
+
+PATCHES=(
+ # downstream patches
+ "${FILESDIR}"/${PN}-1.12-LIBRARY_DIRS.patch
+ "${FILESDIR}"/${PN}-1.12-INCLUDE_DIRS.patch
+ "${FILESDIR}"/${PN}-1.12-standalone-install-location.patch
+ "${FILESDIR}"/${PN}-1.12-clazy-install-location.patch
+)
+
+pkg_setup() {
+ use test && python-any-r1_pkg_setup
+ llvm-r1_pkg_setup
+}
+
+src_prepare() {
+ cmake_src_prepare
+
+ sed -e '/install(FILES README.md COPYING-LGPL2.txt checks.json DESTINATION/d' \
+ -i CMakeLists.txt || die
+}
+
+src_configure() {
+ local -x LLVM_ROOT="$(get_llvm_prefix -d)"
+
+ export CI_JOB_NAME_SLUG="qt6"
+
+ cmake_src_configure
+}
+
+src_test() {
+ # clazy-standalone wants to be installed in the directory of the clang binary,
+ # so it can find the llvm/clang via relative paths.
+ # Requires the standalone-install-location.patch.
+ # Setup the directories and symlink the system include dir for that.
+ local -x LLVM_ROOT="$(get_llvm_prefix -d)"
+ local -x CLANG_ROOT="${LLVM_ROOT//llvm/clang}"
+ mkdir -p "${BUILD_DIR}${CLANG_ROOT}" || die
+
+ ln -s "${CLANG_ROOT}/include" "${BUILD_DIR}${CLANG_ROOT}/include" || die
+
+ # Run tests against built copy, not installed
+ # bug #811723
+ local -x PATH="${BUILD_DIR}/${LLVM_ROOT}/bin:${BUILD_DIR}/bin:${PATH}"
+ local -x LD_LIBRARY_PATH="${BUILD_DIR}/lib"
+
+ chmod +x "${BUILD_DIR}/bin/clazy" || die
+
+ cmake_src_test
+}
next reply other threads:[~2024-12-29 21:35 UTC|newest]
Thread overview: 78+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-29 21:35 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-08-01 19:08 [gentoo-commits] repo/gentoo:master commit in: dev-util/clazy/ Andreas Sturmlechner
2025-07-28 6:25 Arthur Zamarin
2025-07-10 0:08 Sam James
2025-06-15 15:22 Andreas Sturmlechner
2025-05-22 20:17 Sam James
2025-05-22 19:43 Sam James
2025-04-28 22:15 Andreas Sturmlechner
2025-01-20 23:47 Sam James
2025-01-20 22:12 Sam James
2024-12-29 21:35 Andreas Sturmlechner
2024-12-01 8:32 Sam James
2024-11-29 22:01 Sam James
2024-11-10 21:43 Sam James
2024-11-10 19:49 Sam James
2024-11-10 17:59 Sam James
2024-11-10 17:59 Sam James
2024-04-22 17:07 Andreas Sturmlechner
2024-04-20 17:39 Arthur Zamarin
2024-04-20 14:52 Arthur Zamarin
2024-04-20 14:52 Arthur Zamarin
2023-07-09 10:09 Andreas Sturmlechner
2023-06-18 15:45 Sam James
2023-06-18 15:45 Sam James
2023-06-18 15:14 Sam James
2023-03-23 21:03 Andreas Sturmlechner
2022-12-03 6:25 Arthur Zamarin
2022-11-29 15:10 Jakov Smolić
2022-11-17 23:08 Sam James
2022-05-27 6:55 Agostino Sarubbo
2022-05-25 19:23 Sam James
2022-05-22 20:47 Sam James
2022-05-18 15:31 Andreas Sturmlechner
2022-02-21 12:06 Andreas Sturmlechner
2022-01-22 12:20 Andreas Sturmlechner
2022-01-19 13:44 Jakov Smolić
2021-12-13 22:42 Sam James
2021-12-13 0:11 Sam James
2021-12-13 0:11 Sam James
2021-12-11 1:18 Sam James
2021-12-11 1:16 Sam James
2021-10-16 23:42 Sam James
2021-07-29 18:18 Andreas Sturmlechner
2021-03-07 19:52 Andreas Sturmlechner
2021-03-07 19:46 Sam James
2021-03-06 15:11 Thomas Deutschmann
2021-03-06 7:26 Sam James
2021-01-13 23:24 Andreas Sturmlechner
2021-01-07 15:04 Sam James
2020-12-29 7:56 Sam James
2020-12-27 4:12 Sam James
2020-11-25 16:37 Mikle Kolyada
2020-11-25 16:23 Mikle Kolyada
2020-11-24 0:26 Andreas Sturmlechner
2020-11-20 20:40 Andreas Sturmlechner
2020-11-20 20:40 Andreas Sturmlechner
2020-11-06 14:55 Sam James
2020-10-28 22:41 Sam James
2020-08-21 18:19 Agostino Sarubbo
2020-06-30 15:54 Andreas Sturmlechner
2020-05-16 18:48 Andreas Sturmlechner
2020-05-10 11:31 Andreas Sturmlechner
2020-05-10 9:15 Mikle Kolyada
2020-04-09 23:07 Andreas Sturmlechner
2020-03-26 12:38 Andreas Sturmlechner
2020-03-22 21:43 Andreas Sturmlechner
2020-03-22 21:43 Andreas Sturmlechner
2020-03-22 20:41 Andreas Sturmlechner
2019-03-31 9:51 Michael Palimaka
2019-03-31 9:49 Michael Palimaka
2019-03-22 10:17 Mikle Kolyada
2019-03-10 23:57 Andreas Sturmlechner
2019-02-01 20:42 Andreas Sturmlechner
2018-10-01 20:55 Andreas Sturmlechner
2018-10-01 20:55 Andreas Sturmlechner
2018-04-11 16:19 Michał Górny
2018-01-11 7:30 Michael Palimaka
2017-07-29 3:32 Michael Palimaka
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=1735508075.3b8b4ef6ea5bf21bd082611dc5c8b128692fe192.asturm@gentoo \
--to=asturm@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