rpms/anjuta/devel anjuta-2.25.903.0-configure.patch, NONE, 1.1 .cvsignore, 1.16, 1.17 anjuta.spec, 1.68, 1.69 sources, 1.16, 1.17

Debarshi Ray rishi at fedoraproject.org
Wed Mar 11 11:26:14 UTC 2009


Author: rishi

Update of /cvs/pkgs/rpms/anjuta/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16583

Modified Files:
	.cvsignore anjuta.spec sources 
Added Files:
	anjuta-2.25.903.0-configure.patch 
Log Message:
* Tue Mar 10 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.25.903.0-1
- Version bump to 2.25.903.0.
  * Fixed Glade and version control integration.
  * Updated documentation.
  * Automatically select program to run if the project has only one
    executable. (GNOME Bugzilla #564306)
  * Build (basic Autotools) plugin:
    + Save configuration options for build configuration. (GNOME Bugzilla
      #555895)
    + Fixed Valgrind violations. (GNOME Bugzilla #565170)
  * GtkSourceView editor plugin:
    + Make swapping of .h and .c work for C header files. (GNOME Bugzilla
      #556970)
    + Should not crash when closing unsaved file. (GNOME Bugzilla #559806)
    + Fixed crash when closing a read-only file that threw an exception while
      running a program in the debugger. (GNOME Bugzilla #564891)
  * Scintilla editor plugin:
    + Make auto-complete box vanish on backspace. (GNOME Bugzilla #567068)
  * Search plugin:
    + Repaired Find & Replace. (GNOME Bugzilla #571760)
    + Fixed crash when clicking on the results of 'Find in files ...'. (GNOME
      Bugzilla #572608)
  * Symbol-db plugin:
    + Fixed Valgrind violations. (GNOME Bugzilla #572637)
  * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.25/anjuta-2.25.903.0.news
- Fixed configure to correctly handle --enable-plugin-scintilla.
- Upstream no longer installs /usr/bin/benchmark.


anjuta-2.25.903.0-configure.patch:

--- NEW FILE anjuta-2.25.903.0-configure.patch ---
diff -urNp anjuta-2.25.903.0.orig/configure anjuta-2.25.903.0/configure
--- anjuta-2.25.903.0.orig/configure	2009-03-11 01:39:11.738219733 +0530
+++ anjuta-2.25.903.0/configure	2009-03-11 03:13:22.258993881 +0530
@@ -18106,7 +18106,7 @@ fi
 
 # Check whether --enable-plugin-scintilla was given.
 if test "${enable_plugin_scintilla+set}" = set; then
-  enableval=$enable_plugin_scintilla;  if test "$enableval" = "yes"; then
+  enableval=$enable_plugin_scintilla;  if test "$enableval" = "no"; then
 		user_disabled_scintilla=1
 	  fi
 else
@@ -18117,12 +18117,12 @@ fi
 { echo "$as_me:$LINENO: checking if scintilla plugin is disabled" >&5
 echo $ECHO_N "checking if scintilla plugin is disabled... $ECHO_C" >&6; }
 if test "$user_disabled_scintilla" = 1; then
-	{ echo "$as_me:$LINENO: result: no" >&5
-echo "${ECHO_T}no" >&6; }
-	scintilla="no"
-else
 	{ echo "$as_me:$LINENO: result: yes" >&5
 echo "${ECHO_T}yes" >&6; }
+	scintilla="no"
+else
+	{ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6; }
 	scintilla="yes"
 fi
  if test x$scintilla = xyes; then


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/anjuta/devel/.cvsignore,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- .cvsignore	21 Feb 2009 19:53:47 -0000	1.16
+++ .cvsignore	11 Mar 2009 11:25:43 -0000	1.17
@@ -1 +1 @@
-anjuta-2.25.902.tar.gz
+anjuta-2.25.903.0.tar.gz


Index: anjuta.spec
===================================================================
RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- anjuta.spec	8 Mar 2009 12:49:15 -0000	1.68
+++ anjuta.spec	11 Mar 2009 11:25:43 -0000	1.69
@@ -1,13 +1,15 @@
 Summary:	A GNOME development IDE for C/C++
 Name:		anjuta
 Epoch:		1
-Version:	2.25.902
-Release:	6%{?dist}
+Version:	2.25.903.0
+Release:	1%{?dist}
 License:	GPLv2+
 Group:		Development/Tools
 URL:		http://www.anjuta.org/
 Source0:	http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.25/%{name}-%{version}.tar.gz
 
+Patch0:		%{name}-%{version}-configure.patch
+
 BuildRoot:	%(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
 
 Obsoletes:	gnome-build <= 2.24.1-1
@@ -91,6 +93,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 # Filter unwanted Provides.
 cat << \EOF > %{name}-prov
@@ -252,7 +255,6 @@
 %doc THANKS
 %doc %{_mandir}/man1/%{name}.1*
 %doc %{_mandir}/man1/%{name}_launcher.1*
-%exclude %{_bindir}/benchmark
 %{_bindir}/%{name}
 %{_bindir}/gbf-am-parse
 %{_bindir}/gbf-mkfile-parse
@@ -309,8 +311,36 @@
 %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf
 
 %changelog
+* Tue Mar 10 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.25.903.0-1
+- Version bump to 2.25.903.0.
+  * Fixed Glade and version control integration.
+  * Updated documentation.
+  * Automatically select program to run if the project has only one
+    executable. (GNOME Bugzilla #564306)
+  * Build (basic Autotools) plugin:
+    + Save configuration options for build configuration. (GNOME Bugzilla
+      #555895)
+    + Fixed Valgrind violations. (GNOME Bugzilla #565170)
+  * GtkSourceView editor plugin:
+    + Make swapping of .h and .c work for C header files. (GNOME Bugzilla
+      #556970)
+    + Should not crash when closing unsaved file. (GNOME Bugzilla #559806)
+    + Fixed crash when closing a read-only file that threw an exception while
+      running a program in the debugger. (GNOME Bugzilla #564891)
+  * Scintilla editor plugin:
+    + Make auto-complete box vanish on backspace. (GNOME Bugzilla #567068)
+  * Search plugin:
+    + Repaired Find & Replace. (GNOME Bugzilla #571760)
+    + Fixed crash when clicking on the results of 'Find in files ...'. (GNOME
+      Bugzilla #572608)
+  * Symbol-db plugin:
+    + Fixed Valgrind violations. (GNOME Bugzilla #572637)
+  * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.25/anjuta-2.25.903.0.news
+- Fixed configure to correctly handle --enable-plugin-scintilla.
+- Upstream no longer installs /usr/bin/benchmark.
+
 * Sun Mar 08 2009 Rakesh Pandit <rakesh at fedoraproject.org> - 1:2.25.902-6
-- Bumped to consume new soname in webkit library.
+- Bumped to consume new WebKit soname.
 
 * Wed Feb 27 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.25.902-5
 - Added 'Provides: perl(GBF::Make)'. Imported from gnome-build. (Red Hat


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/anjuta/devel/sources,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- sources	21 Feb 2009 19:53:47 -0000	1.16
+++ sources	11 Mar 2009 11:25:44 -0000	1.17
@@ -1 +1 @@
-ec640e7845e71b9741c9bded0185753b  anjuta-2.25.902.tar.gz
+de93cc2a14f0169a29f0c10e18ff1c52  anjuta-2.25.903.0.tar.gz




More information about the fedora-extras-commits mailing list