commit: 287068d2b5ac895211b9d4255e64e730316be630
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 30 12:29:54 2025 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Tue Sep 30 12:40:17 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=287068d2
app-backup/duplicity: drop 3.0.5
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
app-backup/duplicity/duplicity-3.0.5.ebuild | 58 -----------------------------
1 file changed, 58 deletions(-)
diff --git a/app-backup/duplicity/duplicity-3.0.5.ebuild
b/app-backup/duplicity/duplicity-3.0.5.ebuild
deleted file mode 100644
index 959fb6559129..000000000000
--- a/app-backup/duplicity/duplicity-3.0.5.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{11..13} )
-DISTUTILS_USE_PEP517=setuptools
-DISTUTILS_EXT=1
-
-inherit distutils-r1
-
-DESCRIPTION="Secure backup system using gnupg to encrypt data"
-HOMEPAGE="https://duplicity.gitlab.io/"
-SRC_URI="https://gitlab.com/duplicity/duplicity/-/archive/rel.${PV}/${PN}-rel.${PV}.tar.bz2"
-S="${WORKDIR}"/${PN}-rel.${PV}
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="s3 test"
-
-COMMON_DEPEND="
- net-libs/librsync
- app-crypt/gnupg
- dev-python/fasteners[${PYTHON_USEDEP}]
-"
-DEPEND="
- ${COMMON_DEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- dev-python/setuptools-scm[${PYTHON_USEDEP}]
- test? (
- || ( app-arch/par2cmdline app-arch/par2cmdline-turbo )
- dev-python/pexpect[${PYTHON_USEDEP}]
- )
-"
-RDEPEND="
- ${COMMON_DEPEND}
- dev-python/paramiko[${PYTHON_USEDEP}]
- s3? ( dev-python/boto3[${PYTHON_USEDEP}] )
-"
-
-EPYTEST_DESELECT=(
- # Linting tests (black, pylint, etc); not relevant for us
- testing/test_code.py::CodeTest::test_black
- testing/test_code.py::CodeTest::test_pep8
- testing/test_code.py::CodeTest::test_pylint
-)
-
-PATCHES=(
- "${FILESDIR}/${PN}-3.0.4.0-fix-docs-cmd.patch"
-)
-
-distutils_enable_tests pytest
-
-pkg_postinst() {
- elog "Duplicity has many optional dependencies to support various
backends."
- elog "Currently it's up to you to install them as necessary."
-}