Skip to content

Commit 7f34da1

Browse files
upgrade debootstrap to 1.0.126+nmu1ubuntu0.2
1 parent 595ad2e commit 7f34da1

File tree

7 files changed

+60
-4
lines changed

7 files changed

+60
-4
lines changed

.vscode/configurationCache.log

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"buildTargets":[],"launchTargets":[],"customConfigurationProvider":{"workspaceBrowse":{"browsePath":[]},"fileIndex":[]}}
1+
{"buildTargets":[],"launchTargets":[],"customConfigurationProvider":{"workspaceBrowse":{"browsePath":[],"compilerArgs":[]},"fileIndex":[]}}

core/debootstrap/debian/changelog

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
debootstrap (1.0.126+nmu1ubuntu0.2) jammy; urgency=medium
2+
3+
* Add (Ubuntu) lunar as a symlink to gutsy (LP: #1995612).
4+
5+
-- Nick Rosbrook <[email protected]> Thu, 03 Nov 2022 10:28:51 -0400
6+
7+
debootstrap (1.0.126+nmu1ubuntu0.1) jammy; urgency=medium
8+
9+
* Add (Ubuntu) kinetic as a symlink to gutsy (LP: #1970454).
10+
11+
-- Graham Inggs <[email protected]> Tue, 26 Apr 2022 16:56:23 +0000
12+
13+
debootstrap (1.0.126+nmu1) unstable; urgency=medium
14+
15+
* Non-maintainer upload.
16+
* Undo the changes of the last upload. (Closes: #998867)
17+
18+
-- Johannes Schauer Marin Rodrigues <[email protected]> Sun, 28 Nov 2021 12:38:15 +0100
19+
20+
debootstrap (1.0.126) unstable; urgency=low
21+
22+
* Ensure bookworm+ suites are set up with merged-usr. (Closes: #978636)
23+
24+
-- Dimitri John Ledkov <[email protected]> Mon, 08 Nov 2021 14:40:06 +0000
25+
26+
debootstrap (1.0.125) unstable; urgency=medium
27+
28+
[ Samuel Thibault ]
29+
* functions (download_main): Let the loops try the different components and
30+
suites when the checksum doesn't match. This is needed when several of
31+
them contain the same package name.
32+
33+
[ Arnaud Rebillout ]
34+
* Fix auto proxy discovery (Closes: #985811)
35+
* Fix detection of docker container for cgroup v2 (Closes: #985481)
36+
37+
[ Johannes 'josch' Schauer ]
38+
* functions: define link_dir before using it.
39+
40+
[ Hideki Yamane ]
41+
* Add (Debian) trixie as a symlink to sid.
42+
43+
[ Dimitri John Ledkov ]
44+
* Add (Ubuntu) jammy as a symlink to gutsy.
45+
* Upload to unstable.
46+
47+
-- Dimitri John Ledkov <[email protected]> Tue, 02 Nov 2021 11:35:00 +0000
48+
149
debootstrap (1.0.124) experimental; urgency=medium
250

351
[ Colin Watson ]

core/debootstrap/debian/control

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
Source: debootstrap
22
Section: admin
33
Priority: optional
4-
Maintainer: Debian Install System Team <[email protected]>
4+
Maintainer: Ubuntu Developers <[email protected]>
5+
XSBC-Original-Maintainer: Debian Install System Team <[email protected]>
56
Uploaders: Colin Watson <[email protected]>, Steve McIntyre <[email protected]>,
67
Hideki Yamane <[email protected]>,
78
Build-Depends: debhelper-compat (= 12)

core/debootstrap/debootstrap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,10 @@ fi
456456
# do auto proxy discovery
457457
AUTOPROXY=""
458458
if ! doing_variant fakechroot && command -v apt-config >/dev/null; then
459+
eval "$(apt-config shell AUTOPROXY Acquire::http::Proxy-Auto-Detect)"
460+
if [ -z "$AUTOPROXY" ]; then
459461
eval "$(apt-config shell AUTOPROXY Acquire::http::ProxyAutoDetect)"
462+
fi
460463
if [ -z "$http_proxy" ] && [ -x "$AUTOPROXY" ]; then
461464
http_proxy="$($AUTOPROXY)"
462465
if [ -n "$http_proxy" ]; then

core/debootstrap/functions

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ detect_container () {
237237
CONTAINER="lxc-libvirt"
238238
elif grep -qs ^systemd-nspawn$ /run/systemd/container || grep -qs systemd-nspawn /proc/1/environ || [ "$container" = "systemd-nspawn" ]; then
239239
CONTAINER="systemd-nspawn"
240-
elif grep -qs '[[:space:]]/docker/.*/sys/fs/cgroup' /proc/1/mountinfo; then
240+
elif grep -qs '[[:space:]]/docker/.*/sys/fs/cgroup' /proc/1/mountinfo || [ -e "/.dockerenv" ]; then
241241
CONTAINER="docker"
242242
else
243243
CONTAINER=""
@@ -922,6 +922,8 @@ download_main () {
922922
echo >>"$TARGET/debootstrap/debpaths" "$p $debdest"
923923
details="done"
924924
break
925+
else
926+
details=""
925927
fi
926928
done
927929
if [ "$details" != "" ]; then
@@ -1364,7 +1366,7 @@ setup_merged_usr() {
13641366

13651367
if [ "$MERGED_USR" = "no" ]; then return 0; fi
13661368

1367-
local link_dir
1369+
local link_dir=""
13681370
case $ARCH in
13691371
hurd-*) return 0 ;;
13701372
amd64) link_dir="lib32 lib64 libx32" ;;

core/debootstrap/scripts/lunar

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gutsy

core/debootstrap/scripts/trixie

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sid

0 commit comments

Comments
 (0)