X-Original-To: alpine-aports@lists.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail-pa0-f50.google.com (mail-pa0-f50.google.com [209.85.220.50]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 272A6DC011D for ; Wed, 14 Jan 2015 20:05:37 +0000 (UTC) Received: by mail-pa0-f50.google.com with SMTP id bj1so12546398pad.9 for ; Wed, 14 Jan 2015 12:05:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=5EBHKQfgPtI8mugjCZtr4/rhyV9s4iQKL/1M3tvZroc=; b=I4DJGeTAjFUkcxV54ohB2fcDgpSQwKxA6OihjdvBq83Y6DBykyi/GhEcEbHrozNKEi VX1wYlLeSNysa3wOU9yKbbKDnWFrHZZD92lMA6EALeZSiX2uYLit2uNlZMNp5MlXhH/5 EfhvfClE+ZsxeMwMvxNK1PzTdlTMEsuTmMzhDdsPZ156+0UZltYggmg2VznV187ZCUTi DP0yhvRbpKgt9q3tuCOLYtuCq41Od6a+lnG5BOZhiKp2exEjxwMi3B24EjeDprPIrYpC fIJdgOd1O/TeHEb0Ayi4lvqFhde583i2qpy2F3zPLTORmvjC8Okt2AMxFkznvLXEvwnh 7gZQ== X-Received: by 10.70.96.8 with SMTP id do8mr8536827pdb.154.1421265936994; Wed, 14 Jan 2015 12:05:36 -0800 (PST) Received: from localhost ([74.82.134.59]) by mx.google.com with ESMTPSA id jp10sm20427313pbb.2.2015.01.14.12.05.35 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 14 Jan 2015 12:05:36 -0800 (PST) From: systmkor To: alpine-aports@lists.alpinelinux.org Cc: systmkor@gmail.com Subject: [alpine-aports] [PATCH] testing/py-scrapy: fixed missing dependencies Date: Wed, 14 Jan 2015 12:05:13 -0800 Message-Id: <1421265913-11204-1-git-send-email-systmkor@gmail.com> X-Mailer: git-send-email 2.2.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: When running the scrapy cli command part of the py-scrapy framework it was crashing when py-cffi and py-cryptography packages weren't installed. So it is now part of py-scrapy dependencies. --- testing/py-scrapy/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/py-scrapy/APKBUILD b/testing/py-scrapy/APKBUILD index dab6013..939957f 100644 --- a/testing/py-scrapy/APKBUILD +++ b/testing/py-scrapy/APKBUILD @@ -4,12 +4,12 @@ pkgname=py-scrapy _pkgname="Scrapy" pkgver=0.24.4 -pkgrel=0 +pkgrel=1 pkgdesc="A fast high-level scraping and web crawling framework." url="http://scrapy.org/" arch="noarch" license="BSD" -depends="python py-twisted libxml2 py-w3lib py-lxml py-six py-queuelib py-cssselect py-openssl" +depends="python py-twisted libxml2 py-w3lib py-lxml py-six py-queuelib py-cssselect py-openssl py-cryptography py-cffi" depends_dev="" makedepends="python-dev py-setuptools" install="" -- 2.2.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---