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 1FB2F138AE9 for ; Thu, 28 Dec 2017 15:07:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD8A5E0EB8; Thu, 28 Dec 2017 15:07:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFC44E0EB8 for ; Thu, 28 Dec 2017 15:07:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC463340AFC for ; Thu, 28 Dec 2017 15:07:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28E95AFC8 for ; Thu, 28 Dec 2017 15:07:41 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1514473638.0e161febc73b6a3713f76fd64f0584cb7fa1ebfe.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/vzdump/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/vzdump/metadata.xml app-backup/vzdump/vzdump-1.2.ebuild X-VCS-Directories: app-backup/vzdump/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0e161febc73b6a3713f76fd64f0584cb7fa1ebfe X-VCS-Branch: master Date: Thu, 28 Dec 2017 15:07:41 +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: 4c038356-438c-434f-b57f-7b15e7b7db09 X-Archives-Hash: 65719085ef35493d27d170c1559ac94e commit: 0e161febc73b6a3713f76fd64f0584cb7fa1ebfe Author: David Seifert gentoo org> AuthorDate: Thu Dec 28 14:54:31 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Dec 28 15:07:18 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e161feb app-backup/vzdump: Port to EAPI 6 Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-backup/vzdump/metadata.xml | 16 ++++++++-------- app-backup/vzdump/vzdump-1.2.ebuild | 25 +++++++++++++------------ 2 files changed, 21 insertions(+), 20 deletions(-) diff --git a/app-backup/vzdump/metadata.xml b/app-backup/vzdump/metadata.xml index 1c2b9403b15..da366eec9b7 100644 --- a/app-backup/vzdump/metadata.xml +++ b/app-backup/vzdump/metadata.xml @@ -1,12 +1,12 @@ - - -vzdump is a utility to make consistent snapshots of running OpenVZ VEs. It basically creates a tar archive of the VE private area, which also includes the VE configuration files. -There are several ways to provide consistency: - - stop the VE during backup (very long downtime) - - use rsync and suspend/resume (minimal downtime) - - use LVM2 (no downtime) - + + + vzdump is a utility to make consistent snapshots of running OpenVZ VEs. It basically creates a tar archive of the VE private area, which also includes the VE configuration files. + There are several ways to provide consistency: + - stop the VE during backup (very long downtime) + - use rsync and suspend/resume (minimal downtime) + - use LVM2 (no downtime) + diff --git a/app-backup/vzdump/vzdump-1.2.ebuild b/app-backup/vzdump/vzdump-1.2.ebuild index eb385bda069..7027a1cd9fe 100644 --- a/app-backup/vzdump/vzdump-1.2.ebuild +++ b/app-backup/vzdump/vzdump-1.2.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=6 + +inherit perl-functions DESCRIPTION="A utility to make consistent snapshots of running OpenVZ containers" HOMEPAGE="http://pve.proxmox.com/wiki/VZDump" @@ -12,22 +14,21 @@ SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" -RDEPEND="dev-lang/perl +DEPEND="dev-lang/perl:=" +RDEPEND="${DEPEND} + app-misc/cstream dev-perl/LockFile-Simple - virtual/perl-Getopt-Long - sys-cluster/vzctl net-misc/rsync - app-misc/cstream + sys-cluster/vzctl + sys-fs/lvm2 virtual/mta - sys-fs/lvm2" + virtual/perl-Getopt-Long" src_compile() { - :; + return } src_install() { - local installvendorlib - eval "$(perl -V:installvendorlib )" - make PERLLIBDIR="${installvendorlib}/PVE" DESTDIR="${D}" install || die "make install failed" - dodoc ChangeLog TODO + emake PERLLIBDIR="$(perl_get_vendorlib)/PVE" DESTDIR="${D}" install + einstalldocs }