From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f175.google.com (mail-wr0-f175.google.com [209.85.128.175]) by mail.openembedded.org (Postfix) with ESMTP id 13ADC7455C for ; Wed, 11 Apr 2018 17:55:36 +0000 (UTC) Received: by mail-wr0-f175.google.com with SMTP id l49so2615659wrl.4 for ; Wed, 11 Apr 2018 10:55:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=NgqDf+FJ8iBud1ACVTgcmMz67ivFwAG0ucx9Gg2mQtc=; b=E0FxdiJr2hi8msbAD9rJTnLevY4OZ0fTWKCtjQ5D0Ybuea8/TzIPDTl3JRe/RFdipe mgMDOKQ6ulhEqrMvSghIcy7nnebuf54eLscDhQThgMXDODOTCsIMk/y6AZE7pLYnibyA 8/NmIyg5RAImcTTmCphpm7w03NuOh1c2ElfadRXQ54FuTemmjBpYovWqSJ1s5ibzmeZw 7aG+Eb6361ZGLBvg37Ev8O6oc/tciA+BVK1LlgCC1MYU4PkMjyC6rmEnr72oqrAMdrhe 1WHaN0UmDEGEWjXTAwFaHHtVvCWWMMM/Y1Hl0RZ3ugNbTrH80vRb3+69rhgqmHK5DFLV 1upA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=NgqDf+FJ8iBud1ACVTgcmMz67ivFwAG0ucx9Gg2mQtc=; b=RwNzy/jUxPYw0Z5RDgocd11sh2pk9+rFLByxb2UKfq1xX3eiJxgToClWVFqfFztqmD Z2SEEAHWQHGUSktBmP695hRmTpOktAg69lSKPTknjD96Whm1PeODUHvGy3AE6joz0Q4W Ych7D8RA2aol+NBH3Z9eDefWV+uqfwYwtcc7SUP7mVNRGpCn1PYTwoK9I7GV7Ps2yW/Y StGuAUlTX5ilvShJFC/len9tUysMvHP0EeCeLVUrVKmdKtjnz96xNuc+6hKtEPXgI3iR 8CtpFTSnIOo6O1rDkAnY89ussoCpU9JDLvI6OhQ6kWV6hdHT0vlcy/OnI/ojn6APFv1a Y47g== X-Gm-Message-State: ALQs6tBfNsiNqaSz0nO0zH7XMeGfQzt0wVGyO8C7Z6drBGVZPuSlVvtP 2L0EJTMPiUb7F8y4D1xkE40GCg== X-Google-Smtp-Source: AIpwx4/esRgujkT0fRkkJk0FlrrJahklJyu9ToQOTZXMqclSfoPDc3QwfSVLYaGAa19K63tnezOUcw== X-Received: by 10.223.176.98 with SMTP id g31mr4036614wra.256.1523469337042; Wed, 11 Apr 2018 10:55:37 -0700 (PDT) Received: from localhost ([217.30.68.212]) by smtp.gmail.com with ESMTPSA id a70sm1100166wma.27.2018.04.11.10.55.35 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 11 Apr 2018 10:55:35 -0700 (PDT) From: Martin Jansa X-Google-Original-From: Martin Jansa To: openembedded-core@lists.openembedded.org Date: Wed, 11 Apr 2018 17:55:32 +0000 Message-Id: <20180411175532.1667-1-Martin.Jansa@gmail.com> X-Mailer: git-send-email 2.15.1 Subject: [PATCH] scripts/test-dependencies.sh: remove X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Apr 2018 17:55:37 -0000 * with RSS used in pyro this script isn't very useful anymore * RSS makes sure that the dependencies are almost always deterministic the only case known to me where dependencies are different based on what was already built in TMPDIR are runtime dependencies resolved by shlibs code in package.bbclass (which is using global pkgdata, not specific to given recipe and its RSS) as described here: https://bugzilla.yoctoproject.org/show_bug.cgi?id=9217#c4 but for this case it's not worth running complete test-dependencies.sh runs Signed-off-by: Martin Jansa --- scripts/test-dependencies.sh | 286 ------------------------------------------- 1 file changed, 286 deletions(-) delete mode 100755 scripts/test-dependencies.sh diff --git a/scripts/test-dependencies.sh b/scripts/test-dependencies.sh deleted file mode 100755 index 0b94de8608..0000000000 --- a/scripts/test-dependencies.sh +++ /dev/null @@ -1,286 +0,0 @@ -#!/bin/bash - -# Author: Martin Jansa -# -# Copyright (c) 2013 Martin Jansa - -# Used to detect missing dependencies or automagically -# enabled dependencies which aren't explicitly enabled -# or disabled. Using bash to have PIPESTATUS variable. - -# It does 3 builds of -# 1st to populate sstate-cache directory and sysroot -# 2nd to rebuild each recipe with every possible -# dependency found in sysroot (which stays populated -# from 1st build -# 3rd to rebuild each recipe only with dependencies defined -# in DEPENDS -# 4th (optional) repeat build like 3rd to make sure that -# minimal versions of dependencies defined in DEPENDS -# is also enough - -# Global vars -tmpdir= -targets= -recipes= -buildhistory= -buildtype= -default_targets="world" -default_buildhistory="buildhistory" -default_buildtype="1 2 3 c" - -usage () { - cat << EOF -Welcome to utility to detect missing or autoenabled dependencies. -WARNING: this utility will completely remove your tmpdir (make sure - you don't have important buildhistory or persistent dir there). -$0