summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgy Yakovlev <gyakovlev@gentoo.org>2022-11-18 11:47:38 -0800
committerGeorgy Yakovlev <gyakovlev@gentoo.org>2022-11-18 11:48:24 -0800
commit876f9b216ab98578d274ba3c945a65d09eb0cae5 (patch)
tree71abe360277cff3aa18bd635957610206cb7b6ef /dev-util/debootstrap
parentapp-text/ghostscript-gpl: Stabilize 9.56.1-r3 sparc, #862133 (diff)
downloadgentoo-876f9b216ab98578d274ba3c945a65d09eb0cae5.tar.gz
gentoo-876f9b216ab98578d274ba3c945a65d09eb0cae5.tar.bz2
gentoo-876f9b216ab98578d274ba3c945a65d09eb0cae5.zip
dev-util/debootstrap: add 1.0.128_p2, drop 1.0.126
bump eapi to 8 add nvm -> _p plumbing minor ebuild edits Closes: https://bugs.gentoo.org/881817 Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'dev-util/debootstrap')
-rw-r--r--dev-util/debootstrap/Manifest2
-rw-r--r--dev-util/debootstrap/debootstrap-1.0.128_p2.ebuild (renamed from dev-util/debootstrap/debootstrap-1.0.126.ebuild)19
2 files changed, 12 insertions, 9 deletions
diff --git a/dev-util/debootstrap/Manifest b/dev-util/debootstrap/Manifest
index e862848d0073..e09cbce6293b 100644
--- a/dev-util/debootstrap/Manifest
+++ b/dev-util/debootstrap/Manifest
@@ -1,3 +1,3 @@
+DIST debootstrap-1.0.128+nmu2.tar.bz2 70406 BLAKE2B 7ba8f2cb63da3217594e9b058e1b0b4452823d9daeaaff0f91a298bd9d29ec16b332eda03259a12a9259dc759f63f1123654454341eb32f6fd882def0f3e4582 SHA512 a8baa7df3956d407c1b9344a0f0acb8162d951b55c3f402f7f04d8b652e00a366fd0e8be8fb4ecfd3997d6374c0271a329ccc631b32958a2296c73e389d622d3
DIST debootstrap_1.0.123.tar.gz 78175 BLAKE2B e507ee76817eef20cfea4e37eaf893f8e64acaa791806ebd55bec97b8e60eb3c59b68bfe5e6023dc6e73706bde2468db46b84f0176ec46d086c3ea9423a206c7 SHA512 3b23f61528d4993750ba22b8765c10cfb9695793177017d9e4faf546da076be6660c5d6e0d1bf30bafe14f6d70f886190d3ec42a0057b895f40e860475eea794
-DIST debootstrap_1.0.126.tar.gz 78939 BLAKE2B 53c729def947855464e25aeab69bd0347a15ce6426d03ec2e6e714535f444f5373bf243a8aed44408504a74d7ea1b169cb73d3a874245320cd1033854f14f9a4 SHA512 81dd7d70224ef75a2071a23b6c7b66f9ddabdb6a6b714a862e44b40c4914a896415514ce577a633d93b597c414d6a9a34d6af4db26cbff75b3b1e64f4a1b44ba
DIST devices.tar.gz 47835 BLAKE2B 03bfe097fda12a7a0aa19d3308c0d44382ad945defea05a63b17a72e4051ef94f0e60e75bde35baeace81da59d9f04126f6e463163609475b9c0fdf518f533ef SHA512 994ec8d72e3d52d2d872f7ff0da2336e4cbd3a5fa73bb6cdb9e06f5e7f5b8c69cea639c738fdba1186f382d6dcf62e7746fface664bfbd744aac24b16f034432
diff --git a/dev-util/debootstrap/debootstrap-1.0.126.ebuild b/dev-util/debootstrap/debootstrap-1.0.128_p2.ebuild
index 4cc27d3d8911..1563df0c4a6d 100644
--- a/dev-util/debootstrap/debootstrap-1.0.126.ebuild
+++ b/dev-util/debootstrap/debootstrap-1.0.128_p2.ebuild
@@ -1,11 +1,13 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
+
+MY_PV="${PV/_p/+nmu}"
DESCRIPTION="Debian/Ubuntu bootstrap scripts"
HOMEPAGE="https://packages.qa.debian.org/d/debootstrap.html"
-SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz
+SRC_URI="https://salsa.debian.org/installer-team/${PN}/-/archive/${MY_PV}/${PN}-${MY_PV}.tar.bz2
mirror://gentoo/devices.tar.gz"
LICENSE="MIT"
@@ -17,19 +19,20 @@ RDEPEND="
net-misc/wget
sys-devel/binutils
"
-DOCS=( TODO debian/changelog )
-S=${WORKDIR}/${PN}
+
+S="${WORKDIR}/${PN}-${MY_PV}"
src_unpack() {
- unpack ${PN}_${PV}.tar.gz
- cp "${DISTDIR}"/devices.tar.gz "${S}"
+ unpack "${PN}-${MY_PV}".tar.bz2
+ cp "${DISTDIR}"/devices.tar.gz "${S}" || die
}
src_compile() {
- return
+ :
}
src_install() {
+ local DOCS=( TODO debian/changelog )
default
doman debootstrap.8
}