Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:winski
borgbackup
borgbackup.spec
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File borgbackup.spec of Package borgbackup
# # spec file for package borgbackup # # Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2016-2018 LISA GmbH, Bingen, 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/ # Name: borgbackup Version: 1.1.5 Release: 0 Summary: Deduplicating backup program with compression and authenticated encryption License: BSD-3-Clause Group: Productivity/Archiving/Backup Url: https://github.com/borgbackup/borg Source0: https://github.com/borgbackup/borg/releases/download/%{version}/borgbackup-%{version}.tar.gz Source1: https://github.com/borgbackup/borg/releases/download/%{version}/borgbackup-%{version}.tar.gz.asc Source2: %{name}.keyring # PATCH-FIX-OPENSUSE fix-msgpack-requirement.patch <alarrosa@suse.com> # deal with msgpack package rename fallout Patch1: fix-msgpack-requirement.patch # PATCH-FIX-OPENSUSE borgbackup-1.1.4-sphinx-default-theme.patch <hpj@urpla.net> # python3-guzzle_sphinx_theme isn't available everywhere, # fall back to Sphinx default theme for older distributions Patch2: borgbackup-1.1.4-sphinx-default-theme.patch BuildRequires: libacl-devel %if 0%{?suse_version} >= 1500 BuildRequires: liblz4-devel >= 1.7.0 BuildRequires: libzstd-devel >= 1.3.0 %endif BuildRequires: openssl-devel >= 1.0.0 BuildRequires: python3 >= 3.4 BuildRequires: python3-Cython # docs requirements BuildRequires: python3-Sphinx BuildRequires: python3-devel %if 0%{?suse_version} >= 1500 BuildRequires: python3-guzzle_sphinx_theme %endif %if 0%{?suse_version} >= 1500 BuildRequires: python3-msgpack >= 0.4.6 %else BuildRequires: python3-msgpack-python >= 0.4.6 %endif # testing requirements BuildRequires: bash %if 0%{?sle_version} == 120200 BuildRequires: bash-completion %endif BuildRequires: fish BuildRequires: python3-pytest BuildRequires: python3-setuptools BuildRequires: python3-setuptools_scm BuildRequires: python3-sphinx_rtd_theme BuildRequires: zsh %if 0%{?suse_version} >= 1500 Requires: python3-msgpack >= 0.4.6 %else Requires: python3-msgpack-python >= 0.4.6 %endif # weak dependencies Recommends: python3-llfuse BuildRoot: %{_tmppath}/%{name}-%{version}-build %description BorgBackup is a deduplicating backup program which stores deltas. It supports compression and authenticated encryption as well, facilitating frequent backups and storing to not fully trusted targets. Run borg for a commands overview and check out the docs at %{_docdir}/%{name}/html/index.html. %package bash-completion Summary: Bash Completion for %{name} Group: Productivity/Archiving/Backup Requires: %{name} = %{version} Requires: bash-completion Supplements: packageand(borgbackup:bash) BuildArch: noarch %description bash-completion BorgBackup is a deduplicating backup program which stores deltas. It supports compression and authenticated encryption as well, facilitating frequent backups and storing to not fully trusted targets. This package contains the bash completion script for borgbackup. %package zsh-completion Summary: Zsh Completion for %{name} Group: Productivity/Archiving/Backup Requires: %{name} = %{version} Requires: zsh Supplements: packageand(borgbackup:zsh) BuildArch: noarch %description zsh-completion BorgBackup is a deduplicating backup program which stores deltas. It supports compression and authenticated encryption as well, facilitating frequent backups and storing to not fully trusted targets. This package contains the zsh completion script for borgbackup. %package fish-completion Summary: Fish Completion for %{name} Group: Productivity/Archiving/Backup Requires: %{name} = %{version} Requires: fish Supplements: packageand(borgbackup:fish) BuildArch: noarch %description fish-completion BorgBackup is a deduplicating backup program which stores deltas. It supports compression and authenticated encryption as well, facilitating frequent backups and storing to not fully trusted targets. This package contains the zsh completion script for borgbackup. %prep %setup -q # fix msgpack requirement %if 0%{?suse_version} >= 1500 %patch1 -p1 %endif # fall back to sphinx default theme %if 0%{?suse_version} < 1500 %patch2 -p1 %endif # a single test is failing: test_non_ascii_acl - which is a rather esoteric check # that cannot be tripped with openSUSE, because user- and group-ids have to be # 7-bit ascii clean, and the test involves in setting an acl for an utf-8 encoded # id: disable it! <hpj@urpla.net> sed -i 's|test_non_ascii_acl|non_ascii_acl|' src/borg/testsuite/platform.py # version 1.0.3 has grown a new failure related to sparse files (which might behave # differently on different filesystems): disabled it: sed -i 's|test_sparse_file|non_sparse_file|' src/borg/testsuite/archiver.py %build CFLAGS="%{optflags}" python3 setup.py build pyvenv --system-site-packages --without-pip borg-env source borg-env/bin/activate python3 setup.py install PYTHONPATH=$(pwd)/build/lib.linux-$(uname -m)-%{py3_ver} make -C docs html man && rm docs/_build/html/.buildinfo %install python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} install -D -m 0644 docs/man/borg.1 %{buildroot}%{_mandir}/man1/borg.1 find %{buildroot}/%{python3_sitearch}/ -iname *.c -delete find %{buildroot}/%{python3_sitearch}/ -iname *.h -delete install -D -m 0644 scripts/shell_completions/bash/borg %{buildroot}/%{_datadir}/bash-completion/completions/borg install -D -m 0644 scripts/shell_completions/zsh/_borg %{buildroot}/%{_datadir}/zsh/site-functions/_borg install -D -m 0644 scripts/shell_completions/fish/borg.fish %{buildroot}/%{_datadir}/fish/vendor_completions.d/borg.fish # disable tests for leap versions: their pytest package is too old %if 0%{?suse_version} != 1315 %check # testing the build is a little awkward, since the original testsuite is based on tox and # tox tries to create a virtual environment, that we need tight control on in order to get # it to behave in our build system (offline mode, use site packages). OTOH, without the # venv, we face problems with setuptools (borg uses pkg_resources to locate the installed # package), while py.test relies on the usual module handling. <hpj@urpla.net> pyvenv --system-site-packages --without-pip borg-env source borg-env/bin/activate python3 setup.py install cd build/lib.linux-$(uname -m)-%{py3_ver} LANG=en_US.UTF-8 PYTHONPATH=$(pwd) py.test -vk 'not benchmark' --pyargs borg.testsuite %endif %files %defattr(-,root,root,-) %doc CHANGES.rst LICENSE README.rst docs/_build/html %{python3_sitearch}/borg/ %{python3_sitearch}/borgbackup-%{version}-py%{py3_ver}.egg-info %{_bindir}/borg %{_bindir}/borgfs %{_mandir}/man1/borg.1%{ext_man} %files bash-completion %defattr(-,root,root,-) %{_datadir}/bash-completion/completions/borg %files zsh-completion %defattr(-,root,root,-) %{_datadir}/zsh/site-functions/_borg %files fish-completion %defattr(-,root,root,-) %{_datadir}/fish/vendor_completions.d/borg.fish %changelog
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor