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 3E427DC006D for ; Sun, 8 May 2016 22:41:54 +0000 (UTC) Received: from butterfly.birch.relay.mailchannels.net (butterfly.birch.relay.mailchannels.net [23.83.209.27]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id D6442DC0065 for ; Sun, 8 May 2016 22:41:53 +0000 (UTC) X-Sender-Id: mxroute|x-authuser|developer@it-offshore.co.uk Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 63E1AA03B4 for ; Sun, 8 May 2016 22:41:52 +0000 (UTC) Received: from ocean.mxroute.com (ip-10-215-133-244.us-west-2.compute.internal [10.215.133.244]) by relay.mailchannels.net (Postfix) with ESMTPA id 69137A00C8 for ; Sun, 8 May 2016 22:41:51 +0000 (UTC) X-Sender-Id: mxroute|x-authuser|developer@it-offshore.co.uk Received: from ocean.mxroute.com ([TEMPUNAVAIL]. [10.45.16.205]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384) by 0.0.0.0:2500 (trex/5.6.11); Sun, 08 May 2016 22:41:52 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: mxroute|x-authuser|developer@it-offshore.co.uk X-MailChannels-Auth-Id: mxroute X-MC-Loop-Signature: 1462747311623:1143510187 X-MC-Ingress-Time: 1462747311623 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=it-offshore.co.uk; s=default; h=Message-Id:Date:Subject:To:From:Sender: Reply-To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=QIP//nfutqHQXnEpCXJoIAvcWLfX+mOIJ1CcImyJWAU=; b=NgZXksFZi+9tlMFAXgT/xg4Djg DByAgg/Qql5yxkEurwAoPviiYSUMrOePPVq42mQ4n6mQFm3dhwWg1NJKJNE5Pz3ZNYAL76oerGQ8z pbETXX33DFfEeZOHhv+QuKzTrg1Q57/d79Ed4AvflluTYbSQTRsMIsV0xPkfSVO9msfzlYXeY7nZL IUlSwWDZ0wEWVenhdZ5hP7lqDKm85FVpLURwwlzZH7yDDjTUqcf02TgGG725xf5gA4BpVSTxrbxLV A3nc7/aNcXlwNUdnhOPsykdxwUlJeojziTcxk+An0DOKCvnocHXrRgVNoYVYooyVFZtMUyqfCB9HW pBqqx3MQ==; Received: from [81.4.121.188] (port=47739 helo=localhost.localdomain) by ocean.mxroute.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-SHA256:128) (Exim 4.87) (envelope-from ) id 1azXOY-00049q-48 for alpine-aports@lists.alpinelinux.org; Sun, 08 May 2016 18:41:50 -0400 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 1/2] main/cython: fix $depends_dev Date: Sun, 8 May 2016 22:41:42 +0000 Message-Id: <1462747303-10698-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.8.1 X-AuthUser: developer@it-offshore.co.uk X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/cython/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/cython/APKBUILD b/main/cython/APKBUILD index d17a92b..6f0230b 100644 --- a/main/cython/APKBUILD +++ b/main/cython/APKBUILD @@ -2,13 +2,13 @@ # Maintainer: Stuart Cardall pkgname=cython pkgver=0.24 -pkgrel=0 +pkgrel=1 pkgdesc="Cython is an optimising static compiler for both the Python & the extended Cython programming languages." url="http://cython.org" arch="all" license="Apache 2.0" depends="" -depends_dev="python-dev py-pgen" +depends_dev="python-dev py-pgen cython" makedepends="$depends_dev" subpackages="$pkgname-dev" source="$pkgname-$pkgver.tar.gz::https://github.com/cython/cython/archive/$pkgver.tar.gz" -- 2.8.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---