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-99999999.ebuild hwids-20120401.ebuild metadata.xml ChangeLog
Date: Sun, 01 Apr 2012 01:47:02
Message-Id: 20120401014652.B9BFC2004B@flycatcher.gentoo.org
1 flameeyes 12/04/01 01:46:52
2
3 Added: hwids-99999999.ebuild hwids-20120401.ebuild
4 metadata.xml ChangeLog
5 Log:
6 Initial import of a split ebuild for USB/PCI ids.
7
8 (Portage version: 2.2.0_alpha96/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 sys-apps/hwids/hwids-99999999.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild?rev=1.1&content-type=text/plain
15
16 Index: hwids-99999999.ebuild
17 ===================================================================
18 # Copyright 1999-2012 Gentoo Foundation
19 # Distributed under the terms of the GNU General Public License v2
20 # $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild,v 1.1 2012/04/01 01:46:52 flameeyes Exp $
21
22 EAPI="4"
23
24 DESCRIPTION="Hardware (PCI, USB) IDs databases"
25 HOMEPAGE="http://git.overlays.gentoo.org/gitweb/?p=proj/hwids.git;a=summary"
26
27 LICENSE="|| ( GPL-2 BSD )"
28 SLOT="0"
29 KEYWORDS=""
30 IUSE=""
31
32 S="${WORKDIR}"
33
34 DEPEND="net-misc/wget"
35 RDEPEND="!<sys-apps/pciutils-3.1.9-r2
36 !<sys-apps/usbutils-005-r1"
37
38 src_compile() {
39 wget http://pci-ids.ucw.cz/v2.2/pci.ids.gz http://www.linux-usb.org/usb.ids.gz || die
40
41 for file in {usb,pci}.ids; do
42 zcat ${file}.gz > ${file} || die
43 done
44 }
45
46 src_install() {
47 insinto /usr/share/misc
48 doins {usb,pci}.ids{,.gz}
49 }
50
51
52
53 1.1 sys-apps/hwids/hwids-20120401.ebuild
54
55 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-20120401.ebuild?rev=1.1&view=markup
56 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-20120401.ebuild?rev=1.1&content-type=text/plain
57
58 Index: hwids-20120401.ebuild
59 ===================================================================
60 # Copyright 1999-2012 Gentoo Foundation
61 # Distributed under the terms of the GNU General Public License v2
62 # $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20120401.ebuild,v 1.1 2012/04/01 01:46:52 flameeyes Exp $
63
64 EAPI="4"
65
66 DESCRIPTION="Hardware (PCI, USB) IDs databases"
67 HOMEPAGE="http://git.overlays.gentoo.org/gitweb/?p=proj/hwids.git;a=summary"
68 SRC_URI="http://dev.gentoo.org/~flameeyes/hwids/${P}.tar.xz"
69
70 LICENSE="|| ( GPL-2 BSD )"
71 SLOT="0"
72 KEYWORDS="~amd64"
73 IUSE=""
74
75 S="${WORKDIR}"
76
77 DEPEND=""
78 RDEPEND="!<sys-apps/pciutils-3.1.9-r2
79 !<sys-apps/usbutils-005-r1"
80
81 src_compile() {
82 for file in {usb,pci}.ids; do
83 gzip -c ${file} > ${file}.gz || die
84 done
85 }
86
87 src_install() {
88 insinto /usr/share/misc
89 doins {usb,pci}.ids{,.gz}
90 }
91
92
93
94 1.1 sys-apps/hwids/metadata.xml
95
96 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/metadata.xml?rev=1.1&view=markup
97 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/metadata.xml?rev=1.1&content-type=text/plain
98
99 Index: metadata.xml
100 ===================================================================
101 <?xml version="1.0" encoding="UTF-8"?>
102 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
103 <pkgmetadata>
104 <herd>base-system</herd>
105 <maintainer>
106 <email>flameeyes@g.o</email>
107 </maintainer>
108 <maintainer>
109 <email>gregkh@g.o</email>
110 </maintainer>
111 </pkgmetadata>
112
113
114
115 1.1 sys-apps/hwids/ChangeLog
116
117 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/ChangeLog?rev=1.1&view=markup
118 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/ChangeLog?rev=1.1&content-type=text/plain
119
120 Index: ChangeLog
121 ===================================================================
122 # ChangeLog for sys-apps/hwids
123 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
124 # $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.1 2012/04/01 01:46:52 flameeyes Exp $
125
126 *hwids-99999999 (01 Apr 2012)
127 *hwids-20120401 (01 Apr 2012)
128
129 01 Apr 2012; Diego E. Pettenò <flameeyes@g.o> +hwids-20120401.ebuild,
130 +hwids-99999999.ebuild, +metadata.xml:
131 Initial import of a split ebuild for USB/PCI ids.