X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qt0-f193.google.com (mail-qt0-f193.google.com [209.85.216.193]) by lists.alpinelinux.org (Postfix) with ESMTP id 5B5435C5C79 for ; Sat, 3 Feb 2018 15:00:53 +0000 (GMT) Received: by mail-qt0-f193.google.com with SMTP id s39so34543702qth.7 for ; Sat, 03 Feb 2018 07:00:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id:in-reply-to:references; bh=t5iTrp89HoPNau9P28Zm+tnT6UBtA9eiyFMnYG/GLPw=; b=W7BGUFg5hnTL1ZeyLuKJXnQLP0JtC/vJg/QSSchvw8vDIITFsUfQCbYUA0RLqUaGLo 2CpZmgUDwlkNt524vNpTs/FigjBvPF1Sl+hLgJei7msokIswB9Hqi6I49UGnIf03kq29 bACv89X2wAX7mZ0yrYcyoFYJw142QH5j4Cj986fDeoR5p+kIFQeBMgedFKCWc86ZVzMN RxegtO4dTgNqzvQZ8fwqMBsuv5Xz08cxwGhylV8WgNxB1TNUIXY7gnT6Qao84jqZzPFs Tv4QYaaWfdm++Gn/76zYSd5ievvAbtUqSQCsW70XKkfJDpuSoR5IPhKk24Ox7LBPfw0/ rWww== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=t5iTrp89HoPNau9P28Zm+tnT6UBtA9eiyFMnYG/GLPw=; b=JSMMIomd1CAw3NwqI1GukmlvBpW0jsZTgLOvsGe9MxqjGulhmMhSPqnZVaWEPGhpxh c4TqnEw/kCqxzoyBhoRrcHhoGUSqG0hiE5B0/fsjNyo5l++c7fJGWgIyae/Qkn7taSA3 rBqTex+FvOoMsPatn8vgbQ6ZW6c3hMvHrDxx53WO+HUpM6+hBYkA4784meVcu8AvsPmy cAnxIbMVoloreKk6dV0olRWdohCIz5LLMDW4D4rKL2xPVXICsFPNOBu0NWeBfsFyyk1l PxF6M6+6wMytWvzzfKCGoJMWMWydNAikue9TiBGp4DmWfnpcUuDvwwIlZrfDjp2/8jNC 1X0w== X-Gm-Message-State: AKwxytfb0lQ2iN7mYFqTbqqpyvB5YdSrpyZGeRAfKCY18/H5XKbXt58h UH58u0WqGDsQE3zFYEhUgeMEYw== X-Google-Smtp-Source: AH8x225e8rJxmuSM5tF4+wNE05LLlmpngLk7i0dmqWjcoj6rQPAxNSAZsLVoSkYEgrLn/aEAcYGLmA== X-Received: by 10.200.49.231 with SMTP id i36mr66676738qte.116.1517670052585; Sat, 03 Feb 2018 07:00:52 -0800 (PST) Received: from localhost.localdomain (c-71-60-35-21.hsd1.pa.comcast.net. [71.60.35.21]) by smtp.googlemail.com with ESMTPSA id 58sm3128271qtm.51.2018.02.03.07.00.51 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 03 Feb 2018 07:00:51 -0800 (PST) From: Daniel Sabogal To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 2/2] scripts/bootstrap.sh: cryptsetup depends on json-c and argon2 Date: Sat, 3 Feb 2018 10:03:56 -0500 Message-Id: <20180203150356.32201-2-dsabogalcc@gmail.com> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180203150356.32201-1-dsabogalcc@gmail.com> References: <20180203150356.32201-1-dsabogalcc@gmail.com> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- scripts/bootstrap.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 0b6addd984..c26c1dcb75 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -102,7 +102,8 @@ for PKG in fortify-headers linux-headers musl libc-dev pkgconf zlib \ openrc alpine-conf alpine-baselayout alpine-keys alpine-base build-base \ attr libcap patch sudo acl fakeroot tar \ pax-utils abuild openssh \ - ncurses libcap-ng util-linux lvm2 popt xz cryptsetup kmod lddtree mkinitfs \ + ncurses libcap-ng util-linux lvm2 popt xz \ + json-c argon2 cryptsetup kmod lddtree mkinitfs \ community/go libffi community/ghc \ $KERNEL_PKG ; do -- 2.16.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---