From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF878158003 for ; Fri, 9 Sep 2022 07:59:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E28D8E092D; Fri, 9 Sep 2022 07:59:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8E21E092C for ; Fri, 9 Sep 2022 07:59:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1410E340CD8 for ; Fri, 9 Sep 2022 07:59:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B891C5E6 for ; Fri, 9 Sep 2022 07:59:40 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1662710361.a81f1ccd703b7a39f74263cbb5b3d2fe454a4bc7.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/http-parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/http-parser/http-parser-2.9.4-r1.ebuild net-libs/http-parser/http-parser-2.9.4-r2.ebuild X-VCS-Directories: net-libs/http-parser/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a81f1ccd703b7a39f74263cbb5b3d2fe454a4bc7 X-VCS-Branch: master Date: Fri, 9 Sep 2022 07:59:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f6616e56-6d50-43c9-b685-bd7a5d6a3b9d X-Archives-Hash: e370aef6bcc70d7154c6e043572dab2d commit: a81f1ccd703b7a39f74263cbb5b3d2fe454a4bc7 Author: Sam James gentoo org> AuthorDate: Fri Sep 9 07:59:21 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Sep 9 07:59:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a81f1ccd net-libs/http-parser: drop multilib No multilib reverse dependencies. Signed-off-by: Sam James gentoo.org> Signed-off-by: David Seifert gentoo.org> ...er-2.9.4-r1.ebuild => http-parser-2.9.4-r2.ebuild} | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/net-libs/http-parser/http-parser-2.9.4-r1.ebuild b/net-libs/http-parser/http-parser-2.9.4-r2.ebuild similarity index 80% rename from net-libs/http-parser/http-parser-2.9.4-r1.ebuild rename to net-libs/http-parser/http-parser-2.9.4-r2.ebuild index 8ceeb33fae6e..34954b2e531a 100644 --- a/net-libs/http-parser/http-parser-2.9.4-r1.ebuild +++ b/net-libs/http-parser/http-parser-2.9.4-r2.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 -inherit toolchain-funcs multilib-minimal +EAPI=8 + +inherit toolchain-funcs DESCRIPTION="HTTP request/response parser for C" HOMEPAGE="https://github.com/nodejs/http-parser" @@ -18,20 +19,20 @@ PATCHES=( "${FILESDIR}"/${P}-non-x86-test.patch ) -src_prepare() { - default +src_configure() { tc-export CC AR - multilib_copy_sources } -multilib_src_compile() { +src_compile() { emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" CFLAGS_FAST="${CFLAGS}" library } -multilib_src_test() { +src_test() { emake CFLAGS_DEBUG="${CFLAGS}" CFLAGS_FAST="${CFLAGS}" test } -multilib_src_install() { +src_install() { emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" install + + einstalldocs }