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 0AC7E1EBFF4 for ; Thu, 6 Jan 2011 16:48:21 +0000 (UTC) Received: from localhost (bsna.nor.wtbts.net [127.0.0.1]) by mail.wtbts.no (Postfix) with ESMTP id 3CE94AE4002; Thu, 6 Jan 2011 16:48:21 +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 k25M48tFGxLr; Thu, 6 Jan 2011 16:48:19 +0000 (UTC) Received: from mail.ytre.org (extmail.nor.wtbts.net [10.65.72.14]) by mail.wtbts.no (Postfix) with ESMTP id 72361AE4001; Thu, 6 Jan 2011 16:48:19 +0000 (UTC) Received: from mail.ytre.org (localhost [127.0.0.1]) by mail.ytre.org (Postfix) with ESMTP id 42D0B621BE0E1; Thu, 6 Jan 2011 16:48:19 +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 25DC5621BE0E0; Thu, 6 Jan 2011 16:48:18 +0000 (UTC) Date: Thu, 6 Jan 2011 17:48:07 +0100 From: Natanael Copa To: lonkaji Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] new ports: par2cmdline; py-cheetah, py-feedparser, py-yenc and pyopenssl Message-ID: <20110106174807.38016c37@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 Wed, 5 Jan 2011 22:21:53 +0100 lonkaji wrote: > From 636d4dcd41014c5b6e8e0f045cf810b455ed626b Mon Sep 17 00:00:00 2001 > From: Kalonji > Date: Wed, 5 Jan 2011 20:51:53 +0000 > Subject: [PATCH 2/6] new port: par2cmdline > > --- > testing/par2cmdline/APKBUILD | 52 +++++ > testing/par2cmdline/par2cmdline-0.4-autoconf.patch | 22 ++ > testing/par2cmdline/par2cmdline-0.4-cosmetic.patch | 106 ++++++++++ > testing/par2cmdline/par2cmdline-0.4-gcc4.patch | 62 ++++++ > .../par2cmdline/par2cmdline-0.4-hardlinks.patch | 15 ++ > testing/par2cmdline/par2cmdline-0.4-letype.patch | 219 > ++++++++++++++++++++ > testing/par2cmdline/par2cmdline-0.4-offset.patch | 16 > ++ .../par2cmdline/par2cmdline-0.4-wildcard-fix.patch | 23 ++ 8 > files changed, 515 insertions(+), 0 deletions(-) create mode 100644 > testing/par2cmdline/APKBUILD create mode 100644 > testing/par2cmdline/par2cmdline-0.4-autoconf.patch create mode 100644 > testing/par2cmdline/par2cmdline-0.4-cosmetic.patch create mode 100644 > testing/par2cmdline/par2cmdline-0.4-gcc4.patch create mode 100644 > testing/par2cmdline/par2cmdline-0.4-hardlinks.patch create mode > 100644 testing/par2cmdline/par2cmdline-0.4-letype.patch create mode > 100644 testing/par2cmdline/par2cmdline-0.4-offset.patch create mode > 100644 testing/par2cmdline/par2cmdline-0.4-wildcard-fix.patch > > diff --git a/testing/par2cmdline/APKBUILD > b/testing/par2cmdline/APKBUILD new file mode 100644 > index 0000000..7c6cbb3 > --- /dev/null > +++ b/testing/par2cmdline/APKBUILD > @@ -0,0 +1,52 @@ > +# Contributor: > +# Maintainer: > +pkgname=par2cmdline > +pkgver=0.4 > +pkgrel=1 Start with pkgrel=0 on first release. > +pkgdesc="Providing a tool to apply the data-recovery capability > concepts of RAID-like systems to the posting & recovery of multi-part > archives on Usenet." Would have been nice with a shorter pkgdesc. > +url="http://sourceforge.net/projects/parchive/" > +license="GPL" arch="all" was missing. > +depends= > +makedepends= > +install= > +source="http://downloads.sourceforge.net/sourceforge/parchive/${pkgname}-${pkgver}.tar.gz > +par2cmdline-0.4-autoconf.patch > +par2cmdline-0.4-letype.patch > +par2cmdline-0.4-cosmetic.patch > +par2cmdline-0.4-offset.patch > +par2cmdline-0.4-gcc4.patch > +par2cmdline-0.4-wildcard-fix.patch > +par2cmdline-0.4-hardlinks.patch" > + > +_builddir="$srcdir"/$pkgname-$pkgver > + > +prepare() { > + cd "$_builddir" > + for i in "$srcdir"/*.patch; do > + msg "Applying ${i}" > + patch -N -i $i || return 1 > + done > +} Indentation is weird. > + > +build() { > + cd "$_builddir" > + ./configure --prefix=/usr \ > + --sysconfdir=/etc \ > + --mandir=/usr/share/man \ > + --infodir=/usr/share/info > + make || return 1 indentation... > +} > + > +package() { > + cd "$_builddir" > + make DESTDIR="$pkgdir" install also here I applied and fixed the above. (except for pkgrel) Thanks! -nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---