Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/http-parser/
Date: Tue, 03 Nov 2020 22:23:15
Message-Id: 1604442181.08e38fb68ef1ff36b8911856b909794ce5803b84.mgorny@gentoo
1 commit: 08e38fb68ef1ff36b8911856b909794ce5803b84
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 3 22:06:18 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 3 22:23:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08e38fb6
7
8 net-libs/http-parser: Remove the static library
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 net-libs/http-parser/http-parser-2.9.4.ebuild | 3 ---
13 1 file changed, 3 deletions(-)
14
15 diff --git a/net-libs/http-parser/http-parser-2.9.4.ebuild b/net-libs/http-parser/http-parser-2.9.4.ebuild
16 index 28a3330d367..d0b50760a6f 100644
17 --- a/net-libs/http-parser/http-parser-2.9.4.ebuild
18 +++ b/net-libs/http-parser/http-parser-2.9.4.ebuild
19 @@ -11,7 +11,6 @@ SRC_URI="https://github.com/nodejs/http-parser/archive/v${PV}.tar.gz -> ${P}.tar
20 LICENSE="MIT"
21 SLOT="0/2.9.0"
22 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x64-macos ~x64-solaris"
23 -IUSE="static-libs"
24
25 src_prepare() {
26 default
27 @@ -21,7 +20,6 @@ src_prepare() {
28
29 multilib_src_compile() {
30 emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" CFLAGS_FAST="${CFLAGS}" library
31 - use static-libs && emake CFLAGS_FAST="${CFLAGS}" package
32 }
33
34 multilib_src_test() {
35 @@ -30,5 +28,4 @@ multilib_src_test() {
36
37 multilib_src_install() {
38 emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" install
39 - use static-libs && dolib.a libhttp_parser.a
40 }