diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-12 19:39:48 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-12 19:41:03 +0000 |
commit | 742930069c35b048bc8030206bf879efe96e1dbc (patch) | |
tree | 70b999cc89d125419f9c02998d7064f74f26889f /testing | |
parent | 2a67795e0a1bb8080e95a678d64b201e79ec6223 (diff) | |
download | aports-742930069c35b048bc8030206bf879efe96e1dbc.tar.bz2 aports-742930069c35b048bc8030206bf879efe96e1dbc.tar.xz |
testing/py2-tracepack2: fix dependency
Package depends on `py-linecache2`, which does not exist. The correct name is
`py2-linecache2`
Diffstat (limited to 'testing')
-rw-r--r-- | testing/py2-traceback2/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/py2-traceback2/APKBUILD b/testing/py2-traceback2/APKBUILD index d317a7bf3d..427cd8c2d0 100644 --- a/testing/py2-traceback2/APKBUILD +++ b/testing/py2-traceback2/APKBUILD @@ -9,7 +9,7 @@ options="!check" # Depends on py2-unittest2 for tests which depends on this pack url="https://github.com/testing-cabal/traceback2" arch="noarch" license="PSF" -depends="py-linecache2" +depends="py2-linecache2" makedepends="git py-setuptools py-pbr" source="$pkgname-$pkgver.tar.gz::https://github.com/testing-cabal/$_pkgname/archive/$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" |