Skip to content

Commit

Permalink
main/py-docutils: make sure that subpackages' deps are built first
Browse files Browse the repository at this point in the history
We need to make sure that the py-pillow and py-roman packages are built
before py-docutils. Do so by adding those to makedepends.
  • Loading branch information
ncopa committed Dec 4, 2018
1 parent 3d75faa commit 028a484
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main/py-docutils/APKBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
pkgname=py-docutils
_pkgname=docutils
pkgver=0.14
pkgrel=0
pkgrel=1
pkgdesc="Documentation Utilities for Python"
url="http://docutils.sourceforge.net/"
arch="noarch"
license="Public-Domain"
depends="py3-${pkgname#py-}"
makedepends="python2-dev python3-dev py-setuptools"
_py2deps="py2-pillow py2-roman"
_py3deps="py3-pillow py3-roman"
makedepends="python2-dev python3-dev py-setuptools $_py2deps $_py3deps"
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3 $pkgname-doc::noarch"
source="https://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
Expand Down

0 comments on commit 028a484

Please sign in to comment.