From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6BC0D138359 for ; Thu, 12 Nov 2020 18:23:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BDA6E08F3; Thu, 12 Nov 2020 18:23:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4EA3AE08F3 for ; Thu, 12 Nov 2020 18:23:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B4A5340FD5 for ; Thu, 12 Nov 2020 18:23:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CC4F44C for ; Thu, 12 Nov 2020 18:23:40 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1605205351.adb594b4642bdfa837731d96e92ac8f36e3f1c45.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/jabber-base/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/jabber-base/jabber-base-0.01-r1.ebuild X-VCS-Directories: net-im/jabber-base/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: adb594b4642bdfa837731d96e92ac8f36e3f1c45 X-VCS-Branch: master Date: Thu, 12 Nov 2020 18:23:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 67809904-10bb-45fd-9dbd-a833f30d813a X-Archives-Hash: 2fe69adee7b9c5ec582d25e410f943a8 commit: adb594b4642bdfa837731d96e92ac8f36e3f1c45 Author: Conrad Kostecki gentoo org> AuthorDate: Thu Nov 12 18:22:31 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Nov 12 18:22:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb594b4 net-im/jabber-base: drop old version Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> net-im/jabber-base/jabber-base-0.01-r1.ebuild | 51 --------------------------- 1 file changed, 51 deletions(-) diff --git a/net-im/jabber-base/jabber-base-0.01-r1.ebuild b/net-im/jabber-base/jabber-base-0.01-r1.ebuild deleted file mode 100644 index b953357c064..00000000000 --- a/net-im/jabber-base/jabber-base-0.01-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils user - -DESCRIPTION="Jabber servers and transports layout package" -SRC_URI="" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ~ppc64 sparc x86" -IUSE="" - -DEPEND="" - -S="${WORKDIR}" - -#Info for people working in jabber related packages - -#/etc/jabber/ for configuration files -#/var/run/jabber/ for the pid files -#/var/spool/jabber/ for the flat files databases (actually there must be a ewarn -#at end of ebuild telling user to creat /var/spool/jabber/JID, as some transports fail to start if -#the directory is not there, even if they have permissions to creat it) -#/var/log/jabber/ for the log files - -#for the python based transports with no install script: -#they must inherit python and be installed in: -#$(python_get_sitedir)/$package-name - -#the user should be the one created here username=group=jabber - -src_install() { - keepdir /etc/jabber - keepdir /var/run/jabber - keepdir /var/spool/jabber - keepdir /var/log/jabber -} - -pkg_postinst() { - # Users should not be created in src_install see bug #124680 - # Add our default jabber group and user - enewgroup jabber - enewuser jabber -1 -1 -1 jabber - # We can't use fowners & fperms convenience wrappers as we are outside the sandbox - chown jabber:jabber /etc/jabber /var/log/jabber /var/spool/jabber /var/run/jabber - chmod 770 /etc/jabber /var/log/jabber /var/spool/jabber /var/run/jabber -}