[arch-commits] Commit in opensearch-performance-analyzer-plugin/repos (2 files)
Justin Kromlinger
hashworks at gemini.archlinux.org
Fri Dec 31 16:15:50 UTC 2021
Date: Friday, December 31, 2021 @ 16:15:49
Author: hashworks
Revision: 1090447
archrelease: copy trunk to community-x86_64
Added:
opensearch-performance-analyzer-plugin/repos/community-x86_64/
opensearch-performance-analyzer-plugin/repos/community-x86_64/PKGBUILD
(from rev 1090446, opensearch-performance-analyzer-plugin/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: opensearch-performance-analyzer-plugin/repos/community-x86_64/PKGBUILD (from rev 1090446, opensearch-performance-analyzer-plugin/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2021-12-31 16:15:49 UTC (rev 1090447)
@@ -0,0 +1,34 @@
+# Maintainer: Justin Kromlinger <hashworks at archlinux.org>
+
+pkgname=opensearch-performance-analyzer-plugin
+pkgver=1.2.3.0
+_opensearchver=1.2.3
+pkgrel=1
+pkgdesc="OpenSearch Performance Analyzer Plugin"
+arch=('x86_64')
+url="https://opensearch.org/docs/latest/monitoring-plugins/pa"
+license=('Apache')
+depends=('opensearch')
+makedepends=('java-environment=11' 'unzip')
+source=(
+ "${pkgname}-${pkgver}.tar.gz::https://github.com/opensearch-project/performance-analyzer/archive/${pkgver}.tar.gz"
+)
+sha256sums=('ec8cc9a21bf8a5f310feb0e562b4f55adbdb5cde7471974f811525c5682a7302')
+
+build() {
+ cd "performance-analyzer-${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-performance-analyzer"
+ cd "${pkgdir}/usr/share/opensearch/plugins/opensearch-performance-analyzer"
+ unzip "${srcdir}/performance-analyzer-${pkgver}/build/distributions/opensearch-performance-analyzer-${pkgver}.zip"
+
+ install -Dm644 "${srcdir}/performance-analyzer-${pkgver}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}
More information about the arch-commits
mailing list