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 6119ADCCF1F for ; Tue, 15 Sep 2015 20:44: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 B26D9DC01E7; Tue, 15 Sep 2015 20:44:26 +0000 (UTC) Received: from localhost (p20030058A62A240071BBE28E83EBC623.dip0.t-ipconnect.de [IPv6:2003:58:a62a:2400:71bb:e28e:83eb:c623]); by lithium.8pit.net (OpenSMTPD) with ESMTPSA id a04c7898; TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Tue, 15 Sep 2015 22:44:24 +0200 (CEST) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/python: depend on linux-headers Date: Tue, 15 Sep 2015 22:44:19 +0200 Message-Id: <1442349859-2238-1-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.5.2 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Without installing linux-headers a bunch of linux specific features are disabled during compile time. An example of this is netlink(7) support. With this commit netlink and (possibly) other features are detected and enabled at compile time correctly. fixes #4451 --- main/python/APKBUILD | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/main/python/APKBUILD b/main/python/APKBUILD index 9f78590..e00bd85 100644 --- a/main/python/APKBUILD +++ b/main/python/APKBUILD @@ -2,22 +2,20 @@ pkgname=python pkgver=2.7.10 _verbase=${pkgver%.*} -pkgrel=1 +pkgrel=2 pkgdesc="A high-level scripting language" url="http://www.python.org" arch="all" license="custom" replaces="python-dev" subpackages="$pkgname-dev $pkgname-doc $pkgname-tests - py-gdbm:gdbm - " + py-gdbm:gdbm" depends="" makedepends="expat-dev openssl-dev zlib-dev ncurses-dev bzip2-dev - gdbm-dev sqlite-dev libffi-dev readline-dev paxmark" + gdbm-dev sqlite-dev libffi-dev readline-dev linux-headers paxmark" source="http://www.$pkgname.org/ftp/$pkgname/$pkgver/Python-$pkgver.tar.xz musl-find_library.patch - unchecked-ioctl.patch - " + unchecked-ioctl.patch" prepare() { cd "$srcdir/Python-$pkgver" -- 2.5.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---