Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/borgmatic/
Date: Tue, 01 Nov 2022 00:37:53
Message-Id: 1667263052.0708885e07bf99f89e345b0c0503f9987c1ac32d.marecki@gentoo
1 commit: 0708885e07bf99f89e345b0c0503f9987c1ac32d
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 00:37:32 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 00:37:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0708885e
7
8 app-backup/borgmatic: drop 1.6.6
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-backup/borgmatic/Manifest | 1 -
13 app-backup/borgmatic/borgmatic-1.6.6.ebuild | 65 -----------------------------
14 2 files changed, 66 deletions(-)
15
16 diff --git a/app-backup/borgmatic/Manifest b/app-backup/borgmatic/Manifest
17 index fa8d11cee2b1..fb5a67ddc01f 100644
18 --- a/app-backup/borgmatic/Manifest
19 +++ b/app-backup/borgmatic/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST borgmatic-1.6.6.tar.gz 323601 BLAKE2B b40d8f00e3b7bbd343336cf4c6992e34d8289de451c184717827e8e43519b84d4bb9b8cff6a835a7cc502d2e93045f0196d744e4b6ad800de1276e11c3189cec SHA512 f1a6dfa344ebee89e88f1aa6b43d8493c80815c637d8e0f7f6314462fd511b576e62246d957023ab2f9a68875d2818e2b8ef00cbf3339dc35a93d6ebad0bed19
22 DIST borgmatic-1.7.2.tar.gz 333772 BLAKE2B fd628e9c77547686d4edf5d1066d3c171575f4d923ebc5205c5eb64f3a960e94c121282e9f4fb02b1291a81011a18dc393c6d13a07f215585459e7a5b55f8107 SHA512 6ec12ec25ae4d0210bb9114795c1ea292d8236f9e68c9425e24ee7b580796504e4c317a3fcf778806a33bbd3db68669beb4ef7a88ec538c1bd432db9a2845b3e
23 DIST borgmatic-1.7.4.tar.gz 337521 BLAKE2B cbdf22c7428d2bd098a8bec0608c9d2fe41ab945aca4921cf78f72a5b73e2ea562a1e9e37705ada615f830b2655977179beca0f9a9bfa2937cc1cde0c292caed SHA512 bd320cbbb108fa20f7acc9a50fd4404166556a74df0a3631a2beca61de0e50c29e1e102345e6c3759538420040f359ff2f0cefe89b49c2c19250a4c7a27acd54
24
25 diff --git a/app-backup/borgmatic/borgmatic-1.6.6.ebuild b/app-backup/borgmatic/borgmatic-1.6.6.ebuild
26 deleted file mode 100644
27 index 575babca8947..000000000000
28 --- a/app-backup/borgmatic/borgmatic-1.6.6.ebuild
29 +++ /dev/null
30 @@ -1,65 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..11} )
37 -DISTUTILS_SINGLE_IMPL=1
38 -DISTUTILS_USE_PEP517=setuptools
39 -
40 -inherit distutils-r1 systemd
41 -
42 -DESCRIPTION="Automatically create, prune and verify backups with borgbackup"
43 -HOMEPAGE="https://torsion.org/borgmatic/"
44 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 -
46 -LICENSE="GPL-3"
47 -SLOT="0"
48 -KEYWORDS="amd64 ~arm ~arm64 ~riscv"
49 -
50 -# borg is called as an external tool, hence no pythonic stuff
51 -RDEPEND="app-backup/borgbackup
52 - $(python_gen_cond_dep '
53 - <dev-python/colorama-0.5[${PYTHON_USEDEP}]
54 - dev-python/jsonschema[${PYTHON_USEDEP}]
55 - dev-python/requests[${PYTHON_USEDEP}]
56 - <dev-python/ruamel-yaml-0.18.0[${PYTHON_USEDEP}]
57 - dev-python/setuptools[${PYTHON_USEDEP}]
58 - ')"
59 -BDEPEND="
60 - test? (
61 - $(python_gen_cond_dep '
62 - >=dev-python/flexmock-0.10.10[${PYTHON_USEDEP}]
63 - ')
64 - )"
65 -
66 -PATCHES=(
67 - "${FILESDIR}"/${PN}-1.5.1-no_test_coverage.patch
68 - "${FILESDIR}"/${PN}-1.5.16-systemd_service_bin_path.patch
69 -)
70 -
71 -# test_borgmatic_version_matches_news_version tries to run the 'borgmatic'
72 -# executable so making it work would require passing --install
73 -# to distutils_enable_tests. Given that this is the only test requiring
74 -# this and that all it does is make sure the NEWS file has been updated
75 -# for the current version, just skip it.
76 -EPYTEST_DESELECT=(
77 - tests/integration/commands/test_borgmatic.py::test_borgmatic_version_matches_news_version
78 -)
79 -
80 -distutils_enable_tests pytest
81 -
82 -src_install() {
83 - distutils-r1_src_install
84 - systemd_dounit sample/systemd/borgmatic.{service,timer}
85 - keepdir /etc/borgmatic
86 -}
87 -
88 -pkg_postinst() {
89 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
90 - elog "To generate a sample configuration file, run:"
91 - elog " generate-borgmatic-config"
92 - fi
93 - elog
94 - elog "Systemd users wishing to periodically run borgmatic can use the provided timer and service units."
95 -}