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 246FEDC0D1C for ; Tue, 29 Dec 2015 15:07:58 +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 D537CDC0845 for ; Tue, 29 Dec 2015 15:07:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by zimbra13.linbit.com (Postfix) with ESMTP id 8AABA340E27; Tue, 29 Dec 2015 16:07:56 +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 jEYRC56y5IDY; Tue, 29 Dec 2015 16:07:56 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by zimbra13.linbit.com (Postfix) with ESMTP id 6AA80340E94; Tue, 29 Dec 2015 16:07:56 +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 QqNhVfbrHkwt; Tue, 29 Dec 2015 16:07:56 +0100 (CET) Received: from laubbaum.upc.at (unknown [84.113.245.177]) by zimbra13.linbit.com (Postfix) with ESMTPSA id 3162C340E27; Tue, 29 Dec 2015 16:07:56 +0100 (CET) From: Roland Kammerer To: alpine-aports@lists.alpinelinux.org Cc: Roland Kammerer Subject: [alpine-aports] [PATCH 2/3] testing/drbd9: new aport Date: Tue, 29 Dec 2015 16:07:35 +0100 Message-Id: <1451401656-31414-3-git-send-email-roland.kammerer@linbit.com> X-Mailer: git-send-email 2.6.4 In-Reply-To: <1451401656-31414-1-git-send-email-roland.kammerer@linbit.com> References: <1451401656-31414-1-git-send-email-roland.kammerer@linbit.com> X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://www.drbd.org Network-based RAID 1 version 9 --- testing/drbd9/APKBUILD | 45 ++++++++++++++++++++++++++++++++++++++++++ testing/drbd9/busybox-mv.patch | 8 ++++++++ 2 files changed, 53 insertions(+) create mode 100644 testing/drbd9/APKBUILD create mode 100644 testing/drbd9/busybox-mv.patch diff --git a/testing/drbd9/APKBUILD b/testing/drbd9/APKBUILD new file mode 100644 index 0000000..bae8f22 --- /dev/null +++ b/testing/drbd9/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Roland Kammerer +# Maintainer: Roland Kammerer +_usname=drbd +pkgname=${_usname}9 +pkgver=9.0.0 +pkgrel=0 +pkgdesc="Network-based RAID 1 version 9" +url="http://www.drbd.org" +arch="all" +license="GPL" +depends="" +depends_dev="" +makedepends="linux-grsec-dev" +install="" +subpackages="" +source="http://oss.linbit.com/$_usname/9.0/$_usname-$pkgver.tar.gz + busybox-mv.patch" + +_builddir=$srcdir/$_usname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="62706c1b57bf399071272dad0d267421 drbd-9.0.0.tar.gz +0ce3796e13ae3d271a1a3bac8ace1603 busybox-mv.patch" +sha256sums="0dc6e37492dcc8a960311b3b0b7e2d17bd1afff146756cdd80d5477c17d7dffc drbd-9.0.0.tar.gz +49898fdf26f8d6bfc8f0a433ca3c17bd0f860f65119ae7f0144eba5977cf30f8 busybox-mv.patch" +sha512sums="a86fbf199ad58aa5458323ca7e42e827516d3a61b871b6eeabf3507547cbec76e713d2276d9e6b4c5d984ec86263516f5feeda871b012f32fd5b49de9489b549 drbd-9.0.0.tar.gz +bcaa7a126cffc5219ecdb9a9bcee8b32312a8d7ed3233360a0393788eb10c5ebe321b607f1f060acf9aa02092b274964437c72bb6bf73d35fa79a7daf27c16d2 busybox-mv.patch" diff --git a/testing/drbd9/busybox-mv.patch b/testing/drbd9/busybox-mv.patch new file mode 100644 index 0000000..76345f8 --- /dev/null +++ b/testing/drbd9/busybox-mv.patch @@ -0,0 +1,8 @@ +--- a/drbd/Kbuild ++++ b/drbd/Kbuild +@@ -131,4 +131,4 @@ + exit 1; \ + fi ; \ + echo -e "\t\t\" build by $$USER@$$HOSTNAME, `date "+%F %T"`\";\n}"; \ +- mv --force $@.new $@ ++ mv -f $@.new $@ -- 2.6.4 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---