X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail.wtbts.no (mail.wtbts.no [213.234.126.131]) by lists.alpinelinux.org (Postfix) with ESMTP id 385F81EBFFF for ; Mon, 10 Jan 2011 12:58:10 +0000 (UTC) Received: from localhost (bsna.nor.wtbts.net [127.0.0.1]) by mail.wtbts.no (Postfix) with ESMTP id 905CEAE4005; Mon, 10 Jan 2011 12:58:09 +0000 (UTC) X-Virus-Scanned: Yes Received: from mail.wtbts.no ([127.0.0.1]) by localhost (bsna.nor.wtbts.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id r+nflIgdCxmN; Mon, 10 Jan 2011 12:58:08 +0000 (UTC) Received: from mail.ytre.org (extmail.nor.wtbts.net [10.65.72.14]) by mail.wtbts.no (Postfix) with ESMTP id B3F21AE4001; Mon, 10 Jan 2011 12:58:08 +0000 (UTC) Received: from mail.ytre.org (localhost [127.0.0.1]) by mail.ytre.org (Postfix) with ESMTP id 513F6621BE0F8; Mon, 10 Jan 2011 12:58:08 +0000 (UTC) Received: from ncopa-desktop.nor.wtbts.net (unknown [10.65.65.1]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: ncopa@ytre.org) by mail.ytre.org (Postfix) with ESMTPSA id 3F90D621BE0F3; Mon, 10 Jan 2011 12:58:08 +0000 (UTC) Date: Mon, 10 Jan 2011 13:58:33 +0100 From: Natanael Copa To: Francesco Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] new aport MoinMoin: advanced, easy to use and extensible WikiEngine Message-ID: <20110110135833.77e2f597@ncopa-desktop.nor.wtbts.net> In-Reply-To: References: X-Mailer: Claws Mail 3.7.8 (GTK+ 2.22.1; x86_64-unknown-linux-gnu) 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 X-Virus-Scanned: ClamAV using ClamSMTP On Sun, 9 Jan 2011 23:49:23 +0100 Francesco wrote: > From 744f7af555c9cb4b4bf5807a37bcb24ab5e7b158 Mon Sep 17 00:00:00 2001 > From: Francesco Colista > Date: Sun, 9 Jan 2011 22:47:10 +0000 > Subject: [PATCH] testing/moinmoin new abuild: advanced, easy to use > and extensible WikiEngine > > --- > testing/moinmoin/APKBUILD | 28 ++++++++++++++++++++++++++++ > 1 files changed, 28 insertions(+), 0 deletions(-) > create mode 100644 testing/moinmoin/APKBUILD > > diff --git a/testing/moinmoin/APKBUILD b/testing/moinmoin/APKBUILD > new file mode 100644 > index 0000000..ade1898 > --- /dev/null > +++ b/testing/moinmoin/APKBUILD > @@ -0,0 +1,28 @@ > +# Contributor: Francesco Colista > +# Maintainer: Francesco Colista > + > +pkgname=moinmoin > +pkgver=1.9.3 > +pkgrel=0 > +pkgdesc="Python Wiki" > +url="http://moinmo.in/" > +arch="all" there are no archspecific binaries so it should be noarch > +license="GPL" > +depends="python py-jabberbot" > +depends_dev="python-dev" > +makedepends="$depends_dev" there are no -dev package so there is no need for any depends_dev. > +subpackages="" > +source="http://static.moinmo.in/files/moin-$pkgver.tar.gz" > + > +build() { > + cd "$srcdir"/moin-$pkgver > + python setup.py build > +} > + > +package() { > + > + cd "$srcdir"/moin-$pkgver > + python setup.py install --root="$pkgdir" > +} separate build() and package(). Good! Applied. Thanks! > + > +md5sums="b22c15446e9fabda180fc88b21635184 moin-1.9.3.tar.gz" --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---