Diff debootstrap-1.0.123 with a debootstrap-1.0.128_p2

/usr/portage/dev-util/debootstrap/debootstrap-1.0.128_p2.ebuild 2023-10-09 14:52:30.960368387 +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
MY_PV="${PV/_p/+nmu}"
5 7

  
6 8
DESCRIPTION="Debian/Ubuntu bootstrap scripts"
7 9
HOMEPAGE="https://packages.qa.debian.org/d/debootstrap.html"
8
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz
10
SRC_URI="https://salsa.debian.org/installer-team/${PN}/-/archive/${MY_PV}/${PN}-${MY_PV}.tar.bz2
9 11
	mirror://gentoo/devices.tar.gz"
10 12

  
11 13
LICENSE="MIT"
......
17 19
	net-misc/wget
18 20
	sys-devel/binutils
19 21
"
20
DOCS=( TODO debian/changelog )
21
S=${WORKDIR}/${PN}
22

  
23
S="${WORKDIR}/${PN}-${MY_PV}"
22 24

  
23 25
src_unpack() {
24
	unpack ${PN}_${PV}.tar.gz
25
	cp "${DISTDIR}"/devices.tar.gz "${S}"
26
	unpack "${PN}-${MY_PV}".tar.bz2
27
	cp "${DISTDIR}"/devices.tar.gz "${S}" || die
26 28
}
27 29

  
28 30
src_compile() {
29
	return
31
	:
30 32
}
31 33

  
32 34
src_install() {
35
	local DOCS=( TODO debian/changelog )
33 36
	default
34 37
	doman debootstrap.8
35 38
}
Thank you!