zookeeper: remove package

unmaintained for a long time
This commit is contained in:
Piraty 2022-10-05 14:17:01 +02:00
parent b4b67c1cc1
commit e7e6400b61
3 changed files with 1 additions and 53 deletions

View File

@ -479,6 +479,7 @@ replaces="
ytop<=0.6.2_1
yturl<=2.0.2_5
zbackup<=1.4.4_23
zookeeper<=3.4.13_2
zou<=0.2.0_7
zuluplay-devel<=1.1_1
zuluplay<=1.1_1

View File

@ -1,6 +0,0 @@
#!/bin/sh
[ -f ./conf ] && . ./conf
: ${DEFAULT_CONF_PATH:='/etc/zookeeper/conf/environment'}
exec chpst -u _zookeeper \
/usr/share/zookeeper/bin/zkServer.sh start-foreground ${DEFAULT_CONF_PATH}

View File

@ -1,47 +0,0 @@
# Template file for 'zookeeper'
pkgname=zookeeper
version=3.4.13
revision=2
depends="virtual?java-runtime"
short_desc="Distributed hierarchical key-value store"
maintainer="Mickael Fortunato <morsi.morsicus@gmail.com>"
license="Apache-2.0, MIT, BSD-3-Clause"
homepage="http://zookeeper.apache.org/"
distfiles="https://archive.apache.org/dist/zookeeper/zookeeper-${version}/zookeeper-${version}.tar.gz"
checksum=7ced798e41d2027784b8fd55c908605ad5bd94a742d5dab2506be8f94770594d
system_accounts="_zookeeper"
do_install() {
# License
cp lib/jline-*.LICENSE.txt jline.LICENSE
vlicense jline.LICENSE
cp lib/slf4j-*.LICENSE.txt slf4j.LICENSE
vlicense slf4j.LICENSE
# Documentation
vmkdir usr/share/doc/${pkgname}
vcopy "docs/*" usr/share/doc/${pkgname}
# Configuration example
vmkdir usr/share/examples/${pkgname}
vcopy conf usr/share/examples/${pkgname}
# Default configuration
vmkdir etc/${pkgname}/conf
vcopy conf/zoo_sample.cfg etc/${pkgname}/conf/environment
# Main class
vmkdir usr/share/${pkgname}
vcopy ${pkgname}-${version}.jar usr/share/${pkgname}
# Tools
vmkdir usr/share/${pkgname}/bin
vcopy "bin/*.sh" usr/share/${pkgname}/bin
# Classpath
vmkdir usr/share/${pkgname}/lib
vcopy "lib/*.jar" usr/share/${pkgname}/lib
# Service
vsv ${pkgname}
}