commit:     0363f00331c4ea0e2a664303569adc8ec66ddf7e
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 22:06:52 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 22:28:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0363f003

net-im/jabber-base: bump to EAPI=7, migrate to GLEP 81

Also dropping '/var/run/jabber' from default install, since this
directory should be created by each jabber service upon start.

Closes: https://bugs.gentoo.org/432462
Closes: https://bugs.gentoo.org/520552
Closes: https://bugs.gentoo.org/670286
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-im/jabber-base/jabber-base-0.01-r2.ebuild | 42 +++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/net-im/jabber-base/jabber-base-0.01-r2.ebuild 
b/net-im/jabber-base/jabber-base-0.01-r2.ebuild
new file mode 100644
index 00000000000..eba2cc85d74
--- /dev/null
+++ b/net-im/jabber-base/jabber-base-0.01-r2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Base layout package for various jabber services"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage";
+S="${WORKDIR}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="
+       acct-group/jabber
+       acct-user/jabber
+"
+
+# This package provides the base layout for all jabber related services.
+# Each service should use the user 'jabber' and the group 'jabber.
+#
+# The base layout contains of the following directories:
+# '/etc/jabber/'       : All main configuration, by jabber services used, is 
stored here.
+# '(/var)/run/jabber'  : All pid files, used by jabber services, are stored 
here.
+#                      : Please note, that this directory should be
+#                      : created dynamically by each jabber service during 
startup.
+# '/var/log/jabber/'   : All log files, used by jabber services, are stored 
here.
+# '/var/spool/jabber'  : All (flat) database files, used by jabber services, 
are stored here.
+
+src_install() {
+       local paths=(
+               "/etc/jabber"
+               "/var/log/jabber"
+               "/var/spool/jabber"
+       )
+
+       for path in ${paths[@]}; do
+               keepdir "${path}"
+               fowners "jabber:jabber" "${path}"
+               fperms 770 "${path}"
+       done
+}

Reply via email to