diff options
author | Petr Vaněk <arkamar@gentoo.org> | 2024-09-12 15:03:52 +0200 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2024-09-12 15:03:52 +0200 |
commit | 492b39fac0b0c9c2ffe38bce63f20c6a9cff168d (patch) | |
tree | 8c78bb732c82ed2dccd41f1fa418e41e95f88701 /app-backup | |
parent | net-mail/mess822: drop 0.58-r2 (diff) | |
download | gentoo-492b39fac0b0c9c2ffe38bce63f20c6a9cff168d.tar.gz gentoo-492b39fac0b0c9c2ffe38bce63f20c6a9cff168d.tar.bz2 gentoo-492b39fac0b0c9c2ffe38bce63f20c6a9cff168d.zip |
app-backup/borgbackup: drop 1.2.8
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/borgbackup/Manifest | 1 | ||||
-rw-r--r-- | app-backup/borgbackup/borgbackup-1.2.8.ebuild | 78 |
2 files changed, 0 insertions, 79 deletions
diff --git a/app-backup/borgbackup/Manifest b/app-backup/borgbackup/Manifest index 9938cd533a7a..206bca49d5f8 100644 --- a/app-backup/borgbackup/Manifest +++ b/app-backup/borgbackup/Manifest @@ -1,2 +1 @@ -DIST borgbackup-1.2.8.tar.gz 4369117 BLAKE2B f230274189716e6ecb8f73d10caa13e683e63c9d9f50c5b6235fc666a0f64f3048421e76e5b57626144c37d37d28c4371b368f780f5e32055f62d5ff10954c19 SHA512 9a62e5eec894ebffe928a08c9a0cceebde084f16524d363a3c3be01d908a7eceaea8fa11eac422acc0fdb2534d79d1ee5ec5d9167e1086f334af6a28887616d5 DIST borgbackup-1.4.0.tar.gz 3798511 BLAKE2B 06d4d67e211a3ab1bc6d7155cbce8205fb7408a1149e44c77b500af02c25e62a569e3eaf50c11916a2ff9adea47c5791febfb7d0c657d0b195e5c5bbbd33a7d7 SHA512 f5866ece2d153d1e43127a04fd288a09403a9ea2ae4c981cb9ff855bd303b53c133c006f0b1a77541edc4f64940431e9c4d49ec45a3646784a29fe3b8828237a diff --git a/app-backup/borgbackup/borgbackup-1.2.8.ebuild b/app-backup/borgbackup/borgbackup-1.2.8.ebuild deleted file mode 100644 index 4a01c31e55f7..000000000000 --- a/app-backup/borgbackup/borgbackup-1.2.8.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) - -inherit bash-completion-r1 distutils-r1 pypi - -DESCRIPTION="Deduplicating backup program with compression and authenticated encryption" -HOMEPAGE="https://borgbackup.readthedocs.io/" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86" - -DEPEND=" - app-arch/lz4 - app-arch/zstd - dev-libs/openssl:0= - >=dev-libs/xxhash-0.8.1 - virtual/acl -" -# borgbackup is *very* picky about which msgpack it work with, -# check setup.py on bumps. -RDEPEND=" - ${DEPEND} - ~dev-python/msgpack-1.0.8[${PYTHON_USEDEP}] - dev-python/packaging[${PYTHON_USEDEP}] - dev-python/pyfuse3[${PYTHON_USEDEP}] -" - -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] - dev-python/pkgconfig[${PYTHON_USEDEP}] - dev-python/setuptools-scm[${PYTHON_USEDEP}] - test? ( - dev-python/python-dateutil[${PYTHON_USEDEP}] - ) -" - -# some tests randomly fail with xdist, bug #936524 -distutils_enable_tests pytest - -python_test() { - local EPYTEST_DESELECT=( - # Needs pytest-benchmark fixture - benchmark.py::test_ - - # TODO: - # Following tests fail because of additional warning in the output: - # ResourceWarning: unclosed file <_io.BufferedReader name=14> - # which is not expected in asserts - archiver.py::ArchiverTestCase::test_create_content_from_command_with_failed_command - archiver.py::ArchiverTestCase::test_create_paths_from_command_with_failed_command - archiver.py::RemoteArchiverTestCase::test_create_content_from_command_with_failed_command - archiver.py::RemoteArchiverTestCase::test_create_paths_from_command_with_failed_command - ) - - # This disables fuse releated tests - local -x BORG_FUSE_IMPL="none" - epytest --pyargs borg.testsuite -} - -src_install() { - distutils-r1_src_install - doman docs/man/* - - dobashcomp scripts/shell_completions/bash/borg - - insinto /usr/share/zsh/site-functions - doins scripts/shell_completions/zsh/_borg - - insinto /usr/share/fish/vendor_completions.d - doins scripts/shell_completions/fish/borg.fish -} |