diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2019-01-04 01:58:51 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2019-01-04 01:58:51 +0000 |
commit | 8a2b1ad85893e7b4ccf11b90953e175ea4bb7c9c (patch) | |
tree | feca5626a9f6711fd9ba5a95dcf32c1600c98ead /user/py3-zope-deprecation/APKBUILD | |
parent | 23931e68295808b529cab095c98f0055991aa44b (diff) | |
parent | 5290d9c4a693d4b69d99fed7bc30e82279c620b4 (diff) | |
download | packages-8a2b1ad85893e7b4ccf11b90953e175ea4bb7c9c.tar.gz packages-8a2b1ad85893e7b4ccf11b90953e175ea4bb7c9c.tar.bz2 packages-8a2b1ad85893e7b4ccf11b90953e175ea4bb7c9c.tar.xz packages-8a2b1ad85893e7b4ccf11b90953e175ea4bb7c9c.zip |
Merge branch 'fix-zope-component' into 'master'
Fix py3-zope-component dependencies
This branch adds missing `py3-zope-component` dependencies that `certbot` v0.30.0 depends on. This branch should be merged before !132 due to these missing deps.
EDIT: The descriptions aren't as good as I'd like, so any guidance or suggestions in that department are appreciated.
See merge request !133
Diffstat (limited to 'user/py3-zope-deprecation/APKBUILD')
-rw-r--r-- | user/py3-zope-deprecation/APKBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/user/py3-zope-deprecation/APKBUILD b/user/py3-zope-deprecation/APKBUILD new file mode 100644 index 000000000..f21a1fdeb --- /dev/null +++ b/user/py3-zope-deprecation/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: zlg <zlg+adelie@zlg.space> +# Maintainer: zlg <zlg+adelie@zlg.space> +pkgname=py3-zope-deprecation +_pkgname=zope.deprecation +pkgver=4.4.0 +pkgrel=0 +pkgdesc="A function to mark deprecated parts of an API" +url="https://github.com/zopefoundation/zope.deprecation" +arch="noarch" +options="!check" # needs zope.testrunner +license="ZPL-2.1" +depends="python3" +makedepends="python3-dev" +subpackages="" +source="$_pkgname-$pkgver.tar.gz::https://github.com/zopefoundation/$_pkgname/archive/$pkgver.tar.gz" +builddir="$srcdir"/$_pkgname-$pkgver + +build() { + cd "$builddir" + python3 setup.py build +} + +package() { + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="d8632a3442eee059383014bb3341b30897ad8f9206b71bc586c873c4cccf5f87296edaf18f1e1c93878f480e3b0e8e1c1936ac19ed327f4ab227402ebbc73e0e zope.deprecation-4.4.0.tar.gz" |