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 A792F158020 for ; Mon, 24 Oct 2022 20:46:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4233E0788; Mon, 24 Oct 2022 20:46:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CEA7CE0788 for ; Mon, 24 Oct 2022 20:46:53 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E27EF33BEEB for ; Mon, 24 Oct 2022 20:46:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78AA8614 for ; Mon, 24 Oct 2022 20:46:50 +0000 (UTC) From: "Piotr Karbowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Piotr Karbowski" Message-ID: <1666644407.3ed46d1dadd00fd9bb6babac9d78a73cff171aae.slashbeast@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.2-r1.ebuild app-backup/borgbackup/borgbackup-1.2.2.ebuild X-VCS-Directories: app-backup/borgbackup/ X-VCS-Committer: slashbeast X-VCS-Committer-Name: Piotr Karbowski X-VCS-Revision: 3ed46d1dadd00fd9bb6babac9d78a73cff171aae X-VCS-Branch: master Date: Mon, 24 Oct 2022 20:46:50 +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: e427c7dd-02d1-4d35-bc1e-3128fc4d4eac X-Archives-Hash: e74d68ada186fe9bcf9a61df15968850 commit: 3ed46d1dadd00fd9bb6babac9d78a73cff171aae Author: Piotr Karbowski gentoo org> AuthorDate: Mon Oct 24 20:45:46 2022 +0000 Commit: Piotr Karbowski gentoo org> CommitDate: Mon Oct 24 20:46:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ed46d1d app-backup/borgbackup: 1.2.2-r1: shell completions; py3.11; PEP517. Closes: https://bugs.gentoo.org/878127 Signed-off-by: Piotr Karbowski gentoo.org> .../{borgbackup-1.2.2.ebuild => borgbackup-1.2.2-r1.ebuild} | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/app-backup/borgbackup/borgbackup-1.2.2.ebuild b/app-backup/borgbackup/borgbackup-1.2.2-r1.ebuild similarity index 76% rename from app-backup/borgbackup/borgbackup-1.2.2.ebuild rename to app-backup/borgbackup/borgbackup-1.2.2-r1.ebuild index 9ac4b1a5217a..85d04fd5696f 100644 --- a/app-backup/borgbackup/borgbackup-1.2.2.ebuild +++ b/app-backup/borgbackup/borgbackup-1.2.2-r1.ebuild @@ -3,9 +3,10 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 +inherit distutils-r1 bash-completion-r1 if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://github.com/${PN}/borg.git" @@ -44,4 +45,12 @@ DEPEND=" 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 }