From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8980615800A for ; Mon, 21 Aug 2023 15:49:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 936642BC01C; Mon, 21 Aug 2023 15:49:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 78BA22BC019 for ; Mon, 21 Aug 2023 15:49:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5018B3411C5 for ; Mon, 21 Aug 2023 15:49:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE7A3104A for ; Mon, 21 Aug 2023 15:49:39 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1692632964.27bd8c55982850e858f692f189a44efc25f15f28.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/borgbackup/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/borgbackup/borgbackup-1.2.4.ebuild X-VCS-Directories: app-backup/borgbackup/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 27bd8c55982850e858f692f189a44efc25f15f28 X-VCS-Branch: master Date: Mon, 21 Aug 2023 15:49:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2f057d85-614f-4f80-9313-f591576cda2d X-Archives-Hash: 0741cd8f936bf05521a0403be4a02f9c commit: 27bd8c55982850e858f692f189a44efc25f15f28 Author: Marek Szuba gentoo org> AuthorDate: Mon Aug 21 14:57:36 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Mon Aug 21 15:49:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27bd8c55 app-backup/borgbackup: drop 1.2.4 Signed-off-by: Marek Szuba gentoo.org> app-backup/borgbackup/borgbackup-1.2.4.ebuild | 51 --------------------------- 1 file changed, 51 deletions(-) diff --git a/app-backup/borgbackup/borgbackup-1.2.4.ebuild b/app-backup/borgbackup/borgbackup-1.2.4.ebuild deleted file mode 100644 index 6be9270fabef..000000000000 --- a/app-backup/borgbackup/borgbackup-1.2.4.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 bash-completion-r1 - -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86" -inherit pypi - -DESCRIPTION="Deduplicating backup program with compression and authenticated encryption" -HOMEPAGE="https://borgbackup.readthedocs.io/" - -LICENSE="BSD" -SLOT="0" - -# Unfortunately we have a file conflict with app-office/borg, bug #580402 -# borgbackup is *very* picky about which msgpack it work with, -# check setup.py on bumps. -RDEPEND=" - !!app-office/borg - app-arch/lz4 - virtual/acl - dev-python/pyfuse3[${PYTHON_USEDEP}] - ~dev-python/msgpack-1.0.5[${PYTHON_USEDEP}] - dev-libs/openssl:0= -" - -DEPEND=" - dev-python/setuptools-scm[${PYTHON_USEDEP}] - dev-python/packaging[${PYTHON_USEDEP}] - >=dev-python/cython-0.29.29[${PYTHON_USEDEP}] - dev-python/pkgconfig[${PYTHON_USEDEP}] - ${RDEPEND} -" - -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 -}