diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2023-09-24 13:14:31 -0700 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2023-09-24 13:42:05 -0700 |
commit | ddd56d6a0ab0ceee1de2ef95c3d88e1d3e780c49 (patch) | |
tree | 499b8fd7d8c51cec576cbcbc140e2a6a9a25b809 /sys-process/numad/numad-0.5_p20180531-r2.ebuild | |
parent | media-sound/ncmpc: dropped obsolete 0.48 (diff) | |
download | gentoo-ddd56d6a0ab0ceee1de2ef95c3d88e1d3e780c49.tar.gz gentoo-ddd56d6a0ab0ceee1de2ef95c3d88e1d3e780c49.tar.bz2 gentoo-ddd56d6a0ab0ceee1de2ef95c3d88e1d3e780c49.zip |
sys-process/numad: fix buffer overflow, remove workaround.
Closes: https://bugs.gentoo.org/890985
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'sys-process/numad/numad-0.5_p20180531-r2.ebuild')
-rw-r--r-- | sys-process/numad/numad-0.5_p20180531-r2.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/sys-process/numad/numad-0.5_p20180531-r2.ebuild b/sys-process/numad/numad-0.5_p20180531-r2.ebuild new file mode 100644 index 000000000000..ce503112f43e --- /dev/null +++ b/sys-process/numad/numad-0.5_p20180531-r2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit linux-info systemd toolchain-funcs + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://pagure.io/numad.git" + inherit git-r3 +else + # sync with fedora (as numad upstream) and add couple of commis. + # at time of writing f37 uses 20150602 + # git archive --format=tar.gz --prefix="${P}/" -o ${P}.tar.gz ${EGIT_COMMIT} + EGIT_COMMIT="d696d6c413c5b47b4bbae79e29ea132e52095af3" + SRC_URI="https://dev.gentoo.org/~gyakovlev/distfiles/${P}.tar.gz" + KEYWORDS="~amd64 -arm ~arm64 ~ppc64 ~s390 ~x86" +fi + +DESCRIPTION="The NUMA daemon that manages application locality" +HOMEPAGE="http://fedoraproject.org/wiki/Features/numad" + +LICENSE="LGPL-2.1" +SLOT="0" + +CONFIG_CHECK="~NUMA ~CPUSETS" + +PATCHES=( + # https://pagure.io/numad/pull-request/3 + "${FILESDIR}/${PN}-0.5-fix-sparse-node-ids.patch" + + # from debian/ubuntu: https://sources.debian.org/patches/numad + "${FILESDIR}/${PN}-0.5-fix-build-for-no-NR-migrate-pages.patch" + + # from fedora: https://src.fedoraproject.org/rpms/numad/c/b9fdb5b1b09611ba164c04cd994e5e9ddf7fb8f4 + "${FILESDIR}/0001-numad_log-fix-buffer-overflow.patch" +) + +src_configure() { + tc-export AR CC RANLIB +} + +src_compile() { + emake OPT_CFLAGS="${CFLAGS}" +} + +src_install() { + emake prefix="${ED}"/usr install + + newinitd "${FILESDIR}"/numad.initd numad + newconfd "${FILESDIR}"/numad.confd numad + + insinto /etc/logrotate.d + newins "${FILESDIR}"/numad.logrotated numad + + systemd_dounit numad.service +} |