Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/pciutils: metadata.xml pciutils-3.2.1.ebuild ChangeLog
Date: Tue, 31 Dec 2013 19:20:53
Message-Id: 20131231192049.E64692004C@flycatcher.gentoo.org
1 vapier 13/12/31 19:20:49
2
3 Modified: metadata.xml pciutils-3.2.1.ebuild ChangeLog
4 Log:
5 Add USE=dns by David Hendricks to control uncommon dns behavior #496336.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
8
9 Revision Changes Path
10 1.8 sys-apps/pciutils/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/metadata.xml?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/metadata.xml?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/metadata.xml?r1=1.7&r2=1.8
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pciutils/metadata.xml,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- metadata.xml 5 Sep 2013 14:26:45 -0000 1.7
23 +++ metadata.xml 31 Dec 2013 19:20:49 -0000 1.8
24 @@ -3,6 +3,7 @@
25 <pkgmetadata>
26 <herd>base-system</herd>
27 <use>
28 + <flag name='dns'>Enable support for querying the central database of PCI IDs using DNS</flag>
29 <flag name='kmod'>Enable <pkg>sys-apps/kmod</pkg> support for the -k switch in lspci command</flag>
30 <flag name='zlib'>Support compressed pci.ids database</flag>
31 </use>
32
33
34
35 1.2 sys-apps/pciutils/pciutils-3.2.1.ebuild
36
37 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/pciutils-3.2.1.ebuild?rev=1.2&view=markup
38 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/pciutils-3.2.1.ebuild?rev=1.2&content-type=text/plain
39 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/pciutils-3.2.1.ebuild?r1=1.1&r2=1.2
40
41 Index: pciutils-3.2.1.ebuild
42 ===================================================================
43 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-3.2.1.ebuild,v
44 retrieving revision 1.1
45 retrieving revision 1.2
46 diff -u -r1.1 -r1.2
47 --- pciutils-3.2.1.ebuild 18 Nov 2013 10:36:28 -0000 1.1
48 +++ pciutils-3.2.1.ebuild 31 Dec 2013 19:20:49 -0000 1.2
49 @@ -1,6 +1,6 @@
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-3.2.1.ebuild,v 1.1 2013/11/18 10:36:28 polynomial-c Exp $
53 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-3.2.1.ebuild,v 1.2 2013/12/31 19:20:49 vapier Exp $
54
55 EAPI="5"
56
57 @@ -13,7 +13,7 @@
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux"
61 -IUSE="+kmod static-libs zlib"
62 +IUSE="dns +kmod static-libs zlib"
63
64 # Have the sub-libs in RDEPEND with [static-libs] since, logically,
65 # our libssl.a depends on libz.a/etc... at runtime.
66 @@ -39,7 +39,7 @@
67 HOST="${CHOST}" \
68 CROSS_COMPILE="${CHOST}-" \
69 CC="$(tc-getCC)" \
70 - DNS="yes" \
71 + DNS=$(usex dns) \
72 IDSDIR='$(SHAREDIR)/misc' \
73 MANDIR='$(SHAREDIR)/man' \
74 PREFIX="${EPREFIX}/usr" \
75 @@ -49,7 +49,7 @@
76 PCI_COMPRESSED_IDS=0 \
77 PCI_IDS=pci.ids \
78 LIBDIR="\${PREFIX}/$(get_libdir)" \
79 - LIBKMOD="$(usex kmod)" \
80 + LIBKMOD=$(usex kmod) \
81 "$@"
82 }
83
84
85
86
87 1.231 sys-apps/pciutils/ChangeLog
88
89 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/ChangeLog?rev=1.231&view=markup
90 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/ChangeLog?rev=1.231&content-type=text/plain
91 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pciutils/ChangeLog?r1=1.230&r2=1.231
92
93 Index: ChangeLog
94 ===================================================================
95 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pciutils/ChangeLog,v
96 retrieving revision 1.230
97 retrieving revision 1.231
98 diff -u -r1.230 -r1.231
99 --- ChangeLog 18 Nov 2013 10:36:28 -0000 1.230
100 +++ ChangeLog 31 Dec 2013 19:20:49 -0000 1.231
101 @@ -1,6 +1,10 @@
102 # ChangeLog for sys-apps/pciutils
103 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
104 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/ChangeLog,v 1.230 2013/11/18 10:36:28 polynomial-c Exp $
105 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/ChangeLog,v 1.231 2013/12/31 19:20:49 vapier Exp $
106 +
107 + 31 Dec 2013; Mike Frysinger <vapier@g.o> metadata.xml,
108 + pciutils-3.2.1.ebuild:
109 + Add USE=dns by David Hendricks to control uncommon dns behavior #496336.
110
111 *pciutils-3.2.1 (18 Nov 2013)