mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
28 lines
974 B
Text
28 lines
974 B
Text
# Contributor: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
|
|
# Maintainer: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
|
|
pkgname=py3-django-haystack
|
|
pkgver=3.0
|
|
pkgrel=4
|
|
pkgdesc="Modular search for Django"
|
|
options="!check" # requires unpackaged pysolr and whoosh
|
|
url="https://github.com/django-haystack/django-haystack"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="py3-django py3-setuptools"
|
|
makedepends="py3-setuptools_scm"
|
|
source="https://files.pythonhosted.org/packages/source/d/django-haystack/django-haystack-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir/django-haystack-$pkgver"
|
|
|
|
replaces="py-django-haystack" # Backwards compatibility
|
|
provides="py-django-haystack=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --root "$pkgdir"
|
|
}
|
|
|
|
sha512sums="466ac18bbb6d6add1482d9debdffd195a2049c6c287cc4620e4db2ce4a702c97ca8ffb3ce048dc6c278dc50be701daab4f32b05a71c94ac67645890afb9f49bf django-haystack-3.0.tar.gz"
|