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 A1E96DC09A9; Wed, 19 Nov 2014 08:15:36 +0000 (UTC) Date: Wed, 19 Nov 2014 09:15:34 +0100 From: Natanael Copa To: Isaac Dunham Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] [PATCH] testing/otter-browser: new package Message-ID: <20141119091534.0f110173@ncopa-desktop.alpinelinux.org> In-Reply-To: <1415757861-5470-1-git-send-email-ibid.ag@gmail.com> References: <1415757861-5470-1-git-send-email-ibid.ag@gmail.com> 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 Tue, 11 Nov 2014 18:04:21 -0800 Isaac Dunham wrote: > Otter is a new browser that aims to recreate the Opera 12.x UI using Qt5. > It uses QtWebkit as the rendering engine, and takes about half as much ram > as firefox in my experience (42 MB for a couple tabs opened at startup). > --- > testing/otter-browser/APKBUILD | 52 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 52 insertions(+) > create mode 100644 testing/otter-browser/APKBUILD > > diff --git a/testing/otter-browser/APKBUILD b/testing/otter-browser/APKBUILD > new file mode 100644 > index 0000000..e536e4d > --- /dev/null > +++ b/testing/otter-browser/APKBUILD > @@ -0,0 +1,52 @@ > +# Contributor: Isaac Dunham > +# Maintainer: Isaac Dunham > +pkgname=otter-browser > +# We build from the weekly releases. > +# Unfortunately, upstream version numbering is rather annoying: > +# they use -dev > +# abuild hates that, and it would break upgrades if it worked, > +# so we use . > +pkgver=0.9.03.01 > +_pkgver=0.9.04-dev45 > +# Weekly releases may be in otter-browser-weekly or otter-browser- > +_weekly=weekly45 I noticed this now. How about using _alpha/_beta/_pre version suffix to tell apk that it is a pre release? pkgver=0.9.04_pre45 _ver=${pkgver/_pre/-dev} _weekly=${pkgver/*_pre/weekly} Other option is to only package releases tagged[1] in git. They seem to release often enough. -nc [1]: https://github.com/Emdek/otter/releases --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---