app-backup/vzdump: Port to EAPI 6
authorDavid Seifert <soap@gentoo.org>
Thu, 28 Dec 2017 14:54:31 +0000 (15:54 +0100)
committerDavid Seifert <soap@gentoo.org>
Thu, 28 Dec 2017 15:07:18 +0000 (16:07 +0100)
Package-Manager: Portage-2.3.19, Repoman-2.3.6

app-backup/vzdump/metadata.xml
app-backup/vzdump/vzdump-1.2.ebuild

index 1c2b9403b157079305b1a8fad4a93cb059172c79..da366eec9b75a23f0a4928ee00d2210fdb1d70bb 100644 (file)
@@ -1,12 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<!-- maintainer-needed -->
-<longdescription lang="en">
-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)
-</longdescription>
+       <!-- maintainer-needed -->
+       <longdescription lang="en">
+               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)
+       </longdescription>
 </pkgmetadata>
index eb385bda0694f0b31b86ccd4c27afe4506c98afd..7027a1cd9fe075eda9083da902d757b771a7a425 100644 (file)
@@ -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
 }