Isaac Dunham: 1 testing/otter-browser: new package 1 files changed, 52 insertions(+), 0 deletions(-)
Copy & paste the following snippet into your terminal to import this patchset into git:
curl -s https://lists.alpinelinux.org/~alpine/devel/patches/431/mbox | git am -3Learn more about email & git
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
Natanael Copa <ncopa@alpinelinux.org>applied. thanks!Isaac Dunham <ibid.ag@gmail.com>Thank you. Now, I guess it failed to build (since it isn't in the repositories yet), but I'm not sure what the cause is. Are build logs saved somewhere?Natanael Copa <ncopa@alpinelinux.org>This email drowned in 260 other unread messages. sorry. build logs for x86_64 are currently found: http://bld2.alpinelinux.org/buildlogs/build-3-1-x86_64/ http://bld2.alpinelinux.org/buildlogs/build-edge-x86_64/ and for x86: http://bld1.alpinelinux.org/buildlogs/build-3-1-x86/ http://bld1.alpinelinux.org/buildlogs/build-edge-x86/ I haven't documented those locations since I have plans to clean up the build logging and build server messaging (build errors specifically) -nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---Thanks, Isaac Dunham --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ----nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---
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 <ibid.ag@gmail.com> +# Maintainer: Isaac Dunham <ibid.ag@gmail.com> +pkgname=otter-browser +# We build from the weekly releases. +# Unfortunately, upstream version numbering is rather annoying: +# they use <next-release>-dev<week> +# abuild hates that, and it would break upgrades if it worked, +# so we use <last-release>.<week-since-release> +pkgver=0.9.03.01 +_pkgver=0.9.04-dev45 +# Weekly releases may be in otter-browser-weekly<NN> or otter-browser-<release> +_weekly=weekly45
Natanael Copa <ncopa@alpinelinux.org>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 ---
+ +pkgrel=0 +pkgdesc="Web browser controlled by the user, not vice-versa" +url="http://otter-browser.org/" +arch="all" +license="GPL3" +depends="" +depends_dev="" +makedepends="$depends_dev qt5-qtbase-dev qt5-qtwebkit-dev qt5-qtscript-dev + cmake libpng-dev jpeg-dev openssl-dev" +install="" +subpackages="$pkgname-lang" +langdir="/usr/share/$pkgname/locale" +source="http://downloads.sourceforge.net/otter-browser/otter-browser-${_weekly}/otter-browser-$_pkgver.tar.bz2" + +_builddir="$srcdir"/otter-browser-$_pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + mkdir build && cd build || return 1 + cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ../ && make || return 1 +} + +package() { + cd "$_builddir"/build || return 1 + make install DESTDIR="$pkgdir" || return 1 +} + +md5sums="125b7acff99c8af620b2347c73443053 otter-browser-0.9.04-dev45.tar.bz2" +sha256sums="2546932eebc6d504729b07a28ac46b385f17499ffc6e570aa34ab32f9f3482ab otter-browser-0.9.04-dev45.tar.bz2" +sha512sums="2e5acf9e5d10989042023ddf7beba0c50109f2cfe8d7602da59da8d69b85d83364fd01b9fb17686ef8cc80a63d2e4433161e3f3f27f6f4c14476b93389aeeca0 otter-browser-0.9.04-dev45.tar.bz2" -- 2.1.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---