From c893f72bfbf041becc6cd2082616956bfcc82644 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Apr 10 2018 05:17:21 +0000 Subject: import inkscape-0.92.2-2.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c741690 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/inkscape-0.92.2.tar.bz2 diff --git a/.inkscape.metadata b/.inkscape.metadata new file mode 100644 index 0000000..a75cabf --- /dev/null +++ b/.inkscape.metadata @@ -0,0 +1 @@ +c620d7aac594a0f839f2f7840d57e26f00991d16 SOURCES/inkscape-0.92.2.tar.bz2 diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/inkscape.spec b/SPECS/inkscape.spec new file mode 100644 index 0000000..cff079e --- /dev/null +++ b/SPECS/inkscape.spec @@ -0,0 +1,753 @@ +Name: inkscape +Version: 0.92.2 +Release: 2%{?dist} +Summary: Vector-based drawing program using SVG + +Group: Applications/Productivity +License: GPLv2+ +URL: http://inkscape.sourceforge.net/ +Source0: http://downloads.sourceforge.net/inkscape/%{name}-%{version}.tar.bz2 + +BuildRequires: atk-devel +BuildRequires: desktop-file-utils +BuildRequires: freetype-devel +BuildRequires: gc-devel >= 6.4 +BuildRequires: gettext +BuildRequires: gtkmm24-devel >= 2.8.0 +BuildRequires: gtkspell-devel +BuildRequires: libpng-devel >= 1.2 +BuildRequires: libxml2-devel >= 2.6.11 +BuildRequires: libxslt-devel >= 1.0.15 +BuildRequires: pango-devel +BuildRequires: pkgconfig +BuildRequires: lcms2-devel +BuildRequires: cairo-devel +BuildRequires: dos2unix +BuildRequires: python-devel +BuildRequires: poppler-glib-devel +BuildRequires: boost-devel +BuildRequires: gsl-devel +BuildRequires: libwpg-devel >= 0.3.0 +BuildRequires: ImageMagick-c++-devel +BuildRequires: perl(XML::Parser) +BuildRequires: perl(ExtUtils::Embed) +BuildRequires: intltool +BuildRequires: popt-devel +# We detect new poppler in inkscape-0.48.2-poppler_020.patch +BuildRequires: automake +BuildRequires: cmake + +# 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: python-lxml +# 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: python-lxml +Requires: numpy +%if ! 0%{?rhel} +Requires: uniconvertor +%endif + +# the package requires libperl.so, so it also has to require this: +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +# Filter out perl requires and provides +# XXX: For now _all_ +%global __perl_provides %{nil} +%global __perl_requires %{nil} + +%description +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 +# the package requires libperl.so, so it also has to require this: +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +Requires: inkscape = %{version}-%{release} + +%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 + +# https://bugs.launchpad.net/inkscape/+bug/314381 +# A couple of files have executable bits set, +# despite not being executable +find . -name '*.cpp' | xargs chmod -x +find . -name '*.h' | xargs chmod -x +find share/extensions -name '*.py' | xargs chmod -x + +# Fix end of line encodings +dos2unix -k -q share/extensions/*.py + + +%build +# --disable-strict-build is needed due to gtkmm using a deprecated glibmm +# method: https://lists.fedoraproject.org/pipermail/devel/2015-July/212652.html +# If upstream gtkmm fixes https://bugzilla.gnome.org/show_bug.cgi?id=752797 +# this can be removed. +export RPM_OPT_FLAGS="$RPM_OPT_FLAGS -std=c++11 -fno-strict-overflow" +export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" +export CXXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" + +cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DWITH_GNOME_VFS:BOOL=OFF . + +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install VERBOSE=1 DESTDIR=$RPM_BUILD_ROOT +sed -i 's/Drawing Shortcut Group/X-Drawing Shortcut Group/g' $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop +find $RPM_BUILD_ROOT -type f -name 'lib*.a' | xargs rm -f + +desktop-file-install --vendor="%{?desktop_vendor}" --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} + + +%check +# XXX: Tests fail, ignore it for now +make -k check || : + + +%clean +rm -rf $RPM_BUILD_ROOT + +%post +/bin/touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : + +%posttrans +/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : +/usr/bin/update-desktop-database -q &> /dev/null ||: + +%postun +if [ $1 -eq 0 ] ; then +/bin/touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : +/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : +/usr/bin/update-desktop-database -q &> /dev/null ||: +fi + + +%files -f %{name}.lang +%defattr(-,root,root,-) +%{_bindir}/inkscape +%dir %{_datadir}/inkscape +%{_datadir}/inkscape/attributes +%{_datadir}/inkscape/branding +%{_datadir}/inkscape/symbols +%{_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/*inkscape.desktop +%{_datadir}/icons/hicolor/*/*/inkscape* +%dir %{_prefix}/lib/inkscape +%{_prefix}/lib/inkscape/lib*.so +%{_mandir}/*/*gz +%exclude %{_mandir}/man1/inkview.1* +%doc AUTHORS COPYING ChangeLog NEWS README + + +%files view +%defattr(-,root,root,-) +%{_bindir}/inkview +%{_mandir}/man1/inkview.1* +%doc AUTHORS COPYING ChangeLog NEWS README + + +%files docs +%defattr(-,root,root,-) +%dir %{_datadir}/inkscape +%{_datadir}/inkscape/tutorials +%{_datadir}/inkscape/examples + + +%changelog +* Thu Aug 24 2017 Jan Horak - 0.92.2-2 +- Rebase to version 0.92.2 + +* Fri Apr 1 2016 Jan Horak - 0.91-2 +- Rebase to version 0.91 + +* Tue Jul 21 2015 Jan Horak - 0.48.4-15 +- Building without gnome-vfs + +* Thu May 7 2015 Jan Horak - 0.48.4-13 +- Added patch to support newer poppler + +* Thu Apr 30 2015 Jan Horak - 0.48.4-11 +- Fix for libwpg rebase + +* Fri Feb 28 2014 Jan Horak - 0.48.4-10 +- Get rid of SpSVG extension - rhbz#1023508 + +* Fri Jan 24 2014 Daniel Mach - 0.48.4-9 +- Mass rebuild 2014-01-24 + +* Fri Dec 27 2013 Daniel Mach - 0.48.4-8 +- Mass rebuild 2013-12-27 + +* Tue Sep 24 2013 Jan Horak - 0.48.4-7 +- Added -fno-strict-aliasing to build flags + +* Thu Sep 12 2013 Jan Horak - 0.48.4-6 +- Rebuild with lcms2 + +* Tue Jun 25 2013 Marek Kasik - 0.48.4-5.1 +- Rebuild (poppler-0.22.5) + +* Wed May 08 2013 Colin Walters - 0.48.4-5 +- Drop uniconverter dep; we are not supporting wmf export in RHEL + apparently. + +* Fri Feb 15 2013 Jon Ciesla - 0.48.4-4 +- Fix FTBFS. + +* Thu Feb 14 2013 Fedora Release Engineering - 0.48.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Fri Jan 18 2013 Marek Kasik - 0.48.4-2 +- Rebuild (poppler-0.22.0) + +* Thu Dec 06 2012 Jon Ciesla - 0.48.3.1-4 +- 0.48.4, fix XXE security flaw. +- Correct man page ownership. + +* Thu Dec 06 2012 Jon Ciesla - 0.48.3.1-4 +- Fix directory ownership, BZ 873817. +- Fix previous changelog version. + +* Mon Nov 19 2012 Nils Philippsen - 0.48.3.1-3 +- update sourceforge download URL + +* Thu Nov 01 2012 Jon Ciesla - 0.48.3.1-2 +- Allow loading large XML, BZ 871012. + +* Fri Oct 05 2012 Jon Ciesla - 0.48.3.1-1 +- Lastest upstream. + +* Thu Oct 04 2012 Jon Ciesla - 0.48.2-13 +- Added dep on uniconvertor, BZ 796424. + +* Thu Jul 19 2012 Fedora Release Engineering - 0.48.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jul 09 2012 Petr Pisar - 0.48.2-11 +- Perl 5.16 rebuild + +* Mon Jul 2 2012 Marek Kasik - 0.48.2-10 +- Rebuild (poppler-0.20.1) + +* Wed Jun 27 2012 Petr Pisar - 0.48.2-9 +- Perl 5.16 rebuild + +* Sat Jun 23 2012 Rex Dieter +- 0.48.2-8 +- fix icon/desktop-file scriptlets (#739375) +- drop .desktop vendor (f18+) +- inkscape doesn't build with poppler-0.20.0 (#822413) + +* Fri Jun 15 2012 Petr Pisar - 0.48.2-7 +- Perl 5.16 rebuild + +* Mon Jun 11 2012 Adel Gadllah - 0.48.2-6 +- Rebuild for new poppler + +* Wed Apr 11 2012 Peter Robinson - 0.48.2-5 +- Rebuild for ImageMagik + +* Thu Mar 8 2012 Daniel Drake - 0.48.2-4 +- Fix build with GCC 4.7 + +* Tue Feb 28 2012 Fedora Release Engineering - 0.48.2-3 +- Rebuilt for c++ ABI breakage + +* Fri Jan 13 2012 Fedora Release Engineering - 0.48.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Nov 15 2011 German Ruiz - 0.48.2-1 +- New upstream version +- Fix glib include compile problem +- Fix compilation against libpng-1.5 + +* Fri Oct 28 2011 Rex Dieter - 0.48.1-10 +- rebuild(poppler) + +* Fri Sep 30 2011 Marek Kasik - 0.48.1-9 +- Rebuild (poppler-0.18.0) + +* Mon Sep 19 2011 Marek Kasik - 0.48.1-8 +- Rebuild (poppler-0.17.3) + +* Thu Jul 21 2011 Petr Sabata - 0.48.1-7 +- Perl mass rebuild + +* Tue Jul 19 2011 Petr Sabata - 0.48.1-6 +- Perl mass rebuild + +* Fri Jul 15 2011 Marek Kasik - 0.48.1-5 +- Rebuild (poppler-0.17.0) + +* Sun Mar 13 2011 Marek Kasik - 0.48.1-4 +- Rebuild (poppler-0.16.3) + +* Wed Feb 09 2011 Fedora Release Engineering - 0.48.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 09 2011 Lubomir Rintel - 0.48.1-2 +- Re-enable GVFS for OCAL + +* Mon Feb 07 2011 Lubomir Rintel - 0.48.1-1 +- Bump release + +* Fri Feb 04 2011 Lubomir Rintel - 0.48.0-10 +- Drop gnome-vfs requirement +- Fix Rawhide build + +* Sat Jan 01 2011 Rex Dieter - 0.48.0-9 +- rebuild (poppler) + +* Wed Dec 15 2010 Rex Dieter - 0.48.0-8 +- rebuild (poppler) + +* Wed Dec 08 2010 Caolán McNamara - 0.48.0-7 +- rebuilt (libwpd) + +* Sun Nov 14 2010 Lubomir Rintel - 0.48.0-6 +- rebuilt (poppler) + +* Tue Oct 05 2010 Nils Philippsen - 0.48.0-5 +- Rebuild for poppler update + +* Wed Sep 29 2010 jkeating - 0.48.0-4 +- Rebuilt for gcc bug 634757 + +* Wed Sep 29 2010 Dan Horák - 0.48.0-3 +- drop the s390(x) ExcludeArch + +* Mon Sep 20 2010 Tom "spot" Callaway - 0.48.0-2 +- rebuild for new ImageMagick + +* Wed Aug 25 2010 Lubomir Rintel - 0.48.0-1 +- New upstream release +- Drop el5 support + +* Thu Aug 19 2010 Rex Dieter - 0.48-0.5.20100505bzr +- rebuild (poppler) + +* Tue Jul 27 2010 David Malcolm - 0.48-0.4.20100505bzr +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Tue Jun 01 2010 Marcela Maslanova - 0.48-0.3.20100505bzr +- Mass rebuild with perl-5.12.0 + +* Wed May 05 2010 Lubomir Rintel - 0.48-0.2.20100505bzr +- Move to later snapshot +- Drop uniconvertor patch + +* Tue Apr 06 2010 Caolán McNamara - 0.48-0.2.20100318bzr +- Resolves: rhbz#565106 fix inkscape-0.47-x11.patch to not clobber INKSCAPE_LIBS + +* Thu Mar 18 2010 Lubomir Rintel - 0.48-0.1.20100318bzr +- Update to latest bazaar snapshot + +* Thu Feb 18 2010 Lubomir Rintel - 0.47-7 +- Fix build + +* Wed Jan 20 2010 Stepan Kasal - 0.47-6 +- ExcludeArch: s390 s390x + +* Fri Jan 15 2010 Stepan Kasal - 0.47-5 +- require perl(:MODULE_COMPAT_5.10.x) because the package requires libperl.so +- the same for inkscape-view + +* Fri Jan 8 2010 Owen Taylor - 0.47-4 +- Remove loudmouth BuildRequires; there is no current usage of loudmouth in the code + +* Sun Dec 06 2009 Lubomir Rintel - 0.47-2 +- Fix Rawhide build. + +* Wed Nov 25 2009 Lubomir Rintel - 0.47-1 +- Stable release + +* Mon Nov 23 2009 Adam Jackson 0.47-0.18.pre4.20091101svn +- Fix RHEL6 build. + +* Mon Sep 07 2009 Lubomir Rintel - 0.47-0.17.pre4.20091101svn +- Icon for main window (#532325) + +* Mon Sep 07 2009 Lubomir Rintel - 0.47-0.16.pre4.20091101svn +- Move to a later snapshot +- python-lxml and numpy seem to be rather popular, add them as hard deps + +* Mon Sep 07 2009 Lubomir Rintel - 0.47-0.16.pre3.20091017svn +- Move to a later snapshot + +* Mon Sep 07 2009 Lubomir Rintel - 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 - 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 - 0.47-0.15.pre2.20090907svn +- Update to a post-pre2 snapshot + +* Mon Aug 10 2009 Lubomir Rintel - 0.47-0.15.pre1.20090629svn +- Update to a post-pre1 snapshot +- Drop upstreamed CRC32 fix + +* Fri Jul 24 2009 Fedora Release Engineering - 0.47-0.14.pre0.20090629svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jun 29 2009 Lubomir Rintel - 0.47-0.13.pre0.20090629svn +- Update to a newer snapshot + +* Tue Jun 16 2009 Lubomir Rintel - 0.47-0.12.pre0.20090616svn +- Update to post-pre0 snapshot + +* Tue Jun 02 2009 Lubomir Rintel - 0.47-0.11.20090602svn +- More recent snapshot +- Upstream removed rasterized icons again + +* Sat May 23 2009 Lubomir Rintel - 0.47-0.10.20090518svn +- Rebuild for new poppler + +* Mon May 18 2009 Lubomir Rintel - 0.47-0.9.20090518svn +- Update past upstream Beta release + +* Mon May 18 2009 Lubomir Rintel - 0.47-0.8.20090508svn +- Fix ODG export + +* Fri May 08 2009 Lubomir Rintel - 0.47-0.7.20090508svn +- Update to a post-alpha snapshot +- Upstream applied our GCC 4.4 patch + +* Fri Apr 10 2009 Lubomir Rintel - 0.47-0.6.20090410svn +- Update to newer snapshot +- Fix doc/incview reversed subpackage content + +* Wed Mar 04 2009 Lubomir Rintel - 0.47-0.6.20090301svn +- Rebuild for new ImageMagick + +* Wed Mar 04 2009 Lubomir Rintel - 0.47-0.5.20090301svn +- Split documentation and inkview into subpackages + +* Mon Mar 02 2009 Lubomir Rintel - 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 - 0.47-0.4.20090227svn +- Enable the test suite + +* Fri Feb 27 2009 Lubomir Rintel - 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 - 0.47-0.3.20090226svn +- Later snapshot +- Compile with GCC 4.4 + +* Tue Jan 06 2009 Lubomir Rintel - 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 - 0.47-0.3.20080814svn +- Update to today's SVN snapshot +- Drop the upstreamed poppler patch + +* Wed Aug 13 2008 Lubomir Rintel - 0.47-0.2.20080705svn +- Rediff patches for zero fuzz +- Use uniconvertor to handle CDR and WMF (#458845) + +* Wed Jul 09 2008 Lubomir Rintel - 0.47-0.1.20080705svn +- Subversion snapshot + +* Wed Jul 09 2008 Lubomir Rintel - 0.46-4 +- Fix compile issues with newer gtk and poppler + +* Thu Jun 26 2008 Lubomir Rintel - 0.46-3 +- Remove useless old hack, that triggered an assert after gtkfilechooser switched to gio + +* Fri Apr 11 2008 Lubomir Kundrak - 0.46-2.1 +- More buildrequires more flexible, so that this builds on RHEL + +* Sat Apr 05 2008 Lubomir Kundrak - 0.46-2 +- Fix LaTeX rendering, #441017 + +* Tue Mar 25 2008 Lubomir Kundrak - 0.46-1 +- 0.46 released + +* Sun Mar 23 2008 Lubomir Kundrak - 0.46-0.3.pre3 +- Rebuild for newer Poppler + +* Wed Mar 12 2008 Lubomir Kundrak - 0.46-0.2.pre3 +- Probably last prerelease? + +* Fri Feb 22 2008 Lubomir Kundrak - 0.46-0.2.pre2 +- Panel icon sizes + +* Sun Feb 17 2008 Lubomir Kundrak - 0.46-0.1.pre2 +- 0.46pre2 +- Dropping upstreamed patches + +* Sat Feb 16 2008 Lubomir Kundrak - 0.45.1+0.46pre1-5 +- Attempt to fix the font selector (#432892) + +* Thu Feb 14 2008 Lubomir Kundrak - 0.45.1+0.46pre1-4 +- Tolerate recoverable errors in OCAL feeds +- Fix OCAL insecure temporary file usage (#432807) + +* Wed Feb 13 2008 Lubomir Kundrak - 0.45.1+0.46pre1-3 +- Fix crash when adding text objects (#432220) + +* Thu Feb 07 2008 Lubomir Kundrak - 0.45.1+0.46pre1-2 +- Build with gcc-4.3 + +* Wed Feb 06 2008 Lubomir Kundrak - 0.45.1+0.46pre1-1 +- 0.46 prerelease +- Minor cosmetic changes to satisfy the QA script +- Dependency on Boost +- Inkboard is not optional +- Merge from Denis Leroy's svn16571 snapshot: +- Require specific gtkmm24-devel versions +- enable-poppler-cairo +- No longer BuildRequire libsigc++20-devel + +* Wed Dec 5 2007 Denis Leroy - 0.45.1-5 +- Rebuild with new openssl + +* Sun Dec 02 2007 Lubomir Kundrak - 0.45.1-4 +- Added missing dependencies for modules (#301881) + +* Sun Dec 02 2007 Lubomir Kundrak - 0.45.1-3 +- Satisfy desktop-file-validate, so that Rawhide build won't break + +* Sat Dec 01 2007 Lubomir Kundrak - 0.45.1-2 +- Use GTK print dialog +- Added compressed SVG association (#245413) +- popt headers went into popt-devel, post Fedora 7 +- Fix macro usage in changelog + +* Wed Mar 21 2007 Denis Leroy - 0.45.1-1 +- Update to bugfix release 0.45.1 +- Added R to ImageMagick-perl (#231563) + +* Wed Feb 7 2007 Denis Leroy - 0.45-1 +- Update to 0.45 +- Enabled inkboard, perl and python extensions +- Added patch for correct python autodetection +- LaTex patch integrated upstreamed, removed +- Some rpmlint cleanups + +* Wed Dec 6 2006 Denis Leroy - 0.44.1-2 +- Added patches to fix LaTex import (#217699) +- Added patch to base postscript import on pstoedit plot-svg + +* Thu Sep 7 2006 Denis Leroy - 0.44.1-1 +- Update to 0.44.1 +- Removed png export patch, integrated upstream +- Some updated BRs + +* Mon Aug 28 2006 Denis Leroy - 0.44-6 +- FE6 Rebuild + +* Tue Aug 22 2006 Denis Leroy - 0.44-5 +- Removed skencil Require (bug 203229) + +* Thu Aug 10 2006 Denis Leroy - 0.44-4 +- Added patch to fix png dpi export problem (#168406) + +* Wed Aug 9 2006 Denis Leroy - 0.44-3 +- Bumping up release to fix upgrade path + +* Wed Jun 28 2006 Denis Leroy - 0.44-2 +- Update to 0.44 +- Removed obsolete patches +- Disabled experimental perl and python extensions +- Added pstoedit, skencil, gtkspell and LittleCms support +- Inkboard feature disabled pending further security tests + +* Tue Feb 28 2006 Denis Leroy - 0.43-3 +- Rebuild + +* Mon Jan 16 2006 Denis Leroy - 0.43-2 +- Updated GC patch, bug 171791 + +* Sat Dec 17 2005 Denis Leroy - 0.43-1 +- Update to 0.43 +- Added 2 patches to fix g++ 4.1 compilation issues +- Enabled new jabber/loudmouth-based inkboard feature + +* Mon Sep 26 2005 Denis Leroy - 0.42.2-2 +- rebuilt with newer glibmm + +* Thu Sep 1 2005 Michael Schwendt - 0.42.2-1 +- update to 0.42.2 + +* Thu Aug 18 2005 Michael Schwendt - 0.42-3 +- rebuilt +- add patch to repair link-check of GC >= 6.5 (needs pthread and dl) + +* Fri Jul 29 2005 Michael Schwendt - 0.42-2 +- Extend ngettext/dgettext patch for x86_64 build. + +* Tue Jul 26 2005 Michael Schwendt - 0.42-1 +- update to 0.42 (also fixes #160326) +- BR gnome-vfs2-devel +- no files left in %%_libdir/inkscape +- include French manual page +- GCC4 patch obsolete, 64-bit patch obsolete, dgettext patch split off + +* Tue May 31 2005 Michael Schwendt - 0.41-7 +- append another 64-bit related patch (dgettext configure check failed) + +* Tue May 31 2005 Michael Schwendt - 0.41-6 +- remove explicit aclocal/autoconf calls in %%build as they create a + bad Makefile for FC4/i386, which causes build to fail (#156228), + and no comment explains where they were added/needed + +* Tue May 31 2005 Michael Schwendt - 0.41-5 +- bump and rebuild as 0.41-4 failed in build system setup + +* Wed May 25 2005 Jeremy Katz - 0.41-4 +- add patch for gcc4 problems (ignacio, #156228) +- fix build on 64bit boxes. sizeof(int) != sizeof(void*) + +* Sun May 22 2005 Jeremy Katz - 0.41-3 +- rebuild on all arches + +* Thu Apr 07 2005 Michael Schwendt +- rebuilt + +* Wed Feb 09 2005 Phillip Compton - 0.41-1 +- 0.41. +- enable python. + +* Sat Dec 04 2004 Phillip Compton - 0.40-1 +- 0.40. + +* Tue Nov 16 2004 Phillip Compton - 0.40-0.pre3 +- 0.40pre3. + +* Thu Nov 11 2004 Phillip Compton - 0.39-0.fdr.2 +- post/postun for new mime system. +- Dropped redundant BR XFree86-devel. + +* Sun Aug 29 2004 Phillip Compton - 0:0.39-0.fdr.1 +- 0.39. + +* Sat Apr 10 2004 P Linnell 0:0.38.1-0.fdr.1 +- respin real fix for Provides/Requires for perl(SpSVG) + +* Fri Apr 9 2004 P Linnell 0:0.38.1-0.fdr.0 +- respin with updated tarball with fix for postscript printing + +* Thu Apr 8 2004 P Linnell 0:0.38-0.fdr.2 +- respin to fix provides + +* Thu Apr 8 2004 P Linnell 0:0.38.0.fdr.1 +- version upgrade with many improvements and bug fixes + +* Fri Mar 19 2004 P Linnell 0:0.37.0.fdr.7 +- repsin - sourceforge does not allow reloading files with same name +* Tue Mar 16 2004 P Linnell 0:0.37.0.fdr.6 +- fix typo in provides +* Tue Mar 16 2004 P Linnell 0:0.37.0.fdr.5 +- add %%{release} to provides perl(SpSVG) = %%{epoch}:%%{version}:%%{release} only +* Tue Mar 16 2004 P Linnell 0:0.37.0.fdr.4 +- add %%{release} to provides +* Sun Mar 14 2004 P Linnell 0:0.37.0.fdr.3 +- add arch dependent flags +* Thu Mar 11 2004 P Linnell 0:0.37.0.fdr.2 +- add libsigc++-devel instead of add libsigc++ - duh +- add BuildRequires: perl-XML-Parser +- fix package name to follow package naming guidelines +* Mon Mar 1 2004 P Linnell 0:0.37.1.fdr.1 +- disable static libs +- enable inkjar +* Tue Feb 10 2004 P Linnell 0:0.37.0.fdr.1 +- pgp'd tarball from inkscape.org +- clean out the cvs tweaks in spec file +- enable gnome-print +- add the new tutorial files +- make sure .mo file gets packaged +- add provides: perlSVG +- submit to Fedora QA +* Sat Feb 7 2004 P Linnell +- rebuild of current cvs +- tweaks to build cvs instead of dist tarball +- add inkview +* Sat Dec 20 2003 P Linnell +- First crack at Fedora/RH spec file +- nuke gnome print - it won't work (bug is filed already)