[arch-commits] Commit in python-elasticsearch/repos/community-any (PKGBUILD PKGBUILD)
Felix Yan
felixonmars at archlinux.org
Fri May 8 12:06:41 UTC 2020
Date: Friday, May 8, 2020 @ 12:06:40
Author: felixonmars
Revision: 625610
archrelease: copy trunk to community-any
Added:
python-elasticsearch/repos/community-any/PKGBUILD
(from rev 625609, python-elasticsearch/trunk/PKGBUILD)
Deleted:
python-elasticsearch/repos/community-any/PKGBUILD
----------+
PKGBUILD | 89 +++++++++++++++++++++++++------------------------------------
1 file changed, 37 insertions(+), 52 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-05-08 12:06:25 UTC (rev 625609)
+++ PKGBUILD 2020-05-08 12:06:40 UTC (rev 625610)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgbase=python-elasticsearch
-pkgname=('python-elasticsearch' 'python2-elasticsearch')
-pkgver=7.6.0
-pkgrel=1
-arch=('any')
-pkgdesc='Python client for Elasticsearch'
-url='https://github.com/elastic/elasticsearch-py'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-urllib3' 'python2-urllib3')
-checkdepends=('python-nose' 'python2-nose' 'python-requests' 'python2-requests' 'python-coverage'
- 'python2-coverage' 'python-mock' 'python2-mock' 'python-pyaml' 'python2-pyaml'
- 'python-nosexcover' 'python2-nosexcover')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/elastic/elasticsearch-py/archive/$pkgver.tar.gz")
-sha512sums=('f8a54cd222af94d659087d654bcbe52da5ee90570ff04dbdd6793b870b8fd7e4b5b896620424f85057f2274ed3a16ecd97f53f704c2a97931b4876d246311ea9')
-
-prepare() {
- sed -i 's/urllib3<.*,>/urllib3>/' elasticsearch-py-$pkgver/setup.py
- cp -a elasticsearch-py-$pkgver{,-py2}
-}
-
-build() {
- cd "$srcdir"/elasticsearch-py-$pkgver
- python setup.py build
-
- cd "$srcdir"/elasticsearch-py-$pkgver-py2
- python2 setup.py build
-}
-
-check() {
- cd "$srcdir"/elasticsearch-py-$pkgver
- # https://github.com/elastic/elasticsearch-py/issues/816
- # python setup.py test
-
- cd "$srcdir"/elasticsearch-py-$pkgver-py2
- # python2 setup.py test
-}
-
-package_python-elasticsearch() {
- depends=('python-urllib3')
-
- cd elasticsearch-py-$pkgver
- python setup.py install --root "$pkgdir" --optimize=1
-}
-
-package_python2-elasticsearch() {
- depends=('python2-urllib3')
-
- cd elasticsearch-py-$pkgver-py2
- python2 setup.py install --root "$pkgdir" --optimize=1
-}
Copied: python-elasticsearch/repos/community-any/PKGBUILD (from rev 625609, python-elasticsearch/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-05-08 12:06:40 UTC (rev 625610)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-elasticsearch
+pkgver=7.6.0
+pkgrel=2
+arch=('any')
+pkgdesc='Python client for Elasticsearch'
+url='https://github.com/elastic/elasticsearch-py'
+license=('Apache')
+depends=('python-urllib3')
+makedepends=('python-setuptools' 'git')
+checkdepends=('python-nose' 'python-requests' 'python-coverage' 'python-mock' 'python-pyaml'
+ 'python-nosexcover')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elastic/elasticsearch-py/archive/$pkgver.tar.gz"
+ git+https://github.com/elastic/elasticsearch.git)
+sha512sums=('f8a54cd222af94d659087d654bcbe52da5ee90570ff04dbdd6793b870b8fd7e4b5b896620424f85057f2274ed3a16ecd97f53f704c2a97931b4876d246311ea9'
+ 'SKIP')
+
+prepare() {
+ sed -i 's/urllib3<.*,>/urllib3>/' elasticsearch-py-$pkgver/setup.py
+ sed -i 's|CA_CERTS = None|CA_CERTS = "/etc/ssl/certs/ca-certificates.crt"|' elasticsearch-py-$pkgver/elasticsearch/connection/http_urllib3.py
+}
+
+build() {
+ cd elasticsearch-py-$pkgver
+ python setup.py build
+}
+
+check() {
+ cd elasticsearch-py-$pkgver
+ TEST_ES_REPO="$srcdir"/elasticsearch python setup.py test
+}
+
+package() {
+ cd elasticsearch-py-$pkgver
+ python setup.py install --root "$pkgdir" --optimize=1
+}
More information about the arch-commits
mailing list