a773aeb
Name: darktable
8e4a729
Version: 2.4.3
f836e7f
Release: 2%{?dist}
6718465
a773aeb
Summary: Utility to organize and develop raw images
a773aeb
a773aeb
License: GPLv3+
a773aeb
URL: http://www.darktable.org/
a4017d2
Source0: https://github.com/darktable-org/darktable/releases/download/release-%{version}/darktable-%{version}.tar.xz
a773aeb
a773aeb
BuildRequires: cairo-devel
6b9f375
BuildRequires: clang >= 3.4
7e8556e
%if 0%{?el7}
6b9f375
BuildRequires: cmake3 >= 3.1
7e8556e
%else
6b9f375
BuildRequires: cmake >= 3.1
7e8556e
%endif
a4017d2
BuildRequires: colord-gtk-devel
a4017d2
BuildRequires: colord-devel
a4017d2
BuildRequires: cups-devel
a4017d2
BuildRequires: desktop-file-utils
f1f1313
# EPEL7 does not have a recent GCC
f1f1313
%if 0%{?el7}
f1f1313
BuildRequires: devtoolset-7-toolchain
f1f1313
BuildRequires: devtoolset-7-libatomic-devel
f1f1313
%endif
60a4c21
BuildRequires: exiv2-devel >= 0.24
a4017d2
BuildRequires: flickcurl-devel
80f86af
BuildRequires: gcc >= 5.0
a773aeb
BuildRequires: GraphicsMagick-devel
60a4c21
BuildRequires: gtk3-devel >= 3.14
a4017d2
BuildRequires: intltool
8f6785f
# iso-codes dependency not mandatory, just optional / recommended
748149d
# in future please check if EL7 iso-codes version is >= 3.66
f1f1313
%if 0%{?fedora}
8f6785f
BuildRequires: iso-codes >= 3.66
f1f1313
%endif
a4017d2
BuildRequires: gettext
a4017d2
BuildRequires: json-glib-devel
a773aeb
BuildRequires: lcms2-devel
a773aeb
BuildRequires: lensfun-devel
3041fbb
BuildRequires: libappstream-glib
a773aeb
BuildRequires: libcurl-devel >= 7.18.0
a4017d2
BuildRequires: libgphoto2-devel >= 2.4.5
a4017d2
BuildRequires: libjpeg-devel
a4017d2
BuildRequires: libpng-devel
a4017d2
BuildRequires: librsvg2-devel >= 2.26
a773aeb
BuildRequires: libsecret-devel
a4017d2
BuildRequires: libsoup-devel
a4017d2
BuildRequires: libtiff-devel
a4017d2
BuildRequires: libwebp-devel
b6c0ce8
# Fedora uses Fedora lua, EPEL7 uses bundled lua
b6c0ce8
%if 0%{?fedora}
b6c0ce8
BuildRequires: lua-devel >= 5.3
b6c0ce8
%endif
a4017d2
BuildRequires: opencl-headers
a4017d2
BuildRequires: OpenEXR-devel >= 1.6
60a4c21
BuildRequires: openjpeg2-devel
a4017d2
BuildRequires: osm-gps-map-devel >= 1.0
75acfb2
BuildRequires: perl-interpreter
a4017d2
BuildRequires: pkgconfig >= 0.22
a4017d2
BuildRequires: po4a
a773aeb
BuildRequires: /usr/bin/pod2man
a4017d2
BuildRequires: pugixml-devel
a4017d2
BuildRequires: sqlite-devel
6b9f375
BuildRequires: zlib-devel
4703c63
8f6785f
# iso-codes dependency not mandatory, just optional / recommended
748149d
# in future please check if EL7 iso-codes version is >= 3.66
748149d
%if 0%{?fedora}
8f6785f
Requires: iso-codes >= 3.66
748149d
%endif
4703c63
afb8045
# Concerning rawspeed bundled library, see
afb8045
# https://fedorahosted.org/fpc/ticket/550#comment:9
afb8045
Provides: bundled(rawspeed)
b6c0ce8
%if 0%{?el7}
f66cbe1
Provides: bundled(lua)
b6c0ce8
%endif
afb8045
a773aeb
# uses xmmintrin.h
60a4c21
ExclusiveArch: x86_64 aarch64
a773aeb
a773aeb
a773aeb
%description
a773aeb
Darktable is a virtual light-table and darkroom for photographers:
a773aeb
it manages your digital negatives in a database and lets you view them
a773aeb
through a zoom-able light-table.
a773aeb
It also enables you to develop raw images and enhance them.
a773aeb
a773aeb
a773aeb
%prep
2c2f317
echo directory: %{name}-%{version}
2c2f317
%setup -q -n 'darktable-%{version}'
a773aeb
de20f57
# Remove bundled OpenCL headers.
de20f57
rm -rf src/external/CL
de20f57
sed -i -e 's, \"external/CL/\*\.h\" , ,' src/CMakeLists.txt
de20f57
b6c0ce8
# Remove bundled lua on Fedora
b6c0ce8
%if 0%{?fedora}
b6c0ce8
rm -rf src/external/lua/
b6c0ce8
%endif
a773aeb
a773aeb
%build
f1f1313
%if 0%{?el7}
f1f1313
. /opt/rh/devtoolset-7/enable
f1f1313
%endif
a773aeb
mkdir %{_target_platform} 
b6c0ce8
pushd %{_target_platform}
b6c0ce8
# bundled lua is enabled on EPEL7
e7dfeda
%if 0%{?el7}
e7dfeda
%cmake3 \
e7dfeda
        -DCMAKE_LIBRARY_PATH:PATH=%{_libdir} \
e7dfeda
        -DUSE_GEO:BOOLEAN=ON \
e7dfeda
        -DCMAKE_BUILD_TYPE:STRING=Release \
e7dfeda
        -DBINARY_PACKAGE_BUILD=1 \
e7dfeda
        -DDONT_USE_INTERNAL_LUA=OFF \
e7dfeda
        -DPROJECT_VERSION:STRING="%{name}-%{version}-%{release}" \
e7dfeda
        ..
e7dfeda
%else
a773aeb
%cmake \
a773aeb
        -DCMAKE_LIBRARY_PATH:PATH=%{_libdir} \
a773aeb
        -DUSE_GEO:BOOLEAN=ON \
a773aeb
        -DCMAKE_BUILD_TYPE:STRING=Release \
a773aeb
        -DBINARY_PACKAGE_BUILD=1 \
b6c0ce8
        -DDONT_USE_INTERNAL_LUA=ON \
a773aeb
        -DPROJECT_VERSION:STRING="%{name}-%{version}-%{release}" \
a773aeb
        ..
e7dfeda
%endif
a773aeb
a773aeb
d6da36c
%make_build VERBOSE=1
a773aeb
popd
a773aeb
a773aeb
a773aeb
%install
a773aeb
pushd %{_target_platform} 
d6da36c
%make_install
a773aeb
popd
a773aeb
find %{buildroot} -name '*.la' -exec rm -f {} ';'
a773aeb
%find_lang %{name}
a773aeb
rm -rf %{buildroot}%{_datadir}/doc/darktable
9ede2de
mkdir -p %{buildroot}%{_libexecdir}/darktable/tools/noise
a773aeb
rm tools/noise/*.c
9ede2de
cp tools/noise/* %{buildroot}%{_libexecdir}/darktable/tools/noise/
3041fbb
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/appdata/darktable.appdata.xml
a773aeb
a773aeb
a773aeb
%post
a773aeb
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
a773aeb
a773aeb
%postun
a773aeb
update-desktop-database &> /dev/null || :
a773aeb
if [ $1 -eq 0 ] ; then
a773aeb
    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
a773aeb
    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
a773aeb
fi
a773aeb
a773aeb
%posttrans
a773aeb
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
a773aeb
a773aeb
%files -f %{name}.lang 
60a4c21
%license LICENSE
39771e3
%doc doc/README.md
a773aeb
%{_bindir}/darktable
60a4c21
%{_bindir}/darktable-chart
a773aeb
%{_bindir}/darktable-cli
e2b1ec1
%{_bindir}/darktable-cltest
a773aeb
%{_bindir}/darktable-cmstest
a4017d2
%{_bindir}/darktable-generate-cache
60a4c21
%{_bindir}/darktable-rs-identify
a773aeb
%{_libdir}/darktable
2a97ddf
%{_datadir}/darktable
a773aeb
%{_datadir}/applications/darktable.desktop
a773aeb
%{_datadir}/appdata/darktable.appdata.xml
a773aeb
%{_datadir}/icons/hicolor/*/apps/darktable*
a4017d2
%{_mandir}/man1/darktable*.1.gz
a4017d2
%{_mandir}/*/man1/darktable*.1.gz
b7e17da
%{_libexecdir}/darktable/
a773aeb
a773aeb
%changelog
f836e7f
* Thu May 31 2018 Germano Massullo <germano.massullo@gmail.com> - 2.4.3-2
f836e7f
- rebuilt due osm-gps-map update
f836e7f
8e4a729
* Wed Apr 25 2018 Germano Massullo <germano.massullo@gmail.com> - 2.4.3-1
8e4a729
- 2.4.3 release
04044c6
- removed noise tools MakeFile because it is now included in regular CMake system
8e4a729
748149d
* Thu Apr 19 2018 Germano Massullo <germano.massullo@gmail.com> - 2.4.2-2
748149d
- forced Requires: iso-codes for Fedora only
748149d
f64e3a4
* Thu Mar 22 2018 Germano Massullo <germano.massullo@gmail.com> - 2.4.1-7
f64e3a4
- 2.4.2 release
f64e3a4
f1f1313
* Tue Mar 13 2018 Germano Massullo <germano.massullo@gmail.com> - 2.4.1-6
f1f1313
- added devtoolset for EPEL7 needs
f1f1313
b6c0ce8
* Thu Mar 08 2018 Germano Massullo <germano.massullo@gmail.com> - 2.4.1-5
b6c0ce8
- on Fedora: replaced bundled lua with Fedora lua
b6c0ce8
fcc10a5
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.1-4
fcc10a5
- Escape macros in %%changelog
fcc10a5
a043675
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.1-3
a043675
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
a043675
80f86af
* Tue Jan 23 2018 Germano Massullo <germano.massullo@gmail.com> - 2.4.1-2
80f86af
- increased gcc minimum required version
80f86af
4703c63
* Mon Jan 22 2018 Germano Massullo <germano.massullo@gmail.com> - 2.4.1-1
4703c63
- 2.4.1 release
4703c63
- added iso-codes library requirement
39771e3
- added .md extension to README file
4703c63
5bb17c7
* Sun Dec 24 2017 Germano Massullo <germano.massullo@gmail.com> - 2.4.0-2
5bb17c7
- rebuilt as precaution to have a Fedora release number higher than the 2.4.0.rc0-1, that was entered by mistake
5bb17c7
2c2f317
* Sun Dec 24 2017 Germano Massullo <germano.massullo@gmail.com> - 2.4.0-1
2c2f317
- 2.4.0 release
2c2f317
6c419fa
* Mon Dec 11 2017 Germano Massullo <germano.massullo@gmail.com> - 2.4.0.rc1-0.1
6c419fa
- 2.4.0.rc1 release
6c419fa
d6da36c
* Sun Dec 10 2017 Germano Massullo <germano.massullo@gmail.com> - 2.4.0.rc0-0.2
fcc10a5
- replaced make %%{?_smp_mflags} with %%make_build
fcc10a5
- replaced make install DESTDIR=%%{buildroot} with %%make_install
d6da36c
- fixed previous wrong Fedora release tag (it was 1 instead of 0.1)
d6da36c
6b9f375
* Mon Dec 04 2017 Germano Massullo <germano.massullo@gmail.com> - 2.4.0.rc0-0.1
6b9f375
- 2.4 release candidate 1
6b9f375
- added BuildRequires gcc and clang minimum version requirements
6b9f375
- added BuildRequires: zlib-devel
6b9f375
- enabled osm-gps-map-devel for EPEL7, because version 1.x reached that repository too
6b9f375
e7dfeda
* Thu Nov 09 2017 Germano Massullo <germano.massullo@gmail.com> - 2.2.5-5
e7dfeda
- added cmake3 EPEL7 macro
e7dfeda
fb684df
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.5-4
fb684df
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
fb684df
4348c3f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.5-3
4348c3f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
4348c3f
e2b1ec1
* Mon May 29 2017 Germano Massullo <germano.massullo@gmail.com> - 2.2.5-2
fcc10a5
- de-commented %%{_bindir}/darktable-cltest line
e2b1ec1
169faa6
* Mon May 29 2017 Germano Massullo <germano.massullo@gmail.com> - 2.2.5-1
169faa6
- 2.2.5 release
169faa6
cda3b4a
* Wed May 10 2017 Germano Massullo <germano.massullo@gmail.com> - 2.2.4-4
cda3b4a
- Resumed OpenCL support
cda3b4a
Jared K. Smith 5b827c9
* Fri May 05 2017 Jared Smith <jsmith@fedoraproject.org> - 2.2.4-3
Jared K. Smith 5b827c9
- Turn off OpenCL support, as it is causing a segfault on start
Jared K. Smith 5b827c9
Rex Dieter 5823fb2
* Tue May 02 2017 Rex Dieter <rdieter@fedoraproject.org> - 2.2.4-2
Rex Dieter 5823fb2
- rebuild (exiv2)
Rex Dieter 5823fb2
8e9905a
* Mon Apr 10 2017 Germano Massullo <germano.massullo@gmail.com> - 2.2.4-1
8e9905a
- 2.2.4 release
8e9905a
afe1fa2
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.3-2
afe1fa2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
afe1fa2
984e1a4
* Fri Feb 03 2017 Sandro Mani <manisandro@gmail.com> - 2.2.3-1
984e1a4
- 2.2.3 release
984e1a4
3b4ec3e
* Wed Feb 01 2017 Sandro Mani <manisandro@gmail.com> - 2.2.2-2
3b4ec3e
- Rebuild (libwebp)
3b4ec3e
fd90eb5
* Sat Jan 28 2017 Germano Massullo <germano.massullo@gmail.com> - 2.2.2-1
fd90eb5
- 2.2.2 release 
fd90eb5
f663d5e
* Mon Jan 02 2017 Germano Massullo <germano.massullo@gmail.com> - 2.2.1-1
e30fc11
- 2.2.1 release
e30fc11
59c53a0
* Fri Dec 23 2016 Germano Massullo <germano.massullo@gmail.com> - 2.2.0-1
59c53a0
- 2.2.0 release
59c53a0
d51d573
* Mon Dec 05 2016 Germano Massullo <germano.massullo@gmail.com> - 2.2.0.rc2-0.1
d51d573
- 2.2.0 RC2
d51d573
f66cbe1
* Fri Nov 25 2016 Germano Massullo <germano.massullo@gmail.com> - 2.2.0.rc1-0.1
d51d573
- 2.2.0 RC1
f66cbe1
- Enabled bundled Lua, while discussing the creation of a compat-lua-52 package with Fedora Lua Special Interest Group
f66cbe1
60a4c21
* Sun Nov 06 2016 Germano Massullo <germano.massullo@gmail.com> - 2.2.0.rc0-0.1
60a4c21
- 2.2.0 release candidate
60a4c21
- Enforced dependencies versions according to 2.2.0 requirements
60a4c21
afb8045
* Wed Oct 26 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.7-2
afb8045
- Added rawspeed bundled library details
afb8045
be90dd9
* Tue Oct 25 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.7-1
be90dd9
- Minor update
be90dd9
a21e141
* Wed Sep 07 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.6-1
a21e141
- Minor update
a21e141
59fdeb2
* Tue Jul 05 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.5-1
df3f9d8
- Minor update
df3f9d8
c17c0e0
* Tue May 03 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.4-1
c17c0e0
- Minor update
c17c0e0
3041fbb
* Mon Apr 25 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.3-3
3041fbb
- Added app-data-validate usage. See https://fedoraproject.org/wiki/Packaging:AppData#app-data-validate_usage
3041fbb
e7079b5
* Sat Apr 02 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.3-2
fcc10a5
- Changed %%if 0%%{with_osm_gps_map_devel} to %%if 0%%{?with_osm_gps_map_devel}
e7079b5
177ea45
* Fri Apr 01 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.3-1
177ea45
- Minor update
177ea45
99c2e3c
* Mon Mar 07 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.2-1
99c2e3c
- Minor update
99c2e3c
88e159b
* Sun Feb 07 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.1-2
88e159b
- Fixed Openstreetmap support
88e159b
46a08c4
* Wed Feb 03 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.1-1
46a08c4
- Minor update with a lot of fixes. Further infos at https://github.com/darktable-org/darktable/releases/tag/release-2.0.1
46a08c4
6a4958f
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-2
6a4958f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6a4958f
a4017d2
* Sat Jan 09 2016 Germano Massullo <germano.massullo@gmail.com> - 2.0.0-1
a4017d2
- dartable-generate-nopatents-tarball.sh no longer requires since squid is no longer present in Darktable
fcc10a5
- Added %%{_libexecdir}/darktable/ to fix bugreport #1278142
fcc10a5
- Added %%{_bindir}/darktable-generate-cache
a4017d2
- Adjusted dependencies to reflect Darktable 2.0 dependencies
fcc10a5
- Replaced %%{_datadir}/man/man1/darktable.1.gz and %%{_datadir}/man/man1/darktable-cli.1.gz with %%{_mandir}/man1/darktable*.1.gz and %%{_mandir}/*/man1/darktable*.1.gz
a4017d2
- Sorted BuildRequire list in alphabetical order
b7e17da
365dced
* Sat Nov 07 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.9-5
365dced
- Removed -DCUSTOM_CFLAGS=ON Please read https://bugzilla.redhat.com/show_bug.cgi?id=1278064#c18
365dced
2101bcc
* Sat Nov 07 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.9-4
2101bcc
- Added -DCUSTOM_CFLAGS=ON
2101bcc
77f7136
* Fri Nov 06 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.9-3
77f7136
- Removed x86 32 bit CPU support
77f7136
de20f57
* Wed Nov 04 2015 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.6.9-2
de20f57
- Rework bundled opencl-headers handling in %%prep (RHBZ#1264933).
de20f57
0de9e85
* Wed Oct 21 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.9-1
0de9e85
- Update to 1.6.9
0de9e85
7f2eeea
* Thu Sep 10 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.8-3
7f2eeea
- spec file: removed BuildRequires: lua-devel because Darktable supports only LUA 5.2 version
7f2eeea
a773aeb
* Tue Sep 08 2015 Kalev Lember <klember@redhat.com> - 1.6.8-2
a773aeb
- Build with system lua
a773aeb
- Remove bundled lua in prep to make sure it's not used
a773aeb
a773aeb
* Tue Sep 08 2015 Kalev Lember <klember@redhat.com> - 1.6.8-1
a773aeb
- Update to 1.6.8
a773aeb
- Modernize spec file for current rpmbuild
a773aeb
- Drop GConf handling now that darktable no longer uses it
a773aeb
- Drop unused build deps
a773aeb
- Build with libsecret support, instead of libgnome-keyring
a773aeb
- Use license macro
a773aeb
a773aeb
* Tue Jul  7 2015 Tom Callaway <spot@fedoraproject.org> - 1.6.7-4
a773aeb
- unbundle opencl headers (and use system opencl headers)
a773aeb
a773aeb
* Wed Jun 24 2015 Rex Dieter <rdieter@fedoraproject.org> - 1.6.7-3
a773aeb
- rebuild (exiv2)
a773aeb
a773aeb
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.7-2
a773aeb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a773aeb
a773aeb
* Tue Jun 9 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.7-1
a773aeb
- Corrected Darktable website in spec file
a773aeb
- Minor update
a773aeb
a773aeb
* Thu May 14 2015 Nils Philippsen <nils@redhat.com> - 1.6.6-2
a773aeb
- rebuild for lensfun-0.3.1
a773aeb
a773aeb
* Sun Apr 26 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.6-1
a773aeb
- Minor update. Full changelog at https://github.com/darktable-org/darktable/releases/tag/release-1.6.6
a773aeb
a773aeb
* Sat Apr 4 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.4-1
a773aeb
- Minor update. Full changelog at https://github.com/darktable-org/darktable/releases/tag/release-1.6.4
a773aeb
- Removed patch for Canon EOS Rebel, because the fixed code is in the upstream stable release.
a773aeb
a773aeb
* Wed Mar 18 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.3-2
a773aeb
- Backport of fix for bugreport #1202105
a773aeb
a773aeb
* Mon Mar 02 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.3-1
a773aeb
- Darktable 1.6.3
a773aeb
- Fixed date of Feb 22 2015 changelog.
a773aeb
a773aeb
* Sun Feb 22 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.2-5
a773aeb
- Removed LUA support due missing LUA 5.3 support by Darktable. This will avoid breaking build tree.
a773aeb
a773aeb
* Wed Feb 04 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.2-4
a773aeb
- Removed "Requires: lua-devel"
a773aeb
a773aeb
* Wed Feb 04 2015 Germano Massullo <germano.massullo@gmail.com> - 1.6.2-3
a773aeb
- Added LUA support
a773aeb
a773aeb
* Wed Feb 04 2015 Edouard Bourguignon <madko@linuxed.net> - 1.6.2-2
a773aeb
- Aesthetic changes (useless spaces)
fcc10a5
- Use mkdir %%{_target_platform} instead of buildFedora
fcc10a5
- Consistence use of %%var instead of $VAR
a773aeb
 
a773aeb
* Mon Feb 02 2015 Edouard Bourguignon <madko@linuxed.net> - 1.6.2-1
a773aeb
- Darktable 1.6.2
a773aeb
a773aeb
* Sun Feb 01 2015 Edouard Bourguignon <madko@linuxed.net> - 1.6.1-1
a773aeb
- Darktable 1.6.1
a773aeb
a773aeb
* Wed Jan 21 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.6.0-2
a773aeb
- Rebuild (libgpohoto2) 
a773aeb
a773aeb
* Tue Dec 09 2014 Edouard Bourguignon <madko@linuxed.net> - 1.6.0-1
a773aeb
- Darktable 1.6.0 stable 
a773aeb
a773aeb
* Sat Dec 06 2014 Edouard Bourguignon <madko@linuxed.net> - 1.5.1-0.2
a773aeb
- Add missing darktable-cmstest
a773aeb
a773aeb
* Sat Dec 06 2014 Edouard Bourguignon <madko@linuxed.net> - 1.5.1-0.1
a773aeb
- Darktable 1.6 rc1
a773aeb
a773aeb
* Wed Nov 26 2014 Rex Dieter <rdieter@fedoraproject.org> 1.4.2-4
a773aeb
- rebuild (openexr)
a773aeb
a773aeb
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-3
a773aeb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
a773aeb
a773aeb
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-2
a773aeb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a773aeb
a773aeb
* Fri Apr 25 2014 Edouard Bourguignon <madko@linuxed.net> - 1.4.2-1
a773aeb
- Upgrade to 1.4.2
a773aeb
a773aeb
* Mon Mar  3 2014 Edouard Bourguignon <madko@linuxed.net> - 1.4.1-3
a773aeb
- Remove wrong library path
a773aeb
a773aeb
* Mon Mar  3 2014 Edouard Bourguignon <madko@linuxed.net> - 1.4.1-2
a773aeb
- Restore rpath for internal lib
a773aeb
a773aeb
* Wed Feb 12 2014 Edouard Bourguignon <madko@linuxed.net> - 1.4.1-1
a773aeb
- Upgrade to 1.4.1
a773aeb
- Remove tools source files
a773aeb
a773aeb
* Tue Jan 14 2014 Edouard Bourguignon <madko@linuxed.net> - 1.4-2
a773aeb
- Add OpenJPEG and WebP support
a773aeb
- Add missing buildrequires on pod2man
a773aeb
a773aeb
* Wed Jan  1 2014 Edouard Bourguignon <madko@linuxed.net> - 1.4-1
a773aeb
- Upgrade to 1.4
a773aeb
a773aeb
* Mon Dec  2 2013 Edouard Bourguignon <madko@linuxed.net> - 1.4-0.1.rc1
a773aeb
- Upgrade to 1.4~rc1
a773aeb
a773aeb
* Sun Nov 24 2013 Edouard Bourguignon <madko@linuxed.net> - 1.2.3-2
a773aeb
- Add colord-devel support
a773aeb
a773aeb
* Sun Sep 15 2013 Edouard Bourguignon <madko@linuxed.net> - 1.2.3-1
a773aeb
- Upgrade to 1.2.3
a773aeb
a773aeb
* Tue Jun 25 2013 Edouard Bourguignon <madko@linuxed.net> - 1.2.2-1
a773aeb
- Upgrade to 1.2.2
a773aeb
a773aeb
* Tue Jun 11 2013 Edouard Bourguignon <madko@linuxed.net> - 1.2.1-4
a773aeb
- Remove patented code (DXT/squish)
a773aeb
a773aeb
* Mon Jun 10 2013 Edouard Bourguignon <madko@linuxed.net> - 1.2.1-3
a773aeb
- Patch to make squish optional
a773aeb
a773aeb
* Mon Jun 10 2013 Edouard Bourguignon <madko@linuxed.net> - 1.2.1-2
a773aeb
- fix for CVE-2013-2126 (Thanks to Alex Tutubalin's patch)
a773aeb
- Do not use squish (bug #972604)
a773aeb
a773aeb
* Sun May 26 2013 Edouard Bourguignon <madko@linuxed.net> - 1.2.1-1
a773aeb
- Upgrade to 1.2.1
a773aeb
a773aeb
* Thu May  2 2013 Edouard Bourguignon <madko@linuxed.net> - 1.2-2
a773aeb
- Add profiling sensor and photon noise tools
a773aeb
a773aeb
* Sat Apr  6 2013 Edouard Bourguignon <madko@linuxed.net> - 1.2-1
a773aeb
- Upgrade to 1.2
a773aeb
a773aeb
* Sun Mar 10 2013 Edouard Bourguignon <madko@linuxed.net> - 1.1.4-2
a773aeb
- Rebuild
a773aeb
a773aeb
* Sun Mar 10 2013 Edouard Bourguignon <madko@linuxed.net> - 1.1.4-1
a773aeb
- Upgrade to 1.1.4
a773aeb
a773aeb
* Fri Feb 22 2013 Edouard Bourguignon <madko@linuxed.net> - 1.1.3-2
a773aeb
- Add some missing dependancies
a773aeb
a773aeb
* Mon Feb 11 2013 Edouard Bourguignon <madko@linuxed.net> - 1.1.3-1
a773aeb
- Upgrade to 1.1.3
a773aeb
a773aeb
* Fri Feb  1 2013 Edouard Bourguignon <madko@linuxed.net> - 1.1.2+26~ge1f2980
a773aeb
- Pre 1.1.3
a773aeb
a773aeb
* Mon Jan 21 2013 Edouard Bourguignon <madko@linuxed.net> - 1.1.2-2
a773aeb
- Add missing gtk2-engine dependancy (bug #902288)
a773aeb
a773aeb
* Sat Jan 12 2013 Edouard Bourguignon <madko@linuxed.net> - 1.1.2-1
a773aeb
- Upgrade to 1.1.2
a773aeb
a773aeb
* Sun Jan  6 2013 Edouard Bourguignon <madko@linuxed.net> - 1.1.1-2
a773aeb
- Add map mode
a773aeb
a773aeb
* Wed Nov 28 2012 Edouard Bourguignon <madko@linuxed.net> - 1.1.1-1
a773aeb
- Upgrade to 1.1.1 
a773aeb
a773aeb
* Sat Nov 24 2012 Edouard Bourguignon <madko@linuxed.net> - 1.1-1
a773aeb
- Upgrade to 1.1
a773aeb
a773aeb
* Wed Nov 14 2012 Edouard Bourguignon <madko@linuxed.net> - 1.1-0.1.rc2
a773aeb
- Upgrade to 1.1~rc2
a773aeb
a773aeb
* Wed Oct 31 2012 Edouard Bourguignon <madko@linuxed.net> - 1.1-0.1.rc1
a773aeb
- Upgrade to 1.1~rc1
a773aeb
a773aeb
* Thu Jul 26 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0.5-1
a773aeb
- Upgrade to 1.0.5
a773aeb
a773aeb
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-3
a773aeb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a773aeb
a773aeb
* Sun Jul 15 2012 Jindrich Novy <jnovy@redhat.com> - 1.0.4-2
a773aeb
- rebuild because of new libgphoto2
a773aeb
a773aeb
* Sat Jun 30 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0.4-1
a773aeb
- Upgrade to 1.0.4
a773aeb
a773aeb
* Sun Apr 29 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0.3-1
a773aeb
- Upgrade to 1.0.3
a773aeb
a773aeb
* Sat Apr 28 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0.1-1
a773aeb
- Upgrade to 1.0.1
a773aeb
a773aeb
* Thu Mar 15 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0-1
a773aeb
- Upgrade to stable 1.0
a773aeb
a773aeb
* Sun Mar 11 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0-0.4.rc2
a773aeb
- Remove pre script
a773aeb
a773aeb
* Sat Mar 10 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0-0.3.rc2
a773aeb
- Patch for uninitialised variables
a773aeb
a773aeb
* Sat Mar 10 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0-0.2.rc2
a773aeb
- Remove useless darktable gconf schemas
a773aeb
a773aeb
* Sat Mar 10 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0-0.1.rc2
a773aeb
- Upgrade to rc2
a773aeb
a773aeb
* Wed Mar  7 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0-0.2.rc1
a773aeb
- Correct invalid type in darktable gconf schemas
a773aeb
a773aeb
* Sun Mar  4 2012 Edouard Bourguignon <madko@linuxed.net> - 1.0-0.1.rc1
a773aeb
- Darktable 1.0 RC1
a773aeb
a773aeb
* Mon Dec  5 2011 Edouard Bourguignon <madko@linuxed.net> - 0.9.3-2
a773aeb
- Add SDL-devel for darktable-viewer
a773aeb
a773aeb
* Mon Nov  7 2011 Edouard Bourguignon <madko@linuxed.net> - 0.9.3-1
a773aeb
- Upgrade to 0.9.3
a773aeb
a773aeb
* Fri Oct 14 2011 Rex Dieter <rdieter@fedoraproject.org> - 0.9.2-2
a773aeb
- rebuild (exiv2)
a773aeb
a773aeb
* Fri Aug 26 2011 Edouard Bourguignon <madko@linuxed.net> - 0.9.2-1
a773aeb
- Upgrade to 0.9.2
a773aeb
a773aeb
* Thu Jul 28 2011 Edouard Bourguignon <madko@linuxed.net> - 0.9.1-1
a773aeb
- Upgrade to 0.9.1
a773aeb
- Remove some old patches
a773aeb
a773aeb
* Sat Jul  2 2011 Edouard Bourguignon <madko@linuxed.net> - 0.9-1
a773aeb
- Upgrade to 0.9
a773aeb
a773aeb
* Mon May 23 2011 Edouard Bourguignon <madko@linuxed.net> - 0.8-11
a773aeb
- Add a patch for BINARY_PACKAGE_BUILD (preventing march=native)
a773aeb
a773aeb
* Fri Apr 22 2011 Dan Horák <dan[at]danny.cz> - 0.8-10
a773aeb
- make it x86-only
a773aeb
a773aeb
* Fri Apr 22 2011 Dan Horák <dan[at]danny.cz> - 0.8-9
a773aeb
- don't use x86-only compiler flags on non-x86 arches
a773aeb
a773aeb
* Tue Apr 19 2011 Edouard Bourguignon <madko@linuxed.net> - 0.8-8
a773aeb
- Change build option
a773aeb
a773aeb
* Mon Apr 11 2011 Rex Dieter <rdieter@fedoraproject.org> - 0.8-7.1
a773aeb
- rebuild (exiv2)
a773aeb
a773aeb
* Wed Mar 30 2011 Edouard Bourguignon <madko@linuxed.net> - 0.8-7
a773aeb
- Change cmake options
a773aeb
a773aeb
* Tue Mar 22 2011 Edouard Bourguignon <madko@linuxed.net> - 0.8-6
a773aeb
- Keep rpath for internal libs 
a773aeb
a773aeb
* Wed Feb 23 2011 Edouard Bourguignon <madko@linuxed.net> - 0.8-5
a773aeb
- Change build options
a773aeb
- Change permission on gconf darktable.schemas
a773aeb
- Add patch and cmake option to remove relative path (thanks to Karl Mikaelsson)
a773aeb
a773aeb
* Sat Feb 19 2011 Edouard Bourguignon <madko@linuxed.net> - 0.8-4
a773aeb
- Add missing doc files
a773aeb
a773aeb
* Sat Feb 19 2011 Edouard Bourguignon <madko@linuxed.net> - 0.8-3
a773aeb
- Clean up set but unused variables patch for GCC 4.6 (Karl Mikaelsson)
a773aeb
a773aeb
* Thu Feb 17 2011 Edouard Bourguignon <madko@linuxed.net> - 0.8-2
a773aeb
- Add flickcurl support
a773aeb
- Add patch to fix unused but set variables
a773aeb
a773aeb
* Tue Feb 15 2011 Edouard Bourguignon <madko@linuxed.net> - 0.8-1
a773aeb
- Upgrade to version 0.8
a773aeb
- Rebuilt using cmake
a773aeb
a773aeb
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-4
a773aeb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a773aeb
a773aeb
* Mon Jan 03 2011 Edouard Bourguignon <madko@linuxed.net> - 0.7.1-3
a773aeb
- Change exiv2 headers to use the new umbrella header (#666887)
a773aeb
a773aeb
* Sat Jan 01 2011 Rex Dieter <rdieter@fedoraproject.org> - 0.7.1-2
a773aeb
- rebuild (exiv2)
a773aeb
a773aeb
* Tue Dec 14 2010 Edouard Bourguignon <madko@linuxed.net> - 0.7.1-1
a773aeb
- Upgrade to version 0.7.1
a773aeb
a773aeb
* Mon Nov 29 2010 Edouard Bourguignon <madko@linuxed.net> - 0.7-1
a773aeb
- Upgrade to darktable 0.7
a773aeb
a773aeb
* Mon Sep 20 2010 Edouard Bourguignon <madko@linuxed.net> - 0.6-9
a773aeb
- Only use RPM_BUILD_ROOT
a773aeb
- Remove duplicated doc
a773aeb
a773aeb
* Mon Sep 20 2010 Edouard Bourguignon <madko@linuxed.net> - 0.6-8
a773aeb
- Change gegl-devel buildrequires
a773aeb
- Correct with_gegl option
a773aeb
- Correct typo in changelog
a773aeb
- Remove useless configure option (--disable-schemas)
a773aeb
- Add buildrequires on pkgconfig
a773aeb
a773aeb
* Fri Sep 10 2010 Edouard Bourguignon <madko@linuxed.net> - 0.6-7
a773aeb
- Remove useless removal of *.a files
a773aeb
- Change name of desktop patch (no version)
a773aeb
a773aeb
* Tue Aug 31 2010 Dmitrij S. Kryzhevich <krege@land.ru> - 0.6-6
a773aeb
- disable static lib and schemas
a773aeb
- update desktop database and icon cache
a773aeb
- disable gegl support 
a773aeb
a773aeb
* Mon Aug 30 2010 Edouard Bourguignon <madko@linuxed.net> - 0.6-5
a773aeb
- Upgrade to Darktable 0.6
a773aeb
- Change to tar.gz for source0
a773aeb
- Remove rpath patch
a773aeb
- Add BuildRequires on missing devel packages
a773aeb
- Change path to libdarktable.so
a773aeb
- Add icons
a773aeb
- Make a clean desktop file
a773aeb
- Add desktop file validation
a773aeb
a773aeb
* Mon Aug 23 2010 Edouard Bourguignon <madko@linuxed.net> - 0.5-4
a773aeb
- Use Gconf scriplets to hangle gconf schema
a773aeb
- Add a patch to remove rpath from Dmitrij S. Kryzhevich
a773aeb
a773aeb
* Wed Jul  7 2010 Edouard Bourguignon <madko@linuxed.net> - 0.5-3
a773aeb
- Removing rpath
a773aeb
a773aeb
* Fri Apr 23 2010 Edouard Bourguignon <madko@linuxed.net> - 0.5-2
a773aeb
- Update to 0.5
a773aeb
- Shorten file list
a773aeb
- Use devel packages for building
a773aeb
- Correct URL for Source0
a773aeb
a773aeb
* Tue Feb 02 2010 İbrahim Eser <ibrahimeser@gmx.com.tr> - 0.4-1
a773aeb
- Initial package.