Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/hwids: hwids-99999999.ebuild
Date: Sun, 02 Dec 2012 08:13:36
Message-Id: 20121202081324.117672171D@flycatcher.gentoo.org
1 ssuominen 12/12/02 08:13:24
2
3 Modified: hwids-99999999.ebuild
4 Log:
5 99999999 is error prone, use WORKDIR instead of DISTDIR...
6
7 (Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
8
9 Revision Changes Path
10 1.6 sys-apps/hwids/hwids-99999999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild?r1=1.5&r2=1.6
15
16 Index: hwids-99999999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- hwids-99999999.ebuild 2 Dec 2012 07:21:00 -0000 1.5
23 +++ hwids-99999999.ebuild 2 Dec 2012 08:13:23 -0000 1.6
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild,v 1.5 2012/12/02 07:21:00 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild,v 1.6 2012/12/02 08:13:23 ssuominen Exp $
29
30 EAPI=5
31 inherit udev
32 @@ -30,7 +30,7 @@
33
34 if use udev; then
35 wget http://cgit.freedesktop.org/systemd/systemd/plain/hwdb/ids-update.pl -O ids-update-${PV}.pl || die
36 - perl "${DISTDIR}"/ids-update-${PV}.pl &>/dev/null || die
37 + perl ids-update-${PV}.pl &>/dev/null || die
38 fi
39 }