X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-lf0-f65.google.com (mail-lf0-f65.google.com [209.85.215.65]) by lists.alpinelinux.org (Postfix) with ESMTP id 64B045C4B3A for ; Tue, 18 Jul 2017 07:21:55 +0000 (GMT) Received: by mail-lf0-f65.google.com with SMTP id z78so860843lff.2 for ; Tue, 18 Jul 2017 00:21:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=mdcyD6VgVKPCRjqJdhVJIfmvvcG1AFIl56Ikor+qyXw=; b=U7MVYCIX96vGeJOGAwyPe7Q6oRE+S6jTMWdI1IreEy+EDHseZmDz5Tm758MauoKgfi 9OyZfCfeD8OqUKlgyhIS8d1WE912V9I86/sJQVSq1QusGjaT2A6L0bptl9up1qfE7ZFC bTtKfgxRrGk35PU25k6dE7D0P/WU9Se81iPMgLA0g3ehsgIPORVVhT/hE+UZ1aThhCri Zx6e+kwdUwtqaN3dzYWy4NiUiFkMQILPX0hUINPa1kEYqyoUHhmXSyeSLJ89zx6aGq88 UD5YORax+0uqplI7AjEDfAhYyz7iQJY5nIaVLvT2Qp8c2fZxjClr6VfnnHqBWpgFh1ZC aBBw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :in-reply-to:references:mime-version:content-transfer-encoding; bh=mdcyD6VgVKPCRjqJdhVJIfmvvcG1AFIl56Ikor+qyXw=; b=UWt3n10qROPwN8Ut9YISc0vu6Rl7bDe7bVPtaiudfOn4PKmNKhNyPRVPiRP6H62+pC RjvMrDvvcGxXqO10lA6DLCMO+QsD8oGCvYowBB357xeZRzy7aR8BBpAaoDdcrXsS2tod tMBHXUS7SY4BINz5B5xN4do1FheR42c3lmF6VHBMtUjBAKhbEtiKx+0ZMyZI4Xw+U+CP 6JShLC+8wZOUGlVeH2xzIOsmMHcAozb5oPxwooZWxJ27tv+JxxkMEfokOsaLialXHBHL VUcVeC217kCo2+oIFzrguuH+S1dSPFZJcrHXFkLwPwTRAwoc9rTzqeUEUoDINNF14jf5 2ZKA== X-Gm-Message-State: AIVw110QKQ82MC0rQ6zaOIqxu5GIDI7yqIOKB7I+qN4jP8cxZdc/wtnU hK0g5j/LotPYHw== X-Received: by 10.25.193.85 with SMTP id r82mr81627lff.151.1500362514422; Tue, 18 Jul 2017 00:21:54 -0700 (PDT) Received: from vostro ([83.145.235.201]) by smtp.gmail.com with ESMTPSA id v19sm358456ljd.9.2017.07.18.00.21.53 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 18 Jul 2017 00:21:54 -0700 (PDT) Sender: =?UTF-8?Q?Timo_Ter=C3=A4s?= Date: Tue, 18 Jul 2017 10:21:48 +0300 From: Timo Teras To: Marian Buschsieweke Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] main/bc: Added readline support Message-ID: <20170718102106.44e12b98@vostro> In-Reply-To: <20170717185736.6556-1-marian.buschsieweke@ovgu.de> References: <20170717185736.6556-1-marian.buschsieweke@ovgu.de> X-Mailer: Claws Mail 3.15.0-dirty (GTK+ 2.24.31; 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 Hi, On Mon, 17 Jul 2017 20:57:36 +0200 Marian Buschsieweke wrote: > The makedepens `readline-dev` suggests that readline support was > intented. However, option `--with-readline` needs also be passed to > compile bc with readline support. In addtion, I added readline as > dependency. --- Yes, seems the configure behaviour has changed. Now it gave warning that libreadline works only with flex and did not automatically enable it. > main/bc/APKBUILD | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/main/bc/APKBUILD b/main/bc/APKBUILD > index bc496fa1f4..8dc270b5e6 100644 > --- a/main/bc/APKBUILD > +++ b/main/bc/APKBUILD > @@ -7,7 +7,7 @@ pkgdesc="An arbitrary precision numeric processing > language (calculator)" url="http://www.gnu.org/software/bc/bc.html" > arch="all" > license="GPL2+" > -depends="" > +depends="readline" This is not needed. abuild picks up .so dependencies automatically. OTOH, pkgrel needs to be incremented. I made these two changes, and pushed. Thanks! --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---