From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/aflplusplus/
Date: Fri, 14 Mar 2025 05:26:56 +0000 (UTC) [thread overview]
Message-ID: <1741929716.65ad8051e7e5678a661d020fff9d7b226d9f41aa.sam@gentoo> (raw)
commit: 65ad8051e7e5678a661d020fff9d7b226d9f41aa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 14 05:21:56 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 14 05:21:56 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ad8051
app-forensics/aflplusplus: drop 4.21c
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-forensics/aflplusplus/Manifest | 2 -
app-forensics/aflplusplus/aflplusplus-4.21c.ebuild | 94 ----------------------
2 files changed, 96 deletions(-)
diff --git a/app-forensics/aflplusplus/Manifest b/app-forensics/aflplusplus/Manifest
index bfc801453f19..21484f77a1fc 100644
--- a/app-forensics/aflplusplus/Manifest
+++ b/app-forensics/aflplusplus/Manifest
@@ -1,4 +1,2 @@
-DIST aflplusplus-4.21c-patches.tar.xz 4932 BLAKE2B 8d53291a6d26ecc3d08fb4ca2711544e16c393def9fcb383d4eeb1d67d6bcd531788907ebeac2413e7fed5af5d56f363c6c4d766453e1d8de482cb6d285164ca SHA512 10322ed8d4549ccd2ee85fee00ffea712195858a004344424c31ebe4e4e8d3caf03f0d81d5cb38365418ee1e96288ba44504cb41a66644076e2cb46527f111fc
-DIST aflplusplus-4.21c.tar.gz 3004235 BLAKE2B c182260ba25a8a7a87b91ece5b3ea6aafba09b3361259361d9be24b7c5dd90430403a3170ed9397edaa714a45f62de26f324aab005a27a44fffce2708bb366e5 SHA512 cb58d58561ac814e07e9b5b735fade42b977fb1b92a63f1d7a66a5809203e83acf805ccfdc8ce29c9a3b374a189690010ca3d8ae20e261680751cea3c4841777
DIST aflplusplus-4.30c-patches.tar.xz 5008 BLAKE2B 60031d726e0d1834d0791bb88e437ac81bca1995dd424d64a0694b7e518e3ddbcf490413d830d2fe7649a1eb5c4cfa0e34e8115505a8c5df5e3fddce80b31efd SHA512 6d9d6bf03f5e899b58252eb299029f1b3630f129e78dd7ec2512ae48244822e0614d915c04ba699b2b56d4f839451b0e76e3f1148eb3027e6e7f53a79111add3
DIST aflplusplus-4.30c.tar.gz 3031558 BLAKE2B 7f9c7d32afc5316cef460a72e7603aee36161559c2bb5c03edc408c16e8ba8bf96ced2c90e5578caa401ace37caf3ff7bba72ab58b7070c7c5b69004dc2d4da7 SHA512 072c9524978843eec6be5428793be43d10f3530a3f569fd4015d950cdd87696e887c3b567440afee8cb5e359b234d0c5e668cf9ab90622783fc82f68e3ec5f98
diff --git a/app-forensics/aflplusplus/aflplusplus-4.21c.ebuild b/app-forensics/aflplusplus/aflplusplus-4.21c.ebuild
deleted file mode 100644
index ef151a959330..000000000000
--- a/app-forensics/aflplusplus/aflplusplus-4.21c.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# 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 toolchain-funcs llvm-r1 optfeature python-single-r1
-
-AFL_PATCHSET="${PN}-4.21c-patches"
-DESCRIPTION="Fork of AFL, the popular compile-time instrumentation fuzzer"
-HOMEPAGE="https://github.com/AFLplusplus/AFLplusplus"
-SRC_URI="https://github.com/AFLplusplus/AFLplusplus/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${AFL_PATCHSET}.tar.xz"
-S="${WORKDIR}"/AFLplusplus-${PV}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm64"
-IUSE="test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# Tests involve heavy use of LD_PRELOAD in some cases
-# This isn't compatible with sandbox
-RESTRICT="test"
-
-RDEPEND="
- ${PYTHON_DEPS}
- $(llvm_gen_dep '
- llvm-core/clang:${LLVM_SLOT}=
- llvm-core/llvm:${LLVM_SLOT}=
- ')
- !app-forensics/afl
-"
-DEPEND="
- ${RDEPEND}
- test? ( dev-util/cmocka )
-"
-
-QA_FLAGS_IGNORED="
- usr/lib.*/afl/afl-gcc-cmplog-pass.so
- usr/lib.*/afl/afl-gcc-cmptrs-pass.so
-"
-QA_PREBUILT="usr/share/afl/testcases/others/elf/small_exec.elf"
-
-PATCHES=(
- "${WORKDIR}"/${AFL_PATCHSET}
-)
-
-pkg_setup() {
- llvm-r1_pkg_setup
- python-single-r1_pkg_setup
-}
-
-mymake() {
- # afl-fuzz spews garbage to stdout if the environment contains any
- # variables whose name beginning with USE_ (including the underscore),
- # regardless of their value (even if empty!). The ebuild environment
- # contains several such variables and the garbage that gets printed
- # ends up in the generated man page.
- #
- # We can work around the problem by unsetting all these variables when
- # running make.
- local badvars=("${!USE_@}")
-
- env "${badvars[@]/#/-u}" emake \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)" \
- CFLAGS_FLTO="" \
- PREFIX="${EPREFIX}/usr" \
- HELPER_PATH="${EPREFIX}/usr/$(get_libdir)/afl" \
- DOC_PATH="${EPREFIX}/usr/share/doc/${PF}" \
- MAN_PATH="${EPREFIX}/usr/share/man/man8" \
- "$@"
-}
-
-src_compile() {
- mymake
-}
-
-src_test() {
- mymake test
-}
-
-src_install() {
- mymake DESTDIR="${D}" install
- dostrip -x /usr/share/afl/testcases/
-}
-
-pkg_postinst() {
- # TODO: Any others?
- optfeature "fuzzing with AFL_USE_ASAN" llvm-runtimes/compiler-rt-sanitizers[asan]
- optfeature "fuzzing with AFL_USE_MSAN" llvm-runtimes/compiler-rt-sanitizers[msan]
-}
next reply other threads:[~2025-03-14 5:27 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-14 5:26 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-12 13:42 [gentoo-commits] repo/gentoo:master commit in: app-forensics/aflplusplus/ Sam James
2025-01-12 13:16 Sam James
2024-12-08 6:25 Sam James
2024-12-07 3:04 Sam James
2024-11-15 9:19 Arthur Zamarin
2024-11-14 18:41 Sam James
2024-10-05 2:23 Sam James
2024-10-05 2:23 Sam James
2024-10-03 9:35 Sam James
2024-10-03 9:35 Sam James
2023-12-15 23:03 Sam James
2023-12-15 21:05 Arthur Zamarin
2023-12-04 1:54 Sam James
2023-11-25 8:38 Sam James
2023-11-25 8:38 Sam James
2023-07-24 3:57 Sam James
2023-07-24 3:19 Sam James
2023-06-17 23:17 Sam James
2023-06-17 5:42 Sam James
2023-06-17 5:42 Sam James
2023-06-10 13:48 Sam James
2023-06-10 13:47 Sam James
2023-06-09 14:01 Arthur Zamarin
2023-06-09 13:48 Sam James
2023-04-18 5:30 Sam James
2023-03-04 9:34 Arthur Zamarin
2023-03-04 5:53 Arthur Zamarin
2023-01-27 6:23 Sam James
2023-01-10 3:36 Sam James
2023-01-09 9:45 Sam James
2022-12-10 4:52 Sam James
2022-12-10 4:52 Sam James
2022-12-10 4:51 Sam James
2022-12-10 4:48 Sam James
2022-12-10 4:48 Sam James
2022-09-22 1:09 Sam James
2022-08-31 18:29 Sam James
2022-08-31 4:39 Sam James
2022-07-20 2:45 Sam James
2022-07-19 20:26 Sam James
2022-07-04 23:24 Sam James
2022-03-06 8:00 Sam James
2022-03-02 3:42 Sam James
2021-08-24 23:26 Sam James
2021-08-24 11:40 Agostino Sarubbo
2021-07-22 4:03 Sam James
2021-07-22 3:23 Sam James
2021-07-22 2:50 Sam James
2021-07-02 5:05 Sam James
2021-04-27 18:22 Sam James
2021-04-27 18:20 Sam James
2021-04-25 22:01 Sam James
2021-04-25 22:01 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=1741929716.65ad8051e7e5678a661d020fff9d7b226d9f41aa.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