Diff dump-0.4.47-r1 with a dump-0.4.47-r2

/usr/portage/app-arch/dump/dump-0.4.47-r2.ebuild 2023-10-09 14:52:28.184368317 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5

  
6
inherit readme.gentoo-r1
5 7

  
6 8
MY_P="${PN}-$(ver_rs 2 b)"
7 9

  
8 10
DESCRIPTION="Dump/restore ext2fs backup utilities"
9
HOMEPAGE="http://dump.sourceforge.net/"
11
HOMEPAGE="https://dump.sourceforge.io/"
10 12
SRC_URI="mirror://sourceforge/dump/${MY_P}.tar.gz"
11 13
S="${WORKDIR}/${MY_P}"
12 14

  
......
79 81
	# Don't install pre-compressed files
80 82
	gunzip "${ED}"/usr/share/doc/${PF}/examples/cron_dump_to_disk/backupskel.tar.gz \
81 83
		|| die
84

  
85
	local DOC_CONTENTS="dump has serious bugs
86
	(see https://sourceforge.net/p/dump/bugs/162/ and
87
	https://sourceforge.net/p/dump/bugs/174/). This tool should only
88
	be used for restoring old backups, not for creating new ones.
89
	\n\n${CATEGORY}/${PN} installs 'rmt' as 'dump-rmt'.
90
	This is to avoid conflicts with app-arch/tar 'rmt'."
91
	readme.gentoo_create_doc
82 92
}
83 93

  
84 94
pkg_postinst() {
85
	if [[ -z ${REPLACING_VERSIONS} ]] ; then
86
		ewarn "app-arch/dump installs 'rmt' as 'dump-rmt'."
87
		ewarn "This is to avoid conflicts with app-arch/tar 'rmt'."
88
	fi
95
	readme.gentoo_print_elog
89 96
}
Thank you!