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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 68129138330 for ; Thu, 25 Aug 2016 05:28:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E12B21C012; Thu, 25 Aug 2016 05:28:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9220C21C012 for ; Thu, 25 Aug 2016 05:28:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 40E2B3408B8 for ; Thu, 25 Aug 2016 05:28:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B61FA2466 for ; Thu, 25 Aug 2016 05:28:36 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1472102894.3945c4b908a8e4dee2649d0b418426f579364464.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/snapper/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/snapper/snapper-0.2.8-r1.ebuild app-backup/snapper/snapper-0.2.8.ebuild app-backup/snapper/snapper-9999.ebuild X-VCS-Directories: app-backup/snapper/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 3945c4b908a8e4dee2649d0b418426f579364464 X-VCS-Branch: master Date: Thu, 25 Aug 2016 05:28:36 +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-Archives-Salt: f3950e78-56ed-47a8-b60e-4a56c16ef297 X-Archives-Hash: 8dfafe4bf307988420b0fc19ebc1e6ea commit: 3945c4b908a8e4dee2649d0b418426f579364464 Author: Yixun Lan gentoo org> AuthorDate: Thu Aug 25 03:14:55 2016 +0000 Commit: Yixun Lan gentoo org> CommitDate: Thu Aug 25 05:28:14 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3945c4b9 app-backup/snapper: add REQUIRED_USE restriction Gentoo-Bug: 591926 Package-Manager: portage-2.3.0 .../snapper/{snapper-0.2.8.ebuild => snapper-0.2.8-r1.ebuild} | 4 +++- app-backup/snapper/snapper-9999.ebuild | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/app-backup/snapper/snapper-0.2.8.ebuild b/app-backup/snapper/snapper-0.2.8-r1.ebuild similarity index 94% rename from app-backup/snapper/snapper-0.2.8.ebuild rename to app-backup/snapper/snapper-0.2.8-r1.ebuild index 6674766..f6d70a1 100644 --- a/app-backup/snapper/snapper-0.2.8.ebuild +++ b/app-backup/snapper/snapper-0.2.8-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -33,6 +33,8 @@ DEPEND="${RDEPEND} sys-devel/gettext virtual/pkgconfig" +REQUIRED_USE="|| ( btrfs ext4 lvm )" + DOCS=( AUTHORS README ) src_prepare() { diff --git a/app-backup/snapper/snapper-9999.ebuild b/app-backup/snapper/snapper-9999.ebuild index ec021d3..20b5908 100644 --- a/app-backup/snapper/snapper-9999.ebuild +++ b/app-backup/snapper/snapper-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -36,7 +36,9 @@ DEPEND="${RDEPEND} sys-devel/gettext virtual/pkgconfig" -DOCS=( AUTHORS README.md package/snapper.changes ) +REQUIRED_USE="|| ( btrfs ext4 lvm )" + +DOCS=( AUTHORS package/snapper.changes ) PATCHES=( "${FILESDIR}"/cron-confd.patch )