Mailinglist Archive: opensuse-commit (1023 mails)
| < Previous | Next > |
commit monodevelop for openSUSE:Factory
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Fri, 05 Nov 2010 15:07:18 +0100
- Message-id: <20101105140718.1D3CC202AE@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package monodevelop for openSUSE:Factory
checked in at Fri Nov 5 15:07:18 CET 2010.
--------
--- monodevelop/monodevelop.changes 2010-03-16 18:13:59.000000000 +0100
+++ monodevelop/monodevelop.changes 2010-10-29 19:11:44.000000000 +0200
@@ -1,0 +2,6 @@
+Fri Oct 29 17:08:52 UTC 2010 - ajorgensen@xxxxxxxxxx
+
+- Update to 2.4
+ * http://monodevelop.com/Download/MonoDevelop_2.4_Released
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
monodevelop-2.2.2.tar.bz2
New:
----
9713fa3.patch
bnc615523.patch
monodevelop-2.4.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ monodevelop.spec ++++++
--- /var/tmp/diff_new_pack.AqHXrI/_old 2010-11-05 15:05:52.000000000 +0100
+++ /var/tmp/diff_new_pack.AqHXrI/_new 2010-11-05 15:05:52.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package monodevelop (Version 2.2.2)
+# spec file for package monodevelop (Version 2.4)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -24,15 +24,18 @@
BuildRequires: gnome-sharp2
BuildRequires: mono-addins
BuildRequires: mono-devel
+BuildRequires: mono-wcf
BuildRequires: monodoc-core
Url: http://www.go-mono.com/
License: GPLv2+
Group: Development/Languages/Mono
AutoReqProv: on
-Version: 2.2.2
+Version: 2.4
Release: 1
Summary: A Full-Featured IDE for Mono and Gtk#
Source: %{name}-%{version}.tar.bz2
+Patch0: bnc615523.patch
+Patch1: 9713fa3.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
Requires: xsp
@@ -70,6 +73,8 @@
%prep
%setup -q
+%patch0
+%patch1 -p2
%build
autoreconf -f -i
++++++ 9713fa3.patch ++++++
diff --git
a/main/src/addins/MonoDevelop.Debugger.Soft/Mono.Debugging.Soft/Makefile.am
b/main/src/addins/MonoDevelop.Debugger.Soft/Mono.Debugging.Soft/Makefile.am
index 7c5ee83..e217181 100644
--- a/main/src/addins/MonoDevelop.Debugger.Soft/Mono.Debugging.Soft/Makefile.am
+++ b/main/src/addins/MonoDevelop.Debugger.Soft/Mono.Debugging.Soft/Makefile.am
@@ -34,7 +34,7 @@ all: $(ASSEMBLY) $(ASSEMBLY).mdb $(DATA_FILE_BUILD)
$(SIGNING_KEY)
$(ASSEMBLY): $(build_sources) $(build_resources) $(DEPS) $(DBG_ASM) $(DBG_MDB)
mkdir -p $(ADDIN_BUILD)
- $(CSC) $(CSC_FLAGS) -debug -out:$@ -keycontainer:$(SIGNING_KEY)
-target:library $(REFS) $(build_deps) \
+ $(CSC) $(CSC_FLAGS) -debug -out:$@ -keyfile:$(SIGNING_KEY)
-target:library $(REFS) $(build_deps) \
$(build_resources:%=/resource:%) $(build_sources)
$(DBG_ASM): $(DBG_ASM_SRC)
diff --git a/main/src/core/Mono.Debugging/Makefile.am
b/main/src/core/Mono.Debugging/Makefile.am
index f3fb392..6b9c4f1 100644
--- a/main/src/core/Mono.Debugging/Makefile.am
+++ b/main/src/core/Mono.Debugging/Makefile.am
@@ -82,7 +82,7 @@ all: $(ASSEMBLY) $(ASSEMBLY).mdb
$(ASSEMBLY): $(build_sources) $(build_resources) $(SIGNING_KEY) $(DEPS)
mkdir -p $(ASSEMBLY_BUILD_DIR)
- $(CSC) $(CSC_FLAGS) -debug -out:$@ /keycontainer:$(SIGNING_KEY)
-target:library $(REFS) $(build_deps) $(build_resources:%=/resource:%)
$(build_sources)
+ $(CSC) $(CSC_FLAGS) -debug -out:$@ /keyfile:$(SIGNING_KEY)
-target:library $(REFS) $(build_deps) $(build_resources:%=/resource:%)
$(build_sources)
$(ASSEMBLY).mdb: $(ASSEMBLY)
++++++ bnc615523.patch ++++++
Index: src/core/MonoDevelop.Core/MonoDevelop.Core.Serialization/DataContext.cs
===================================================================
--- src/core/MonoDevelop.Core/MonoDevelop.Core.Serialization/DataContext.cs
(revision 159419)
+++ src/core/MonoDevelop.Core/MonoDevelop.Core.Serialization/DataContext.cs
(revision 159420)
@@ -158,8 +158,12 @@
PropertyRef prop = new PropertyRef (addin, targetType,
name, propertyType, isExternal, skipEmpty);
if (tr.Properties == null)
tr.Properties = prop;
- else
- tr.Properties.Next = prop;
+ else {
+ PropertyRef plink = tr.Properties;
+ while (plink.Next != null)
+ plink = plink.Next;
+ plink.Next = prop;
+ }
}
public void UnregisterProperty (Type targetType, string name)
++++++ monodevelop-2.2.2.tar.bz2 -> monodevelop-2.4.tar.bz2 ++++++
++++ 1001146 lines of diff (skipped)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |