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 F008B13877A for ; Tue, 1 Jul 2014 16:42:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64D0FE0887; Tue, 1 Jul 2014 16:42:00 +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 F1F87E0887 for ; Tue, 1 Jul 2014 16:41:59 +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 1CDA434045B for ; Tue, 1 Jul 2014 16:41:59 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2262) id 625DD2004E; Tue, 1 Jul 2014 16:41:57 +0000 (UTC) From: "Pacho Ramos (pacho)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, pacho@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-fs/nfs-utils: nfs-utils-1.3.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: nfs-utils-1.3.0.ebuild ChangeLog X-VCS-Directories: net-fs/nfs-utils X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140701164157.625DD2004E@flycatcher.gentoo.org> Date: Tue, 1 Jul 2014 16:41:57 +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: 1abbea9a-5663-4331-a79e-497654ffb196 X-Archives-Hash: 6888eb34d1f74aaac3ef6e4950f58d0f pacho 14/07/01 16:41:57 Modified: nfs-utils-1.3.0.ebuild ChangeLog Log: Add a warning too, bug #514372 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4) Revision Changes Path 1.3 net-fs/nfs-utils/nfs-utils-1.3.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild?r1=1.2&r2=1.3 Index: nfs-utils-1.3.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- nfs-utils-1.3.0.ebuild 24 Jun 2014 22:54:16 -0000 1.2 +++ nfs-utils-1.3.0.ebuild 1 Jul 2014 16:41:57 -0000 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild,v 1.2 2014/06/24 22:54:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.0.ebuild,v 1.3 2014/07/01 16:41:57 pacho Exp $ EAPI="4" @@ -153,4 +153,13 @@ einfo "Copying default ${f##*/} from ${EPREFIX}/usr/$(get_libdir)/nfs to ${EPREFIX}/var/lib/nfs" cp -pPR "${f}" "${EROOT}"/var/lib/nfs/ done + + if systemd_is_booted; then + if [[ ${REPLACING_VERSIONS} < 1.3.0 ]]; then + ewarn "We have switched to upstream systemd unit files. Since" + ewarn "they got renamed, you should probably enable the new ones." + ewarn "You can run 'equery files nfs-utils | grep systemd'" + ewarn "to know what services you need to enable now." + fi + fi } 1.251 net-fs/nfs-utils/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/ChangeLog?rev=1.251&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/ChangeLog?rev=1.251&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/nfs-utils/ChangeLog?r1=1.250&r2=1.251 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v retrieving revision 1.250 retrieving revision 1.251 diff -u -r1.250 -r1.251 --- ChangeLog 28 Jun 2014 08:17:11 -0000 1.250 +++ ChangeLog 1 Jul 2014 16:41:57 -0000 1.251 @@ -1,6 +1,9 @@ # ChangeLog for net-fs/nfs-utils # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.250 2014/06/28 08:17:11 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.251 2014/07/01 16:41:57 pacho Exp $ + + 01 Jul 2014; Pacho Ramos nfs-utils-1.3.0.ebuild: + Add a warning too, bug #514372 28 Jun 2014; Sergey Popov nfs-utils-1.2.9-r3.ebuild: amd64/arm/x86 stable, wrt bug #504714