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 A47A1139083 for ; Sun, 17 Dec 2017 15:06:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1EC5E0E59; Sun, 17 Dec 2017 15:06:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 81E92E0E59 for ; Sun, 17 Dec 2017 15:06:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5B0A333BDE1 for ; Sun, 17 Dec 2017 15:06:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D498ADCA for ; Sun, 17 Dec 2017 15:06:11 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1513523163.1e47b590c48c78e938793e64fd2fcfa88eb14a48.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/metalog/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/metalog/metalog-3-r1.ebuild X-VCS-Directories: app-admin/metalog/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 1e47b590c48c78e938793e64fd2fcfa88eb14a48 X-VCS-Branch: master Date: Sun, 17 Dec 2017 15:06:11 +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-Archives-Salt: 965a79f2-5590-4454-9bf9-63da21a279a6 X-Archives-Hash: e4b6d2e1820ba55b6f7250695f70dcbe commit: 1e47b590c48c78e938793e64fd2fcfa88eb14a48 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Dec 17 15:06:03 2017 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Dec 17 15:06:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e47b590 app-admin/metalog: Drop old Package-Manager: Portage-2.3.13, Repoman-2.3.3 app-admin/metalog/metalog-3-r1.ebuild | 58 ----------------------------------- 1 file changed, 58 deletions(-) diff --git a/app-admin/metalog/metalog-3-r1.ebuild b/app-admin/metalog/metalog-3-r1.ebuild deleted file mode 100644 index b67bb91b753..00000000000 --- a/app-admin/metalog/metalog-3-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="3" -inherit eutils systemd - -DESCRIPTION="A highly configurable replacement for syslogd/klogd" -HOMEPAGE="http://metalog.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" -IUSE="unicode" - -RDEPEND=">=dev-libs/libpcre-3.4" -DEPEND="${RDEPEND} - virtual/pkgconfig - app-arch/xz-utils" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-0.9-metalog-conf.patch -} - -src_configure() { - econf $(use_with unicode) -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog README NEWS metalog.conf - - into / - dosbin "${FILESDIR}"/consolelog.sh || die - - newinitd "${FILESDIR}"/metalog.initd metalog - newconfd "${FILESDIR}"/metalog.confd metalog - systemd_newunit "${FILESDIR}/${PN}.service-r1" "${PN}.service" -} - -pkg_preinst() { - if [[ -d "${ROOT}"/etc/metalog ]] && [[ ! -e "${ROOT}"/etc/metalog.conf ]] ; then - mv -f "${ROOT}"/etc/metalog/metalog.conf "${ROOT}"/etc/metalog.conf - rmdir "${ROOT}"/etc/metalog - export MOVED_METALOG_CONF=true - else - export MOVED_METALOG_CONF=false - fi -} - -pkg_postinst() { - if ${MOVED_METALOG_CONF} ; then - ewarn "The default metalog.conf file has been moved" - ewarn "from /etc/metalog/metalog.conf to just" - ewarn "/etc/metalog.conf. If you had a standard" - ewarn "setup, the file has been moved for you." - fi -}