X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-lf0-f49.google.com (mail-lf0-f49.google.com [209.85.215.49]) by lists.alpinelinux.org (Postfix) with ESMTP id 433395C44BD for ; Thu, 1 Dec 2016 07:17:13 +0000 (GMT) Received: by mail-lf0-f49.google.com with SMTP id c13so164315401lfg.0 for ; Wed, 30 Nov 2016 23:17:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=yPpSaY7f50hOGLu2ZeJEjRyfB+Kc39LPZ1fF/lMvMUQ=; b=T2HiYOlsumtLaF9pBPb2kclncoCfDFG7ESpcLyq3jVJ120+0CyJ2raHA2E1i20LWLV 6Aez+bNHOh+NQgy448BbplRGYYUbRcF3s8smPKhJt28kUM3U5AvGiD6dR2gnbgK/2Vah lIUkSFt1mMKWMCem8EyScPGMZU2aiFnBeCh/htSwkPzuHChO3U2eSQ9PT4MBxqc0mCyC 4/rw82t1aGjl9+B/6Gvg3fzKZslwR8aJP+sXWLT6WKSOcG0MpWct34V+RKdTSWD3E6qP Ug3/qEYigfA9YcwYMmI26bPiiFLndsVf6JOUzshHRES01ILIf81sKs0+7lv5xDtDRER2 gi9g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :in-reply-to:references:mime-version:content-transfer-encoding; bh=yPpSaY7f50hOGLu2ZeJEjRyfB+Kc39LPZ1fF/lMvMUQ=; b=MeefalfmG0nvy1NvZWSQx9KDxN5L5cGMHfcPzSI06QlYJeY0FNTyABhD1YRNG2yyMD pqPrY5FkgWpSDEls88TOD/VOKvQi8F7arpB8XRsKukUL//ab+DpKSSZZg2b/sp6mUMOB sHO6pjyGdXD7nhS+KjtX2iiaBsjrqEea30gluCH/Kudloha1OLnw/Do3OrgE+i8sDxWX w5wA3qYwFv29EGbTxBGKcD6zPjNvJ7gaVZFbXRMQON2p1NI6zieZ3GoPpN2yeWpFMXMo EUmUuV7bKHbrWuJVbKn14Kwzo0Q70cagNJzCaI4QE1jyV6yyzrSeMIi1rwCm5J+bYCns 6G8Q== X-Gm-Message-State: AKaTC02PChQAxKCKDL2yo5EwvRZt8uhbjViqZs4PHS0kcJ+8u12Hs+L+i9NVADKoTSkgpg== X-Received: by 10.46.32.7 with SMTP id g7mr15154903ljg.35.1480576632060; Wed, 30 Nov 2016 23:17:12 -0800 (PST) Received: from vostro (a91-152-109-3.elisa-laajakaista.fi. [91.152.109.3]) by smtp.gmail.com with ESMTPSA id 37sm14792185lfw.31.2016.11.30.23.17.11 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 30 Nov 2016 23:17:11 -0800 (PST) Sender: =?UTF-8?Q?Timo_Ter=C3=A4s?= Date: Thu, 1 Dec 2016 09:17:09 +0200 From: Timo Teras To: Brian Rosner Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] testing/rkt: new aport Message-ID: <20161201091709.32303ee1@vostro> In-Reply-To: <20161130210718.20030-1-brian@brosner.com> References: <20161130210718.20030-1-brian@brosner.com> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.28; x86_64-alpine-linux-musl) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Looks pretty good. Few question below. On Wed, 30 Nov 2016 14:07:18 -0700 Brian Rosner wrote: > diff --git a/testing/rkt/APKBUILD b/testing/rkt/APKBUILD > new file mode 100644 > index 0000000..0a22ea3 > --- /dev/null > +++ b/testing/rkt/APKBUILD > @@ -0,0 +1,46 @@ > +# Contributor: Brian Rosner > +# Maintainer: Brian Rosner > +pkgname=rkt > +pkgver=1.20.0 > +pkgrel=0 > +pkgdesc="container engine for Linux designed to be composable, > secure, and built on standards" +url="https://github.com/coreos/rkt" > +arch="x86_64" Are other arches not supported? Or this is the only thing you tested? > +license="ASL 2.0" > +depends="" > +depends_dev="" > +makedepends="$depends_dev coreutils grep gzip diffutils cpio go bc > linux-headers wget file gnupg autoconf automake bash openssl-dev edge is now based on libressl. Does it build against libressl-dev ? > acl-dev xz sed" +subpackages="" > +source="rkt-$pkgver.tar.gz::https://github.com/coreos/rkt/archive/v$pkgver.tar.gz" > +builddir="$srcdir/rkt-$pkgver" + > +build() { > + cd "$builddir" > + ./autogen.sh > + ./configure \ > + --build=$CBUILD \ > + --host=$CHOST \ > + --prefix=/usr \ > + --sysconfdir=/etc \ > + --mandir=/usr/share/man \ > + --localstatedir=/var \ > + --enable-tpm=auto \ > + --enable-sdjournal=auto \ > + || return 1 > + make || return 1 > +} --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---