diff options
author | Marek Szuba <marecki@gentoo.org> | 2023-10-22 11:29:13 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2023-10-22 12:03:34 +0100 |
commit | 78786417435180c3bc87d7c70147086e97f750f7 (patch) | |
tree | 2d415c7c866e917e65d4f16aaadb8edb6a660f60 /app-backup | |
parent | net-p2p/syncthing: drop 1.23.6, 1.23.7 (diff) | |
download | gentoo-78786417435180c3bc87d7c70147086e97f750f7.tar.gz gentoo-78786417435180c3bc87d7c70147086e97f750f7.tar.bz2 gentoo-78786417435180c3bc87d7c70147086e97f750f7.zip |
app-backup/borgmatic: drop 1.7.15
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/borgmatic/Manifest | 1 | ||||
-rw-r--r-- | app-backup/borgmatic/borgmatic-1.7.15.ebuild | 73 |
2 files changed, 0 insertions, 74 deletions
diff --git a/app-backup/borgmatic/Manifest b/app-backup/borgmatic/Manifest index 0d98011f7e31..f9b2b79af9f1 100644 --- a/app-backup/borgmatic/Manifest +++ b/app-backup/borgmatic/Manifest @@ -1,3 +1,2 @@ -DIST borgmatic-1.7.15.tar.gz 390819 BLAKE2B dc9086a0363afb8acbe943776cd6f388ba85a18e50554b5187c86e7054e7ff748ea878623d9b46c19564198faf5c566b137e54681812086115311970bc517455 SHA512 cf1f6da782a5ad547a76b9e4cb00cbd4ca4232cfb5dcd027c6fee9f1a3b97fda894f27c512007b449b8e11e939249060f63c3cdde29aee3aa86710200cf8d2db DIST borgmatic-1.8.2.tar.gz 396972 BLAKE2B d9444ec49c3d325d865d553fa1cb28de9416aa36e999ef6452c62a9a6519e58afbc922398c52f3a1de441fd8da02e5618bc03a67baae161677a15a1780209788 SHA512 8de49c071c54516d0fb3f0d918f05226ac00519cc0605eacf204795a239554764fd1f3b0f44f3110fc551d6a89e92a59ca34ddebbfb02bf3deabc326f81ccf9c DIST borgmatic-1.8.3.tar.gz 399031 BLAKE2B d560ccf69f86f35951521e44fba03a4704161abfe1208a8ef23067ba09b0060be84605761a2fa0b0878d466df10391a9314e85480c15af22faaf326c84211dd9 SHA512 3f798fddadb12742928e1542d1c71838b58870ecea18c62b260829880ae7ba0ec26303548a60ff7c8071b49eb630320bb055a9a1d67e4952c8952140f09100d2 diff --git a/app-backup/borgmatic/borgmatic-1.7.15.ebuild b/app-backup/borgmatic/borgmatic-1.7.15.ebuild deleted file mode 100644 index ece145444689..000000000000 --- a/app-backup/borgmatic/borgmatic-1.7.15.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..12} ) -DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 systemd pypi - -DESCRIPTION="Automatically create, prune and verify backups with borgbackup" -HOMEPAGE="https://torsion.org/borgmatic/" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~riscv" - -# borg is called as an external tool, hence no pythonic stuff -RDEPEND="app-backup/borgbackup - $(python_gen_cond_dep ' - <dev-python/colorama-0.5[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - <dev-python/ruamel-yaml-0.18.0[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - ')" -BDEPEND=" - test? ( - $(python_gen_cond_dep ' - >=dev-python/flexmock-0.10.10[${PYTHON_USEDEP}] - ') - )" - -PATCHES=( - "${FILESDIR}"/${PN}-1.7.13-no_test_coverage.patch - "${FILESDIR}"/${PN}-1.7.14-systemd_service_bin_path.patch -) - -# A fragile test whose only purpose is to make sure the NEWS file -# has been updated for the current version. -EPYTEST_DESELECT=( - tests/integration/commands/test_borgmatic.py::test_borgmatic_version_matches_news_version -) - -distutils_enable_tests pytest - -src_install() { - distutils-r1_src_install - systemd_dounit sample/systemd/borgmatic.{service,timer} - keepdir /etc/borgmatic -} - -pkg_postinst() { - if [[ -z "${REPLACING_VERSIONS}" ]]; then - elog "To generate a sample configuration file, run:" - elog " ${PN} config generate" - else - local oldver - for oldver in ${REPLACING_VERSIONS}; do - if ver_test "${oldver}" -lt 1.7.11; then - ewarn "Since version 1.7.11 ${PN} defaults to a different way of selecting archives for multi-archive actions." - ewarn "For details, please see" - ewarn - ewarn " https://torsion.org/borgmatic/docs/how-to/make-per-application-backups/#archive-naming" - ewarn - break - fi - done - fi - elog - elog "Systemd users wishing to periodically run ${PN} can use the provided timer and service units." -} |