commit:     f9e6d7878602e987e26951866f8b9384da0edb77
Author:     Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  9 09:03:39 2026 +0000
Commit:     Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Mon Mar  9 09:05:34 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9e6d787

app-misc/elasticsearch: add 9.3.1

Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>

 app-misc/elasticsearch/Manifest                   |   1 +
 app-misc/elasticsearch/elasticsearch-9.3.1.ebuild | 110 ++++++++++++++++++++++
 2 files changed, 111 insertions(+)

diff --git a/app-misc/elasticsearch/Manifest b/app-misc/elasticsearch/Manifest
index aa6a984018da..4b5301911995 100644
--- a/app-misc/elasticsearch/Manifest
+++ b/app-misc/elasticsearch/Manifest
@@ -3,3 +3,4 @@ DIST elasticsearch-8.17.4-linux-x86_64.tar.gz 636389207 BLAKE2B 
567aa02c454e270b
 DIST elasticsearch-8.18.0-linux-x86_64.tar.gz 647601341 BLAKE2B 
95ef3a4df917f065932c2bf8a6be9bc59dd7a6b229a48388779985cc3fda7134dc287fb8bb89062fbdd9c72d17926a3398a9ecb45fbba03f784a0330d711d4cb
 SHA512 
ac3a17ab28450bcf1a9686f7e59913343c0a8c9079df6898e7691d420b981ac71ffd24bb05a1da795af4aa5678c3db45fc1da7801f8db53399af7fb579d77923
 DIST elasticsearch-9.0.0-linux-x86_64.tar.gz 649811730 BLAKE2B 
746034dfd95a831a6c5d387030ff9a1517fd6194629fbe5ed53c0ff154f0be4e3a121cc19207c56d688ca370f1858808e65756cda0b270f79887041788b91141
 SHA512 
4a463db7351eeb6429d5a36eb05042c7585d12461d9122016b54cd0465828c5cefd643c113d0119dbabd850d22a992f1704f437bf2825a8aa61b5788c8116142
 DIST elasticsearch-9.0.1-linux-x86_64.tar.gz 650072190 BLAKE2B 
863dece7ff55a6c13d3f6fccb0db0d1907cd631ee4b494ee6b7f9ccf4f9e8cf1cbe6bfa014d2bbd833563dfc10bad5f3b4a7bc382dd0269ff45cf8b944e8a975
 SHA512 
b8baa9f032015adb347bf7ce5782ef890e763d502f1eac4fb71e1905d86c9f62f6616c550d71ab88d8cc451e621c1d084423ef7821f770ed6ed63bd230e2e137
+DIST elasticsearch-9.3.1-linux-x86_64.tar.gz 666060729 BLAKE2B 
086f06bcd87a1e71df7a26161e226e114f534c623ace14a8816ecfbaf29c2388db0c2eb4311f36ecbe3989db5c9bafc4bcd3e37dd4364a3355ba1518c763d577
 SHA512 
fc99bbc3c9a310c2e2d6aeb101d008960a95e201d64a7debd18442de51f33553dc665173e1386b8119c97a6e905eace93bf241d7ee4fc23c5f1d654105e400ff

diff --git a/app-misc/elasticsearch/elasticsearch-9.3.1.ebuild 
b/app-misc/elasticsearch/elasticsearch-9.3.1.ebuild
new file mode 100644
index 000000000000..024e8cbf955b
--- /dev/null
+++ b/app-misc/elasticsearch/elasticsearch-9.3.1.ebuild
@@ -0,0 +1,110 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd tmpfiles
+
+DESCRIPTION="Free and Open, Distributed, RESTful Search Engine"
+HOMEPAGE="https://www.elastic.co/elasticsearch/";
+SRC_URI="https://artifacts.elastic.co/downloads/${PN}/${P}-linux-x86_64.tar.gz";
+
+LICENSE="Apache-2.0 BSD-2 Elastic-2.0 LGPL-3 MIT public-domain"
+SLOT="0/9"
+KEYWORDS="~amd64"
+
+DEPEND="acct-group/elasticsearch
+       acct-user/elasticsearch"
+# This package _actually does depend_ on JDK at runtime. #950962
+RDEPEND="acct-group/elasticsearch
+       acct-user/elasticsearch
+       virtual/zlib:=
+       virtual/jdk:21"
+
+QA_FLAGS_IGNORED="usr/share/elasticsearch/lib/platform/linux-x64/*.so"
+QA_PREBUILT="
+       usr/share/elasticsearch/lib/platform/linux-x64/*.so
+       
usr/share/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/\(bin\|lib\)/.*
+"
+QA_PRESTRIPPED="
+       usr/share/elasticsearch/lib/platform/linux-x64/*.so
+       
usr/share/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/\(bin\|lib\)/.*
+"
+
+PATCHES=(
+       "${FILESDIR}/${PN}-env-3.patch"
+)
+
+src_prepare() {
+       default
+
+       rm -rf jdk || die
+       sed -i -e "s|#\(path.logs:\).*|\1 ${EPREFIX}/var/log/${PN}/|g" 
config/elasticsearch.yml ||
+               die "Unable to set Elasticsearch log location"
+       # elasticsearch-env sets the envvar for the config location if not 
specified elsewhere;
+       # certain utilities try and source this. Although we patch ES_JAVA_HOME 
for Gentoo slightly earlier,
+       # it's easier to respect EPREFIX for the config location using sed.
+       sed -i 
"s:ES_PATH_CONF=\"\$ES_HOME\"/config:ES_PATH_CONF=\"${EPREFIX}/etc/${PN}\":" 
bin/elasticsearch-env  \
+               || die "Unable to set Elasticsearch config directory"
+       rm LICENSE.txt NOTICE.txt || die
+       rmdir logs || die
+}
+
+src_install() {
+       keepdir /etc/${PN}
+       keepdir /etc/${PN}/scripts
+
+       insinto /etc/${PN}
+       doins -r config/.
+       rm -r config || die
+
+       fowners -R root:${PN} /etc/${PN}
+       fperms -R 2750 /etc/${PN}
+
+       insinto /usr/share/${PN}
+       doins -r .
+
+       exeinto /usr/share/${PN}/bin
+       doexe "${FILESDIR}"/elasticsearch-systemd-pre-exec
+
+       fperms -R +x /usr/share/${PN}/bin
+       fperms -R +x 
/usr/share/${PN}/modules/x-pack-ml/platform/linux-x86_64/bin
+
+       keepdir /var/{lib,log}/${PN}
+       fowners ${PN}:${PN} /var/{lib,log}/${PN}
+       fperms 0750 /var/{lib,log}/${PN}
+
+       insinto /etc/sysctl.d
+       newins "${FILESDIR}/${PN}.sysctl.d" ${PN}.conf
+
+       newconfd "${FILESDIR}/${PN}.conf.4" ${PN}
+       newinitd "${FILESDIR}/${PN}.init.8" ${PN}
+
+       systemd_install_serviced "${FILESDIR}/${PN}.service.conf"
+       systemd_newunit "${FILESDIR}"/${PN}.service.4 ${PN}.service
+
+       newtmpfiles "${FILESDIR}"/${PN}.tmpfiles.d ${PN}.conf
+}
+
+pkg_postinst() {
+       # Elasticsearch will choke on our keep file and dodir will not preserve 
the empty dir
+       # `equery check` complains that the keep file doesn't exist if we 
simply remove it
+       if [[ ! -d "${EROOT}/usr/share/${PN}/plugins" ]] ; then
+               mkdir "${EROOT}/usr/share/${PN}/plugins" || die
+       fi
+       tmpfiles_process /usr/lib/tmpfiles.d/${PN}.conf
+       if ! systemd_is_booted ; then
+               elog "You may create multiple instances of ${PN} by"
+               elog "symlinking the init script:"
+               elog "ln -sf /etc/init.d/${PN} /etc/init.d/${PN}.instance"
+               elog
+               elog "Please make sure you put elasticsearch.yml, 
log4j2.properties and scripts"
+               elog "from /etc/${PN} into the configuration directory of the 
instance:"
+               elog "/etc/${PN}/instance"
+               elog
+       fi
+       ewarn "Please make sure you have proper permissions on /etc/${PN}"
+       ewarn "prior to keystore generation or you may experience startup 
failures."
+       ewarn "chown root:${PN} /etc/${PN} && chmod 2750 /etc/${PN}"
+       ewarn "chown root:${PN} /etc/${PN}/${PN}.keystore && chmod 0660 
/etc/${PN}/${PN}.keystore"
+}

Reply via email to