Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/pciutils: ChangeLog pciutils-3.1.10.ebuild
Date: Thu, 01 Nov 2012 09:57:51
Message-Id: 20121101095733.A889221600@flycatcher.gentoo.org
1 ssuominen 12/11/01 09:57:33
2
3 Modified: ChangeLog pciutils-3.1.10.ebuild
4 Log:
5 Use REPLACING_VERSIONS to hide old information in pkg_postinst() wrt #440534 by "poletti.marco"
6
7 (Portage version: 2.2.0_alpha135/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.210 sys-apps/pciutils/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/ChangeLog?rev=1.210&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/ChangeLog?rev=1.210&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/ChangeLog?r1=1.209&r2=1.210
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pciutils/ChangeLog,v
19 retrieving revision 1.209
20 retrieving revision 1.210
21 diff -u -r1.209 -r1.210
22 --- ChangeLog 2 Oct 2012 12:55:22 -0000 1.209
23 +++ ChangeLog 1 Nov 2012 09:57:33 -0000 1.210
24 @@ -1,6 +1,10 @@
25 # ChangeLog for sys-apps/pciutils
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/ChangeLog,v 1.209 2012/10/02 12:55:22 blueness Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/ChangeLog,v 1.210 2012/11/01 09:57:33 ssuominen Exp $
29 +
30 + 01 Nov 2012; Samuli Suominen <ssuominen@g.o> pciutils-3.1.10.ebuild:
31 + Use REPLACING_VERSIONS to hide old information in pkg_postinst() wrt #440534
32 + by "poletti.marco"
33
34 02 Oct 2012; Anthony G. Basile <blueness@g.o> pciutils-3.1.10.ebuild:
35 stable arm, bug #436186
36
37
38
39 1.4 sys-apps/pciutils/pciutils-3.1.10.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/pciutils-3.1.10.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/pciutils-3.1.10.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/pciutils-3.1.10.ebuild?r1=1.3&r2=1.4
44
45 Index: pciutils-3.1.10.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-3.1.10.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- pciutils-3.1.10.ebuild 2 Oct 2012 12:55:22 -0000 1.3
52 +++ pciutils-3.1.10.ebuild 1 Nov 2012 09:57:33 -0000 1.4
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-3.1.10.ebuild,v 1.3 2012/10/02 12:55:22 blueness Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-3.1.10.ebuild,v 1.4 2012/11/01 09:57:33 ssuominen Exp $
58
59 EAPI="4"
60
61 @@ -75,8 +75,10 @@
62 }
63
64 pkg_postinst() {
65 - elog "The 'pcimodules' program has been replaced by 'lspci -k'"
66 - elog ""
67 - elog "The 'network-cron' USE flag is gone; if you want a more up-to-date"
68 - elog "pci.ids file, you should use sys-apps/hwids-99999999 (live ebuild)."
69 + if [[ ${REPLACING_VERSIONS} ]] && [[ ${REPLACING_VERSIONS} < 3.1.10 ]]; then
70 + elog "The 'pcimodules' program has been replaced by 'lspci -k'"
71 + elog ""
72 + elog "The 'network-cron' USE flag is gone; if you want a more up-to-date"
73 + elog "pci.ids file, you should use sys-apps/hwids-99999999 (live ebuild)."
74 + fi
75 }