dev-db/couchdb: new package, add 3.5.1

Signed-off-by: Liv <maw@mawile.net>
This commit is contained in:
Liv
2026-05-07 18:49:29 +02:00
parent 7e1748c564
commit 30835f75aa
5 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# Path to the OTP arguments
#COUCHDB_ARGS_FILE=/etc/couchdb/vm.args
# Path to CouchDB configuration files
#COUCHDB_INI_FILES="/etc/couchdb/default.ini /etc/couchdb/local.ini"

View File

@@ -0,0 +1,17 @@
#!/sbin/openrc-run
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
export COUCHDB_ARGS_FILE=${COUCHDB_ARGS_FILE:-/etc/couchdb/vm.args}
export COUCHDB_INI_FILES=${COUCHDB_INI_FILES:-"/etc/couchdb/default.ini /etc/couchdb/local.ini"}
pidfile="/run/${RC_SVCNAME}.pid"
command="/usr/lib/couchdb/bin/couchdb"
command_args="${COUCHDB_OPTS}"
command_background="true"
command_user="couchdb"
name="CouchDB Database"
depend() {
use net
}