Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/jabber-base/
Date: Sat, 12 Oct 2019 07:06:36
Message-Id: 1570863986.5aa671f2c60bb975e3237c80af1dd9138f21bd23.mgorny@gentoo
1 commit: 5aa671f2c60bb975e3237c80af1dd9138f21bd23
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 07:04:34 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 07:06:26 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aa671f2
7
8 net-im/jabber-base: Drop old (EAPI 0)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 net-im/jabber-base/jabber-base-0.01.ebuild | 51 ------------------------------
13 1 file changed, 51 deletions(-)
14
15 diff --git a/net-im/jabber-base/jabber-base-0.01.ebuild b/net-im/jabber-base/jabber-base-0.01.ebuild
16 deleted file mode 100644
17 index 5d4cbd8fe25..00000000000
18 --- a/net-im/jabber-base/jabber-base-0.01.ebuild
19 +++ /dev/null
20 @@ -1,51 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=0
25 -
26 -inherit eutils user
27 -
28 -DESCRIPTION="Jabber servers and transports layout package"
29 -SRC_URI=""
30 -HOMEPAGE="https://www.gentoo.org/"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc sparc x86"
35 -IUSE=""
36 -
37 -DEPEND=""
38 -
39 -S="${WORKDIR}"
40 -
41 -#Info for people working in jabber related packages
42 -
43 -#/etc/jabber/ for configuration files
44 -#/var/run/jabber/ for the pid files
45 -#/var/spool/jabber/ for the flat files databases (actually there must be a ewarn
46 -#at end of ebuild telling user to creat /var/spool/jabber/JID, as some transports fail to start if
47 -#the directory is not there, even if they have permissions to creat it)
48 -#/var/log/jabber/ for the log files
49 -
50 -#for the python based transports with no install script:
51 -#they must inherit python and be installed in:
52 -#$(python_get_sitedir)/$package-name
53 -
54 -#the user should be the one created here username=group=jabber
55 -
56 -src_install() {
57 - keepdir /etc/jabber
58 - keepdir /var/run/jabber
59 - keepdir /var/spool/jabber
60 - keepdir /var/log/jabber
61 -}
62 -
63 -pkg_postinst() {
64 - # Users should not be created in src_install see bug #124680
65 - # Add our default jabber group and user
66 - enewgroup jabber
67 - enewuser jabber -1 -1 -1 jabber
68 - # We can't use fowners & fperms convenience wrappers as we are outside the sandbox
69 - chown jabber:jabber /etc/jabber /var/log/jabber /var/spool/jabber /var/run/jabber
70 - chmod 770 /etc/jabber /var/log/jabber /var/spool/jabber /var/run/jabber
71 -}