2ea458
%define debug_package %{nil}
2ea458
2ea458
Name:           inkscape
2ea458
Version:        1.1.1
2ea458
Release:        6%{?dist}
2ea458
Summary:        Vector-based drawing program using SVG
2ea458
2ea458
# Inkscape tags their releases with underscores and in ALLCAPS
2ea458
%global repotag %(echo %{name}_%{version} |tr "." "_" |tr "[:lower:]" "[:upper:]")
2ea458
2ea458
License:        GPLv2+ and CC-BY
2ea458
URL:            https://inkscape.org/
2ea458
Source0:        https://inkscape.org/gallery/item/29255/inkscape-1.1.1.tar.xz
2ea458
2ea458
# Fedora Color Palette, GIMP format, CC-BY 3.0
2ea458
Source2:	Fedora-Color-Palette.gpl
2ea458
2ea458
Provides: bundled(libcroco)
2ea458
Provides: bundled(autotrace)
2ea458
Provides: bundled(libdepixelize)
2ea458
Provides: bundled(libuemf)
2ea458
Provides: bundled(adaptagrams)
2ea458
Provides: bundled(lib2geom)
2ea458
2ea458
BuildRequires:  gcc-c++
2ea458
BuildRequires:  aspell-devel aspell-en
2ea458
BuildRequires:  atk-devel
2ea458
BuildRequires:  boost-devel
2ea458
BuildRequires:  cairo-devel
2ea458
BuildRequires:  dos2unix
2ea458
BuildRequires:  desktop-file-utils
2ea458
BuildRequires:  double-conversion-devel
2ea458
BuildRequires:  freetype-devel
2ea458
BuildRequires:  gc-devel >= 6.4
2ea458
BuildRequires:  gettext
2ea458
BuildRequires:  gsl-devel
2ea458
BuildRequires:  gtkmm30-devel
2ea458
%if ! 0%{?flatpak} && ! 0%{?rhel} >= 8
2ea458
BuildRequires:  ImageMagick-c++-devel
2ea458
%endif
2ea458
BuildRequires:  intltool
2ea458
BuildRequires:  lcms2-devel
2ea458
BuildRequires:  libpng-devel >= 1.2
2ea458
BuildRequires:  libwpg-devel
2ea458
BuildRequires:  libxml2-devel >= 2.6.11
2ea458
BuildRequires:  libxslt-devel >= 1.0.15
2ea458
BuildRequires:  pango-devel
2ea458
BuildRequires:  pkgconfig
2ea458
BuildRequires:  python3-devel
2ea458
BuildRequires:  python3-setuptools
2ea458
BuildRequires:  poppler-glib-devel
2ea458
BuildRequires:  popt-devel
2ea458
BuildRequires:  libappstream-glib
2ea458
BuildRequires:  libtool
2ea458
BuildRequires:  potrace-devel
2ea458
BuildRequires:  cmake
2ea458
BuildRequires:	libwpd-devel
2ea458
BuildRequires:	dbus-glib-devel
2ea458
BuildRequires:	libjpeg-devel
2ea458
BuildRequires:	libsigc++20-devel
2ea458
BuildRequires:  libsoup-devel
2ea458
BuildRequires:  gspell-devel
2ea458
BuildRequires: make
2ea458
2ea458
# Disable all for now. TODO: Be smarter
2ea458
%if 0
2ea458
Requires:       dia
2ea458
Requires:       ghostscript
2ea458
Requires:       perl(Image::Magick)
2ea458
Requires:       transfig
2ea458
Requires:       gimp
2ea458
%endif
2ea458
Requires:       python3
2ea458
Requires:       python3-lxml
2ea458
Requires:       python3-numpy
2ea458
Requires:       python3-scour
2ea458
Requires:       python3-appdirs
2ea458
2ea458
# Weak dependencies for the LaTeX plugin
2ea458
Suggests:       pstoedit
2ea458
Suggests:       tex(latex)
2ea458
Suggests:       tex(dvips)
2ea458
Suggests:       texlive-amsmath
2ea458
Suggests:       texlive-amsfonts
2ea458
2ea458
%description
2ea458
Inkscape is a vector graphics editor, with capabilities similar to
2ea458
Illustrator, CorelDraw, or Xara X, using the W3C standard Scalable Vector
2ea458
Graphics (SVG) file format.  It is therefore a very useful tool for web
2ea458
designers and as an interchange format for desktop publishing.
2ea458
2ea458
Inkscape supports many advanced SVG features (markers, clones, alpha
2ea458
blending, etc.) and great care is taken in designing a streamlined
2ea458
interface. It is very easy to edit nodes, perform complex path operations,
2ea458
trace bitmaps and much more.
2ea458
2ea458
2ea458
%package view
2ea458
Summary:        Viewing program for SVG files
2ea458
2ea458
%description view
2ea458
Viewer for files in W3C standard Scalable Vector Graphics (SVG) file
2ea458
format.
2ea458
2ea458
2ea458
%package docs
2ea458
Summary:        Documentation for Inkscape
2ea458
2ea458
%description docs
2ea458
Tutorial and examples for Inkscape, a graphics editor for vector
2ea458
graphics in W3C standard Scalable Vector Graphics (SVG) file format.
2ea458
2ea458
2ea458
%prep
2ea458
%autosetup -n inkscape-1.1.1_2021-09-20_3bf5ae0d25 -p1
2ea458
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" .
2ea458
find . -name CMakeLists.txt | xargs sed -i 's|COMMAND python |COMMAND %{__python3} |g'
2ea458
2ea458
#strip invalid tag
2ea458
sed -i /url/d org.inkscape.Inkscape.appdata.xml.in
2ea458
2ea458
# https://bugs.launchpad.net/inkscape/+bug/314381
2ea458
# A couple of files have executable bits set,
2ea458
# despite not being executable
2ea458
find . -name '*.cpp' | xargs chmod -x
2ea458
find . -name '*.h' | xargs chmod -x
2ea458
2ea458
# Fix end of line encodings
2ea458
dos2unix -k -q share/extensions/*.py
2ea458
2ea458
%build
2ea458
%cmake3 \
2ea458
        -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
2ea458
        -DBUILD_SHARED_LIBS:BOOL=OFF . \
2ea458
        -DCMAKE_SKIP_RPATH=TRUE
2ea458
%cmake_build
2ea458
2ea458
2ea458
%install
2ea458
%cmake_install
2ea458
find $RPM_BUILD_ROOT -type f -name 'lib*.a' | xargs rm -f
2ea458
2ea458
# No skencil anymore
2ea458
rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/extensions/sk2svg.sh
2ea458
2ea458
# Don't install development files for bundled libraries
2ea458
rm -r $RPM_BUILD_ROOT%{_includedir}/2geom-1.1.0/
2ea458
rm -r $RPM_BUILD_ROOT%{_libdir}/cmake/2Geom
2ea458
rm $RPM_BUILD_ROOT%{_prefix}/lib/pkgconfig/2geom.pc
2ea458
2ea458
# Install Fedora Color Pallette
2ea458
install -pm 644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/inkscape/palettes/
2ea458
2ea458
%find_lang %{name} --with-man
2ea458
2ea458
rm -rf $RPM_BUILD_ROOT%{_datadir}/inkscape/doc
2ea458
rm -f $RPM_BUILD_ROOT%{_datadir}/doc/inkscape/copyright
2ea458
2ea458
2ea458
%check
2ea458
# Validate appdata file
2ea458
appstream-util validate-relax --nonet $RPM_BUILD_ROOT%{_datadir}/metainfo/*.appdata.xml
2ea458
2ea458
# Validate desktop file
2ea458
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/org.inkscape.Inkscape.desktop
2ea458
2ea458
2ea458
%files -f %{name}.lang
2ea458
%{!?_licensedir:%global license %%doc}
2ea458
%license COPYING
2ea458
%doc AUTHORS NEWS.md README.md
2ea458
%{_bindir}/inkscape
2ea458
%dir %{_datadir}/inkscape
2ea458
%{_datadir}/inkscape/attributes
2ea458
%{_datadir}/inkscape/branding
2ea458
%{_datadir}/inkscape/extensions
2ea458
%if 0%{?flatpak}
2ea458
# Pulls in ruby
2ea458
%exclude %{_datadir}/inkscape/extensions/simplepath.rb
2ea458
%endif
2ea458
%{_datadir}/inkscape/filters
2ea458
%{_datadir}/inkscape/fonts
2ea458
%{_datadir}/inkscape/icons
2ea458
%{_datadir}/inkscape/keys
2ea458
%{_datadir}/inkscape/markers
2ea458
%{_datadir}/inkscape/palettes
2ea458
%{_datadir}/inkscape/paint
2ea458
%{_datadir}/inkscape/pixmaps
2ea458
%{_datadir}/inkscape/screens
2ea458
%{_datadir}/inkscape/symbols
2ea458
%{_datadir}/inkscape/templates
2ea458
%{_datadir}/inkscape/ui
2ea458
%{_datadir}/metainfo/org.inkscape.Inkscape.appdata.xml
2ea458
%{_datadir}/applications/org.inkscape.Inkscape.desktop
2ea458
%{_mandir}/man1/*.1*
2ea458
%exclude %{_mandir}/man1/inkview.1*
2ea458
%{_datadir}/inkscape/tutorials
2ea458
%{_datadir}/inkscape/themes
2ea458
%{_datadir}/icons/hicolor/*/apps/*.png
2ea458
%{_datadir}/icons/hicolor/*/apps/*.svg
2ea458
%{_datadir}/bash-completion/completions/inkscape
2ea458
2ea458
%files view
2ea458
%{!?_licensedir:%global license %%doc}
2ea458
%license COPYING
2ea458
%doc AUTHORS NEWS.md README.md
2ea458
%{_bindir}/inkview
2ea458
%{_mandir}/man1/inkview.1*
2ea458
%{_mandir}/*/man1/inkview.1*
2ea458
2ea458
2ea458
%files docs
2ea458
%license COPYING
2ea458
%dir %{_datadir}/inkscape
2ea458
%{_datadir}/inkscape/examples
2ea458
2ea458
2ea458
%changelog
2ea458
* Wed Jan 19 2022 Jan Horak <jhorak@redhat.com> - 1.1.1-6
2ea458
- Stripping extra rpath again
2ea458
2ea458
* Tue Jan 18 2022 Jan Horak <jhorak@redhat.com> - 1.1.1-5
2ea458
- Using system build flags
2ea458
2ea458
* Thu Jan 13 2022 Jan Horak <jhorak@redhat.com> - 1.1.1-3
2ea458
- Sync to Fedora branch
2ea458
2ea458
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.1-3
2ea458
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
2ea458
  Related: rhbz#1991688
2ea458
2ea458
* Thu Jul 15 2021 Jan Horak <jhorak@redhat.com> - 1.1-2
2ea458
- Removed libgdl dependency
2ea458
2ea458
* Wed Jun 23 2021 Jan Horak <jhorak@redhat.com> - 1.1-1
2ea458
- Enable gspell
2ea458
- Don't install development files for bundled 2geom
2ea458
- Update to 1.1
2ea458
2ea458
* Wed May 19 2021 Jan Horak <jhorak@redhat.com> - 1.0.2-6
2ea458
- Resolves: #1958287 Rebuild due to updated poppler
2ea458
2ea458
* Mon May 17 2021 Jan Horak <jhorak@redhat.com> - 1.0.2-5
2ea458
- Resolves: #1958287 Rebuild due to updated poppler
2ea458
2ea458
* Tue May 04 2021 Jan Horak <jhorak@redhat.com> - 1.0.2-4
2ea458
- Fix rhbz#1956875 - extra rpath
2ea458
2ea458
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.2-3
2ea458
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
2ea458
2ea458
* Thu Feb 11 2021 Jan Horak <jhorak@redhat.com> - 1.0.2-2
2ea458
- Added missing bundled source, removed libgdlmm depencency
2ea458
2ea458
* Mon Feb 01 2021 Gwyn Ciesla <gwync@protonmail.com> - 1.0.2-1
2ea458
- 1.0.2
2ea458
2ea458
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-5
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2ea458
2ea458
* Tue Jan 12 2021 Gwyn Ciesla <gwync@protonmail.com> - 1.0.1-4
2ea458
- Poppler rebuild.
2ea458
2ea458
* Mon Jan 04 2021 Tomas Popela <tpopela@redhat.com> - 1.0.1-3
2ea458
- Don't build with ImageMagick support in ELN/RHEL
2ea458
2ea458
* Fri Sep 11 2020 Kalev Lember <klember@redhat.com> - 1.0.1-2
2ea458
- Fix appdata 1.0.1 release info
2ea458
2ea458
* Tue Sep 08 2020 Gwyn Ciesla <gwync@protonmail.com> - 1.0.1-1
2ea458
- 1.0.1
2ea458
2ea458
* Thu Sep 03 2020 Jeff Law <law@redhat.com> - 1.0-8
2ea458
- Refine dynamic casts to avoid -Wnonnull warning with gcc-11
2ea458
2ea458
* Mon Aug 17 2020 Kalev Lember <klember@redhat.com> - 1.0-7
2ea458
- Drop two unneeded dependencies
2ea458
- Validate appdata file in check rather than install section
2ea458
- Use desktop-file-validate instead of desktop-file-install
2ea458
- Drop unused gtk2 buildrequires
2ea458
2ea458
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-6
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2ea458
2ea458
* Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 1.0-5
2ea458
- Use make macros
2ea458
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
2ea458
2ea458
* Mon Jul 13 2020 Gwyn Ciesla <gwync@protonmail.com> - 1.0-4
2ea458
- Poppler 0.90.0 rebuild.
2ea458
2ea458
* Tue Jun 23 2020 Gwyn Ciesla <gwync@protonmail.com> - 1.0-3
2ea458
- BR python3-setuptools.
2ea458
2ea458
* Thu May 07 2020 Gwyn Ciesla <gwync@protonmail.com> - 1.0-2
2ea458
- Fix runtime dependencies.
2ea458
2ea458
* Fri May 01 2020 Gwyn Ciesla <gwync@protonmail.com> - 1.0-1
2ea458
- 1.0 final
2ea458
2ea458
* Wed Apr 15 2020 Gwyn Ciesla <gwync@protonmail.com> - 1.0-0.rc1.1
2ea458
- Download version with extensions.
2ea458
2ea458
* Sat Apr 11 2020 Gwyn Ciesla <gwync@protonmail.com> - 1.0-0.rc1
2ea458
- 1.0 RC1
2ea458
2ea458
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-0.beta.5
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2ea458
2ea458
* Fri Jan 17 2020 Marek Kasik <mkasik@redhat.com> - 1.0-0.beta.4
2ea458
- Rebuild for poppler-0.84.0
2ea458
2ea458
* Wed Dec 04 2019 Gwyn Ciesla <gwync@protonmail.com> - 1.0-0.beta.3
2ea458
- 1.0 beta 2
2ea458
2ea458
* Mon Oct 14 2019 Gwyn Ciesla <gwync@protonmail.com> - 1.0-0.beta.2
2ea458
- 1.0 beta 1
2ea458
2ea458
* Tue Sep 24 2019 Christoph Junghans <junghans@votca.org> - 1.0-0.beta.1
2ea458
- Rebuild for libdouble-conversion
2ea458
2ea458
* Mon Sep 09 2019 Gwyn Ciesla <gwync@protonmail.com> - 1.0-0.beta
2ea458
- 1.0 beta
2ea458
2ea458
* Mon Sep 09 2019 Kalev Lember <klember@redhat.com> - 0.92.4-12.git179c1e14
2ea458
- Use upstream appdata
2ea458
2ea458
* Fri Aug 30 2019 Miro Hrončok <mhroncok@redhat.com> - 0.92.4-11.git179c1e14
2ea458
- Explicitly depend on Python 3 interpreter
2ea458
- Use python3 explicitly when building
2ea458
2ea458
* Mon Aug 26 2019 Gwyn Ciesla <gwync@protonmail.com> - 0.92.4-10.git179c1e14
2ea458
- git snapshot for Python 3.
2ea458
2ea458
* Tue Aug 20 2019 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.92.4-9
2ea458
- Rebuilt for GSL 2.6.
2ea458
2ea458
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.92.4-8
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2ea458
2ea458
* Thu Jun 20 2019 Kalev Lember <klember@redhat.com> - 0.92.4-7
2ea458
- Don't hardcode /usr prefix
2ea458
2ea458
* Wed Jun 12 2019 Kalev Lember <klember@redhat.com> - 0.92.4-6
2ea458
- Avoid ruby dep for flatpak builds
2ea458
2ea458
* Wed Mar 27 2019 Gwyn Ciesla <gwync@protonmail.com> - 0.92.4-5
2ea458
- Build without -D_FORTIFY_SOURCE=2 to work around https://bugs.launchpad.net/inkscape/+bug/1778951
2ea458
2ea458
* Fri Feb 08 2019 Gwyn Ciesla <gwync@protonmail.com> - 0.92.4-4
2ea458
- Drop gvfs.
2ea458
2ea458
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.92.4-3
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2ea458
2ea458
* Fri Jan 25 2019 Marek Kasik <mkasik@redhat.com> - 0.92.4-2
2ea458
- Rebuild for poppler-0.73.0
2ea458
2ea458
* Thu Jan 17 2019 Gwyn Ciesla <limburgher@gmail.com> - 0.92.4-1
2ea458
- 0.92.4
2ea458
2ea458
* Tue Jan 15 2019 Gwyn Ciesla <limburgher@gmail.com> - 0.92.3-11
2ea458
- End of line patch.
2ea458
2ea458
* Mon Jan 14 2019 Gwyn Ciesla <limburgher@gmail.com> - 0.92.3-10
2ea458
- Alternate out of bounds patch.
2ea458
2ea458
* Fri Jan 11 2019 Gwyn Ciesla <limburgher@gmail.com> - 0.92.3-9
2ea458
- Patch for out of bounds.
2ea458
2ea458
* Tue Dec 04 2018 Gwyn Ciesla <limburgher@gmail.com> - 0.92.3-8
2ea458
- Add bundled provides.
2ea458
2ea458
* Tue Sep 11 2018 Gwyn Ciesla <limburgher@gmail.com> - 0.92.3-7
2ea458
- Fix shebang handling.
2ea458
2ea458
* Tue Aug 28 2018 Michael Cronenworth <mike@cchtml.com> - 0.92.3-6
2ea458
- Rebuild for ImageMagick 6.9.10
2ea458
2ea458
* Tue Aug 14 2018 Marek Kasik <mkasik@redhat.com> - 0.92.3-5
2ea458
- Rebuild for poppler-0.67.0
2ea458
2ea458
* Fri Jul 20 2018 Debarshi Ray <rishi@fedoraproject.org> - 0.92.3-4
2ea458
- Fix FTBFS due to Python2
2ea458
- Remove GTK3-based BuildRequires
2ea458
2ea458
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.92.3-3
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2ea458
2ea458
* Wed Jun 27 2018 Gwyn Ciesla <limburgher@gmail.com> - 0.92.3-2
2ea458
- Fix for crash, 1575842.
2ea458
2ea458
* Tue Apr 17 2018 Gwyn Ciesla <limburgher@gmail.com> - 0.92.3-1
2ea458
- 0.92.3.
2ea458
2ea458
* Fri Mar 23 2018 Marek Kasik <mkasik@redhat.com> - 0.92.2-8
2ea458
- Rebuild for poppler-0.63.0
2ea458
2ea458
* Thu Mar 01 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.92.2-7
2ea458
- Update Python 2 dependency declarations to new packaging standards
2ea458
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
2ea458
2ea458
* Wed Feb 14 2018 David Tardon <dtardon@redhat.com> - 0.92.2-6
2ea458
- rebuild for poppler 0.62.0
2ea458
2ea458
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.92.2-5
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2ea458
2ea458
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.92.2-4
2ea458
- Remove obsolete scriptlets
2ea458
2ea458
* Wed Nov 08 2017 David Tardon <dtardon@redhat.com> - 0.92.2-3
2ea458
- rebuild for poppler 0.61.0
2ea458
2ea458
* Fri Oct 06 2017 David Tardon <dtardon@redhat.com> - 0.92.2-2
2ea458
- rebuild for poppler 0.60.1
2ea458
2ea458
* Mon Sep 25 2017 Gwyn Ciesla <limburgher@gmail.com> - 0.92.2-1
2ea458
- 0.92.2 final.
2ea458
2ea458
* Fri Sep 08 2017 David Tardon <dtardon@redhat.com> - 0.92.1-15.20170713bzr15740
2ea458
- rebuild for poppler 0.59.0
2ea458
2ea458
* Tue Sep 05 2017 Adam Williamson <awilliam@redhat.com> - 0.92.1-14.20170713bzr15740
2ea458
- Rebuild for ImageMagick 6 reversion, drop ImageMagick 7 patch
2ea458
2ea458
* Sun Aug 27 2017 Ville Skyttä <ville.skytta@iki.fi> - 0.92.1-13.20170713bzr15740
2ea458
- Own the /usr/lib/inkscape dir
2ea458
- %%langify non-English man pages
2ea458
2ea458
* Fri Aug 25 2017 Michael Cronenworth <mike@cchtml.com> - 0.92.1-12.20170713bzr15740
2ea458
- Rebuilt for ImageMagick
2ea458
2ea458
* Tue Aug 08 2017 Gwyn Ciesla <limburgher@gmail.com> - 0.92.1-11.20170713bzr15740
2ea458
- Require aspell-en
2ea458
2ea458
* Thu Aug 03 2017 David Tardon <dtardon@redhat.com> - 0.92.1-10.20170713bzr15740
2ea458
- rebuild for poppler 0.57.0
2ea458
2ea458
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.92.1-9.20170713bzr15740
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2ea458
2ea458
* Sun Jul 30 2017 Kevin Fenzi <kevin@scrye.com> - 0.92.1-8.20170713bzr15740
2ea458
- Rebuilt for ImageMagick
2ea458
2ea458
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.92.1-7.20170713bzr15740
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2ea458
2ea458
* Thu Jul 13 2017 Gwyn Ciesla <limburgher@gmail.com> - 0.92.1-6.20170713bzr15740
2ea458
- Updated snapshot.
2ea458
2ea458
* Fri Jun 23 2017 Gwyn Ciesla <limburgher@gmail.com> - 0.92.1-5.20170510bzr15686
2ea458
- Move from gtkspell to gtkspell3, BZ 1464487.
2ea458
2ea458
* Wed May 10 2017 Gwyn Ciesla <limburgher@gmail.com> - 0.92.1-4.20170510bzr15686
2ea458
- Update to fix on Wayland.
2ea458
- Fix CFLAGS.
2ea458
2ea458
* Tue Mar 28 2017 David Tardon <dtardon@redhat.com> - 0.92.1-3.20170321bzr15604
2ea458
- rebuild for poppler 0.53.0
2ea458
2ea458
* Tue Mar 21 2017 Gwyn Ciesla <limburgher@gmail.com> - 0.92.1-2.20170321bzr15604
2ea458
- Snapshot to fix gcc7 FTBFS.
2ea458
2ea458
* Thu Feb 16 2017 Jon Ciesla <limburgher@gmail.com> - 0.92.1-1
2ea458
- 0.92.1 final.
2ea458
2ea458
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.92.0-12
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2ea458
2ea458
* Thu Jan 05 2017 Jon Ciesla <limburgher@gmail.com> - 0.92.0-11
2ea458
- 0.92 final.
2ea458
2ea458
* Fri Dec 30 2016 Jon Ciesla <limburgher@gmail.com> - 0.92-10.pre5
2ea458
- 0.92pre5.
2ea458
2ea458
* Thu Dec 22 2016 Jon Ciesla <limburgher@gmail.com> - 0.92-9.pre4
2ea458
- 0.92pre4.
2ea458
2ea458
* Fri Dec 16 2016 David Tardon <dtardon@redhat.com> - 0.92-8.pre3
2ea458
- rebuild for poppler 0.50.0
2ea458
2ea458
* Mon Nov 28 2016 Jon Ciesla <limburgher@gmail.com> - 0.92-7.pre3
2ea458
- 0.92pre3.
2ea458
- Include Fedora Color Palette, BZ 981748
2ea458
2ea458
* Wed Nov 23 2016 David Tardon <dtardon@redhat.com> - 0.92-6.pre2
2ea458
- rebuild for poppler 0.49.0
2ea458
2ea458
* Fri Oct 28 2016 Jon Ciesla <limburgher@gmail.com> - 0.92-5.pre2
2ea458
- Require python-scour, BZ 1389772.
2ea458
2ea458
* Fri Oct 28 2016 Jon Ciesla <limburgher@gmail.com> - 0.92-4.pre2
2ea458
- BR potrace-devel, BZ 1389772.
2ea458
2ea458
* Fri Oct 21 2016 Jon Ciesla <limburgher@gmail.com> - 0.92-3.pre2
2ea458
- Fix release tag.
2ea458
2ea458
* Fri Oct 21 2016 Marek Kasik <mkasik@redhat.com> - 0.92-2.pre2
2ea458
- Rebuild for poppler-0.48.0
2ea458
2ea458
* Wed Oct 19 2016 Jon Ciesla <limburgher@gmail.com> - 0.92-0.pre2
2ea458
- 0.92pre2.
2ea458
2ea458
* Mon Jul 18 2016 Marek Kasik <mkasik@redhat.com> - 0.92-1.pre1
2ea458
- Rebuild for poppler-0.45.0
2ea458
2ea458
* Tue Jun 14 2016 Jon Ciesla <limburgher@gmail.com> - 0.92-0.pre1
2ea458
- 0.92pre1.
2ea458
- Drop docs requirement on main package, BZ 1247239.
2ea458
2ea458
* Tue May 17 2016 Jon Ciesla <limburgher@gmail.com> - 0.92-0.pre0
2ea458
- 0.92pre0, BZ 1336412.
2ea458
2ea458
* Tue May  3 2016 Marek Kasik <mkasik@redhat.com> - 0.91-27
2ea458
- Rebuild for poppler-0.43.0
2ea458
2ea458
* Fri Apr 08 2016 Jon Ciesla <limburgher@gmail.com> - 0.91-26
2ea458
- Fix FTBFS with patch from https://bugzilla.gnome.org/show_bug.cgi?id=586626
2ea458
2ea458
* Mon Feb 22 2016 Orion Poplawski <orion@cora.nwra.com>
2ea458
- Rebuild for gsl 2.1
2ea458
2ea458
* Tue Feb 16 2016 Jonathan Underwood <jonathan.underwood@gmail.com> - 0.91-24
2ea458
- Add Requires for gvfs
2ea458
2ea458
* Mon Feb 15 2016 Jonathan Underwood <jonathan.underwood@gmail.com> - 0.91-23
2ea458
- Break appdata file out of spec into its own file
2ea458
- Validate appdata file once installed
2ea458
- Add BuildRequires for libappstream-glib (provides appstream-util)
2ea458
- Remove commented out line in file list
2ea458
- Re-add export CXXFLAGS="%%{optflags} -std=c++11" to fix build
2ea458
2ea458
* Mon Feb 15 2016 Jonathan Underwood <jonathan.underwood@gmail.com> - 0.91-22
2ea458
- Drop --disable-strict-build since this is fixed:
2ea458
  https://bugzilla.gnome.org/show_bug.cgi?id=752797
2ea458
- Drop export CXXFLAGS="%%{optflags} -std=c++11" since that's now default
2ea458
2ea458
* Mon Feb 15 2016 Jonathan Underwood <jonathan.underwood@gmail.com> - 0.91-21
2ea458
- Remove BuildRequires for  gnome-vfs2-devel
2ea458
2ea458
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.91-20
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2ea458
2ea458
* Fri Jan 22 2016 Marek Kasik <mkasik@redhat.com> - 0.91-19
2ea458
- Rebuild for poppler-0.40.0
2ea458
2ea458
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 0.91-18
2ea458
- Rebuilt for Boost 1.60
2ea458
2ea458
* Wed Sep 23 2015 Kalev Lember <klember@redhat.com> - 0.91-17
2ea458
- Fix the build with latest glibmm24
2ea458
2ea458
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 0.91-16
2ea458
- Rebuilt for Boost 1.59
2ea458
2ea458
* Wed Aug 05 2015 Jonathan Wakely <jwakely@redhat.com> 0.91-15
2ea458
- Rebuilt for Boost 1.58
2ea458
2ea458
* Tue Aug  4 2015 Jonathan Underwood <jonathan.underwood@gmail.com> - 0.91-14
2ea458
- Remove some entries from unused Requires block that we now
2ea458
  explicitly Require or Suggests.
2ea458
2ea458
* Tue Aug  4 2015 Jonathan Underwood <jonathan.underwood@gmail.com> - 0.91-13
2ea458
- Add Suggests deps for packages needed to enable LaTeX fragment
2ea458
  embedding
2ea458
2ea458
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-12
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
2ea458
2ea458
* Thu Jul 23 2015 Adam Williamson <awilliam@redhat.com> - 0.91-11
2ea458
- --disable-strict-build (as gtkmm currently uses a deprecated glibmm symbol)
2ea458
2ea458
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com>
2ea458
- rebuild for Boost 1.58
2ea458
2ea458
* Wed Jul 22 2015 Marek Kasik <mkasik@redhat.com> - 0.91-10
2ea458
- Rebuild (poppler-0.34.0)
2ea458
2ea458
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-9
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2ea458
2ea458
* Fri Jun  5 2015 Marek Kasik <mkasik@redhat.com> - 0.91-8
2ea458
- Rebuild (poppler-0.33.0)
2ea458
2ea458
* Wed Apr 29 2015 Kalev Lember <kalevlember@gmail.com> - 0.91-7
2ea458
- Rebuilt for GCC 5 ABI change
2ea458
2ea458
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 0.91-6
2ea458
- Add an AppData file for the software center
2ea458
2ea458
* Fri Mar 06 2015 Jon Ciesla <limburgher@gmail.com> - 0.91-5
2ea458
- ImageMagick rebuild.
2ea458
2ea458
* Thu Feb 12 2015 Peter Robinson <pbrobinson@fedoraproject.org> 0.91-4
2ea458
- Cleanup spec
2ea458
- Use %%license
2ea458
- Drop (now unneeded) perl requirements (rhbz#579390)
2ea458
- Drop ChangeLog as details are covered in NEWS
2ea458
2ea458
* Wed Feb 04 2015 Petr Machata <pmachata@redhat.com> - 0.91-3
2ea458
- Bump for rebuild.
2ea458
2ea458
* Fri Jan 30 2015 Jon Ciesla <limburgher@gmail.com> - 0.91-2
2ea458
- Move tutorials into main package, BZ 1187686.
2ea458
2ea458
* Thu Jan 29 2015 Jon Ciesla <limburgher@gmail.com> - 0.91-1
2ea458
- Latest upstream.
2ea458
2ea458
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 0.48.5-7
2ea458
- Rebuild for boost 1.57.0
2ea458
2ea458
* Fri Jan 23 2015 Marek Kasik <mkasik@redhat.com> - 0.48.5-6
2ea458
- Rebuild (poppler-0.30.0)
2ea458
- Backport commit "Fix build with poppler 0.29.0 (Bug #1399811)"
2ea458
2ea458
* Fri Jan 09 2015 Jon Ciesla <limburgher@gmail.com> - 0.48.5-5
2ea458
- Added aspell support, BZ 1171934.
2ea458
2ea458
* Thu Nov 27 2014 Marek Kasik <mkasik@redhat.com> - 0.48.5-4
2ea458
- Rebuild (poppler-0.28.1)
2ea458
2ea458
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.48.5-3
2ea458
- Perl 5.20 rebuild
2ea458
2ea458
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.48.5-2
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2ea458
2ea458
* Mon Jul 21 2014 Jon Ciesla <limburgher@gmail.com> - 0.48.5-1
2ea458
- Latest bugfix release.
2ea458
- Spurious comma patch upstreamed.
2ea458
- Dropped Freetype, poppler, gc patches.
2ea458
2ea458
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.48.4-18
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2ea458
2ea458
* Tue Jun 03 2014 Jon Ciesla <limburgher@gmail.com> - 0.48.4-17
2ea458
- Switch to lcms2.
2ea458
2ea458
* Tue May 27 2014 David Tardon <dtardon@redhat.com> - 0.48.4-16
2ea458
- switch to librevenge-based import libs
2ea458
2ea458
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 0.48.4-15
2ea458
- Rebuild for boost 1.55.0
2ea458
2ea458
* Thu May 15 2014 Lubomir Rintel <lkundrak@v3.sk> - 0.48.4-14
2ea458
- Fix build with new Poppler and GC (Sandro Mani, #1097945)
2ea458
2ea458
* Wed May 14 2014 Jon Ciesla <limburgher@gmail.com> - 0.48.4-13
2ea458
- poppler rebuild.
2ea458
2ea458
* Mon Mar 31 2014 Jon Ciesla <limburgher@gmail.com> - 0.48.4-12
2ea458
- ImageMagick rebuild.
2ea458
- Patch for Freetype path.
2ea458
2ea458
* Wed Oct 09 2013 Jon Ciesla <limburgher@gmail.com> - 0.48.4-11
2ea458
- ImageMagick rebuild.
2ea458
2ea458
* Mon Aug 19 2013 Marek Kasik <mkasik@redhat.com> - 0.48.4-10
2ea458
- Rebuild (poppler-0.24.0)
2ea458
2ea458
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.48.4-9
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2ea458
2ea458
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 0.48.4-8
2ea458
- Rebuild for boost 1.54.0
2ea458
2ea458
* Wed Jul 24 2013 Petr Pisar <ppisar@redhat.com> - 0.48.4-7
2ea458
- Perl 5.18 rebuild
2ea458
2ea458
* Tue Jun 25 2013 Jon Ciesla <limburgher@gmail.com> - 0.48.4-6
2ea458
- libpoppler rebuild.
2ea458
2ea458
* Mon Mar 18 2013 Jon Ciesla <limburgher@gmail.com> - 0.48.4-5
2ea458
- ImageMagick rebuild.
2ea458
2ea458
* Fri Feb 15 2013 Jon Ciesla <limburgher@gmail.com> - 0.48.4-4
2ea458
- Fix FTBFS.
2ea458
2ea458
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.48.4-3
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2ea458
2ea458
* Fri Jan 18 2013 Marek Kasik <mkasik@redhat.com> - 0.48.4-2
2ea458
- Rebuild (poppler-0.22.0)
2ea458
2ea458
* Thu Dec 06 2012 Jon Ciesla <limburgher@gmail.com> - 0.48.3.1-4
2ea458
- 0.48.4, fix XXE security flaw.
2ea458
- Correct man page ownership.
2ea458
2ea458
* Thu Dec 06 2012 Jon Ciesla <limburgher@gmail.com> - 0.48.3.1-4
2ea458
- Fix directory ownership, BZ 873817.
2ea458
- Fix previous changelog version.
2ea458
2ea458
* Mon Nov 19 2012 Nils Philippsen <nils@redhat.com> - 0.48.3.1-3
2ea458
- update sourceforge download URL
2ea458
2ea458
* Thu Nov 01 2012 Jon Ciesla <limburgher@gmail.com> - 0.48.3.1-2
2ea458
- Allow loading large XML, BZ 871012.
2ea458
2ea458
* Fri Oct 05 2012 Jon Ciesla <limburgher@gmail.com> - 0.48.3.1-1
2ea458
- Lastest upstream.
2ea458
2ea458
* Thu Oct 04 2012 Jon Ciesla <limburgher@gmail.com> - 0.48.2-13
2ea458
- Added dep on uniconvertor, BZ 796424.
2ea458
2ea458
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.48.2-12
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2ea458
2ea458
* Mon Jul 09 2012 Petr Pisar <ppisar@redhat.com> - 0.48.2-11
2ea458
- Perl 5.16 rebuild
2ea458
2ea458
* Mon Jul  2 2012 Marek Kasik <mkasik@redhat.com> - 0.48.2-10
2ea458
- Rebuild (poppler-0.20.1)
2ea458
2ea458
* Wed Jun 27 2012 Petr Pisar <ppisar@redhat.com> - 0.48.2-9
2ea458
- Perl 5.16 rebuild
2ea458
2ea458
* Sat Jun 23 2012 Rex Dieter <rdieter@fedoraproject.org> 
2ea458
- 0.48.2-8
2ea458
- fix icon/desktop-file scriptlets (#739375)
2ea458
- drop .desktop vendor (f18+)
2ea458
- inkscape doesn't build with poppler-0.20.0 (#822413)
2ea458
2ea458
* Fri Jun 15 2012 Petr Pisar <ppisar@redhat.com> - 0.48.2-7
2ea458
- Perl 5.16 rebuild
2ea458
2ea458
* Mon Jun 11 2012 Adel Gadllah <adel.gadllah@gmail.com> - 0.48.2-6
2ea458
- Rebuild for new poppler
2ea458
2ea458
* Wed Apr 11 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 0.48.2-5
2ea458
- Rebuild for ImageMagik
2ea458
2ea458
* Thu Mar  8 2012 Daniel Drake <dsd@laptop.org> - 0.48.2-4
2ea458
- Fix build with GCC 4.7
2ea458
2ea458
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.48.2-3
2ea458
- Rebuilt for c++ ABI breakage
2ea458
2ea458
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.48.2-2
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2ea458
2ea458
* Tue Nov 15 2011 German Ruiz <germanrs@fedoraproject.org> - 0.48.2-1
2ea458
- New upstream version
2ea458
- Fix glib include compile problem
2ea458
- Fix compilation against libpng-1.5
2ea458
2ea458
* Fri Oct 28 2011 Rex Dieter <rdieter@fedoraproject.org> - 0.48.1-10
2ea458
- rebuild(poppler)
2ea458
2ea458
* Fri Sep 30 2011 Marek Kasik <mkasik@redhat.com> - 0.48.1-9
2ea458
- Rebuild (poppler-0.18.0)
2ea458
2ea458
* Mon Sep 19 2011 Marek Kasik <mkasik@redhat.com> - 0.48.1-8
2ea458
- Rebuild (poppler-0.17.3)
2ea458
2ea458
* Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 0.48.1-7
2ea458
- Perl mass rebuild
2ea458
2ea458
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 0.48.1-6
2ea458
- Perl mass rebuild
2ea458
2ea458
* Fri Jul 15 2011 Marek Kasik <mkasik@redhat.com> - 0.48.1-5
2ea458
- Rebuild (poppler-0.17.0)
2ea458
2ea458
* Sun Mar 13 2011 Marek Kasik <mkasik@redhat.com> - 0.48.1-4
2ea458
- Rebuild (poppler-0.16.3)
2ea458
2ea458
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.48.1-3
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2ea458
2ea458
* Wed Feb 09 2011 Lubomir Rintel <lkundrak@v3.sk> - 0.48.1-2
2ea458
- Re-enable GVFS for OCAL
2ea458
2ea458
* Mon Feb 07 2011 Lubomir Rintel <lkundrak@v3.sk> - 0.48.1-1
2ea458
- Bump release
2ea458
2ea458
* Fri Feb 04 2011 Lubomir Rintel <lkundrak@v3.sk> - 0.48.0-10
2ea458
- Drop gnome-vfs requirement
2ea458
- Fix Rawhide build
2ea458
2ea458
* Sat Jan 01 2011 Rex Dieter <rdieter@fedoraproject.org> - 0.48.0-9
2ea458
- rebuild (poppler)
2ea458
2ea458
* Wed Dec 15 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.48.0-8
2ea458
- rebuild (poppler)
2ea458
2ea458
* Wed Dec 08 2010 Caolán McNamara <caolanm@redhat.com> - 0.48.0-7
2ea458
- rebuilt (libwpd)
2ea458
2ea458
* Sun Nov 14 2010 Lubomir Rintel <lkundrak@v3.sk> - 0.48.0-6
2ea458
- rebuilt (poppler)
2ea458
2ea458
* Tue Oct 05 2010 Nils Philippsen <nils@redhat.com> - 0.48.0-5
2ea458
- Rebuild for poppler update
2ea458
2ea458
* Wed Sep 29 2010 jkeating - 0.48.0-4
2ea458
- Rebuilt for gcc bug 634757
2ea458
2ea458
* Wed Sep 29 2010 Dan Horák <dan[at]danny.cz> - 0.48.0-3
2ea458
- drop the s390(x) ExcludeArch
2ea458
2ea458
* Mon Sep 20 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 0.48.0-2
2ea458
- rebuild for new ImageMagick
2ea458
2ea458
* Wed Aug 25 2010 Lubomir Rintel <lkundrak@v3.sk> - 0.48.0-1
2ea458
- New upstream release
2ea458
- Drop el5 support
2ea458
2ea458
* Thu Aug 19 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.48-0.5.20100505bzr
2ea458
- rebuild (poppler)
2ea458
2ea458
* Tue Jul 27 2010 David Malcolm <dmalcolm@redhat.com> - 0.48-0.4.20100505bzr
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
2ea458
2ea458
* Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.48-0.3.20100505bzr
2ea458
- Mass rebuild with perl-5.12.0
2ea458
2ea458
* Wed May 05 2010 Lubomir Rintel <lkundrak@v3.sk> - 0.48-0.2.20100505bzr
2ea458
- Move to later snapshot
2ea458
- Drop uniconvertor patch
2ea458
2ea458
* Tue Apr 06 2010 Caolán McNamara <caolanm@redhat.com> - 0.48-0.2.20100318bzr
2ea458
- Resolves: rhbz#565106 fix inkscape-0.47-x11.patch to not clobber INKSCAPE_LIBS
2ea458
2ea458
* Thu Mar 18 2010 Lubomir Rintel <lkundrak@v3.sk> - 0.48-0.1.20100318bzr
2ea458
- Update to latest bazaar snapshot
2ea458
2ea458
* Thu Feb 18 2010 Lubomir Rintel <lkundrak@v3.sk> - 0.47-7
2ea458
- Fix build
2ea458
2ea458
* Wed Jan 20 2010 Stepan Kasal <skasal@redhat.com> - 0.47-6
2ea458
- ExcludeArch: s390 s390x
2ea458
2ea458
* Fri Jan 15 2010 Stepan Kasal <skasal@redhat.com> - 0.47-5
2ea458
- require perl(:MODULE_COMPAT_5.10.x) because the package requires libperl.so
2ea458
- the same for inkscape-view
2ea458
2ea458
* Fri Jan  8 2010 Owen Taylor <otaylor@redhat.com> - 0.47-4
2ea458
- Remove loudmouth BuildRequires; there is no current usage of loudmouth in the code
2ea458
2ea458
* Sun Dec 06 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-2
2ea458
- Fix Rawhide build.
2ea458
2ea458
* Wed Nov 25 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-1
2ea458
- Stable release
2ea458
2ea458
* Mon Nov 23 2009 Adam Jackson <ajax@redhat.com> 0.47-0.18.pre4.20091101svn
2ea458
- Fix RHEL6 build.
2ea458
2ea458
* Mon Sep 07 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.17.pre4.20091101svn
2ea458
- Icon for main window (#532325)
2ea458
2ea458
* Mon Sep 07 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.16.pre4.20091101svn
2ea458
- Move to a later snapshot
2ea458
- python-lxml and numpy seem to be rather popular, add them as hard deps
2ea458
2ea458
* Mon Sep 07 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.16.pre3.20091017svn
2ea458
- Move to a later snapshot
2ea458
2ea458
* Mon Sep 07 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.16.pre3.20090925svn
2ea458
- Move to a later snapshot
2ea458
- Drop debugging compiler flags, enable optimizations again
2ea458
- Make it build on everything since EL5 again
2ea458
2ea458
* Mon Sep 07 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.16.pre2.20090907svn
2ea458
- Move inkview man page to -view subpackage (#515358)
2ea458
- Add license, etc. to main package
2ea458
2ea458
* Mon Sep 07 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.15.pre2.20090907svn
2ea458
- Update to a post-pre2 snapshot
2ea458
2ea458
* Mon Aug 10 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.15.pre1.20090629svn
2ea458
- Update to a post-pre1 snapshot
2ea458
- Drop upstreamed CRC32 fix
2ea458
2ea458
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.47-0.14.pre0.20090629svn
2ea458
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2ea458
2ea458
* Mon Jun 29 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.13.pre0.20090629svn
2ea458
- Update to a newer snapshot
2ea458
2ea458
* Tue Jun 16 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.12.pre0.20090616svn
2ea458
- Update to post-pre0 snapshot
2ea458
2ea458
* Tue Jun 02 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.11.20090602svn
2ea458
- More recent snapshot
2ea458
- Upstream removed rasterized icons again
2ea458
2ea458
* Sat May 23 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.10.20090518svn
2ea458
- Rebuild for new poppler
2ea458
2ea458
* Mon May 18 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.9.20090518svn
2ea458
- Update past upstream Beta release
2ea458
2ea458
* Mon May 18 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.8.20090508svn
2ea458
- Fix ODG export
2ea458
2ea458
* Fri May 08 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.7.20090508svn
2ea458
- Update to a post-alpha snapshot
2ea458
- Upstream applied our GCC 4.4 patch
2ea458
2ea458
* Fri Apr 10 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.6.20090410svn
2ea458
- Update to newer snapshot
2ea458
- Fix doc/incview reversed subpackage content
2ea458
2ea458
* Wed Mar 04 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.6.20090301svn
2ea458
- Rebuild for new ImageMagick
2ea458
2ea458
* Wed Mar 04 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.5.20090301svn
2ea458
- Split documentation and inkview into subpackages
2ea458
2ea458
* Mon Mar 02 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.4.20090301svn
2ea458
- Bump to later SVN snapshot to fix inkscape/+bug/331864
2ea458
- Fix a startup crash when compiled with GCC 4.4
2ea458
- It even runs now! :)
2ea458
2ea458
* Fri Feb 27 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.4.20090227svn
2ea458
- Enable the test suite
2ea458
2ea458
* Fri Feb 27 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.3.20090227svn
2ea458
- Past midnight! :)
2ea458
- More recent snapshot, our gcc44 fixes now upstream
2ea458
- One more gcc44 fix, it even compiles now
2ea458
- We install icons now, update icon cache
2ea458
- Disable inkboard, for it won't currently compile
2ea458
2ea458
* Thu Feb 26 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.3.20090226svn
2ea458
- Later snapshot
2ea458
- Compile with GCC 4.4
2ea458
2ea458
* Tue Jan 06 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.3.20090105svn
2ea458
- Update to newer SVN
2ea458
- Drop upstreamed patches
2ea458
- Enable WordPerfect Graphics support
2ea458
- Enable embedded Perl scripting
2ea458
- Enable Imagemagick support
2ea458
- Disable OpenSSL due to licensing issues
2ea458
2ea458
* Thu Aug 14 2008 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.3.20080814svn
2ea458
- Update to today's SVN snapshot
2ea458
- Drop the upstreamed poppler patch
2ea458
2ea458
* Wed Aug 13 2008 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.2.20080705svn
2ea458
- Rediff patches for zero fuzz
2ea458
- Use uniconvertor to handle CDR and WMF (#458845)
2ea458
2ea458
* Wed Jul 09 2008 Lubomir Rintel <lkundrak@v3.sk> - 0.47-0.1.20080705svn
2ea458
- Subversion snapshot
2ea458
2ea458
* Wed Jul 09 2008 Lubomir Rintel <lkundrak@v3.sk> - 0.46-4
2ea458
- Fix compile issues with newer gtk and poppler
2ea458
2ea458
* Thu Jun 26 2008 Lubomir Rintel <lkundrak@v3.sk> - 0.46-3
2ea458
- Remove useless old hack, that triggered an assert after gtkfilechooser switched to gio
2ea458
2ea458
* Fri Apr 11 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.46-2.1
2ea458
- More buildrequires more flexible, so that this builds on RHEL
2ea458
2ea458
* Sat Apr 05 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.46-2
2ea458
- Fix LaTeX rendering, #441017
2ea458
2ea458
* Tue Mar 25 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.46-1
2ea458
- 0.46 released
2ea458
2ea458
* Sun Mar 23 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.46-0.3.pre3
2ea458
- Rebuild for newer Poppler
2ea458
2ea458
* Wed Mar 12 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.46-0.2.pre3
2ea458
- Probably last prerelease?
2ea458
2ea458
* Fri Feb 22 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.46-0.2.pre2
2ea458
- Panel icon sizes
2ea458
2ea458
* Sun Feb 17 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.46-0.1.pre2
2ea458
- 0.46pre2
2ea458
- Dropping upstreamed patches
2ea458
2ea458
* Sat Feb 16 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.45.1+0.46pre1-5
2ea458
- Attempt to fix the font selector (#432892)
2ea458
2ea458
* Thu Feb 14 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.45.1+0.46pre1-4
2ea458
- Tolerate recoverable errors in OCAL feeds
2ea458
- Fix OCAL insecure temporary file usage (#432807)
2ea458
2ea458
* Wed Feb 13 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.45.1+0.46pre1-3
2ea458
- Fix crash when adding text objects (#432220)
2ea458
2ea458
* Thu Feb 07 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.45.1+0.46pre1-2
2ea458
- Build with gcc-4.3
2ea458
2ea458
* Wed Feb 06 2008 Lubomir Kundrak <lkundrak@redhat.com> - 0.45.1+0.46pre1-1
2ea458
- 0.46 prerelease
2ea458
- Minor cosmetic changes to satisfy the QA script
2ea458
- Dependency on Boost
2ea458
- Inkboard is not optional
2ea458
- Merge from Denis Leroy's svn16571 snapshot:
2ea458
- Require specific gtkmm24-devel versions
2ea458
- enable-poppler-cairo
2ea458
- No longer BuildRequire libsigc++20-devel
2ea458
2ea458
* Wed Dec  5 2007 Denis Leroy <denis@poolshark.org> - 0.45.1-5
2ea458
- Rebuild with new openssl
2ea458
2ea458
* Sun Dec 02 2007 Lubomir Kundrak <lkundrak@redhat.com> - 0.45.1-4
2ea458
- Added missing dependencies for modules (#301881)
2ea458
2ea458
* Sun Dec 02 2007 Lubomir Kundrak <lkundrak@redhat.com> - 0.45.1-3
2ea458
- Satisfy desktop-file-validate, so that Rawhide build won't break
2ea458
2ea458
* Sat Dec 01 2007 Lubomir Kundrak <lkundrak@redhat.com> - 0.45.1-2
2ea458
- Use GTK print dialog
2ea458
- Added compressed SVG association (#245413)
2ea458
- popt headers went into popt-devel, post Fedora 7
2ea458
- Fix macro usage in changelog
2ea458
2ea458
* Wed Mar 21 2007 Denis Leroy <denis@poolshark.org> - 0.45.1-1
2ea458
- Update to bugfix release 0.45.1
2ea458
- Added R to ImageMagick-perl (#231563)
2ea458
2ea458
* Wed Feb  7 2007 Denis Leroy <denis@poolshark.org> - 0.45-1
2ea458
- Update to 0.45
2ea458
- Enabled inkboard, perl and python extensions
2ea458
- Added patch for correct python autodetection
2ea458
- LaTex patch integrated upstreamed, removed
2ea458
- Some rpmlint cleanups
2ea458
2ea458
* Wed Dec  6 2006 Denis Leroy <denis@poolshark.org> - 0.44.1-2
2ea458
- Added patches to fix LaTex import (#217699)
2ea458
- Added patch to base postscript import on pstoedit plot-svg
2ea458
2ea458
* Thu Sep  7 2006 Denis Leroy <denis@poolshark.org> - 0.44.1-1
2ea458
- Update to 0.44.1
2ea458
- Removed png export patch, integrated upstream
2ea458
- Some updated BRs
2ea458
2ea458
* Mon Aug 28 2006 Denis Leroy <denis@poolshark.org> - 0.44-6
2ea458
- FE6 Rebuild
2ea458
2ea458
* Tue Aug 22 2006 Denis Leroy <denis@poolshark.org> - 0.44-5
2ea458
- Removed skencil Require (bug 203229)
2ea458
2ea458
* Thu Aug 10 2006 Denis Leroy <denis@poolshark.org> - 0.44-4
2ea458
- Added patch to fix png dpi export problem (#168406)
2ea458
2ea458
* Wed Aug  9 2006 Denis Leroy <denis@poolshark.org> - 0.44-3
2ea458
- Bumping up release to fix upgrade path
2ea458
2ea458
* Wed Jun 28 2006 Denis Leroy <denis@poolshark.org> - 0.44-2
2ea458
- Update to 0.44
2ea458
- Removed obsolete patches
2ea458
- Disabled experimental perl and python extensions
2ea458
- Added pstoedit, skencil, gtkspell and LittleCms support
2ea458
- Inkboard feature disabled pending further security tests
2ea458
2ea458
* Tue Feb 28 2006 Denis Leroy <denis@poolshark.org> - 0.43-3
2ea458
- Rebuild
2ea458
2ea458
* Mon Jan 16 2006 Denis Leroy <denis@poolshark.org> - 0.43-2
2ea458
- Updated GC patch, bug 171791
2ea458
2ea458
* Sat Dec 17 2005 Denis Leroy <denis@poolshark.org> - 0.43-1
2ea458
- Update to 0.43
2ea458
- Added 2 patches to fix g++ 4.1 compilation issues
2ea458
- Enabled new jabber/loudmouth-based inkboard feature
2ea458
2ea458
* Mon Sep 26 2005 Denis Leroy <denis@poolshark.org> - 0.42.2-2
2ea458
- rebuilt with newer glibmm
2ea458
2ea458
* Thu Sep  1 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.42.2-1
2ea458
- update to 0.42.2
2ea458
2ea458
* Thu Aug 18 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.42-3
2ea458
- rebuilt
2ea458
- add patch to repair link-check of GC >= 6.5 (needs pthread and dl)
2ea458
2ea458
* Fri Jul 29 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.42-2
2ea458
- Extend ngettext/dgettext patch for x86_64 build.
2ea458
2ea458
* Tue Jul 26 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.42-1
2ea458
- update to 0.42 (also fixes #160326)
2ea458
- BR gnome-vfs2-devel
2ea458
- no files left in %%_libdir/inkscape
2ea458
- include French manual page
2ea458
- GCC4 patch obsolete, 64-bit patch obsolete, dgettext patch split off
2ea458
2ea458
* Tue May 31 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.41-7
2ea458
- append another 64-bit related patch (dgettext configure check failed)
2ea458
2ea458
* Tue May 31 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.41-6
2ea458
- remove explicit aclocal/autoconf calls in %%build as they create a
2ea458
  bad Makefile for FC4/i386, which causes build to fail (#156228),
2ea458
  and no comment explains where they were added/needed
2ea458
2ea458
* Tue May 31 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.41-5
2ea458
- bump and rebuild as 0.41-4 failed in build system setup
2ea458
2ea458
* Wed May 25 2005 Jeremy Katz <katzj@redhat.com> - 0.41-4
2ea458
- add patch for gcc4 problems (ignacio, #156228)
2ea458
- fix build on 64bit boxes.  sizeof(int) != sizeof(void*)
2ea458
2ea458
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 0.41-3
2ea458
- rebuild on all arches
2ea458
2ea458
* Thu Apr 07 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
2ea458
- rebuilt
2ea458
2ea458
* Wed Feb 09 2005 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.41-1
2ea458
- 0.41.
2ea458
- enable python.
2ea458
2ea458
* Sat Dec 04 2004 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.40-1
2ea458
- 0.40.
2ea458
2ea458
* Tue Nov 16 2004 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.40-0.pre3
2ea458
- 0.40pre3.
2ea458
2ea458
* Thu Nov 11 2004 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.39-0.fdr.2
2ea458
- post/postun for new mime system.
2ea458
- Dropped redundant BR XFree86-devel.
2ea458
2ea458
* Sun Aug 29 2004 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.39-0.fdr.1
2ea458
- 0.39.
2ea458
2ea458
* Sat Apr 10 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.38.1-0.fdr.1
2ea458
- respin real fix for Provides/Requires for perl(SpSVG)
2ea458
2ea458
* Fri Apr 9 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.38.1-0.fdr.0
2ea458
- respin with updated tarball with fix for postscript printing
2ea458
2ea458
* Thu Apr 8 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.38-0.fdr.2
2ea458
- respin to fix provides
2ea458
2ea458
* Thu Apr 8 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.38.0.fdr.1
2ea458
- version upgrade with many improvements and bug fixes
2ea458
2ea458
* Fri Mar 19 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.37.0.fdr.7
2ea458
- repsin - sourceforge does not allow reloading files with same name
2ea458
* Tue Mar 16 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.37.0.fdr.6
2ea458
- fix typo in provides
2ea458
* Tue Mar 16 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.37.0.fdr.5
2ea458
- add %%{release} to provides perl(SpSVG) = %%{epoch}:%%{version}:%%{release} only
2ea458
* Tue Mar 16 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.37.0.fdr.4
2ea458
- add %%{release} to provides
2ea458
* Sun Mar 14 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.37.0.fdr.3
2ea458
- add arch dependent flags
2ea458
* Thu Mar 11 2004 P Linnell <scribusdocs at atlantictechsolutions.com> 0:0.37.0.fdr.2
2ea458
- add libsigc++-devel instead of add libsigc++ - duh
2ea458
- add BuildRequires:  perl-XML-Parser
2ea458
- fix package name to follow package naming guidelines
2ea458
* Mon Mar 1 2004   P Linnell <scribusdocs at atlantictechsolutions.com>   0:0.37.1.fdr.1
2ea458
- disable static libs
2ea458
- enable inkjar
2ea458
* Tue Feb 10  2004 P Linnell <scribusdocs at atlantictechsolutions.com>   0:0.37.0.fdr.1
2ea458
- pgp'd tarball from inkscape.org
2ea458
- clean out the cvs tweaks in spec file
2ea458
- enable gnome-print
2ea458
- add the new tutorial files
2ea458
- make sure .mo file gets packaged
2ea458
- add provides: perlSVG
2ea458
- submit to Fedora QA
2ea458
* Sat Feb 7  2004 P Linnell <scribusdocs at atlantictechsolutions.com>
2ea458
- rebuild of current cvs
2ea458
- tweaks to build cvs instead of dist tarball
2ea458
- add inkview
2ea458
* Sat Dec 20 2003 P Linnell <scribusdocs at atlantictechsolutions.com>
2ea458
- First crack at Fedora/RH spec file
2ea458
- nuke gnome print - it won't work (bug is filed already)