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

Debarshi Ray rishi at fedoraproject.org
Tue Apr 7 03:34:24 UTC 2009


Author: rishi

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

Modified Files:
	.cvsignore anjuta.spec sources 
Removed Files:
	anjuta-2.25.903.0-configure.patch 
Log Message:
* Tue Apr 07 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.26.0.1-1
- Version bump to 2.26.0.1.
  * Get rid of libgnomecanvas. (GNOME Bugzilla #571740)
  * Huge improvements in the tooltip area.
  * Prevent hang when pressing backspace in the editor.
  * Git plugin:
    + Fixed crash.
  * GtkSourceView editor plugin:
    + Actually save modified files on exit. (GNOME Bugzilla #574376)
  * Language support (C, C++, Java) plugin:
    + Showing calltips should not hinder editing. (GNOME Bugzilla #574802)
  * Scintilla editor plugin:
    + Use line endings correctly. (GNOME Bugzilla #574607)
  * Search plugin:
    + Should point to correct line number. (GNOME Bugzilla #576959)
  * Translation updates: pt_BR, en_GB, da, fi, fr, gl, el, it, ca, pt, sv, es,
    tr, hu, vi, de, sl, ru, ja, mr, ar, th and pl.
  * http://ftp.acc.umu.se/pub/GNOME/sources/anjuta/2.26/anjuta-2.26.0.1.news
- configure fixes accepted by upstream.
- Stripped redundant translations from .mo files. (GNOME Bugzilla #474987)



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/anjuta/devel/.cvsignore,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- .cvsignore	11 Mar 2009 11:25:43 -0000	1.17
+++ .cvsignore	7 Apr 2009 03:33:54 -0000	1.18
@@ -1 +1 @@
-anjuta-2.25.903.0.tar.gz
+anjuta-2.26.0.1.tar.gz


Index: anjuta.spec
===================================================================
RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- anjuta.spec	11 Mar 2009 11:25:43 -0000	1.69
+++ anjuta.spec	7 Apr 2009 03:33:54 -0000	1.70
@@ -1,14 +1,12 @@
 Summary:	A GNOME development IDE for C/C++
 Name:		anjuta
 Epoch:		1
-Version:	2.25.903.0
+Version:	2.26.0.1
 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
+Source0:	http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/%{name}-%{version}.tar.gz
 
 BuildRoot:	%(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
 
@@ -34,13 +32,13 @@
 BuildRequires:	devhelp-devel >= 0.22
 BuildRequires:	e2fsprogs-devel
 BuildRequires:	gettext
-BuildRequires:	glade3-libgladeui-devel >= 3.5.7
+BuildRequires:	glade3-libgladeui-devel >= 3.6.0
 BuildRequires:	gnome-doc-utils
-BuildRequires:	gtksourceview2-devel >= 2.3.1
+BuildRequires:	gtksourceview2-devel >= 2.4.0
 BuildRequires:	libgda-devel >= 3.99.7
 BuildRequires:	graphviz-devel
 BuildRequires:	intltool
-BuildRequires:	libgdl-devel >= 2.23.0
+BuildRequires:	libgdl-devel >= 2.26.0
 BuildRequires:	libgnomeui-devel
 BuildRequires:	neon-devel
 BuildRequires:	pcre-devel
@@ -48,7 +46,7 @@
 BuildRequires:	perl(XML::Parser)
 BuildRequires:	scrollkeeper
 BuildRequires:	subversion-devel
-BuildRequires:	unique-devel
+BuildRequires:	unique-devel >= 1.0.0
 BuildRequires:	vte-devel
 
 %description
@@ -93,7 +91,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 # Filter unwanted Provides.
 cat << \EOF > %{name}-prov
@@ -141,7 +138,7 @@
 %build
 export PKG_CONFIG_PATH="./PKGCONFIG"
 %configure --disable-schemas-install --disable-static --enable-gtk-doc \
-  --enable-devhelp --enable-graphviz --enable-plugin-glade \
+  --enable-plugin-devhelp --enable-graphviz --enable-plugin-glade \
   --enable-plugin-scintilla --enable-plugin-sourceview \
   --enable-plugin-subversion --enable-plugin-valgrind \
   --with-svn-lib=%{_libdir}
@@ -151,6 +148,20 @@
 
 make %{?_smp_mflags}
 
+# Strip unneeded translations from .mo files:
+# http://bugzilla.gnome.org/474987
+pushd ./po
+  grep --invert-match \
+    ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$\|.*[.]schemas[.]in$" \
+    POTFILES.in > POTFILES.keep
+  mv POTFILES.keep POTFILES.in
+  intltool-update --pot
+  for p in *.po; do
+    msgmerge $p %{name}.pot > $p.out
+    msgfmt -o `basename $p .po`.gmo $p.out
+  done
+popd
+
 %install
 rm -rf $RPM_BUILD_ROOT
 export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
@@ -311,6 +322,27 @@
 %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf
 
 %changelog
+* Tue Apr 07 2009 Debarshi Ray <rishi at fedoraproject.org> - 1:2.26.0.1-1
+- Version bump to 2.26.0.1.
+  * Get rid of libgnomecanvas. (GNOME Bugzilla #571740)
+  * Huge improvements in the tooltip area.
+  * Prevent hang when pressing backspace in the editor.
+  * Git plugin:
+    + Fixed crash.
+  * GtkSourceView editor plugin:
+    + Actually save modified files on exit. (GNOME Bugzilla #574376)
+  * Language support (C, C++, Java) plugin:
+    + Showing calltips should not hinder editing. (GNOME Bugzilla #574802)
+  * Scintilla editor plugin:
+    + Use line endings correctly. (GNOME Bugzilla #574607)
+  * Search plugin:
+    + Should point to correct line number. (GNOME Bugzilla #576959)
+  * Translation updates: pt_BR, en_GB, da, fi, fr, gl, el, it, ca, pt, sv, es,
+    tr, hu, vi, de, sl, ru, ja, mr, ar, th and pl.
+  * http://ftp.acc.umu.se/pub/GNOME/sources/anjuta/2.26/anjuta-2.26.0.1.news
+- configure fixes accepted by upstream.
+- Stripped redundant translations from .mo files. (GNOME Bugzilla #474987)
+
 * 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.


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/anjuta/devel/sources,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- sources	11 Mar 2009 11:25:44 -0000	1.17
+++ sources	7 Apr 2009 03:33:54 -0000	1.18
@@ -1 +1 @@
-de93cc2a14f0169a29f0c10e18ff1c52  anjuta-2.25.903.0.tar.gz
+35624d399ae9083a46deb9e7f2da8bcb  anjuta-2.26.0.1.tar.gz


--- anjuta-2.25.903.0-configure.patch DELETED ---




More information about the fedora-extras-commits mailing list