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