X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 225B0DC0822 for ; Thu, 14 Jan 2016 17:09:57 +0000 (UTC) Received: from zimbra13.linbit.com (zimbra13.linbit.com [212.69.166.240]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id B80ADDC06CF for ; Thu, 14 Jan 2016 17:09:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by zimbra13.linbit.com (Postfix) with ESMTP id DA2F036AEC1; Thu, 14 Jan 2016 18:09:52 +0100 (CET) Received: from zimbra13.linbit.com ([127.0.0.1]) by localhost (zimbra13.linbit.com [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id AEV9IkDiHTWE; Thu, 14 Jan 2016 18:09:52 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by zimbra13.linbit.com (Postfix) with ESMTP id BE4B836AEC4; Thu, 14 Jan 2016 18:09:52 +0100 (CET) X-Virus-Scanned: amavisd-new at linbit.com Received: from zimbra13.linbit.com ([127.0.0.1]) by localhost (zimbra13.linbit.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id PBFyuJjSzAZV; Thu, 14 Jan 2016 18:09:52 +0100 (CET) Received: from aperol.at.linbit. (tuerlsteher.linbit.com [86.59.100.100]) by zimbra13.linbit.com (Postfix) with ESMTPSA id 7588736AD76; Thu, 14 Jan 2016 18:09:52 +0100 (CET) From: Roland Kammerer To: alpine-aports@lists.alpinelinux.org Cc: Roland Kammerer Subject: [alpine-aports] [PATCH 1/2] main/drbd-utils: improved deps, dropped 8.3 Date: Thu, 14 Jan 2016 18:09:15 +0100 Message-Id: <1452791356-6183-1-git-send-email-roland.kammerer@linbit.com> X-Mailer: git-send-email 2.6.4 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: - Add docbook-xls as build dependency: This speeds up the build process dramatically. - dropped depends_dev to avoid build warning. - dropped drbd-8.3 support: Also speeds up building, and nobody cares about drbd-8.3 anymore. Linux mainline contains 8.4 for a long time. --- main/drbd-utils/APKBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main/drbd-utils/APKBUILD b/main/drbd-utils/APKBUILD index e850805..1c79572 100644 --- a/main/drbd-utils/APKBUILD +++ b/main/drbd-utils/APKBUILD @@ -2,14 +2,13 @@ # Maintainer: Natanael Copa pkgname=drbd-utils pkgver=8.9.5 -pkgrel=1 +pkgrel=2 pkgdesc="Network-based RAID 1" url="http://www.drbd.org" arch="all" license="GPL" depends="bash" -depends_dev="bash bison flex" -makedepends="$depends_dev linux-headers libxslt" +makedepends="bash bison flex linux-headers libxslt docbook-xsl" install= provides="drbd" subpackages="$pkgname-doc $pkgname-pacemaker" @@ -43,7 +42,8 @@ build() { --without-heartbeat \ --without-rgmanager \ --without-xen \ - --without-bashcompletion + --without-bashcompletion\ + --without-83support make || return 1 } -- 2.6.4 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---