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 19BEC139694 for ; Mon, 15 May 2017 21:28:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45E93E0CCC; Mon, 15 May 2017 21:28:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 20166E0CCC for ; Mon, 15 May 2017 21:28:01 +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 0E5CE341698 for ; Mon, 15 May 2017 21:28:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75FAD7454 for ; Mon, 15 May 2017 21:27:58 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1494883670.e2ea4ff4c29f2c25e14e34327be37bb04e0d2325.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/fifo-cronolog/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/fifo-cronolog/fifo-cronolog-1.1.1-r1.ebuild X-VCS-Directories: app-admin/fifo-cronolog/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: e2ea4ff4c29f2c25e14e34327be37bb04e0d2325 X-VCS-Branch: master Date: Mon, 15 May 2017 21:27:58 +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: d33b928a-e522-4a31-bfd7-14fd6c28925c X-Archives-Hash: 99bb07f9ab5d7eca63d5ef69760ff47b commit: e2ea4ff4c29f2c25e14e34327be37bb04e0d2325 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon May 15 21:27:31 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Mon May 15 21:27:50 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2ea4ff4 app-admin/fifo-cronolog: EAPI bump, acked by robbat2 Package-Manager: Portage-2.3.5, Repoman-2.3.2 .../fifo-cronolog/fifo-cronolog-1.1.1-r1.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/app-admin/fifo-cronolog/fifo-cronolog-1.1.1-r1.ebuild b/app-admin/fifo-cronolog/fifo-cronolog-1.1.1-r1.ebuild new file mode 100644 index 00000000000..93447d0b0ef --- /dev/null +++ b/app-admin/fifo-cronolog/fifo-cronolog-1.1.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="cronolog wrapper for use with dumb daemons like squid, varnish and so on" +HOMEPAGE="https://cgit.gentoo.org/proj/fifo-cronolog.git" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="BSD-2 GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="app-admin/cronolog" + +src_install() { + dosbin fifo-cronolog + + newinitd fifo-cronolog.initd fifo-cronolog + newconfd fifo-cronolog.confd fifo-cronolog + + dosym fifo-cronolog /usr/sbin/squid-cronolog +} + +pkg_postinst() { + elog "Warning: app-admin/squid-cronolog has been renamed to app-admin/fifo-cronolog." + elog "This also applies to the binary 'squid-cronolog' but there is a symlink for now" + elog "Please fix your scripts/configs." +}