From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EA5BD138E20 for ; Thu, 20 Feb 2014 05:49:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E16B9E0B47; Thu, 20 Feb 2014 05:49:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5EF05E0B47 for ; Thu, 20 Feb 2014 05:49:35 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C18A33FB8D for ; Thu, 20 Feb 2014 05:49:34 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2304) id 5CE3B2004C; Thu, 20 Feb 2014 05:49:33 +0000 (UTC) From: "Mike Gilbert (floppym)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, floppym@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/gentoo-systemd-integration: gentoo-systemd-integration-4.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: gentoo-systemd-integration-4.ebuild ChangeLog X-VCS-Directories: sys-apps/gentoo-systemd-integration X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140220054933.5CE3B2004C@flycatcher.gentoo.org> Date: Thu, 20 Feb 2014 05:49:33 +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: 673c911c-345b-4886-9b19-ac2c7672a4b0 X-Archives-Hash: fa4fa9075588838fb9a373fc1750fcbc floppym 14/02/20 05:49:33 Modified: ChangeLog Added: gentoo-systemd-integration-4.ebuild Log: Bump to fix race in make install. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4) Revision Changes Path 1.22 sys-apps/gentoo-systemd-integration/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-systemd-integration/ChangeLog?rev=1.22&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-systemd-integration/ChangeLog?rev=1.22&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-systemd-integration/ChangeLog?r1=1.21&r2=1.22 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/gentoo-systemd-integration/ChangeLog,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- ChangeLog 19 Feb 2014 15:05:08 -0000 1.21 +++ ChangeLog 20 Feb 2014 05:49:33 -0000 1.22 @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/gentoo-systemd-integration # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-systemd-integration/ChangeLog,v 1.21 2014/02/19 15:05:08 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-systemd-integration/ChangeLog,v 1.22 2014/02/20 05:49:33 floppym Exp $ + +*gentoo-systemd-integration-4 (20 Feb 2014) + + 20 Feb 2014; Mike Gilbert + +gentoo-systemd-integration-4.ebuild: + Bump to fix race in make install. *gentoo-systemd-integration-3 (19 Feb 2014) 1.1 sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-4.ebuild?rev=1.1&content-type=text/plain Index: gentoo-systemd-integration-4.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-4.ebuild,v 1.1 2014/02/20 05:49:33 floppym Exp $ EAPI=5 inherit autotools-utils systemd DESCRIPTION="systemd integration files for Gentoo" HOMEPAGE="https://bitbucket.org/mgorny/gentoo-systemd-integration" SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" IUSE="" RDEPEND=">=sys-apps/systemd-207" src_configure() { local myeconfargs=( "$(systemd_with_unitdir)" # TODO: solve it better in the eclass --with-systemdsystemgeneratordir="$(systemd_get_utildir)"/system-generators ) autotools-utils_src_configure }