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