Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/hwids: hwids-20120408.ebuild ChangeLog hwids-20120401.ebuild
Date: Sun, 08 Apr 2012 19:08:30
Message-Id: 20120408190816.C43112004B@flycatcher.gentoo.org
1 flameeyes 12/04/08 19:08:16
2
3 Modified: ChangeLog
4 Added: hwids-20120408.ebuild
5 Removed: hwids-20120401.ebuild
6 Log:
7 Version bump of hwids (weekly snapshot); install README.
8
9 (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.4 sys-apps/hwids/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 2 Apr 2012 03:59:20 -0000 1.3
25 +++ ChangeLog 8 Apr 2012 19:08:16 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-apps/hwids
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.3 2012/04/02 03:59:20 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.4 2012/04/08 19:08:16 flameeyes Exp $
31 +
32 +*hwids-20120408 (08 Apr 2012)
33 +
34 + 08 Apr 2012; Diego E. Pettenò <flameeyes@g.o> +hwids-20120408.ebuild,
35 + -hwids-20120401.ebuild:
36 + Version bump of hwids (weekly snapshot); install README.
37
38 02 Apr 2012; Jeroen Roovers <jer@g.o> hwids-20120401.ebuild:
39 Marked ~hppa (bug #410401).
40
41
42
43 1.1 sys-apps/hwids/hwids-20120408.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-20120408.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-20120408.ebuild?rev=1.1&content-type=text/plain
47
48 Index: hwids-20120408.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20120408.ebuild,v 1.1 2012/04/08 19:08:16 flameeyes Exp $
53
54 EAPI="4"
55
56 DESCRIPTION="Hardware (PCI, USB) IDs databases"
57 HOMEPAGE="http://git.overlays.gentoo.org/gitweb/?p=proj/hwids.git;a=summary"
58 SRC_URI="http://dev.gentoo.org/~flameeyes/hwids/${P}.tar.xz"
59
60 LICENSE="|| ( GPL-2 BSD )"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~x86-fbsd"
63 IUSE=""
64
65 DEPEND=""
66 RDEPEND="!<sys-apps/pciutils-3.1.9-r2
67 !<sys-apps/usbutils-005-r1"
68
69 src_compile() {
70 for file in {usb,pci}.ids; do
71 gzip -c ${file} > ${file}.gz || die
72 done
73 }
74
75 src_install() {
76 insinto /usr/share/misc
77 doins {usb,pci}.ids{,.gz}
78
79 dodoc README
80 }