Hello community,

here is the log from the commit of package tintii for openSUSE:Factory checked 
in at 2013-04-26 07:46:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tintii (Old)
 and      /work/SRC/openSUSE:Factory/.tintii.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tintii", Maintainer is ""

Changes:
--------
New Changes file:

--- /dev/null   2013-04-05 00:01:41.916011506 +0200
+++ /work/SRC/openSUSE:Factory/.tintii.new/tintii.changes       2013-04-26 
07:46:08.000000000 +0200
@@ -0,0 +1,72 @@
+-------------------------------------------------------------------
+Sun Mar 18 11:16:44 UTC 2012 - lazy.k...@opensuse.org
+
+- Update to 2.6.1.
+  * Fixed zoom-fit function.
+  * Fixed GCC 4.6 compile errors.
+
+-------------------------------------------------------------------
+Tue Mar 13 18:08:46 UTC 2012 - lazy.k...@opensuse.org
+
+- Update to 2.6.0.
+  * Centred image in preview pane and added textured background.
+  * Changed lightness sliders to apply multiplicative rather than
+    additive adjustments.
+  * Added info bar for help messages.
+  * Separated file types in open and save dialogs.
+  * New application icon.
+- Use defines for wxWidgets.
+- Added mimetypes.
+- Install icons of various sizes to icons/hicolor (build requires
+  ImageMagick).
+- Added desktop_database_post/un and icon_theme_cache_post/un
+  macros.
+- Clean up spec.
+
+-------------------------------------------------------------------
+Sat Oct 22 09:20:15 UTC 2011 - pascal.ble...@opensuse.org
+
+- update to 2.5.3: no user-visible changes
+- changes from 2.5.2:
+  * the layout of interface components is now more flexible
+  * a list of recently open files has been added to the menu bar
+  * a crash when a file of unsupported type is opened has been fixed
+- changes from 2.4.0:
+  * sliders for adjusting the hue, saturation, and lightness of each detected
+    color have been added
+  * a new hardness post-processing option for working with gradients has been
+    added
+  * the interface has been freshened and full online help is now included
+
+-------------------------------------------------------------------
+Sun May 29 20:59:05 UTC 2011 - lazy.k...@opensuse.org
+
+- removed licenses dependencies
+- use full URL in source tag
+
+-------------------------------------------------------------------
+Sat Jan 22 14:09:01 UTC 2011 - lazy.k...@opensuse.org
+
+- build requires wxWidgets-devel for openSUSE 11.4
+
+-------------------------------------------------------------------
+Sat May  8 07:30:27 UTC 2010 - lazy.kent.s...@gmail.com
+
+- moved desktop menu entry to Photography
+
+-------------------------------------------------------------------
+Fri Apr  2 19:42:25 UTC 2010 - lazy.kent.s...@gmail.com
+
+- update to 2.2.3
+
+-------------------------------------------------------------------
+Tue Jan 26 10:32:00 UTC 2010 - pascal.ble...@opensuse.org
+
+- moved to multimedia:photo
+- update to 2.2.2
+- added license symlink
+
+-------------------------------------------------------------------
+Sat Dec 12 21:08:53 UTC 2009 - lazy.kent.s...@gmail.com
+
+- initial package created

New:
----
  tintii-2.6.1.tar.gz
  tintii.changes
  tintii.spec
  tintii_128.png

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ tintii.spec ++++++
#
# spec file for package tintii
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

%define _use_internal_dependency_generator 0
%define __find_requires %wx_requires

Name:           tintii
Version:        2.6.1
Release:        0
License:        GPL-2.0
Summary:        Selective Colour Photo Filter
Url:            http://www.indii.org/software/tintii
Group:          Productivity/Graphics/Bitmap Editors
Source0:        
http://www.indii.org/files/tint/releases/%{name}-%{version}.tar.gz
Source1:        http://www.indii.org/images/%{name}_128.png
BuildRequires:  ImageMagick
BuildRequires:  boost-devel
BuildRequires:  gcc-c++
BuildRequires:  update-desktop-files
BuildRequires:  wxWidgets-devel
BuildRoot:      %{_tmppath}/%{name}-%{version}-build

%description
tintii takes full colour photos and processes them into black and white
with some select regions highlighted in colour. The technique is known
as colour popping or selective colouring - tintii makes it easy.

%prep
%setup -q

%build
%configure --disable-assert
make %{?_smp_mflags}

%install
%make_install
# Create desktop file.
cat > %{name}.desktop << EOF
[Desktop Entry]
Name=tintii
GenericName=Selective Colour Photo Filter
GenericName[ru]=Избирательный фильтр цветов фотографий
Type=Application
Exec=tintii %f
Icon=tintii
Categories=Graphics;Photography;
Comment=Selective processing colour photos into black and white
Comment[ru]=Избирательное преобразование цветных фотографий в чёрно-белые
StartupNotify=true
Terminal=false
MimeType=image/gif;image/jpeg;image/png;image/tiff;image/x-bmp;image/x-portable-pixmap;image/x-pcx;image/x-targa;image/x-xpm;
EOF
install -Dm 0644 %{name}.desktop \
    %{buildroot}%{_datadir}/applications/%{name}.desktop

# Install icons of various sizes.
install -Dm 0644 %{SOURCE1} \
    %{buildroot}%{_datadir}/icons/hicolor/128x128/apps/%{name}.png
for size in 96x96 64x64 48x48 32x32 22x22 16x16 ; do
    install -dm 0755 \
        %{buildroot}%{_datadir}/icons/hicolor/${size}/apps
    convert -resize ${size} %{SOURCE1} \
        %{buildroot}%{_datadir}/icons/hicolor/${size}/apps/%{name}.png
done
%suse_update_desktop_file %{name}

%post
%desktop_database_post
%icon_theme_cache_post

%postun
%desktop_database_postun
%icon_theme_cache_postun

%files
%defattr(-,root,root,-)
%doc COPYING README
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/*/*/%{name}.*

%changelog
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to