[Pkg-cli-apps-commits] [monodevelop-debugger-gdb] 01/01: Imported Upstream version 4.0.12
Jo Shields
directhex at alioth.debian.org
Thu Oct 10 13:34:31 UTC 2013
This is an automated email from the git hooks/post-receive script.
directhex pushed a commit to annotated tag upstream/4.0.12
in repository monodevelop-debugger-gdb.
commit dd46486a95b37edc8caa671013500b214cb8f02f
Author: Jo Shields <directhex at apebox.org>
Date: Thu Oct 10 15:07:07 2013 +0200
Imported Upstream version 4.0.12
---
GdbBacktrace.cs | 11 ++++----
Makefile | 2 +-
Manifest.addin.xml | 8 +++---
configure | 6 ++--
monodevelop-debugger-gdb.spec.in | 56 ++++++++++++++++++++++++++++++++++++++
5 files changed, 69 insertions(+), 14 deletions(-)
diff --git a/GdbBacktrace.cs b/GdbBacktrace.cs
index 57ab19e..7aec2df 100644
--- a/GdbBacktrace.cs
+++ b/GdbBacktrace.cs
@@ -1,9 +1,10 @@
// GdbBacktrace.cs
//
-// Author:
-// Lluis Sanchez Gual <lluis at novell.com>
+// Authors: Lluis Sanchez Gual <lluis at novell.com>
+// Jeffrey Stedfast <jeff at xamarin.com>
//
// Copyright (c) 2008 Novell, Inc (http://www.novell.com)
+// Copyright (c) 2012 Xamarin Inc. (http://www.xamarin.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
@@ -33,8 +34,6 @@ using Mono.Debugging.Backend;
namespace MonoDevelop.Debugger.Gdb
{
-
-
class GdbBacktrace: IBacktrace, IObjectValueSource
{
int fcount;
@@ -154,7 +153,7 @@ namespace MonoDevelop.Debugger.Gdb
CompletionData data = new CompletionData ();
foreach (ObjectValue cv in val.GetAllChildren ())
data.Items.Add (new CompletionItem (cv.Name, cv.Flags));
- data.ExpressionLenght = 0;
+ data.ExpressionLength = 0;
return data;
}
i++;
@@ -175,7 +174,7 @@ namespace MonoDevelop.Debugger.Gdb
string partialWord = exp.Substring (i+1);
CompletionData cdata = new CompletionData ();
- cdata.ExpressionLenght = partialWord.Length;
+ cdata.ExpressionLength = partialWord.Length;
// Local variables
diff --git a/Makefile b/Makefile
index 7731166..507faaf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-EXTRA_DIST = MonoDevelop.Debugger.Gdb.make rules.make configure Makefile.include
+EXTRA_DIST = MonoDevelop.Debugger.Gdb.make rules.make configure Makefile.include monodevelop-debugger-gdb.spec.in
all: all-recursive
diff --git a/Manifest.addin.xml b/Manifest.addin.xml
index 5c60f7f..738e73e 100644
--- a/Manifest.addin.xml
+++ b/Manifest.addin.xml
@@ -5,12 +5,12 @@
description = "GNU Debugger support for Mono.Debugging"
copyright = "MIT X11"
category = "Debugging"
- version = "3.0.2">
+ version = "4.0.12">
<Dependencies>
- <Addin id="MonoDevelop.Core" version="3.0.2"/>
- <Addin id="MonoDevelop.Ide" version="3.0.2"/>
- <Addin id="MonoDevelop.Debugger" version="3.0.2"/>
+ <Addin id="MonoDevelop.Core" version="4.0.12"/>
+ <Addin id="MonoDevelop.Ide" version="4.0.12"/>
+ <Addin id="MonoDevelop.Debugger" version="4.0.12"/>
</Dependencies>
<Extension path="/MonoDevelop/Debugging/DebuggerEngines">
diff --git a/configure b/configure
index 398edfa..14a2fea 100755
--- a/configure
+++ b/configure
@@ -1,10 +1,10 @@
-#!/bin/bash
-VERSION=3.0.2
+#!/usr/bin/env bash
+VERSION=4.0.12
PACKAGE=monodevelop-debugger-gdb
prefix=/usr/local
config=DEBUG
configurations=" RELEASE DEBUG"
-common_packages=" monodevelop;3.0.2"
+common_packages=" monodevelop;4.0.12"
usage ()
diff --git a/monodevelop-debugger-gdb.spec.in b/monodevelop-debugger-gdb.spec.in
new file mode 100644
index 0000000..7f8e603
--- /dev/null
+++ b/monodevelop-debugger-gdb.spec.in
@@ -0,0 +1,56 @@
+#
+# spec file for package monodevelop-debugger-gdb
+#
+# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+#
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# upon. The license for this file, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An "Open Source License" is a
+# license that conforms to the Open Source Definition (Version 1.9)
+# published by the Open Source Initiative.
+
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
+
+
+Name: monodevelop-debugger-gdb
+Version: @VERSION@
+Release: 1
+License: MIT/X11
+AutoReqProv: on
+BuildArch: noarch
+Url: http://www.monodevelop.com
+Source: %{name}-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-build
+BuildRequires: mono-devel monodevelop >= %{version}
+Requires: gdb
+Summary: GDB for MonoDevelop
+Group: Development/Tools
+
+%description
+GDB Debugger Addin for MonoDevelop.
+
+%files
+%defattr(-, root, root)
+%{_prefix}/lib/monodevelop/AddIns/MonoDevelop.Debugger/MonoDevelop.Debugger.Gdb.dll*
+
+%prep
+%setup -q
+
+%build
+%{?env_options}
+./configure --prefix=%_prefix
+make
+
+%install
+%{?env_options}
+make install DESTDIR=%{buildroot}
+
+%clean
+rm -rf %{buildroot}
+
+%changelog
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-cli-apps/packages/monodevelop-debugger-gdb.git
More information about the Pkg-cli-apps-commits
mailing list