Name: backintime Version: 1.1.24 Release: 1%{?dist} Summary: Simple backup tool inspired from the Flyback project and TimeVault License: GPLv2+ URL: https://github.com/bit-team/backintime Source0: https://github.com/bit-team/backintime/releases/download/v%{version}/%{name}-%{version}.tar.gz BuildArch: noarch BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: python-rpm-macros BuildRequires: python%{python3_pkgversion}-devel BuildRequires: systemd Requires: %{name}-common = %{version}-%{release} Requires(post): systemd Requires(preun): systemd Requires(postun): systemd # we place additional icons Requires: hicolor-icon-theme # execution of tests BuildRequires: python%{python3_pkgversion}-nose BuildRequires: python%{python3_pkgversion}-dbus BuildRequires: /usr/bin/ssh-agent BuildRequires: /usr/bin/ps BuildRequires: /usr/bin/rsync %description Back In Time is a simple backup system for Linux inspired from “flyback project” and “TimeVault”. The backup is done by taking snapshots of a specified set of directories. %package common Summary: Common files for the %{name}, a simple backup tool Requires: cronie Requires: openssh-clients Requires: python%{python3_pkgversion}-keyring Requires: python%{python3_pkgversion}-dbus Requires: fuse-sshfs Requires: fuse-encfs Requires: bindfs Requires: /usr/bin/ssh-agent Requires: /usr/bin/ps Requires: /usr/bin/rsync Provides: backintime-notify = %{version}-%{release} Obsoletes: backintime-notify < 1.1.12-1 %description common Back In Time is a simple backup system for Linux inspired from “flyback project” and “TimeVault”. The backup is done by taking snapshots of a specified set of directories. This package contains non GUI files used by different GUI frontends. %package qt4 Summary: Qt4 frontend for %{name} Requires: %{name}-common = %{version}-%{release} Requires: libnotify Requires: polkit Requires: python%{python3_pkgversion}-PyQt4 Requires: python%{python3_pkgversion}-SecretStorage Requires: python%{python3_pkgversion}-keyring Requires: xorg-x11-utils Provides: backintime-gnome = %{version}-%{release} Obsoletes: backintime-gnome < 1.1.12-1 Provides: backintime-kde = %{version}-%{release} Obsoletes: backintime-kde < 1.1.12-1 %description qt4 BackInTime is a simple backup system for Linux inspired from “flyback project” and “TimeVault”. The backup is done by taking snapshots of a specified set of directories. This package contains the Qt4 frontend of BackInTime. %prep %setup -q # Fix documentation directories. sed -i -e "s|'%{name}-common'|'%{name}'|g" common/config.py sed -i -e "s|%{name}-common|%{name}|g" common/configure qt4/configure # enable more output for (failed) tests sed -i 's|>/dev/null 2>/dev/null||g' common/test/test.sh %build #configure used, but fixed upstream to be able to use configure macro pushd common ./configure --no-fuse-group --python3 popd pushd qt4 ./configure --python3 popd %make_build -C common %make_build -C qt4 %install #Force Python 3 to be used for byte compilation: %global __python %{__python3} %make_install -C common %make_install -C qt4 %find_lang %{name} desktop-file-install \ --dir=%{buildroot}%{_datadir}/applications \ %{buildroot}%{_datadir}/applications/%{name}-qt4.desktop desktop-file-install \ --dir=%{buildroot}%{_datadir}/applications/ \ --add-category="Settings;" \ %{buildroot}%{_datadir}/applications/%{name}-qt4-root.desktop mkdir -p %{buildroot}%{_sbindir} cp -p %{buildroot}%{_bindir}/%{name}-qt4 \ %{buildroot}%{_sbindir}/%{name}-qt4-root ln -s consolehelper \ %{buildroot}%{_bindir}/%{name}-qt4-root mkdir -p %{buildroot}%{_sysconfdir}/security/console.apps/ cat << EOF > %{buildroot}%{_sysconfdir}/security/console.apps/%{name}-qt4-root USER=root PROGRAM=%{_sbindir}/%{name}-qt4-root SESSION=true EOF mkdir -p %{buildroot}%{_sysconfdir}/pam.d cat << EOF > %{buildroot}%{_sysconfdir}/pam.d/%{name}-qt4-root #%PAM-1.0 auth include config-util account include config-util session include config-util EOF %check pushd common/test nosetests-%{python3_version} -v ./test.sh %post common %systemd_post %{name}.service update-desktop-database &> /dev/null ||: /bin/touch --no-create %{_datadir}/icons/hicolor %postun common update-desktop-database &> /dev/null ||: %systemd_preun %{name}.service if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null ||: fi %posttrans common %systemd_postun_with_restart %{name}.service /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files common -f %{name}.lang %doc %{_datadir}/doc/%{name}/ %{_sysconfdir}/xdg/autostart/%{name}.desktop %{_bindir}/%{name} %{_bindir}/%{name}-askpass %dir %{_datadir}/%{name}/ %{_datadir}/%{name}/common/ %dir %{_datadir}/%{name}/plugins/ %{_datadir}/%{name}/plugins/user*plugin* %{_datadir}/%{name}/plugins/__pycache__/user*plugin* %{_datadir}/%{name}/plugins/notify*plugin* %{_datadir}/bash-completion/completions/backintime %{_datadir}/dbus-1/system-services/net.launchpad.backintime.serviceHelper.service %{_datadir}/polkit-1/actions/net.launchpad.backintime.policy %{_sysconfdir}/dbus-1/system.d/net.launchpad.backintime.serviceHelper.conf %{_mandir}/man1/%{name}* %files qt4 %doc %{_docdir}/%{name}-qt4/ %{_bindir}/%{name}-qt4 %{_bindir}/%{name}-qt4-root %{_bindir}/%{name}-qt4_polkit %{_sbindir}/%{name}-qt4-root %{_datadir}/applications/%{name}-qt4.desktop %{_datadir}/applications/%{name}-qt4-root.desktop %{_datadir}/backintime/qt4/ %{_datadir}/icons/hicolor/*/actions/*.svg %{_datadir}/%{name}/plugins/qt4plugin* %{_datadir}/%{name}/plugins/__pycache__/qt4*plugin* %{_datadir}/%{name}/plugins/__pycache__/notify*plugin* %{_datadir}/doc/qt/HTML/en/backintime/index.docbook %config(noreplace) %{_sysconfdir}/pam.d/%{name}-qt4-root %config %{_sysconfdir}/security/console.apps/%{name}-qt4-root %changelog * Fri Nov 10 2017 Johannes Lips - 1.1.24-1 - update to version 1.1.24 - fixing CVE-2017-16667 * Sun Oct 29 2017 Johannes Lips - 1.1.22-1 - update to version 1.1.22 * Sat Aug 05 2017 Filipe Rosset - 1.1.20-3 - Fix FTBFS with new BR python-rpm-macros * Wed Jul 26 2017 Fedora Release Engineering - 1.1.20-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Wed Apr 12 2017 Johannes Lips - 1.1.20-1 - update to version 1.1.20 * Fri Mar 31 2017 Johannes Lips - 1.1.18-1 - update to version 1.1.18 * Fri Feb 10 2017 Fedora Release Engineering - 1.1.12-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Thu Oct 13 2016 Johannes Lips - 1.1.12-3 - fixed icon removal with sed * Wed Jul 13 2016 Raphael Groner - 1.1.12-2 - use make and python3 macros - execute tests for common * Thu Mar 03 2016 Johannes Lips - 1.1.12-1 - update to version 1.1.12 - removal of desktop dependent sub-packages * Wed Jun 17 2015 Fedora Release Engineering - 1.0.36-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Tue Aug 12 2014 Christopher Meng - 1.0.36-1 - Update to 1.0.36 * Sat Jun 07 2014 Fedora Release Engineering - 1.0.34-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Sun Dec 22 2013 Christopher Meng - 1.0.34-1 - Update to 1.0.34(BZ#1043054) - Switch to kdesu(BZ#1038893) * Sun Nov 24 2013 Christopher Meng - 1.0.28-2 - Enable notify plugin, separate plugins into different subpackages. - Add missing python-SecretStorage dependency(BZ#1031403). - Remove fuse group check(BZ#1010728). - python-keyring incompatibility fix(BZ#1026542). * Mon Oct 21 2013 Christopher Meng - 1.0.28-1 - Update to 1.0.28(BZ#1021192) with fixes(BZ#1014293),(BZ#1014976). * Thu Sep 12 2013 Christopher Meng - 1.0.26-2 - Add missing python-keyring dependency(BZ#1007315). * Wed Sep 11 2013 Christopher Meng - 1.0.26-1 - Update to 1.0.26(BZ#1003304),(BZ#951248). - Fix Bugs(BZ#999935),(BZ#922534). * Sat Aug 03 2013 Fedora Release Engineering - 1.0.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Wed Feb 13 2013 Fedora Release Engineering - 1.0.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Wed Jul 18 2012 Fedora Release Engineering - 1.0.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Thu Jan 12 2012 Fedora Release Engineering - 1.0.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Sun Oct 09 2011 Tim Jackson - 1.0.8-2 - Add missing dependency on gnome-python2-gnome (rhbz#720577) * Sun Oct 09 2011 Tim Jackson - 1.0.8-1 - Update to version 1.0.8 * Mon Feb 07 2011 Fedora Release Engineering - 1.0.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Thu Feb 03 2011 Tim Jackson - 1.0.6-3 - Fix bad ownership of language files (RHBZ #569407) * Wed Feb 02 2011 Tim Jackson - 1.0.6-2 - Fix error if notify-python is not installed (RHBZ #630969) * Wed Feb 02 2011 Tim Jackson - 1.0.6-1 - Update to version 1.0.6 * Wed Aug 11 2010 David Malcolm - 0.9.26-4 - recompiling .py files against Python 2.7 (rhbz#623275) * Wed Sep 02 2009 Simon Wesp - 0.9.26-3 - Add patch0 to secure backups -* Fri Jul 24 2009 Fedora Release Engineering - 0.9.26-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sat May 23 2009 Simon Wesp - 0.9.26-1 - New upstream release - Drop 'removecheck'-patch * Sun May 17 2009 Simon Wesp - 0.9.24-3 - Fix sammries, RHBZ #501085 * Tue May 12 2009 Simon Wesp - 0.9.24-2 - fix doc issues, LP #375113 * Thu May 07 2009 Simon Wesp - 0.9.24-1 - New upstream release * Sat Apr 25 2009 Simon Wesp - 0.9.22-2 - Remove Patch for desktop-files and do the changes in spec-file - Change description of gnome package to "Gnome frontend for NAME" - Change description of kde package to "KDE frontend for NAME" - Add TRANSLATIONS to DOC of common package - Mark _DATADIR/gnome/help/NAME as DOC - Mark _DATADIR/doc/kde4/HTML/en/NAME as DOC - Use cp -p when copying from bindir to sbindir * Wed Apr 22 2009 Simon Wesp - 0.9.22-1 - New upstream release - Add Patch to remove the Desktopchecks in configure * Mon Apr 06 2009 Simon Wesp - 0.9.20-1 - New upstream release - Add consolehelperstuff for root-access * Tue Mar 17 2009 Simon Wesp - 0.9.16.1-1 - New upstream release * Tue Mar 10 2009 Simon Wesp - 0.9.14-1 - Initial Package build