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-20120929.ebuild ChangeLog hwids-20120926.ebuild
Date: Sun, 30 Sep 2012 01:41:20
Message-Id: 20120930014100.3F96121600@flycatcher.gentoo.org
1 flameeyes 12/09/30 01:41:00
2
3 Modified: ChangeLog
4 Added: hwids-20120929.ebuild
5 Removed: hwids-20120926.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.24 sys-apps/hwids/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 27 Sep 2012 18:41:38 -0000 1.23
25 +++ ChangeLog 30 Sep 2012 01:41:00 -0000 1.24
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.23 2012/09/27 18:41:38 flameeyes Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.24 2012/09/30 01:41:00 flameeyes Exp $
31 +
32 +*hwids-20120929 (30 Sep 2012)
33 +
34 + 30 Sep 2012; Diego E. Pettenò <flameeyes@g.o> +hwids-20120929.ebuild,
35 + -hwids-20120926.ebuild:
36 + Version bump.
37
38 *hwids-20120926 (27 Sep 2012)
39
40
41
42
43 1.1 sys-apps/hwids/hwids-20120929.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-20120929.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-20120929.ebuild?rev=1.1&content-type=text/plain
47
48 Index: hwids-20120929.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-20120929.ebuild,v 1.1 2012/09/30 01:41:00 flameeyes Exp $
53
54 EAPI="4"
55
56 DESCRIPTION="Hardware (PCI, USB) IDs databases"
57 HOMEPAGE="https://github.com/gentoo/hwids"
58 SRC_URI="https://github.com/gentoo/hwids/tarball/${P} -> ${P}.tar.gz"
59
60 LICENSE="|| ( GPL-2 BSD )"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
63 IUSE=""
64
65 DEPEND=""
66 RDEPEND="!<sys-apps/pciutils-3.1.9-r2
67 !<sys-apps/usbutils-005-r1"
68
69 S="${WORKDIR}"
70
71 src_compile() {
72 cd "${S}"/gentoo-hwids-*
73
74 for file in {usb,pci}.ids; do
75 gzip -c ${file} > ${file}.gz || die
76 done
77 }
78
79 src_install() {
80 cd "${S}"/gentoo-hwids-*
81
82 insinto /usr/share/misc
83 doins {usb,pci}.ids{,.gz}
84
85 dodoc README.md
86 }