summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCayetano Santos2020-04-29 17:25:30 +0200
committerCayetano Santos2020-04-29 17:25:30 +0200
commit2e3680cca1a986320c6b4bce3e1e3b191100017d (patch)
treeac00a28b8daf4d60bd5302f45692046f4ecbb554
parent90235acbb9d05d38e377911475724d9ffcf29c00 (diff)
downloadaur-2e3680cca1a986320c6b4bce3e1e3b191100017d.tar.gz
Setuptools is a depends not a makedepends
As for the wiki "if the PKGBUILD only installs the Python package for a single version of Python, setuptools should be moved from makedepends to depends"
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 23d07789e127..c65b6afc569a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -6,9 +6,9 @@ pkgbase = python-fusesoc
arch = any
license = GPLv3
makedepends = git
- makedepends = python-setuptools
depends = python
depends = python-edalize
+ depends = python-setuptools
optdepends = iverilog: for simulating verilog designs
optdepends = ghdl: for simulating VHDL designs
optdepends = gtkwave: for visualizing waveforms
diff --git a/PKGBUILD b/PKGBUILD
index 77342f0fd1d1..6b6ae6f610fe 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,9 +8,9 @@ url="http://github.com/olofk/fusesoc/"
license=('GPLv3')
conflicts=('python-fusesoc-git')
provides=('python-fusesoc')
-depends=('python' 'python-edalize')
+depends=('python' 'python-edalize' 'python-setuptools')
-makedepends=('git' 'python-setuptools')
+makedepends=('git')
optdepends=('iverilog: for simulating verilog designs'
'ghdl: for simulating VHDL designs'
'gtkwave: for visualizing waveforms')