X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-pl0-f42.google.com (mail-pl0-f42.google.com [209.85.160.42]) by lists.alpinelinux.org (Postfix) with ESMTP id BF1795C559F for ; Tue, 14 Aug 2018 23:14:19 +0000 (GMT) Received: by mail-pl0-f42.google.com with SMTP id b90-v6so8938463plb.0 for ; Tue, 14 Aug 2018 16:14:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id; bh=Mm+W4bPlMBRrPBi+9GpHc8c4LV7kTl0nRvhsqbF/GCk=; b=oEwDZHlUhLQzL5UJvyG0+hhp8TCuZa1k8D+P7mJ854Z/3I9Srbxx5kpfV5BCOs4Gtz VFJ3XQ5NyH9nOFJIVUEFWgzAzThT0QpAXdYHyK/aOdi23rR/3bKlDXYy4t4N53+2wobb 3q4Nhs5FUprsHUQFWa7c+e3JjU8PR1LKt/xm3x3d8QAeOnW0F0/HjpjrkxzFXxZGqA4B M0QXKXuJohD3O/AHj7gCTOLdvPrVduHFB9zsuY2qjwYjL3IA7AzhxgR8P73ec1o/Ubu0 TY0FeS4ky1o781KgTu2MwVxjh2HZi3Wt77aG8AiFbJ1k4ykb8m9y8w7yJ73sTPhpT1Kd xzTA== 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; bh=Mm+W4bPlMBRrPBi+9GpHc8c4LV7kTl0nRvhsqbF/GCk=; b=cGp0fCaQ58SJ4r2wbDFxFMnWnRx/R/t5MEFN91OkULUu3QBDw+Wr8Srn+vpKxUAsUh o2B6kVidcKVpnL2aNKSr3xKpXASG4rbKkJXUf1ePlRNClowlkHsSVOYNnOT+2BnPfjUF +T9gLHf9427fER0fnus9j64/E5pUTCvRDqcizTSfDMFBHO6CmMJJZnTQnelc5aDmCYRA HxCGzO1oNxPqi/4oo4+rBqKRELyepzKWGHrxUecZLaSn48Mfj2zsu0ZrtFJ7OZDOUjpq 45i1IDJA6PdFvHklhyMdvvnrpyNvVI7MfWdf6rg77azCnKd0TztLgN9g57cgeiseLPLP urVQ== X-Gm-Message-State: AOUpUlEWIJzrMXR2f1RKXn557+RnvWJOWI0jNlwZ+JaJX0iufaFPvfgC gokg0b2hjzqOwCehmlMMunpIb8nd X-Google-Smtp-Source: AA+uWPwgAp5spMrtFeeK77yO7nbPxRrwV2IyvtxUOpmj9u1w/ktC04o9vJhdIDy23DvHKKyc+G/FzA== X-Received: by 2002:a17:902:9a8b:: with SMTP id w11-v6mr22137549plp.333.1534288459061; Tue, 14 Aug 2018 16:14:19 -0700 (PDT) Received: from omfg.hsd1.wa.comcast.net (c-67-161-125-151.hsd1.wa.comcast.net. [67.161.125.151]) by smtp.googlemail.com with ESMTPSA id 75-v6sm36306230pfr.115.2018.08.14.16.14.18 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 14 Aug 2018 16:14:18 -0700 (PDT) From: Jake Buchholz To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/tiny-ec2-bootstrap: add e2fsprogs-extra dependency Date: Tue, 14 Aug 2018 16:14:12 -0700 Message-Id: <20180814231412.93404-1-tomalok@gmail.com> X-Mailer: git-send-email 2.18.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: tiny-ec2-bootstrap uses resize2fs, which is in e2fsprogs-extra. --- main/tiny-ec2-bootstrap/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/tiny-ec2-bootstrap/APKBUILD b/main/tiny-ec2-bootstrap/APKBUILD index 418d071462..1210b20f78 100644 --- a/main/tiny-ec2-bootstrap/APKBUILD +++ b/main/tiny-ec2-bootstrap/APKBUILD @@ -2,13 +2,13 @@ # Maintainer: Mike Crute pkgname=tiny-ec2-bootstrap pkgver=1.0.0 -pkgrel=0 +pkgrel=1 pkgdesc="A tiny EC2 instance bootstrapper that uses instance metadata" url="https://github.com/mcrute/tiny-ec2-bootstrap" arch="noarch" license="MIT" options="!check" # no tests provided -depends="openrc" +depends="openrc e2fsprogs-extra" source="$pkgname-$pkgver.tar.gz::https://github.com/mcrute/$pkgname/archive/release-$pkgver.tar.gz" builddir="$srcdir/$pkgname-release-$pkgver" -- 2.18.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---