Files
termux-packages/packages/debootstrap/functions.patch
2023-04-15 18:01:28 +00:00

130 lines
3.2 KiB
Diff

diff -uNr debootstrap/functions debootstrap.mod/functions
--- debootstrap/functions 2022-10-19 01:48:32.000000000 +0300
+++ debootstrap.mod/functions 2023-04-15 20:45:39.860454598 +0300
@@ -231,6 +231,9 @@
}
detect_container () {
+ #termux
+ return
+
if [ "$container" = lxc ]; then
CONTAINER="lxc"
elif grep -qs container=lxc-libvirt /proc/1/environ; then
@@ -978,7 +981,7 @@
extract_dpkg_deb_data () {
local pkg="$1"
- dpkg-deb --fsys-tarfile "$pkg" | tar $EXTRACT_DEB_TAR_OPTIONS -xf - || error 1 FILEEXIST "Tried to extract package, but file already exists. Exit..."
+ dpkg-deb --fsys-tarfile "$pkg" | proot --link2symlink tar $EXTRACT_DEB_TAR_OPTIONS -xf - || error 1 FILEEXIST "Tried to extract package, but file already exists. Exit..."
}
# Raw .deb extractors
@@ -1020,7 +1023,7 @@
esac
if in_path "$cat_cmd"; then
- ar -p "$pkg" "$tarball" | "$cat_cmd" | tar $EXTRACT_DEB_TAR_OPTIONS -xf -
+ ar -p "$pkg" "$tarball" | "$cat_cmd" | proot --link2symlink tar $EXTRACT_DEB_TAR_OPTIONS -xf -
else
error 1 UNPACKCMDUNVL "Extracting %s requires the %s command, which is not available" "$pkg" "$cat_cmd"
fi
@@ -1077,7 +1080,7 @@
); }
in_target_nofail () {
- if ! PATH=/sbin:/usr/sbin:/bin:/usr/bin eval "$CHROOT_CMD \"\$@\"" 2>/dev/null; then
+ if ! PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin $CHROOT_CMD "$@" 2>/dev/null; then
true
fi
return 0
@@ -1089,7 +1092,7 @@
msg="$2"
arg="$3"
shift; shift; shift
- if ! PATH=/sbin:/usr/sbin:/bin:/usr/bin eval "$CHROOT_CMD \"\$@\""; then
+ if ! PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin $CHROOT_CMD "$@"; then
warning "$code" "$msg" "$arg"
# Try to point user at actual failing package.
msg="See %s for details"
@@ -1115,11 +1118,14 @@
###################################################### standard setup stuff
conditional_cp () {
- if [ ! -e "$2/$1" ]; then
+ local dst
+ dst="${2}/$(echo "$1" | sed 's|^@TERMUX_PREFIX@||g')"
+
+ if [ ! -e "$dst" ]; then
if [ -L "$1" ] && [ -e "$1" ]; then
- cat "$1" >"$2/$1"
+ cat "$1" >"$dst"
elif [ -e "$1" ]; then
- cp "$1" "$2/$1"
+ cp "$1" "$dst"
fi
fi
}
@@ -1145,13 +1151,15 @@
setup_etc () {
mkdir -p "$TARGET/etc"
- conditional_cp /etc/resolv.conf "$TARGET"
- conditional_cp /etc/hostname "$TARGET"
+ conditional_cp @TERMUX_PREFIX@/etc/resolv.conf "$TARGET"
+ conditional_cp @TERMUX_PREFIX@/etc/hostname "$TARGET"
}
UMOUNT_DIRS=
umount_exit_function () {
+ return
+
local realdir dir
for dir in $UMOUNT_DIRS; do
realdir="$(in_target_nofail readlink -f "$dir")"
@@ -1176,6 +1184,8 @@
}
setup_proc () {
+ return
+
case "$HOST_OS" in
*freebsd*)
umount_on_exit /dev
@@ -1255,7 +1265,6 @@
return 0
fi
- setup_devices_simple
;;
esac
}
@@ -1280,6 +1289,8 @@
# Create a device node if it does not exist. By default, the mode is 666.
mknod_if_needed () {
+ return
+
local device type major minor mode
device="$1"
type="$2"
@@ -1294,6 +1305,8 @@
setup_devices_simple () {
+ return
+
# The list of devices that can be created in a container comes from
# src/core/cgroup.c in the systemd source tree.
mknod_if_needed "$TARGET/dev/null" c 1 3
@@ -1325,6 +1338,8 @@
}
setup_devices_bind () {
+ return
+
local device
mount -t tmpfs nodev "$TARGET/dev"
umount_on_exit /dev