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 4D284DC0C2E for ; Thu, 24 Dec 2015 14:46:52 +0000 (UTC) Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id AD86FDC0BCB for ; Thu, 24 Dec 2015 14:46:51 +0000 (UTC) Received: by mail-wm0-f47.google.com with SMTP id p187so184978097wmp.0 for ; Thu, 24 Dec 2015 06:46:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kampka-net.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=bQQHNYMHOhbkx+0/LXh92GIETiJGSt8jKv5GaEOw8Z8=; b=oTI3ifBQ4DwFSW9eEAdCfBXsJ81zDw67f5/CGQx7+BqO59tq4X9O/+cyWZGxHIkhVW qviK3+n265XdhBu1WaJt2r81PIogKzbe6E8xk8F18k3dOmb1WLWiz630uuLaBXr0F0Ow i0bQY/VuT2eqy5U6fxq/BAHfixDEc74lMWJn6ewPlq6xQPSWrk6jFr2JikwZcpcKbVX6 +CLSZZppkSLK1hnWi0r1P51hX2KQ9frtfetVVBFYaVOFC2l3UheETEi6wXlsejea5+q0 N4mV32ehRKQgLJTgiHVwkV4rUDem67ePibqYSi+3bclAoRjmLmIQXelbhi7qLBtH1WnN tBFQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=bQQHNYMHOhbkx+0/LXh92GIETiJGSt8jKv5GaEOw8Z8=; b=QBoLoZd6bwjxn49+tm/lX1rnbAv8jt0dbRYdX9+JMspXxrVY1+MjZ2/XD9hzJ7gJpb vLAxOzItvHHWnD1ogEvfsZymqgookHc7WxOeVVqLG9p+PpfJz48XIzzFpkDfD7NuXKXI NTKJKxSmk/41iA11+JgHcydSyhBtHQ+t70Uj3IueCoQSVhtBXX61tpu0jW4OqYVBpw1Y t8Ji1bKlXGikxGddoBGC6pMchJjxw98+odY5Ik0LgqNha8t3GRG5+yyNp0K8TeoPG+31 BItWuDCgV9DA8osYYI85yOUOw1W4Sv+3jC1AeBYASTLif2c/mcOOsDOe1sx2GGJay/uq EYiA== X-Gm-Message-State: ALoCoQl+XCoiflgaVOiQOBnFApzwilhejw9lP79jeHbDQVJck3/KVByaUtu+WJQYEv5iKURJajDxfrcdgtiFHNyJFSSvUyZmjw== X-Received: by 10.194.6.196 with SMTP id d4mr39774544wja.120.1450968408760; Thu, 24 Dec 2015 06:46:48 -0800 (PST) Received: from localhost (p5DDDA79B.dip0.t-ipconnect.de. [93.221.167.155]) by smtp.gmail.com with ESMTPSA id pn6sm41787625wjb.15.2015.12.24.06.46.47 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 24 Dec 2015 06:46:47 -0800 (PST) From: Christian Kampka To: alpine-aports@lists.alpinelinux.org Cc: Christian Kampka Subject: [alpine-aports] [PATCH] main/py-pygments: add py-setuptools as a dependency Date: Thu, 24 Dec 2015 15:46:44 +0100 Message-Id: <1450968404-1572-1-git-send-email-christian@kampka.net> 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: py-setuptools includes the pkg_resources which is used by pygments to discover and load plugins. It is therefore insufficient to include it only as a build dependency. Also python-dev is only required as a build dependency when building c libs against python, not for packagaging plain python modules. --- main/py-pygments/APKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/py-pygments/APKBUILD b/main/py-pygments/APKBUILD index 5744554..056f824 100644 --- a/main/py-pygments/APKBUILD +++ b/main/py-pygments/APKBUILD @@ -3,13 +3,13 @@ pkgname=py-pygments _pkgname=Pygments pkgver=2.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="A syntax highlighting package written in Python." url="http://pygments.org/" arch="noarch" license="BSD" -depends="python" -makedepends="python-dev py-setuptools" +depends="python py-setuptools" +makedepends="" install="" subpackages="$pkgname-doc" source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" -- 2.6.4 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---