rpms/inkscape/EL-5 import.log, NONE, 1.1 inkscape-20090410svn-formats.patch, NONE, 1.1 inkscape-20090410svn-uniconv.patch, NONE, 1.1 inkscape-20090925svn-el5.patch, NONE, 1.1 .cvsignore, 1.13, 1.14 inkscape.spec, 1.39, 1.40 sources, 1.13, 1.14 inkscape-0.45.1-desktop.patch, 1.2, NONE inkscape-0.46-fixlatex.patch, 1.1, NONE inkscape-0.46pre2-icons.patch, 1.1, NONE inkscape-16571-cxxinclude.patch, 1.1, NONE

Lubomir Rintel lkundrak at fedoraproject.org
Fri Sep 25 17:10:25 UTC 2009


Author: lkundrak

Update of /cvs/pkgs/rpms/inkscape/EL-5
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27108/EL-5

Modified Files:
	.cvsignore inkscape.spec sources 
Added Files:
	import.log inkscape-20090410svn-formats.patch 
	inkscape-20090410svn-uniconv.patch 
	inkscape-20090925svn-el5.patch 
Removed Files:
	inkscape-0.45.1-desktop.patch inkscape-0.46-fixlatex.patch 
	inkscape-0.46pre2-icons.patch inkscape-16571-cxxinclude.patch 
Log Message:
Merge from devel.



--- NEW FILE import.log ---
inkscape-0_47-0_16_pre3_20090925svn_fc12:EL-5:inkscape-0.47-0.16.pre3.20090925svn.fc12.src.rpm:1253898601

inkscape-20090410svn-formats.patch:
 inkscape.desktop.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE inkscape-20090410svn-formats.patch ---
See https://bugzilla.redhat.com/show_bug.cgi?id=458845

Lubomir Rintel <lkundrak at v3.sk>

diff -up inkscape/inkscape.desktop.in.uniconv inkscape/inkscape.desktop.in
--- inkscape/inkscape.desktop.in.uniconv	2009-01-06 11:38:13.000000000 +0100
+++ inkscape/inkscape.desktop.in	2009-01-06 11:38:39.000000000 +0100
@@ -4,7 +4,7 @@ _Name=Inkscape Vector Graphics Editor
 _Comment=Create and edit Scalable Vector Graphics images
 Type=Application
 Categories=Graphics;VectorGraphics;GTK;
-MimeType=image/svg+xml;image/svg+xml-compressed;
+MimeType=image/svg+xml;image/svg+xml-compressed;image/cgm;image/x-wmf;application/vnd.corel-draw;application/x-xccx;application/x-xcgm;application/x-xcdt;application/x-xsk1;application/x-xcmx;image/x-xcdr;
 Exec=inkscape %F
 TryExec=inkscape
 Terminal=false

inkscape-20090410svn-uniconv.patch:
 uniconv-ext.py |   16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

--- NEW FILE inkscape-20090410svn-uniconv.patch ---
uniconvertor and uniconv are looked in in reversed order
(therefore we can call uniconv that's different from the uniconvertor one)
https://bugs.launchpad.net/inkscape/+bug/226383

Lubomir Rintel <lkundrak at v3.sk>

diff -up inkscape/share/extensions/uniconv-ext.py.uniconv inkscape/share/extensions/uniconv-ext.py
--- inkscape/share/extensions/uniconv-ext.py.uniconv	2009-03-01 18:06:19.000000000 +0100
+++ inkscape/share/extensions/uniconv-ext.py	2009-04-10 15:22:21.916579400 +0200
@@ -28,19 +28,21 @@ cmd = None
 
 try:
     from subprocess import Popen, PIPE
-    p = Popen('uniconv', shell=True, stdout=PIPE, stderr=PIPE).wait()
+    p = Popen('uniconvertor', shell=True, stdout=PIPE, stderr=PIPE).wait()
     if p==0 :
-        cmd = 'uniconv'
+        cmd = 'uniconvertor'
     else:
-        p = Popen('uniconvertor', shell=True, stdout=PIPE, stderr=PIPE).wait()
+        p = Popen('uniconv', shell=True, stdout=PIPE, stderr=PIPE).wait()
         if p==0 :
-            cmd = 'uniconvertor'
+            cmd = 'uniconv'
 except ImportError:
     from popen2 import Popen3
-    p = Popen3('uniconv', True).wait()
-    if p!=32512 : cmd = 'uniconv'
     p = Popen3('uniconvertor', True).wait()
-    if p!=32512 : cmd = 'uniconvertor'
+    if p!=32512 :
+        cmd = 'uniconvertor'
+    else:
+        p = Popen3('uniconv', True).wait()
+        if p!=32512 : cmd = 'uniconv'
 
 if cmd == None:
     # there's no succeffully-returning uniconv command; try to get the module directly (on Windows)

inkscape-20090925svn-el5.patch:
 autogen.sh                              |   10 +++++-----
 configure.ac                            |    2 +-
 src/Makefile.am                         |    5 +++++
 src/extension/internal/cairo-ps-out.cpp |    5 +++++
 src/widgets/toolbox.cpp                 |    2 ++
 src/xml/rebase-hrefs.cpp                |   14 ++++++++++++--
 6 files changed, 30 insertions(+), 8 deletions(-)

--- NEW FILE inkscape-20090925svn-el5.patch ---
>From 61ef28dbb939d8a65c17e07834d7e31bae7955f2 Mon Sep 17 00:00:00 2001
From: Lubomir Rintel <lkundrak at v3.sk>
Date: Fri, 25 Sep 2009 15:15:56 +0200
Subject: [PATCH] Make it possible to build Inkscape 0.47 on RHEL 5

This contains various quirks to build against slightly older libraries
and tools. Specifically:

* Automake prior to 1.10 generated incorrect rules to build assembly files
which resulted in object files being placed in wrong directories.

* Configure required giomm-2.4 pkg-config package, which is provided by
recent gtkmm, but not by older one, though giomm-2.4 itself is present

* Cairo prior to 1.5.1 did not define macros for PostScript language
levels.

* GTK prior to 2.12.0 did not provide
gtk_entry_completion_set_inline_selection () function

* GLib prior to version 2.15.1 did not provide mechanisms for parsing
URIs.
---
 autogen.sh                              |   10 +++++-----
 configure.ac                            |    2 +-
 src/Makefile.am                         |    5 +++++
 src/extension/internal/cairo-ps-out.cpp |    5 +++++
 src/widgets/toolbox.cpp                 |    2 ++
 src/xml/rebase-hrefs.cpp                |   13 ++++++++++++-
 6 files changed, 30 insertions(+), 7 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index 6a7c631..5c4e34a 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -15,7 +15,7 @@ TEST_TYPE=-f
 FILE=inkscape.spec.in
 
 AUTOCONF_REQUIRED_VERSION=2.52
-AUTOMAKE_REQUIRED_VERSION=1.10
+AUTOMAKE_REQUIRED_VERSION=1.9.6
 GLIB_REQUIRED_VERSION=2.0.0
 INTLTOOL_REQUIRED_VERSION=0.17
 
@@ -86,9 +86,9 @@ fi
 
 echo -n "checking for automake >= $AUTOMAKE_REQUIRED_VERSION ... "
 # Prefer earlier versions just so that the earliest supported version gets test coverage by developers.
-if (automake-1.10 --version) < /dev/null > /dev/null 2>&1; then
-   AUTOMAKE=automake-1.10
-   ACLOCAL=aclocal-1.10
+if (automake-$AUTOMAKE_REQUIRED_VERSION --version) < /dev/null > /dev/null 2>&1; then
+   AUTOMAKE=automake-$AUTOMAKE_REQUIRED_VERSION
+   ACLOCAL=aclocal-$AUTOMAKE_REQUIRED_VERSION
 elif (automake --version) < /dev/null > /dev/null 2>&1; then
    # Leave unversioned automake for a last resort: it may be a version earlier
    # than what we require.
@@ -98,7 +98,7 @@ elif (automake --version) < /dev/null > /dev/null 2>&1; then
    ACLOCAL=aclocal
 else
     echo
-    echo "  You must have automake 1.10 or newer installed to compile $PROJECT."
+    echo "  You must have automake $AUTOMAKE_REQUIRED_VERSION or newer installed to compile $PROJECT."
     DIE=1
 fi
 if test x$AUTOMAKE != x; then
diff --git a/configure.ac b/configure.ac
index fbfa2e5..32ff5a4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -649,7 +649,7 @@ if test $cc_vers_major -gt 3; then
 else
   min_sigc_version=2.0.11
 fi
-PKG_CHECK_MODULES(INKSCAPE, gdkmm-2.4  glibmm-2.4 giomm-2.4 gtkmm-2.4 >= 2.10.0  gtk+-2.0  libxml-2.0 >= 2.6.11  libxslt >= 1.0.15  cairo  sigc++-2.0 >= $min_sigc_version  $ink_spell_pkg  gthread-2.0 >= 2.0 libpng >= 1.2 gsl)
+PKG_CHECK_MODULES(INKSCAPE, gdkmm-2.4  glibmm-2.4  gtkmm-2.4 >= 2.10.0  gtk+-2.0  libxml-2.0 >= 2.6.11  libxslt >= 1.0.15  cairo  sigc++-2.0 >= $min_sigc_version  $ink_spell_pkg  gthread-2.0 >= 2.0 libpng >= 1.2 gsl)
 
 # Check for Apple Mac OS X Carbon framework
 carbon_ok=no
diff --git a/src/Makefile.am b/src/Makefile.am
index 4d57de8..07339ad 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -284,3 +284,8 @@ dist-hook:
 
 distclean-local:
 	rm -f cxxtests.xml cxxtests.log
+
+# Work around old Automake bug (fixed in 1.10)
+CCASCOMPILE ?= $(CPPASCOMPILE)
+.S.o:
+	$(CCASCOMPILE) -c -o $@ $<
diff --git a/src/extension/internal/cairo-ps-out.cpp b/src/extension/internal/cairo-ps-out.cpp
index 9ac1932..d3bda7f 100644
--- a/src/extension/internal/cairo-ps-out.cpp
+++ b/src/extension/internal/cairo-ps-out.cpp
@@ -38,6 +38,11 @@
 
 #include "io/sys.h"
 
+#if CAIRO_VERSION < CAIRO_VERSION_ENCODE(1, 5, 1)
+#  define CAIRO_PS_LEVEL_2 0
+#  define CAIRO_PS_LEVEL_3 1
+#endif
+
 namespace Inkscape {
 namespace Extension {
 namespace Internal {
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index 46ad082..5d3cdea 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -6563,7 +6563,9 @@ cbe_add_completion (GtkComboBoxEntry *cbe, GObject *tbl){
     gtk_entry_completion_set_model(completion, model);
     gtk_entry_completion_set_text_column(completion, 0);
     gtk_entry_completion_set_inline_completion(completion, FALSE);
+#if GTK_CHECK_VERSION(2,12,0)
     gtk_entry_completion_set_inline_selection(completion, FALSE);
+#endif
     gtk_entry_completion_set_popup_completion(completion, TRUE);
     gtk_entry_set_completion(entry, completion);
 
diff --git a/src/xml/rebase-hrefs.cpp b/src/xml/rebase-hrefs.cpp
index c387672..69b2c60 100644
--- a/src/xml/rebase-hrefs.cpp
+++ b/src/xml/rebase-hrefs.cpp
@@ -8,8 +8,12 @@
 #include "xml/attribute-record.h"
 #include "xml/node.h"
 #include <glib/gmem.h>
-#include <glib/gurifuncs.h>
 #include <glib/gutils.h>
+#if GLIB_CHECK_VERSION(2,15,1)
+#include <glib/gurifuncs.h>
+#else
+#include <string.h>
+#endif
 using Inkscape::XML::AttributeRecord;
 
 
@@ -28,6 +32,7 @@ href_needs_rebasing(char const *const href)
          * document, rather than referring to the base URI. */
     }
 
+#if GLIB_CHECK_VERSION(2,15,1)
     /* Don't change data or http hrefs. */
     {
         char *const scheme = g_uri_parse_scheme(href);
@@ -42,6 +47,12 @@ href_needs_rebasing(char const *const href)
             return false;
         }
     }
+#else
+    if (href == strstr (href, "http:") ||
+	href == strstr (href, "https:") ||
+	href == strstr (href, "data:"))
+        return false;
+#endif
 
     /* If absolute then keep it as is.
      *
-- 
1.6.2.5



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/inkscape/EL-5/.cvsignore,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- .cvsignore	6 Apr 2008 13:51:37 -0000	1.13
+++ .cvsignore	25 Sep 2009 17:10:24 -0000	1.14
@@ -1 +1 @@
-inkscape-0.46.tar.bz2
+inkscape.tar.gz


Index: inkscape.spec
===================================================================
RCS file: /cvs/pkgs/rpms/inkscape/EL-5/inkscape.spec,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -p -r1.39 -r1.40
--- inkscape.spec	11 Apr 2008 09:49:04 -0000	1.39
+++ inkscape.spec	25 Sep 2009 17:10:24 -0000	1.40
@@ -1,16 +1,19 @@
 Name:           inkscape
-Version:        0.46
-Release:        2%{?dist}.1
+Version:        0.47
+Release:        0.16.pre3.20090925svn%{?dist}
 Summary:        Vector-based drawing program using SVG
 
 Group:          Applications/Productivity
 License:        GPLv2+
 URL:            http://inkscape.sourceforge.net/
-Source0:        http://download.sourceforge.net/inkscape/%{name}-%{version}.tar.bz2
-Patch0:         inkscape-16571-cxxinclude.patch
-Patch1:         inkscape-0.45.1-desktop.patch
-Patch2:         inkscape-0.46pre2-icons.patch
-Patch3:         inkscape-0.46-fixlatex.patch
+#Source0:        http://download.sourceforge.net/inkscape/%{name}-%{version}.tar.bz2
+# svn export -r22293 https://inkscape.svn.sourceforge.net/svnroot/inkscape/inkscape/trunk@22293 inkscape
+# tar cf - inkscape |xz -9 -c >inkscape.tar.xz
+Source0:        %{name}.tar.gz
+
+Patch0:         inkscape-20090410svn-uniconv.patch
+Patch4:         inkscape-20090410svn-formats.patch
+Patch5:         inkscape-20090925svn-el5.patch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
@@ -29,68 +32,125 @@ BuildRequires:  pango-devel
 BuildRequires:  pkgconfig
 BuildRequires:  lcms-devel >= 1.13
 BuildRequires:  cairo-devel
-BuildRequires:  openssl-devel
 BuildRequires:  dos2unix
-BuildRequires:  perl-XML-Parser
 BuildRequires:  python-devel
 BuildRequires:  poppler-devel
 BuildRequires:  loudmouth-devel
 BuildRequires:  boost-devel
-
-# Use popt-devel if Fedora 8, RHEL 6, newer or unknown,
-# rely on popt otherwise
-%if %{!?fedora:8}%{?fedora} < 8 || %{!?rhel:6}%{?rhel} < 6
-BuildRequires:  popt
-%else
+BuildRequires:  gsl-devel
+BuildRequires:  libwpg-devel
+BuildRequires:  ImageMagick-c++-devel
+BuildRequires:  perl(XML::Parser)
+BuildRequires:  perl(ExtUtils::Embed)
+BuildRequires:  intltool
+# A packaging bug in EL-5
+%if 0%{?fedora > 6}
 BuildRequires:  popt-devel
+%else
+BuildRequires:  popt
 %endif
+BuildRequires:  autoconf
+BuildRequires:  automake
+
+# Incompatible license
+BuildConflicts: openssl-devel
 
+# Disable all for now. TODO: Be smarter
+%if 0
+Requires:       dia
 Requires:       pstoedit
+Requires:       ghostscript
 Requires:       perl(Image::Magick)
+Requires:       tex(latex)
+Requires:       tex(dvips)
+Requires:       transfig
+Requires:       gimp
 Requires:       numpy
-Requires:       PyXML
 Requires:       python-lxml
+Requires:       uniconvertor
+# TODO: Deal with these (autoreqs, disabled now):
+# perl(Cwd)
+# perl(Exporter)
+# perl(File::Basename)
+# perl(Getopt::Long)
+# perl(Getopt::Std)
+# perl(MIME::Base64)
+# perl(Pod::Usage)
+# perl(SVG)
+# perl(SVG::Parser)
+# perl(XML::XQL)
+# perl(XML::XQL::DOM)
+# perl(strict)
+# perl(vars)
+# perl(warnings)
+%endif
 
 Requires(post):   desktop-file-utils
 Requires(postun): desktop-file-utils
 
+# Filter out perl requires and provides
+# XXX: For now _all_
+%global __perl_provides %{nil}
+%global __perl_requires %{nil}
+
 %description
-Inkscape is a vector-based drawing program, like CorelDraw® or Adobe
-Illustrator® from the proprietary software world, and Sketch or Karbon14 from
-the free software world. It is free software, distributed under the terms of
-the Gnu General Public License, Version 2.
-
-Inkscape uses W3C SVG as its native file format. It is therefore a very useful
-tool for web designers and as an interchange format for desktop publishing.
-
-It has a relatively modern display engine, giving you finely antialiased
-display, alpha transparencies, vector fonts and so on. Inkscape is written in
-C and C++, using the Gtk+ toolkit and optionally some Gnome libraries.
+Inkscape is a vector graphics editor, with capabilities similar to
+Illustrator, CorelDraw, or Xara X, using the W3C standard Scalable Vector
+Graphics (SVG) file format.  It is therefore a very useful tool for web
+designers and as an interchange format for desktop publishing.
+
+Inkscape supports many advanced SVG features (markers, clones, alpha
+blending, etc.) and great care is taken in designing a streamlined
+interface. It is very easy to edit nodes, perform complex path operations,
+trace bitmaps and much more.
+
+
+%package view
+Summary:        Viewing program for SVG files
+Group:          Applications/Productivity
+
+%description view
+Viewer for files in W3C standard Scalable Vector Graphics (SVG) file
+format.
+
+
+%package docs
+Summary:        Documentation for Inkscape
+Group:          Documentation
+Requires:       inkscape
+
+%description docs
+Tutorial and examples for Inkscape, a graphics editor for vector
+graphics in W3C standard Scalable Vector Graphics (SVG) file format.
 
 
 %prep
-%setup -q
-%patch0 -p1 -b .cxxinclude
-%patch1 -p1 -b .desktop
-%patch2 -p1 -b .icons
-%patch3 -p1 -b .fixlatex
-find -type f -regex '.*\.\(cpp\|h\)' -perm +111 -exec chmod -x {} ';'
-find share/extensions/ -type f -regex '.*\.py' -perm +111 -exec chmod -x {} ';'
+%setup -q -n %{name}
+%patch0 -p1 -b .uniconv
+%patch4 -p1 -b .formats
+%patch5 -p1 -b .el5
+
+# https://bugs.launchpad.net/inkscape/+bug/314381
+# A couple of files have executable bits set,
+# despite not being executable
+(find . \( -name '*.cpp' -o -name '*.h' \) -perm +111
+	find share/extensions -name '*.py' -perm +111
+) |xargs chmod -x
+
+# Fix end of line encodings
 dos2unix -k -q share/extensions/*.py
 
 
 %build
-%configure                     \
---disable-dependency-tracking  \
---with-xinerama                \
---enable-static=no             \
---with-python                  \
---with-perl                    \
---with-gnome-vfs               \
---with-inkjar                  \
---enable-inkboard              \
---enable-lcms                  \
---enable-poppler-cairo
+sh autogen.sh
+%configure                      \
+        --with-python           \
+        --with-perl             \
+        --with-gnome-vfs        \
+        --with-xft              \
+        --enable-lcms           \
+        --enable-poppler-cairo  \
+        --disable-dependency-tracking
 
 make %{?_smp_mflags}
 
@@ -98,41 +158,162 @@ make %{?_smp_mflags}
 %install
 rm -rf $RPM_BUILD_ROOT
 make install DESTDIR=$RPM_BUILD_ROOT
-%find_lang %{name}
 find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
 
-rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/extensions/outline2svg.*
-rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/extensions/txt2svg.*
+desktop-file-install --vendor fedora --delete-original  \
+        --dir $RPM_BUILD_ROOT%{_datadir}/applications   \
+        $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
+
+# No skencil anymore
+rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/extensions/sk2svg.sh
+
+%find_lang %{name}
+
 
-desktop-file-install --vendor fedora --delete-original     \
-  --dir $RPM_BUILD_ROOT%{_datadir}/applications            \
-  $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
+%check
+# XXX: Tests fail, ignore it for now
+make -k check || :
 
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 
-%post
-update-desktop-database %{_datadir}/applications > /dev/null 2>&1 || :
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+%{_bindir}/inkscape
+%dir %{_datadir}/inkscape
+%{_datadir}/inkscape/clipart
+%{_datadir}/inkscape/extensions
+%{_datadir}/inkscape/filters
+%{_datadir}/inkscape/fonts
+%{_datadir}/inkscape/gradients
+%{_datadir}/inkscape/icons
+%{_datadir}/inkscape/keys
+%{_datadir}/inkscape/markers
+%{_datadir}/inkscape/palettes
+%{_datadir}/inkscape/patterns
+%{_datadir}/inkscape/screens
+%{_datadir}/inkscape/templates
+%{_datadir}/inkscape/ui
+%{_datadir}/applications/fedora-inkscape.desktop
+%{_datadir}/pixmaps/inkscape.png
+%{_mandir}/man1/inkscape.1*
+%{_mandir}/fr/man1/inkscape.1*
+%doc AUTHORS COPYING ChangeLog NEWS README
 
 
-%postun
-update-desktop-database %{_datadir}/applications > /dev/null 2>&1 || :
+%files view
+%defattr(-,root,root,-)
+%{_bindir}/inkview
+%{_mandir}/man1/inkview.1*
+%doc AUTHORS COPYING ChangeLog NEWS README
 
 
-%files -f %{name}.lang
+%files docs
 %defattr(-,root,root,-)
-%doc AUTHORS COPYING ChangeLog NEWS README
-%doc %{_mandir}/man1/*
-%{_bindir}/*
-%{_datadir}/%{name}/
-%{_datadir}/applications/*.desktop
-%{_datadir}/pixmaps/*
-%{_mandir}/fr/man1/*
+%dir %{_datadir}/inkscape
+%{_datadir}/inkscape/tutorials
+%{_datadir}/inkscape/examples
 
 
 %changelog
+* Mon Sep 07 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.16.pre3.20090925svn
+- Move to a later snapshot
+- Drop debugging compiler flags, enable optimizations again
+- Make it build on everything since EL5 again
+
+* Mon Sep 07 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.16.pre2.20090907svn
+- Move inkview man page to -view subpackage (#515358)
+- Add license, etc. to main package
+
+* Mon Sep 07 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.15.pre2.20090907svn
+- Update to a post-pre2 snapshot
+
+* Mon Aug 10 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.15.pre1.20090629svn
+- Update to a post-pre1 snapshot
+- Drop upstreamed CRC32 fix
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.47-0.14.pre0.20090629svn
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Mon Jun 29 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.13.pre0.20090629svn
+- Update to a newer snapshot
+
+* Tue Jun 16 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.12.pre0.20090616svn
+- Update to post-pre0 snapshot
+
+* Tue Jun 02 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.11.20090602svn
+- More recent snapshot
+- Upstream removed rasterized icons again
+
+* Sat May 23 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.10.20090518svn
+- Rebuild for new poppler
+
+* Mon May 18 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.9.20090518svn
+- Update past upstream Beta release
+
+* Mon May 18 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.8.20090508svn
+- Fix ODG export
+
+* Fri May 08 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.7.20090508svn
+- Update to a post-alpha snapshot
+- Upstream applied our GCC 4.4 patch
+
+* Fri Apr 10 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.6.20090410svn
+- Update to newer snapshot
+- Fix doc/incview reversed subpackage content
+
+* Wed Mar 04 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.6.20090301svn
+- Rebuild for new ImageMagick
+
+* Wed Mar 04 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.5.20090301svn
+- Split documentation and inkview into subpackages
+
+* Mon Mar 02 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.4.20090301svn
+- Bump to later SVN snapshot to fix inkscape/+bug/331864
+- Fix a startup crash when compiled with GCC 4.4
+- It even runs now! :)
+
+* Fri Feb 27 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.4.20090227svn
+- Enable the test suite
+
+* Fri Feb 27 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.3.20090227svn
+- Past midnight! :)
+- More recent snapshot, our gcc44 fixes now upstream
+- One more gcc44 fix, it even compiles now
+- We install icons now, update icon cache
+- Disable inkboard, for it won't currently compile
+
+* Thu Feb 26 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.3.20090226svn
+- Later snapshot
+- Compile with GCC 4.4
+
+* Tue Jan 06 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.3.20090105svn
+- Update to newer SVN
+- Drop upstreamed patches
+- Enable WordPerfect Graphics support
+- Enable embedded Perl scripting
+- Enable Imagemagick support
+- Disable OpenSSL due to licensing issues
+
+* Thu Aug 14 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.3.20080814svn
+- Update to today's SVN snapshot
+- Drop the upstreamed poppler patch
+
+* Wed Aug 13 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.2.20080705svn
+- Rediff patches for zero fuzz
+- Use uniconvertor to handle CDR and WMF (#458845)
+
+* Wed Jul 09 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.1.20080705svn
+- Subversion snapshot
+
+* Wed Jul 09 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.46-4
+- Fix compile issues with newer gtk and poppler
+
+* Thu Jun 26 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.46-3
+- Remove useless old hack, that triggered an assert after gtkfilechooser switched to gio
+
 * Fri Apr 11 2008 Lubomir Kundrak <lkundrak at redhat.com> - 0.46-2.1
 - More buildrequires more flexible, so that this builds on RHEL
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/inkscape/EL-5/sources,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- sources	6 Apr 2008 13:51:37 -0000	1.13
+++ sources	25 Sep 2009 17:10:24 -0000	1.14
@@ -1 +1 @@
-59997096c3640b2601c2b4afba8a3d75  inkscape-0.46.tar.bz2
+acc22f1af9defbbb7f6759e6810b966a  inkscape.tar.gz


--- inkscape-0.45.1-desktop.patch DELETED ---


--- inkscape-0.46-fixlatex.patch DELETED ---


--- inkscape-0.46pre2-icons.patch DELETED ---


--- inkscape-16571-cxxinclude.patch DELETED ---




More information about the fedora-extras-commits mailing list