Gentoo Archives: gentoo-commits

From: "Jurek Bartuszek (jurek)" <jurek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/monodevelop/files: monodevelop-exuberant-ctags.patch monodevelop-0.18.1-configure.patch digest-monodevelop-0.18.1 monodevelop-0.12-fixes.diff digest-monodevelop-0.18 monodevelop-0.14-aspnet-template-fix.patch digest-monodevelop-0.12 digest-monodevelop-0.10 digest-monodevelop-0.14 monodevelop-0.14-configure.patch
Date: Mon, 31 Dec 2007 03:29:45
Message-Id: E1J9BLN-0000n8-41@stork.gentoo.org
1 jurek 07/12/31 03:29:37
2
3 Added: monodevelop-exuberant-ctags.patch
4 monodevelop-0.18.1-configure.patch
5 digest-monodevelop-0.18.1
6 Removed: monodevelop-0.12-fixes.diff digest-monodevelop-0.18
7 monodevelop-0.14-aspnet-template-fix.patch
8 digest-monodevelop-0.12 digest-monodevelop-0.10
9 digest-monodevelop-0.14
10 monodevelop-0.14-configure.patch
11 Log:
12 dev-util/monodevelop: version bump (0.18.1), removed old versions
13 (Portage version: 2.1.3.19)
14
15 Revision Changes Path
16 1.1 dev-util/monodevelop/files/monodevelop-exuberant-ctags.patch
17
18 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop/files/monodevelop-exuberant-ctags.patch?rev=1.1&view=markup
19 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop/files/monodevelop-exuberant-ctags.patch?rev=1.1&content-type=text/plain
20
21 Index: monodevelop-exuberant-ctags.patch
22 ===================================================================
23 --- src/addins/CBinding/Navigation/ProjectNodeBuilderExtension.cs 2007-12-20 20:05:02.000000000 +0100
24 +++ src/addins/CBinding/Navigation/ProjectNodeBuilderExtension.cs.new 2007-12-27 23:27:41.000000000 +0100
25 @@ -96,7 +96,7 @@
26 check_ctags = true;
27
28 try {
29 - ProcessWrapper p = Runtime.ProcessService.StartProcess ("ctags", "--version", null, null);
30 + ProcessWrapper p = Runtime.ProcessService.StartProcess ("exuberant-ctags", "--version", null, null);
31 p.WaitForOutput ();
32 have_ctags = true;
33 } catch {
34 --- src/addins/CBinding/Parser/TagDatabaseManager.cs 2007-12-27 23:27:54.000000000 +0100
35 +++ src/addins/CBinding/Parser/TagDatabaseManager.cs.new 2007-12-27 23:28:27.000000000 +0100
36 @@ -84,7 +84,7 @@
37 args.AppendFormat (" {0}", file.Name);
38
39 try {
40 - ProcessWrapper p = Runtime.ProcessService.StartProcess ("ctags", args.ToString (), tagsDir, null);
41 + ProcessWrapper p = Runtime.ProcessService.StartProcess ("exuberant-ctags", args.ToString (), tagsDir, null);
42 p.WaitForExit ();
43 } catch (Exception ex) {
44 throw new IOException ("Could not create tags database (You must have exuberant ctags installed).", ex);
45 @@ -177,7 +177,7 @@
46 ProcessWrapper p;
47
48 try {
49 - p = Runtime.ProcessService.StartProcess ("ctags", ctags_options, null, null);
50 + p = Runtime.ProcessService.StartProcess ("exuberant-ctags", ctags_options, null, null);
51 p.WaitForExit ();
52 } catch (Exception ex) {
53 throw new IOException ("Could not create tags database (You must have exuberant ctags installed).", ex);
54 @@ -247,7 +247,7 @@
55 ProcessWrapper p;
56
57 try {
58 - p = Runtime.ProcessService.StartProcess ("ctags", ctags_options, null, null);
59 + p = Runtime.ProcessService.StartProcess ("exuberant-ctags", ctags_options, null, null);
60 p.WaitForExit (10000); //If no return detected in 10s, kill anyway
61 } catch (Exception ex) {
62 throw new IOException ("Could not create tags database (You must have exuberant ctags installed).", ex);
63
64
65
66 1.1 dev-util/monodevelop/files/monodevelop-0.18.1-configure.patch
67
68 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop/files/monodevelop-0.18.1-configure.patch?rev=1.1&view=markup
69 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop/files/monodevelop-0.18.1-configure.patch?rev=1.1&content-type=text/plain
70
71 Index: monodevelop-0.18.1-configure.patch
72 ===================================================================
73 --- configure.in 2007-12-18 20:11:34.000000000 +0100
74 +++ configure.in.new 2007-12-20 11:08:29.000000000 +0100
75 @@ -29,9 +29,6 @@
76
77 if test "x$enable_update_mimedb" = "xyes"; then
78 AC_PATH_PROG(UPDATE_MIME_DB, update-mime-database, no)
79 - if test "x$UPDATE_MIME_DB" = "xno"; then
80 - AC_MSG_ERROR([You need to install update-mime-database])
81 - fi
82 fi
83 AC_SUBST(UPDATE_MIME_DB)
84
85 @@ -43,9 +40,6 @@
86
87 if test "x$enable_update_desktopdb" = "xyes"; then
88 AC_PATH_PROG(UPDATE_DESKTOP_DB, update-desktop-database, no)
89 - if test "x$UPDATE_DESKTOP_DB" = "xno"; then
90 - AC_MSG_ERROR([You need to install update-desktop-database])
91 - fi
92 fi
93 AC_SUBST(UPDATE_DESKTOP_DB)
94
95 @@ -245,8 +239,9 @@
96
97 mozilla_script=$(which mozilla 2> /dev/null)
98 firefox_script=$(which firefox 2> /dev/null)
99 + seamonkey_script=$(which seamonkey 2> /dev/null)
100
101 - for runtime_script in "$firefox_script $mozilla_script"; do
102 + for runtime_script in "$firefox_script $mozilla_script $seamonkey_script"; do
103 MOZDIR=$(grep "MOZ_DIST_LIB=" $runtime_script 2> /dev/null | cut -d '"' -f 2 | cut -d '=' -f 2)
104 if test -e "$MOZDIR/$MOZFILE"; then echo $MOZDIR; return; fi
105 MOZDIR=$(grep "MOZILLA_FIVE_HOME=" $runtime_script 2> /dev/null | cut -d '"' -f 2 | cut -d '=' -f 2)
106
107
108
109 1.1 dev-util/monodevelop/files/digest-monodevelop-0.18.1
110
111 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop/files/digest-monodevelop-0.18.1?rev=1.1&view=markup
112 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop/files/digest-monodevelop-0.18.1?rev=1.1&content-type=text/plain
113
114 Index: digest-monodevelop-0.18.1
115 ===================================================================
116 MD5 3d3c9c717e2fb809c7880a8a9efd8178 monodevelop-0.18.1.tar.bz2 3013149
117 RMD160 8084819e0bfb73d637e7fa150c575fe5ff83c881 monodevelop-0.18.1.tar.bz2 3013149
118 SHA256 4129749da06d84d2f3f37fffa5a9107398e211b013752c6c4753397915df277d monodevelop-0.18.1.tar.bz2 3013149
119
120
121
122 --
123 gentoo-commits@g.o mailing list