rpms/anjuta/devel anjuta-2.27.3.0-class-gen-templates.patch, NONE, 1.1 anjuta-2.27.3.0-docdir.patch, NONE, 1.1 .cvsignore, 1.20, 1.21 anjuta.spec, 1.74, 1.75 sources, 1.20, 1.21

Debarshi Ray rishi at fedoraproject.org
Tue Jul 14 05:30:10 UTC 2009


Author: rishi

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

Modified Files:
	.cvsignore anjuta.spec sources 
Added Files:
	anjuta-2.27.3.0-class-gen-templates.patch 
	anjuta-2.27.3.0-docdir.patch 
Log Message:
* Tue Jul 14 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.27.3.0-1
- Version bump to 2.27.3.0.
  Improvements in auto-completion speed.
  Improvements in Git and Subversion plugins.
  Ported to GtkBuilder. (GNOME Bugzilla #530740)
  * Git plugin:
    + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340)
  * GTodo plugin:
    + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710)
  * Language support (C, C++, Java) plugin:
    + Fixed crash when dismissing auto-completion popup and deleting some
      characters. (GNOME Bugzilla #582464)
  * Project wizard plugin:
    + Infer project name from project path. (GNOME Bugzilla #568779)
    + wxWidget projects should not depend on libglade and Gtk+. (GNOME
      Bugzilla #581074)
  * Scintilla editor plugin:
    + Fixed position of tooltips. (GNOME Bugzilla #577721)
  * Search plugin:
    + Point to correct line number. (GNOME Bugzilla #576959)
- Do not drop schemas translations from po files.
- Removed 'Requires: libglade2 >= 2.6.3-2'.


anjuta-2.27.3.0-class-gen-templates.patch:

--- NEW FILE anjuta-2.27.3.0-class-gen-templates.patch ---
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "plugin.c" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "plugin.c" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "plugin.c"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 #include <config.h>
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "plugin.h" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "plugin.h" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "plugin.h"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 #ifndef _[+NameCUpper+]_H_
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi	2009-07-14 10:44:03.000000000 +0530
@@ -4,9 +4,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "plugin.h" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "plugin.h" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "plugin.h"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 [CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")]
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala	2009-07-14 10:44:03.000000000 +0530
@@ -4,9 +4,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "plugin.c" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "plugin.c" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "plugin.c"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 using GLib;
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/cpp/src/main.cc anjuta-2.27.3.0/plugins/project-wizard/templates/cpp/src/main.cc
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/cpp/src/main.cc	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/cpp/src/main.cc	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "main.cc" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "main.cc" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "main.cc"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 #include <iostream>
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gnome-applet/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/gnome-applet/src/main.c
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gnome-applet/src/main.c	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/gnome-applet/src/main.c	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "main.c" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "main.c" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "main.c"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 #ifdef HAVE_CONFIG_H
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/callbacks.c anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/callbacks.c
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/callbacks.c	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/callbacks.c	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "callbacks.c" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "callbacks.c" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "callbacks.c"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 #ifdef HAVE_CONFIG_H
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/callbacks.h anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/callbacks.h
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/callbacks.h	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/callbacks.h	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "callbacks.h" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "callbacks.h" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "callbacks.h"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 #include <gtk/gtk.h>
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/main.c
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/main.c	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/main.c	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "main.c" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "main.c" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "main.c"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 #include <sys/types.h>
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtkmm/src/main.cc anjuta-2.27.3.0/plugins/project-wizard/templates/gtkmm/src/main.cc
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtkmm/src/main.cc	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/gtkmm/src/main.cc	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "main.cc" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "main.cc" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "main.cc"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 #include <libglademm/xml.h>
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/java/src/main.java anjuta-2.27.3.0/plugins/project-wizard/templates/java/src/main.java
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/java/src/main.java	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/java/src/main.java	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "main.java" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "main.java" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "main.java"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 class [+MainClass+] {
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/python/src/main.py anjuta-2.27.3.0/plugins/project-wizard/templates/python/src/main.py
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/python/src/main.py	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/python/src/main.py	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
 # Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
 # 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "main.py" (get "Author") "# ")+]
-[+ == "LGPL" +][+(lgpl "main.py" (get "Author") "# ")+]
-[+ == "GPL"  +][+(gpl  "main.py"                "# ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") "# ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "# ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                "# ")+]
 [+ESAC+]
 
 print "Hello World!"
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/sdl/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/sdl/src/main.c
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/sdl/src/main.c	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/sdl/src/main.c	2009-07-14 10:44:03.000000000 +0530
@@ -4,9 +4,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  *
 [+CASE (get "License") +]
-[+ == "BSD" +][+(bsd "main.c" (get "Author") "\t")+]
-[+ == "LGPL" +][+(lgpl "main.c" (get "Author") "\t")+]
-[+ == "GPL" +][+(gpl "main.c"  "\t")+]
+[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+]
+[+ == "GPL" +][+(gpl (get "Name")  "\t")+]
 [+ESAC+] */
 
 /*Program closes with a mouse click or keypress */
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/terminal/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/terminal/src/main.c
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/terminal/src/main.c	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/terminal/src/main.c	2009-07-14 10:44:03.000000000 +0530
@@ -5,9 +5,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  * 
 [+CASE (get "License") +]
-[+ == "BSD"  +][+(bsd  "main.c" (get "Author") " * ")+]
-[+ == "LGPL" +][+(lgpl "main.c" (get "Author") " * ")+]
-[+ == "GPL"  +][+(gpl  "main.c"                " * ")+]
+[+ == "BSD"  +][+(bsd  (get "Name") (get "Author") " * ")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+]
+[+ == "GPL"  +][+(gpl  (get "Name")                " * ")+]
 [+ESAC+] */
 
 #include <stdio.h>
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/wxwin/src/main.cc anjuta-2.27.3.0/plugins/project-wizard/templates/wxwin/src/main.cc
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/wxwin/src/main.cc	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/wxwin/src/main.cc	2009-07-14 10:44:03.000000000 +0530
@@ -4,9 +4,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  *
 [+CASE (get "License") +]
-[+ == "BSD" +][+(bsd "main.cc" (get "Author") "\t")+]
-[+ == "LGPL" +][+(lgpl "main.cc" (get "Author") "\t")+]
-[+ == "GPL" +][+(gpl "main.cc"  "\t")+]
+[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+]
+[+ == "GPL" +][+(gpl (get "Name")  "\t")+]
 [+ESAC+] */
 
 #ifdef HAVE_CONFIG_H
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/xlib/src/main.c
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib/src/main.c	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/xlib/src/main.c	2009-07-14 10:44:03.000000000 +0530
@@ -4,9 +4,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  *
 [+CASE (get "License") +]
-[+ == "BSD" +][+(bsd "main.c" (get "Author") "\t")+]
-[+ == "LGPL" +][+(lgpl "main.c" (get "Author") "\t")+]
-[+ == "GPL" +][+(gpl "main.c"  "\t")+]
+[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+]
+[+ == "GPL" +][+(gpl (get "Name")  "\t")+]
 [+ESAC+] */
 
 /*Program closes with a mouse click or keypress */
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/main.c
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/main.c	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/main.c	2009-07-14 10:44:03.000000000 +0530
@@ -4,9 +4,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  *
 [+CASE (get "License") +]
-[+ == "BSD" +][+(bsd "main.c" (get "Author") "\t")+]
-[+ == "LGPL" +][+(lgpl "main.c" (get "Author") "\t")+]
-[+ == "GPL" +][+(gpl "main.c"  "\t")+]
+[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+]
+[+ == "GPL" +][+(gpl (get "Name")  "\t")+]
 [+ESAC+] */
 
 #ifdef HAVE_CONFIG_H
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c	2009-07-14 10:44:03.000000000 +0530
@@ -4,9 +4,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  *
 [+CASE (get "License") +]
-[+ == "BSD" +][+(bsd "wmgeneral.c" (get "Author") "\t")+]
-[+ == "LGPL" +][+(lgpl "wmgeneral.c" (get "Author") "\t")+]
-[+ == "GPL" +][+(gpl "wmgeneral.c"  "\t")+]
+[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+]
+[+ == "GPL" +][+(gpl (get "Name")  "\t")+]
 [+ESAC+] */
 
 /*	wmgeneral was taken from wmppp.
diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h
--- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h	2009-07-14 10:44:03.000000000 +0530
@@ -4,9 +4,9 @@
  * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
  *
 [+CASE (get "License") +]
-[+ == "BSD" +][+(bsd "wmgeneral.h" (get "Author") "\t")+]
-[+ == "LGPL" +][+(lgpl "wmgeneral.h" (get "Author") "\t")+]
-[+ == "GPL" +][+(gpl "wmgeneral.h"  "\t")+]
+[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+]
+[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+]
+[+ == "GPL" +][+(gpl (get "Name")  "\t")+]
 [+ESAC+] */
 
 #ifndef WMGENERAL_H_INCLUDED

anjuta-2.27.3.0-docdir.patch:

--- NEW FILE anjuta-2.27.3.0-docdir.patch ---
diff -urNp anjuta-2.27.3.0.orig/libanjuta/Makefile.in anjuta-2.27.3.0/libanjuta/Makefile.in
--- anjuta-2.27.3.0.orig/libanjuta/Makefile.in	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/libanjuta/Makefile.in	2009-07-14 10:11:10.000000000 +0530
@@ -360,7 +360,7 @@ AM_CPPFLAGS = \
 	-DPACKAGE_PIXMAPS_DIR="\"$(datadir)/pixmaps/$(PACKAGE)\"" \
 	-DPACKAGE_DATA_DIR="\"$(datadir)/$(PACKAGE)\"" \
 	-DPACKAGE_HELP_DIR="\"$(datadir)/gnome/help/$(PACKAGE)\"" \
-	-DPACKAGE_DOC_DIR="\"$(datadir)/doc/$(PACKAGE)\"" \
+	-DPACKAGE_DOC_DIR="\"$(docdir)\"" \
 	-DG_LOG_DOMAIN=\"libanjuta\"
 
 lib_LTLIBRARIES = libanjuta.la 
diff -urNp anjuta-2.27.3.0.orig/src/Makefile.in anjuta-2.27.3.0/src/Makefile.in
--- anjuta-2.27.3.0.orig/src/Makefile.in	2009-07-14 10:10:58.000000000 +0530
+++ anjuta-2.27.3.0/src/Makefile.in	2009-07-14 10:11:10.000000000 +0530
@@ -339,7 +339,7 @@ AM_CPPFLAGS = \
 	-I$(top_srcdir)\
 	-I.. -I. -DPACKAGE_BIN_DIR=\"$(bindir)\" \
 	-DPACKAGE_DATA_DIR="\"$(datadir)/$(PACKAGE)\"" \
-	-DPACKAGE_DOC_DIR=\"$(datadir)/doc/$(PACKAGE)\" \
+	-DPACKAGE_DOC_DIR=\"$(docdir)\" \
 	-DPACKAGE_PIXMAPS_DIR=\"$(datadir)/pixmaps/$(PACKAGE)\" \
 	-DPACKAGE_PLUGIN_DIR=\"$(libdir)/$(PACKAGE)\" \
 	-DPACKAGE_LOCALE_DIR=\"$(datadir)/locale\" \


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/anjuta/devel/.cvsignore,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -p -r1.20 -r1.21
--- .cvsignore	13 Jul 2009 22:16:52 -0000	1.20
+++ .cvsignore	14 Jul 2009 05:29:40 -0000	1.21
@@ -1 +1 @@
-anjuta-2.26.2.2.tar.gz
+anjuta-2.27.3.0.tar.gz


Index: anjuta.spec
===================================================================
RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -p -r1.74 -r1.75
--- anjuta.spec	13 Jul 2009 22:16:52 -0000	1.74
+++ anjuta.spec	14 Jul 2009 05:29:40 -0000	1.75
@@ -1,12 +1,17 @@
 Summary:	A GNOME development IDE for C/C++
 Name:		anjuta
 Epoch:		1
-Version:	2.26.2.2
+Version:	2.27.3.0
 Release:	1%{?dist}
 License:	GPLv2+
 Group:		Development/Tools
 URL:		http://www.anjuta.org/
-Source0:	http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/%{name}-%{version}.tar.gz
+Source0:	http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.27/%{name}-%{version}.tar.gz
+
+# http://bugzilla.gnome.org/575147
+Patch0:		%{name}-%{version}-class-gen-templates.patch
+# http://bugzilla.gnome.org/588506
+Patch1:		%{name}-%{version}-docdir.patch
 
 BuildRoot:	%(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
 
@@ -21,7 +26,6 @@ Requires:	glade3-libgladeui >= 3.5.7
 Requires:	gnome-icon-theme
 Requires:	hicolor-icon-theme
 Requires:	libgda-sqlite >= 3.99.7
-Requires:	libglade2 >= 2.6.3-2
 Requires(pre):	GConf2
 Requires(post):	GConf2
 Requires(post):	/sbin/ldconfig
@@ -90,6 +94,8 @@ Documentation for Anjuta DevStudio provi
 
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
 
 # Filter unwanted Provides.
 cat << \EOF > %{name}-prov
@@ -154,7 +160,7 @@ make %{?_smp_mflags}
 # http://bugzilla.gnome.org/474987
 pushd ./po
   grep --invert-match \
-    ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$\|.*[.]schemas[.]in$" \
+    ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" \
     POTFILES.in > POTFILES.keep
   mv POTFILES.keep POTFILES.in
   intltool-update --pot
@@ -324,6 +330,36 @@ scrollkeeper-update -q || :
 %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf
 
 %changelog
+* Tue Jul 14 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.27.3.0-1
+- Version bump to 2.27.3.0.
+  Improvements in auto-completion speed.
+  Improvements in Git and Subversion plugins.
+  Ported to GtkBuilder. (GNOME Bugzilla #530740)
+  * Git plugin:
+    + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340)
+  * GTodo plugin:
+    + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710)
+  * Language support (C, C++, Java) plugin:
+    + Fixed crash when dismissing auto-completion popup and deleting some
+      characters. (GNOME Bugzilla #582464)
+  * Project wizard plugin:
+    + Infer project name from project path. (GNOME Bugzilla #568779)
+    + wxWidget projects should not depend on libglade and Gtk+. (GNOME
+      Bugzilla #581074)
+  * Scintilla editor plugin:
+    + Fixed position of tooltips. (GNOME Bugzilla #577721)
+  * Search plugin:
+    + Point to correct line number. (GNOME Bugzilla #576959)
+- Do not drop schemas translations from po files.
+- Removed 'Requires: libglade2 >= 2.6.3-2'.
+
+* Tue Jul 14 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.26.2.2-3
+- Added patch against class generator plugin to fix wrong copyright and
+  license notices. (GNOME Bugzilla #575147)
+
+* Tue Jul 14 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.26.2.2-2
+- Fixed the value of PACKAGE_DOC_DIR. (GNOME Bugzilla #588506)
+
 * Tue Jul 14 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.26.2.2-1
 - Version bump to 2.26.2.2.
   * Git plugin:


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/anjuta/devel/sources,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -p -r1.20 -r1.21
--- sources	13 Jul 2009 22:16:52 -0000	1.20
+++ sources	14 Jul 2009 05:29:40 -0000	1.21
@@ -1 +1 @@
-03191602895a4b0dd15a8298fc255657  anjuta-2.26.2.2.tar.gz
+79931581f77c42e7468a3ee20fc275bd  anjuta-2.27.3.0.tar.gz




More information about the fedora-extras-commits mailing list