dev-util/breakpad: drop 2023.06.01

Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Alfredo Tupone 2025-09-01 21:25:19 +02:00
parent 079e2c33a6
commit d99e79b496
No known key found for this signature in database
GPG Key ID: FBE5925C5B02CE58
2 changed files with 0 additions and 63 deletions

View File

@ -1,2 +1 @@
DIST breakpad-2023.06.01.tar.gz 5472205 BLAKE2B c1cb70944d044a699f01eb7ad4d3fc0e743ca33c74613fdeb06930077279d6559d797e9e5ef437968f088657f5ae71b01e8824d63759e5b8244a8deac0aecd3e SHA512 7a231bbaf88f94c79b1ace1c3e66bd520595905bfc8a7ffa1aa453ea6f056136b82aea3a321d97db4ccfd1212a41e8790badcc43222564d861e9e5c35e40a402
DIST breakpad-2024.02.16.tar.gz 5484074 BLAKE2B 3cbfe8a1836a29f13a42aec81e75fb94a9df9460e262f0a040f79419a6373fb3a69e13a657b1a6b008c41aec0af9bf9d1b52d880040a1db01ccdd973d78d5e8b SHA512 88c691983c6c92fd5321d729c8eec059914293de0e91fe1d429a6247f3b7299f32ec4938eccbbe2c95a9ca507db14d73a1c9798d5fce79a8b474c3c216f0951a

View File

@ -1,62 +0,0 @@
# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="implement a crash-reporting system."
HOMEPAGE="https://chromium.googlesource.com/breakpad/breakpad/"
SRC_URI="https://github.com/google/${PN}/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="BSD BSD-4"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test tools"
RDEPEND="
net-misc/curl
"
DEPEND="${RDEPEND}
dev-libs/linux-syscall-support
dev-embedded/libdisasm
"
BDEPEND="test? ( dev-cpp/gtest )"
RESTRICT="!test? ( test )"
REQUIRED_USE="elibc_musl? ( !tools )"
PATCHES=(
"${FILESDIR}"/${P}-gentoo.patch
"${FILESDIR}"/${P}-reinterpret.patch
)
src_prepare() {
default
sed -i \
-e 's|"third_party/lss\(.*\)"|<lss\1>|' \
$(find src -name '*.cc' -o -name '*.h') \
|| die
sed -i \
-e '/includelss/d' \
-e '/third_party\/curl/d' \
Makefile.am \
|| die
sed -i \
-e "/AC_INIT/s:0.1:${PVR}:" \
-e "/AS_VAR_APPEND/d" \
configure.ac \
|| die
sed -i \
-e 's|reinterpret_cast|static_cast|g' \
src/processor/minidump_processor_unittest.cc \
|| die
eautoreconf
}
src_configure() {
econf \
--enable-system-test-libs \
$(use_enable tools) \
|| die
}