public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-backup/vzdump/
@ 2016-08-06  9:39 Pacho Ramos
  0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2016-08-06  9:39 UTC (permalink / raw
  To: gentoo-commits

commit:     c91b4d29675a75fa2c1c5542e39e66cae69a111a
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  6 09:30:44 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Aug  6 09:38:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c91b4d29

app-backup/vzdump: Cleanup per bug #96436

Package-Manager: portage-2.3.0

 app-backup/vzdump/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-backup/vzdump/metadata.xml b/app-backup/vzdump/metadata.xml
index f1d95ea..64b7faa 100644
--- a/app-backup/vzdump/metadata.xml
+++ b/app-backup/vzdump/metadata.xml
@@ -6,9 +6,9 @@
   <name>Andreis Vinogradovs</name>
   <description>Primary maintainer, assign bugs to him</description>
 </maintainer>
-<maintainer type="person">
-  <email>pva@gentoo.org</email>
-  <name>Peter Volkov</name>
+<maintainer type="project">
+  <email>proxy-maint@gentoo.org</email>
+  <name>Proxy Maintainers</name>
 </maintainer>
 <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.


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-backup/vzdump/
@ 2017-12-28 15:07 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2017-12-28 15:07 UTC (permalink / raw
  To: gentoo-commits

commit:     0e161febc73b6a3713f76fd64f0584cb7fa1ebfe
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 28 14:54:31 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> 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 @@
 <?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>

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
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-backup/vzdump/
@ 2022-07-02 22:46 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2022-07-02 22:46 UTC (permalink / raw
  To: gentoo-commits

commit:     b20943d9bd5c4818353fb2c13f6c20bc678de9a9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 22:45:45 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 22:45:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b20943d9

app-backup/vzdump: drop 1.2

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-backup/vzdump/vzdump-1.2.ebuild | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/app-backup/vzdump/vzdump-1.2.ebuild b/app-backup/vzdump/vzdump-1.2.ebuild
deleted file mode 100644
index e7b4d1b5be01..000000000000
--- a/app-backup/vzdump/vzdump-1.2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit perl-functions
-
-DESCRIPTION="A utility to make consistent snapshots of running OpenVZ containers"
-HOMEPAGE="http://pve.proxmox.com/wiki/VZDump"
-SRC_URI="http://www.proxmox.com/cms_proxmox/cms/upload/vzdump/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-lang/perl:="
-RDEPEND="${DEPEND}
-	app-misc/cstream
-	dev-perl/LockFile-Simple
-	net-misc/rsync
-	sys-cluster/vzctl
-	sys-fs/lvm2
-	virtual/mta
-	virtual/perl-Getopt-Long"
-
-src_compile() {
-	return
-}
-
-src_install() {
-	emake PERLLIBDIR="$(perl_get_vendorlib)/PVE" DESTDIR="${D}" install
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-02 22:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-06  9:39 [gentoo-commits] repo/gentoo:master commit in: app-backup/vzdump/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2017-12-28 15:07 David Seifert
2022-07-02 22:46 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox