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 C49EB158021 for ; Sat, 26 Nov 2022 15:18:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB163E08C4; Sat, 26 Nov 2022 15:18:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 9037AE08EF for ; Sat, 26 Nov 2022 15:18:27 +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 972913414BE for ; Sat, 26 Nov 2022 15:18:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2FE2A763 for ; Sat, 26 Nov 2022 15:18:25 +0000 (UTC) From: "Pascal Jäger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pascal Jäger" Message-ID: <1669475886.2ce474cacfcfcf2e0d3ba724f28c6b5872244f21.pascal.jaeger@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-backup/timeshift/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-backup/timeshift/timeshift-21.09.1-r1.ebuild app-backup/timeshift/timeshift-21.09.1-r2.ebuild X-VCS-Directories: app-backup/timeshift/ X-VCS-Committer: pascal.jaeger X-VCS-Committer-Name: Pascal Jäger X-VCS-Revision: 2ce474cacfcfcf2e0d3ba724f28c6b5872244f21 X-VCS-Branch: dev Date: Sat, 26 Nov 2022 15:18:25 +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: 8ec6ba5d-4b17-4f04-ae8e-bbcdfba51f36 X-Archives-Hash: 31ee7e23c4a756c66fbabe2a110ea933 commit: 2ce474cacfcfcf2e0d3ba724f28c6b5872244f21 Author: Pascal Jäger leimstift de> AuthorDate: Sat Nov 26 15:15:37 2022 +0000 Commit: Pascal Jäger leimstift de> CommitDate: Sat Nov 26 15:18:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2ce474ca app-backup/timeshift-21.09.1: revbump, use make instead of emake - update xdg icon cache after install Bug: https://bugs.gentoo.org/849626 Bug: https://bugs.gentoo.org/849629 Bug: https://bugs.gentoo.org/883157 Signed-off-by: Pascal Jäger leimstift.de> ....09.1-r1.ebuild => timeshift-21.09.1-r2.ebuild} | 23 +++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/app-backup/timeshift/timeshift-21.09.1-r1.ebuild b/app-backup/timeshift/timeshift-21.09.1-r2.ebuild similarity index 65% rename from app-backup/timeshift/timeshift-21.09.1-r1.ebuild rename to app-backup/timeshift/timeshift-21.09.1-r2.ebuild index 97f794686..09ac8c406 100644 --- a/app-backup/timeshift/timeshift-21.09.1-r1.ebuild +++ b/app-backup/timeshift/timeshift-21.09.1-r2.ebuild @@ -1,9 +1,8 @@ # Copyright 2019-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 -VALA_MIN_API_VERSION="0.44" -inherit vala xdg +EAPI=8 +inherit optfeature toolchain-funcs vala xdg DESCRIPTION="A system restore utility for Linux" HOMEPAGE="https://github.com/teejee2008/timeshift" @@ -40,3 +39,21 @@ src_prepare() { vala_src_prepare default } + +src_compile() { + tc-export CC + # can't use emake here, fails to compile because some files getting removed + # during compilation, which are missing afterwards. + # https://bugs.gentoo.org/883157 + # Pascal Jäger (2022-11-26) + make all || die +} + +pkg_postinst() { + xdg_pkg_postinst + optfeature "btrfs support" sys-fs/btrfs-progs +} + +pkg_postrm() { + xdg_pkg_postrm +}