From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/edencommon/
Date: Tue, 22 Apr 2025 01:16:42 +0000 (UTC) [thread overview]
Message-ID: <1745284525.4e223584832a38ca58d8b0943dd4c3dfd98721b7.sam@gentoo> (raw)
commit: 4e223584832a38ca58d8b0943dd4c3dfd98721b7
Author: sin-ack <sin-ack <AT> protonmail <DOT> com>
AuthorDate: Mon Apr 21 16:04:43 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 22 01:15:25 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e223584
dev-cpp/edencommon: add 2025.04.14.00
RDEPEND fixed via qa-vdb. gtest no longer needs to be unconditionally
linked.
Bug: https://bugs.gentoo.org/946922
Signed-off-by: sin-ack <sin-ack <AT> protonmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/edencommon/Manifest | 1 +
dev-cpp/edencommon/edencommon-2025.04.14.00.ebuild | 67 ++++++++++++++++++++++
2 files changed, 68 insertions(+)
diff --git a/dev-cpp/edencommon/Manifest b/dev-cpp/edencommon/Manifest
index 8565d9281f21..5cd4f95ddaf3 100644
--- a/dev-cpp/edencommon/Manifest
+++ b/dev-cpp/edencommon/Manifest
@@ -1,2 +1,3 @@
DIST edencommon-2023.06.19.00.gh.tar.gz 146697 BLAKE2B 8b2419671c50eea43aa4b8d5d85eee75ed24ff9745a71c2d11b1994605552ffc288b55520639585631aed0e2528482a01daa9b47ef676fed7c14b4c7d75d018f SHA512 47b37a6acf93a6c6f2903f3113021aa1d54230cf3e31a8071aa7f276601a8eae56bd95767ec23c3027695367261d4db1483b637513c72ce220778f1f1a4c42ce
DIST edencommon-2024.11.04.00.gh.tar.gz 311977 BLAKE2B 2b152c3cc243c684b8b802981494816b5114e100bc31cc07a96d000dae2be70da4e205d52a30776e930c7c01d63e01baa102cb49a431c961ef133ed936c5eb76 SHA512 c1c428d7392d279e1b0c4348b0fd41ef9a53e50d8a65ff513a56919a7834c118af4adb1145153d10821efb7c8b30b62c1c6d6365b368b90cd567e350c8be0e81
+DIST edencommon-2025.04.14.00.gh.tar.gz 321818 BLAKE2B da50e90bfa6f020ac9b41b4214b52359500e6b8c60e6a5794749b4a87724940aada0493c56e1d6a9b42a0d4d2363b13084a3dee02527fb52defc4fdcf845c326 SHA512 ebf66941d622443a439e3c40ba891e60d274ba259e795b6e046a342be57c0d3c3cdb70f9cada11086b51c2b7f64a4593ba6ab8bc33380aba4976a91d793d0326
diff --git a/dev-cpp/edencommon/edencommon-2025.04.14.00.ebuild b/dev-cpp/edencommon/edencommon-2025.04.14.00.ebuild
new file mode 100644
index 000000000000..3bf3c414765e
--- /dev/null
+++ b/dev-cpp/edencommon/edencommon-2025.04.14.00.ebuild
@@ -0,0 +1,67 @@
+# Copyright 2022-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# These must be bumped together:
+# dev-cpp/edencommon
+# dev-cpp/fb303
+# dev-cpp/fbthrift
+# dev-cpp/fizz
+# dev-cpp/folly
+# dev-cpp/mvfst
+# dev-cpp/wangle
+# dev-util/watchman
+
+inherit cmake toolchain-funcs
+
+DESCRIPTION="Shared library for Watchman and Eden projects"
+HOMEPAGE="https://github.com/facebookexperimental/edencommon"
+SRC_URI="https://github.com/facebookexperimental/edencommon/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm64"
+IUSE="llvm-libunwind test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-cpp/glog:=
+ ~dev-cpp/folly-${PV}:=
+ ~dev-cpp/fb303-${PV}:=
+ dev-libs/boost:=
+ dev-libs/libfmt:=
+ llvm-libunwind? ( llvm-runtimes/libunwind:= )
+ !llvm-libunwind? ( sys-libs/libunwind:= )
+"
+DEPEND="
+ ${RDEPEND}
+ test? ( dev-cpp/gtest )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DCMAKE_INSTALL_DIR="$(get_libdir)/cmake/${PN}"
+ -DLIB_INSTALL_DIR="$(get_libdir)"
+ )
+
+ cmake_src_configure
+}
+
+src_test() {
+ CMAKE_SKIP_TESTS=(
+ # Tests fail because they try to obtain the real UID/username,
+ # which is different from the test runner (portage).
+ # https://github.com/facebookexperimental/edencommon/issues/25
+ "ProcessInfoTest.readUserInfoForCurrentProcess"
+ "ProcessInfoTest.testUidToUsername"
+ )
+
+ # This test fails on GCC 13.
+ # https://github.com/facebookexperimental/edencommon/issues/22
+ if tc-is-gcc && ver_test $(gcc-version) -lt 14.0.0; then
+ CMAKE_SKIP_TESTS+=(PathFuncs.move_or_copy)
+ fi
+
+ cmake_src_test
+}
next reply other threads:[~2025-04-22 1:16 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-22 1:16 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-06-23 9:47 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/edencommon/ Sam James
2025-04-05 10:06 Arthur Zamarin
2024-11-23 20:16 Sam James
2024-11-23 14:01 Sam James
2024-11-11 22:25 Sam James
2024-11-11 22:25 Sam James
2023-11-25 6:21 Sam James
2023-11-25 6:21 Sam James
2023-06-24 8:29 Arthur Zamarin
2023-06-24 6:32 Sam James
2023-06-24 5:39 Sam James
2023-06-02 12:40 Sam James
2023-05-04 9:03 Sam James
2023-05-01 1:43 Sam James
2023-04-14 3:39 Sam James
2023-02-16 3:29 Sam James
2023-02-06 21:25 Sam James
2023-01-21 21:57 Sam James
2022-12-16 20:48 Arthur Zamarin
2022-09-18 0:35 Sam James
2022-09-18 0:35 Sam James
2022-09-06 4:18 Sam James
2022-08-29 20:13 Sam James
2022-08-23 3:30 Sam James
2022-08-15 19:26 Sam James
2022-08-15 17:08 Sam James
2022-08-13 15:09 Sam James
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=1745284525.4e223584832a38ca58d8b0943dd4c3dfd98721b7.sam@gentoo \
--to=sam@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