From da51d1d374fb7801346098cfa159da33bd513d41 Mon Sep 17 00:00:00 2001 From: Ypnose Date: Wed, 26 Jun 2013 16:59:01 +0200 Subject: [PATCH 1/3] iotop: update to 0.6-1 --- srcpkgs/iotop/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template index 5834d899c09..3f4906ef387 100644 --- a/srcpkgs/iotop/template +++ b/srcpkgs/iotop/template @@ -1,6 +1,6 @@ # Template file for 'iotop' pkgname=iotop -version=0.5 +version=0.6 revision=1 build_style=python-module makedepends="python>=2.7" @@ -9,7 +9,7 @@ maintainer="Juan RP " license="GPL-2" homepage="http://guichaz.free.fr/iotop" distfiles="http://guichaz.free.fr/iotop/files/iotop-${version}.tar.bz2" -checksum=761b7b34b88a6b4715927f5319cf0b775e15aa70f43c69dcb805b0e49da1a2e9 +checksum=3adea2a24eda49bbbaeb4e6ed2042355b441dbd7161e883067a02bfc8dcef75b iotop_package() { depends="${makedepends}" From c3f985fc493c7939d254c761e36e067162e09e64 Mon Sep 17 00:00:00 2001 From: Ypnose Date: Wed, 26 Jun 2013 17:00:14 +0200 Subject: [PATCH 2/3] linux-3.9: separate distro config to the user config --- srcpkgs/linux3.9/template | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/srcpkgs/linux3.9/template b/srcpkgs/linux3.9/template index 3e47e46a8f4..1174a081d21 100644 --- a/srcpkgs/linux3.9/template +++ b/srcpkgs/linux3.9/template @@ -27,7 +27,11 @@ do_configure() { arch=x86_64 fi - if [ -f ${FILESDIR}/${arch}-dotconfig ]; then + if [ -f ${FILESDIR}/${arch}-dotconfig-custom ]; then + msg_normal "Detected a custom .config file for your arch, using it.\n" + cp -f ${FILESDIR}/${arch}-dotconfig-custom .config + make ${makejobs} oldconfig + elif [ -f ${FILESDIR}/${arch}-dotconfig ]; then msg_normal "Detected a .config file for your arch, using it.\n" cp -f ${FILESDIR}/${arch}-dotconfig .config make ${makejobs} oldconfig From a1b4b71df2f4195989ddd9400249b1a9254df36d Mon Sep 17 00:00:00 2001 From: Ypnose Date: Wed, 26 Jun 2013 17:00:56 +0200 Subject: [PATCH 3/3] linux-3.8: separate distro config to the user config --- srcpkgs/linux3.8/template | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/srcpkgs/linux3.8/template b/srcpkgs/linux3.8/template index 03f3dab8e8f..1e08bd12d53 100644 --- a/srcpkgs/linux3.8/template +++ b/srcpkgs/linux3.8/template @@ -27,7 +27,11 @@ do_configure() { arch=x86_64 fi - if [ -f ${FILESDIR}/${arch}-dotconfig ]; then + if [ -f ${FILESDIR}/${arch}-dotconfig-custom ]; then + msg_normal "Detected a custom .config file for your arch, using it.\n" + cp -f ${FILESDIR}/${arch}-dotconfig-custom .config + make ${makejobs} oldconfig + elif [ -f ${FILESDIR}/${arch}-dotconfig ]; then msg_normal "Detected a .config file for your arch, using it.\n" cp -f ${FILESDIR}/${arch}-dotconfig .config make ${makejobs} oldconfig