X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from ncopa-desktop.alpinelinux.org (unknown [79.160.13.133]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by mail.alpinelinux.org (Postfix) with ESMTPSA id 7CE89DC00CA; Mon, 17 Nov 2014 07:59:09 +0000 (UTC) Date: Mon, 17 Nov 2014 08:59:05 +0100 From: Natanael Copa To: Johannes Matheis Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] [PATCH] testing/lua-event: new aport Message-ID: <20141117085905.00a0deea@ncopa-desktop.alpinelinux.org> In-Reply-To: <20141115223446.31094.53607@leto.j.dn42> References: <20141115223446.31094.53607@leto.j.dn42> X-Mailer: Claws Mail 3.11.0 (GTK+ 2.24.23; x86_64-alpine-linux-musl) X-Mailinglist: alpine-devel 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 On Sat, 15 Nov 2014 18:30:01 +0000 Johannes Matheis wrote: > https://github.com/harningt/luaevent > Lua binding for libevent > > Patch available from: > https://github.com/jomat/aports/commit/814b26503d01cbdbbde9ca3f7d3eefb81584bb15.patch > > > --- > Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org > Help: alpine-devel+help@lists.alpinelinux.org > --- > Applied. Thanks! Do you know if they support lua 5.2 too? btw, this will cause problems: > source="${url}/archive/v${pkgver}.tar.gz" The source package will be "v0.4.3.tar.gz". What will happen if we do that with all packages and at some point 2 different packages from github happens to have same version number? answer: the source tarball file name will collide because all packages share the download cache dir. We need to avoid that so the proper thing to do is save it with a more unique name: source="$pkgname-$pkgver.tar.gz::${url}/archive/v${pkgver}.tar.gz" I fixed it and added support for Lua 5.2. Thanks! -nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---