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 0276715800D for ; Mon, 10 Jul 2023 03:55:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46723E08AC; Mon, 10 Jul 2023 03:55:38 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2B5DEE08AC for ; Mon, 10 Jul 2023 03:55:38 +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 3A63333D3CF for ; Mon, 10 Jul 2023 03:55:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3DD0AC2 for ; Mon, 10 Jul 2023 03:55:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1688961301.64bf0f1a0882a3592c8d69886fa7cba0cdcc34f9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/btrbk/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/btrbk/btrbk-0.32.6-r1.ebuild app-backup/btrbk/btrbk-9999.ebuild X-VCS-Directories: app-backup/btrbk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 64bf0f1a0882a3592c8d69886fa7cba0cdcc34f9 X-VCS-Branch: master Date: Mon, 10 Jul 2023 03:55:35 +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: 50232266-f093-42ac-99cc-a5d721a2941e X-Archives-Hash: 5595fd74cdee55d78aec7dadfc3718d7 commit: 64bf0f1a0882a3592c8d69886fa7cba0cdcc34f9 Author: Sam James gentoo org> AuthorDate: Mon Jul 10 03:55:01 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jul 10 03:55:01 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64bf0f1a app-backup/btrbk: fix phase style Signed-off-by: Sam James gentoo.org> app-backup/btrbk/btrbk-0.32.6-r1.ebuild | 3 +++ app-backup/btrbk/btrbk-9999.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/app-backup/btrbk/btrbk-0.32.6-r1.ebuild b/app-backup/btrbk/btrbk-0.32.6-r1.ebuild index 7234202a4dc8..03aa2217e2bf 100644 --- a/app-backup/btrbk/btrbk-0.32.6-r1.ebuild +++ b/app-backup/btrbk/btrbk-0.32.6-r1.ebuild @@ -31,6 +31,7 @@ src_compile() { emake clean use doc && emake -C doc } + src_install() { local targets="install-bin install-etc install-share install-systemd" use doc && targets="${targets} install-man install-doc" @@ -41,6 +42,7 @@ src_install() { SYSTEMDDIR="$(systemd_get_systemunitdir)" \ ${targets} } + pkg_preinst() { if has_version "<${CATEGORY}/${PN}-0.26.0" ; then upgrade_0_26_0_warning="1" @@ -49,6 +51,7 @@ pkg_preinst() { upgrade_0_27_0_warning="1" fi } + pkg_postinst() { if [[ "${upgrade_0_26_0_warning}" == "1" ]]; then ewarn "If you are using raw targets, make sure to run the" diff --git a/app-backup/btrbk/btrbk-9999.ebuild b/app-backup/btrbk/btrbk-9999.ebuild index 0fa19175e32b..93122c48a06d 100644 --- a/app-backup/btrbk/btrbk-9999.ebuild +++ b/app-backup/btrbk/btrbk-9999.ebuild @@ -31,6 +31,7 @@ src_compile() { emake clean use doc && emake -C doc } + src_install() { local targets="install-bin install-etc install-share install-systemd" use doc && targets="${targets} install-man install-doc" @@ -41,6 +42,7 @@ src_install() { SYSTEMDDIR="$(systemd_get_systemunitdir)" \ ${targets} } + pkg_preinst() { if has_version "<${CATEGORY}/${PN}-0.26.0" ; then upgrade_0_26_0_warning="1" @@ -49,6 +51,7 @@ pkg_preinst() { upgrade_0_27_0_warning="1" fi } + pkg_postinst() { if [[ "${upgrade_0_26_0_warning}" == "1" ]]; then ewarn "If you are using raw targets, make sure to run the"