summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan Baker2016-08-25 11:04:36 -0700
committerDylan Baker2016-08-25 11:07:06 -0700
commit784317c54d1a6a160ac93dd5e81145df629f83ab (patch)
treed8489b64e6efedfe14d539b47eb8bbd56bbf33d2
parent454c96856b26c73669315869f89330784f019f35 (diff)
downloadaur-784317c54d1a6a160ac93dd5e81145df629f83ab.tar.gz
PKGBUILD: fix dependencies
python is not a required depends, but python-setuptools is a makedepends This bumps the pkgrel to 2
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 389b520444aa..91df3762f05f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,11 @@
pkgbase = python-jsonstreams
pkgdesc = A Python module for writing JSON as a stream
pkgver = 0.3.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/dcbaker/jsonstreams
arch = any
license = MIT
- depends = python
+ makedepends = python-setuptools
optdepends = python-simplejson
options = !emptydirs
source = https://pypi.python.org/packages/b6/4e/fc68910cc9b72bca0f9ee8d8cdc7d3ef55c03ab62b2dfb9338d74639f11c/jsonstreams-0.3.1.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
index 1abe616091bf..aec8643bce8e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,12 +2,13 @@
_name=jsonstreams
pkgname=python-${_name}
pkgver=0.3.1
-pkgrel=1
+pkgrel=2
pkgdesc="A Python module for writing JSON as a stream"
arch=('any')
url="https://github.com/dcbaker/jsonstreams"
license=('MIT')
-depends=('python')
+depends=()
+makedepends=('python-setuptools')
optdepends=('python-simplejson')
options=(!emptydirs)
source=('https://pypi.python.org/packages/b6/4e/fc68910cc9b72bca0f9ee8d8cdc7d3ef55c03ab62b2dfb9338d74639f11c/jsonstreams-0.3.1.tar.gz'