[arch-commits] Commit in opensearch-knn-plugin/repos (2 files)
Justin Kromlinger
hashworks at gemini.archlinux.org
Fri Dec 31 16:09:54 UTC 2021
Date: Friday, December 31, 2021 @ 16:09:54
Author: hashworks
Revision: 1090442
archrelease: copy trunk to community-x86_64
Added:
opensearch-knn-plugin/repos/community-x86_64/
opensearch-knn-plugin/repos/community-x86_64/PKGBUILD
(from rev 1090441, opensearch-knn-plugin/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: opensearch-knn-plugin/repos/community-x86_64/PKGBUILD (from rev 1090441, opensearch-knn-plugin/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2021-12-31 16:09:54 UTC (rev 1090442)
@@ -0,0 +1,34 @@
+# Maintainer: Justin Kromlinger <hashworks at archlinux.org>
+
+pkgname=opensearch-knn-plugin
+pkgver=1.2.3.0
+_opensearchver=1.2.3
+pkgrel=1
+pkgdesc="OpenSearch Index Management Plugin"
+arch=('x86_64')
+url="https://opensearch.org/docs/latest/search-plugins/knn"
+license=('Apache')
+depends=('opensearch')
+makedepends=('java-environment=11' 'unzip')
+source=(
+ "${pkgname}-${pkgver}.tar.gz::https://github.com/opensearch-project/k-NN/archive/${pkgver}.tar.gz"
+)
+sha256sums=('2b7c4fb513abda69f88061435b43381720e60d3a2415b46e805fe70eb1bd3fb8')
+
+build() {
+ cd "k-NN-${pkgver}"
+ export PATH=/usr/lib/jvm/default/bin:$PATH
+ export GRADLE_OPTS="-Dbuild.snapshot=false -Dopensearch.version=${_opensearchver}"
+ # integTest (Reaper) requires JDK 14
+ ./gradlew assemble \
+ --exclude-task ":integTest" \
+ --exclude-task ":jacocoTestReport"
+}
+
+package() {
+ install -dm755 "${pkgdir}/usr/share/opensearch/plugins/opensearch-knn"
+ cd "${pkgdir}/usr/share/opensearch/plugins/opensearch-knn"
+ unzip "${srcdir}/k-NN-${pkgver}/build/distributions/opensearch-knn-${pkgver}.zip"
+
+ install -Dm644 "${srcdir}/k-NN-${pkgver}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}
More information about the arch-commits
mailing list