From patchwork Sun Sep 15 13:10:39 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adrian Perez de Castro X-Patchwork-Id: 1162461 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=igalia.com Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=igalia.com header.i=@igalia.com header.b="J3Vxhd7K"; dkim-atps=neutral Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46WVB40LWlz9sP4 for ; Sun, 15 Sep 2019 23:11:07 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 47F6E86816; Sun, 15 Sep 2019 13:11:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0ntEG0WWdl-3; Sun, 15 Sep 2019 13:11:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id A2E7B86274; Sun, 15 Sep 2019 13:11:01 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 660881BF489 for ; Sun, 15 Sep 2019 13:11:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 628EC855D7 for ; Sun, 15 Sep 2019 13:11:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id irOCcaTZeER3 for ; Sun, 15 Sep 2019 13:10:59 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from fanzine.igalia.com (fanzine.igalia.com [91.117.99.155]) by fraxinus.osuosl.org (Postfix) with ESMTPS id F2C7F85585 for ; Sun, 15 Sep 2019 13:10:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Transfer-Encoding:MIME-Version:Message-Id:Date:Subject:Cc:To:From; bh=7If1/1p0IS3kyFm3+1au71cp0DHBfpkPx/9SGesfmg8=; b=J3Vxhd7Kzh8HSMjdPJPJsQlSVTwmCTS9KozNJObG2Xf3RetrU5Iqvi7Lj3nb9wLQXNhtpbMRwVhY5I2PorpQvE8M5POiflopqM+tuq5f8vHdFXxDzi0xuW9Uyzsfrg845EqNlG7lOqp1JPjQ12FHzZk3xjYJbFj/RasquTP+UeyGtfTdadgXL/wacUV/H5iZEsNqHNIc+cbNml4lRgClM5Kj9suzg4jKPLQWSKT9oachje3AFtGEb8nvSxW8krUpbgidxpqSUR8c24OQCfYfKvsU9pEjIjtwHc3dCSrAwVOKmXcYiSWVIE5gnVzKknYhR2i/ZrhCYV3Mcokdd68ZaQ==; Received: from 82-181-161-131.bb.dnainternet.fi ([82.181.161.131] helo=momiji) by fanzine.igalia.com with esmtpsa (Cipher TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim) id 1i9UIp-0007dR-9m; Sun, 15 Sep 2019 15:10:55 +0200 Received: from localhost (momiji [local]) by momiji (OpenSMTPD) with ESMTPA id e280e777; Sun, 15 Sep 2019 13:10:40 +0000 (UTC) From: Adrian Perez de Castro To: buildroot@buildroot.org Date: Sun, 15 Sep 2019 16:10:39 +0300 Message-Id: <20190915131039.54385-1-aperez@igalia.com> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Subject: [Buildroot] [PATCH 1/1] package/wpewebkit: add missing host-perl dependency X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Adrian Perez de Castro Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Avoids issues like this, which happened for webkitgtk: http://autobuild.buildroot.net/results/faa23c0e648b916d0fb01adb95948234d6db7a71/ The JSON::PP module is included within the Perl installation. WebKit has some scripts used at build time which require Perl installed in the host. Signed-off-by: Adrian Perez de Castro --- package/wpewebkit/wpewebkit.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/wpewebkit/wpewebkit.mk b/package/wpewebkit/wpewebkit.mk index 48ed4f4afe..f4cd2c78bf 100644 --- a/package/wpewebkit/wpewebkit.mk +++ b/package/wpewebkit/wpewebkit.mk @@ -12,7 +12,7 @@ WPEWEBKIT_LICENSE = LGPL-2.1+, BSD-2-Clause WPEWEBKIT_LICENSE_FILES = \ Source/WebCore/LICENSE-APPLE \ Source/WebCore/LICENSE-LGPL-2.1 -WPEWEBKIT_DEPENDENCIES = host-gperf host-python host-ruby \ +WPEWEBKIT_DEPENDENCIES = host-gperf host-perl host-python host-ruby \ harfbuzz cairo icu jpeg libepoxy libgcrypt libgles libsoup libtasn1 \ libpng libxslt openjpeg wayland-protocols webp wpebackend-fdo