[Pkg-cli-apps-commits] r5236 - in /packages/smuxi/branches/0.7-1~jaunty/debian: changelog control patches/mono_2.0_compat.patch patches/series rules
meebey at users.alioth.debian.org
meebey at users.alioth.debian.org
Mon Jan 11 23:30:52 UTC 2010
Author: meebey
Date: Mon Jan 11 23:30:52 2010
New Revision: 5236
URL: http://svn.debian.org/wsvn/pkg-cli-apps/?sc=1&rev=5236
Log:
* debian/control:
+ Lowered versioned mono build-deps to >= 2.0 and removed compiler
override.
+ Replaced libgconf2.0-cil-dev build-dep with libgconf2.24-cil.
+ Replaced all -cil-dev build-deps with -cil.
+ Added libmono-dev, libmono2.0-cil, libmono-cairo2.0-cil, and
libmono-system-runtime2.0-cil to build-deps.
* debian/patches/mono_2.0_compat.patch:
+ Fixes failing build on Mono 2.0
Added:
packages/smuxi/branches/0.7-1~jaunty/debian/patches/mono_2.0_compat.patch
Modified:
packages/smuxi/branches/0.7-1~jaunty/debian/changelog
packages/smuxi/branches/0.7-1~jaunty/debian/control
packages/smuxi/branches/0.7-1~jaunty/debian/patches/series
packages/smuxi/branches/0.7-1~jaunty/debian/rules
Modified: packages/smuxi/branches/0.7-1~jaunty/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/smuxi/branches/0.7-1%7Ejaunty/debian/changelog?rev=5236&op=diff
==============================================================================
--- packages/smuxi/branches/0.7-1~jaunty/debian/changelog (original)
+++ packages/smuxi/branches/0.7-1~jaunty/debian/changelog Mon Jan 11 23:30:52 2010
@@ -1,3 +1,18 @@
+smuxi (0.7-1~jaunty+1) jaunty; urgency=low
+
+ * Rebuild for jaunty-ppa.
+ * debian/control:
+ + Lowered versioned mono build-deps to >= 2.0 and removed compiler
+ override.
+ + Replaced libgconf2.0-cil-dev build-dep with libgconf2.24-cil.
+ + Replaced all -cil-dev build-deps with -cil.
+ + Added libmono-dev, libmono2.0-cil, libmono-cairo2.0-cil, and
+ libmono-system-runtime2.0-cil to build-deps.
+ * debian/patches/mono_2.0_compat.patch:
+ + Fixes failing build on Mono 2.0
+
+ -- Mirco Bauer <meebey at debian.org> Mon, 11 Jan 2010 23:22:08 +0100
+
smuxi (0.7-1) unstable; urgency=low
* New upstream release:
Modified: packages/smuxi/branches/0.7-1~jaunty/debian/control
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/smuxi/branches/0.7-1%7Ejaunty/debian/control?rev=5236&op=diff
==============================================================================
--- packages/smuxi/branches/0.7-1~jaunty/debian/control (original)
+++ packages/smuxi/branches/0.7-1~jaunty/debian/control Mon Jan 11 23:30:52 2010
@@ -4,17 +4,19 @@
Maintainer: Mirco Bauer <meebey at debian.org>
Build-Depends: debhelper (>= 7.0.50), quilt (>= 0.46-7~)
Build-Depends-Indep: cli-common-dev (>= 0.5.7),
- mono-devel (>= 2.4.3),
- mono-xbuild (>= 2.4.3),
- libsmartirc4net-cil-dev (>= 0.4.5.1),
- libnini-cil-dev (>= 1.1),
- liblog4net-cil-dev,
- libgtk2.0-cil-dev (>= 2.8),
- libgnome2.0-cil-dev (>= 2.24),
- libglade2.0-cil-dev (>= 2.8),
- libglib2.0-cil-dev (>= 2.8),
- libgnome-vfs2.0-cil-dev (>= 2.8),
- libart2.0-cil-dev (>= 2.8),
+ mono-devel (>= 2.0),
+ mono-xbuild (>= 2.0),
+ libmono-dev (>= 2.0),
+ libmono2.0-cil,
+ libmono-cairo2.0-cil,
+ libmono-system-runtime2.0-cil,
+ libsmartirc4net0.4-cil (>= 0.4.5.1),
+ libnini1.1-cil (>= 1.1),
+ liblog4net1.2-cil,
+ libgtk2.0-cil (>= 2.8),
+ libgnome2.24-cil (>= 2.24),
+ libglade2.0-cil (>= 2.8),
+ libglib2.0-cil (>= 2.8),
lsb-release,
pkg-config,
gettext,
Added: packages/smuxi/branches/0.7-1~jaunty/debian/patches/mono_2.0_compat.patch
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/smuxi/branches/0.7-1%7Ejaunty/debian/patches/mono_2.0_compat.patch?rev=5236&op=file
==============================================================================
--- packages/smuxi/branches/0.7-1~jaunty/debian/patches/mono_2.0_compat.patch (added)
+++ packages/smuxi/branches/0.7-1~jaunty/debian/patches/mono_2.0_compat.patch Mon Jan 11 23:30:52 2010
@@ -1,0 +1,20 @@
+--- smuxi-0.7.orig/src/Engine-Twitter/Protocols/Twitter/TwitterProtocolManager.cs
++++ smuxi-0.7/src/Engine-Twitter/Protocols/Twitter/TwitterProtocolManager.cs
+@@ -553,7 +553,7 @@
+
+ // only poll once per interval or when we get fired
+ f_FriendsTimelineEvent.WaitOne(
+- f_UpdateFriendsTimelineInterval * 1000
++ f_UpdateFriendsTimelineInterval * 1000, false
+ );
+ }
+ } catch (ThreadAbortException) {
+@@ -728,7 +728,7 @@
+
+ // only poll once per interval or when we get fired
+ f_DirectMessageEvent.WaitOne(
+- f_UpdateDirectMessagesInterval * 1000
++ f_UpdateDirectMessagesInterval * 1000, false
+ );
+ }
+ } catch (ThreadAbortException) {
Modified: packages/smuxi/branches/0.7-1~jaunty/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/smuxi/branches/0.7-1%7Ejaunty/debian/patches/series?rev=5236&op=diff
==============================================================================
--- packages/smuxi/branches/0.7-1~jaunty/debian/patches/series (original)
+++ packages/smuxi/branches/0.7-1~jaunty/debian/patches/series Mon Jan 11 23:30:52 2010
@@ -1,1 +1,2 @@
+mono_2.0_compat.patch
debian_default_settings.patch
Modified: packages/smuxi/branches/0.7-1~jaunty/debian/rules
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/smuxi/branches/0.7-1%7Ejaunty/debian/rules?rev=5236&op=diff
==============================================================================
--- packages/smuxi/branches/0.7-1~jaunty/debian/rules (original)
+++ packages/smuxi/branches/0.7-1~jaunty/debian/rules Mon Jan 11 23:30:52 2010
@@ -16,7 +16,7 @@
fi
override_dh_auto_configure: $(PATCH_LIST_FILE) patch
- dh_auto_configure -- --enable-engine-irc --enable-frontend-gnome GMCS=/usr/bin/mono-csc MCS=/usr/bin/mono-csc
+ dh_auto_configure -- --enable-engine-irc --enable-frontend-gnome
.DEFAULT:
More information about the Pkg-cli-apps-commits
mailing list