SHA256
1
0
forked from pool/nemiver
OBS User unknown 2008-08-15 23:18:52 +00:00 committed by Git OBS Bridge
parent d9a92b6058
commit d8360cc306
5 changed files with 115 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e94b4df833422789dd73214225f49a14d70913e42de2c89b1183400c9e2a9bfd
size 1364858

3
nemiver-0.6.1.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:50c54fdde4c39bf8efbcd3b1ac24884e5733cfa9844a58df611aad0adba9a574
size 1388783

View File

@ -4,6 +4,7 @@
_Comment=Debug Applications
Icon=nemiver
Exec=nemiver
-Categories=GNOME;Application;Development;
+Categories=GNOME;Application;Development;Debugger;
-Categories=GNOME;Development;
+Categories=GNOME;Development;Debugger;
StartupNotify=true

View File

@ -1,3 +1,56 @@
-------------------------------------------------------------------
Wed Jul 30 14:03:47 EDT 2008 - hfiguiere@suse.de
- Update to 0.6.1
* conditional breakpoints
* arbitrary function calls
* various code cleanups
* add --version command line switch
* support running autogen.sh from other directories dans srcdir
* bgo#515525 - Arrow keys don't work to navigate through source file
* bgo#396277 - implement lazy evaluation of status widgets
* bgo#543798 - don't pop up 'reload file' dialog all the time
* bgo#543797 - display a meaningful error when inferior is not found
* bgo#545211 - Bad index management when closing a tab
* bgo#540934 - documentation docbook XML compliance
* on going HIG compliance assurance
* add preferences for controlling behaviour or reloading source files
-------------------------------------------------------------------
Sat Jun 21 15:07:55 EDT 2008 - hfiguiere@novell.com
- Update to 0.5.4
* many compilation fixes
* bgo#537281 unable to open some files because their encoding is not known
* bgo#539109 can't stop running inferior
* bgo#499873 Variable 'this' not found
* bgo#539311 - rhythmbox can loads its plugins under nemiver
* bgo#534990 - don't install libnemivercommon.pc
* bgo#535359 "Clicking on current stack frame should show the correct
source line in the editor"
* Updated po and oc translations
-------------------------------------------------------------------
Sat Jun 7 10:56:30 EDT 2008 - hfiguiere@novell.com
- Fix build for 10.3 in OBS
-------------------------------------------------------------------
Fri Jun 6 19:26:50 EDT 2008 - hfiguiere@novell.com
- Update to 0.5.3
* bgo#526696 "Detach from the running program" not properly unsensitived"
* bgo#526866 breakpoint parsing failures
* bgo#526826 missing dependency in .pc file
* bgo#527696 nemiver --help only shows libgnome related help messages
* bgo#526863 Parsing error leaves nemiver in unusable state
* bgo#527796 remove libgnome dependency
* bgo#482806 Debugger state and Menu item sensitivity problems
* bgo#534619 Once detached of a program, you're not sure you're really disconnected
* add -Wl,--as-needed link flag for DSOs
* properly set memory editor sensitivity when debugger is running
* remove obsolete fields from nemiver.desktop file
-------------------------------------------------------------------
Thu Apr 11 23:37:00 EDT 2008 - hfiguiere@suse.de

View File

@ -1,10 +1,17 @@
#
# spec file for package nemiver (Version 0.5.2)
# spec file for package nemiver (Version 0.6.1)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# 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/
#
@ -12,8 +19,8 @@
Url: http://home.gna.org/nemiver/
Name: nemiver
Version: 0.5.2
Release: 2
Version: 0.6.1
Release: 1
License: GPL v2 or later
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: gcc-c++ gdb
@ -30,7 +37,9 @@ BuildRequires: sqlite-devel >= 3.0
BuildRequires: libgtop-devel >= 2.14
BuildRequires: gconf2-devel >= 2.14
BuildRequires: vte-devel >= 0.12.0
%if 0%{?suse_version} >= 1100
BuildRequires: ghex-devel >= 2.21.4
%endif
%if 0%{?suse_version} > 1020
BuildRequires: fdupes
%endif
@ -144,7 +153,7 @@ rm -rf "$RPM_BUILD_ROOT"
%doc AUTHORS README NEWS TODO
%dir %{_includedir}/nemiver
%{_includedir}/nemiver/*
%{_libdir}/pkgconfig/libnemivercommon.pc
#%{_libdir}/pkgconfig/libnemivercommon.pc
%{_libdir}/nemiver/*.*a
%{_libdir}/nemiver/modules/*.*a
%{_libdir}/nemiver/plugins/dbgperspective/*.*a
@ -152,6 +161,47 @@ rm -rf "$RPM_BUILD_ROOT"
%files lang -f %{name}.lang
%changelog
* Wed Jul 30 2008 hfiguiere@suse.de
- Update to 0.6.1
* conditional breakpoints
* arbitrary function calls
* various code cleanups
* add --version command line switch
* support running autogen.sh from other directories dans srcdir
* bgo#515525 - Arrow keys don't work to navigate through source file
* bgo#396277 - implement lazy evaluation of status widgets
* bgo#543798 - don't pop up 'reload file' dialog all the time
* bgo#543797 - display a meaningful error when inferior is not found
* bgo#545211 - Bad index management when closing a tab
* bgo#540934 - documentation docbook XML compliance
* on going HIG compliance assurance
* add preferences for controlling behaviour or reloading source files
* Sat Jun 21 2008 hfiguiere@novell.com
- Update to 0.5.4
* many compilation fixes
* bgo#537281 unable to open some files because their encoding is not known
* bgo#539109 can't stop running inferior
* bgo#499873 Variable 'this' not found
* bgo#539311 - rhythmbox can loads its plugins under nemiver
* bgo#534990 - don't install libnemivercommon.pc
* bgo#535359 "Clicking on current stack frame should show the correct
source line in the editor"
* Updated po and oc translations
* Sat Jun 07 2008 hfiguiere@novell.com
- Fix build for 10.3 in OBS
* Fri Jun 06 2008 hfiguiere@novell.com
- Update to 0.5.3
* bgo#526696 "Detach from the running program" not properly unsensitived"
* bgo#526866 breakpoint parsing failures
* bgo#526826 missing dependency in .pc file
* bgo#527696 nemiver --help only shows libgnome related help messages
* bgo#526863 Parsing error leaves nemiver in unusable state
* bgo#527796 remove libgnome dependency
* bgo#482806 Debugger state and Menu item sensitivity problems
* bgo#534619 Once detached of a program, you're not sure you're really disconnected
* add -Wl,--as-needed link flag for DSOs
* properly set memory editor sensitivity when debugger is running
* remove obsolete fields from nemiver.desktop file
* Sat Apr 12 2008 hfiguiere@suse.de
- Build with ghex to support the memory view.
- Add libgtop-devel as a requires for the devel package.