Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/crossdev:master commit in: /
Date: Wed, 30 May 2012 15:28:33
Message-Id: 1332532350.62dcd6be0369a51298f78257c9d72cb66071d1a5.vapier@gentoo
1 commit: 62dcd6be0369a51298f78257c9d72cb66071d1a5
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 23 19:52:30 2012 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 23 19:52:30 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=62dcd6be
7
8 crossdev: drop insight support
9
10 Hasn't been an insight update in a while, so punt it. Doubt anyone
11 really uses it, and if they do, it's trivial to set up themselves.
12
13 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
14
15 ---
16 crossdev | 8 --------
17 1 files changed, 0 insertions(+), 8 deletions(-)
18
19 diff --git a/crossdev b/crossdev
20 index 08d2c7d..bd2f505 100755
21 --- a/crossdev
22 +++ b/crossdev
23 @@ -83,7 +83,6 @@ Extra Fun (must be run after above stages):
24 ${GOOD}--ex-only${NORMAL} Skip the stage steps above
25 ${GOOD}--ex-gcc${NORMAL} Build extra gcc targets (gcj/ada/etc...)
26 ${GOOD}--ex-gdb${NORMAL} Build a cross gdb
27 - ${GOOD}--ex-insight${NORMAL} Build a cross insight
28
29 ${BRACKET}Target (-t)${NORMAL} takes a tuple ${BRACKET}ARCH-VENDOR-OS-LIBC${NORMAL}; see 'crossdev -t help'
30 EOF
31 @@ -415,7 +414,6 @@ with_headers() { [[ ${WITH_HEADERS} == "yes" ]] ; }
32 ex_fast() { [[ ${EX_FAST} == "yes" ]] ; }
33 ex_gcc() { [[ ${EX_GCC} == "yes" ]] ; }
34 ex_gdb() { [[ ${EX_GDB} == "yes" ]] ; }
35 -ex_insight() { [[ ${EX_INSIGHT} == "yes" ]] ; }
36
37 hr() {
38 local c=${COLUMNS:-0}
39 @@ -509,7 +507,6 @@ while [[ $# -gt 0 ]] ; do
40 --ex-only) EX_FAST="yes";;
41 --ex-gcc) EX_GCC="yes";;
42 --ex-gdb) EX_GDB="yes";;
43 - --ex-insight) EX_INSIGHT="yes";;
44 --with-*) eval $(set_withval $1);;
45 --without-*) eval $(set_withval $1);;
46 -f|--force) FORCE="yes";;
47 @@ -686,9 +683,6 @@ einfo "Extra: gcc pass: DO IT"
48 ex_gdb && {
49 einfo "Extra: gdb: DO IT"
50 }
51 -ex_insight && {
52 -einfo "Extra: insight: DO IT"
53 -}
54 echo
55 einfo "CROSSDEV_OVERLAY: ${CROSSDEV_OVERLAY}"
56 einfo "PORT_LOGDIR: ${PORT_LOGDIR}"
57 @@ -918,7 +912,6 @@ set_portage ${GCAT} ${GPKG} ${GVER} "${GENV}" "${GOVL}"
58 set_portage ${KCAT} ${KPKG} ${KVER} "${KENV}" "${KOVL}"
59 set_portage ${LCAT} ${LPKG} ${LVER} "${LENV}" "${LOVL}"
60 set_portage ${DCAT} ${DPKG} ${DVER} "${DENV}" "${DOVL}"
61 -set_portage dev-util insight
62 set_metadata
63
64 # filter out revdep rebuild stuff #182601
65 @@ -1079,6 +1072,5 @@ fi
66 EOPTS="${EOPTS_UP} --newuse"
67 ex_gcc && USE="${GUSE} ${USE}" doemerge ${GPKG} ${GPKG}-extra
68 ex_gdb && USE="${DUSE} ${USE}" doemerge ${DPKG}
69 -ex_insight && doemerge insight
70
71 exit 0