From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1032313-garchives=archives.gentoo.org@lists.gentoo.org> 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 D6A07138334 for <garchives@archives.gentoo.org>; Sun, 24 Jun 2018 17:36:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8B8DE087A; Sun, 24 Jun 2018 17:36:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 BF3D0E087A for <gentoo-commits@lists.gentoo.org>; Sun, 24 Jun 2018 17:36:34 +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 26CFF335C63 for <gentoo-commits@lists.gentoo.org>; Sun, 24 Jun 2018 17:36:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 734F42C8 for <gentoo-commits@lists.gentoo.org>; Sun, 24 Jun 2018 17:36:31 +0000 (UTC) From: "Anthony G. Basile" <blueness@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" <blueness@gentoo.org> Message-ID: <1529861786.8cb75eb073694925dbcc2c5c5846a880806a9951.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/cronie/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/cronie/cronie-1.5.2.ebuild X-VCS-Directories: sys-process/cronie/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 8cb75eb073694925dbcc2c5c5846a880806a9951 X-VCS-Branch: master Date: Sun, 24 Jun 2018 17:36:31 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2c8eba96-46fc-4b71-8a70-71cb8c7432f0 X-Archives-Hash: 9eaab93761951f9389de94e5673d87c3 commit: 8cb75eb073694925dbcc2c5c5846a880806a9951 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org> AuthorDate: Sun Jun 24 17:36:08 2018 +0000 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org> CommitDate: Sun Jun 24 17:36:26 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cb75eb0 sys-process/cronie: fix bug #658846 Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-process/cronie/cronie-1.5.2.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/sys-process/cronie/cronie-1.5.2.ebuild b/sys-process/cronie/cronie-1.5.2.ebuild index f9c9fbc31a1..04f7c7876b1 100644 --- a/sys-process/cronie/cronie-1.5.2.ebuild +++ b/sys-process/cronie/cronie-1.5.2.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools cron pam systemd user +inherit autotools cron flag-o-matic pam systemd user DESCRIPTION="Cronie is a standard UNIX daemon cron based on the original vixie-cron" HOMEPAGE="https://github.com/cronie-crond/cronie" @@ -14,7 +14,9 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~s IUSE="+anacron +inotify pam selinux" DEPEND="pam? ( virtual/pam ) - anacron? ( !sys-process/anacron )" + anacron? ( !sys-process/anacron + elibc_musl? ( sys-libs/obstack-standalone ) + )" RDEPEND="${DEPEND} sys-apps/debianutils" @@ -46,6 +48,10 @@ src_configure() { --with-daemon_username=cron --with-daemon_groupname=cron ) + + if use anacron; then + use elibc_musl && append-cflags "-lobstack" + fi SPOOL_DIR="/var/spool/cron/crontabs" \ ANACRON_SPOOL_DIR="/var/spool/anacron" \ econf "${myeconfargs[@]}"