summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2021-10-30 20:04:17 +0200
committerJakov Smolić <jsmolic@gentoo.org>2021-10-30 20:04:17 +0200
commit6ec94f16878058cf1d197f2ecd22a221ffe1e94c (patch)
tree6202cfb2f77efaa3b9186361bc4961c083037711 /app-backup
parentapp-backup/pdumpfs: bump to EAPI 8 (diff)
downloadgentoo-6ec94f16878058cf1d197f2ecd22a221ffe1e94c.tar.gz
gentoo-6ec94f16878058cf1d197f2ecd22a221ffe1e94c.tar.bz2
gentoo-6ec94f16878058cf1d197f2ecd22a221ffe1e94c.zip
app-backup/pdumpfs: drop 1.3-r2
Closes: https://bugs.gentoo.org/819687 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'app-backup')
-rw-r--r--app-backup/pdumpfs/files/pdumpfs-in.patch40
-rw-r--r--app-backup/pdumpfs/files/pdumpfs-test.patch12
-rw-r--r--app-backup/pdumpfs/pdumpfs-1.3-r2.ebuild47
3 files changed, 0 insertions, 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 cddfb995918a..000000000000
--- 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_orig 2004-12-21 02:43:12.000000000 +0000
-+++ 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 e81e8b0f2d8a..000000000000
--- 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_orig 2004-08-10 07:54:28.000000000 +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 224e6c596e42..000000000000
--- 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
-}