X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from s1.host.org.pl (s1.host.org.pl [178.33.81.96]) by mail.alpinelinux.org (Postfix) with ESMTP id AB434DC18A3 for ; Wed, 4 Apr 2012 04:34:30 +0000 (UTC) Received: from localhost (localdomain.localhost [127.0.0.1]) by s1.host.org.pl (Postfix) with ESMTP id 0E0C1C4826E for ; Wed, 4 Apr 2012 06:34:30 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at host.org.pl Received: from s1.host.org.pl ([127.0.0.1]) by localhost (s1.host.org.pl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UtVoQbBYv8HE for ; Wed, 4 Apr 2012 06:34:29 +0200 (CEST) Received: from [192.168.0.11] (unknown [79.175.253.235]) (Authenticated sender: b@bpiotrowski.pl) by s1.host.org.pl (Postfix) with ESMTPSA id 37F32C48029 for ; Wed, 4 Apr 2012 06:34:29 +0200 (CEST) Message-ID: <4F7BCF55.6000308@bpiotrowski.pl> Date: Wed, 04 Apr 2012 06:34:29 +0200 From: =?UTF-8?B?QmFydMWCb21pZWogUGlvdHJvd3NraQ==?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:11.0) Gecko/20120328 Thunderbird/11.0.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 To: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] [PATCH] main/htop: upgrade to 1.0.1 References: <4F7B0F40.8060809@bpiotrowski.pl> In-Reply-To: <4F7B0F40.8060809@bpiotrowski.pl> X-Enigmail-Version: 1.4 Content-Type: multipart/mixed; boundary="------------090902010005080002090707" This is a multi-part message in MIME format. --------------090902010005080002090707 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 U2ltaWxpYXIgdGhpbmcgdGhhdCB3aXRoIG1haW4vZ2F3ayBwYXRjaC4gWW91IGNhbiBmaW5kIHRo ZSB3b3JraW5nIG9uZQ0KaW4gdGhlIGF0dGFjaG1lbnQuDQoNCi0tIA0KQmFydMWCb21pZWogUGlv dHJvd3NraQ0KaHR0cDovL2JwaW90cm93c2tpLnBsLw0K --------------090902010005080002090707 Content-Type: text/x-patch; name="htop-upgrade-to-1.0.1.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="htop-upgrade-to-1.0.1.patch" >From 2257c4a39991cd44ef88ff518c75897127ebc1e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= Date: Wed, 4 Apr 2012 06:33:22 +0200 Subject: [PATCH] main/htop: upgrade to 1.0.1 --- main/htop/APKBUILD | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/main/htop/APKBUILD b/main/htop/APKBUILD index d110790..e395a09 100644 --- a/main/htop/APKBUILD +++ b/main/htop/APKBUILD @@ -1,22 +1,28 @@ -# Maintainer:Carlo Landmeter +# Maintainer: Carlo Landmeter +# Contributor: Bart��omiej Piotrowski pkgname=htop -pkgver=0.9 +pkgver=1.0.1 pkgrel=0 pkgdesc="An interactive process viewer for Linux" url="http://htop.sourceforge.net" arch="all" license='GPL' -depends= makedepends="ncurses-dev" -source="http://surfnet.dl.sourceforge.net/sourceforge/htop/$pkgname-$pkgver.tar.gz" - +source="http://downloads.sourceforge.net/htop/$pkgname-$pkgver.tar.gz" subpackages="$pkgname-doc" build() { - cd $startdir/src/$pkgname-$pkgver - ./configure --prefix=/usr --mandir=/usr/share/man - make || return 1 - make DESTDIR="$pkgdir" install + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr --mandir=/usr/share/man \ + --enable-unicode --enable-openvz \ + --enable-vserver --enable-cgroup + make || return 1 +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } -md5sums="7c5507f35f363f3f40183a2ba3c561f8 htop-0.9.tar.gz" +md5sums="d3b80d905a6bff03f13896870787f901 htop-1.0.1.tar.gz" -- 1.7.9.5 --------------090902010005080002090707-- --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---