diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
| commit | b590c8d7572b727d565cc0b8ff660d43569845de (patch) | |
| tree | 06f7a4102ea4e845df8b66660f252920d52952f9 /dev-libs/sentry-native | |
| parent | 24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff) | |
| download | baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip | |
Adding metadata
Diffstat (limited to 'dev-libs/sentry-native')
| -rw-r--r-- | dev-libs/sentry-native/Manifest | 2 | ||||
| -rw-r--r-- | dev-libs/sentry-native/files/sentry-native-0.6.5_no-fuzz-test.patch | 20 | ||||
| -rw-r--r-- | dev-libs/sentry-native/metadata.xml | 9 | ||||
| -rw-r--r-- | dev-libs/sentry-native/sentry-native-0.7.2.ebuild | 49 | ||||
| -rw-r--r-- | dev-libs/sentry-native/sentry-native-0.7.6.ebuild | 46 |
5 files changed, 126 insertions, 0 deletions
diff --git a/dev-libs/sentry-native/Manifest b/dev-libs/sentry-native/Manifest new file mode 100644 index 000000000000..37805d6099e3 --- /dev/null +++ b/dev-libs/sentry-native/Manifest @@ -0,0 +1,2 @@ +DIST sentry-native-0.7.2.tar.gz 330431 BLAKE2B f6651d4397075d67cc1069205e38654ba6c98c64adee03c968f45b1ea2441b0954b90543585ae04c75457edbbc05df4ae0aec242e1570e2716bc8505a11f5a67 SHA512 4a086c87dda82a5109681d014f9d33535d43805f4149ad09609b81da001a7e9c9eb6850ea1b0c2c781072d76725a08341dde1e57be20b26a9ff72f4984f51e8a +DIST sentry-native-0.7.6.tar.gz 468817 BLAKE2B 0106e9b08d12b50fdb9243d204d78cd3e91c0dc94da29d13f60d3187f29d0f29eb7665d2568f52400a9da545086e2b22193e97af2a291422a44ce9b756272ef1 SHA512 2cc24efd85203900082f69ddd2e8f01e4adb06258132f343096f959d234d52bb4da00000bed1fa31e6fc07ba5797b61bd4ae8bf9bb53bb41c4605e3ebf6b3c43 diff --git a/dev-libs/sentry-native/files/sentry-native-0.6.5_no-fuzz-test.patch b/dev-libs/sentry-native/files/sentry-native-0.6.5_no-fuzz-test.patch new file mode 100644 index 000000000000..70231c02da9e --- /dev/null +++ b/dev-libs/sentry-native/files/sentry-native-0.6.5_no-fuzz-test.patch @@ -0,0 +1,20 @@ +On the one hand the bundled upstream README only mentions sentry_test_unit +as a test suite meant for the users to run, on the other comments +in sentry_fuzz_json sources state that it has to be built in a very +special - and performance-killing - way in order to work. + +--- a/tests/unit/CMakeLists.txt ++++ b/tests/unit/CMakeLists.txt +@@ -89,6 +89,7 @@ + + add_test(NAME sentry_test_unit COMMAND sentry_test_unit) + ++if(0) + add_executable(sentry_fuzz_json + ${SENTRY_SOURCES} + fuzz.c +@@ -114,3 +115,4 @@ + endif() + + add_test(NAME sentry_fuzz_json COMMAND sentry_fuzz_json) ++endif() diff --git a/dev-libs/sentry-native/metadata.xml b/dev-libs/sentry-native/metadata.xml new file mode 100644 index 000000000000..9c2207e07145 --- /dev/null +++ b/dev-libs/sentry-native/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> +<pkgmetadata> + <use> + <flag name="breakpad">Use <pkg>dev-util/breakpad</pkg> as the crash handler</flag> + <flag name="curl">Enable support for automated uploading of crash reports</flag> + </use> + <origin>baldeagleos-repo</origin> +</pkgmetadata> diff --git a/dev-libs/sentry-native/sentry-native-0.7.2.ebuild b/dev-libs/sentry-native/sentry-native-0.7.2.ebuild new file mode 100644 index 000000000000..c9f38ffb603b --- /dev/null +++ b/dev-libs/sentry-native/sentry-native-0.7.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Sentry SDK for C, C++ and native applications" +HOMEPAGE="https://sentry.io/ https://github.com/getsentry/sentry-native" +SRC_URI="https://github.com/getsentry/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+breakpad +curl test" + +RESTRICT="!test? ( test )" + +RDEPEND=" + breakpad? ( + dev-util/breakpad + virtual/pkgconfig + ) + curl? ( + net-misc/curl + virtual/zlib:= + ) +" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-0.6.5_no-fuzz-test.patch +) + +src_configure() { + local mycmakeargs=( + -DSENTRY_BUILD_EXAMPLES=OFF + -DSENTRY_BACKEND=$(usex breakpad "breakpad" "inproc") + -DSENTRY_BUILD_TESTS=$(usex test) + -DSENTRY_TRANSPORT=$(usex curl "curl" "none") + -DSENTRY_TRANSPORT_COMPRESSION=$(usex curl) + ) + # Avoid "not used by the project" warnings when USE=-breakpad + if use breakpad; then + mycmakeargs+=( -DSENTRY_BREAKPAD_SYSTEM=ON ) + fi + + cmake_src_configure +} diff --git a/dev-libs/sentry-native/sentry-native-0.7.6.ebuild b/dev-libs/sentry-native/sentry-native-0.7.6.ebuild new file mode 100644 index 000000000000..934ff64f9127 --- /dev/null +++ b/dev-libs/sentry-native/sentry-native-0.7.6.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Sentry SDK for C, C++ and native applications" +HOMEPAGE="https://sentry.io/ https://github.com/getsentry/sentry-native" +SRC_URI="https://github.com/getsentry/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+breakpad +curl test" +RESTRICT="!test? ( test )" + +RDEPEND=" + breakpad? ( dev-util/breakpad ) + curl? ( + net-misc/curl + virtual/zlib:= + ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${PN}-0.6.5_no-fuzz-test.patch +) + +src_configure() { + local mycmakeargs=( + -DSENTRY_BUILD_EXAMPLES=OFF + -DSENTRY_BACKEND=$(usex breakpad "breakpad" "inproc") + -DSENTRY_BUILD_TESTS=$(usex test) + -DSENTRY_TRANSPORT=$(usex curl "curl" "none") + -DSENTRY_TRANSPORT_COMPRESSION=$(usex curl) + ) + # Avoid "not used by the project" warnings when USE=-breakpad + if use breakpad; then + mycmakeargs+=( -DSENTRY_BREAKPAD_SYSTEM=ON ) + fi + + cmake_src_configure +} |
