Gentoo Archives: gentoo-dev

From: Thomas Anderson <gentoofan23@g.o>
To: gentoo-dev@l.g.o, flameeyes@g.o
Subject: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in net-irc/quassel: ChangeLog quassel-9999-r1.ebuild quassel-0.2.0_rc1.ebuild quassel-0.2.9999.ebuild
Date: Wed, 02 Jul 2008 23:02:59
Message-Id: 20080702231729.GE3560@spoc.mpa.com
1 In-Reply-To: <E1KEBBY-0000DS-J3@××××××××××××.org>
2 > Add missing eutils inherit for the non-git ebuilds as otherwise it seems to be failing.
3 > (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r4 x86_64)
4 >
5 The reason it's failing is because you have things after the 9999. You
6 can do this:
7
8 if [[ ${PV} == *9999* ]]; then
9 inherit git
10
11 instead of:
12 > if [[ ${PV} == *9999 ]]; then
13 > inherit git
14
15 Doing it my way doesn't fail for, say, 9999-r1
16
17 Regards,
18 Thomas

Replies