Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in profiles/default/bsd: ChangeLog profile.bashrc
Date: Sun, 25 Jan 2009 16:20:39
Message-Id: E1LR7iu-00046v-Gd@stork.gentoo.org
1 aballier 09/01/25 16:20:36
2
3 Modified: ChangeLog profile.bashrc
4 Log:
5 Add a profile.bashrc test for test == construction that does not work on BSD in order to get automatic warnings for things like bug #256305
6
7 Revision Changes Path
8 1.13 profiles/default/bsd/ChangeLog
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/ChangeLog?rev=1.13&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/ChangeLog?rev=1.13&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/ChangeLog?r1=1.12&r2=1.13
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/ChangeLog,v
17 retrieving revision 1.12
18 retrieving revision 1.13
19 diff -u -r1.12 -r1.13
20 --- ChangeLog 24 Jan 2009 21:58:18 -0000 1.12
21 +++ ChangeLog 25 Jan 2009 16:20:36 -0000 1.13
22 @@ -1,6 +1,10 @@
23 # ChangeLog for profile directory
24 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/ChangeLog,v 1.12 2009/01/24 21:58:18 the_paya Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/ChangeLog,v 1.13 2009/01/25 16:20:36 aballier Exp $
27 +
28 + 25 Jan 2009; Alexis Ballier <aballier@g.o> profile.bashrc:
29 + Add a profile.bashrc test for test == construction that does not work on
30 + BSD in order to get automatic warnings for things like bug #256305
31
32 24 Jan 2009; Javier Villavicencio <the_paya@g.o>
33 fbsd/profile.bashrc:
34
35
36
37 1.2 profiles/default/bsd/profile.bashrc
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/profile.bashrc?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/profile.bashrc?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/profile.bashrc?r1=1.1&r2=1.2
42
43 Index: profile.bashrc
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/profile.bashrc,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- profile.bashrc 19 Jan 2009 22:15:17 -0000 1.1
50 +++ profile.bashrc 25 Jan 2009 16:20:36 -0000 1.2
51 @@ -5,4 +5,10 @@
52 eerror "http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%20BSD"
53 die "Broken openat.c gnulib unit."
54 fi
55 + if grep -q "test .*==" "${S}" -r --include configure; then
56 + eerror "Found a non POSIX test construction in a configure script"
57 + eerror "The configure checks of this package may not function properly"
58 + eerror "Please report this on Gentoo Bugzilla in Gentoo BSD product."
59 + eerror "http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%20BSD"
60 + fi
61 fi