elasticsearch: update to 5.2.1

This commit is contained in:
dota? =op 2017-01-24 02:33:50 -03:00
parent 331e0e6793
commit 5b7d51cd39
2 changed files with 33 additions and 25 deletions

View file

@ -3,6 +3,7 @@ case "$ACTION" in
post) post)
if [ "$UPDATE" != "yes" ]; then if [ "$UPDATE" != "yes" ]; then
# actions to execute if package is being installed. # actions to execute if package is being installed.
install -d /usr/share/elasticsearch/plugins
install -d -m0750 /var/log/elasticsearch install -d -m0750 /var/log/elasticsearch
install -d -m0750 /var/lib/elasticsearch/data install -d -m0750 /var/lib/elasticsearch/data
chown -R elastic /etc/elasticsearch chown -R elastic /etc/elasticsearch

View file

@ -1,41 +1,48 @@
# Template file for 'elasticsearch' # Template file for 'elasticsearch'
pkgname=elasticsearch pkgname=elasticsearch
version=1.7.3 version=5.1.2
revision=2 revision=1
wrksrc="elasticsearch-${version}"
only_for_archs="i686 x86_64" only_for_archs="i686 x86_64"
depends="virtual?java-runtime" depends="virtual?java-runtime"
short_desc="A distributed, open source search and analytics engine" short_desc="A distributed, open source search and analytics engine"
maintainer="bougyman <bougyman@voidlinux.eu>" maintainer="dota? =op <rogi@skylittlesystem.org>"
license="Apache-2.0" license="Apache-2.0"
homepage="http://www.elastic.co" homepage="http://www.elastic.co"
distfiles="https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-${version}.tar.gz" distfiles="https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${version}.tar.gz"
checksum=af517611493374cfb2daa8897ae17e63e2efea4d0377d316baa351c1776a2bca checksum=74d752f9a8b46898d306ad169b72f328e17215c0909149e156a576089ef11c42
system_accounts="elastic" system_accounts="elastic"
conf_files="/etc/elasticsearch/elasticsearch.yml /etc/elasticsearch/logging.yml" conf_files="/etc/elasticsearch/elasticsearch.yml /etc/elasticsearch/jvm.options /etc/elasticsearch/log4j2.properties"
do_install() { do_install() {
vmkdir usr/bin ES="usr/share/elasticsearch"
vmkdir usr/lib/$pkgname/bin
vmkdir usr/lib/$pkgname/lib/sigar rm -f bin/*.{bat,exe}
vmkdir etc/$pkgname vmkdir $ES
vcopy bin $ES
vcopy lib $ES
vcopy modules $ES
vcopy plugins $ES
vmkdir usr/bin
ln -sf /$ES/bin/elasticsearch "$DESTDIR/usr/bin"
vmkdir etc/elasticsearch
vcopy config/* etc/elasticsearch
ln -sf /etc/elasticsearch "$DESTDIR/$ES/config"
vmkdir var/lib/elasticsearch/data
ln -sf /var/lib/elasticsearch/data "$DESTDIR/$ES/data"
vmkdir var/log/elasticsearch
ln -sf /var/log/elasticsearch "$DESTDIR/$ES/logs"
vcopy bin/elasticsearch usr/lib/elasticsearch/bin
vcopy bin/elasticsearch.in.sh usr/lib/elasticsearch/bin
vcopy bin/plugin usr/lib/elasticsearch/bin
vcopy lib/*.jar usr/lib/elasticsearch/lib
vcopy lib/sigar/*.jar usr/lib/elasticsearch/lib/sigar
if [ "$XBPS_TARGET_MACHINE" = "i686" ];then
vcopy lib/sigar/libsigar-x86-linux.so usr/lib/elasticsearch/lib/sigar
else
vcopy lib/sigar/libsigar-amd64-linux.so usr/lib/elasticsearch/lib/sigar
fi
vcopy config/*.yml etc/elasticsearch
ln -s /usr/lib/elasticsearch/bin/elasticsearch ${DESTDIR}/usr/bin/elasticsearch
ln -s /etc/elasticsearch ${DESTDIR}/usr/lib/elasticsearch/config
ln -s /var/lib/elasticsearch/data ${DESTDIR}/usr/lib/elasticsearch/data
ln -s /var/log/elasticsearch ${DESTDIR}/usr/lib/elasticsearch/logs
vlicense LICENSE.txt vlicense LICENSE.txt
vlicense NOTICE.txt vlicense NOTICE.txt
vdoc README.textile vdoc README.textile
vsv elasticsearch vsv elasticsearch
} }