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 35982DC013B for ; Mon, 7 Sep 2015 22:39:27 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [141.101.32.65]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 806C6DC00DE; Mon, 7 Sep 2015 22:39:25 +0000 (UTC) Received: from localhost (ip5f5ac8f2.dynamic.kabel-deutschland.de [95.90.200.242]); by lithium.8pit.net (OpenSMTPD) with ESMTPSA id 305588e2; TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Tue, 8 Sep 2015 00:39:23 +0200 (CEST) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 1/2] main/build-base: drop patch dependency Date: Tue, 8 Sep 2015 00:39:20 +0200 Message-Id: <1441665561-11776-1-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.5.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: build-base should only include basic build tools for compiling C/C++ programs. patch(1) is a useful tool in that process but our busybox version already ships a patch program. However, abuild(1) needs the GNU version of patch thus this dependency was moved to the alpine-sdk package. --- main/build-base/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/build-base/APKBUILD b/main/build-base/APKBUILD index d114acb..9ae0ceb 100644 --- a/main/build-base/APKBUILD +++ b/main/build-base/APKBUILD @@ -1,10 +1,10 @@ # Maintainer: Natanael Copa pkgname=build-base pkgver=0.4 -pkgrel=0 +pkgrel=1 url=http://dev.alpinelinux.org/cgit pkgdesc="Meta package for build base" -depends="binutils gcc make patch libc-dev fortify-headers g++" +depends="binutils gcc make libc-dev fortify-headers g++" arch="noarch" license=none -- 2.5.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---