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