[gentoo-commits] repo/gentoo:master commit in: app-backup/pdumpfs/files/, app-backup/pdumpfs/

2021-10-30 Thread Jakov Smolić
commit: acefc0d43fdb9104de9ad35c3933c3c691ed7a16
Author: Paul Healy  gmail  com>
AuthorDate: Sat Oct 30 13:43:28 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sat Oct 30 17:58:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acefc0d4

app-backup/pdumpfs: bump to EAPI 8

Replace epatch, dohtml
Bump the minimum ruby version to >=ruby-2.7.4

Bug: https://bugs.gentoo.org/819687
Signed-off-by: Paul Healy  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/22764
Signed-off-by: Jakov Smolić  gentoo.org>

 app-backup/pdumpfs/files/pdumpfs-in-r3.patch   | 40 +++
 app-backup/pdumpfs/files/pdumpfs-test-r3.patch | 12 +++
 app-backup/pdumpfs/pdumpfs-1.3-r3.ebuild   | 44 ++
 3 files changed, 96 insertions(+)

diff --git a/app-backup/pdumpfs/files/pdumpfs-in-r3.patch 
b/app-backup/pdumpfs/files/pdumpfs-in-r3.patch
new file mode 100644
index 000..b00f9bed575
--- /dev/null
+++ b/app-backup/pdumpfs/files/pdumpfs-in-r3.patch
@@ -0,0 +1,40 @@
+patch by proxy maintainer, P. Healy, April 2015
+# Bug 509960
+--- a/pdumpfs.in_orig  2004-12-21 02:43:12.0 +
 b/pdumpfs.in   2015-04-01 10:58:22.671131947 +0100
+@@ -48,7 +48,7 @@
+ #
+ 
+ require 'find'
+-require 'ftools'
++require 'fileutils'
+ require 'getoptlong'
+ require 'date'
+ 
+@@ -868,7 +868,7 @@
+   today  = File.join(dest, datedir(start_time), base)
+ 
+   File.umask(0077)
+-  File.mkpath(today) unless @dry_run
++  FileUtils.mkpath(today) unless @dry_run
+   if latest
+ update_snapshot(src, latest, today)
+   else
+@@ -1018,7 +1018,7 @@
+ 
+   case type
+   when "directory"
+-File.mkpath(today)
++FileUtils.mkpath(today)
+   when "unchanged"
+ File.force_link(latest, today)
+   when "updated"
+@@ -1089,7 +1089,7 @@
+ 
+   case type
+   when "directory"
+-File.mkpath(t)
++FileUtils.mkpath(t)
+   when "new_file"
+ copy(s, t)
+   when "symlink"

diff --git a/app-backup/pdumpfs/files/pdumpfs-test-r3.patch 
b/app-backup/pdumpfs/files/pdumpfs-test-r3.patch
new file mode 100644
index 000..30cd0292dae
--- /dev/null
+++ b/app-backup/pdumpfs/files/pdumpfs-test-r3.patch
@@ -0,0 +1,12 @@
+patch by proxy maintainer, P. Healy, April 2015
+# Bug 509960
+--- a/tests/pdumpfs-test_orig  2004-08-10 07:54:28.0 +0100
 b/tests/pdumpfs-test   2015-04-01 11:24:35.948633870 +0100
+@@ -17,6 +17,7 @@
+ 
+ ../pdumpfs src dest > tmp.log || exit 1
+ diff -r src dest/$today/src || exit 1
++mkdir -p dest/$yesterday && rmdir dest/$yesterday
+ mv dest/$today dest/$yesterday
+ 
+ echo update > src/foo

diff --git a/app-backup/pdumpfs/pdumpfs-1.3-r3.ebuild 
b/app-backup/pdumpfs/pdumpfs-1.3-r3.ebuild
new file mode 100644
index 000..38091aedbe1
--- /dev/null
+++ b/app-backup/pdumpfs/pdumpfs-1.3-r3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A daily backup system similar to Plan9's dumpfs"
+HOMEPAGE="http://0xcc.net/pdumpfs/;
+SRC_URI="http://0xcc.net/pdumpfs/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="l10n_ja"
+
+DEPEND=">=dev-lang/ruby-2.7.4"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-in-r3.patch"
+   "${FILESDIR}/${PN}-test-r3.patch"
+)
+
+src_compile() {
+   emake pdumpfs
+}
+
+src_test() {
+   # RUBYOPT=-rauto_gem without rubygems installed will cause ruby to 
fail, bug #158455 and #163473.
+   export RUBYOPT="${GENTOO_RUBYOPT}"
+   emake check
+}
+
+src_install() {
+   dobin pdumpfs
+
+   doman man/man8/pdumpfs.8
+   dodoc -r doc/*
+
+   if use l10n_ja; then
+   insinto /usr/share/man/ja/man8
+   doins man/ja/man8/pdumpfs.8
+   fi
+
+   dodoc ChangeLog README
+}



[gentoo-commits] repo/gentoo:master commit in: app-backup/pdumpfs/files/, app-backup/pdumpfs/

2021-10-30 Thread Jakov Smolić
commit: 6ec94f16878058cf1d197f2ecd22a221ffe1e94c
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Oct 30 18:04:17 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sat Oct 30 18:04:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ec94f16

app-backup/pdumpfs: drop 1.3-r2

Closes: https://bugs.gentoo.org/819687
Signed-off-by: Jakov Smolić  gentoo.org>

 app-backup/pdumpfs/files/pdumpfs-in.patch   | 40 
 app-backup/pdumpfs/files/pdumpfs-test.patch | 12 
 app-backup/pdumpfs/pdumpfs-1.3-r2.ebuild| 47 -
 3 files changed, 99 deletions(-)

diff --git a/app-backup/pdumpfs/files/pdumpfs-in.patch 
b/app-backup/pdumpfs/files/pdumpfs-in.patch
deleted file mode 100644
index cddfb995918..000
--- a/app-backup/pdumpfs/files/pdumpfs-in.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-patch by proxy maintainer, P. Healy, April 2015
-# Bug 509960
 pdumpfs.in_orig2004-12-21 02:43:12.0 +
-+++ pdumpfs.in 2015-04-01 10:58:22.671131947 +0100
-@@ -48,7 +48,7 @@
- #
- 
- require 'find'
--require 'ftools'
-+require 'fileutils'
- require 'getoptlong'
- require 'date'
- 
-@@ -868,7 +868,7 @@
-   today  = File.join(dest, datedir(start_time), base)
- 
-   File.umask(0077)
--  File.mkpath(today) unless @dry_run
-+  FileUtils.mkpath(today) unless @dry_run
-   if latest
- update_snapshot(src, latest, today)
-   else
-@@ -1018,7 +1018,7 @@
- 
-   case type
-   when "directory"
--File.mkpath(today)
-+FileUtils.mkpath(today)
-   when "unchanged"
- File.force_link(latest, today)
-   when "updated"
-@@ -1089,7 +1089,7 @@
- 
-   case type
-   when "directory"
--File.mkpath(t)
-+FileUtils.mkpath(t)
-   when "new_file"
- copy(s, t)
-   when "symlink"

diff --git a/app-backup/pdumpfs/files/pdumpfs-test.patch 
b/app-backup/pdumpfs/files/pdumpfs-test.patch
deleted file mode 100644
index e81e8b0f2d8..000
--- a/app-backup/pdumpfs/files/pdumpfs-test.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-patch by proxy maintainer, P. Healy, April 2015
-# Bug 509960
 tests/pdumpfs-test_orig2004-08-10 07:54:28.0 +0100
-+++ tests/pdumpfs-test 2015-04-01 11:24:35.948633870 +0100
-@@ -17,6 +17,7 @@
- 
- ../pdumpfs src dest > tmp.log || exit 1
- diff -r src dest/$today/src || exit 1
-+mkdir -p dest/$yesterday && rmdir dest/$yesterday
- mv dest/$today dest/$yesterday
- 
- echo update > src/foo

diff --git a/app-backup/pdumpfs/pdumpfs-1.3-r2.ebuild 
b/app-backup/pdumpfs/pdumpfs-1.3-r2.ebuild
deleted file mode 100644
index 224e6c596e4..000
--- a/app-backup/pdumpfs/pdumpfs-1.3-r2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit epatch
-
-DESCRIPTION="A daily backup system similar to Plan9's dumpfs"
-HOMEPAGE="http://0xcc.net/pdumpfs/;
-SRC_URI="http://0xcc.net/pdumpfs/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="l10n_ja"
-
-DEPEND=">=dev-lang/ruby-2.0.0_p598"
-
-src_prepare() {
-   # Bug #509960
-   epatch "${FILESDIR}/${PN}-in.patch" \
-   "${FILESDIR}/${PN}-test.patch"
-}
-
-src_compile() {
-   emake pdumpfs
-}
-
-src_test() {
-   # RUBYOPT=-rauto_gem without rubygems installed will cause ruby to 
fail, bug #158455 and #163473.
-   export RUBYOPT="${GENTOO_RUBYOPT}"
-   emake check
-}
-
-src_install() {
-   dobin pdumpfs
-
-   doman man/man8/pdumpfs.8
-   dohtml -r doc/*
-
-   if use l10n_ja; then
-   insinto /usr/share/man/ja/man8
-   doins man/ja/man8/pdumpfs.8
-   fi
-
-   dodoc ChangeLog README
-}



[gentoo-commits] repo/gentoo:master commit in: app-backup/pdumpfs/

2016-07-03 Thread Ulrich Müller
commit: aa6713016475150cdc2c02e043a7c6af7ec94362
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Jul  3 16:31:03 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Jul  3 16:39:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa671301

app-backup/pdumpfs: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0

 app-backup/pdumpfs/pdumpfs-1.3-r2.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-backup/pdumpfs/pdumpfs-1.3-r2.ebuild 
b/app-backup/pdumpfs/pdumpfs-1.3-r2.ebuild
index 3a7ca10..f2270cd 100644
--- a/app-backup/pdumpfs/pdumpfs-1.3-r2.ebuild
+++ b/app-backup/pdumpfs/pdumpfs-1.3-r2.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$
 
@@ -6,14 +6,14 @@ EAPI=5
 
 inherit eutils
 
-DESCRIPTION="a daily backup system similar to Plan9's dumpfs"
+DESCRIPTION="A daily backup system similar to Plan9's dumpfs"
 HOMEPAGE="http://0xcc.net/pdumpfs/;
 SRC_URI="http://0xcc.net/pdumpfs/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 DEPEND=">=dev-lang/ruby-2.0.0_p598"
 
@@ -39,7 +39,7 @@ src_install() {
doman man/man8/pdumpfs.8
dohtml -r doc/*
 
-   if use linguas_ja; then
+   if use l10n_ja; then
insinto /usr/share/man/ja/man8
doins man/ja/man8/pdumpfs.8
fi



[gentoo-commits] repo/gentoo:master commit in: app-backup/pdumpfs/

2016-04-05 Thread Ian Delaney
commit: 88685c56d5f3dc21aa252bfeb7dcc39ee002caeb
Author: Ian Delaney  gentoo  org>
AuthorDate: Mon Apr  4 12:42:01 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Wed Apr  6 04:39:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88685c56

app-backup/pdumpfs: metadata.xml, update

Reset description attribute for user maintainer in metadata.xml

Package-Manager: portage-2.2.28

 app-backup/pdumpfs/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/pdumpfs/metadata.xml b/app-backup/pdumpfs/metadata.xml
index ea72f7b..518a8d3 100644
--- a/app-backup/pdumpfs/metadata.xml
+++ b/app-backup/pdumpfs/metadata.xml
@@ -4,7 +4,7 @@

lmip...@gmail.com
Paul Healy
-   Active Maintainer, Assign bugs
+   Proxied maintainer; set to assignee in all 
bugs


idel...@gentoo.org